crewsportswear update as of 3_18_19

This commit is contained in:
Frank John Begornia
2019-03-18 13:48:37 +08:00
parent 562f03488a
commit a2d88bc52e
71 changed files with 5443 additions and 85 deletions

View File

@@ -997,4 +997,101 @@ class DesignerController extends Controller {
}
public function addNewRowNameAndNumber(Request $request){
$post = $request->all();
$trCount = $post['itemCount'];
$tempCode = $post['tempCode'];
$newDesignerModel = new DesignerModel;
$jersey_sizes = $newDesignerModel->getAvailableSizes($tempCode, 'JERSEY');
$shorts_sizes = $newDesignerModel->getAvailableSizes($tempCode, 'SHORTS');
?>
<tr class="<?php echo 'table-tr-' . $trCount ?>">
<td>
<input type="text" name="order_names[]" id="order_names" class="form-control input-sm inputName roster-input" placeholder="Name" >
</td>
<td>
<select class="form-control input-sm roster-input" name="order_number[]" id="order_number">
<option value="none">none</option>
<?php
for($i = 0; $i <= 99; $i++){
echo '<option value="'.$i.'">'.$i.'</option>';
}
?>
<option value="00">00</option>
</select>
</td>
<td id="action-column" class="text-center roster-action-column" style="padding: 4px !important; border-top: none">
<span class="tr-remove-btn">
<button type="button" class="btn btn-danger btn-sm removeRow-name-and-number btn-roster-action" data-toggle="tooltip" title="Remove"><i class="fa fa-remove" aria-hidden="true"></i></button>
</span>
</td>
</tr>
<tr id="addnew-btn-tbl-row">
<td colspan="4" ><button type="button" id="addNewRow_name_and_number" class="btn btn-link btn-sm pull-left" data-toggle="tooltip" title="Add Another"><i class="fa fa-plus" aria-hidden="true"></i> Add Row</button></td>
<!-- <td colspan="2" ><button type="button" class="btn btn-link btn-sm pull-right" data-toggle="tooltip" title="Add Another">Manage List</button></td> -->
<td style="padding: 4px !important; border-top: none"></td>
</tr>
<?php
}
public function addNewRowNameNumberAndSize(Request $request){
$post = $request->all();
$trCount = $post['itemCount'];
$tempCode = $post['tempCode'];
$newDesignerModel = new DesignerModel;
$jersey_sizes = $newDesignerModel->getAvailableSizes($tempCode, 'JERSEY');
$shorts_sizes = $newDesignerModel->getAvailableSizes($tempCode, 'SHORTS');
?>
<tr class="<?php echo 'table-tr-' . $trCount ?>">
<td>
<input type="text" name="order_names[]" id="order_names" class="form-control input-sm inputName roster-input" placeholder="Name" >
</td>
<td>
<select class="form-control input-sm roster-input" name="order_number[]" id="order_number">
<option value="none">none</option>
<?php
for($i = 0; $i <= 99; $i++){
echo '<option value="'.$i.'">'.$i.'</option>';
}
?>
<option value="00">00</option>
</select>
</td>
<td>
<select class="form-control input-sm order-size roster-input" name="order_size[]" id="<?php echo 'order_size_' . $trCount ?>" data-row-number="<?php echo $trCount ?>">
<?php
foreach($jersey_sizes as $j_size){
echo '<option value="'.$j_size.'">'.$j_size.'</option>';
}
?>
</select>
</td>
<td id="action-column" class="text-center roster-action-column" style="padding: 4px !important; border-top: none">
<span class="tr-remove-btn">
<button type="button" class="btn btn-danger btn-sm removeRow-name-and-number btn-roster-action" data-toggle="tooltip" title="Remove"><i class="fa fa-remove" aria-hidden="true"></i></button>
</span>
</td>
</tr>
<tr id="addnew-btn-tbl-row">
<td colspan="4" ><button type="button" id="addNewRow_name_and_number" class="btn btn-link btn-sm pull-left" data-toggle="tooltip" title="Add Another"><i class="fa fa-plus" aria-hidden="true"></i> Add Row</button></td>
<!-- <td colspan="2" ><button type="button" class="btn btn-link btn-sm pull-right" data-toggle="tooltip" title="Add Another">Manage List</button></td> -->
<td style="padding: 4px !important; border-top: none"></td>
</tr>
<?php
}
}

View File

@@ -6,10 +6,13 @@ use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Paypal;
use App\Models\teamstore\TeamStoreModel;
use App\Models\user\UserModel;
use App\Models\paypal\PayPalModel;
use Auth;
use Session;
use Redirect;
use Mail;
class PaypalController extends Controller {
@@ -66,6 +69,9 @@ class PaypalController extends Controller {
$m = new TeamStoreModel;
$paypal_model = new PayPalModel;
$last_id = $paypal_model->getLastIdPaymentDetails();
$invoice_num = str_pad($last_id[0]->Id, 4,'0',STR_PAD_LEFT);
$cartKey = $request->session()->get('cartkey');
$items = $m->myCart($cartKey);
@@ -76,6 +82,8 @@ class PaypalController extends Controller {
$order_subtotal = $getSubtotal[0]->Subtotal;
$order_grandtotal = $getSubtotal[0]->Subtotal;
$tax = $order_grandtotal * 0.10;
$order_items = array();
foreach($items as $key => $item){
@@ -98,25 +106,30 @@ class PaypalController extends Controller {
$order_items[$key]->setCurrency('USD');
$order_items[$key]->setQuantity($item->Quantity);
// $order_items[$key]->setDescription($descriptions);
// $order_items[$key]->setTax(10);
$order_items[$key]->setPrice($item->Price);
}
$item_list = PayPal::ItemList();
$item_list->setItems($order_items);
$amount_details = PayPal::Details();
$amount_details->setSubtotal($order_subtotal);
$amount_details->setTax($tax);
$amount = PayPal::Amount();
$amount->setCurrency('USD');
$amount->setDetails($amount_details);
$amount->setTotal($order_grandtotal);
$amount->setTotal($order_grandtotal + $tax);
$transaction = PayPal::Transaction();
$transaction->setAmount($amount);
$transaction->setItemList($item_list);
$transaction->setDescription('Your transaction description');
$transaction->setInvoiceNumber(date('Y') . '-' . uniqid());
// $transaction->setDescription('Your transaction description');
$transaction->setInvoiceNumber(date('Ymd') . '-' . $invoice_num);
$redirectUrls = PayPal:: RedirectUrls();
$redirectUrls->setReturnUrl(route('getDone'));
@@ -188,22 +201,48 @@ class PaypalController extends Controller {
// }
$obj = json_decode($executePayment);
$line2 = null;
//details
$total = $obj->transactions[0]->amount->total;
$sub_total = $obj->transactions[0]->amount->details->subtotal;
$tax = $obj->transactions[0]->amount->details->tax;
$currency = $obj->transactions[0]->amount->currency;
$invoice_number = $obj->transactions[0]->invoice_number;
// var_dump($obj->transactions[0]->amount);
//shipping address details
$recipient_name = $obj->transactions[0]->item_list->shipping_address->recipient_name;
$line1 = $obj->transactions[0]->item_list->shipping_address->line1;
if(isset($obj->transactions[0]->item_list->shipping_address->line2)){
$line2 = $obj->transactions[0]->item_list->shipping_address->line2;
}
$city = $obj->transactions[0]->item_list->shipping_address->city;
$state = $obj->transactions[0]->item_list->shipping_address->state;
$postal_code = $obj->transactions[0]->item_list->shipping_address->postal_code;
$country_code = $obj->transactions[0]->item_list->shipping_address->country_code;
// payer info
$payment_method = $obj->payer->payment_method;
$email = $obj->payer->payer_info->email;
$first_name = $obj->payer->payer_info->first_name;
$last_name = $obj->payer->payer_info->last_name;
$_payer_id = $obj->payer->payer_info->payer_id;
/// end paypal codes
$paypal_model = new PayPalModel;
$m = new TeamStoreModel;
$cartKey = $request->session()->get('cartkey');
$userId = Auth::user()->id;
$user_email = Auth::user()->email;
$items = $m->myCart($cartKey); // item from cart_tmp
$getSubtotal = $m->getSubtotal($cartKey);
$payment_details = array(
'UserId' => $userId,
'CartKey' => $cartKey,
'PaymentId' => $id,
@@ -211,39 +250,66 @@ class PaypalController extends Controller {
'PayerId' => $payer_id,
'InvoiceNumber' => $invoice_number,
'Currency' => $currency,
'Total' => $total
'Total' => $total,
'SubTotal' => $sub_total,
'Tax' => $tax,
'Payer_Email' => $email,
'Payer_Firstname' => $first_name,
'Payer_Lastname' => $last_name,
'PaymentMethod' =>$payment_method
);
$i = $paypal_model->insertToPaypalDetails($payment_details);
$p_id = $paypal_model->insertToPaypalDetails($payment_details);
// var_dump($i);
$shipping_address = array(
'PaymentDetail_Id' => $p_id,
'recipient_name' => $recipient_name,
'line1' => $line1,
'line2' => $line2,
'city' => $city,
'state' => $state,
'postal_code' => $postal_code,
'country_code' => $country_code,
);
// iinsert shipping address
$paypal_model->insertShippingAddress($shipping_address);
// foreach($items as $key => $val){
// $orders[] = array(
// 'Order' => $val->Order,
// 'ProductId' => $val->ProductId,
// 'CartKey' => $val->CartKey,
// 'ProductURL' => $val->ProductURL,
// 'TeamName' => $val->TeamName,
// 'Name' => $val->Name,
// 'Number' => $val->Number,
// 'Size' => $val->Size,
// 'Price' => $val->Price,
// 'Quantity' => $val->Quantity,
// );
// }
// insert order from cart_tmp to orders table
$l = $paypal_model->insertToOrders($cartKey); // insert to orders table
//email sending
$newUserModel = new UserModel;
$order_item_array = $newUserModel->selectOrderItem($cartKey);
$item_goup_array = $newUserModel->itemGroup($cartKey);
$item_thumbs = $newUserModel->selectDisplayItemThumb();
$array_payment_details = $newUserModel->selectPaymentDetails('CartKey', $cartKey);
var_dump($items);
$data = array(
'order_item_array' => $order_item_array,
'item_goup_array' => $item_goup_array,
'img_thumb' => $item_thumbs,
'array_payment_details' => $array_payment_details,
'receiver' => $user_email,
'subject' => 'Order Details',
);
// $paypal_model->insertToOrders($items); // insert to orders table
Mail::send('emails.orders', $data, function($message) use ($data) {
$message->from('no-reply@crewsportswear.com', 'CREW Sportswear');
$message->cc('orders@crewsportswear.com', 'Orders From CREW Sportswear');
$message->to($data['receiver'])->subject('Order Details');
// $request->session()->forget('cartkey'); // clear session for cartkey
});
// end email sending
// return view('paypal.get_done')
// ->with('currency', $currency)
// ->with('total', $total);
$request->session()->forget('cartkey'); // clear session for cartkey
// redirect to thank you page.
return view('paypal.get_done')
->with('currency', $currency)
->with('total', $total);
}

View File

@@ -293,6 +293,50 @@ class TeamStoreController extends Controller {
'Price' => $ProductPrice,
'Quantity' => $post['quantity']
);
}elseif($product_form == "name-number-form"){
$order_names = $post['order_names'];
$order_number = $post['order_number'];
foreach($order_names as $key => $val){
$items[] = array(
'ProductId' => $product_id,
'StoreURL' => $store_url,
'FormUsed' => $product_form,
'CartKey' => $cartKey,
'DesignCode' => $design_code,
'ProductURL' => $ProductURL,
'ProductName' => $product_name,
'Name' => $order_names[$key],
'Number' => $order_number[$key],
'Price' => $ProductPrice,
'Quantity' => 1
);
}
}elseif($product_form == "name-number-size-form"){
$order_names = $post['order_names'];
$order_number = $post['order_number'];
$order_size = $post['order_size'];
foreach($order_names as $key => $val){
$items[] = array(
'ProductId' => $product_id,
'StoreURL' => $store_url,
'FormUsed' => $product_form,
'CartKey' => $cartKey,
'DesignCode' => $design_code,
'ProductURL' => $ProductURL,
'ProductName' => $product_name,
'Name' => $order_names[$key],
'Size' => $order_size[$key],
'Number' => $order_number[$key],
'Price' => $ProductPrice,
'Quantity' => 1
);
}
}
@@ -321,11 +365,12 @@ class TeamStoreController extends Controller {
$items = $m->myCart($cartKey);
$getSubtotal = $m->getSubtotal($cartKey);
$items_group = $m->myCartGroup($cartKey);
$item_thumbs = $m->selectDisplayCartThumb();
// var_dump($items_group);
return view('sublayouts.cart')
->with('item_group', $items_group)
->with('row', $items)
->with('img_thumb', $item_thumbs)
->with('getSubtotal', $getSubtotal);
}

View File

@@ -200,7 +200,7 @@ class UserController extends Controller {
public function orders(){
$m = new UserModel;
$userId = Auth::user()->id;
$array_payment_details = $m->selectPaymentDetails($userId);
$array_payment_details = $m->selectPaymentDetails('UserId', $userId);
// var_dump($array_payment_details);
@@ -439,4 +439,17 @@ class UserController extends Controller {
}
}
public function orderDetails($ck){
$newUserModel = new UserModel;
$order_item_array = $newUserModel->selectOrderItem($ck);
$item_goup_array = $newUserModel->itemGroup($ck);
$item_thumbs = $newUserModel->selectDisplayItemThumb();
$array_payment_details = $newUserModel->selectPaymentDetails('CartKey', $ck);
return view('user-layouts.order_details')
->with('array_payment_details', $array_payment_details)
->with('img_thumb', $item_thumbs)
->with('item_goup_array', $item_goup_array)
->with('order_item_array', $order_item_array);
}
}

View File

@@ -50,6 +50,9 @@ Route::get('/designer/edit/{designCode}', 'designer\DesignerController@editDesig
// CUSTOMIZER DISPLAY
Route::post('/designer/a/add-new-row', 'designer\DesignerController@addNewRow');
Route::post('/designer/a/add-new-row-name-and-number', 'designer\DesignerController@addNewRowNameAndNumber');
Route::post('/designer/a/add-new-row-name-number-size', 'designer\DesignerController@addNewRowNameNumberAndSize');
Route::post('/designer/a/save-roster', 'designer\DesignerController@saveRoster');
Route::group(['middleware' => ['auth']], function() {
@@ -103,6 +106,7 @@ Route::group(['middleware' => 'normaluser'], function () {
Route::get('user/profile/change-password', 'user\UserController@changePassword');
Route::post('user/profile/update-password', 'user\UserController@updatePassword');
Route::get('user/orders', 'user\UserController@orders');
Route::get('user/orders/view/{ck}', 'user\UserController@orderDetails');
Route::get('user/my-designs', 'user\UserController@myDesigns');
Route::get('user/my-designs/view/{id}', 'user\UserController@viewDesign');
Route::post('user/my-designs/update', 'user\UserController@updateDesignDetails');

View File

@@ -7,15 +7,37 @@ class PayPalModel extends Model {
function insertToPaypalDetails($data){
$i = DB::table('payment_details')->insert($data);
$i = DB::table('payment_details')->insertGetId($data);
return $i;
}
function insertToOrders($data){
function insertToOrders($ck){
// $i = DB::table('orders')->insert($data);
$pdo = DB::connection()->getPdo();
$query = $pdo->prepare("INSERT INTO orders SELECT * FROM cart_tmp where CartKey = '$ck'");
$i = $query->execute();
$i = DB::table('orders')->insert($data);
return $i;
}
function insertShippingAddress($data){
$i = DB::table('shipping_addresses')->insert($data);
return $i;
}
function getLastIdPaymentDetails(){
$i = DB::table('payment_details')
->orderby('Id', 'DESC')
->take(1)
->get();
// var_dump($i);
return $i;
}
}

View File

@@ -79,6 +79,14 @@ class TeamStoreModel extends Model {
return $i;
}
function selectDisplayCartThumb(){
$i = DB::table('teamstore_product_thumbnails')
->where('ImageClass', 'active')
->get();
return $i;
}
function myCart($cartKey){
// echo $cartKey;
if($cartKey != ""){
@@ -103,15 +111,9 @@ class TeamStoreModel extends Model {
function myCartGroup($cartKey){
if($cartKey != ""){
$pdo = DB::connection()->getPdo();
$query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, SUM(Price) AS total_price FROM cart_tmp WHERE CartKey = :ck GROUP BY ProductId");
$query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, SUM(Price) AS total_price, SUM(Quantity) AS total_qty FROM cart_tmp WHERE CartKey = :ck GROUP BY ProductId");
$query->execute([':ck'=>$cartKey]);
$row = $query->fetchAll(\PDO::FETCH_OBJ);
// $i = DB::table('cart_tmp')->()
// ->where('CartKey', $cartKey)
// ->groupby('ProductId')
// ->get();
// // var_dump($i);
return $row;
}
}

View File

@@ -65,9 +65,9 @@ class UserModel extends Model {
return $i;
}
function selectPaymentDetails($userid){
function selectPaymentDetails($field, $val){
$i = DB::table('payment_details')->where('UserId', $userid)
$i = DB::table('payment_details')->where($field, $val)
->get();
return $i;
@@ -134,4 +134,28 @@ class UserModel extends Model {
return $i;
}
function selectOrderItem($ck){
$i = DB::table('orders')
->where('CartKey', $ck)
->get();
return $i;
}
function itemGroup($cartKey){
$pdo = DB::connection()->getPdo();
$query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, SUM(Price) AS total_price, SUM(Quantity) AS total_qty FROM orders WHERE CartKey = :ck GROUP BY ProductId");
$query->execute([':ck'=>$cartKey]);
$row = $query->fetchAll(\PDO::FETCH_OBJ);
return $row;
}
function selectDisplayItemThumb(){
$i = DB::table('teamstore_product_thumbnails')
->where('ImageClass', 'active')
->get();
return $i;
}
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 31 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="950.5" height="501" viewBox="0 0 950.5 501" xml:space="preserve">
<desc>Created with Fabric.js 1.7.15</desc>
<defs>
</defs>
<g style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 10;" transform="translate(0 0)">
<path id="color1" d="M 949.5 364.2 L 0 364.2 L 0 138 l 949.5 0 V 364.2 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(242,104,37); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color2" d="M 949.5 0 l 0 86.6 L 0 86.6 L 0 0 L 949.5 0 z M 0 500 l 949.5 0 l 0 -86.6 L 0 413.4 L 0 500 z M 182.2 244.5 l -2.6 9.2 l 23.7 82.1 h 5.3 L 182.2 244.5 z M 772.3 211.9 c -9.1 -6.5 -19.9 -9.7 -29.3 -9 c 9.4 0.7 19.6 4.9 27.7 11.9 L 772.3 211.9 z M 68.2 172.7 h -5.3 l 46.7 163.1 h 5.3 L 68.2 172.7 z M 162.6 172.7 l -27.3 102.2 l 2.5 10.3 l 30.1 -112.5 H 162.6 z M 715 175.4 c 7.5 -3.7 15.3 -5.4 22.9 -5.7 c -9.3 -0.4 -19 1.1 -28.2 5.7 c -34.5 17.2 -28.4 51.2 -25.7 55.6 c 2.6 4.4 7.9 14.2 26.8 24.4 c 18.9 10.2 43.8 21.9 38.4 37.9 c -2.1 6.3 -8.1 8.5 -14.4 8.9 c 8.1 0.5 17 -0.9 19.7 -8.9 c 5.4 -15.9 -19.5 -27.7 -38.4 -37.9 c -18.9 -10.2 -24.2 -20 -26.8 -24.4 C 686.6 226.7 680.5 192.6 715 175.4 z M 248.9 172.7 l -25.3 102.2 l 2.7 10.3 l 27.9 -112.5 H 248.9 z M 599.4 201.5 h -5.3 c 0 0 29.6 0.9 29.6 21.3 c 0 21.1 -28.2 21.9 -28.2 21.9 h 5.3 c 0 0 28.2 -0.8 28.2 -21.9 C 629 202.4 599.4 201.5 599.4 201.5 z M 500.6 172.7 l 0 163.1 h 5.3 V 172.7 H 500.6 z M 792.7 172.7 v 31.6 h 5.3 v -31.6 H 792.7 z M 296.1 172.7 l -1.5 5.1 l 0 158 h 5.3 V 172.7 H 296.1 z M 673.5 321.5 c 9.8 6.6 30.9 18.3 57.5 17.4 c -34.1 -1 -58.1 -21.8 -58.1 -21.8 l 17.5 -28.8 c -2.4 -1.3 -3.9 -2.2 -3.9 -2.2 l -17.4 28.6 L 673.5 321.5 z M 831.2 204.3 v 131.5 h 5.3 l 0 -131.5 H 831.2 z M 396.8 172.7 l 0 163.1 h 5.3 V 172.7 H 396.8 z M 547.8 172.7 v 163.1 h 5.3 l 0 -163.1 L 547.8 172.7 z M 596.7 274.9 l 39.7 61 h 5.3 l -39.7 -61 H 596.7 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(83,49,26); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color3" d="M 67.3 172.7 l 42.4 0 l 27.3 112.5 L 167 172.7 l 28.7 0 l 29.7 112.5 l 27.9 -112.5 l 41.9 0 l -46.5 163.1 h -41 l -26.4 -91.3 l -25.8 91.3 l -41.5 0 L 67.3 172.7 z M 299 172.7 l 94.2 0 l 0 31.7 l -56.6 0 v 32.7 l 53.7 0 V 270 l -53.7 0 v 33 H 393 v 32.8 l -94 0 V 172.7 z M 401.2 172.7 l 94.2 0 v 31.7 l -56.6 0 v 32.7 l 53.7 0 V 270 h -53.7 v 65.8 h -37.6 L 401.2 172.7 z M 505 172.7 l 37.6 0 l 0 163.1 H 505 L 505 172.7 z M 552.2 335.8 l 0 -163.1 l 53.6 0 c 34.9 0 47.8 13.3 52.5 20.5 c 4.5 6.8 8.7 17.4 8.7 27.8 c 0 9.1 -1.4 17.6 -4.6 23.8 c -3.3 6.4 -7.3 11.5 -12.3 15.6 c -4.1 3.9 -13.2 6.5 -13.2 6.5 l 45.2 68.9 l -41.3 0 l -39.7 -61 h -11.2 v 61 H 552.2 z M 589.8 244.7 h 10.1 c 0 0 28.2 -0.8 28.2 -21.9 c 0 -20.4 -29.6 -21.3 -29.6 -21.3 h -8.7 V 244.7 z M 797.1 172.7 l 114.9 0 v 31.6 h -38.6 v 131.5 l -37.8 0 l 0 -131.5 h -38.6 V 172.7 z M 775.1 214.9 l 15.2 -29.5 c 0 0 -41.8 -27.1 -76.3 -9.9 s -28.4 51.2 -25.7 55.6 c 2.6 4.4 7.9 14.2 26.8 24.4 s 43.8 21.9 38.4 37.9 c -4 11.8 -21.3 9.2 -29.8 7.5 c -11.9 -2.3 -32.9 -14.8 -32.9 -14.8 l -18.9 31 c 0 0 28.8 25 68.2 21.6 c 39.4 -3.5 52.9 -35.9 54.1 -45.3 c 1.2 -9.4 2.2 -27.9 -21.4 -43.1 c -22 -14.2 -57.7 -22.6 -48.6 -37.4 C 733.4 198 758.5 200.5 775.1 214.9 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(249,249,250); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="463.1" height="501" viewBox="0 0 463.1 501" xml:space="preserve">
<desc>Created with Fabric.js 1.7.15</desc>
<defs>
</defs>
<g style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 10;" transform="translate(0 0)">
<path id="color1" d="M 231.1 500 c -45.1 0 -67.1 -24.6 -84.8 -44.4 c -3.2 -3.5 -6.4 -7.1 -9.7 -10.7 l 3.9 32.9 L 83 434.5 c -2.1 -1.6 -18.4 -14.4 -36 -42.8 l -20.1 29.5 l -17 -65.5 c -0.8 -3.1 -4.8 -20 -3.2 -43.6 c 0.7 -10.8 2.6 -22.1 5.8 -34.4 L 0 283.1 l 17.3 -62 c 2.6 -9.1 16.1 -54.6 40.4 -81.2 C 69.4 78.6 94.6 36.1 134.9 10.1 L 150.6 0 l 16.2 9.3 c 5.6 3.2 32.6 21.1 45.4 74.1 c 6.1 -0.3 12.4 -0.5 18.9 -0.5 s 12.7 0.2 18.9 0.5 c 12.8 -53 39.8 -70.9 45.4 -74.1 L 311.6 0 l 15.7 10.1 c 40.2 26 65.5 68.5 77.1 129.8 c 24.3 26.6 37.9 72 40.4 81.2 l 17.3 62 l -12.4 -5.4 c 3.2 12.3 5.1 23.6 5.8 34.4 c 1.6 23.6 -2.4 40.4 -3.2 43.6 l -17 65.5 l -20.1 -29.5 c -17.6 28.4 -33.9 41.2 -36 42.8 l -57.4 43.3 l 3.9 -32.9 c -3.4 3.6 -6.6 7.2 -9.7 10.7 C 298.2 475.4 276.2 500 231.1 500 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color2" d="M 277.1 234 c -2.9 10.5 -16.8 14.7 -22.2 6 c -2.6 13.5 -2.2 17 6.8 26.8 c 0 0 6.6 -3.7 15.2 -4.2 l -2.5 -4.3 c 32.4 7.1 42.8 -4.3 45.9 -19 c 3.1 -14.7 13.7 -15.9 19.9 -16.3 C 319.7 211.3 294.2 219.9 277.1 234 z M 307.4 237.5 c -0.8 6 -5.2 23.3 -31.5 9.2 c 2.7 -2 5.3 -3.8 7.6 -5.2 c 1.1 -0.7 2.5 -0.4 3.3 0.6 c 1.2 1.6 3 2.6 4.9 2.6 c 3.6 0 6.6 -3.4 6.6 -7.5 c 0 0 0 0 0 0 c 0 -1.3 0.9 -2.4 2.2 -2.5 c 2.2 -0.3 3.9 -0.1 5 0.1 C 306.8 235 307.6 236.2 307.4 237.5 z M 283.8 344.9 c -6.8 13.9 -18.5 36 -33.6 32.2 c -15.1 -3.8 -11.5 -21.1 -11.5 -21.1 c 21.9 -7.1 17.7 -23.7 17.7 -23.7 s -7.6 -3.7 -25.4 -1.2 c -17.8 -2.6 -25.4 1.2 -25.4 1.2 s -4.1 16.6 17.7 23.7 c 0 0 3.6 17.3 -11.5 21.1 s -26.8 -18.2 -33.6 -32.2 c -6.8 -13.9 -23.1 -36.6 -44.4 -21.9 c 12.5 -2.5 30.2 14 43.6 32.5 c 13.4 18.5 15.4 26.8 20.2 35.6 c 4.9 8.8 18.5 20.2 33.3 11.7 c 14.8 8.5 28.5 -2.9 33.3 -11.7 c 4.9 -8.8 6.8 -17.1 20.2 -35.6 c 13.4 -18.5 31.1 -35 43.6 -32.5 C 306.9 308.3 290.7 331 283.8 344.9 z M 217.5 343.6 c -1 -3.2 2.2 -8.4 15.7 -3.6 c -3.4 2.9 -6.6 1.3 -6.6 1.3 C 224.6 345.6 218.4 346.8 217.5 343.6 z M 231.1 393.7 c -20.3 0 -18.2 -5 -18.2 -5 s 3.4 -1.2 18.2 -1.2 c 14.8 0 18.2 1.2 18.2 1.2 S 251.4 393.7 231.1 393.7 z M 141.8 239.2 c 3.1 14.7 13.5 26.1 45.9 19 l -2.5 4.3 c 8.6 0.5 15.2 4.2 15.2 4.2 c 8.9 -9.8 9.3 -13.3 6.8 -26.8 c -5.4 8.7 -19.3 4.5 -22.2 -6 c -17.1 -14 -42.5 -22.7 -63.1 -11 C 128.1 223.3 138.7 224.5 141.8 239.2 z M 156.6 234.8 c 1.1 -0.3 2.8 -0.4 5 -0.1 c 1.3 0.2 2.2 1.2 2.2 2.5 c 0 0 0 0 0 0 c 0 4.2 2.9 7.5 6.6 7.5 c 2 0 3.7 -1 4.9 -2.6 c 0.8 -1 2.2 -1.3 3.3 -0.6 c 2.3 1.4 4.9 3.2 7.6 5.2 c -26.3 14.1 -30.7 -3.2 -31.5 -9.2 C 154.5 236.2 155.4 235 156.6 234.8 z M 442.1 313.1 c -1.2 -17.2 -5.5 -36 -14 -59.2 l 13.6 5.9 l -9.8 -35 c -1.6 -5.8 -15.7 -54.3 -40 -78.4 C 381.3 86.7 357.8 45.8 320 21.4 l -8.8 -5.7 l -9.1 5.2 c -3.4 1.9 -30.9 19.3 -41.4 76.7 c -7.7 -0.7 -17.7 -1.3 -29.5 -1.3 c -11.9 0 -21.8 0.6 -29.5 1.3 c -10.5 -57.4 -38 -74.8 -41.4 -76.7 l -9.1 -5.2 l -8.8 5.7 c -37.8 24.4 -61.3 65.3 -71.9 124.9 c -24.2 24.1 -38.4 72.6 -40 78.4 l -9.8 35 l 13.6 -5.9 c -8.5 23.3 -12.9 42 -14 59.2 c -1.5 22 2.4 37.6 2.8 39.3 l 9.6 36.9 l 15.7 -23 c 20.2 39.9 41.9 56.7 43 57.5 l 32.4 24.4 l -4.2 -36 c 16.3 11.3 27.1 23.3 37 34.4 c 17.6 19.6 35.7 40 74.8 40 s 57.3 -20.3 74.8 -40 c 9.9 -11.1 20.7 -23.2 37 -34.4 l -4.2 36 l 32.4 -24.4 c 1.1 -0.8 22.8 -17.6 43 -57.5 l 15.7 23 l 9.6 -36.9 C 439.8 350.7 443.6 335 442.1 313.1 z M 314 59.3 c 46.1 43.5 38.6 85.9 38.6 85.9 l -17.5 -18.6 l 4.9 -12 c -10.8 -25.6 -25.6 -38.2 -25.6 -38.2 s -3 22.7 -23 25.8 C 299.7 66.5 314 59.3 314 59.3 z M 148.1 59.3 c 0 0 14.4 7.2 22.6 43 c -20.1 -3.1 -23 -25.8 -23 -25.8 s -14.8 12.6 -25.6 38.2 l 4.9 12 l -17.5 18.6 C 109.5 145.2 102 102.8 148.1 59.3 z M 380.5 345.8 c -0.6 1.5 -2.6 1.6 -3.4 0.2 c -18.9 -31.6 -49.4 -7.8 -75.7 33.7 c -24.5 38.6 -40.6 48.9 -48.5 50.2 c -1 0.2 -1.6 1.2 -1.3 2.2 c 1.3 4.1 -4.6 4.2 -12 1.5 c -1 -0.4 -2.1 0.3 -2.2 1.3 c -0.6 4.3 -5 3 -6.4 1.2 c -1.4 1.8 -5.8 3.1 -6.4 -1.2 c -0.1 -1 -1.2 -1.6 -2.2 -1.3 c -7.4 2.7 -13.2 2.6 -12 -1.5 c 0.3 -1 -0.3 -2 -1.3 -2.2 c -7.9 -1.4 -24 -11.6 -48.5 -50.2 c -26.3 -41.5 -56.7 -65.3 -75.7 -33.7 c -0.8 1.4 -2.8 1.2 -3.4 -0.2 c -24.4 -59.6 1.1 -108.1 37.6 -102.4 c 1.3 0.2 2.4 -0.9 2.2 -2.2 c -2 -12.5 -11.4 -42.3 -35.3 -35.6 c -1.7 0.5 -3.1 -1.5 -2 -3 c 26.8 -36.8 58.7 -20.5 58.7 -20.5 s 19.4 -41.3 43 -36.5 c 28.1 5.6 43.4 83.8 35.3 149 c 0 0 5.4 2.2 10.1 2.2 c 4.6 0 10.1 -2.2 10.1 -2.2 c -8.1 -65.2 7.2 -143.4 35.3 -149 c 23.6 -4.7 43 36.5 43 36.5 s 32 -16.3 58.7 20.5 c 1.1 1.5 -0.3 3.5 -2 3 c -23.9 -6.7 -33.3 23.1 -35.3 35.6 c -0.2 1.3 0.9 2.4 2.2 2.2 C 379.4 237.7 404.9 286.3 380.5 345.8 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(242,104,37); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color3" d="M 283.8 344.9 c -6.8 13.9 -18.5 36 -33.6 32.2 c -15.1 -3.8 -11.5 -21.1 -11.5 -21.1 c 21.9 -7.1 17.7 -23.7 17.7 -23.7 s -7.6 -3.7 -25.4 -1.2 c -17.8 -2.6 -25.4 1.2 -25.4 1.2 s -4.1 16.6 17.7 23.7 c 0 0 3.6 17.3 -11.5 21.1 s -26.8 -18.2 -33.6 -32.2 c -6.8 -13.9 -23.1 -36.6 -44.4 -21.9 c 12.5 -2.5 30.2 14 43.6 32.5 c 13.4 18.5 15.4 26.8 20.2 35.6 c 4.9 8.8 18.5 20.2 33.3 11.7 c 14.8 8.5 28.5 -2.9 33.3 -11.7 c 4.9 -8.8 6.8 -17.1 20.2 -35.6 c 13.4 -18.5 31.1 -35 43.6 -32.5 C 306.9 308.3 290.7 331 283.8 344.9 z M 217.5 343.6 c -1 -3.2 2.2 -8.4 15.7 -3.6 c -3.4 2.9 -6.6 1.3 -6.6 1.3 C 224.6 345.6 218.4 346.8 217.5 343.6 z M 231.1 393.7 c -20.3 0 -18.2 -5 -18.2 -5 s 3.4 -1.2 18.2 -1.2 c 14.8 0 18.2 1.2 18.2 1.2 S 251.4 393.7 231.1 393.7 z M 277.1 234 c -2.9 10.5 -16.8 14.7 -22.2 6 c -2.6 13.5 -2.2 17 6.8 26.8 c 0 0 6.6 -3.7 15.2 -4.2 l -2.5 -4.3 c 32.4 7.1 42.8 -4.3 45.9 -19 c 3.1 -14.7 13.7 -15.9 19.9 -16.3 C 319.7 211.3 294.2 219.9 277.1 234 z M 307.4 237.5 c -0.8 6 -5.2 23.3 -31.5 9.2 c 2.7 -2 5.3 -3.8 7.6 -5.2 c 1.1 -0.7 2.5 -0.4 3.3 0.6 c 1.2 1.6 3 2.6 4.9 2.6 c 3.6 0 6.6 -3.4 6.6 -7.5 c 0 0 0 0 0 0 c 0 -1.3 0.9 -2.4 2.2 -2.5 c 2.2 -0.3 3.9 -0.1 5 0.1 C 306.8 235 307.6 236.2 307.4 237.5 z M 141.8 239.2 c 3.1 14.7 13.5 26.1 45.9 19 l -2.5 4.3 c 8.6 0.5 15.2 4.2 15.2 4.2 c 8.9 -9.8 9.3 -13.3 6.8 -26.8 c -5.4 8.7 -19.3 4.5 -22.2 -6 c -17.1 -14 -42.5 -22.7 -63.1 -11 C 128.1 223.3 138.7 224.5 141.8 239.2 z M 156.6 234.8 c 1.1 -0.3 2.8 -0.4 5 -0.1 c 1.3 0.2 2.2 1.2 2.2 2.5 c 0 0 0 0 0 0 c 0 4.2 2.9 7.5 6.6 7.5 c 2 0 3.7 -1 4.9 -2.6 c 0.8 -1 2.2 -1.3 3.3 -0.6 c 2.3 1.4 4.9 3.2 7.6 5.2 c -26.3 14.1 -30.7 -3.2 -31.5 -9.2 C 154.5 236.2 155.4 235 156.6 234.8 z M 424.9 314.2 c -1.4 -20.1 -7.8 -46.2 -29.1 -93.2 l 19.4 8.4 c 0 0 -15.5 -55.4 -39.4 -74.3 c -9.7 -60.9 -32.3 -97.9 -65.2 -119.2 c 0 0 -28.5 16.3 -35.3 81.1 c 0 0 -16.3 -3.4 -44.2 -3.4 c -27.9 0 -44.2 3.4 -44.2 3.4 c -6.8 -64.8 -35.3 -81.1 -35.3 -81.1 C 118.6 57.2 96 94.2 86.3 155.1 c -23.9 18.9 -39.4 74.3 -39.4 74.3 l 19.4 -8.4 c -21.3 47 -27.7 73.2 -29.1 93.2 C 35.9 334 39.6 348 39.6 348 l 11.9 -17.5 c 21 57.5 50 79.4 50 79.4 l -3.4 -29.1 c 78.7 34.6 73.5 88.5 133 88.5 c 59.5 0 54.2 -53.8 133 -88.5 l -3.4 29.1 c 0 0 29 -21.9 50 -79.4 l 11.9 17.5 C 422.6 348 426.2 334 424.9 314.2 z M 314 59.3 c 46.1 43.5 38.6 85.9 38.6 85.9 l -17.5 -18.6 l 4.9 -12 c -10.8 -25.6 -25.6 -38.2 -25.6 -38.2 s -3 22.7 -23 25.8 C 299.7 66.5 314 59.3 314 59.3 z M 148.1 59.3 c 0 0 14.4 7.2 22.6 43 c -20.1 -3.1 -23 -25.8 -23 -25.8 s -14.8 12.6 -25.6 38.2 l 4.9 12 l -17.5 18.6 C 109.5 145.2 102 102.8 148.1 59.3 z M 380.5 345.8 c -0.6 1.5 -2.6 1.6 -3.4 0.2 c -18.9 -31.6 -49.4 -7.8 -75.7 33.7 c -24.5 38.6 -40.6 48.9 -48.5 50.2 c -1 0.2 -1.6 1.2 -1.3 2.2 c 1.3 4.1 -4.6 4.2 -12 1.5 c -1 -0.4 -2.1 0.3 -2.2 1.3 c -0.6 4.3 -5 3 -6.4 1.2 c -1.4 1.8 -5.8 3.1 -6.4 -1.2 c -0.1 -1 -1.2 -1.6 -2.2 -1.3 c -7.4 2.7 -13.2 2.6 -12 -1.5 c 0.3 -1 -0.3 -2 -1.3 -2.2 c -7.9 -1.4 -24 -11.6 -48.5 -50.2 c -26.3 -41.5 -56.7 -65.3 -75.7 -33.7 c -0.8 1.4 -2.8 1.2 -3.4 -0.2 c -24.4 -59.6 1.1 -108.1 37.6 -102.4 c 1.3 0.2 2.4 -0.9 2.2 -2.2 c -2 -12.5 -11.4 -42.3 -35.3 -35.6 c -1.7 0.5 -3.1 -1.5 -2 -3 c 26.8 -36.8 58.7 -20.5 58.7 -20.5 s 19.4 -41.3 43 -36.5 c 28.1 5.6 43.4 83.8 35.3 149 c 0 0 5.4 2.2 10.1 2.2 c 4.6 0 10.1 -2.2 10.1 -2.2 c -8.1 -65.2 7.2 -143.4 35.3 -149 c 23.6 -4.7 43 36.5 43 36.5 s 32 -16.3 58.7 20.5 c 1.1 1.5 -0.3 3.5 -2 3 c -23.9 -6.7 -33.3 23.1 -35.3 35.6 c -0.2 1.3 0.9 2.4 2.2 2.2 C 379.4 237.7 404.9 286.3 380.5 345.8 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(82,55,41); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 182 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 254 KiB

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="475.3" height="501" viewBox="0 0 475.3 501" xml:space="preserve">
<desc>Created with Fabric.js 1.7.15</desc>
<defs>
</defs>
<g style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 10;" transform="translate(0 0)">
<path id="color1" d="M 62.8 67.6 h 6.1 c 3.6 0 6.5 2.9 6.5 6.5 v 3.8 c 0 3.6 -2.9 6.5 -6.5 6.5 h -6.1 c 3.6 0 6.5 -2.9 6.5 -6.5 v -3.8 C 69.3 70.5 66.4 67.6 62.8 67.6 z M 49 141.5 c 0 0 -0.1 0.1 -0.3 0.3 c 3.8 0.2 8.9 0.4 13.1 0.6 c 8 0.3 16.5 1.9 15.3 7.2 c -0.8 3.5 -7.7 4.3 -15.1 4.4 c 9.3 0.1 20.2 0.1 21.2 -4.4 c 1.2 -5.3 -7.3 -6.9 -15.3 -7.2 C 59.9 142.1 49 141.5 49 141.5 z M 1.8 153.5 c 0 14.1 4.1 24.2 31.8 27.4 c 8.9 1 19.2 1.7 29.3 1.5 c -8.1 -0.1 -16.1 -0.7 -23.2 -1.5 c -27.8 -3.2 -31.8 -13.3 -31.8 -27.4 c 0 -14.1 15.6 -21 15.6 -21 s -6.3 -4.9 -5.1 -14.7 c 1.2 -9.3 10.5 -14.8 10.5 -14.8 C 12.9 95.7 9.1 80.2 14.6 63.7 C 20 47.1 41.4 44.9 64.2 44.6 c -1.7 0 -3.6 0 -5.6 0 C 35.6 44.9 14 47 8.5 63.7 C 3 80.2 6.8 95.7 22.7 103 c 0 0 -9.3 5.5 -10.5 14.8 c -1.2 9.9 5.1 14.7 5.1 14.7 S 1.8 139.4 1.8 153.5 z M 144.9 108.9 L 144.9 108.9 c 11.9 11.5 27.5 17.8 44.1 17.8 c 16.6 0 32.2 -6.3 44.1 -17.9 l 0 0 l 0.7 -0.7 c 12 -12 18.6 -27.9 18.6 -44.8 c 0 -16.7 -6.5 -32.5 -18.2 -44.4 l -0.7 -0.7 l 0 0 C 221.6 6.5 205.8 0 189 0 c -16.8 0 -32.5 6.5 -44.5 18.3 l 0 0 l -0.7 0.7 c -11.7 11.9 -18.2 27.7 -18.2 44.4 c 0 16.9 6.6 32.8 18.6 44.8 L 144.9 108.9 z M 75 203.6 v 24.9 l -32.6 0 v -24.9 c 0 -6.5 -5.3 -11.8 -11.8 -11.8 h -3 c -6.5 0 -11.8 5.3 -11.8 11.8 V 280 c 0 6.5 5.3 11.8 11.8 11.8 h 3 c 6.5 0 11.8 -5.3 11.8 -11.8 l 0 -24.9 l 32.6 0 V 280 c 0 6.5 5.3 11.8 11.8 11.8 h 3 c 6.5 0 11.8 -5.3 11.8 -11.8 l 0 -76.4 c 0 -6.5 -5.3 -11.8 -11.8 -11.8 h -3 C 80.4 191.7 75 197 75 203.6 z M 128.4 282.9 c 12.8 8.5 26.4 9.1 26.5 9.1 h 25.4 l 0 0 h 4.1 c 6.8 0 12.3 -5.5 12.3 -12.3 V 204 c 0 -6.8 -5.5 -12.3 -12.3 -12.3 h -4.1 c -6.8 0 -12.3 5.5 -12.3 12.3 v 59.3 c -2.9 0.1 -18.6 0.6 -25.1 -4.9 c -7.1 -6 -6.6 -16.9 -6.5 -17 l 0 0 c 0 -0.2 0 -0.4 0 -0.6 l 0 -36.7 c 0 -6.8 -5.5 -12.3 -12.3 -12.3 H 120 c -6.8 0 -12.3 5.5 -12.3 12.3 l 0 36.7 c 0 0.4 0 1.3 0 1.3 C 107.6 242.3 108 269.3 128.4 282.9 z M 240.4 191.1 L 240.4 191.1 C 240.4 191.1 240.4 191.1 240.4 191.1 c -1.3 0 -2.6 0.2 -3.8 0.6 c -6.6 1.3 -20.3 5.3 -28.1 17.6 c -7.2 11.3 -6.6 30.3 -6.5 31.2 v 1.7 c 0 6.1 5 11.1 11.1 11.1 h 43.4 c 1.7 0 3 1.4 3 3 v 5.1 c 0 1.7 -1.4 3 -3 3 h -41.3 c -6.1 0 -11.1 5 -11.1 11.1 v 4.8 c 0 6.1 5 11.1 11.1 11.1 h 56.1 c 6.2 0 11.2 -5 11.2 -11.2 v -5.6 l 0 -10.3 v -22.3 v -1.9 v -0.3 c 0 -5.8 -4.7 -10.5 -10.5 -10.5 h -0.3 h -2.4 h -38.9 c -0.3 -0.1 -2.1 -0.8 -2.8 -2.5 c -0.5 -1.3 -0.2 -2.8 0.9 -4.6 c 3 -5 10.1 -4.1 10.1 -4.1 l 0 -0.1 c 0.6 0.1 1.2 0.1 1.9 0.1 h 26.3 c 7.3 0 13.5 -5.6 13.9 -12.8 c 0.4 -7.8 -5.8 -14.2 -13.5 -14.2 L 240.4 191.1 C 240.4 191.1 240.4 191.1 240.4 191.1 z M 382.3 242.2 c 0 6.1 5 11.1 11.1 11.1 h 43.4 c 1.7 0 3 1.4 3 3 v 5.1 c 0 1.7 -1.4 3 -3 3 h -41.3 c -6.1 0 -11.1 5 -11.1 11.1 v 4.8 c 0 6.1 5 11.1 11.1 11.1 h 56.1 c 6.2 0 11.2 -5 11.2 -11.2 v -5.6 l 0 -10.3 v -22.3 v -1.9 v -0.3 c 0 -5.8 -4.7 -10.5 -10.5 -10.5 h -0.3 h -2.4 h -38.9 c -0.3 -0.1 -2.1 -0.8 -2.8 -2.5 c -0.5 -1.3 -0.2 -2.8 0.9 -4.6 c 3 -5 10.1 -4.1 10.1 -4.1 l 0 -0.1 c 0.6 0.1 1.2 0.1 1.9 0.1 H 447 c 7.3 0 13.5 -5.6 13.9 -12.8 c 0.4 -7.8 -5.8 -14.2 -13.5 -14.2 h -26.7 c 0 0 0 0 0 0 l 0 0 l 0 0 c -1.3 0 -2.6 0.2 -3.8 0.6 c -6.6 1.3 -20.3 5.3 -28.1 17.6 c -7.2 11.3 -6.6 30.3 -6.5 31.2 V 242.2 z M 302.5 292.4 h 3.1 c 6.5 0 11.8 -5.3 11.8 -11.8 v -15 c 0.4 -0.5 0.8 -0.9 1.2 -1.4 l 7.8 -9.1 h 20.8 v 25.5 c 0 6.5 5.3 11.8 11.8 11.8 h 3.1 c 6.5 0 11.8 -5.3 11.8 -11.8 V 243 c 0 -6.5 -5.3 -11.8 -11.8 -11.8 h -3.1 c -0.6 0 -1.1 0.1 -1.7 0.1 h -10.6 l 16.3 -19 c 4.2 -5 3.4 -12.5 -1.6 -16.7 l -2.4 -2 c -5 -4.2 -12.5 -3.4 -16.7 1.6 l -25 33.2 v -24.8 c 0 -6.5 -5.3 -11.8 -11.8 -11.8 h -3.1 c -6.5 0 -11.8 5.3 -11.8 11.8 l 0 76.9 C 290.6 287 296 292.4 302.5 292.4 z M 0 310.1 v 33.6 l 474.3 0 v -33.6 L 0 310.1 z M 0 500 l 474.3 0 v -33.6 L 0 466.4 V 500 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(83,48,26); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color2" d="M 250.4 62.4 H 190 V 39.3 c 16.4 -0.2 31.8 -6.7 43.5 -18.2 C 244.2 32.3 250.2 46.9 250.4 62.4 z M 188 37.3 V 2 c -15.9 0.2 -30.8 6.5 -42.1 17.7 C 157.3 30.8 172.2 37.1 188 37.3 z M 145 106.1 c 11.6 -11.3 26.9 -17.6 43.1 -17.8 V 64.3 h -60.4 C 127.9 80.1 134 94.8 145 106.1 z M 190 124.7 c 15.7 -0.2 30.4 -6.3 41.7 -17.2 c -11.3 -10.9 -26 -17 -41.7 -17.2 L 190 124.7 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color3" d="M 7.9 153.5 c 0 14.1 4.1 24.2 31.8 27.4 c 27.8 3.2 68.6 2.6 78 -13.6 c 6.7 -11.6 4 -32.2 -2.5 -39.4 c 0 0 -6 -8.2 -24.6 -10.2 c -18.5 -2 -37.6 -0.5 -41.6 -4.2 c -3.3 -3 -0.3 -6.9 -0.3 -6.9 s 38.2 1.9 51.8 -5.1 c 14 -7.2 15.2 -22.9 12 -37.2 c 0 0 9.4 0 11.2 -3.2 c 1.2 -2.1 1.7 -7 2 -9.9 c 0.2 -2.3 0.3 -4.1 -2 -4 l -33.8 0.2 c 0 0 -2.1 -3 -25.1 -2.7 S 20.1 47 14.6 63.7 C 9.1 80.2 12.9 95.7 28.8 103 c 0 0 -9.3 5.5 -10.5 14.8 c -1.2 9.9 5.1 14.7 5.1 14.7 S 7.9 139.4 7.9 153.5 z M 51.2 74.1 c 0 -3.6 2.9 -6.5 6.5 -6.5 h 11.2 c 3.6 0 6.5 2.9 6.5 6.5 v 3.8 c 0 3.6 -2.9 6.5 -6.5 6.5 H 57.7 c -3.6 0 -6.5 -2.9 -6.5 -6.5 V 74.1 z M 49 141.5 c 0 0 10.9 0.5 18.9 0.9 c 8 0.3 16.5 1.9 15.3 7.2 c -1.2 5.3 -16.1 4.4 -25.9 4.4 c -9.8 0 -10.9 -4.4 -10.9 -7.4 S 49 141.5 49 141.5 z M 188 62.4 h -60.4 c 0.2 -15.5 6.2 -30.1 16.9 -41.3 c 11.7 11.5 27.1 18 43.5 18.2 V 62.4 z M 188 124.7 c -15.7 -0.2 -30.4 -6.3 -41.7 -17.2 c 11.3 -10.9 26 -17 41.7 -17.2 L 188 124.7 z M 15.8 203.6 V 280 c 0 6.2 4.8 11.3 10.9 11.8 c -0.3 0 -0.7 0.1 -1 0.1 h -3 c -6.5 0 -11.8 -5.3 -11.8 -11.8 v -76.4 c 0 -6.5 5.3 -11.8 11.8 -11.8 h 3 c 0.3 0 0.7 0 1 0.1 C 20.6 192.3 15.8 197.4 15.8 203.6 z M 85.9 191.8 c -6.1 0.5 -10.9 5.6 -10.9 11.8 v 24.9 h -4.9 v -24.9 c 0 -6.5 5.3 -11.8 11.8 -11.8 h 3 C 85.3 191.7 85.6 191.7 85.9 191.8 z M 175.4 191.7 h 4.1 c 0.1 0 0.3 0 0.4 0 c -6.6 0.2 -11.9 5.6 -11.9 12.3 v 59.3 c -0.9 0 -3 0.1 -5.7 0 c 0.3 0 0.5 0 0.7 0 V 204 C 163.1 197.2 168.6 191.7 175.4 191.7 z M 254.6 261.4 v -5.1 c 0 -1.7 -1.4 -3 -3 -3 h 4.9 c 1.7 0 3 1.4 3 3 v 5.1 c 0 1.7 -1.4 3 -3 3 h -4.9 C 253.2 264.5 254.6 263.1 254.6 261.4 z M 434.9 261.4 v -5.1 c 0 -1.7 -1.4 -3 -3 -3 h 4.9 c 1.7 0 3 1.4 3 3 v 5.1 c 0 1.7 -1.4 3 -3 3 h -4.9 C 433.5 264.5 434.9 263.1 434.9 261.4 z M 342.4 195.1 l -25 33.2 v -6.6 l 20 -26.6 c 2.9 -3.5 7.4 -4.9 11.6 -4 C 346.5 191.7 344.2 193 342.4 195.1 z M 347.2 280.5 c 0 6.2 4.8 11.3 10.9 11.8 c -0.3 0 -0.6 0 -0.9 0 h -3.1 c -6.5 0 -11.8 -5.3 -11.8 -11.8 V 255 h 4.9 V 280.5 z M 377.4 240.5 c 0 -0.9 -0.7 -19.9 6.5 -31.2 c 7.9 -12.3 21.5 -16.3 28.1 -17.6 c 1.2 -0.4 2.4 -0.5 3.8 -0.6 l 0 0 l 0 0 c 0 0 0 0 0 0 h 4.9 c 0 0 0 0 0 0 l 0 0 l 0 0 c -1.3 0 -2.6 0.2 -3.8 0.6 c -6.6 1.3 -20.3 5.3 -28.1 17.6 c -7.2 11.3 -6.6 30.3 -6.5 31.2 v 1.7 c 0 6.1 5 11.1 11.1 11.1 h -4.9 c -6.1 0 -11.1 -5 -11.1 -11.1 V 240.5 z M 285.7 280.5 l 0 -76.9 c 0 -6.5 5.3 -11.8 11.8 -11.8 h 3.1 c 0.3 0 0.6 0 0.9 0 c -6.1 0.5 -10.9 5.6 -10.9 11.8 l 0 76.9 c 0 6.2 4.8 11.3 10.9 11.8 c -0.3 0 -0.6 0 -0.9 0 h -3.1 C 291 292.4 285.7 287 285.7 280.5 z M 384.4 275.6 v 4.8 c 0 6.1 5 11.1 11.1 11.1 h -4.9 c -6.1 0 -11.1 -5 -11.1 -11.1 v -4.8 c 0 -6.1 5 -11.1 11.1 -11.1 h 4.9 C 389.4 264.5 384.4 269.4 384.4 275.6 z M 107.6 240.7 c 0 0.4 0 1.3 0 1.3 c 0 0.3 0.3 27.3 20.8 40.9 c 12.8 8.5 26.4 9.1 26.5 9.1 H 150 c -0.2 0 -13.7 -0.6 -26.5 -9.1 c -20.5 -13.6 -20.8 -40.6 -20.8 -40.9 c 0 0 0 -0.8 0 -1.3 l 0 -36.7 c 0 -6.8 5.5 -12.3 12.3 -12.3 h 4.1 c 0.1 0 0.3 0 0.4 0 c -6.6 0.2 -11.9 5.6 -11.9 12.3 L 107.6 240.7 z M 204.1 275.6 v 4.8 c 0 6.1 5 11.1 11.1 11.1 h -4.9 c -6.1 0 -11.1 -5 -11.1 -11.1 v -4.8 c 0 -6.1 5 -11.1 11.1 -11.1 h 4.9 C 209.1 264.5 204.1 269.4 204.1 275.6 z M 70.1 280 v -24.9 l -27.6 0 l 32.6 0 V 280 c 0 6.2 4.8 11.3 10.9 11.8 c -0.3 0 -0.7 0.1 -1 0.1 h -3 C 75.4 291.8 70.1 286.5 70.1 280 z M 197.1 240.5 c 0 -0.9 -0.7 -19.9 6.5 -31.2 c 7.9 -12.3 21.5 -16.3 28.1 -17.6 c 1.2 -0.4 2.4 -0.5 3.8 -0.6 c 0 0 0 0 0 0 l 0 0 c 0 0 0 0 0 0 h 4.9 c 0 0 0 0 0 0 l 0 0 c 0 0 0 0 0 0 c -1.3 0 -2.6 0.2 -3.8 0.6 c -6.6 1.3 -20.3 5.3 -28.1 17.6 c -7.2 11.3 -6.6 30.3 -6.5 31.2 v 1.7 c 0 6.1 5 11.1 11.1 11.1 h -4.9 c -6.1 0 -11.1 -5 -11.1 -11.1 V 240.5 z M 474.3 362.8 l 0 85.9 L 0 448.7 l 0 -85.9 L 474.3 362.8 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,103,27); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 34 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="501" height="501" viewBox="0 0 501 501" xml:space="preserve">
<desc>Created with Fabric.js 1.7.15</desc>
<defs>
</defs>
<g style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 10;" transform="translate(0 0)">
<path id="color1" d="M 426.777 73.224 C 379.558 26.005 316.777 0 250 0 h -0.001 C 183.227 0 120.44 26.008 73.223 73.224 C 26.004 120.442 0 183.223 0 250 c 0 66.777 26.004 129.557 73.223 176.777 C 120.442 473.996 183.223 500 250 500 c 66.777 0 129.558 -26.004 176.777 -73.223 C 473.996 379.558 500 316.778 500 250 S 473.996 120.442 426.777 73.224 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(48,22,7); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color2" d="M 426.777 73.224 C 379.558 26.005 316.778 0 250 0 h -0.001 C 183.227 0 120.44 26.008 73.223 73.224 C 26.004 120.442 0 183.223 0 250 c 0 66.777 26.004 129.557 73.223 176.777 C 120.442 473.996 183.223 500 250 500 c 66.777 0 129.558 -26.004 176.777 -73.223 C 473.996 379.558 500 316.778 500 250 S 473.996 120.442 426.777 73.224 z M 485.31 189.271 c -13.253 -3.768 -46.945 -11.811 -87.876 -10.062 v -30.525 c 0 -0.368 0.299 -0.667 0.667 -0.667 h 28.613 v -64.6 C 454.415 112.783 474.914 149.013 485.31 189.271 z M 194.719 192.836 c 22.473 9.197 46.707 13.811 72.605 13.811 c 10.798 0 21.89 -0.811 33.258 -2.414 v 5.766 H 194.719 V 192.836 z M 97.867 315.968 v 35.349 c 0 0.367 -0.299 0.667 -0.668 0.667 H 86.775 c 1.134 -12.959 3.223 -26.2 6.255 -39.58 C 94.674 313.572 96.281 314.763 97.867 315.968 z M 94.784 305.075 c 0.949 -3.783 1.986 -7.578 3.083 -11.377 v 13.548 C 96.85 306.516 95.823 305.793 94.784 305.075 z M 194.719 287.135 h 105.863 v 51.981 c -38.316 -14.833 -74.62 -31.602 -105.863 -47.608 V 287.135 z M 423.882 80.446 H 271.3 v 67.572 h 28.614 c 0.368 0 0.668 0.299 0.668 0.667 v 48.454 c -38.82 5.607 -74.216 1.61 -105.863 -11.945 v -36.509 c 0 -0.368 0.299 -0.667 0.667 -0.667 H 224 v -45.914 c 44.355 -36.995 93.993 -60.875 140.797 -66.217 C 386.723 47.688 406.633 62.764 423.882 80.446 z M 250 7.008 c 37.136 0 72.346 8.386 103.854 23.344 c -33.228 5.551 -68.026 19.82 -101.356 41.658 c -9.702 6.356 -19.217 13.346 -28.499 20.866 v -12.43 H 120.942 c 2.345 -13.949 7.725 -29.106 16.102 -45.705 C 171.468 16.624 209.992 7.008 250 7.008 z M 126.429 40.672 c -6.482 14.276 -10.683 27.475 -12.658 39.774 h -37.81 c 0.738 -0.757 1.469 -1.519 2.217 -2.268 C 92.839 63.518 109.049 50.972 126.429 40.672 z M 68.584 88.35 v 59.668 h 28.615 c 0.369 0 0.668 0.299 0.668 0.667 v 84.269 c -37.332 -30.755 -64.903 -73.15 -70.133 -81.476 C 37.862 128.65 51.585 107.38 68.584 88.35 z M 7.008 250 c 0 -31.583 6.001 -62.241 17.434 -90.689 c 9.58 14.617 37.39 54.386 73.425 82.622 v 28.491 c -3.628 10.132 -6.785 20.305 -9.413 30.473 c -39.295 -24.698 -68.468 -20.112 -79.079 -17.052 C 7.827 272.781 7.008 261.486 7.008 250 z M 86.675 308.073 c -0.352 1.501 -0.695 3.002 -1.024 4.502 c -2.945 13.397 -4.952 26.569 -6.027 39.408 h -11.04 v 59.483 c -29.671 -33.302 -50.334 -74.789 -58.125 -120.614 C 18.813 288.298 47.436 282.63 86.675 308.073 z M 76.135 419.555 h 7.174 c 0.655 3.073 1.375 6.108 2.169 9.1 C 82.282 425.707 79.17 422.668 76.135 419.555 z M 250 492.994 c -58.682 0 -112.572 -20.911 -154.611 -55.672 c -1.928 -5.751 -3.561 -11.682 -4.902 -17.768 h 95.401 c 21.145 26.835 46.062 52.593 83.75 72.643 C 263.158 492.718 256.61 492.994 250 492.994 z M 282.48 490.816 c -39.779 -18.994 -65.873 -44.412 -87.61 -71.262 H 224 v -67.571 h -28.614 c -0.368 0 -0.667 -0.3 -0.667 -0.667 v -52.084 c 17.054 8.66 35.688 17.598 55.485 26.395 c 14.954 6.643 31.978 13.805 50.377 20.879 v 4.811 c 0 0.367 -0.3 0.667 -0.668 0.667 H 271.3 v 67.571 h 152.55 C 386.837 457.5 337.56 483.426 282.48 490.816 z M 426.714 416.589 v -32.724 c 7.789 1.496 15.575 2.82 23.323 3.919 C 442.994 397.978 435.189 407.604 426.714 416.589 z M 426.714 376.742 v -24.759 h -28.613 c -0.368 0 -0.667 -0.3 -0.667 -0.667 V 186.208 c 45.154 -1.995 81.321 8.289 89.751 10.926 c 3.791 17.026 5.808 34.714 5.808 52.866 c 0 48.335 -14.19 93.417 -38.617 131.304 C 445.255 380.087 436.02 378.546 426.714 376.742 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(241,96,39); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<path id="color3" d="M 398.101 360.992 h 19.604 v 49.553 H 280.31 v -49.553 h 19.604 c 5.335 0 9.677 -4.34 9.677 -9.676 v -73.191 H 185.71 v 73.191 c 0 5.336 4.34 9.676 9.676 9.676 h 19.604 v 49.553 H 77.595 v -49.553 h 19.604 c 5.335 0 9.677 -4.34 9.677 -9.676 V 148.684 c 0 -5.335 -4.342 -9.676 -9.677 -9.676 H 77.595 V 89.456 H 214.99 v 49.552 h -19.604 c -5.336 0 -9.676 4.341 -9.676 9.676 v 70.325 h 123.881 v -70.325 c 0 -5.335 -4.342 -9.676 -9.677 -9.676 H 280.31 V 89.456 h 137.395 v 49.552 h -19.604 c -5.336 0 -9.676 4.341 -9.676 9.676 v 202.632 C 388.425 356.652 392.765 360.992 398.101 360.992 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="440.095" height="501" viewBox="0 0 440.095 501" xml:space="preserve">
<desc>Created with Fabric.js 1.7.15</desc>
<defs>
</defs>
<g style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 10;" transform="translate(0 0)">
<path id="color1" d="M 439.095 237.348 v -85.954 l -17.275 -17.179 H 278.449 v 17.179 l -16.262 -17.179 h -2.995 v -31.081 h 20.354 V 17.179 L 262.267 0 H 110.359 v 85.956 l 17.276 17.179 h 11.628 v 31.081 h -20.445 v 85.766 l -16.174 -17.179 H 0 v 88.896 l 56.905 56.911 h 0.099 l 17.178 17.179 h 64.995 v 31.087 h -20.359 v 85.947 L 136.095 500 h 143.368 v -17.178 L 295.726 500 h 143.369 v -85.945 l -17.275 -17.18 h -3.086 V 237.348 H 439.095 z M 278.449 414.054 l -16.262 -17.18 h -3.089 v -29.629 h 39.718 v 29.629 h -20.367 V 414.054 z M 279.463 220.169 l 16.263 17.179 h 3.09 v 19.848 h -39.624 v -19.848 h 20.271 V 220.169 z M 139.177 237.348 v 17.525 l -8.101 7.787 h -11.157 v -42.492 l 16.176 17.179 H 139.177 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(81,54,40); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
<polygon id="color2" points="295.48,211.49 307.5,211.49 315.84,219.83 315.84,274.22 241.58,274.22 233.24,265.88 233.24,211.49 253.51,211.49 253.51,151.24 241.58,151.24 233.24,142.9 233.24,77.27 253.59,77.27 253.59,17.02 127.38,17.02 127.38,77.27 147.95,77.27 156.29,85.61 156.29,151.24 135.84,151.24 135.84,211.49 147.86,211.49 156.2,219.83 156.2,266.91 142.91,279.68 115.64,279.68 107.3,271.34 93.96,258.01 93.96,219.82 17.02,219.82 17.02,296.44 60.5,339.93 147.86,339.93 156.2,348.27 156.2,413.9 135.84,413.9 135.84,474.14 253.51,474.14 253.51,413.9 241.48,413.9 233.14,405.56 233.14,341.39 307.5,341.39 315.84,349.73 315.84,413.9 295.48,413.9 295.48,474.14 413.14,474.14 413.14,413.9 401.12,413.9 392.78,405.56 392.78,211.49 413.14,211.49 413.14,151.24 295.48,151.24 " style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(201,198,201); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
<path id="color3" d="M 417.123 215.471 v -76.558 H 283.149 v 76.558 h 20.366 v 46.424 h -66.298 v -46.424 h 20.272 v -76.558 h -20.272 V 81.256 h 20.354 V 4.7 H 115.057 v 76.556 h 28.906 v 57.657 h -20.446 v 76.558 h 20.359 v 41.405 l -10.91 10.482 h -24.021 l -11 -11.002 v -48.859 H 4.7 v 82.256 l 54.15 54.158 h 85.027 v 57.661 h -20.359 v 76.549 H 257.49 v -76.549 h -20.366 v -56.204 h 66.392 v 56.204 h -20.366 v 76.549 h 133.974 v -76.549 h -20.363 V 215.471 H 417.123 z M 413.141 405.555 v 68.583 H 287.134 v -68.583 h 20.364 v -64.168 h -74.359 v 64.168 h 20.367 v 68.583 H 127.501 v -68.583 h 20.361 v -65.627 H 60.5 L 8.684 288.102 v -76.621 h 85.279 v 46.527 l 13.336 13.334 h 27.273 l 13.29 -12.771 v -47.083 h -20.361 v -68.591 h 20.446 V 77.274 H 119.04 V 8.682 h 134.549 v 68.592 h -20.354 v 65.624 h 20.271 v 68.591 h -20.271 v 54.388 h 74.264 v -54.388 h -20.364 v -68.591 h 126.007 v 68.591 h -20.365 v 194.066 H 413.141 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 45 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 81 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 65 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@@ -0,0 +1,435 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="3564.249px" height="2693.911px" viewBox="0 0 3564.249 2693.911" enable-background="new 0 0 3564.249 2693.911"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M2605.274,0.293l-285.533,58.734c10.885,238.676-19.871,547.795-231.592,679.379v1739.283
h1476V738.406C3352.43,606.822,3321.674,297.703,3332.53,59.027L3047.026,0.293c-59.046,112.365-90.313,106.043-220.877,104.994
C2695.557,106.336,2664.319,112.658,2605.274,0.293z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_URL">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.198" stroke-miterlimit="10" d="
M2605.274,0.293l-285.533,58.734c10.885,238.676-19.871,547.795-231.592,679.379v1739.283h1476V738.406
C3352.43,606.822,3321.674,297.703,3332.53,59.027L3047.026,0.293c-59.046,112.365-90.313,106.043-220.877,104.994
C2695.557,106.336,2664.319,112.658,2605.274,0.293z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M3446.256,2329.889l80.532,94.734l37.361-1.586 M2140.449,699.26l208.517,54.992
l0.766,0.879l-232.81,11.055l-25.397-29.906C2109.07,725.111,2125.369,712.752,2140.449,699.26 M2088.15,764.74v1712.947
h1453.067L2119.132,805.416L2088.15,764.74z M3564.15,2468.561v-27.355l-29.792-7.68L3564.15,2468.561z M3564.15,2315.604
v-36.029l-205.994-53.32l80.504,94.707L3564.15,2315.604z M3564.15,2208.143v-9.299l-294.066-76.195l80.476,94.648
L3564.15,2208.143z M3564.15,2171.434v-35.064L2231.639,582.359c-3.883,7.086-7.908,14.088-12.104,20.947l218.863,255.232
l-0.453-0.539l-313.03-82.461l80.136,94.281l233.574-10.998l710.957,829.133l-319.945-83.424l80.332,94.508l239.982-10.658
l-0.369-0.426l355.833,414.992l-323.433-83.934l80.447,94.648l243.155-10.516l-0.028-0.029L3564.15,2171.434z
M2389.161,1086.416l80.249,94.365l235.956-10.886l-0.567-0.651L2389.161,1086.416z M2917.708,1708.139l80.392,94.564
l240.746-10.631l-0.313-0.369L2917.708,1708.139z M3564.15,2360.363l-117.894-30.475 M3093.883,1915.408L3174.33,2010
l242.362-10.545l-0.227-0.256L3093.883,1915.408z M3005.81,1811.773l80.39,94.592l241.569-10.602l-0.255-0.313L3005.81,1811.773
z M2741.536,1500.898l80.334,94.506l239.159-10.742l-0.397-0.455L2741.536,1500.898z M2653.434,1397.291l80.306,94.451
l238.366-10.773l-0.426-0.51L2653.434,1397.291z M2565.363,1293.656l80.276,94.422l237.572-10.799l-0.481-0.568
L2565.363,1293.656z M2477.262,1190.021l80.248,94.422l236.778-10.855l-0.539-0.596L2477.262,1190.021z M2301.088,982.781
l80.192,94.365l235.19-10.941l-0.623-0.709L2301.088,982.781z M2212.988,879.174l80.192,94.311l234.368-10.972l-0.651-0.765
L2212.988,879.174z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_URL">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M3446.256,2329.889l80.532,94.734l37.361-1.586 M2140.449,699.26l208.517,54.992l0.766,0.879l-232.81,11.055l-25.397-29.906
C2109.07,725.111,2125.369,712.752,2140.449,699.26 M2088.15,764.74v1712.947h1453.067L2119.132,805.416L2088.15,764.74z
M3564.15,2468.561v-27.355l-29.792-7.68L3564.15,2468.561z M3564.15,2315.604v-36.029l-205.994-53.32l80.504,94.707
L3564.15,2315.604z M3564.15,2208.143v-9.299l-294.066-76.195l80.476,94.648L3564.15,2208.143z M3564.15,2171.434v-35.064
L2231.639,582.359c-3.883,7.086-7.908,14.088-12.104,20.947l218.863,255.232l-0.453-0.539l-313.03-82.461l80.136,94.281
l233.574-10.998l710.957,829.133l-319.945-83.424l80.332,94.508l239.982-10.658l-0.369-0.426l355.833,414.992l-323.433-83.934
l80.447,94.648l243.155-10.516l-0.028-0.029L3564.15,2171.434z M2389.161,1086.416l80.249,94.365l235.956-10.886l-0.567-0.651
L2389.161,1086.416z M2917.708,1708.139l80.392,94.564l240.746-10.631l-0.313-0.369L2917.708,1708.139z M3564.15,2360.363
l-117.894-30.475 M3093.883,1915.408L3174.33,2010l242.362-10.545l-0.227-0.256L3093.883,1915.408z M3005.81,1811.773
l80.39,94.592l241.569-10.602l-0.255-0.313L3005.81,1811.773z M2741.536,1500.898l80.334,94.506l239.159-10.742l-0.397-0.455
L2741.536,1500.898z M2653.434,1397.291l80.306,94.451l238.366-10.773l-0.426-0.51L2653.434,1397.291z M2565.363,1293.656
l80.276,94.422l237.572-10.799l-0.481-0.568L2565.363,1293.656z M2477.262,1190.021l80.248,94.422l236.778-10.855l-0.539-0.596
L2477.262,1190.021z M2301.088,982.781l80.192,94.365l235.19-10.941l-0.623-0.709L2301.088,982.781z M2212.988,879.174
l80.192,94.311l234.368-10.972l-0.651-0.765L2212.988,879.174z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M2373.712,56.561c9.638,211.947-12.474,476.107-157.465,642.67
c-37.105,42.634-80.078,76.31-128.099,101.34v-62.164c89.293-55.531,146.41-142.583,181.787-242.646l0.028-0.141
c7.767-22.025,14.513-44.646,20.269-67.721l0.311-1.189c0.879-3.543,1.758-7.115,2.58-10.688
c0.113-0.396,0.197-0.821,0.312-1.219c4.394-18.851,8.192-37.928,11.452-57.174c0.113-0.709,0.227-1.39,0.34-2.07
c0.567-3.289,1.077-6.576,1.615-9.865c0.143-0.991,0.284-1.955,0.454-2.947c0.481-3.175,0.964-6.378,1.417-9.553
c0.142-1.02,0.284-2.041,0.454-3.061c0.453-3.261,0.907-6.492,1.332-9.752c0.085-0.596,0.17-1.219,0.227-1.814
c1.445-10.828,2.693-21.713,3.827-32.569c0.085-0.907,0.17-1.815,0.283-2.722c0.284-2.92,0.566-5.868,0.822-8.787
c0.142-1.475,0.283-2.92,0.426-4.395c0.254-2.75,0.48-5.498,0.708-8.248c0.142-1.617,0.255-3.26,0.396-4.875
c0.198-2.666,0.425-5.33,0.624-7.994c0.113-1.729,0.227-3.459,0.368-5.188c0.17-2.579,0.34-5.187,0.511-7.795
c0.113-1.7,0.198-3.401,0.312-5.103c0.312-5.301,0.595-10.602,0.851-15.902c0.085-1.332,0.142-2.664,0.198-3.996
c0.113-2.324,0.199-4.678,0.312-7.029c0.086-2.041,0.171-4.082,0.227-6.123c0.085-2.24,0.171-4.508,0.227-6.748
c0.086-2.154,0.143-4.279,0.199-6.434s0.113-4.337,0.17-6.492c0.057-2.238,0.113-4.479,0.143-6.718
c0.056-2.069,0.085-4.138,0.113-6.208c0.057-2.408,0.084-4.818,0.084-7.229l0.086-5.611c0-3.034,0.027-6.01,0.027-9.016v-3.967
c0-4.141-0.027-8.25-0.056-12.359c0-1.531-0.029-3.09-0.029-4.621c-0.028-2.75-0.085-5.471-0.112-8.192
c-0.028-1.7-0.058-3.401-0.086-5.103c-0.057-2.58-0.113-5.131-0.17-7.709c-0.029-1.701-0.057-3.402-0.113-5.104
c-0.057-2.607-0.142-5.216-0.227-7.795c-0.029-1.587-0.085-3.176-0.142-4.762c-0.085-2.836-0.17-5.67-0.284-8.477
c-0.057-1.332-0.084-2.664-0.141-3.968c-0.172-4.11-0.341-8.222-0.539-12.304l53.574-10.998L2373.712,56.561z M3382.364,495.76
l-0.028-0.141c-7.795-21.997-14.513-44.646-20.296-67.721l-0.283-1.189c-0.879-3.543-1.758-7.115-2.608-10.688
c-0.085-0.396-0.17-0.821-0.284-1.219c-4.393-18.851-8.191-37.928-11.451-57.174c-0.113-0.709-0.227-1.39-0.34-2.07
c-0.567-3.289-1.077-6.576-1.615-9.865c-0.143-0.991-0.284-1.955-0.454-2.947c-0.482-3.175-0.964-6.378-1.417-9.553
c-0.17-1.02-0.313-2.041-0.454-3.061c-0.453-3.261-0.907-6.492-1.332-9.752c-0.085-0.596-0.17-1.219-0.255-1.814
c-1.417-10.828-2.665-21.713-3.799-32.569c-0.086-0.907-0.198-1.815-0.283-2.722c-0.284-2.92-0.567-5.868-0.852-8.787
c-0.112-1.475-0.254-2.92-0.396-4.395c-0.254-2.75-0.48-5.498-0.708-8.248c-0.142-1.617-0.284-3.26-0.397-4.875
c-0.227-2.666-0.425-5.33-0.623-7.994c-0.113-1.729-0.227-3.459-0.369-5.188c-0.17-2.579-0.34-5.187-0.51-7.795
c-0.113-1.7-0.199-3.401-0.312-5.103c-0.312-5.301-0.595-10.602-0.879-15.902c-0.058-1.332-0.113-2.664-0.198-3.996
c-0.085-2.324-0.171-4.678-0.284-7.029c-0.085-2.041-0.17-4.082-0.255-6.123c-0.056-2.24-0.142-4.508-0.227-6.748
c-0.057-2.154-0.113-4.279-0.17-6.434c-0.086-2.154-0.142-4.337-0.17-6.492c-0.057-2.238-0.113-4.479-0.143-6.718
c-0.056-2.069-0.085-4.138-0.113-6.208c-0.057-2.408-0.085-4.818-0.112-7.229c0-1.871-0.029-3.742-0.058-5.611
c0-3.034-0.027-6.01-0.027-9.016v-3.967c0-4.141,0-8.25,0.056-12.359c0-1.531,0.029-3.09,0.029-4.621
c0.027-2.75,0.056-5.471,0.112-8.192c0.028-1.7,0.058-3.401,0.086-5.103c0.057-2.58,0.084-5.131,0.142-7.709
c0.057-1.701,0.085-3.402,0.142-5.104c0.057-2.607,0.141-5.216,0.198-7.795c0.057-1.587,0.113-3.176,0.17-4.762
c0.085-2.836,0.17-5.67,0.284-8.477c0.056-1.332,0.084-2.664,0.141-3.968c0.171-4.11,0.34-8.222,0.51-12.304l-53.545-10.998
l-0.397,8.533c-9.638,211.947,12.444,476.107,157.465,642.67c37.104,42.634,80.078,76.31,128.098,101.34v-62.164
C3474.858,682.902,3417.741,595.823,3382.364,495.76z M2826.241,105.285c-130.592,1.049-161.83,7.369-220.877-104.996
L2550.315,11.6l7.229,13.805c23.812,45.27,52.102,91.162,99.638,114.492c24.889,12.217,51.307,16.639,78.719,18.367
c29.82,1.844,60.406,1.021,90.34,1.021c29.905,0,60.49,0.822,90.34-1.021c27.41-1.729,53.802-6.15,78.69-18.367
c47.537-23.33,75.854-69.223,99.638-114.492l7.257-13.805l-55.05-11.311C2988.071,112.654,2956.804,106.334,2826.241,105.285z"
/>
</defs>
<clipPath id="Back_Trim_2_Clippath_URL">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#808080" d="
M2373.712,56.561c9.638,211.947-12.474,476.107-157.465,642.67c-37.105,42.634-80.078,76.31-128.099,101.34v-62.164
c89.293-55.531,146.41-142.583,181.787-242.646l0.028-0.141c7.767-22.025,14.513-44.646,20.269-67.721l0.311-1.189
c0.879-3.543,1.758-7.115,2.58-10.688c0.113-0.396,0.197-0.821,0.312-1.219c4.394-18.851,8.192-37.928,11.452-57.174
c0.113-0.709,0.227-1.39,0.34-2.07c0.567-3.289,1.077-6.576,1.615-9.865c0.143-0.991,0.284-1.955,0.454-2.947
c0.481-3.175,0.964-6.378,1.417-9.553c0.142-1.02,0.284-2.041,0.454-3.061c0.453-3.261,0.907-6.492,1.332-9.752
c0.085-0.596,0.17-1.219,0.227-1.814c1.445-10.828,2.693-21.713,3.827-32.569c0.085-0.907,0.17-1.815,0.283-2.722
c0.284-2.92,0.566-5.868,0.822-8.787c0.142-1.475,0.283-2.92,0.426-4.395c0.254-2.75,0.48-5.498,0.708-8.248
c0.142-1.617,0.255-3.26,0.396-4.875c0.198-2.666,0.425-5.33,0.624-7.994c0.113-1.729,0.227-3.459,0.368-5.188
c0.17-2.579,0.34-5.187,0.511-7.795c0.113-1.7,0.198-3.401,0.312-5.103c0.312-5.301,0.595-10.602,0.851-15.902
c0.085-1.332,0.142-2.664,0.198-3.996c0.113-2.324,0.199-4.678,0.312-7.029c0.086-2.041,0.171-4.082,0.227-6.123
c0.085-2.24,0.171-4.508,0.227-6.748c0.086-2.154,0.143-4.279,0.199-6.434s0.113-4.337,0.17-6.492
c0.057-2.238,0.113-4.479,0.143-6.718c0.056-2.069,0.085-4.138,0.113-6.208c0.057-2.408,0.084-4.818,0.084-7.229l0.086-5.611
c0-3.034,0.027-6.01,0.027-9.016v-3.967c0-4.141-0.027-8.25-0.056-12.359c0-1.531-0.029-3.09-0.029-4.621
c-0.028-2.75-0.085-5.471-0.112-8.192c-0.028-1.7-0.058-3.401-0.086-5.103c-0.057-2.58-0.113-5.131-0.17-7.709
c-0.029-1.701-0.057-3.402-0.113-5.104c-0.057-2.607-0.142-5.216-0.227-7.795c-0.029-1.587-0.085-3.176-0.142-4.762
c-0.085-2.836-0.17-5.67-0.284-8.477c-0.057-1.332-0.084-2.664-0.141-3.968c-0.172-4.11-0.341-8.222-0.539-12.304l53.574-10.998
L2373.712,56.561z M3382.364,495.76l-0.028-0.141c-7.795-21.997-14.513-44.646-20.296-67.721l-0.283-1.189
c-0.879-3.543-1.758-7.115-2.608-10.688c-0.085-0.396-0.17-0.821-0.284-1.219c-4.393-18.851-8.191-37.928-11.451-57.174
c-0.113-0.709-0.227-1.39-0.34-2.07c-0.567-3.289-1.077-6.576-1.615-9.865c-0.143-0.991-0.284-1.955-0.454-2.947
c-0.482-3.175-0.964-6.378-1.417-9.553c-0.17-1.02-0.313-2.041-0.454-3.061c-0.453-3.261-0.907-6.492-1.332-9.752
c-0.085-0.596-0.17-1.219-0.255-1.814c-1.417-10.828-2.665-21.713-3.799-32.569c-0.086-0.907-0.198-1.815-0.283-2.722
c-0.284-2.92-0.567-5.868-0.852-8.787c-0.112-1.475-0.254-2.92-0.396-4.395c-0.254-2.75-0.48-5.498-0.708-8.248
c-0.142-1.617-0.284-3.26-0.397-4.875c-0.227-2.666-0.425-5.33-0.623-7.994c-0.113-1.729-0.227-3.459-0.369-5.188
c-0.17-2.579-0.34-5.187-0.51-7.795c-0.113-1.7-0.199-3.401-0.312-5.103c-0.312-5.301-0.595-10.602-0.879-15.902
c-0.058-1.332-0.113-2.664-0.198-3.996c-0.085-2.324-0.171-4.678-0.284-7.029c-0.085-2.041-0.17-4.082-0.255-6.123
c-0.056-2.24-0.142-4.508-0.227-6.748c-0.057-2.154-0.113-4.279-0.17-6.434c-0.086-2.154-0.142-4.337-0.17-6.492
c-0.057-2.238-0.113-4.479-0.143-6.718c-0.056-2.069-0.085-4.138-0.113-6.208c-0.057-2.408-0.085-4.818-0.112-7.229
c0-1.871-0.029-3.742-0.058-5.611c0-3.034-0.027-6.01-0.027-9.016v-3.967c0-4.141,0-8.25,0.056-12.359
c0-1.531,0.029-3.09,0.029-4.621c0.027-2.75,0.056-5.471,0.112-8.192c0.028-1.7,0.058-3.401,0.086-5.103
c0.057-2.58,0.084-5.131,0.142-7.709c0.057-1.701,0.085-3.402,0.142-5.104c0.057-2.607,0.141-5.216,0.198-7.795
c0.057-1.587,0.113-3.176,0.17-4.762c0.085-2.836,0.17-5.67,0.284-8.477c0.056-1.332,0.084-2.664,0.141-3.968
c0.171-4.11,0.34-8.222,0.51-12.304l-53.545-10.998l-0.397,8.533c-9.638,211.947,12.444,476.107,157.465,642.67
c37.104,42.634,80.078,76.31,128.098,101.34v-62.164C3474.858,682.902,3417.741,595.823,3382.364,495.76z M2826.241,105.285
c-130.592,1.049-161.83,7.369-220.877-104.996L2550.315,11.6l7.229,13.805c23.812,45.27,52.102,91.162,99.638,114.492
c24.889,12.217,51.307,16.639,78.719,18.367c29.82,1.844,60.406,1.021,90.34,1.021c29.905,0,60.49,0.822,90.34-1.021
c27.41-1.729,53.802-6.15,78.69-18.367c47.537-23.33,75.854-69.223,99.638-114.492l7.257-13.805l-55.05-11.311
C2988.071,112.654,2956.804,106.334,2826.241,105.285z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Jock_Tag">
<rect x="3348.149" y="2117.687" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Prod_QR_Code">
<rect x="3330.149" y="2497.304" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="2322.149" y="158.876" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1247.116,0.293l285.506,58.734c-12.728,279.723,31.662,656.275,357.619,730.289
c64.432-14.627,117.836-41.131,162-76.337v1764.71h-2052V712.979c44.164,35.206,97.568,61.71,162,76.337
C488.196,715.303,532.587,338.75,519.832,59.027L805.366,0.293c10.261,226.346,91.644,401.754,220.875,497.027
C1155.472,402.047,1236.855,226.639,1247.116,0.293z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_URL">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.482" stroke-miterlimit="10" d="
M1247.116,0.293l285.506,58.734c-12.728,279.723,31.662,656.275,357.619,730.289c64.432-14.627,117.836-41.131,162-76.337
v1764.71h-2052V712.979c44.164,35.206,97.568,61.71,162,76.337C488.196,715.303,532.587,338.75,519.832,59.027L805.366,0.293
c10.261,226.346,91.644,401.754,220.875,497.027C1155.472,402.047,1236.855,226.639,1247.116,0.293z"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M406.133,2330.174l-80.531,94.732l-245.537-10.402 M1711.942,699.543l-208.518,54.992
l-0.765,0.879l232.781,11.055l25.427-29.906C1743.321,725.395,1727.022,713.036,1711.942,699.543 M1620.75,582.643
c3.883,7.086,7.909,14.088,12.104,20.947l-218.863,255.232l0.454-0.539l313.029-82.46l-80.135,94.28l-233.576-10.998
l-710.956,829.133l319.946-83.424l-80.334,94.508l-239.981-10.658l0.341-0.426L346.975,2103.23l323.433-83.934l-80.446,94.648
l-243.156-10.516l0.027-0.029l-88.809,103.578l324.283-84.047l-80.477,94.65l-243.949-10.461l0.143-0.143L80.121,2414.447
l-0.056,0.027l-54.426,63.496H0.241v-5.441L1620.75,582.643z M1778.045,746.883c33.052,18.68,70.299,33.221,112.195,42.717
c64.431-14.627,117.836-41.103,162-76.309v1764.68H311.172L1733.258,805.7L1778.045,746.883z M280.474,2477.971h-133.54
l171.099-44.162L280.474,2477.971z M1463.201,1086.699l-80.22,94.365l-235.956-10.885l0.567-0.652L1463.201,1086.699z
M934.682,1708.422l-80.391,94.564l-240.746-10.631l0.312-0.369L934.682,1708.422z M494.206,2226.537l-80.475,94.707
l-244.771-10.432l0.112-0.113L494.206,2226.537z M80.121,2414.447l326.013-84.273 M758.48,1915.691l-80.419,94.592
l-242.362-10.545l0.228-0.256L758.48,1915.691z M846.581,1812.057l-80.39,94.592l-241.569-10.602l0.256-0.313L846.581,1812.057z
M1110.855,1501.182l-80.334,94.506l-239.159-10.742l0.396-0.455L1110.855,1501.182z M1198.956,1397.574l-80.306,94.451
l-238.365-10.771l0.425-0.512L1198.956,1397.574z M1287.028,1293.939l-80.277,94.422l-237.572-10.799l0.482-0.568
L1287.028,1293.939z M1375.129,1190.305l-80.25,94.422l-236.777-10.855l0.51-0.596L1375.129,1190.305z M1551.301,983.064
l-80.191,94.365l-235.189-10.941l0.623-0.709L1551.301,983.064z M1639.403,879.458l-80.191,94.31l-234.369-10.972l0.651-0.765
L1639.403,879.458z"/>
</defs>
<clipPath id="Front_MainColor_Clippath_URL">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M406.133,2330.174l-80.531,94.732l-245.537-10.402 M1711.942,699.543l-208.518,54.992l-0.765,0.879l232.781,11.055l25.427-29.906
C1743.321,725.395,1727.022,713.036,1711.942,699.543 M1620.75,582.643c3.883,7.086,7.909,14.088,12.104,20.947l-218.863,255.232
l0.454-0.539l313.029-82.46l-80.135,94.28l-233.576-10.998l-710.956,829.133l319.946-83.424l-80.334,94.508l-239.981-10.658
l0.341-0.426L346.975,2103.23l323.433-83.934l-80.446,94.648l-243.156-10.516l0.027-0.029l-88.809,103.578l324.283-84.047
l-80.477,94.65l-243.949-10.461l0.143-0.143L80.121,2414.447l-0.056,0.027l-54.426,63.496H0.241v-5.441L1620.75,582.643z
M1778.045,746.883c33.052,18.68,70.299,33.221,112.195,42.717c64.431-14.627,117.836-41.103,162-76.309v1764.68H311.172
L1733.258,805.7L1778.045,746.883z M280.474,2477.971h-133.54l171.099-44.162L280.474,2477.971z M1463.201,1086.699
l-80.22,94.365l-235.956-10.885l0.567-0.652L1463.201,1086.699z M934.682,1708.422l-80.391,94.564l-240.746-10.631l0.312-0.369
L934.682,1708.422z M494.206,2226.537l-80.475,94.707l-244.771-10.432l0.112-0.113L494.206,2226.537z M80.121,2414.447
l326.013-84.273 M758.48,1915.691l-80.419,94.592l-242.362-10.545l0.228-0.256L758.48,1915.691z M846.581,1812.057l-80.39,94.592
l-241.569-10.602l0.256-0.313L846.581,1812.057z M1110.855,1501.182l-80.334,94.506l-239.159-10.742l0.396-0.455
L1110.855,1501.182z M1198.956,1397.574l-80.306,94.451l-238.365-10.771l0.425-0.512L1198.956,1397.574z M1287.028,1293.939
l-80.277,94.422l-237.572-10.799l0.482-0.568L1287.028,1293.939z M1375.129,1190.305l-80.25,94.422l-236.777-10.855l0.51-0.596
L1375.129,1190.305z M1551.301,983.064l-80.191,94.365l-235.189-10.941l0.623-0.709L1551.301,983.064z M1639.403,879.458
l-80.191,94.31l-234.369-10.972l0.651-0.765L1639.403,879.458z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M0.239,2513.813h1656v180h-1656V2513.813z M994.209,541.144l32.031,23.642l32.031-23.642
c164.92-121.55,231.817-332.362,242.362-529.483l-53.519-10.998c-10.262,226.346-91.644,401.781-220.875,497.025
C897.009,402.443,815.626,227.008,805.366,0.662L751.847,11.66C762.393,208.781,829.29,419.594,994.209,541.144z
M113.087,2474.768h98.306V832.318c79.768-24.662,148.99-68.543,204.945-132.803C561.331,532.951,583.44,268.79,573.803,56.844
l-0.396-8.531l-53.575,10.998c12.104,265.01-27.185,616.846-308.466,716.088c-3.063,1.105-6.152,2.154-9.299,3.174
c-2.352,0.767-4.733,1.531-7.114,2.269c-1.729,0.538-3.458,1.077-5.216,1.587c-3.826,1.135-7.682,2.211-11.622,3.26
c-0.481,0.143-0.992,0.256-1.502,0.397c-4.706,1.247-9.525,2.409-14.372,3.515l-0.255-0.057l-0.397-0.085l-0.226-0.058
l-0.652-0.141l-0.142-0.029c-1.049-0.254-2.098-0.481-3.118-0.736h-0.029l-0.481-0.113l-0.426-0.113l-0.651-0.17h-0.056
l-1.504-0.369l-0.084-0.027l-0.652-0.143l-0.34-0.084l-0.397-0.115l-0.17-0.027l-0.964-0.256h-0.085l-0.341-0.112
c-1.359-0.341-2.692-0.681-4.024-1.021l-0.17-0.057c-4.876-1.275-9.638-2.609-14.372-4.025l-0.482-0.143
c-3.57-1.076-7.086-2.182-10.572-3.344l-1.135-0.369l-0.34-0.113l-1.049-0.34l-0.367-0.143l-0.171-0.057h-0.028l-0.028-0.027
l-0.822-0.256c-4.28-1.473-8.532-2.977-12.698-4.563c-0.482-0.17-0.965-0.368-1.447-0.539
c-3.939-1.502-7.852-3.062-11.707-4.677c-0.68-0.283-1.36-0.566-2.068-0.85c-3.572-1.531-7.115-3.09-10.63-4.707
c-0.907-0.424-1.813-0.821-2.722-1.246c-3.231-1.504-6.406-3.062-9.553-4.649c-1.219-0.595-2.41-1.19-3.629-1.813
c-2.777-1.446-5.555-2.92-8.305-4.422c-1.502-0.822-3.033-1.645-4.536-2.494c-2.353-1.334-4.677-2.666-6.974-4.055
c-1.813-1.049-3.6-2.154-5.385-3.232c-1.984-1.217-3.912-2.436-5.84-3.655c-2.041-1.304-4.053-2.638-6.037-3.97
c-1.645-1.076-3.289-2.182-4.875-3.287c-2.354-1.616-4.707-3.288-7.002-4.932c-1.22-0.879-2.438-1.787-3.629-2.666
c-2.551-1.898-5.074-3.826-7.568-5.754c-0.936-0.736-1.899-1.502-2.834-2.24l-0.029-0.027v66.529
c34.668,22.563,72.396,39.996,112.847,52.498V2474.768z M2052.212,713.318c-0.937,0.738-1.899,1.504-2.835,2.24
c-2.494,1.928-5.018,3.855-7.568,5.754c-1.219,0.879-2.41,1.787-3.629,2.666c-2.296,1.644-4.648,3.315-7.001,4.932
c-1.616,1.105-3.231,2.211-4.876,3.287c-1.984,1.332-3.997,2.666-6.038,3.97c-1.927,1.22-3.883,2.438-5.839,3.655
c-1.786,1.078-3.572,2.184-5.386,3.232c-2.296,1.389-4.649,2.721-6.974,4.055c-1.53,0.85-3.032,1.672-4.535,2.494
c-2.75,1.502-5.527,2.976-8.334,4.422c-1.19,0.594-2.381,1.219-3.6,1.813c-3.146,1.588-6.321,3.146-9.553,4.649
c-0.907,0.425-1.814,0.822-2.721,1.246c-3.516,1.617-7.06,3.176-10.659,4.707l-2.04,0.85c-3.856,1.615-7.768,3.175-11.708,4.677
c-0.481,0.171-0.963,0.369-1.445,0.539c-4.167,1.587-8.419,3.091-12.699,4.563l-0.709,0.227h-0.027l-0.029,0.029l-0.51,0.17
h-0.028c-0.709,0.255-1.446,0.482-2.183,0.736l-0.085,0.029l-0.454,0.141l-0.255,0.086l-0.057,0.027l-0.256,0.086l-0.226,0.057
c-3.203,1.049-6.436,2.068-9.695,3.061l-0.482,0.143c-4.733,1.416-9.523,2.75-14.37,4.025l-0.171,0.057
c-1.134,0.283-2.239,0.566-3.374,0.879l-0.141,0.027l-1.333,0.34l-0.113,0.029c-0.481,0.113-0.991,0.256-1.502,0.368
l-0.142,0.028l-0.482,0.113l-1.445,0.369h-0.085l-0.143,0.057l-0.935,0.227l-0.17,0.027l-0.369,0.086l-0.142,0.029l-0.198,0.056
l-0.426,0.114c-0.765,0.17-1.559,0.34-2.323,0.537l-0.143,0.029l-0.651,0.141l-0.228,0.058l-0.396,0.085l-0.255,0.057
c-4.875-1.105-9.666-2.268-14.4-3.515c-0.482-0.142-0.992-0.255-1.502-0.397c-3.912-1.049-7.768-2.125-11.594-3.26
c-1.758-0.51-3.486-1.049-5.217-1.587c-2.408-0.737-4.762-1.502-7.113-2.269c-3.147-1.02-6.237-2.068-9.326-3.174
c-281.282-99.242-320.542-451.078-308.467-716.088l-53.547-10.998l-0.396,8.531c-9.638,211.946,12.444,476.107,157.465,642.672
c55.928,64.26,125.178,108.141,204.945,132.803v1642.449h98.305V832.318c40.45-12.502,78.18-29.935,112.848-52.498v-66.529
L2052.212,713.318z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_URL">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_URL)" fill="#66806C" stroke="#FFFFFF" stroke-width="0.198" stroke-miterlimit="10" d="
M0.239,2513.813h1656v180h-1656V2513.813z M994.209,541.144l32.031,23.642l32.031-23.642
c164.92-121.55,231.817-332.362,242.362-529.483l-53.519-10.998c-10.262,226.346-91.644,401.781-220.875,497.025
C897.009,402.443,815.626,227.008,805.366,0.662L751.847,11.66C762.393,208.781,829.29,419.594,994.209,541.144z
M113.087,2474.768h98.306V832.318c79.768-24.662,148.99-68.543,204.945-132.803C561.331,532.951,583.44,268.79,573.803,56.844
l-0.396-8.531l-53.575,10.998c12.104,265.01-27.185,616.846-308.466,716.088c-3.063,1.105-6.152,2.154-9.299,3.174
c-2.352,0.767-4.733,1.531-7.114,2.269c-1.729,0.538-3.458,1.077-5.216,1.587c-3.826,1.135-7.682,2.211-11.622,3.26
c-0.481,0.143-0.992,0.256-1.502,0.397c-4.706,1.247-9.525,2.409-14.372,3.515l-0.255-0.057l-0.397-0.085l-0.226-0.058
l-0.652-0.141l-0.142-0.029c-1.049-0.254-2.098-0.481-3.118-0.736h-0.029l-0.481-0.113l-0.426-0.113l-0.651-0.17h-0.056
l-1.504-0.369l-0.084-0.027l-0.652-0.143l-0.34-0.084l-0.397-0.115l-0.17-0.027l-0.964-0.256h-0.085l-0.341-0.112
c-1.359-0.341-2.692-0.681-4.024-1.021l-0.17-0.057c-4.876-1.275-9.638-2.609-14.372-4.025l-0.482-0.143
c-3.57-1.076-7.086-2.182-10.572-3.344l-1.135-0.369l-0.34-0.113l-1.049-0.34l-0.367-0.143l-0.171-0.057h-0.028l-0.028-0.027
l-0.822-0.256c-4.28-1.473-8.532-2.977-12.698-4.563c-0.482-0.17-0.965-0.368-1.447-0.539c-3.939-1.502-7.852-3.062-11.707-4.677
c-0.68-0.283-1.36-0.566-2.068-0.85c-3.572-1.531-7.115-3.09-10.63-4.707c-0.907-0.424-1.813-0.821-2.722-1.246
c-3.231-1.504-6.406-3.062-9.553-4.649c-1.219-0.595-2.41-1.19-3.629-1.813c-2.777-1.446-5.555-2.92-8.305-4.422
c-1.502-0.822-3.033-1.645-4.536-2.494c-2.353-1.334-4.677-2.666-6.974-4.055c-1.813-1.049-3.6-2.154-5.385-3.232
c-1.984-1.217-3.912-2.436-5.84-3.655c-2.041-1.304-4.053-2.638-6.037-3.97c-1.645-1.076-3.289-2.182-4.875-3.287
c-2.354-1.616-4.707-3.288-7.002-4.932c-1.22-0.879-2.438-1.787-3.629-2.666c-2.551-1.898-5.074-3.826-7.568-5.754
c-0.936-0.736-1.899-1.502-2.834-2.24l-0.029-0.027v66.529c34.668,22.563,72.396,39.996,112.847,52.498V2474.768z
M2052.212,713.318c-0.937,0.738-1.899,1.504-2.835,2.24c-2.494,1.928-5.018,3.855-7.568,5.754
c-1.219,0.879-2.41,1.787-3.629,2.666c-2.296,1.644-4.648,3.315-7.001,4.932c-1.616,1.105-3.231,2.211-4.876,3.287
c-1.984,1.332-3.997,2.666-6.038,3.97c-1.927,1.22-3.883,2.438-5.839,3.655c-1.786,1.078-3.572,2.184-5.386,3.232
c-2.296,1.389-4.649,2.721-6.974,4.055c-1.53,0.85-3.032,1.672-4.535,2.494c-2.75,1.502-5.527,2.976-8.334,4.422
c-1.19,0.594-2.381,1.219-3.6,1.813c-3.146,1.588-6.321,3.146-9.553,4.649c-0.907,0.425-1.814,0.822-2.721,1.246
c-3.516,1.617-7.06,3.176-10.659,4.707l-2.04,0.85c-3.856,1.615-7.768,3.175-11.708,4.677c-0.481,0.171-0.963,0.369-1.445,0.539
c-4.167,1.587-8.419,3.091-12.699,4.563l-0.709,0.227h-0.027l-0.029,0.029l-0.51,0.17h-0.028
c-0.709,0.255-1.446,0.482-2.183,0.736l-0.085,0.029l-0.454,0.141l-0.255,0.086l-0.057,0.027l-0.256,0.086l-0.226,0.057
c-3.203,1.049-6.436,2.068-9.695,3.061l-0.482,0.143c-4.733,1.416-9.523,2.75-14.37,4.025l-0.171,0.057
c-1.134,0.283-2.239,0.566-3.374,0.879l-0.141,0.027l-1.333,0.34l-0.113,0.029c-0.481,0.113-0.991,0.256-1.502,0.368
l-0.142,0.028l-0.482,0.113l-1.445,0.369h-0.085l-0.143,0.057l-0.935,0.227l-0.17,0.027l-0.369,0.086l-0.142,0.029l-0.198,0.056
l-0.426,0.114c-0.765,0.17-1.559,0.34-2.323,0.537l-0.143,0.029l-0.651,0.141l-0.228,0.058l-0.396,0.085l-0.255,0.057
c-4.875-1.105-9.666-2.268-14.4-3.515c-0.482-0.142-0.992-0.255-1.502-0.397c-3.912-1.049-7.768-2.125-11.594-3.26
c-1.758-0.51-3.486-1.049-5.217-1.587c-2.408-0.737-4.762-1.502-7.113-2.269c-3.147-1.02-6.237-2.068-9.326-3.174
c-281.282-99.242-320.542-451.078-308.467-716.088l-53.547-10.998l-0.396,8.531c-9.638,211.946,12.444,476.107,157.465,642.672
c55.928,64.26,125.178,108.141,204.945,132.803v1642.449h98.305V832.318c40.45-12.502,78.18-29.935,112.848-52.498v-66.529
L2052.212,713.318z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M1877.825,1442.391v-24.775h24.775v24.775H1877.825z M1877.825,1392.869h-24.775v24.746
h24.775V1392.869z M1902.6,1368.094h-24.775v24.775h24.775V1368.094z M1902.6,1283.99v-24.775h-24.775v24.775H1902.6z
M1902.6,1209.693h-24.775v24.775h24.775V1209.693z M1877.825,1590.813h24.775v-24.775h-24.775v-24.773h-24.775v24.775h24.775
V1590.813z M1902.6,1516.488h-24.775v24.775h24.775V1516.488z M1902.6,1906.592v-24.775h-24.775v24.775H1902.6z
M1877.825,1857.043h-24.775v24.773h24.775V1857.043z M1902.6,1832.268h-24.775v24.775h24.775V1832.268z M1902.6,1126.639
v-24.775h-24.775v24.775H1902.6z M1877.825,1699.662h-24.775v24.775h24.775V1699.662z M1902.6,1674.889h-24.775v24.773h24.775
V1674.889z M1902.6,1749.213v-24.775h-24.775v24.775H1902.6z M1927.432,1392.869h-24.775v24.746h24.775V1392.869z
M1927.432,1699.662h-24.775v24.775h24.775V1699.662z M1877.825,1077.09h24.775v-24.775h-24.775V1077.09l-24.775-0.001v24.774
h24.775V1077.09z M1927.432,1541.264h-24.775v24.775h24.775V1541.264z M1927.432,1077.089h-24.775v24.774h24.775V1077.089z
M1927.432,918.689h-24.775v24.774h24.775V918.689z M1927.432,1234.469h-24.775v24.746h24.775V1234.469z M1902.6,893.915
h-24.775v24.774h24.775V893.915z M1877.825,918.689h-24.775v24.774h24.775V918.689z M1927.432,1857.043h-24.775v24.773h24.775
V1857.043z M1902.6,968.238v-24.774h-24.775v24.774H1902.6z M1927.432,2186.174h-24.775v24.773h24.775V2186.174z
M1927.432,2015.441h-24.775v24.775h24.775V2015.441z M1877.825,1234.469h-24.775v24.746h24.775V1234.469z M1877.825,2186.174
h-24.775v24.773h24.775V2186.174z M1902.6,2235.723v-24.775h-24.775v24.775H1902.6z M1939.394,832.318v1642.449h-98.307V832.318
c-5.556-1.729-11.083-3.545-16.554-5.443v1651.096h131.414V826.875C1950.477,828.773,1944.949,830.617,1939.394,832.318z
M1902.6,2161.398h-24.775v24.775h24.775V2161.398z M1902.6,2064.992v-24.775h-24.775v24.775H1902.6z M1877.825,2015.443h24.775
v-24.775h-24.775v24.773h-24.775v24.775h24.775V2015.443z M149.825,1283.99H174.6v-24.775h-24.774v-24.746H174.6v-24.775
h-24.775v24.775h-24.773v24.746h24.773V1283.99z M149.825,1749.213H174.6v-24.775h-24.774v-24.775H174.6v-24.773h-24.775v24.773
h-24.773v24.775h24.773V1749.213z M149.825,1442.391H174.6v-24.775h-24.774v-24.746H174.6v-24.775h-24.775v24.775h-24.773
v24.746h24.773V1442.391z M149.825,1566.039v24.773H174.6v-24.775h-24.774L149.825,1566.039L149.825,1566.039z
M149.825,1566.037L149.825,1566.037l0.001-24.773H174.6v-24.775h-24.775v24.775h-24.773v24.775h24.773V1566.037z
M149.825,1906.592H174.6v-24.775h-24.774v-24.773H174.6v-24.775h-24.775v24.775h-24.773v24.773h24.773V1906.592z
M211.393,2474.768h-98.305V832.318c-5.557-1.701-11.084-3.545-16.555-5.443v1651.096h131.414V826.875
c-5.471,1.898-10.998,3.714-16.555,5.443V2474.768z M149.825,2235.723H174.6v-24.775h-24.774v-24.773H174.6v-24.775h-24.775
v24.775h-24.773v24.773h24.773V2235.723z M149.825,2064.992H174.6v-24.775h-24.774v-24.773h-0.001v-0.002h-24.773v24.775h24.773
V2064.992z M149.826,2015.443H174.6v-24.775h-24.775v24.773h0.001V2015.443z M199.432,1857.043h-24.775v24.773h24.775V1857.043z
M199.432,1234.469h-24.775v24.746h24.775V1234.469z M199.432,1541.264h-24.775v24.775h24.775V1541.264z M199.432,1392.869
h-24.775v24.746h24.775V1392.869z M199.432,918.689h-24.775v24.774h24.775V918.689z M199.432,1077.089h-24.775v24.774h24.775
V1077.089z M149.825,1126.639H174.6v-24.775h-24.774v-24.773h-0.001v-0.001h-24.773v24.774h24.773V1126.639z M149.826,1077.09
H174.6v-24.775h-24.775L149.826,1077.09L149.826,1077.09L149.826,1077.09z M149.825,968.238H174.6v-24.774h-24.774v-24.774
H174.6v-24.774h-24.775v24.774h-24.773v24.774h24.773V968.238z M199.432,2186.174h-24.775v24.773h24.775V2186.174z
M199.432,2015.441h-24.775v24.775h24.775V2015.441z M199.432,1699.662h-24.775v24.775h24.775V1699.662z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_URL">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_URL)" fill="#010149" d="M1877.825,1442.391v-24.775h24.775v24.775
H1877.825z M1877.825,1392.869h-24.775v24.746h24.775V1392.869z M1902.6,1368.094h-24.775v24.775h24.775V1368.094z
M1902.6,1283.99v-24.775h-24.775v24.775H1902.6z M1902.6,1209.693h-24.775v24.775h24.775V1209.693z M1877.825,1590.813h24.775
v-24.775h-24.775v-24.773h-24.775v24.775h24.775V1590.813z M1902.6,1516.488h-24.775v24.775h24.775V1516.488z M1902.6,1906.592
v-24.775h-24.775v24.775H1902.6z M1877.825,1857.043h-24.775v24.773h24.775V1857.043z M1902.6,1832.268h-24.775v24.775h24.775
V1832.268z M1902.6,1126.639v-24.775h-24.775v24.775H1902.6z M1877.825,1699.662h-24.775v24.775h24.775V1699.662z
M1902.6,1674.889h-24.775v24.773h24.775V1674.889z M1902.6,1749.213v-24.775h-24.775v24.775H1902.6z M1927.432,1392.869h-24.775
v24.746h24.775V1392.869z M1927.432,1699.662h-24.775v24.775h24.775V1699.662z M1877.825,1077.09h24.775v-24.775h-24.775V1077.09
l-24.775-0.001v24.774h24.775V1077.09z M1927.432,1541.264h-24.775v24.775h24.775V1541.264z M1927.432,1077.089h-24.775v24.774
h24.775V1077.089z M1927.432,918.689h-24.775v24.774h24.775V918.689z M1927.432,1234.469h-24.775v24.746h24.775V1234.469z
M1902.6,893.915h-24.775v24.774h24.775V893.915z M1877.825,918.689h-24.775v24.774h24.775V918.689z M1927.432,1857.043h-24.775
v24.773h24.775V1857.043z M1902.6,968.238v-24.774h-24.775v24.774H1902.6z M1927.432,2186.174h-24.775v24.773h24.775V2186.174z
M1927.432,2015.441h-24.775v24.775h24.775V2015.441z M1877.825,1234.469h-24.775v24.746h24.775V1234.469z M1877.825,2186.174
h-24.775v24.773h24.775V2186.174z M1902.6,2235.723v-24.775h-24.775v24.775H1902.6z M1939.394,832.318v1642.449h-98.307V832.318
c-5.556-1.729-11.083-3.545-16.554-5.443v1651.096h131.414V826.875C1950.477,828.773,1944.949,830.617,1939.394,832.318z
M1902.6,2161.398h-24.775v24.775h24.775V2161.398z M1902.6,2064.992v-24.775h-24.775v24.775H1902.6z M1877.825,2015.443h24.775
v-24.775h-24.775v24.773h-24.775v24.775h24.775V2015.443z M149.825,1283.99H174.6v-24.775h-24.774v-24.746H174.6v-24.775h-24.775
v24.775h-24.773v24.746h24.773V1283.99z M149.825,1749.213H174.6v-24.775h-24.774v-24.775H174.6v-24.773h-24.775v24.773h-24.773
v24.775h24.773V1749.213z M149.825,1442.391H174.6v-24.775h-24.774v-24.746H174.6v-24.775h-24.775v24.775h-24.773v24.746h24.773
V1442.391z M149.825,1566.039v24.773H174.6v-24.775h-24.774L149.825,1566.039L149.825,1566.039z M149.825,1566.037
L149.825,1566.037l0.001-24.773H174.6v-24.775h-24.775v24.775h-24.773v24.775h24.773V1566.037z M149.825,1906.592H174.6v-24.775
h-24.774v-24.773H174.6v-24.775h-24.775v24.775h-24.773v24.773h24.773V1906.592z M211.393,2474.768h-98.305V832.318
c-5.557-1.701-11.084-3.545-16.555-5.443v1651.096h131.414V826.875c-5.471,1.898-10.998,3.714-16.555,5.443V2474.768z
M149.825,2235.723H174.6v-24.775h-24.774v-24.773H174.6v-24.775h-24.775v24.775h-24.773v24.773h24.773V2235.723z
M149.825,2064.992H174.6v-24.775h-24.774v-24.773h-0.001v-0.002h-24.773v24.775h24.773V2064.992z M149.826,2015.443H174.6
v-24.775h-24.775v24.773h0.001V2015.443z M199.432,1857.043h-24.775v24.773h24.775V1857.043z M199.432,1234.469h-24.775v24.746
h24.775V1234.469z M199.432,1541.264h-24.775v24.775h24.775V1541.264z M199.432,1392.869h-24.775v24.746h24.775V1392.869z
M199.432,918.689h-24.775v24.774h24.775V918.689z M199.432,1077.089h-24.775v24.774h24.775V1077.089z M149.825,1126.639H174.6
v-24.775h-24.774v-24.773h-0.001v-0.001h-24.773v24.774h24.773V1126.639z M149.826,1077.09H174.6v-24.775h-24.775
L149.826,1077.09L149.826,1077.09L149.826,1077.09z M149.825,968.238H174.6v-24.774h-24.774v-24.774H174.6v-24.774h-24.775
v24.774h-24.773v24.774h24.773V968.238z M199.432,2186.174h-24.775v24.773h24.775V2186.174z M199.432,2015.441h-24.775v24.775
h24.775V2015.441z M199.432,1699.662h-24.775v24.775h24.775V1699.662z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M1877.825,1857.043h24.775v24.773h-24.775V1857.043z M1877.825,1724.438h24.775v-24.775
h-24.775V1724.438z M1877.825,2040.217h24.775v-24.775h-24.775V2040.217z M1877.825,2210.947h24.775v-24.773h-24.775V2210.947z
M1877.825,1566.039h24.775v-24.775h-24.775V1566.039z M1877.825,1259.215h24.775v-24.746h-24.775V1259.215z M1877.825,918.689
v24.774h24.775v-24.774H1877.825z M1877.825,1101.863h24.775v-24.774h-24.775V1101.863z M1877.825,1417.615h24.775v-24.746
h-24.775V1417.615z M149.825,1724.438H174.6v-24.775h-24.775V1724.438z M149.825,1881.816H174.6v-24.773h-24.775V1881.816z
M149.825,2040.217H174.6v-24.775h-24.775V2040.217z M149.825,2210.947H174.6v-24.773h-24.775V2210.947z M149.825,1101.863
H174.6v-24.774h-24.775V1101.863z M149.825,943.464H174.6v-24.774h-24.775V943.464z M149.825,1259.215H174.6v-24.746h-24.775
V1259.215z M149.825,1566.039H174.6v-24.775h-24.775V1566.039z M149.825,1417.615H174.6v-24.746h-24.775V1417.615z"/>
</defs>
<clipPath id="Front_Trim_4_Clippath_URL">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_URL)" fill="#FF6100" d="M1877.825,1857.043h24.775v24.773h-24.775
V1857.043z M1877.825,1724.438h24.775v-24.775h-24.775V1724.438z M1877.825,2040.217h24.775v-24.775h-24.775V2040.217z
M1877.825,2210.947h24.775v-24.773h-24.775V2210.947z M1877.825,1566.039h24.775v-24.775h-24.775V1566.039z M1877.825,1259.215
h24.775v-24.746h-24.775V1259.215z M1877.825,918.689v24.774h24.775v-24.774H1877.825z M1877.825,1101.863h24.775v-24.774
h-24.775V1101.863z M1877.825,1417.615h24.775v-24.746h-24.775V1417.615z M149.825,1724.438H174.6v-24.775h-24.775V1724.438z
M149.825,1881.816H174.6v-24.773h-24.775V1881.816z M149.825,2040.217H174.6v-24.775h-24.775V2040.217z M149.825,2210.947H174.6
v-24.773h-24.775V2210.947z M149.825,1101.863H174.6v-24.774h-24.775V1101.863z M149.825,943.464H174.6v-24.774h-24.775V943.464z
M149.825,1259.215H174.6v-24.746h-24.775V1259.215z M149.825,1566.039H174.6v-24.775h-24.775V1566.039z M149.825,1417.615H174.6
v-24.746h-24.775V1417.615z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="1391.795" y="2117.687" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="950.213" y="134.641" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="522.212" y="348.324" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -0,0 +1,504 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="3420.972px" height="2670.287px" viewBox="0 0 3420.972 2670.287" enable-background="new 0 0 3420.972 2670.287"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M2939.347,0.168l285.506,58.734c-11.65,255.854,24.009,528.575,195.619,651.231v1744.016
h-1404V710.134c171.609-122.656,207.269-395.377,195.59-651.231l285.534-58.734c59.414,112.365,90.651,106.044,221.216,104.995
C2849.403,106.212,2880.642,112.533,2939.347,0.168z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_URL">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.227" stroke-miterlimit="10" d="
M2939.347,0.168l285.506,58.734c-11.65,255.854,24.009,528.575,195.619,651.231v1744.016h-1404V710.134
c171.609-122.656,207.269-395.377,195.59-651.231l285.534-58.734c59.414,112.365,90.651,106.044,221.216,104.995
C2849.403,106.212,2880.642,112.533,2939.347,0.168z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M3344.56,2360.351l75.912,89.264 M2016.472,723.825l230.824,60.888l0.737,0.879
l-231.562,10.97V723.825z M3420.472,2117.847v35.065l-16.584-19.333l0.028,0.028l-243.155,10.517l-80.476-94.648l323.433,83.934
l-355.805-414.992l0.341,0.425l-239.952,10.659l-80.362-94.507l319.974,83.423l-710.957-829.135l-233.603,11l-80.136-94.281
l313.029,82.46l0.454,0.539l-231.931-270.511c0.481-0.737,0.992-1.502,1.474-2.239c0.964-1.446,1.928-2.892,2.892-4.337
c0.936-1.445,1.871-2.919,2.807-4.365c0.794-1.247,1.587-2.523,2.353-3.77c1.077-1.701,2.097-3.402,3.146-5.104l0.17-0.283
L3420.472,2117.847z M3420.472,2218.42v21.997l-171.61,7.342l-80.476-94.649L3420.472,2218.42z M3420.472,2299.179v48.671
l-83.481,3.572l-80.503-94.705L3420.472,2299.179z M2016.472,2454.148V834.575l0.964,1.303l1376.163,1618.271H2016.472z
M2287.491,1116.877l80.221,94.364l235.984-10.885l-0.567-0.651L2287.491,1116.877z M2816.04,1738.6l80.362,94.564
l240.774-10.63l-0.313-0.369L2816.04,1738.6z M3420.472,2379.967l-75.912-19.616 M2992.213,1945.841l80.419,94.62
l242.362-10.545l-0.227-0.255L2992.213,1945.841z M2904.112,1842.234l80.419,94.563l241.54-10.573l-0.255-0.312
L2904.112,1842.234z M2639.838,1531.358l80.334,94.508l239.159-10.743l-0.396-0.454L2639.838,1531.358z M2551.765,1427.753
l80.307,94.45l238.365-10.772l-0.453-0.51L2551.765,1427.753z M2463.665,1324.118l80.277,94.422l237.57-10.801l-0.481-0.566
L2463.665,1324.118z M2375.564,1220.483l80.249,94.422l236.777-10.856l-0.511-0.624L2375.564,1220.483z M2199.392,1013.241
l80.191,94.338l235.19-10.913l-0.623-0.709L2199.392,1013.241z M2111.29,909.636l80.192,94.309l234.368-10.97l-0.652-0.766
L2111.29,909.636z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_URL">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M3344.56,2360.493l75.912,89.264 M2016.472,723.968l230.824,60.888l0.737,0.879l-231.562,10.97V723.968z M3420.472,2117.989
v35.065l-16.584-19.333l0.028,0.028l-243.155,10.517l-80.476-94.648l323.433,83.934l-355.805-414.992l0.341,0.425
l-239.952,10.659l-80.362-94.507l319.974,83.423l-710.957-829.135l-233.603,11l-80.136-94.281l313.029,82.46l0.454,0.539
l-231.931-270.511c0.481-0.737,0.992-1.502,1.474-2.239c0.964-1.446,1.928-2.892,2.892-4.337
c0.936-1.445,1.871-2.919,2.807-4.365c0.794-1.247,1.587-2.523,2.353-3.77c1.077-1.701,2.097-3.402,3.146-5.104l0.17-0.283
L3420.472,2117.989z M3420.472,2218.563v21.997l-171.61,7.342l-80.476-94.649L3420.472,2218.563z M3420.472,2299.321v48.671
l-83.481,3.572l-80.503-94.705L3420.472,2299.321z M2016.472,2454.291V834.718l0.964,1.303l1376.163,1618.271H2016.472z
M2287.491,1117.02l80.221,94.364l235.984-10.885l-0.567-0.651L2287.491,1117.02z M2816.04,1738.742l80.362,94.564l240.774-10.63
l-0.313-0.369L2816.04,1738.742z M3420.472,2380.109l-75.912-19.616 M2992.213,1945.983l80.419,94.62l242.362-10.545
l-0.227-0.255L2992.213,1945.983z M2904.112,1842.377l80.419,94.563l241.54-10.573l-0.255-0.312L2904.112,1842.377z
M2639.838,1531.501l80.334,94.508l239.159-10.743l-0.396-0.454L2639.838,1531.501z M2551.765,1427.896l80.307,94.45
l238.365-10.772l-0.453-0.51L2551.765,1427.896z M2463.665,1324.261l80.277,94.422l237.57-10.801l-0.481-0.566L2463.665,1324.261
z M2375.564,1220.626l80.249,94.422l236.777-10.856l-0.511-0.624L2375.564,1220.626z M2199.392,1013.384l80.191,94.338
l235.19-10.913l-0.623-0.709L2199.392,1013.384z M2111.29,909.778l80.192,94.309l234.368-10.97l-0.652-0.766L2111.29,909.778z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M3420.472,710.134v64.119c-25.569-14.74-49.522-32.457-71.66-53.234
c-167.925-157.521-187.795-447.704-177.903-664.582l0.397-8.562l53.547,11.027c-0.199,4.45-0.397,8.929-0.567,13.379
c-0.057,1.418-0.085,2.835-0.142,4.252c-0.113,3.09-0.227,6.181-0.34,9.271c-0.028,1.644-0.085,3.287-0.143,4.932
c-0.085,2.919-0.17,5.839-0.227,8.73c-0.057,1.672-0.085,3.345-0.141,5.018c-0.058,3.118-0.114,6.264-0.171,9.383
c-0.028,1.388-0.057,2.749-0.085,4.138c-0.057,4.479-0.113,8.93-0.142,13.408v2.154c-0.029,3.77-0.058,7.569-0.058,11.367
c0,1.53,0.028,3.032,0.028,4.563c0,2.977,0,5.953,0.029,8.93c0.028,1.729,0.028,3.457,0.057,5.188
c0.028,2.863,0.085,5.697,0.113,8.561c0.028,1.7,0.057,3.373,0.085,5.073c0.057,3.175,0.143,6.378,0.227,9.554
c0.028,1.304,0.057,2.607,0.086,3.912c0.112,4.422,0.255,8.844,0.425,13.266c0.057,1.162,0.085,2.353,0.142,3.515
c0.113,3.288,0.255,6.576,0.396,9.864c0.085,1.673,0.171,3.374,0.256,5.046c0.141,2.806,0.283,5.584,0.425,8.391
c0.085,1.785,0.198,3.571,0.312,5.329c0.142,2.807,0.341,5.584,0.511,8.362c0.112,1.701,0.198,3.373,0.312,5.074
c0.227,3.202,0.453,6.378,0.708,9.581c0.085,1.246,0.17,2.466,0.256,3.714c0.341,4.308,0.708,8.616,1.077,12.896
c0.113,1.446,0.255,2.892,0.396,4.337c0.256,2.92,0.539,5.868,0.822,8.816c0.17,1.757,0.368,3.515,0.538,5.271
c0.283,2.638,0.539,5.273,0.852,7.909c0.17,1.786,0.368,3.601,0.595,5.386c0.283,2.693,0.623,5.357,0.936,8.022
c0.198,1.701,0.396,3.401,0.623,5.074c0.397,3.231,0.822,6.435,1.248,9.666c0.142,1.077,0.282,2.183,0.424,3.26
c0.567,4.167,1.162,8.277,1.787,12.416c0.254,1.615,0.51,3.26,0.766,4.875c0.396,2.636,0.793,5.273,1.218,7.881
c0.284,1.814,0.597,3.6,0.908,5.386c0.396,2.466,0.821,4.933,1.247,7.369c0.312,1.815,0.623,3.629,0.963,5.443
c0.454,2.523,0.936,5.018,1.389,7.512c0.313,1.672,0.624,3.373,0.965,5.074c0.651,3.288,1.304,6.576,1.983,9.864
c0.341,1.729,0.709,3.43,1.078,5.131c0.651,3.09,1.303,6.151,1.983,9.185c0.397,1.7,0.795,3.401,1.162,5.103
c0.567,2.381,1.106,4.762,1.674,7.114c0.425,1.814,0.877,3.601,1.304,5.386c0.565,2.268,1.133,4.536,1.7,6.804
c0.453,1.785,0.906,3.571,1.389,5.329c0.624,2.353,1.247,4.705,1.898,7.058c0.427,1.616,0.88,3.261,1.334,4.877
c1.048,3.74,2.097,7.482,3.203,11.195c0.424,1.389,0.85,2.779,1.274,4.139c0.767,2.494,1.503,4.989,2.297,7.455
c0.538,1.729,1.105,3.431,1.644,5.131c0.681,2.127,1.39,4.253,2.098,6.379c0.595,1.757,1.191,3.515,1.786,5.271
c0.709,2.07,1.446,4.111,2.183,6.18c0.596,1.729,1.219,3.431,1.842,5.159c0.795,2.183,1.616,4.309,2.41,6.464
c0.596,1.559,1.162,3.117,1.758,4.677c1.36,3.458,2.721,6.916,4.139,10.346c0.595,1.476,1.219,2.949,1.842,4.422
c0.879,2.126,1.786,4.252,2.693,6.351c0.709,1.644,1.445,3.316,2.183,4.961c0.85,1.898,1.701,3.798,2.551,5.669
c0.765,1.673,1.56,3.345,2.324,4.988c0.879,1.871,1.786,3.742,2.665,5.613c0.794,1.587,1.587,3.203,2.381,4.819
c0.992,2.012,2.013,3.996,3.033,5.98c0.736,1.389,1.445,2.807,2.183,4.224c1.645,3.146,3.345,6.293,5.074,9.383
c0.822,1.474,1.644,2.891,2.466,4.337c1.049,1.842,2.069,3.657,3.146,5.471c0.908,1.53,1.814,3.062,2.75,4.592
c1.021,1.701,2.041,3.373,3.09,5.047c0.935,1.529,1.898,3.061,2.863,4.563c1.076,1.673,2.153,3.345,3.26,4.989
c0.963,1.474,1.898,2.92,2.863,4.366c1.274,1.869,2.607,3.741,3.91,5.611c1.276,1.844,2.553,3.657,3.885,5.471
c1.53,2.127,3.09,4.252,4.677,6.351c1.021,1.36,2.069,2.664,3.09,3.997c1.219,1.559,2.438,3.146,3.685,4.705
c1.105,1.361,2.211,2.721,3.317,4.054c1.218,1.502,2.466,2.976,3.713,4.45c1.134,1.332,2.269,2.665,3.402,3.968
c1.303,1.503,2.636,2.978,3.968,4.423c1.105,1.247,2.211,2.494,3.345,3.713c1.729,1.844,3.458,3.657,5.188,5.442
c1.559,1.616,3.146,3.204,4.733,4.791c1.616,1.616,3.261,3.26,4.933,4.847c1.19,1.135,2.438,2.268,3.657,3.402
c1.445,1.361,2.891,2.693,4.337,3.997c1.304,1.162,2.607,2.296,3.911,3.43c1.446,1.275,2.921,2.523,4.395,3.771
c1.304,1.104,2.636,2.211,3.968,3.315c1.588,1.276,3.175,2.523,4.763,3.8c1.275,0.991,2.522,1.983,3.826,2.976
C3414.887,706.08,3417.664,708.121,3420.472,710.134z M2718.812,105.163c-130.564,1.049-161.803,7.37-220.876-104.995
l-55.048,11.31l7.256,13.806c23.783,45.269,52.101,91.162,99.638,114.491c24.888,12.218,51.279,16.64,78.69,18.369
c29.849,1.842,60.434,1.02,90.34,1.02c29.934,0,60.52,0.822,90.369-1.02c27.409-1.729,53.801-6.151,78.688-18.369
c47.537-23.329,75.827-69.223,99.638-114.491l7.258-13.806l-55.077-11.31C2880.642,112.533,2849.403,106.212,2718.812,105.163z
M2265.608,47.875l-53.547,11.026c0.198,4.451,0.397,8.93,0.566,13.381c0.057,1.416,0.114,2.834,0.143,4.252
c0.113,3.09,0.227,6.179,0.34,9.269c0.057,1.644,0.086,3.288,0.142,4.932c0.085,2.92,0.17,5.841,0.255,8.731
c0.029,1.673,0.057,3.345,0.114,5.017c0.056,3.119,0.113,6.265,0.17,9.384c0.028,1.389,0.056,2.75,0.085,4.139
c0.057,4.478,0.113,8.929,0.143,13.408c0,0.707,0,1.416,0.027,2.153c0,3.771,0.028,7.568,0.028,11.367v4.563
c-0.028,2.977-0.028,5.953-0.056,8.93c0,1.729-0.029,3.458-0.058,5.187c-0.028,2.863-0.057,5.698-0.114,8.562
c-0.027,1.701-0.056,3.373-0.084,5.074c-0.057,3.203-0.142,6.378-0.227,9.552c-0.029,1.304-0.057,2.608-0.086,3.912
c-0.113,4.422-0.254,8.845-0.425,13.266c-0.028,1.163-0.085,2.353-0.142,3.544c-0.113,3.26-0.256,6.548-0.396,9.836
c-0.085,1.672-0.17,3.373-0.255,5.046c-0.143,2.807-0.255,5.585-0.427,8.391c-0.084,1.786-0.197,3.571-0.282,5.357
c-0.171,2.778-0.341,5.557-0.539,8.334c-0.085,1.7-0.198,3.373-0.312,5.074c-0.227,3.203-0.454,6.378-0.681,9.581
c-0.113,1.247-0.198,2.466-0.283,3.713c-0.34,4.309-0.68,8.617-1.077,12.898c-0.113,1.445-0.255,2.891-0.396,4.337
c-0.256,2.919-0.539,5.866-0.822,8.814c-0.17,1.759-0.34,3.516-0.539,5.273c-0.255,2.636-0.538,5.272-0.822,7.909
c-0.197,1.785-0.396,3.6-0.595,5.385c-0.312,2.693-0.624,5.357-0.964,8.021c-0.198,1.701-0.396,3.402-0.595,5.075
c-0.425,3.231-0.852,6.435-1.276,9.666c-0.141,1.077-0.283,2.183-0.425,3.261c-0.567,4.166-1.162,8.276-1.786,12.414
c-0.227,1.616-0.482,3.261-0.737,4.877c-0.425,2.636-0.821,5.271-1.247,7.88c-0.283,1.813-0.595,3.6-0.879,5.386
c-0.425,2.466-0.85,4.932-1.274,7.37c-0.313,1.813-0.624,3.629-0.964,5.442c-0.455,2.522-0.907,4.988-1.39,7.483
c-0.312,1.701-0.624,3.402-0.964,5.103c-0.623,3.287-1.304,6.549-1.956,9.808c-0.368,1.758-0.737,3.515-1.104,5.244
c-0.652,3.062-1.305,6.095-1.985,9.128c-0.368,1.701-0.765,3.4-1.162,5.102c-0.538,2.381-1.104,4.764-1.672,7.115
c-0.425,1.814-0.851,3.6-1.304,5.386c-0.567,2.269-1.135,4.536-1.701,6.804c-0.454,1.785-0.907,3.571-1.389,5.357
c-0.596,2.324-1.248,4.677-1.871,7.001c-0.453,1.644-0.879,3.289-1.332,4.904c-1.049,3.77-2.127,7.483-3.232,11.196
c-0.425,1.39-0.85,2.75-1.247,4.11c-0.765,2.495-1.53,5.019-2.324,7.484c-0.539,1.729-1.105,3.43-1.644,5.159
c-0.682,2.126-1.389,4.223-2.098,6.32c-0.596,1.786-1.191,3.543-1.786,5.329c-0.708,2.041-1.445,4.082-2.154,6.123
c-0.624,1.729-1.247,3.487-1.871,5.188c-0.794,2.155-1.587,4.309-2.409,6.435c-0.596,1.588-1.163,3.146-1.758,4.706
c-1.359,3.486-2.721,6.916-4.109,10.346c-0.625,1.503-1.248,2.978-1.871,4.45c-0.879,2.126-1.787,4.225-2.666,6.322
c-0.735,1.644-1.474,3.316-2.211,4.96c-0.85,1.899-1.699,3.799-2.551,5.67c-0.765,1.672-1.529,3.345-2.324,5.017
c-0.879,1.842-1.758,3.713-2.664,5.557c-0.793,1.615-1.56,3.23-2.353,4.847c-1.021,2.013-2.041,3.997-3.062,6.01
c-0.737,1.389-1.418,2.807-2.154,4.167c-1.673,3.174-3.374,6.293-5.104,9.411c-0.793,1.474-1.644,2.892-2.466,4.337
c-1.049,1.842-2.069,3.656-3.146,5.471c-0.907,1.53-1.814,3.062-2.75,4.593c-1.021,1.7-2.041,3.373-3.09,5.045
c-0.936,1.53-1.899,3.062-2.862,4.563c-1.078,1.672-2.155,3.346-3.232,4.989c-0.964,1.446-1.928,2.92-2.891,4.365
c-1.276,1.871-2.58,3.742-3.884,5.612c-1.305,1.814-2.579,3.656-3.883,5.472c-1.56,2.126-3.119,4.252-4.707,6.349
c-1.02,1.361-2.068,2.665-3.09,3.997c-1.219,1.588-2.437,3.147-3.685,4.677c-1.077,1.39-2.211,2.75-3.316,4.111
c-1.219,1.475-2.466,2.948-3.714,4.422c-1.133,1.332-2.267,2.664-3.4,3.969c-1.305,1.502-2.637,2.947-3.94,4.422
c-1.134,1.248-2.24,2.494-3.373,3.714c-1.701,1.842-3.401,3.628-5.131,5.385c-1.588,1.644-3.203,3.26-4.819,4.876
c-1.615,1.616-3.231,3.232-4.876,4.818c-1.219,1.135-2.466,2.269-3.685,3.431c-1.446,1.332-2.863,2.664-4.337,3.968
c-1.275,1.162-2.579,2.297-3.912,3.43c-1.445,1.276-2.919,2.523-4.394,3.771c-1.304,1.106-2.637,2.211-3.969,3.317
c-1.559,1.275-3.175,2.522-4.762,3.77c-1.276,1.021-2.523,2.012-3.827,3.005c-2.721,2.097-5.471,4.138-8.276,6.123v0.028v64.12
c25.539-14.741,49.492-32.457,71.631-53.235c167.925-157.521,187.796-447.704,177.902-664.583L2265.608,47.875z"/>
</defs>
<clipPath id="Back_Trim_2_Clippath_URL">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" d="M3420.472,710.134
v64.119c-25.569-14.74-49.522-32.457-71.66-53.234c-167.925-157.521-187.795-447.704-177.903-664.582l0.397-8.562l53.547,11.027
c-0.199,4.45-0.397,8.929-0.567,13.379c-0.057,1.418-0.085,2.835-0.142,4.252c-0.113,3.09-0.227,6.181-0.34,9.271
c-0.028,1.644-0.085,3.287-0.143,4.932c-0.085,2.919-0.17,5.839-0.227,8.73c-0.057,1.672-0.085,3.345-0.141,5.018
c-0.058,3.118-0.114,6.264-0.171,9.383c-0.028,1.388-0.057,2.749-0.085,4.138c-0.057,4.479-0.113,8.93-0.142,13.408v2.154
c-0.029,3.77-0.058,7.569-0.058,11.367c0,1.53,0.028,3.032,0.028,4.563c0,2.977,0,5.953,0.029,8.93
c0.028,1.729,0.028,3.457,0.057,5.188c0.028,2.863,0.085,5.697,0.113,8.561c0.028,1.7,0.057,3.373,0.085,5.073
c0.057,3.175,0.143,6.378,0.227,9.554c0.028,1.304,0.057,2.607,0.086,3.912c0.112,4.422,0.255,8.844,0.425,13.266
c0.057,1.162,0.085,2.353,0.142,3.515c0.113,3.288,0.255,6.576,0.396,9.864c0.085,1.673,0.171,3.374,0.256,5.046
c0.141,2.806,0.283,5.584,0.425,8.391c0.085,1.785,0.198,3.571,0.312,5.329c0.142,2.807,0.341,5.584,0.511,8.362
c0.112,1.701,0.198,3.373,0.312,5.074c0.227,3.202,0.453,6.378,0.708,9.581c0.085,1.246,0.17,2.466,0.256,3.714
c0.341,4.308,0.708,8.616,1.077,12.896c0.113,1.446,0.255,2.892,0.396,4.337c0.256,2.92,0.539,5.868,0.822,8.816
c0.17,1.757,0.368,3.515,0.538,5.271c0.283,2.638,0.539,5.273,0.852,7.909c0.17,1.786,0.368,3.601,0.595,5.386
c0.283,2.693,0.623,5.357,0.936,8.022c0.198,1.701,0.396,3.401,0.623,5.074c0.397,3.231,0.822,6.435,1.248,9.666
c0.142,1.077,0.282,2.183,0.424,3.26c0.567,4.167,1.162,8.277,1.787,12.416c0.254,1.615,0.51,3.26,0.766,4.875
c0.396,2.636,0.793,5.273,1.218,7.881c0.284,1.814,0.597,3.6,0.908,5.386c0.396,2.466,0.821,4.933,1.247,7.369
c0.312,1.815,0.623,3.629,0.963,5.443c0.454,2.523,0.936,5.018,1.389,7.512c0.313,1.672,0.624,3.373,0.965,5.074
c0.651,3.288,1.304,6.576,1.983,9.864c0.341,1.729,0.709,3.43,1.078,5.131c0.651,3.09,1.303,6.151,1.983,9.185
c0.397,1.7,0.795,3.401,1.162,5.103c0.567,2.381,1.106,4.762,1.674,7.114c0.425,1.814,0.877,3.601,1.304,5.386
c0.565,2.268,1.133,4.536,1.7,6.804c0.453,1.785,0.906,3.571,1.389,5.329c0.624,2.353,1.247,4.705,1.898,7.058
c0.427,1.616,0.88,3.261,1.334,4.877c1.048,3.74,2.097,7.482,3.203,11.195c0.424,1.389,0.85,2.779,1.274,4.139
c0.767,2.494,1.503,4.989,2.297,7.455c0.538,1.729,1.105,3.431,1.644,5.131c0.681,2.127,1.39,4.253,2.098,6.379
c0.595,1.757,1.191,3.515,1.786,5.271c0.709,2.07,1.446,4.111,2.183,6.18c0.596,1.729,1.219,3.431,1.842,5.159
c0.795,2.183,1.616,4.309,2.41,6.464c0.596,1.559,1.162,3.117,1.758,4.677c1.36,3.458,2.721,6.916,4.139,10.346
c0.595,1.476,1.219,2.949,1.842,4.422c0.879,2.126,1.786,4.252,2.693,6.351c0.709,1.644,1.445,3.316,2.183,4.961
c0.85,1.898,1.701,3.798,2.551,5.669c0.765,1.673,1.56,3.345,2.324,4.988c0.879,1.871,1.786,3.742,2.665,5.613
c0.794,1.587,1.587,3.203,2.381,4.819c0.992,2.012,2.013,3.996,3.033,5.98c0.736,1.389,1.445,2.807,2.183,4.224
c1.645,3.146,3.345,6.293,5.074,9.383c0.822,1.474,1.644,2.891,2.466,4.337c1.049,1.842,2.069,3.657,3.146,5.471
c0.908,1.53,1.814,3.062,2.75,4.592c1.021,1.701,2.041,3.373,3.09,5.047c0.935,1.529,1.898,3.061,2.863,4.563
c1.076,1.673,2.153,3.345,3.26,4.989c0.963,1.474,1.898,2.92,2.863,4.366c1.274,1.869,2.607,3.741,3.91,5.611
c1.276,1.844,2.553,3.657,3.885,5.471c1.53,2.127,3.09,4.252,4.677,6.351c1.021,1.36,2.069,2.664,3.09,3.997
c1.219,1.559,2.438,3.146,3.685,4.705c1.105,1.361,2.211,2.721,3.317,4.054c1.218,1.502,2.466,2.976,3.713,4.45
c1.134,1.332,2.269,2.665,3.402,3.968c1.303,1.503,2.636,2.978,3.968,4.423c1.105,1.247,2.211,2.494,3.345,3.713
c1.729,1.844,3.458,3.657,5.188,5.442c1.559,1.616,3.146,3.204,4.733,4.791c1.616,1.616,3.261,3.26,4.933,4.847
c1.19,1.135,2.438,2.268,3.657,3.402c1.445,1.361,2.891,2.693,4.337,3.997c1.304,1.162,2.607,2.296,3.911,3.43
c1.446,1.275,2.921,2.523,4.395,3.771c1.304,1.104,2.636,2.211,3.968,3.315c1.588,1.276,3.175,2.523,4.763,3.8
c1.275,0.991,2.522,1.983,3.826,2.976C3414.887,706.08,3417.664,708.121,3420.472,710.134z M2718.812,105.163
c-130.564,1.049-161.803,7.37-220.876-104.995l-55.048,11.31l7.256,13.806c23.783,45.269,52.101,91.162,99.638,114.491
c24.888,12.218,51.279,16.64,78.69,18.369c29.849,1.842,60.434,1.02,90.34,1.02c29.934,0,60.52,0.822,90.369-1.02
c27.409-1.729,53.801-6.151,78.688-18.369c47.537-23.329,75.827-69.223,99.638-114.491l7.258-13.806l-55.077-11.31
C2880.642,112.533,2849.403,106.212,2718.812,105.163z M2265.608,47.875l-53.547,11.026c0.198,4.451,0.397,8.93,0.566,13.381
c0.057,1.416,0.114,2.834,0.143,4.252c0.113,3.09,0.227,6.179,0.34,9.269c0.057,1.644,0.086,3.288,0.142,4.932
c0.085,2.92,0.17,5.841,0.255,8.731c0.029,1.673,0.057,3.345,0.114,5.017c0.056,3.119,0.113,6.265,0.17,9.384
c0.028,1.389,0.056,2.75,0.085,4.139c0.057,4.478,0.113,8.929,0.143,13.408c0,0.707,0,1.416,0.027,2.153
c0,3.771,0.028,7.568,0.028,11.367v4.563c-0.028,2.977-0.028,5.953-0.056,8.93c0,1.729-0.029,3.458-0.058,5.187
c-0.028,2.863-0.057,5.698-0.114,8.562c-0.027,1.701-0.056,3.373-0.084,5.074c-0.057,3.203-0.142,6.378-0.227,9.552
c-0.029,1.304-0.057,2.608-0.086,3.912c-0.113,4.422-0.254,8.845-0.425,13.266c-0.028,1.163-0.085,2.353-0.142,3.544
c-0.113,3.26-0.256,6.548-0.396,9.836c-0.085,1.672-0.17,3.373-0.255,5.046c-0.143,2.807-0.255,5.585-0.427,8.391
c-0.084,1.786-0.197,3.571-0.282,5.357c-0.171,2.778-0.341,5.557-0.539,8.334c-0.085,1.7-0.198,3.373-0.312,5.074
c-0.227,3.203-0.454,6.378-0.681,9.581c-0.113,1.247-0.198,2.466-0.283,3.713c-0.34,4.309-0.68,8.617-1.077,12.898
c-0.113,1.445-0.255,2.891-0.396,4.337c-0.256,2.919-0.539,5.866-0.822,8.814c-0.17,1.759-0.34,3.516-0.539,5.273
c-0.255,2.636-0.538,5.272-0.822,7.909c-0.197,1.785-0.396,3.6-0.595,5.385c-0.312,2.693-0.624,5.357-0.964,8.021
c-0.198,1.701-0.396,3.402-0.595,5.075c-0.425,3.231-0.852,6.435-1.276,9.666c-0.141,1.077-0.283,2.183-0.425,3.261
c-0.567,4.166-1.162,8.276-1.786,12.414c-0.227,1.616-0.482,3.261-0.737,4.877c-0.425,2.636-0.821,5.271-1.247,7.88
c-0.283,1.813-0.595,3.6-0.879,5.386c-0.425,2.466-0.85,4.932-1.274,7.37c-0.313,1.813-0.624,3.629-0.964,5.442
c-0.455,2.522-0.907,4.988-1.39,7.483c-0.312,1.701-0.624,3.402-0.964,5.103c-0.623,3.287-1.304,6.549-1.956,9.808
c-0.368,1.758-0.737,3.515-1.104,5.244c-0.652,3.062-1.305,6.095-1.985,9.128c-0.368,1.701-0.765,3.4-1.162,5.102
c-0.538,2.381-1.104,4.764-1.672,7.115c-0.425,1.814-0.851,3.6-1.304,5.386c-0.567,2.269-1.135,4.536-1.701,6.804
c-0.454,1.785-0.907,3.571-1.389,5.357c-0.596,2.324-1.248,4.677-1.871,7.001c-0.453,1.644-0.879,3.289-1.332,4.904
c-1.049,3.77-2.127,7.483-3.232,11.196c-0.425,1.39-0.85,2.75-1.247,4.11c-0.765,2.495-1.53,5.019-2.324,7.484
c-0.539,1.729-1.105,3.43-1.644,5.159c-0.682,2.126-1.389,4.223-2.098,6.32c-0.596,1.786-1.191,3.543-1.786,5.329
c-0.708,2.041-1.445,4.082-2.154,6.123c-0.624,1.729-1.247,3.487-1.871,5.188c-0.794,2.155-1.587,4.309-2.409,6.435
c-0.596,1.588-1.163,3.146-1.758,4.706c-1.359,3.486-2.721,6.916-4.109,10.346c-0.625,1.503-1.248,2.978-1.871,4.45
c-0.879,2.126-1.787,4.225-2.666,6.322c-0.735,1.644-1.474,3.316-2.211,4.96c-0.85,1.899-1.699,3.799-2.551,5.67
c-0.765,1.672-1.529,3.345-2.324,5.017c-0.879,1.842-1.758,3.713-2.664,5.557c-0.793,1.615-1.56,3.23-2.353,4.847
c-1.021,2.013-2.041,3.997-3.062,6.01c-0.737,1.389-1.418,2.807-2.154,4.167c-1.673,3.174-3.374,6.293-5.104,9.411
c-0.793,1.474-1.644,2.892-2.466,4.337c-1.049,1.842-2.069,3.656-3.146,5.471c-0.907,1.53-1.814,3.062-2.75,4.593
c-1.021,1.7-2.041,3.373-3.09,5.045c-0.936,1.53-1.899,3.062-2.862,4.563c-1.078,1.672-2.155,3.346-3.232,4.989
c-0.964,1.446-1.928,2.92-2.891,4.365c-1.276,1.871-2.58,3.742-3.884,5.612c-1.305,1.814-2.579,3.656-3.883,5.472
c-1.56,2.126-3.119,4.252-4.707,6.349c-1.02,1.361-2.068,2.665-3.09,3.997c-1.219,1.588-2.437,3.147-3.685,4.677
c-1.077,1.39-2.211,2.75-3.316,4.111c-1.219,1.475-2.466,2.948-3.714,4.422c-1.133,1.332-2.267,2.664-3.4,3.969
c-1.305,1.502-2.637,2.947-3.94,4.422c-1.134,1.248-2.24,2.494-3.373,3.714c-1.701,1.842-3.401,3.628-5.131,5.385
c-1.588,1.644-3.203,3.26-4.819,4.876c-1.615,1.616-3.231,3.232-4.876,4.818c-1.219,1.135-2.466,2.269-3.685,3.431
c-1.446,1.332-2.863,2.664-4.337,3.968c-1.275,1.162-2.579,2.297-3.912,3.43c-1.445,1.276-2.919,2.523-4.394,3.771
c-1.304,1.106-2.637,2.211-3.969,3.317c-1.559,1.275-3.175,2.522-4.762,3.77c-1.276,1.021-2.523,2.012-3.827,3.005
c-2.721,2.097-5.471,4.138-8.276,6.123v0.028v64.12c25.539-14.741,49.492-32.457,71.631-53.235
c167.925-157.521,187.796-447.704,177.902-664.583L2265.608,47.875z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Jock_Tag">
<rect x="3204.472" y="2094.149" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Prod_QR_Code">
<rect x="3045.277" y="2477.13" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="2214.472" y="159.745" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1211.131,0.31l285.504,58.734c-14.088,309.26,40.934,643.153,321.619,706.876
c65.68-14.911,119.027-44.618,162-85.38v1773.751H0.255V680.54c42.973,40.762,96.292,70.469,162,85.38
c280.686-63.723,335.708-397.616,321.59-706.876L769.379,0.31c10.262,226.347,91.645,401.755,220.875,497.027
C1119.486,402.064,1200.869,226.656,1211.131,0.31z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_URL">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.51" stroke-miterlimit="10" d="
M1211.131,0.31l285.504,58.734c-14.088,309.26,40.934,643.153,321.619,706.876c65.68-14.911,119.027-44.618,162-85.38v1773.751
H0.255V680.54c42.973,40.762,96.292,70.469,162,85.38c280.686-63.723,335.708-397.616,321.59-706.876L769.379,0.31
c10.262,226.347,91.645,401.755,220.875,497.027C1119.486,402.064,1200.869,226.656,1211.131,0.31z"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M364.139,2360.493l-79.739,93.798 M261.893,2454.291l-223.823-9.467 M1706.909,720.112
l-245.479,64.742l-0.737,0.879l232.78,11.056l48.587-57.175C1729.785,733.747,1718.078,727.228,1706.909,720.112
M1591.114,598.534c4.14,6.859,8.419,13.549,12.841,20.068l-231.959,270.539l0.482-0.539l313.029-82.459l-80.164,94.28
l-233.574-10.999l-710.957,829.134l319.975-83.423l-80.363,94.507l-239.951-10.659l0.34-0.425l-355.833,414.992l323.433-83.933
l-80.447,94.647L304.81,2133.75l0.028-0.029l-88.81,103.55l324.283-84.019l-80.476,94.649l-243.95-10.461l0.142-0.142
L38.125,2444.767l-0.028,0.029l-8.135,9.495H0.254v-0.425L1591.114,598.534z M1758.925,747.153
c18.567,7.683,38.297,14.004,59.329,18.767c65.68-14.91,119.027-44.618,162-85.38v1773.751H315.099L1691.262,836.021
L1758.925,747.153z M1421.234,1117.019l-80.221,94.365l-235.984-10.885l0.566-0.652L1421.234,1117.019z M892.687,1738.742
l-80.392,94.563l-240.746-10.63l0.313-0.369L892.687,1738.742z M452.239,2256.858l-80.504,94.705l-244.744-10.432l0.085-0.113
L452.239,2256.858z M38.125,2444.767l326.013-84.273 M716.514,1945.982l-80.448,94.62l-242.334-10.545l0.228-0.255
L716.514,1945.982z M804.586,1842.377l-80.392,94.563l-241.567-10.572l0.282-0.313L804.586,1842.377z M1068.859,1531.501
l-80.307,94.507l-239.187-10.743l0.397-0.454L1068.859,1531.501z M1156.961,1427.895l-80.307,94.45l-238.365-10.771l0.426-0.511
L1156.961,1427.895z M1245.062,1324.26l-80.278,94.422l-237.57-10.8l0.481-0.567L1245.062,1324.26z M1333.133,1220.625
l-80.248,94.422l-236.778-10.856l0.539-0.623L1333.133,1220.625z M1509.307,1013.384l-80.192,94.337l-235.162-10.913
l0.595-0.709L1509.307,1013.384z M1597.407,909.778l-80.164,94.309l-234.397-10.97l0.652-0.767L1597.407,909.778z"/>
</defs>
<clipPath id="Front_MainColor_Clippath_URL">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M364.139,2360.493l-79.739,93.798 M261.893,2454.291l-223.823-9.467 M1706.909,720.112l-245.479,64.742l-0.737,0.879
l232.78,11.056l48.587-57.175C1729.785,733.747,1718.078,727.228,1706.909,720.112 M1591.114,598.534
c4.14,6.859,8.419,13.549,12.841,20.068l-231.959,270.539l0.482-0.539l313.029-82.459l-80.164,94.28l-233.574-10.999
l-710.957,829.134l319.975-83.423l-80.363,94.507l-239.951-10.659l0.34-0.425l-355.833,414.992l323.433-83.933l-80.447,94.647
L304.81,2133.75l0.028-0.029l-88.81,103.55l324.283-84.019l-80.476,94.649l-243.95-10.461l0.142-0.142L38.125,2444.767
l-0.028,0.029l-8.135,9.495H0.254v-0.425L1591.114,598.534z M1758.925,747.153c18.567,7.683,38.297,14.004,59.329,18.767
c65.68-14.91,119.027-44.618,162-85.38v1773.751H315.099L1691.262,836.021L1758.925,747.153z M1421.234,1117.019l-80.221,94.365
l-235.984-10.885l0.566-0.652L1421.234,1117.019z M892.687,1738.742l-80.392,94.563l-240.746-10.63l0.313-0.369L892.687,1738.742
z M452.239,2256.858l-80.504,94.705l-244.744-10.432l0.085-0.113L452.239,2256.858z M38.125,2444.767l326.013-84.273
M716.514,1945.982l-80.448,94.62l-242.334-10.545l0.228-0.255L716.514,1945.982z M804.586,1842.377l-80.392,94.563
l-241.567-10.572l0.282-0.313L804.586,1842.377z M1068.859,1531.501l-80.307,94.507l-239.187-10.743l0.397-0.454
L1068.859,1531.501z M1156.961,1427.895l-80.307,94.45l-238.365-10.771l0.426-0.511L1156.961,1427.895z M1245.062,1324.26
l-80.278,94.422l-237.57-10.8l0.481-0.567L1245.062,1324.26z M1333.133,1220.625l-80.248,94.422l-236.778-10.856l0.539-0.623
L1333.133,1220.625z M1509.307,1013.384l-80.192,94.337l-235.162-10.913l0.595-0.709L1509.307,1013.384z M1597.407,909.778
l-80.164,94.309l-234.397-10.97l0.652-0.767L1597.407,909.778z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M715.861,11.45l53.518-10.998c10.262,226.346,91.645,401.782,220.875,497.027
c129.232-95.245,210.614-270.682,220.877-497.027l53.518,10.998c-10.545,197.121-77.443,407.962-242.362,529.484l-32.032,23.641
l-32.031-23.641C793.303,419.412,726.406,208.571,715.861,11.45z M1971.893,688.222c-0.17,0.143-0.313,0.284-0.482,0.426
c-2.777,2.467-5.584,4.875-8.446,7.229l-0.597,0.482c-2.862,2.353-5.754,4.676-8.702,6.944l-0.539,0.397
c-3.004,2.295-6.065,4.563-9.154,6.773l-0.397,0.284c-3.118,2.211-6.265,4.365-9.468,6.491l-0.482,0.312
c-3.175,2.099-6.378,4.11-9.638,6.095l-0.538,0.34c-3.288,1.984-6.604,3.912-9.978,5.811l-0.397,0.227
c-3.458,1.929-6.945,3.8-10.488,5.613l-0.312,0.143c-3.515,1.813-7.087,3.543-10.715,5.244l-0.397,0.197
c-3.628,1.674-7.257,3.288-10.97,4.848l-0.397,0.171c-3.77,1.587-7.567,3.118-11.423,4.592l-0.171,0.056
c-3.911,1.504-7.852,2.92-11.848,4.281l-0.227,0.085c-3.97,1.332-7.966,2.636-12.048,3.854l-0.368,0.113
c-2.892,0.852-5.812,1.701-8.76,2.523c-0.539,0.142-1.104,0.283-1.644,0.425l-0.482,0.142l-0.085,0.028l-0.227,0.058
l-0.283,0.057l-0.17,0.056l-0.284,0.085l-0.368,0.086l-0.085,0.028c-0.596,0.17-1.19,0.312-1.786,0.481h-0.027l-1.22,0.313
c-1.049,0.255-2.098,0.538-3.175,0.793h-0.027l-0.228,0.057c-0.567,0.143-1.162,0.283-1.758,0.426l-0.228,0.057
c-0.537,0.141-1.048,0.255-1.587,0.368l-0.991,0.255l-0.369,0.085l-0.312,0.058l-0.766,0.17l-0.34,0.084l-0.255,0.058
c-3.629-0.822-7.2-1.729-10.743-2.636c-1.956-0.51-3.884-1.021-5.783-1.531c-266.286-72.936-318.898-399.628-305.093-702.709
l-53.546-11.027l-0.397,8.562c-9.864,216.879,10.006,507.062,177.902,664.583c43.172,40.507,93.175,69.363,148.507,87.222
v1645.909h98.306V808.411c40.705-13.153,78.52-32.258,112.848-57.543V680.54C1977.505,683.147,1974.727,685.7,1971.893,688.222z
M113.102,2454.292h98.305V808.383c55.333-17.858,105.336-46.715,148.507-87.222C527.811,563.64,547.682,273.457,537.816,56.578
l-0.396-8.562l-53.574,11.027c13.832,303.081-38.779,629.773-305.064,702.709c-1.9,0.51-3.827,1.021-5.783,1.531
c-3.543,0.906-7.115,1.813-10.743,2.636L162,765.862l-0.341-0.084l-0.793-0.17l-0.284-0.058l-0.368-0.085l-0.992-0.255
l-0.284-0.056l-0.737-0.172l-0.17-0.056l-0.879-0.199l-0.311-0.085l-0.596-0.141l-0.17-0.029l-0.142-0.027l-0.028-0.028
l-0.737-0.17h-0.057c-0.567-0.143-1.133-0.284-1.7-0.427l-0.029-0.027c-1.417-0.34-2.806-0.709-4.195-1.077l-0.085-0.028
l-0.397-0.086v-0.027l-0.935-0.228l-0.057-0.028l-0.85-0.227l-0.341-0.085l-0.935-0.255c-2.948-0.822-5.896-1.645-8.787-2.523
l-0.397-0.113c-4.054-1.219-8.051-2.522-12.019-3.854l-0.227-0.085c-3.997-1.361-7.965-2.777-11.849-4.281l-0.17-0.056
c-3.855-1.474-7.682-3.005-11.423-4.592l-0.397-0.171c-3.714-1.56-7.37-3.174-10.97-4.848l-0.397-0.197
c-3.629-1.701-7.2-3.431-10.715-5.244l-0.312-0.143c-3.543-1.813-7.03-3.685-10.488-5.613l-0.397-0.227
c-3.373-1.898-6.69-3.826-9.978-5.811l-0.539-0.34c-3.259-1.984-6.463-3.996-9.637-6.095l-0.482-0.312
c-3.203-2.126-6.35-4.28-9.468-6.491l-0.397-0.284c-3.09-2.211-6.151-4.479-9.156-6.773l-0.538-0.397
c-2.948-2.269-5.84-4.592-8.703-6.944l-0.595-0.482c-2.863-2.354-5.669-4.762-8.447-7.229c-0.17-0.142-0.34-0.283-0.482-0.426
c-2.835-2.521-5.613-5.074-8.362-7.682v70.328c34.327,25.285,72.141,44.39,112.847,57.543V2454.292z M0.254,2670.287h1656v-180
h-1656V2670.287z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_URL">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#F25100" d="
M715.861,11.45l53.518-10.998c10.262,226.346,91.645,401.782,220.875,497.027c129.232-95.245,210.614-270.682,220.877-497.027
l53.518,10.998c-10.545,197.121-77.443,407.962-242.362,529.484l-32.032,23.641l-32.031-23.641
C793.303,419.412,726.406,208.571,715.861,11.45z M1971.893,688.222c-0.17,0.143-0.313,0.284-0.482,0.426
c-2.777,2.467-5.584,4.875-8.446,7.229l-0.597,0.482c-2.862,2.353-5.754,4.676-8.702,6.944l-0.539,0.397
c-3.004,2.295-6.065,4.563-9.154,6.773l-0.397,0.284c-3.118,2.211-6.265,4.365-9.468,6.491l-0.482,0.312
c-3.175,2.099-6.378,4.11-9.638,6.095l-0.538,0.34c-3.288,1.984-6.604,3.912-9.978,5.811l-0.397,0.227
c-3.458,1.929-6.945,3.8-10.488,5.613l-0.312,0.143c-3.515,1.813-7.087,3.543-10.715,5.244l-0.397,0.197
c-3.628,1.674-7.257,3.288-10.97,4.848l-0.397,0.171c-3.77,1.587-7.567,3.118-11.423,4.592l-0.171,0.056
c-3.911,1.504-7.852,2.92-11.848,4.281l-0.227,0.085c-3.97,1.332-7.966,2.636-12.048,3.854l-0.368,0.113
c-2.892,0.852-5.812,1.701-8.76,2.523c-0.539,0.142-1.104,0.283-1.644,0.425l-0.482,0.142l-0.085,0.028l-0.227,0.058
l-0.283,0.057l-0.17,0.056l-0.284,0.085l-0.368,0.086l-0.085,0.028c-0.596,0.17-1.19,0.312-1.786,0.481h-0.027l-1.22,0.313
c-1.049,0.255-2.098,0.538-3.175,0.793h-0.027l-0.228,0.057c-0.567,0.143-1.162,0.283-1.758,0.426l-0.228,0.057
c-0.537,0.141-1.048,0.255-1.587,0.368l-0.991,0.255l-0.369,0.085l-0.312,0.058l-0.766,0.17l-0.34,0.084l-0.255,0.058
c-3.629-0.822-7.2-1.729-10.743-2.636c-1.956-0.51-3.884-1.021-5.783-1.531c-266.286-72.936-318.898-399.628-305.093-702.709
l-53.546-11.027l-0.397,8.562c-9.864,216.879,10.006,507.062,177.902,664.583c43.172,40.507,93.175,69.363,148.507,87.222
v1645.909h98.306V808.411c40.705-13.153,78.52-32.258,112.848-57.543V680.54C1977.505,683.147,1974.727,685.7,1971.893,688.222z
M113.102,2454.292h98.305V808.383c55.333-17.858,105.336-46.715,148.507-87.222C527.811,563.64,547.682,273.457,537.816,56.578
l-0.396-8.562l-53.574,11.027c13.832,303.081-38.779,629.773-305.064,702.709c-1.9,0.51-3.827,1.021-5.783,1.531
c-3.543,0.906-7.115,1.813-10.743,2.636L162,765.862l-0.341-0.084l-0.793-0.17l-0.284-0.058l-0.368-0.085l-0.992-0.255
l-0.284-0.056l-0.737-0.172l-0.17-0.056l-0.879-0.199l-0.311-0.085l-0.596-0.141l-0.17-0.029l-0.142-0.027l-0.028-0.028
l-0.737-0.17h-0.057c-0.567-0.143-1.133-0.284-1.7-0.427l-0.029-0.027c-1.417-0.34-2.806-0.709-4.195-1.077l-0.085-0.028
l-0.397-0.086v-0.027l-0.935-0.228l-0.057-0.028l-0.85-0.227l-0.341-0.085l-0.935-0.255c-2.948-0.822-5.896-1.645-8.787-2.523
l-0.397-0.113c-4.054-1.219-8.051-2.522-12.019-3.854l-0.227-0.085c-3.997-1.361-7.965-2.777-11.849-4.281l-0.17-0.056
c-3.855-1.474-7.682-3.005-11.423-4.592l-0.397-0.171c-3.714-1.56-7.37-3.174-10.97-4.848l-0.397-0.197
c-3.629-1.701-7.2-3.431-10.715-5.244l-0.312-0.143c-3.543-1.813-7.03-3.685-10.488-5.613l-0.397-0.227
c-3.373-1.898-6.69-3.826-9.978-5.811l-0.539-0.34c-3.259-1.984-6.463-3.996-9.637-6.095l-0.482-0.312
c-3.203-2.126-6.35-4.28-9.468-6.491l-0.397-0.284c-3.09-2.211-6.151-4.479-9.156-6.773l-0.538-0.397
c-2.948-2.269-5.84-4.592-8.703-6.944l-0.595-0.482c-2.863-2.354-5.669-4.762-8.447-7.229c-0.17-0.142-0.34-0.283-0.482-0.426
c-2.835-2.521-5.613-5.074-8.362-7.682v70.328c34.327,25.285,72.141,44.39,112.847,57.543V2454.292z M0.254,2670.287h1656v-180
h-1656V2670.287z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M1805.839,1597.775h24.775v24.774h-24.775V1597.775z M1805.839,1731.428h24.775v-24.774
h-24.775V1731.428z M1781.063,1597.774h24.775v-24.746h-24.775V1597.774z M1781.063,1756.174h24.775v-24.746h-24.775V1756.174z
M1805.839,1573.028h24.775v-24.775h-24.775V1573.028z M1805.839,1780.95h24.775v-24.775h-24.775V1780.95z M1781.063,1449.381
h24.775v-24.774h-24.775V1449.381z M1830.614,1474.156v-24.775h-24.775v24.775H1830.614z M1830.614,1938.329v-24.775h-24.775
v24.775H1830.614z M1805.839,1888.779h-24.775v24.774h24.775V1888.779l24.775,0.001v-24.775h-24.775V1888.779z
M1830.614,2096.729v-24.775h-24.775v24.775H1830.614z M1781.063,2242.714h24.775v24.774h24.775v-24.775h-24.775v-24.773
h-24.775V2242.714z M1805.839,2217.939h24.775v-24.775h-24.775V2217.939z M1752.548,2454.291h16.554V808.382
c-5.556-1.785-11.084-3.685-16.554-5.726V2454.291z M1805.839,2047.179h-24.775v24.775h24.775V2047.179l24.775,0.001v-24.774
h-24.775V2047.179z M1805.839,1424.606h24.775v-24.775h-24.775V1424.606z M1830.67,1597.774h24.775v-24.746h-24.775V1597.774z
M1830.67,1449.381h24.775v-24.774h-24.775V1449.381z M1830.67,1290.981h24.775v-24.775h-24.775V1290.981z M1830.67,1756.174
h24.775v-24.746h-24.775V1756.174z M1830.67,1913.554h24.775v-24.774h-24.775V1913.554z M1830.67,1133.603h24.775v-24.775
h-24.775V1133.603z M1830.614,1315.756v-24.774h-24.775v24.774H1830.614z M1867.407,808.411v1645.88h16.555V802.656
C1878.491,804.697,1872.963,806.597,1867.407,808.411z M1830.67,975.202h24.775v-24.775h-24.775V975.202z M1830.67,2071.954
h24.775v-24.775h-24.775V2071.954z M1781.063,1133.603h24.775v24.773h24.775v-24.775h-24.775v-24.773h-24.775V1133.603z
M1805.839,1108.827h24.775v-24.775h-24.775V1108.827z M1805.839,1266.206h24.775v-24.775h-24.775V1266.206z M1781.063,1290.981
h24.775v-24.775h-24.775V1290.981z M1805.839,950.427h24.775v-24.774h-24.775V950.427z M1830.67,2242.714h24.775v-24.774
h-24.775V2242.714z M1781.063,975.202h24.775v24.773h24.775v-24.774h-24.775v-24.774h-24.775V975.202z M125.064,1756.174h24.775
v-24.746h-24.775V1756.174z M125.064,1597.774h24.775v-24.746h-24.775V1597.774z M149.839,1731.428h24.775v-24.774h-24.775
V1731.428z M149.839,1622.55h24.775v-24.774h-24.775V1622.55z M149.839,1424.606h24.775v-24.775h-24.775V1424.606z
M125.064,1449.381h24.775v-24.774h-24.775V1449.381z M149.839,1573.028h24.775v-24.775h-24.775V1573.028z M174.614,1474.156
v-24.775h-24.775v24.775H174.614z M149.839,1780.95h24.775v-24.775h-24.775V1780.95z M125.064,2242.714h24.775v24.774h24.775
v-24.775h-24.775v-24.773h-24.775V2242.714z M96.548,2454.291h16.554V808.411c-5.584-1.814-11.083-3.714-16.554-5.755V2454.291z
M149.839,2217.939h24.775v-24.775h-24.775V2217.939z M174.614,2096.729v-24.775h-24.775v24.775H174.614z M149.839,1888.779
h-24.775v24.774h24.775V1888.779l24.775,0.001v-24.775h-24.775V1888.779z M174.614,1938.329v-24.775h-24.775v24.775H174.614z
M149.839,2047.179h-24.775v24.775h24.775V2047.179l24.775,0.001v-24.774h-24.775V2047.179z M174.671,975.202h24.775v-24.775
h-24.775V975.202z M174.671,1449.381h24.775v-24.774h-24.775V1449.381z M174.671,1597.774h24.775v-24.746h-24.775V1597.774z
M174.671,2071.954h24.775v-24.775h-24.775V2071.954z M174.671,1913.554h24.775v-24.774h-24.775V1913.554z M174.671,1756.174
h24.775v-24.746h-24.775V1756.174z M211.408,2454.291h16.554V802.656c-5.471,2.041-10.998,3.94-16.554,5.726V2454.291z
M174.671,1290.981h24.775v-24.775h-24.775V1290.981z M174.671,1133.603h24.775v-24.775h-24.775V1133.603z M149.839,1108.827
h24.775v-24.775h-24.775V1108.827z M125.064,1133.603h24.775v24.773h24.775v-24.775h-24.775v-24.773h-24.775V1133.603z
M149.839,1266.206h24.775v-24.775h-24.775V1266.206z M125.064,1290.981h24.775v-24.775h-24.775V1290.981z M174.614,1315.756
v-24.774h-24.775v24.774H174.614z M174.671,2242.714h24.775v-24.774h-24.775V2242.714z M149.839,950.427h24.775v-24.774h-24.775
V950.427z M125.064,975.202h24.775v24.773h24.775v-24.774h-24.775v-24.774h-24.775V975.202z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_URL">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_URL)" fill="#010149" d="M1805.839,1597.775h24.775v24.774h-24.775
V1597.775z M1805.839,1731.428h24.775v-24.774h-24.775V1731.428z M1781.063,1597.774h24.775v-24.746h-24.775V1597.774z
M1781.063,1756.174h24.775v-24.746h-24.775V1756.174z M1805.839,1573.028h24.775v-24.775h-24.775V1573.028z M1805.839,1780.95
h24.775v-24.775h-24.775V1780.95z M1781.063,1449.381h24.775v-24.774h-24.775V1449.381z M1830.614,1474.156v-24.775h-24.775
v24.775H1830.614z M1830.614,1938.329v-24.775h-24.775v24.775H1830.614z M1805.839,1888.779h-24.775v24.774h24.775V1888.779
l24.775,0.001v-24.775h-24.775V1888.779z M1830.614,2096.729v-24.775h-24.775v24.775H1830.614z M1781.063,2242.714h24.775v24.774
h24.775v-24.775h-24.775v-24.773h-24.775V2242.714z M1805.839,2217.939h24.775v-24.775h-24.775V2217.939z M1752.548,2454.291
h16.554V808.382c-5.556-1.785-11.084-3.685-16.554-5.726V2454.291z M1805.839,2047.179h-24.775v24.775h24.775V2047.179
l24.775,0.001v-24.774h-24.775V2047.179z M1805.839,1424.606h24.775v-24.775h-24.775V1424.606z M1830.67,1597.774h24.775v-24.746
h-24.775V1597.774z M1830.67,1449.381h24.775v-24.774h-24.775V1449.381z M1830.67,1290.981h24.775v-24.775h-24.775V1290.981z
M1830.67,1756.174h24.775v-24.746h-24.775V1756.174z M1830.67,1913.554h24.775v-24.774h-24.775V1913.554z M1830.67,1133.603
h24.775v-24.775h-24.775V1133.603z M1830.614,1315.756v-24.774h-24.775v24.774H1830.614z M1867.407,808.411v1645.88h16.555
V802.656C1878.491,804.697,1872.963,806.597,1867.407,808.411z M1830.67,975.202h24.775v-24.775h-24.775V975.202z
M1830.67,2071.954h24.775v-24.775h-24.775V2071.954z M1781.063,1133.603h24.775v24.773h24.775v-24.775h-24.775v-24.773h-24.775
V1133.603z M1805.839,1108.827h24.775v-24.775h-24.775V1108.827z M1805.839,1266.206h24.775v-24.775h-24.775V1266.206z
M1781.063,1290.981h24.775v-24.775h-24.775V1290.981z M1805.839,950.427h24.775v-24.774h-24.775V950.427z M1830.67,2242.714
h24.775v-24.774h-24.775V2242.714z M1781.063,975.202h24.775v24.773h24.775v-24.774h-24.775v-24.774h-24.775V975.202z
M125.064,1756.174h24.775v-24.746h-24.775V1756.174z M125.064,1597.774h24.775v-24.746h-24.775V1597.774z M149.839,1731.428
h24.775v-24.774h-24.775V1731.428z M149.839,1622.55h24.775v-24.774h-24.775V1622.55z M149.839,1424.606h24.775v-24.775h-24.775
V1424.606z M125.064,1449.381h24.775v-24.774h-24.775V1449.381z M149.839,1573.028h24.775v-24.775h-24.775V1573.028z
M174.614,1474.156v-24.775h-24.775v24.775H174.614z M149.839,1780.95h24.775v-24.775h-24.775V1780.95z M125.064,2242.714h24.775
v24.774h24.775v-24.775h-24.775v-24.773h-24.775V2242.714z M96.548,2454.291h16.554V808.411
c-5.584-1.814-11.083-3.714-16.554-5.755V2454.291z M149.839,2217.939h24.775v-24.775h-24.775V2217.939z M174.614,2096.729
v-24.775h-24.775v24.775H174.614z M149.839,1888.779h-24.775v24.774h24.775V1888.779l24.775,0.001v-24.775h-24.775V1888.779z
M174.614,1938.329v-24.775h-24.775v24.775H174.614z M149.839,2047.179h-24.775v24.775h24.775V2047.179l24.775,0.001v-24.774
h-24.775V2047.179z M174.671,975.202h24.775v-24.775h-24.775V975.202z M174.671,1449.381h24.775v-24.774h-24.775V1449.381z
M174.671,1597.774h24.775v-24.746h-24.775V1597.774z M174.671,2071.954h24.775v-24.775h-24.775V2071.954z M174.671,1913.554
h24.775v-24.774h-24.775V1913.554z M174.671,1756.174h24.775v-24.746h-24.775V1756.174z M211.408,2454.291h16.554V802.656
c-5.471,2.041-10.998,3.94-16.554,5.726V2454.291z M174.671,1290.981h24.775v-24.775h-24.775V1290.981z M174.671,1133.603h24.775
v-24.775h-24.775V1133.603z M149.839,1108.827h24.775v-24.775h-24.775V1108.827z M125.064,1133.603h24.775v24.773h24.775v-24.775
h-24.775v-24.773h-24.775V1133.603z M149.839,1266.206h24.775v-24.775h-24.775V1266.206z M125.064,1290.981h24.775v-24.775
h-24.775V1290.981z M174.614,1315.756v-24.774h-24.775v24.774H174.614z M174.671,2242.714h24.775v-24.774h-24.775V2242.714z
M149.839,950.427h24.775v-24.774h-24.775V950.427z M125.064,975.202h24.775v24.773h24.775v-24.774h-24.775v-24.774h-24.775
V975.202z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M1830.614,950.427v24.775h-24.775v-24.775H1830.614z M149.839,1449.381h24.775v-24.774
h-24.775V1449.381z M149.839,1597.774h24.775v-24.746h-24.775V1597.774z M149.839,1756.174h24.775v-24.746h-24.775V1756.174z
M149.839,1290.981h24.775v-24.775h-24.775V1290.981z M149.839,2242.714h24.775v-24.774h-24.775V2242.714z M149.839,1133.603
h24.775v-24.775h-24.775V1133.603z M149.839,2071.954h24.775v-24.775h-24.775V2071.954z M149.839,1913.554h24.775v-24.774
h-24.775V1913.554z M1805.839,1133.603h24.775v-24.775h-24.775V1133.603z M1805.839,1597.774h24.775v-24.746h-24.775V1597.774z
M1805.839,1756.174h24.775v-24.746h-24.775V1756.174z M1805.839,1449.381h24.775v-24.774h-24.775V1449.381z M1805.839,1290.981
h24.775v-24.775h-24.775V1290.981z M149.839,975.202h24.775v-24.775h-24.775V975.202z M1805.839,2242.714h24.775v-24.774
h-24.775V2242.714z M1805.839,2071.954h24.775v-24.775h-24.775V2071.954z M1805.839,1913.554h24.775v-24.774h-24.775V1913.554z"
/>
</defs>
<clipPath id="Front_Trim_4_Clippath_URL">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_URL)" fill="#FF6100" d="M1830.614,950.427v24.775h-24.775v-24.775
H1830.614z M149.839,1449.381h24.775v-24.774h-24.775V1449.381z M149.839,1597.774h24.775v-24.746h-24.775V1597.774z
M149.839,1756.174h24.775v-24.746h-24.775V1756.174z M149.839,1290.981h24.775v-24.775h-24.775V1290.981z M149.839,2242.714
h24.775v-24.774h-24.775V2242.714z M149.839,1133.603h24.775v-24.775h-24.775V1133.603z M149.839,2071.954h24.775v-24.775
h-24.775V2071.954z M149.839,1913.554h24.775v-24.774h-24.775V1913.554z M1805.839,1133.603h24.775v-24.775h-24.775V1133.603z
M1805.839,1597.774h24.775v-24.746h-24.775V1597.774z M1805.839,1756.174h24.775v-24.746h-24.775V1756.174z M1805.839,1449.381
h24.775v-24.774h-24.775V1449.381z M1805.839,1290.981h24.775v-24.775h-24.775V1290.981z M149.839,975.202h24.775v-24.775
h-24.775V975.202z M1805.839,2242.714h24.775v-24.774h-24.775V2242.714z M1805.839,2071.954h24.775v-24.775h-24.775V2071.954z
M1805.839,1913.554h24.775v-24.774h-24.775V1913.554z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="1320.277" y="2094.148" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="918.255" y="159.745" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="490.254" y="348.038" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

View File

@@ -0,0 +1,493 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="3277.022px" height="2592.438px" viewBox="0 0 3277.022 2592.438" enable-background="new 0 0 3277.022 2592.438"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M2831.247,0.293l285.506,58.706c-13.012,292.79,37.275,488.977,159.618,603.552v1713.742
H1944.372V662.551c122.344-114.575,172.629-310.762,159.59-603.552l285.534-58.706
c59.046,112.337,90.283,106.044,220.875,104.995C2740.936,106.337,2772.173,112.63,2831.247,0.293z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_URL">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.198" stroke-miterlimit="10" d="
M2831.247,0.293l285.506,58.706c-13.012,292.79,37.275,488.977,159.618,603.552v1713.742H1944.372V662.551
c122.344-114.575,172.629-310.762,159.59-603.552l285.534-58.706c59.046,112.337,90.283,106.044,220.875,104.995
C2740.936,106.337,2772.173,112.63,2831.247,0.293z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M3251.483,2324.476l24.889,29.282 M1944.372,693.506l209.82,55.332l0.737,0.879
l-210.558,10.006V693.506z M3276.372,2022.501v35.064L2954.81,1682.57l0.34,0.396l-239.953,10.687l-80.361-94.534
l319.975,83.423l-710.957-829.135l-233.603,11l-65.878-77.5v-13.012l298.771,78.69l0.482,0.539l-232.924-271.616
c4.225-6.746,8.307-13.663,12.246-20.777L3276.372,2022.501z M3276.372,2088.634v10.601l-208.715,9.015l-80.447-94.648
L3276.372,2088.634z M3276.372,2169.336v37.389l-120.614,5.188l-80.476-94.678L3276.372,2169.336z M3276.372,2250.095v64.063
l-32.485,1.389l-80.504-94.677L3276.372,2250.095z M1944.372,2376.293V823.56l1320.405,1552.733H1944.372z M2194.388,1081.002
l80.22,94.364l235.985-10.885l-0.567-0.651L2194.388,1081.002z M2722.936,1702.753l80.362,94.536l240.775-10.63l-0.313-0.369
L2722.936,1702.753z M3276.372,2330.911l-24.889-6.436 M2899.108,1909.994l80.419,94.592l242.362-10.544l-0.227-0.256
L2899.108,1909.994z M2811.008,1806.359l80.419,94.593l241.54-10.603l-0.255-0.312L2811.008,1806.359z M2546.733,1495.483
l80.334,94.507l239.159-10.715l-0.397-0.453L2546.733,1495.483z M2458.661,1391.878l80.307,94.45l238.365-10.743l-0.454-0.511
L2458.661,1391.878z M2370.561,1288.243l80.277,94.449l237.571-10.8l-0.481-0.566L2370.561,1288.243z M2282.488,1184.637
l80.249,94.394l236.749-10.856l-0.51-0.597L2282.488,1184.637z M2106.286,977.396l80.222,94.338l235.162-10.942l-0.597-0.709
L2106.286,977.396z M2018.215,873.761l80.164,94.309l234.368-10.97l-0.652-0.766L2018.215,873.761z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_URL">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M3251.483,2324.476l24.889,29.282 M1944.372,693.506l209.82,55.332l0.737,0.879l-210.558,10.006V693.506z M3276.372,2022.501
v35.064L2954.81,1682.57l0.34,0.396l-239.953,10.687l-80.361-94.534l319.975,83.423l-710.957-829.135l-233.603,11l-65.878-77.5
v-13.012l298.771,78.69l0.482,0.539l-232.924-271.616c4.225-6.746,8.307-13.663,12.246-20.777L3276.372,2022.501z
M3276.372,2088.634v10.601l-208.715,9.015l-80.447-94.648L3276.372,2088.634z M3276.372,2169.336v37.389l-120.614,5.188
l-80.476-94.678L3276.372,2169.336z M3276.372,2250.095v64.063l-32.485,1.389l-80.504-94.677L3276.372,2250.095z
M1944.372,2376.293V823.56l1320.405,1552.733H1944.372z M2194.388,1081.002l80.22,94.364l235.985-10.885l-0.567-0.651
L2194.388,1081.002z M2722.936,1702.753l80.362,94.536l240.775-10.63l-0.313-0.369L2722.936,1702.753z M3276.372,2330.911
l-24.889-6.436 M2899.108,1909.994l80.419,94.592l242.362-10.544l-0.227-0.256L2899.108,1909.994z M2811.008,1806.359
l80.419,94.593l241.54-10.603l-0.255-0.312L2811.008,1806.359z M2546.733,1495.483l80.334,94.507l239.159-10.715l-0.397-0.453
L2546.733,1495.483z M2458.661,1391.878l80.307,94.45l238.365-10.743l-0.454-0.511L2458.661,1391.878z M2370.561,1288.243
l80.277,94.449l237.571-10.8l-0.481-0.566L2370.561,1288.243z M2282.488,1184.637l80.249,94.394l236.749-10.856l-0.51-0.597
L2282.488,1184.637z M2106.286,977.396l80.222,94.338l235.162-10.942l-0.597-0.709L2106.286,977.396z M2018.215,873.761
l80.164,94.309l234.368-10.97l-0.652-0.766L2018.215,873.761z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M2157.906,56.617c10.885,244.63-13.89,525.827-213.534,676.148v-70.214
c17.15-16.073,32.91-33.76,47.254-53.094l0.227-0.283c6.265-8.446,12.246-17.234,17.972-26.306l0.425-0.651
c5.669-9.043,11.084-18.368,16.243-28.006l0.396-0.766c1.22-2.268,2.41-4.564,3.601-6.859c0.171-0.369,0.341-0.709,0.539-1.078
c3.685-7.256,7.228-14.684,10.63-22.28l0.198-0.425c1.049-2.325,2.069-4.678,3.09-7.03c0.255-0.624,0.51-1.219,0.794-1.842
c0.992-2.325,1.956-4.649,2.919-7.002c0.142-0.341,0.284-0.681,0.426-1.021c3.033-7.484,5.952-15.109,8.759-22.904
c0.283-0.793,0.567-1.615,0.851-2.438c0.821-2.268,1.616-4.564,2.409-6.86c0.283-0.879,0.566-1.758,0.879-2.636
c2.494-7.427,4.876-14.996,7.144-22.706c0.312-1.02,0.623-2.041,0.907-3.061c0.652-2.24,1.304-4.507,1.927-6.775
c0.34-1.19,0.681-2.409,0.992-3.628c0.624-2.24,1.248-4.479,1.843-6.747c0.283-1.134,0.567-2.268,0.85-3.373
c1.135-4.309,2.211-8.674,3.261-13.039c0.284-1.219,0.567-2.41,0.85-3.629c0.511-2.182,1.021-4.394,1.503-6.604
c0.34-1.53,0.68-3.032,1.021-4.535c0.481-2.183,0.936-4.365,1.418-6.549c0.34-1.615,0.651-3.23,0.991-4.875
c0.426-2.125,0.879-4.28,1.305-6.435c0.652-3.373,1.304-6.774,1.927-10.205c0.397-2.041,0.737-4.139,1.106-6.208
c0.34-1.871,0.68-3.742,0.992-5.611c0.34-2.099,0.709-4.168,1.049-6.266c0.312-1.984,0.623-3.968,0.935-5.98
c0.312-2.014,0.624-3.997,0.937-6.038c0.396-2.579,0.765-5.188,1.133-7.795c0.396-2.75,0.766-5.499,1.134-8.277
c0.341-2.522,0.681-5.046,0.992-7.569c0.255-1.927,0.481-3.883,0.709-5.811c0.284-2.324,0.567-4.677,0.821-7.03
c0.228-1.927,0.455-3.883,0.652-5.839c0.313-2.665,0.567-5.357,0.852-8.05c0.169-1.588,0.34-3.204,0.481-4.819
c0.396-4.082,0.793-8.191,1.133-12.331c0.171-1.729,0.284-3.487,0.454-5.216c0.198-2.721,0.426-5.471,0.652-8.22
c0.142-1.871,0.255-3.742,0.396-5.642c0.198-2.862,0.396-5.755,0.596-8.646c0.113-1.672,0.227-3.316,0.312-4.96
c0.283-4.395,0.511-8.816,0.765-13.268c0.058-1.219,0.113-2.466,0.17-3.685c0.171-3.458,0.313-6.916,0.455-10.403
c0.084-1.729,0.141-3.486,0.197-5.216c0.143-3.118,0.228-6.264,0.34-9.438c0.058-1.701,0.114-3.402,0.143-5.131
c0.113-3.94,0.227-7.908,0.283-11.877c0.028-0.851,0.057-1.701,0.057-2.523c0.114-4.79,0.17-9.609,0.227-14.457
c0-1.53,0-3.089,0.028-4.62c0.029-3.515,0.029-7.001,0.029-10.545v-5.074c0-3.77-0.029-7.567-0.058-11.338
c0-1.304,0-2.608-0.027-3.912c-0.057-5.046-0.114-10.147-0.228-15.278c0-1.078-0.028-2.154-0.057-3.232
c-0.085-4.139-0.198-8.277-0.283-12.444c-0.057-1.672-0.114-3.315-0.142-4.987c-0.113-3.8-0.255-7.627-0.369-11.453
c-0.057-1.56-0.113-3.117-0.17-4.705c-0.198-5.301-0.396-10.631-0.652-16.017l21.885-4.478l31.69-6.521L2157.906,56.617z
M3229.062,609.401l-0.142-0.17c-6.293-8.475-12.302-17.291-18.058-26.391l-0.367-0.595
c-5.698-9.071-11.141-18.426-16.299-28.12l-0.369-0.651c-1.19-2.296-2.409-4.593-3.601-6.917c-0.17-0.34-0.34-0.652-0.51-0.992
c-3.713-7.313-7.285-14.768-10.715-22.422l-0.143-0.34c-1.049-2.325-2.068-4.678-3.09-7.059c-0.255-0.596-0.51-1.19-0.765-1.785
c-0.992-2.326-1.984-4.678-2.948-7.059c-0.142-0.284-0.255-0.596-0.368-0.879c-3.062-7.54-6.01-15.223-8.815-23.046
l-0.852-2.381c-0.793-2.296-1.614-4.593-2.409-6.916c-0.283-0.852-0.566-1.701-0.85-2.523
c-2.523-7.512-4.934-15.166-7.229-22.961c-0.283-0.935-0.567-1.871-0.822-2.834c-0.68-2.268-1.332-4.563-1.956-6.86
c-0.34-1.162-0.652-2.353-0.992-3.544c-0.623-2.267-1.247-4.563-1.842-6.858c-0.256-1.021-0.511-2.041-0.794-3.034
c-1.135-4.478-2.269-9.015-3.346-13.577c-0.282-1.105-0.537-2.212-0.821-3.345c-0.511-2.211-1.021-4.451-1.531-6.69
c-0.312-1.503-0.651-2.976-0.992-4.451c-0.453-2.182-0.935-4.393-1.417-6.604c-0.312-1.559-0.652-3.146-0.964-4.734
c-0.765-3.685-1.474-7.398-2.211-11.169c-0.34-1.842-0.709-3.685-1.049-5.526c-0.368-2.127-0.765-4.252-1.133-6.379
c-0.313-1.813-0.624-3.629-0.937-5.471c-0.368-2.126-0.736-4.252-1.077-6.378c-0.312-1.899-0.624-3.827-0.907-5.754
c-0.34-2.07-0.651-4.139-0.963-6.237c-0.369-2.408-0.709-4.817-1.05-7.256c-0.425-3.005-0.85-6.038-1.247-9.07
c-0.34-2.41-0.651-4.791-0.964-7.2c-0.227-1.984-0.481-3.997-0.737-6.011c-0.254-2.238-0.537-4.507-0.793-6.773
c-0.227-2.014-0.453-3.997-0.652-5.981c-0.283-2.607-0.567-5.216-0.822-7.823c-0.17-1.674-0.34-3.373-0.51-5.047
c-0.397-4.053-0.766-8.135-1.135-12.244c-0.142-1.786-0.282-3.601-0.452-5.387c-0.199-2.692-0.425-5.357-0.624-8.051
c-0.143-1.927-0.283-3.855-0.426-5.782c-0.197-2.777-0.396-5.584-0.566-8.391c-0.113-1.729-0.227-3.458-0.34-5.216
c-0.284-4.337-0.51-8.73-0.737-13.124c-0.085-1.332-0.142-2.693-0.199-4.054c-0.17-3.316-0.311-6.661-0.452-10.007
c-0.086-1.813-0.143-3.628-0.199-5.441c-0.113-3.033-0.227-6.095-0.312-9.156c-0.057-1.786-0.114-3.572-0.17-5.358
c-0.114-3.77-0.199-7.597-0.284-11.423c-0.027-0.993-0.057-1.985-0.057-2.977c-0.085-4.734-0.17-9.496-0.198-14.286
c-0.028-1.616-0.028-3.26-0.057-4.904c0-3.402-0.028-6.803-0.028-10.205v-5.328c0-3.657,0.028-7.314,0.057-11
c0-1.389,0.028-2.806,0.028-4.223c0.058-4.989,0.142-10.035,0.228-15.109c0.027-1.219,0.056-2.438,0.085-3.627
c0.056-3.998,0.17-7.994,0.255-12.02c0.056-1.758,0.113-3.487,0.17-5.244c0.113-3.685,0.227-7.398,0.34-11.111
c0.057-1.673,0.114-3.316,0.17-4.989c0.198-5.188,0.397-10.375,0.652-15.619v-0.313L3063.178,48l-0.368,8.617
c-10.885,244.63,13.891,525.827,213.563,676.148v-70.214C3259.193,646.45,3243.405,628.763,3229.062,609.401z M2610.371,105.288
c-130.592,1.049-161.829,7.342-220.875-104.995l-55.077,11.31l7.257,13.806c23.812,45.269,52.101,91.162,99.638,114.491
c24.888,12.218,51.279,16.64,78.689,18.369c29.85,1.842,60.435,1.02,90.368,1.02c29.906,0,60.492,0.822,90.341-1.02
c27.41-1.729,53.802-6.151,78.689-18.369c47.537-23.329,75.855-69.223,99.639-114.491l7.256-13.806l-55.049-11.31
C2772.173,112.63,2740.936,106.337,2610.371,105.288z"/>
</defs>
<clipPath id="Back_Trim_2_Clippath_URL">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_URL)" fill="#24242D" stroke="#FFFFFF" stroke-width="0.198" stroke-miterlimit="10" d="
M2157.906,56.617c10.885,244.63-13.89,525.827-213.534,676.148v-70.214c17.15-16.073,32.91-33.76,47.254-53.094l0.227-0.283
c6.265-8.446,12.246-17.234,17.972-26.306l0.425-0.651c5.669-9.043,11.084-18.368,16.243-28.006l0.396-0.766
c1.22-2.268,2.41-4.564,3.601-6.859c0.171-0.369,0.341-0.709,0.539-1.078c3.685-7.256,7.228-14.684,10.63-22.28l0.198-0.425
c1.049-2.325,2.069-4.678,3.09-7.03c0.255-0.624,0.51-1.219,0.794-1.842c0.992-2.325,1.956-4.649,2.919-7.002
c0.142-0.341,0.284-0.681,0.426-1.021c3.033-7.484,5.952-15.109,8.759-22.904c0.283-0.793,0.567-1.615,0.851-2.438
c0.821-2.268,1.616-4.564,2.409-6.86c0.283-0.879,0.566-1.758,0.879-2.636c2.494-7.427,4.876-14.996,7.144-22.706
c0.312-1.02,0.623-2.041,0.907-3.061c0.652-2.24,1.304-4.507,1.927-6.775c0.34-1.19,0.681-2.409,0.992-3.628
c0.624-2.24,1.248-4.479,1.843-6.747c0.283-1.134,0.567-2.268,0.85-3.373c1.135-4.309,2.211-8.674,3.261-13.039
c0.284-1.219,0.567-2.41,0.85-3.629c0.511-2.182,1.021-4.394,1.503-6.604c0.34-1.53,0.68-3.032,1.021-4.535
c0.481-2.183,0.936-4.365,1.418-6.549c0.34-1.615,0.651-3.23,0.991-4.875c0.426-2.125,0.879-4.28,1.305-6.435
c0.652-3.373,1.304-6.774,1.927-10.205c0.397-2.041,0.737-4.139,1.106-6.208c0.34-1.871,0.68-3.742,0.992-5.611
c0.34-2.099,0.709-4.168,1.049-6.266c0.312-1.984,0.623-3.968,0.935-5.98c0.312-2.014,0.624-3.997,0.937-6.038
c0.396-2.579,0.765-5.188,1.133-7.795c0.396-2.75,0.766-5.499,1.134-8.277c0.341-2.522,0.681-5.046,0.992-7.569
c0.255-1.927,0.481-3.883,0.709-5.811c0.284-2.324,0.567-4.677,0.821-7.03c0.228-1.927,0.455-3.883,0.652-5.839
c0.313-2.665,0.567-5.357,0.852-8.05c0.169-1.588,0.34-3.204,0.481-4.819c0.396-4.082,0.793-8.191,1.133-12.331
c0.171-1.729,0.284-3.487,0.454-5.216c0.198-2.721,0.426-5.471,0.652-8.22c0.142-1.871,0.255-3.742,0.396-5.642
c0.198-2.862,0.396-5.755,0.596-8.646c0.113-1.672,0.227-3.316,0.312-4.96c0.283-4.395,0.511-8.816,0.765-13.268
c0.058-1.219,0.113-2.466,0.17-3.685c0.171-3.458,0.313-6.916,0.455-10.403c0.084-1.729,0.141-3.486,0.197-5.216
c0.143-3.118,0.228-6.264,0.34-9.438c0.058-1.701,0.114-3.402,0.143-5.131c0.113-3.94,0.227-7.908,0.283-11.877
c0.028-0.851,0.057-1.701,0.057-2.523c0.114-4.79,0.17-9.609,0.227-14.457c0-1.53,0-3.089,0.028-4.62
c0.029-3.515,0.029-7.001,0.029-10.545v-5.074c0-3.77-0.029-7.567-0.058-11.338c0-1.304,0-2.608-0.027-3.912
c-0.057-5.046-0.114-10.147-0.228-15.278c0-1.078-0.028-2.154-0.057-3.232c-0.085-4.139-0.198-8.277-0.283-12.444
c-0.057-1.672-0.114-3.315-0.142-4.987c-0.113-3.8-0.255-7.627-0.369-11.453c-0.057-1.56-0.113-3.117-0.17-4.705
c-0.198-5.301-0.396-10.631-0.652-16.017l21.885-4.478l31.69-6.521L2157.906,56.617z M3229.062,609.401l-0.142-0.17
c-6.293-8.475-12.302-17.291-18.058-26.391l-0.367-0.595c-5.698-9.071-11.141-18.426-16.299-28.12l-0.369-0.651
c-1.19-2.296-2.409-4.593-3.601-6.917c-0.17-0.34-0.34-0.652-0.51-0.992c-3.713-7.313-7.285-14.768-10.715-22.422l-0.143-0.34
c-1.049-2.325-2.068-4.678-3.09-7.059c-0.255-0.596-0.51-1.19-0.765-1.785c-0.992-2.326-1.984-4.678-2.948-7.059
c-0.142-0.284-0.255-0.596-0.368-0.879c-3.062-7.54-6.01-15.223-8.815-23.046l-0.852-2.381c-0.793-2.296-1.614-4.593-2.409-6.916
c-0.283-0.852-0.566-1.701-0.85-2.523c-2.523-7.512-4.934-15.166-7.229-22.961c-0.283-0.935-0.567-1.871-0.822-2.834
c-0.68-2.268-1.332-4.563-1.956-6.86c-0.34-1.162-0.652-2.353-0.992-3.544c-0.623-2.267-1.247-4.563-1.842-6.858
c-0.256-1.021-0.511-2.041-0.794-3.034c-1.135-4.478-2.269-9.015-3.346-13.577c-0.282-1.105-0.537-2.212-0.821-3.345
c-0.511-2.211-1.021-4.451-1.531-6.69c-0.312-1.503-0.651-2.976-0.992-4.451c-0.453-2.182-0.935-4.393-1.417-6.604
c-0.312-1.559-0.652-3.146-0.964-4.734c-0.765-3.685-1.474-7.398-2.211-11.169c-0.34-1.842-0.709-3.685-1.049-5.526
c-0.368-2.127-0.765-4.252-1.133-6.379c-0.313-1.813-0.624-3.629-0.937-5.471c-0.368-2.126-0.736-4.252-1.077-6.378
c-0.312-1.899-0.624-3.827-0.907-5.754c-0.34-2.07-0.651-4.139-0.963-6.237c-0.369-2.408-0.709-4.817-1.05-7.256
c-0.425-3.005-0.85-6.038-1.247-9.07c-0.34-2.41-0.651-4.791-0.964-7.2c-0.227-1.984-0.481-3.997-0.737-6.011
c-0.254-2.238-0.537-4.507-0.793-6.773c-0.227-2.014-0.453-3.997-0.652-5.981c-0.283-2.607-0.567-5.216-0.822-7.823
c-0.17-1.674-0.34-3.373-0.51-5.047c-0.397-4.053-0.766-8.135-1.135-12.244c-0.142-1.786-0.282-3.601-0.452-5.387
c-0.199-2.692-0.425-5.357-0.624-8.051c-0.143-1.927-0.283-3.855-0.426-5.782c-0.197-2.777-0.396-5.584-0.566-8.391
c-0.113-1.729-0.227-3.458-0.34-5.216c-0.284-4.337-0.51-8.73-0.737-13.124c-0.085-1.332-0.142-2.693-0.199-4.054
c-0.17-3.316-0.311-6.661-0.452-10.007c-0.086-1.813-0.143-3.628-0.199-5.441c-0.113-3.033-0.227-6.095-0.312-9.156
c-0.057-1.786-0.114-3.572-0.17-5.358c-0.114-3.77-0.199-7.597-0.284-11.423c-0.027-0.993-0.057-1.985-0.057-2.977
c-0.085-4.734-0.17-9.496-0.198-14.286c-0.028-1.616-0.028-3.26-0.057-4.904c0-3.402-0.028-6.803-0.028-10.205v-5.328
c0-3.657,0.028-7.314,0.057-11c0-1.389,0.028-2.806,0.028-4.223c0.058-4.989,0.142-10.035,0.228-15.109
c0.027-1.219,0.056-2.438,0.085-3.627c0.056-3.998,0.17-7.994,0.255-12.02c0.056-1.758,0.113-3.487,0.17-5.244
c0.113-3.685,0.227-7.398,0.34-11.111c0.057-1.673,0.114-3.316,0.17-4.989c0.198-5.188,0.397-10.375,0.652-15.619v-0.313
L3063.178,48l-0.368,8.617c-10.885,244.63,13.891,525.827,213.563,676.148v-70.214
C3259.193,646.45,3243.405,628.763,3229.062,609.401z M2610.371,105.288c-130.592,1.049-161.829,7.342-220.875-104.995
l-55.077,11.31l7.257,13.806c23.812,45.269,52.101,91.162,99.638,114.491c24.888,12.218,51.279,16.64,78.689,18.369
c29.85,1.842,60.435,1.02,90.368,1.02c29.906,0,60.492,0.822,90.341-1.02c27.41-1.729,53.802-6.151,78.689-18.369
c47.537-23.329,75.855-69.223,99.639-114.491l7.256-13.806l-55.049-11.31C2772.173,112.63,2740.936,106.337,2610.371,105.288z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Prod_QR_Code">
<rect x="2814.296" y="2399.657" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Jock_Tag">
<rect x="3060.522" y="2016.164" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="2106.372" y="159.472" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1175.116,0.293l285.506,58.706c-16.81,378.396,72.057,595.502,285.619,683.518
c65.594-27.043,119.396-66.246,162-118.572v1752.349h-1908V623.944c42.604,52.326,96.406,91.529,162,118.572
C375.804,654.501,464.67,437.396,447.832,58.999L733.366,0.293C743.627,226.64,825.01,402.047,954.241,497.32
C1083.473,402.047,1164.855,226.64,1175.116,0.293z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_URL">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.482" stroke-miterlimit="10" d="
M1175.116,0.293l285.506,58.706c-16.81,378.396,72.057,595.502,285.619,683.518c65.594-27.043,119.396-66.246,162-118.572
v1752.349h-1908V623.944c42.604,52.326,96.406,91.529,162,118.572C375.804,654.501,464.67,437.396,447.832,58.999L733.366,0.293
C743.627,226.64,825.01,402.047,954.241,497.32C1083.473,402.047,1164.855,226.64,1175.116,0.293z"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M313.13,2324.476l-44.051,51.817 M1647.964,686.192l-237.543,62.646l-0.766,0.879
l232.81,11.056l42.038-49.465C1671.774,703.541,1659.587,695.178,1647.964,686.192 M1541.637,560.731
c3.94,7.114,8.021,14.031,12.274,20.777l-232.924,271.616l0.454-0.539l313.058-82.46l-80.164,94.281l-233.574-11
l-710.957,829.135l319.945-83.423l-80.334,94.534l-239.98-10.687l0.369-0.396l-355.833,414.963l323.433-83.933l-80.447,94.648
l-243.155-10.517l0.028-0.028l-88.81,103.577l324.283-84.047l-80.476,94.678l-243.949-10.488l0.142-0.143L14.954,2376.293H0.241
v-17.915L1541.637,560.731z M1700.659,720.69c14.515,7.993,29.68,15.278,45.582,21.826
c65.594-27.043,119.396-66.246,162-118.572v1752.349H299.807l1340.447-1576.29L1700.659,720.69z M1370.226,1081.002
l-80.249,94.364l-235.956-10.885l0.566-0.651L1370.226,1081.002z M841.678,1702.753l-80.392,94.536l-240.746-10.63l0.313-0.369
L841.678,1702.753z M401.23,2220.87l-80.504,94.677l-244.772-10.403l0.114-0.112L401.23,2220.87z M112.721,2376.293
l200.409-51.817 M665.505,1909.994l-80.448,94.592l-242.362-10.544l0.227-0.256L665.505,1909.994z M753.577,1806.359
l-80.391,94.593l-241.568-10.603l0.283-0.312L753.577,1806.359z M1017.851,1495.483l-80.334,94.507l-239.159-10.715l0.397-0.453
L1017.851,1495.483z M1105.952,1391.878l-80.307,94.45l-238.365-10.743l0.426-0.511L1105.952,1391.878z M1194.023,1288.243
l-80.276,94.449l-237.571-10.8l0.481-0.566L1194.023,1288.243z M1282.124,1184.637l-80.248,94.394l-236.778-10.856l0.539-0.597
L1282.124,1184.637z M1458.298,977.396l-80.192,94.338l-235.19-10.942l0.623-0.709L1458.298,977.396z M1546.398,873.761
l-80.164,94.309l-234.397-10.97l0.652-0.766L1546.398,873.761z"/>
</defs>
<clipPath id="Front_MainColor_Clippath_URL">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M313.13,2324.476l-44.051,51.817 M1647.964,686.192l-237.543,62.646l-0.766,0.879l232.81,11.056l42.038-49.465
C1671.774,703.541,1659.587,695.178,1647.964,686.192 M1541.637,560.731c3.94,7.114,8.021,14.031,12.274,20.777l-232.924,271.616
l0.454-0.539l313.058-82.46l-80.164,94.281l-233.574-11l-710.957,829.135l319.945-83.423l-80.334,94.534l-239.98-10.687
l0.369-0.396l-355.833,414.963l323.433-83.933l-80.447,94.648l-243.155-10.517l0.028-0.028l-88.81,103.577l324.283-84.047
l-80.476,94.678l-243.949-10.488l0.142-0.143L14.954,2376.293H0.241v-17.915L1541.637,560.731z M1700.659,720.69
c14.515,7.993,29.68,15.278,45.582,21.826c65.594-27.043,119.396-66.246,162-118.572v1752.349H299.807l1340.447-1576.29
L1700.659,720.69z M1370.226,1081.002l-80.249,94.364l-235.956-10.885l0.566-0.651L1370.226,1081.002z M841.678,1702.753
l-80.392,94.536l-240.746-10.63l0.313-0.369L841.678,1702.753z M401.23,2220.87l-80.504,94.677l-244.772-10.403l0.114-0.112
L401.23,2220.87z M112.721,2376.293l200.409-51.817 M665.505,1909.994l-80.448,94.592l-242.362-10.544l0.227-0.256
L665.505,1909.994z M753.577,1806.359l-80.391,94.593l-241.568-10.603l0.283-0.312L753.577,1806.359z M1017.851,1495.483
l-80.334,94.507l-239.159-10.715l0.397-0.453L1017.851,1495.483z M1105.952,1391.878l-80.307,94.45l-238.365-10.743l0.426-0.511
L1105.952,1391.878z M1194.023,1288.243l-80.276,94.449l-237.571-10.8l0.481-0.566L1194.023,1288.243z M1282.124,1184.637
l-80.248,94.394l-236.778-10.856l0.539-0.597L1282.124,1184.637z M1458.298,977.396l-80.192,94.338l-235.19-10.942l0.623-0.709
L1458.298,977.396z M1546.398,873.761l-80.164,94.309l-234.397-10.97l0.652-0.766L1546.398,873.761z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M113.089,779.622c-43.512-21.146-80.873-47.141-112.848-77.018v-78.66
c0.681,0.85,1.361,1.672,2.041,2.494c1.673,2.012,3.345,3.996,5.046,5.98c0.453,0.539,0.935,1.077,1.389,1.588
c1.701,1.955,3.431,3.911,5.159,5.811c0.538,0.596,1.049,1.162,1.559,1.729c1.701,1.814,3.373,3.628,5.074,5.414
c0.822,0.851,1.645,1.701,2.467,2.552c1.416,1.502,2.891,2.947,4.336,4.422c0.965,0.963,1.929,1.928,2.92,2.862
c1.332,1.332,2.693,2.636,4.054,3.912c1.106,1.077,2.239,2.126,3.374,3.175c1.359,1.275,2.721,2.522,4.109,3.771
c1.305,1.161,2.608,2.323,3.912,3.458c1.19,1.049,2.381,2.068,3.571,3.09c1.39,1.189,2.808,2.381,4.224,3.57
c1.105,0.937,2.211,1.844,3.346,2.75c1.559,1.248,3.117,2.523,4.705,3.742c0.992,0.793,1.984,1.588,3.005,2.353
c1.813,1.418,3.685,2.835,5.556,4.224c0.766,0.567,1.502,1.106,2.268,1.672c1.984,1.446,3.998,2.893,6.01,4.31
c0.709,0.481,1.389,0.991,2.098,1.474c2.126,1.475,4.309,2.948,6.491,4.395c0.651,0.453,1.304,0.879,1.983,1.332
c2.326,1.531,4.678,3.033,7.06,4.535c0.481,0.312,0.963,0.596,1.444,0.907c2.438,1.502,4.904,3.004,7.371,4.479
c0.426,0.254,0.851,0.51,1.275,0.765c2.579,1.502,5.188,2.976,7.795,4.45l0.34,0.199l0.029,0.027h0.027l0.029,0.028h0.028
c5.953,3.345,12.047,6.548,18.255,9.638l0.085,0.029l0.142,0.085l0.567,0.283c2.919,1.446,5.896,2.891,8.9,4.28l0.596,0.283
c3.033,1.418,6.122,2.807,9.212,4.168l0.397,0.17c2.353,1.049,4.733,2.068,7.114,3.061l0.028,0.027l0.539,0.199l0.255,0.113
l0.313,0.143c0.482,0.198,0.992,0.396,1.502,0.623c0.51-0.227,0.992-0.425,1.503-0.623l0.141-0.058l0.454-0.198l0.368-0.17
l0.481-0.197l0.397-0.172l0.454-0.17l0.34-0.141l0.396-0.171l0.652-0.283h0.028c16.696-7.144,32.599-15.08,47.735-23.812
c10.289-5.924,20.24-12.217,29.793-18.906c2.806-1.928,5.555-3.912,8.305-5.953c5.471-4.025,10.828-8.191,16.044-12.501
c4.961-4.054,9.78-8.248,14.515-12.529c0.424-0.396,0.877-0.793,1.303-1.19c3.572-3.287,7.086-6.633,10.545-10.063
c3.629-3.572,7.199-7.199,10.687-10.941c2.636-2.807,5.216-5.67,7.796-8.59c5.952-6.774,11.706-13.775,17.291-21.005
c2.551-3.345,5.102-6.718,7.568-10.176c2.041-2.806,4.054-5.669,6.01-8.562c3.23-4.704,6.35-9.523,9.411-14.428
c2.579-4.109,5.13-8.276,7.597-12.5c2.438-4.195,4.791-8.447,7.114-12.757c2.863-5.272,5.642-10.601,8.334-16.071
c2.155-4.338,4.224-8.76,6.265-13.211c2.183-4.705,4.28-9.496,6.321-14.343c1.929-4.563,3.827-9.128,5.669-13.805
c9.838-25.115,18.313-51.987,25.428-80.646c2.041-8.191,3.969-16.498,5.782-25.002c5.442-25.427,9.894-52.186,13.38-80.276
c1.162-9.384,2.211-18.879,3.174-28.545c0.482-4.848,0.908-9.724,1.332-14.628c0.427-4.903,0.822-9.863,1.191-14.824
c0.368-4.989,0.709-10.006,1.02-15.08c0.313-5.074,0.597-10.148,0.852-15.307c0.794-15.393,1.332-31.153,1.645-47.254
c0.084-5.357,0.17-10.772,0.227-16.215c0.027-5.442,0.056-10.941,0.056-16.469c0-5.5-0.028-11.056-0.085-16.668
c-0.056-5.613-0.141-11.225-0.255-16.923c-0.085-5.669-0.228-11.396-0.397-17.15c-0.141-5.754-0.34-11.537-0.537-17.376
c-0.228-5.839-0.454-11.707-0.737-17.631L501.407,48l0.396,8.617c12.133,273.034-20.127,591.705-290.41,722.977v1596.699
h-98.305V779.622z M1906.2,626.438c-1.673,2.04-3.401,4.053-5.131,6.066c-0.426,0.481-0.851,0.991-1.275,1.502
c-1.729,1.955-3.487,3.912-5.244,5.867c-0.482,0.539-0.992,1.077-1.475,1.645c-1.7,1.843-3.401,3.656-5.131,5.471
c-0.793,0.822-1.559,1.645-2.353,2.438c-1.474,1.531-2.948,3.033-4.45,4.508c-0.935,0.963-1.898,1.898-2.863,2.863
c-1.36,1.304-2.721,2.636-4.082,3.939c-1.104,1.049-2.238,2.098-3.345,3.118c-1.389,1.304-2.778,2.551-4.167,3.827
c-1.274,1.134-2.551,2.267-3.854,3.4c-1.19,1.049-2.409,2.099-3.628,3.147c-1.39,1.19-2.778,2.353-4.195,3.543
c-1.106,0.907-2.24,1.843-3.345,2.75c-1.56,1.247-3.118,2.494-4.678,3.741c-1.021,0.794-2.013,1.588-3.034,2.353
c-1.842,1.418-3.655,2.808-5.526,4.195c-0.765,0.567-1.56,1.134-2.324,1.701c-1.985,1.446-3.969,2.892-5.981,4.309
c-0.708,0.481-1.418,0.992-2.125,1.474c-2.127,1.475-4.281,2.948-6.436,4.395c-0.68,0.453-1.361,0.878-2.013,1.332
c-2.324,1.531-4.677,3.033-7.03,4.507c-0.51,0.312-0.992,0.624-1.502,0.935c-2.41,1.504-4.876,3.006-7.342,4.479
c-0.425,0.255-0.879,0.51-1.305,0.765c-2.551,1.504-5.158,2.978-7.767,4.451l-0.34,0.198l-0.028,0.028
c-5.244,2.92-10.545,5.727-15.959,8.476l-0.736,0.369h-0.029l-1.105,0.567h-0.027l-0.143,0.084l-0.51,0.256l-0.624,0.312
c-2.948,1.445-5.896,2.892-8.901,4.28l-0.623,0.283c-3.033,1.418-6.095,2.807-9.185,4.166l-0.396,0.172
c-2.269,0.992-4.536,1.984-6.805,2.919l-0.255,0.112l-0.453,0.199l-0.596,0.228l-0.056,0.056
c-0.539,0.199-1.049,0.426-1.588,0.653c-3.288-1.361-6.549-2.75-9.779-4.167l-0.284-0.114c-3.062-1.36-6.123-2.749-9.127-4.138
l-0.964-0.454c-2.778-1.304-5.499-2.636-8.249-3.97c-0.538-0.282-1.105-0.565-1.672-0.85c-2.466-1.219-4.904-2.466-7.343-3.742
c-0.793-0.425-1.615-0.85-2.408-1.274c-2.211-1.163-4.395-2.354-6.577-3.544c-0.907-0.51-1.814-1.021-2.749-1.56
c-178.016-100.204-251.944-311.754-236.467-659.707l-53.547-10.997l-0.396,8.616c-12.132,273.033,20.098,591.677,290.41,722.978
v1596.698h98.305V779.622c43.512-21.146,80.844-47.14,112.848-77.018v-78.661C1907.561,624.794,1906.881,625.616,1906.2,626.438
z M922.21,542.391l32.031,23.612l32.031-23.612c164.92-121.55,231.817-332.362,242.362-529.483l-53.519-10.999
c-10.262,226.347-91.644,401.755-220.875,497.027C825.01,403.663,743.627,228.255,733.366,1.908l-53.519,10.999
C690.394,210.028,757.29,420.841,922.21,542.391z M0.226,2592.421h1656.001v-180H0.226V2592.421z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_URL">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#F25100" d="
M113.089,779.622c-43.512-21.146-80.873-47.141-112.848-77.018v-78.66c0.681,0.85,1.361,1.672,2.041,2.494
c1.673,2.012,3.345,3.996,5.046,5.98c0.453,0.539,0.935,1.077,1.389,1.588c1.701,1.955,3.431,3.911,5.159,5.811
c0.538,0.596,1.049,1.162,1.559,1.729c1.701,1.814,3.373,3.628,5.074,5.414c0.822,0.851,1.645,1.701,2.467,2.552
c1.416,1.502,2.891,2.947,4.336,4.422c0.965,0.963,1.929,1.928,2.92,2.862c1.332,1.332,2.693,2.636,4.054,3.912
c1.106,1.077,2.239,2.126,3.374,3.175c1.359,1.275,2.721,2.522,4.109,3.771c1.305,1.161,2.608,2.323,3.912,3.458
c1.19,1.049,2.381,2.068,3.571,3.09c1.39,1.189,2.808,2.381,4.224,3.57c1.105,0.937,2.211,1.844,3.346,2.75
c1.559,1.248,3.117,2.523,4.705,3.742c0.992,0.793,1.984,1.588,3.005,2.353c1.813,1.418,3.685,2.835,5.556,4.224
c0.766,0.567,1.502,1.106,2.268,1.672c1.984,1.446,3.998,2.893,6.01,4.31c0.709,0.481,1.389,0.991,2.098,1.474
c2.126,1.475,4.309,2.948,6.491,4.395c0.651,0.453,1.304,0.879,1.983,1.332c2.326,1.531,4.678,3.033,7.06,4.535
c0.481,0.312,0.963,0.596,1.444,0.907c2.438,1.502,4.904,3.004,7.371,4.479c0.426,0.254,0.851,0.51,1.275,0.765
c2.579,1.502,5.188,2.976,7.795,4.45l0.34,0.199l0.029,0.027h0.027l0.029,0.028h0.028c5.953,3.345,12.047,6.548,18.255,9.638
l0.085,0.029l0.142,0.085l0.567,0.283c2.919,1.446,5.896,2.891,8.9,4.28l0.596,0.283c3.033,1.418,6.122,2.807,9.212,4.168
l0.397,0.17c2.353,1.049,4.733,2.068,7.114,3.061l0.028,0.027l0.539,0.199l0.255,0.113l0.313,0.143
c0.482,0.198,0.992,0.396,1.502,0.623c0.51-0.227,0.992-0.425,1.503-0.623l0.141-0.058l0.454-0.198l0.368-0.17l0.481-0.197
l0.397-0.172l0.454-0.17l0.34-0.141l0.396-0.171l0.652-0.283h0.028c16.696-7.144,32.599-15.08,47.735-23.812
c10.289-5.924,20.24-12.217,29.793-18.906c2.806-1.928,5.555-3.912,8.305-5.953c5.471-4.025,10.828-8.191,16.044-12.501
c4.961-4.054,9.78-8.248,14.515-12.529c0.424-0.396,0.877-0.793,1.303-1.19c3.572-3.287,7.086-6.633,10.545-10.063
c3.629-3.572,7.199-7.199,10.687-10.941c2.636-2.807,5.216-5.67,7.796-8.59c5.952-6.774,11.706-13.775,17.291-21.005
c2.551-3.345,5.102-6.718,7.568-10.176c2.041-2.806,4.054-5.669,6.01-8.562c3.23-4.704,6.35-9.523,9.411-14.428
c2.579-4.109,5.13-8.276,7.597-12.5c2.438-4.195,4.791-8.447,7.114-12.757c2.863-5.272,5.642-10.601,8.334-16.071
c2.155-4.338,4.224-8.76,6.265-13.211c2.183-4.705,4.28-9.496,6.321-14.343c1.929-4.563,3.827-9.128,5.669-13.805
c9.838-25.115,18.313-51.987,25.428-80.646c2.041-8.191,3.969-16.498,5.782-25.002c5.442-25.427,9.894-52.186,13.38-80.276
c1.162-9.384,2.211-18.879,3.174-28.545c0.482-4.848,0.908-9.724,1.332-14.628c0.427-4.903,0.822-9.863,1.191-14.824
c0.368-4.989,0.709-10.006,1.02-15.08c0.313-5.074,0.597-10.148,0.852-15.307c0.794-15.393,1.332-31.153,1.645-47.254
c0.084-5.357,0.17-10.772,0.227-16.215c0.027-5.442,0.056-10.941,0.056-16.469c0-5.5-0.028-11.056-0.085-16.668
c-0.056-5.613-0.141-11.225-0.255-16.923c-0.085-5.669-0.228-11.396-0.397-17.15c-0.141-5.754-0.34-11.537-0.537-17.376
c-0.228-5.839-0.454-11.707-0.737-17.631L501.407,48l0.396,8.617c12.133,273.034-20.127,591.705-290.41,722.977v1596.699h-98.305
V779.622z M1906.2,626.438c-1.673,2.04-3.401,4.053-5.131,6.066c-0.426,0.481-0.851,0.991-1.275,1.502
c-1.729,1.955-3.487,3.912-5.244,5.867c-0.482,0.539-0.992,1.077-1.475,1.645c-1.7,1.843-3.401,3.656-5.131,5.471
c-0.793,0.822-1.559,1.645-2.353,2.438c-1.474,1.531-2.948,3.033-4.45,4.508c-0.935,0.963-1.898,1.898-2.863,2.863
c-1.36,1.304-2.721,2.636-4.082,3.939c-1.104,1.049-2.238,2.098-3.345,3.118c-1.389,1.304-2.778,2.551-4.167,3.827
c-1.274,1.134-2.551,2.267-3.854,3.4c-1.19,1.049-2.409,2.099-3.628,3.147c-1.39,1.19-2.778,2.353-4.195,3.543
c-1.106,0.907-2.24,1.843-3.345,2.75c-1.56,1.247-3.118,2.494-4.678,3.741c-1.021,0.794-2.013,1.588-3.034,2.353
c-1.842,1.418-3.655,2.808-5.526,4.195c-0.765,0.567-1.56,1.134-2.324,1.701c-1.985,1.446-3.969,2.892-5.981,4.309
c-0.708,0.481-1.418,0.992-2.125,1.474c-2.127,1.475-4.281,2.948-6.436,4.395c-0.68,0.453-1.361,0.878-2.013,1.332
c-2.324,1.531-4.677,3.033-7.03,4.507c-0.51,0.312-0.992,0.624-1.502,0.935c-2.41,1.504-4.876,3.006-7.342,4.479
c-0.425,0.255-0.879,0.51-1.305,0.765c-2.551,1.504-5.158,2.978-7.767,4.451l-0.34,0.198l-0.028,0.028
c-5.244,2.92-10.545,5.727-15.959,8.476l-0.736,0.369h-0.029l-1.105,0.567h-0.027l-0.143,0.084l-0.51,0.256l-0.624,0.312
c-2.948,1.445-5.896,2.892-8.901,4.28l-0.623,0.283c-3.033,1.418-6.095,2.807-9.185,4.166l-0.396,0.172
c-2.269,0.992-4.536,1.984-6.805,2.919l-0.255,0.112l-0.453,0.199l-0.596,0.228l-0.056,0.056
c-0.539,0.199-1.049,0.426-1.588,0.653c-3.288-1.361-6.549-2.75-9.779-4.167l-0.284-0.114c-3.062-1.36-6.123-2.749-9.127-4.138
l-0.964-0.454c-2.778-1.304-5.499-2.636-8.249-3.97c-0.538-0.282-1.105-0.565-1.672-0.85c-2.466-1.219-4.904-2.466-7.343-3.742
c-0.793-0.425-1.615-0.85-2.408-1.274c-2.211-1.163-4.395-2.354-6.577-3.544c-0.907-0.51-1.814-1.021-2.749-1.56
c-178.016-100.204-251.944-311.754-236.467-659.707l-53.547-10.997l-0.396,8.616c-12.132,273.033,20.098,591.677,290.41,722.978
v1596.698h98.305V779.622c43.512-21.146,80.844-47.14,112.848-77.018v-78.661C1907.561,624.794,1906.881,625.616,1906.2,626.438z
M922.21,542.391l32.031,23.612l32.031-23.612c164.92-121.55,231.817-332.362,242.362-529.483l-53.519-10.999
c-10.262,226.347-91.644,401.755-220.875,497.027C825.01,403.663,743.627,228.255,733.366,1.908l-53.519,10.999
C690.394,210.028,757.29,420.841,922.21,542.391z M0.226,2592.421h1656.001v-180H0.226V2592.421z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M1758.657,2139.912h24.775v24.775h-24.775V2139.912z M174.657,2139.912h24.775v24.775
h-24.775V2139.912z M227.948,771.146v1605.147h-16.555v-1596.7C217.007,776.872,222.507,774.038,227.948,771.146
M113.089,2376.294H96.534V771.204c5.414,2.891,10.941,5.696,16.555,8.418V2376.294z M96.534,708.897L96.534,708.897
l0.227,0.114L96.534,708.897z M174.657,872.429h24.775v24.775h-24.775V872.429z M149.825,847.653h24.775v24.775h-24.775V847.653
z M125.052,872.429h24.774v24.775h-24.774V872.429z M149.825,897.204h24.775v24.774h-24.775V897.204z M174.657,1030.829h24.775
v24.774h-24.775V1030.829z M149.825,1006.054h24.775v24.775h-24.775V1006.054z M125.052,1030.829h24.774v24.774h-24.774
V1030.829z M149.825,1055.604h24.775v24.774h-24.775V1055.604z M174.657,1188.208h24.775v24.746h-24.775V1188.208z
M149.825,1163.434h24.775v24.774h-24.775V1163.434z M125.052,1188.208h24.774v24.746h-24.774V1188.208z M149.825,1212.954
h24.775v24.775h-24.775V1212.954z M174.657,1346.608h24.775v24.746h-24.775V1346.608z M149.825,1321.834h24.775v24.774h-24.775
V1321.834z M125.052,1346.608h24.774v24.746h-24.774V1346.608z M149.825,1371.354h24.775v24.775h-24.775V1371.354z
M174.657,1495.002h24.775v24.774h-24.775V1495.002z M149.825,1470.227h24.775v24.775h-24.775V1470.227z M125.052,1495.002
h24.774v24.774h-24.774V1495.002z M149.825,1519.776h24.775v24.775h-24.775V1519.776z M174.657,1653.401h24.775v24.775h-24.775
V1653.401z M149.825,1628.628h24.775v24.774h-24.775V1628.628z M125.052,1653.401h24.774v24.775h-24.774V1653.401z
M149.825,1678.177h24.775v24.774h-24.775V1678.177z M174.657,1810.781h24.775v24.775h-24.775V1810.781z M149.825,1786.007
h24.775v24.774h-24.775V1786.007z M125.052,1810.781h24.774v24.775h-24.774V1810.781z M149.825,1835.557h24.775v24.775h-24.775
V1835.557z M174.657,1969.182h24.775v24.775h-24.775V1969.182z M149.825,1944.406h24.775v24.775h-24.775V1944.406z
M125.052,1969.182h24.774v24.775h-24.774V1969.182z M149.825,1993.956h24.775v24.775h-24.775V1993.956z M149.825,2115.138
h24.775v24.774h-24.775V2115.138z M125.052,2139.912h24.774v24.775h-24.774V2139.912z M149.825,2164.687h24.775v24.775h-24.775
V2164.687z M1811.948,708.897L1811.948,708.897l-0.198,0.114L1811.948,708.897z M1811.948,771.204v1605.09h-16.554V779.622
C1801.006,776.9,1806.534,774.095,1811.948,771.204 M1697.088,2376.294h-16.554V771.146c5.414,2.892,10.941,5.726,16.554,8.447
V2376.294z M1758.657,872.429h24.775v24.775h-24.775V872.429z M1733.825,847.653h24.775v24.775h-24.775V847.653z
M1709.05,872.429h24.775v24.775h-24.775V872.429z M1733.825,897.204h24.775v24.774h-24.775V897.204z M1758.657,1030.829h24.775
v24.774h-24.775V1030.829z M1733.825,1006.054h24.775v24.775h-24.775V1006.054z M1709.05,1030.829h24.775v24.774h-24.775
V1030.829z M1733.825,1055.604h24.775v24.774h-24.775V1055.604z M1758.657,1188.208h24.775v24.746h-24.775V1188.208z
M1733.825,1163.434h24.775v24.774h-24.775V1163.434z M1709.05,1188.208h24.775v24.746h-24.775V1188.208z M1733.825,1212.954
h24.775v24.775h-24.775V1212.954z M1758.657,1346.608h24.775v24.746h-24.775V1346.608z M1733.825,1321.834h24.775v24.774
h-24.775V1321.834z M1709.05,1346.608h24.775v24.746h-24.775V1346.608z M1733.825,1371.354h24.775v24.775h-24.775V1371.354z
M1758.657,1495.002h24.775v24.774h-24.775V1495.002z M1733.825,1470.227h24.775v24.775h-24.775V1470.227z M1709.05,1495.002
h24.775v24.774h-24.775V1495.002z M1733.825,1519.776h24.775v24.775h-24.775V1519.776z M1758.657,1653.401h24.775v24.775
h-24.775V1653.401z M1733.825,1628.628h24.775v24.774h-24.775V1628.628z M1709.05,1653.401h24.775v24.775h-24.775V1653.401z
M1733.825,1678.177h24.775v24.774h-24.775V1678.177z M1758.657,1810.781h24.775v24.775h-24.775V1810.781z M1733.825,1786.007
h24.775v24.774h-24.775V1786.007z M1709.05,1810.781h24.775v24.775h-24.775V1810.781z M1733.825,1835.557h24.775v24.775h-24.775
V1835.557z M1758.657,1969.182h24.775v24.775h-24.775V1969.182z M1733.825,1944.406h24.775v24.775h-24.775V1944.406z
M1709.05,1969.182h24.775v24.775h-24.775V1969.182z M1733.825,1993.956h24.775v24.775h-24.775V1993.956z M1733.825,2115.138
h24.775v24.774h-24.775V2115.138z M1709.05,2139.912h24.775v24.775h-24.775V2139.912z M1733.825,2164.687h24.775v24.775h-24.775
V2164.687z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_URL">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#010149" d="
M1758.657,2139.912h24.775v24.775h-24.775V2139.912z M174.657,2139.912h24.775v24.775h-24.775V2139.912z M227.948,771.146
v1605.147h-16.555v-1596.7C217.007,776.872,222.507,774.038,227.948,771.146 M113.089,2376.294H96.534V771.204
c5.414,2.891,10.941,5.696,16.555,8.418V2376.294z M96.534,708.897L96.534,708.897l0.227,0.114L96.534,708.897z M174.657,872.429
h24.775v24.775h-24.775V872.429z M149.825,847.653h24.775v24.775h-24.775V847.653z M125.052,872.429h24.774v24.775h-24.774
V872.429z M149.825,897.204h24.775v24.774h-24.775V897.204z M174.657,1030.829h24.775v24.774h-24.775V1030.829z
M149.825,1006.054h24.775v24.775h-24.775V1006.054z M125.052,1030.829h24.774v24.774h-24.774V1030.829z M149.825,1055.604
h24.775v24.774h-24.775V1055.604z M174.657,1188.208h24.775v24.746h-24.775V1188.208z M149.825,1163.434h24.775v24.774h-24.775
V1163.434z M125.052,1188.208h24.774v24.746h-24.774V1188.208z M149.825,1212.954h24.775v24.775h-24.775V1212.954z
M174.657,1346.608h24.775v24.746h-24.775V1346.608z M149.825,1321.834h24.775v24.774h-24.775V1321.834z M125.052,1346.608
h24.774v24.746h-24.774V1346.608z M149.825,1371.354h24.775v24.775h-24.775V1371.354z M174.657,1495.002h24.775v24.774h-24.775
V1495.002z M149.825,1470.227h24.775v24.775h-24.775V1470.227z M125.052,1495.002h24.774v24.774h-24.774V1495.002z
M149.825,1519.776h24.775v24.775h-24.775V1519.776z M174.657,1653.401h24.775v24.775h-24.775V1653.401z M149.825,1628.628
h24.775v24.774h-24.775V1628.628z M125.052,1653.401h24.774v24.775h-24.774V1653.401z M149.825,1678.177h24.775v24.774h-24.775
V1678.177z M174.657,1810.781h24.775v24.775h-24.775V1810.781z M149.825,1786.007h24.775v24.774h-24.775V1786.007z
M125.052,1810.781h24.774v24.775h-24.774V1810.781z M149.825,1835.557h24.775v24.775h-24.775V1835.557z M174.657,1969.182
h24.775v24.775h-24.775V1969.182z M149.825,1944.406h24.775v24.775h-24.775V1944.406z M125.052,1969.182h24.774v24.775h-24.774
V1969.182z M149.825,1993.956h24.775v24.775h-24.775V1993.956z M149.825,2115.138h24.775v24.774h-24.775V2115.138z
M125.052,2139.912h24.774v24.775h-24.774V2139.912z M149.825,2164.687h24.775v24.775h-24.775V2164.687z M1811.948,708.897
L1811.948,708.897l-0.198,0.114L1811.948,708.897z M1811.948,771.204v1605.09h-16.554V779.622
C1801.006,776.9,1806.534,774.095,1811.948,771.204 M1697.088,2376.294h-16.554V771.146c5.414,2.892,10.941,5.726,16.554,8.447
V2376.294z M1758.657,872.429h24.775v24.775h-24.775V872.429z M1733.825,847.653h24.775v24.775h-24.775V847.653z
M1709.05,872.429h24.775v24.775h-24.775V872.429z M1733.825,897.204h24.775v24.774h-24.775V897.204z M1758.657,1030.829h24.775
v24.774h-24.775V1030.829z M1733.825,1006.054h24.775v24.775h-24.775V1006.054z M1709.05,1030.829h24.775v24.774h-24.775
V1030.829z M1733.825,1055.604h24.775v24.774h-24.775V1055.604z M1758.657,1188.208h24.775v24.746h-24.775V1188.208z
M1733.825,1163.434h24.775v24.774h-24.775V1163.434z M1709.05,1188.208h24.775v24.746h-24.775V1188.208z M1733.825,1212.954
h24.775v24.775h-24.775V1212.954z M1758.657,1346.608h24.775v24.746h-24.775V1346.608z M1733.825,1321.834h24.775v24.774h-24.775
V1321.834z M1709.05,1346.608h24.775v24.746h-24.775V1346.608z M1733.825,1371.354h24.775v24.775h-24.775V1371.354z
M1758.657,1495.002h24.775v24.774h-24.775V1495.002z M1733.825,1470.227h24.775v24.775h-24.775V1470.227z M1709.05,1495.002
h24.775v24.774h-24.775V1495.002z M1733.825,1519.776h24.775v24.775h-24.775V1519.776z M1758.657,1653.401h24.775v24.775h-24.775
V1653.401z M1733.825,1628.628h24.775v24.774h-24.775V1628.628z M1709.05,1653.401h24.775v24.775h-24.775V1653.401z
M1733.825,1678.177h24.775v24.774h-24.775V1678.177z M1758.657,1810.781h24.775v24.775h-24.775V1810.781z M1733.825,1786.007
h24.775v24.774h-24.775V1786.007z M1709.05,1810.781h24.775v24.775h-24.775V1810.781z M1733.825,1835.557h24.775v24.775h-24.775
V1835.557z M1758.657,1969.182h24.775v24.775h-24.775V1969.182z M1733.825,1944.406h24.775v24.775h-24.775V1944.406z
M1709.05,1969.182h24.775v24.775h-24.775V1969.182z M1733.825,1993.956h24.775v24.775h-24.775V1993.956z M1733.825,2115.138
h24.775v24.774h-24.775V2115.138z M1709.05,2139.912h24.775v24.775h-24.775V2139.912z M1733.825,2164.687h24.775v24.775h-24.775
V2164.687z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M1733.825,1810.781h24.775v24.775h-24.775V1810.781z M1733.825,2164.688h24.775v-24.775
h-24.775V2164.688z M1733.825,1678.177h24.775v-24.775h-24.775V1678.177z M1733.825,872.429v24.775h24.775v-24.775H1733.825z
M1733.825,1993.957h24.775v-24.775h-24.775V1993.957z M1733.825,1212.954h24.775v-24.746h-24.775V1212.954z M1733.825,1519.776
h24.775v-24.774h-24.775V1519.776z M1733.825,1371.354h24.775v-24.746h-24.775V1371.354z M1733.825,1055.604h24.775v-24.774
h-24.775V1055.604z M149.825,1835.557h24.775v-24.775h-24.775V1835.557z M149.825,1678.177h24.775v-24.775h-24.775V1678.177z
M149.825,1519.776h24.775v-24.774h-24.775V1519.776z M149.825,2164.688h24.775v-24.775h-24.775V2164.688z M149.825,1993.957
h24.775v-24.775h-24.775V1993.957z M149.825,1371.354h24.775v-24.746h-24.775V1371.354z M149.825,897.204h24.775v-24.775
h-24.775V897.204z M149.825,1055.604h24.775v-24.774h-24.775V1055.604z M149.825,1212.954h24.775v-24.746h-24.775V1212.954z"/>
</defs>
<clipPath id="Front_Trim_4_Clippath_URL">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_URL)" fill="#FF6100" d="M1733.825,1810.781h24.775v24.775h-24.775
V1810.781z M1733.825,2164.688h24.775v-24.775h-24.775V2164.688z M1733.825,1678.177h24.775v-24.775h-24.775V1678.177z
M1733.825,872.429v24.775h24.775v-24.775H1733.825z M1733.825,1993.957h24.775v-24.775h-24.775V1993.957z M1733.825,1212.954
h24.775v-24.746h-24.775V1212.954z M1733.825,1519.776h24.775v-24.774h-24.775V1519.776z M1733.825,1371.354h24.775v-24.746
h-24.775V1371.354z M1733.825,1055.604h24.775v-24.774h-24.775V1055.604z M149.825,1835.557h24.775v-24.775h-24.775V1835.557z
M149.825,1678.177h24.775v-24.775h-24.775V1678.177z M149.825,1519.776h24.775v-24.774h-24.775V1519.776z M149.825,2164.688
h24.775v-24.775h-24.775V2164.688z M149.825,1993.957h24.775v-24.775h-24.775V1993.957z M149.825,1371.354h24.775v-24.746
h-24.775V1371.354z M149.825,897.204h24.775v-24.775h-24.775V897.204z M149.825,1055.604h24.775v-24.774h-24.775V1055.604z
M149.825,1212.954h24.775v-24.746h-24.775V1212.954z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="1247.522" y="2016.294" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="882.241" y="177.384" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="450.241" y="349.285" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -0,0 +1,467 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="3708.582px" height="2715.931px" viewBox="0 0 3708.582 2715.931" enable-background="new 0 0 3708.582 2715.931"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M3155.344,0.31l285.505,58.706c-12.415,268.469,32.968,579.741,267.619,707.641v1734.435
H2160.469V766.656c234.623-127.899,280.034-439.172,267.59-707.641L2713.593,0.31
c59.045,112.337,90.312,106.044,220.875,104.995C3065.032,106.354,3096.298,112.646,3155.344,0.31z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_URL">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.227" stroke-miterlimit="10" d="
M3155.344,0.31l285.505,58.706c-12.415,268.469,32.968,579.741,267.619,707.641v1734.435H2160.469V766.656
c234.623-127.899,280.034-439.172,267.59-707.641L2713.593,0.31c59.045,112.337,90.312,106.044,220.875,104.995
C3065.032,106.354,3096.298,112.646,3155.344,0.31z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M3583.744,2353.292l80.531,94.706l44.192-1.843 M2239.725,712.571l246.729,65.083
l0.765,0.879l-232.81,11.026l-44.815-52.695C2220.081,729.183,2230.115,721.075,2239.725,712.571 M3708.468,2167.736v35.064
l-65.423-76.28l0.027,0.028l-243.155,10.517l-80.447-94.649l323.433,83.935l-355.832-414.992l0.34,0.396l-239.953,10.688
l-80.362-94.507l319.976,83.423l-710.957-829.135l-233.575,11l-80.164-94.281l313.03,82.46l0.481,0.539L2333.807,599.61
l-2.948,0.907c4.621-7.824,9.015-15.817,13.267-23.925L3708.468,2167.736z M3708.468,2224.032v7.229l-220.422,9.439
l-80.476-94.649L3708.468,2224.032z M3708.468,2304.734v33.987l-132.321,5.642l-80.504-94.706L3708.468,2304.734z
M3708.468,2466.366v33.646l-36.623-43.114L3708.468,2466.366z M2160.469,2501.09V767.847
c11.849-6.379,23.215-13.209,34.129-20.494l62.021,81.467L3678.705,2501.09H2160.469z M2526.647,1109.818l80.222,94.364
l235.983-10.885l-0.567-0.651L2526.647,1109.818z M3055.195,1731.541l80.392,94.564l240.746-10.63l-0.313-0.369
L3055.195,1731.541z M3708.468,2385.522l-124.724-32.23 M3231.369,1938.782l80.447,94.62l242.334-10.545l-0.198-0.255
L3231.369,1938.782z M3143.297,1835.175l80.39,94.564l241.569-10.573l-0.284-0.312L3143.297,1835.175z M2879.022,1524.3
l80.334,94.508l239.159-10.743l-0.396-0.454L2879.022,1524.3z M2790.922,1420.694l80.306,94.45l238.365-10.772l-0.425-0.51
L2790.922,1420.694z M2702.85,1317.06l80.277,94.422l237.543-10.801l-0.482-0.566L2702.85,1317.06z M2614.749,1213.425
l80.249,94.422l236.777-10.856l-0.539-0.624L2614.749,1213.425z M2438.576,1006.183l80.191,94.338l235.162-10.913l-0.595-0.709
L2438.576,1006.183z M2350.475,902.577l80.164,94.309l234.396-10.97l-0.652-0.766L2350.475,902.577z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_URL">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M3583.744,2353.292l80.531,94.706l44.192-1.843 M2239.725,712.571l246.729,65.083l0.765,0.879l-232.81,11.026l-44.815-52.695
C2220.081,729.183,2230.115,721.075,2239.725,712.571 M3708.468,2167.736v35.064l-65.423-76.28l0.027,0.028l-243.155,10.517
l-80.447-94.649l323.433,83.935l-355.832-414.992l0.34,0.396l-239.953,10.688l-80.362-94.507l319.976,83.423l-710.957-829.135
l-233.575,11l-80.164-94.281l313.03,82.46l0.481,0.539L2333.807,599.61l-2.948,0.907c4.621-7.824,9.015-15.817,13.267-23.925
L3708.468,2167.736z M3708.468,2224.032v7.229l-220.422,9.439l-80.476-94.649L3708.468,2224.032z M3708.468,2304.734v33.987
l-132.321,5.642l-80.504-94.706L3708.468,2304.734z M3708.468,2466.366v33.646l-36.623-43.114L3708.468,2466.366z
M2160.469,2501.09V767.847c11.849-6.379,23.215-13.209,34.129-20.494l62.021,81.467L3678.705,2501.09H2160.469z
M2526.647,1109.818l80.222,94.364l235.983-10.885l-0.567-0.651L2526.647,1109.818z M3055.195,1731.541l80.392,94.564
l240.746-10.63l-0.313-0.369L3055.195,1731.541z M3708.468,2385.522l-124.724-32.23 M3231.369,1938.782l80.447,94.62
l242.334-10.545l-0.198-0.255L3231.369,1938.782z M3143.297,1835.175l80.39,94.564l241.569-10.573l-0.284-0.312
L3143.297,1835.175z M2879.022,1524.3l80.334,94.508l239.159-10.743l-0.396-0.454L2879.022,1524.3z M2790.922,1420.694
l80.306,94.45l238.365-10.772l-0.425-0.51L2790.922,1420.694z M2702.85,1317.06l80.277,94.422l237.543-10.801l-0.482-0.566
L2702.85,1317.06z M2614.749,1213.425l80.249,94.422l236.777-10.856l-0.539-0.624L2614.749,1213.425z M2438.576,1006.183
l80.191,94.338l235.162-10.913l-0.595-0.709L2438.576,1006.183z M2350.475,902.577l80.164,94.309l234.396-10.97l-0.652-0.766
L2350.475,902.577z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M3708.469,827.317c-220.479-103.181-303.789-342.057-320.201-588.104
c-4.055-60.747-4.168-121.862-1.361-182.693l0.396-8.504l53.547,10.999c-0.198,4.563-0.397,9.127-0.567,13.719
c-0.056,1.474-0.113,2.948-0.17,4.422c-0.113,3.118-0.198,6.208-0.313,9.326c-0.056,1.786-0.085,3.601-0.141,5.386
c-0.086,2.835-0.17,5.669-0.228,8.532c-0.027,1.871-0.084,3.742-0.113,5.613c-0.057,2.806-0.113,5.584-0.141,8.39
c-0.029,1.9-0.058,3.799-0.086,5.698c-0.028,2.862-0.028,5.726-0.057,8.589c0,1.814-0.028,3.628-0.028,5.443v10.261
c0.028,1.247,0,2.466,0.028,3.714c0.028,4.563,0.057,9.127,0.143,13.691c0.027,1.785,0.056,3.57,0.112,5.386
c0.028,2.863,0.085,5.697,0.17,8.56c0.058,2.099,0.113,4.196,0.17,6.293c0.058,2.58,0.143,5.159,0.228,7.739
c0.085,2.183,0.17,4.365,0.255,6.576c0.085,2.466,0.198,4.961,0.283,7.427c0.113,2.269,0.198,4.507,0.313,6.775
c0.113,2.408,0.255,4.818,0.368,7.199c0.143,2.324,0.255,4.621,0.396,6.945c0.142,2.381,0.283,4.762,0.453,7.144
c0.143,2.296,0.284,4.592,0.426,6.916c0.198,2.75,0.426,5.5,0.623,8.221c0.313,4.11,0.625,8.192,0.992,12.274
c0.17,2.153,0.34,4.309,0.539,6.463c0.228,2.578,0.482,5.131,0.737,7.71c0.198,2.041,0.397,4.054,0.595,6.065
c0.256,2.665,0.539,5.273,0.822,7.909c0.227,1.956,0.425,3.912,0.652,5.868c0.312,2.664,0.623,5.357,0.936,8.05
c0.227,1.842,0.453,3.714,0.708,5.556c0.34,2.778,0.681,5.527,1.049,8.307c0.228,1.615,0.453,3.259,0.681,4.902
c0.396,2.978,0.794,5.926,1.248,8.901c0.084,0.624,0.17,1.248,0.255,1.843c1.134,7.625,2.353,15.25,3.628,22.819
c0.057,0.312,0.113,0.652,0.17,0.992c0.539,3.203,1.105,6.378,1.701,9.581c0.227,1.275,0.453,2.579,0.68,3.854
c0.566,3.062,1.163,6.123,1.758,9.156c0.255,1.39,0.538,2.75,0.793,4.138c0.624,3.033,1.248,6.067,1.871,9.101
c0.284,1.304,0.567,2.636,0.822,3.939c0.681,3.118,1.361,6.236,2.07,9.354c0.226,1.049,0.481,2.098,0.707,3.146
c0.767,3.373,1.56,6.719,2.354,10.092l0.085,0.255c2.863,11.962,6.01,23.782,9.383,35.462c0.085,0.34,0.17,0.68,0.283,1.02
c0.992,3.43,2.013,6.803,3.033,10.176c0.255,0.822,0.511,1.645,0.737,2.467c1.021,3.289,2.041,6.52,3.09,9.779
c0.283,0.851,0.566,1.701,0.85,2.551c1.078,3.289,2.155,6.576,3.289,9.837c0.227,0.651,0.453,1.304,0.68,1.984
c6.521,18.851,13.776,37.247,21.827,55.105c0.142,0.312,0.283,0.624,0.425,0.964c1.502,3.316,3.033,6.605,4.592,9.865
c0.228,0.537,0.482,1.048,0.737,1.558c1.531,3.261,3.118,6.492,4.705,9.695c0.228,0.425,0.454,0.85,0.653,1.276
c10.629,21.117,22.478,41.385,35.603,60.633c0.198,0.283,0.425,0.595,0.623,0.878c2.069,3.005,4.167,6.01,6.293,8.958
l0.681,0.935c2.183,3.033,4.394,6.038,6.662,9.015l0.027,0.028c11.85,15.619,24.69,30.416,38.523,44.362
c0.17,0.17,0.312,0.34,0.481,0.51c2.608,2.607,5.244,5.188,7.909,7.739l0.878,0.821c2.665,2.523,5.386,5.047,8.136,7.513
c0.17,0.142,0.313,0.282,0.482,0.425c14.57,13.096,30.189,25.257,46.885,36.396c0.198,0.142,0.397,0.256,0.596,0.397
c3.09,2.069,6.235,4.082,9.383,6.065c0.481,0.283,0.935,0.567,1.389,0.851c3.118,1.928,6.264,3.854,9.467,5.726
c0.426,0.228,0.852,0.482,1.276,0.737c3.315,1.929,6.661,3.827,10.063,5.67V827.317z M2160.469,827.317
c220.479-103.181,303.789-342.057,320.201-588.104c4.054-60.747,4.166-121.862,1.332-182.693l-0.369-8.504l-53.573,10.999
c0.226,4.563,0.425,9.127,0.595,13.719c0.057,1.474,0.113,2.948,0.141,4.422c0.114,3.118,0.228,6.208,0.342,9.326
c0.056,1.813,0.085,3.601,0.141,5.386c0.086,2.835,0.143,5.669,0.227,8.532c0.028,1.871,0.086,3.742,0.113,5.613
c0.057,2.806,0.086,5.584,0.143,8.39c0.028,1.9,0.057,3.799,0.085,5.698c0.028,2.862,0.028,5.726,0.057,8.589
c0,1.814,0.028,3.628,0.028,5.443c0,3.4,0,6.83-0.028,10.261v3.714c-0.028,4.563-0.085,9.127-0.142,13.691
c-0.028,1.785-0.086,3.57-0.113,5.386c-0.057,2.863-0.085,5.697-0.17,8.56c-0.057,2.099-0.113,4.196-0.17,6.293
c-0.085,2.58-0.143,5.159-0.228,7.739c-0.085,2.183-0.17,4.365-0.255,6.576c-0.085,2.466-0.199,4.961-0.312,7.427
c-0.085,2.269-0.198,4.507-0.284,6.775c-0.141,2.408-0.255,4.818-0.396,7.199c-0.113,2.324-0.227,4.621-0.369,6.945
c-0.141,2.381-0.282,4.762-0.452,7.144c-0.143,2.296-0.284,4.592-0.454,6.916c-0.17,2.75-0.397,5.5-0.596,8.221
c-0.312,4.11-0.651,8.192-0.991,12.274c-0.171,2.153-0.341,4.309-0.539,6.463c-0.255,2.578-0.482,5.131-0.737,7.71
c-0.198,2.041-0.396,4.054-0.595,6.065c-0.284,2.665-0.567,5.273-0.851,7.909c-0.199,1.956-0.426,3.912-0.623,5.868
c-0.313,2.664-0.625,5.357-0.937,8.05c-0.226,1.842-0.481,3.714-0.708,5.556c-0.34,2.778-0.68,5.527-1.049,8.307
c-0.228,1.615-0.454,3.259-0.68,4.902c-0.397,2.978-0.823,5.926-1.248,8.901c-0.086,0.624-0.17,1.248-0.283,1.843
c-1.106,7.625-2.325,15.25-3.601,22.819c-0.057,0.312-0.112,0.652-0.17,0.992c-0.539,3.203-1.105,6.378-1.7,9.581
c-0.228,1.275-0.455,2.579-0.681,3.854c-0.567,3.062-1.163,6.123-1.758,9.156c-0.255,1.39-0.538,2.75-0.793,4.138
c-0.624,3.033-1.248,6.067-1.871,9.101c-0.284,1.304-0.567,2.636-0.851,3.939c-0.652,3.118-1.332,6.236-2.041,9.354
c-0.227,1.049-0.482,2.098-0.709,3.146c-0.766,3.373-1.559,6.719-2.353,10.092l-0.085,0.255
c-2.863,11.962-6.01,23.782-9.383,35.462c-0.085,0.34-0.198,0.68-0.283,1.02c-0.992,3.401-2.013,6.803-3.033,10.176
l-0.766,2.467c-0.992,3.289-2.012,6.52-3.061,9.779c-0.283,0.851-0.567,1.701-0.852,2.551c-1.077,3.289-2.154,6.576-3.288,9.837
c-0.226,0.651-0.453,1.304-0.68,1.984c-6.548,18.822-13.776,37.247-21.827,55.105c-0.143,0.312-0.283,0.624-0.425,0.964
c-1.502,3.316-3.033,6.605-4.593,9.865c-0.227,0.537-0.481,1.048-0.736,1.558c-1.531,3.261-3.118,6.492-4.734,9.695
c-0.197,0.425-0.425,0.85-0.624,1.276c-10.657,21.117-22.478,41.385-35.603,60.633c-0.227,0.283-0.426,0.595-0.623,0.878
c-2.07,3.005-4.167,6.01-6.293,8.958c-0.228,0.312-0.454,0.623-0.682,0.935c-2.182,3.033-4.422,6.038-6.66,9.015l-0.028,0.028
c-11.877,15.619-24.69,30.416-38.523,44.362c-0.17,0.17-0.34,0.34-0.51,0.51c-2.58,2.607-5.216,5.188-7.881,7.739l-0.878,0.821
c-2.693,2.523-5.387,5.047-8.164,7.513c-0.143,0.142-0.313,0.282-0.454,0.425c-14.598,13.096-30.188,25.257-46.885,36.396
c-0.198,0.142-0.397,0.256-0.595,0.397c-3.091,2.041-6.236,4.082-9.411,6.065c-0.454,0.283-0.907,0.567-1.361,0.851
c-3.118,1.928-6.264,3.854-9.467,5.726c-0.427,0.228-0.852,0.482-1.304,0.737c-3.289,1.929-6.634,3.827-10.035,5.67V827.317z
M3210.393,11.619l-55.049-11.31c-59.046,112.337-90.312,106.044-220.876,104.995c-130.563,1.049-161.83,7.342-220.875-104.995
l-55.049,11.31l7.257,13.806c23.782,45.269,52.072,91.162,99.609,114.49c24.888,12.219,51.307,16.641,78.718,18.369
c29.821,1.842,60.406,1.021,90.34,1.021c29.935,0,60.492,0.821,90.341-1.021c27.41-1.729,53.829-6.15,78.689-18.369
c47.537-23.328,75.854-69.222,99.638-114.49L3210.393,11.619z"/>
</defs>
<clipPath id="Back_Trim_2_Clippath_URL">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_URL)" stroke="#FFFFFF" stroke-width="0.227" stroke-miterlimit="10" d="
M3708.469,827.317c-220.479-103.181-303.789-342.057-320.201-588.104c-4.055-60.747-4.168-121.862-1.361-182.693l0.396-8.504
l53.547,10.999c-0.198,4.563-0.397,9.127-0.567,13.719c-0.056,1.474-0.113,2.948-0.17,4.422
c-0.113,3.118-0.198,6.208-0.313,9.326c-0.056,1.786-0.085,3.601-0.141,5.386c-0.086,2.835-0.17,5.669-0.228,8.532
c-0.027,1.871-0.084,3.742-0.113,5.613c-0.057,2.806-0.113,5.584-0.141,8.39c-0.029,1.9-0.058,3.799-0.086,5.698
c-0.028,2.862-0.028,5.726-0.057,8.589c0,1.814-0.028,3.628-0.028,5.443v10.261c0.028,1.247,0,2.466,0.028,3.714
c0.028,4.563,0.057,9.127,0.143,13.691c0.027,1.785,0.056,3.57,0.112,5.386c0.028,2.863,0.085,5.697,0.17,8.56
c0.058,2.099,0.113,4.196,0.17,6.293c0.058,2.58,0.143,5.159,0.228,7.739c0.085,2.183,0.17,4.365,0.255,6.576
c0.085,2.466,0.198,4.961,0.283,7.427c0.113,2.269,0.198,4.507,0.313,6.775c0.113,2.408,0.255,4.818,0.368,7.199
c0.143,2.324,0.255,4.621,0.396,6.945c0.142,2.381,0.283,4.762,0.453,7.144c0.143,2.296,0.284,4.592,0.426,6.916
c0.198,2.75,0.426,5.5,0.623,8.221c0.313,4.11,0.625,8.192,0.992,12.274c0.17,2.153,0.34,4.309,0.539,6.463
c0.228,2.578,0.482,5.131,0.737,7.71c0.198,2.041,0.397,4.054,0.595,6.065c0.256,2.665,0.539,5.273,0.822,7.909
c0.227,1.956,0.425,3.912,0.652,5.868c0.312,2.664,0.623,5.357,0.936,8.05c0.227,1.842,0.453,3.714,0.708,5.556
c0.34,2.778,0.681,5.527,1.049,8.307c0.228,1.615,0.453,3.259,0.681,4.902c0.396,2.978,0.794,5.926,1.248,8.901
c0.084,0.624,0.17,1.248,0.255,1.843c1.134,7.625,2.353,15.25,3.628,22.819c0.057,0.312,0.113,0.652,0.17,0.992
c0.539,3.203,1.105,6.378,1.701,9.581c0.227,1.275,0.453,2.579,0.68,3.854c0.566,3.062,1.163,6.123,1.758,9.156
c0.255,1.39,0.538,2.75,0.793,4.138c0.624,3.033,1.248,6.067,1.871,9.101c0.284,1.304,0.567,2.636,0.822,3.939
c0.681,3.118,1.361,6.236,2.07,9.354c0.226,1.049,0.481,2.098,0.707,3.146c0.767,3.373,1.56,6.719,2.354,10.092l0.085,0.255
c2.863,11.962,6.01,23.782,9.383,35.462c0.085,0.34,0.17,0.68,0.283,1.02c0.992,3.43,2.013,6.803,3.033,10.176
c0.255,0.822,0.511,1.645,0.737,2.467c1.021,3.289,2.041,6.52,3.09,9.779c0.283,0.851,0.566,1.701,0.85,2.551
c1.078,3.289,2.155,6.576,3.289,9.837c0.227,0.651,0.453,1.304,0.68,1.984c6.521,18.851,13.776,37.247,21.827,55.105
c0.142,0.312,0.283,0.624,0.425,0.964c1.502,3.316,3.033,6.605,4.592,9.865c0.228,0.537,0.482,1.048,0.737,1.558
c1.531,3.261,3.118,6.492,4.705,9.695c0.228,0.425,0.454,0.85,0.653,1.276c10.629,21.117,22.478,41.385,35.603,60.633
c0.198,0.283,0.425,0.595,0.623,0.878c2.069,3.005,4.167,6.01,6.293,8.958l0.681,0.935c2.183,3.033,4.394,6.038,6.662,9.015
l0.027,0.028c11.85,15.619,24.69,30.416,38.523,44.362c0.17,0.17,0.312,0.34,0.481,0.51c2.608,2.607,5.244,5.188,7.909,7.739
l0.878,0.821c2.665,2.523,5.386,5.047,8.136,7.513c0.17,0.142,0.313,0.282,0.482,0.425c14.57,13.096,30.189,25.257,46.885,36.396
c0.198,0.142,0.397,0.256,0.596,0.397c3.09,2.069,6.235,4.082,9.383,6.065c0.481,0.283,0.935,0.567,1.389,0.851
c3.118,1.928,6.264,3.854,9.467,5.726c0.426,0.228,0.852,0.482,1.276,0.737c3.315,1.929,6.661,3.827,10.063,5.67V827.317z
M2160.469,827.317c220.479-103.181,303.789-342.057,320.201-588.104c4.054-60.747,4.166-121.862,1.332-182.693l-0.369-8.504
l-53.573,10.999c0.226,4.563,0.425,9.127,0.595,13.719c0.057,1.474,0.113,2.948,0.141,4.422c0.114,3.118,0.228,6.208,0.342,9.326
c0.056,1.813,0.085,3.601,0.141,5.386c0.086,2.835,0.143,5.669,0.227,8.532c0.028,1.871,0.086,3.742,0.113,5.613
c0.057,2.806,0.086,5.584,0.143,8.39c0.028,1.9,0.057,3.799,0.085,5.698c0.028,2.862,0.028,5.726,0.057,8.589
c0,1.814,0.028,3.628,0.028,5.443c0,3.4,0,6.83-0.028,10.261v3.714c-0.028,4.563-0.085,9.127-0.142,13.691
c-0.028,1.785-0.086,3.57-0.113,5.386c-0.057,2.863-0.085,5.697-0.17,8.56c-0.057,2.099-0.113,4.196-0.17,6.293
c-0.085,2.58-0.143,5.159-0.228,7.739c-0.085,2.183-0.17,4.365-0.255,6.576c-0.085,2.466-0.199,4.961-0.312,7.427
c-0.085,2.269-0.198,4.507-0.284,6.775c-0.141,2.408-0.255,4.818-0.396,7.199c-0.113,2.324-0.227,4.621-0.369,6.945
c-0.141,2.381-0.282,4.762-0.452,7.144c-0.143,2.296-0.284,4.592-0.454,6.916c-0.17,2.75-0.397,5.5-0.596,8.221
c-0.312,4.11-0.651,8.192-0.991,12.274c-0.171,2.153-0.341,4.309-0.539,6.463c-0.255,2.578-0.482,5.131-0.737,7.71
c-0.198,2.041-0.396,4.054-0.595,6.065c-0.284,2.665-0.567,5.273-0.851,7.909c-0.199,1.956-0.426,3.912-0.623,5.868
c-0.313,2.664-0.625,5.357-0.937,8.05c-0.226,1.842-0.481,3.714-0.708,5.556c-0.34,2.778-0.68,5.527-1.049,8.307
c-0.228,1.615-0.454,3.259-0.68,4.902c-0.397,2.978-0.823,5.926-1.248,8.901c-0.086,0.624-0.17,1.248-0.283,1.843
c-1.106,7.625-2.325,15.25-3.601,22.819c-0.057,0.312-0.112,0.652-0.17,0.992c-0.539,3.203-1.105,6.378-1.7,9.581
c-0.228,1.275-0.455,2.579-0.681,3.854c-0.567,3.062-1.163,6.123-1.758,9.156c-0.255,1.39-0.538,2.75-0.793,4.138
c-0.624,3.033-1.248,6.067-1.871,9.101c-0.284,1.304-0.567,2.636-0.851,3.939c-0.652,3.118-1.332,6.236-2.041,9.354
c-0.227,1.049-0.482,2.098-0.709,3.146c-0.766,3.373-1.559,6.719-2.353,10.092l-0.085,0.255
c-2.863,11.962-6.01,23.782-9.383,35.462c-0.085,0.34-0.198,0.68-0.283,1.02c-0.992,3.401-2.013,6.803-3.033,10.176l-0.766,2.467
c-0.992,3.289-2.012,6.52-3.061,9.779c-0.283,0.851-0.567,1.701-0.852,2.551c-1.077,3.289-2.154,6.576-3.288,9.837
c-0.226,0.651-0.453,1.304-0.68,1.984c-6.548,18.822-13.776,37.247-21.827,55.105c-0.143,0.312-0.283,0.624-0.425,0.964
c-1.502,3.316-3.033,6.605-4.593,9.865c-0.227,0.537-0.481,1.048-0.736,1.558c-1.531,3.261-3.118,6.492-4.734,9.695
c-0.197,0.425-0.425,0.85-0.624,1.276c-10.657,21.117-22.478,41.385-35.603,60.633c-0.227,0.283-0.426,0.595-0.623,0.878
c-2.07,3.005-4.167,6.01-6.293,8.958c-0.228,0.312-0.454,0.623-0.682,0.935c-2.182,3.033-4.422,6.038-6.66,9.015l-0.028,0.028
c-11.877,15.619-24.69,30.416-38.523,44.362c-0.17,0.17-0.34,0.34-0.51,0.51c-2.58,2.607-5.216,5.188-7.881,7.739l-0.878,0.821
c-2.693,2.523-5.387,5.047-8.164,7.513c-0.143,0.142-0.313,0.282-0.454,0.425c-14.598,13.096-30.188,25.257-46.885,36.396
c-0.198,0.142-0.397,0.256-0.595,0.397c-3.091,2.041-6.236,4.082-9.411,6.065c-0.454,0.283-0.907,0.567-1.361,0.851
c-3.118,1.928-6.264,3.854-9.467,5.726c-0.427,0.228-0.852,0.482-1.304,0.737c-3.289,1.929-6.634,3.827-10.035,5.67V827.317z
M3210.393,11.619l-55.049-11.31c-59.046,112.337-90.312,106.044-220.876,104.995c-130.563,1.049-161.83,7.342-220.875-104.995
l-55.049,11.31l7.257,13.806c23.782,45.269,52.072,91.162,99.609,114.49c24.888,12.219,51.307,16.641,78.718,18.369
c29.821,1.842,60.406,1.021,90.34,1.021c29.935,0,60.492,0.821,90.341-1.021c27.41-1.729,53.829-6.15,78.689-18.369
c47.537-23.328,75.854-69.222,99.638-114.49L3210.393,11.619z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Jock_Tag">
<rect x="3492.468" y="2141.091" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Prod_QR_Code">
<rect x="3461.749" y="2507.601" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="2430.468" y="159.232" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1283.13,0.31l285.505,58.706c-14.399,310.932,48.728,679.294,393.619,753.704
c62.985-13.578,116.561-37.021,162-68.09v1756.461H0.255V744.63c45.438,31.068,98.985,54.512,162,68.09
c344.862-74.41,408.018-442.772,393.59-753.704L841.379,0.31c10.261,226.346,91.644,401.754,220.876,497.027
C1191.485,402.063,1272.869,226.655,1283.13,0.31z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_URL">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_URL)" fill="none" stroke="#000000" stroke-width="0.51" stroke-miterlimit="10" d="
M1283.13,0.31l285.505,58.706c-14.399,310.932,48.728,679.294,393.619,753.704c62.985-13.578,116.561-37.021,162-68.09v1756.461
H0.255V744.63c45.438,31.068,98.985,54.512,162,68.09c344.862-74.41,408.018-442.772,393.59-753.704L841.379,0.31
c10.261,226.346,91.644,401.754,220.876,497.027C1191.485,402.063,1272.869,226.655,1283.13,0.31z"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M415.133,2353.292l-80.504,94.706l-245.564-10.375 M1759.18,712.571l-246.756,65.083
l-0.736,0.879l232.78,11.026l44.816-52.695C1778.796,729.183,1768.761,721.075,1759.18,712.571 M1654.752,576.593
c4.252,8.107,8.674,16.101,13.266,23.925l-2.947-0.907l-242.079,282.331l0.481-0.539l313.03-82.46l-80.164,94.281l-233.575-11
l-710.957,829.135l319.976-83.423l-80.363,94.507l-239.952-10.688l0.34-0.396l-355.832,414.992l323.433-83.935l-80.447,94.649
l-243.155-10.517l0.027-0.028l-88.809,103.55l324.311-84.02l-80.475,94.649l-243.979-10.46l0.143-0.142L89.12,2437.566
l-0.028,0.027l-54.453,63.496H4.591L1654.752,576.593z M1804.309,747.353c44.531,29.734,96.803,52.186,157.945,65.367
c62.986-13.578,116.561-37.021,162-68.09v1756.46H320.172L1742.257,828.819L1804.309,747.353z M289.501,2501.09H155.934
l171.127-44.191L289.501,2501.09z M1472.229,1109.818l-80.221,94.364l-235.984-10.885l0.567-0.651L1472.229,1109.818z
M943.682,1731.541l-80.362,94.564l-240.775-10.63l0.312-0.369L943.682,1731.541z M503.234,2249.657l-80.504,94.706
l-244.744-10.433l0.085-0.112L503.234,2249.657z M89.12,2437.566l326.013-84.274 M767.508,1938.782l-80.419,94.62
l-242.362-10.545l0.227-0.255L767.508,1938.782z M855.607,1835.175l-80.418,94.564l-241.568-10.573l0.283-0.312
L855.607,1835.175z M1119.854,1524.3l-80.306,94.508l-239.187-10.743l0.396-0.454L1119.854,1524.3z M1207.955,1420.694
l-80.307,94.45l-238.364-10.772l0.453-0.51L1207.955,1420.694z M1296.057,1317.06l-80.278,94.422l-237.571-10.801l0.482-0.566
L1296.057,1317.06z M1384.128,1213.425l-80.249,94.422l-236.777-10.856l0.539-0.624L1384.128,1213.425z M1560.33,1006.183
l-80.221,94.338l-235.162-10.913l0.595-0.709L1560.33,1006.183z M1648.402,902.577l-80.164,94.309l-234.397-10.97l0.681-0.766
L1648.402,902.577z"/>
</defs>
<clipPath id="Front_MainColor_Clippath_URL">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M415.133,2353.292l-80.504,94.706l-245.564-10.375 M1759.18,712.571l-246.756,65.083l-0.736,0.879l232.78,11.026l44.816-52.695
C1778.796,729.183,1768.761,721.075,1759.18,712.571 M1654.752,576.593c4.252,8.107,8.674,16.101,13.266,23.925l-2.947-0.907
l-242.079,282.331l0.481-0.539l313.03-82.46l-80.164,94.281l-233.575-11l-710.957,829.135l319.976-83.423l-80.363,94.507
l-239.952-10.688l0.34-0.396l-355.832,414.992l323.433-83.935l-80.447,94.649l-243.155-10.517l0.027-0.028l-88.809,103.55
l324.311-84.02l-80.475,94.649l-243.979-10.46l0.143-0.142L89.12,2437.566l-0.028,0.027l-54.453,63.496H4.591L1654.752,576.593z
M1804.309,747.353c44.531,29.734,96.803,52.186,157.945,65.367c62.986-13.578,116.561-37.021,162-68.09v1756.46H320.172
L1742.257,828.819L1804.309,747.353z M289.501,2501.09H155.934l171.127-44.191L289.501,2501.09z M1472.229,1109.818
l-80.221,94.364l-235.984-10.885l0.567-0.651L1472.229,1109.818z M943.682,1731.541l-80.362,94.564l-240.775-10.63l0.312-0.369
L943.682,1731.541z M503.234,2249.657l-80.504,94.706l-244.744-10.433l0.085-0.112L503.234,2249.657z M89.12,2437.566
l326.013-84.274 M767.508,1938.782l-80.419,94.62l-242.362-10.545l0.227-0.255L767.508,1938.782z M855.607,1835.175
l-80.418,94.564l-241.568-10.573l0.283-0.312L855.607,1835.175z M1119.854,1524.3l-80.306,94.508l-239.187-10.743l0.396-0.454
L1119.854,1524.3z M1207.955,1420.694l-80.307,94.45l-238.364-10.772l0.453-0.51L1207.955,1420.694z M1296.057,1317.06
l-80.278,94.422l-237.571-10.801l0.482-0.566L1296.057,1317.06z M1384.128,1213.425l-80.249,94.422l-236.777-10.856l0.539-0.624
L1384.128,1213.425z M1560.33,1006.183l-80.221,94.338l-235.162-10.913l0.595-0.709L1560.33,1006.183z M1648.402,902.577
l-80.164,94.309l-234.397-10.97l0.681-0.766L1648.402,902.577z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M0.258,2535.931h1656v180h-1656V2535.931z M2011.406,856.032
c41.442-11.906,78.945-27.921,112.848-47.424V744.63h-0.028c-1.446,1.021-2.92,2.014-4.422,2.978
c-2.438,1.644-4.904,3.231-7.399,4.819c-1.587,1.02-3.175,2.012-4.79,3.004c-2.268,1.389-4.592,2.807-6.917,4.166
c-1.955,1.164-3.939,2.298-5.953,3.459c-1.983,1.105-3.968,2.24-5.98,3.316c-2.438,1.361-4.932,2.665-7.426,3.969
c-1.674,0.879-3.346,1.758-5.047,2.608c-2.834,1.417-5.697,2.834-8.561,4.224c-1.417,0.651-2.834,1.332-4.252,1.984
c-3.203,1.502-6.463,2.977-9.751,4.393c-1.104,0.482-2.211,0.965-3.345,1.446c-3.656,1.56-7.37,3.089-11.141,4.564
c-0.793,0.311-1.587,0.622-2.381,0.935c-4.053,1.588-8.164,3.118-12.331,4.592c-0.566,0.199-1.161,0.426-1.757,0.625
c-3.77,1.332-7.597,2.607-11.424,3.854c-0.68,0.228-1.36,0.454-2.041,0.651l-0.283,0.086
c-6.888,2.211-13.918,4.252-21.062,6.179c-3.146,0.851-6.35,1.7-9.581,2.495l-0.34,0.085c-4.309,1.077-8.646,2.098-13.039,3.061
h-0.058l-0.566,0.142l-0.255,0.058l-0.34,0.056c-0.511,0.114-1.021,0.228-1.531,0.342c-5.216-1.135-10.374-2.325-15.449-3.572
l-1.077-0.283c-4.535-1.134-9.014-2.325-13.464-3.572c-1.105-0.283-2.183-0.595-3.289-0.906
c-3.684-1.078-7.341-2.184-10.969-3.317c-1.646-0.511-3.26-1.021-4.904-1.53c-301.748-97.568-358.158-444.982-344.467-740.522
l-53.546-10.999l-0.397,8.504c-2.806,60.832-2.693,121.947,1.361,182.693c18.198,272.777,118.63,536.769,397.049,616.791
v1645.058h98.305V856.032 M211.406,856.004v1645.058h-98.305V856.032C71.658,844.127,34.128,828.11,0.254,808.608v-63.978h0.029
c1.445,1.021,2.919,2.013,4.393,2.976c2.467,1.645,4.934,3.232,7.428,4.819c1.586,1.021,3.174,2.013,4.762,3.005
c2.296,1.389,4.621,2.807,6.945,4.168c1.955,1.161,3.939,2.295,5.924,3.457c1.984,1.105,3.996,2.239,6.01,3.316
c2.438,1.361,4.904,2.665,7.398,3.969c1.7,0.879,3.373,1.758,5.073,2.608c2.835,1.417,5.67,2.835,8.562,4.223
c1.416,0.653,2.834,1.333,4.252,1.985c3.203,1.502,6.463,2.976,9.75,4.393c1.106,0.482,2.211,0.964,3.346,1.446
c3.656,1.559,7.37,3.09,11.111,4.563c0.795,0.313,1.588,0.623,2.41,0.936c4.053,1.588,8.164,3.117,12.303,4.592
c0.595,0.199,1.189,0.426,1.785,0.624c4.338,1.531,8.76,3.005,13.209,4.422l0.086,0.028l0.68,0.227
c6.406,2.041,12.898,3.94,19.503,5.756h0.028l0.312,0.084l0.567,0.142l0.057,0.028c3.288,0.879,6.604,1.758,9.921,2.58
l0.368,0.084c4.309,1.077,8.646,2.099,13.04,3.063h0.028l0.595,0.141l0.255,0.058l0.342,0.057c0.51,0.113,1.02,0.228,1.529,0.34
c5.216-1.134,10.375-2.323,15.449-3.571l1.049-0.283c4.564-1.135,9.042-2.325,13.493-3.572c1.104-0.313,2.182-0.623,3.288-0.936
c3.685-1.049,7.342-2.154,10.97-3.26c1.644-0.539,3.26-1.049,4.903-1.559c301.748-97.569,358.13-444.983,344.438-740.523
l53.575-10.998l0.368,8.504c2.835,60.832,2.721,121.946-1.332,182.692C590.257,511.992,489.826,775.981,211.406,856.004
M1336.648,11.336c-10.546,197.121-77.443,407.962-242.363,529.513l-32.031,23.612l-32.031-23.612
C865.303,419.298,798.404,208.457,787.861,11.336l53.518-10.999c10.261,226.348,91.645,401.783,220.875,497.027
c129.232-95.244,210.613-270.68,220.876-497.027L1336.648,11.336z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_URL">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#F25100" d="
M0.258,2535.931h1656v180h-1656V2535.931z M2011.406,856.032c41.442-11.906,78.945-27.921,112.848-47.424V744.63h-0.028
c-1.446,1.021-2.92,2.014-4.422,2.978c-2.438,1.644-4.904,3.231-7.399,4.819c-1.587,1.02-3.175,2.012-4.79,3.004
c-2.268,1.389-4.592,2.807-6.917,4.166c-1.955,1.164-3.939,2.298-5.953,3.459c-1.983,1.105-3.968,2.24-5.98,3.316
c-2.438,1.361-4.932,2.665-7.426,3.969c-1.674,0.879-3.346,1.758-5.047,2.608c-2.834,1.417-5.697,2.834-8.561,4.224
c-1.417,0.651-2.834,1.332-4.252,1.984c-3.203,1.502-6.463,2.977-9.751,4.393c-1.104,0.482-2.211,0.965-3.345,1.446
c-3.656,1.56-7.37,3.089-11.141,4.564c-0.793,0.311-1.587,0.622-2.381,0.935c-4.053,1.588-8.164,3.118-12.331,4.592
c-0.566,0.199-1.161,0.426-1.757,0.625c-3.77,1.332-7.597,2.607-11.424,3.854c-0.68,0.228-1.36,0.454-2.041,0.651l-0.283,0.086
c-6.888,2.211-13.918,4.252-21.062,6.179c-3.146,0.851-6.35,1.7-9.581,2.495l-0.34,0.085c-4.309,1.077-8.646,2.098-13.039,3.061
h-0.058l-0.566,0.142l-0.255,0.058l-0.34,0.056c-0.511,0.114-1.021,0.228-1.531,0.342c-5.216-1.135-10.374-2.325-15.449-3.572
l-1.077-0.283c-4.535-1.134-9.014-2.325-13.464-3.572c-1.105-0.283-2.183-0.595-3.289-0.906
c-3.684-1.078-7.341-2.184-10.969-3.317c-1.646-0.511-3.26-1.021-4.904-1.53c-301.748-97.568-358.158-444.982-344.467-740.522
l-53.546-10.999l-0.397,8.504c-2.806,60.832-2.693,121.947,1.361,182.693c18.198,272.777,118.63,536.769,397.049,616.791
v1645.058h98.305V856.032 M211.406,856.004v1645.058h-98.305V856.032C71.658,844.127,34.128,828.11,0.254,808.608v-63.978h0.029
c1.445,1.021,2.919,2.013,4.393,2.976c2.467,1.645,4.934,3.232,7.428,4.819c1.586,1.021,3.174,2.013,4.762,3.005
c2.296,1.389,4.621,2.807,6.945,4.168c1.955,1.161,3.939,2.295,5.924,3.457c1.984,1.105,3.996,2.239,6.01,3.316
c2.438,1.361,4.904,2.665,7.398,3.969c1.7,0.879,3.373,1.758,5.073,2.608c2.835,1.417,5.67,2.835,8.562,4.223
c1.416,0.653,2.834,1.333,4.252,1.985c3.203,1.502,6.463,2.976,9.75,4.393c1.106,0.482,2.211,0.964,3.346,1.446
c3.656,1.559,7.37,3.09,11.111,4.563c0.795,0.313,1.588,0.623,2.41,0.936c4.053,1.588,8.164,3.117,12.303,4.592
c0.595,0.199,1.189,0.426,1.785,0.624c4.338,1.531,8.76,3.005,13.209,4.422l0.086,0.028l0.68,0.227
c6.406,2.041,12.898,3.94,19.503,5.756h0.028l0.312,0.084l0.567,0.142l0.057,0.028c3.288,0.879,6.604,1.758,9.921,2.58
l0.368,0.084c4.309,1.077,8.646,2.099,13.04,3.063h0.028l0.595,0.141l0.255,0.058l0.342,0.057c0.51,0.113,1.02,0.228,1.529,0.34
c5.216-1.134,10.375-2.323,15.449-3.571l1.049-0.283c4.564-1.135,9.042-2.325,13.493-3.572c1.104-0.313,2.182-0.623,3.288-0.936
c3.685-1.049,7.342-2.154,10.97-3.26c1.644-0.539,3.26-1.049,4.903-1.559c301.748-97.569,358.13-444.983,344.438-740.523
l53.575-10.998l0.368,8.504c2.835,60.832,2.721,121.946-1.332,182.692C590.257,511.992,489.826,775.981,211.406,856.004
M1336.648,11.336c-10.546,197.121-77.443,407.962-242.363,529.513l-32.031,23.612l-32.031-23.612
C865.303,419.298,798.404,208.457,787.861,11.336l53.518-10.999c10.261,226.348,91.645,401.783,220.875,497.027
c129.232-95.244,210.613-270.68,220.876-497.027L1336.648,11.336z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M1974.67,944.983h24.775v24.775h-24.775V944.983z M2027.961,850.987v1650.104h-131.414
V850.987c5.443,1.756,10.97,3.401,16.554,5.017v1645.059h98.307V856.032C2016.991,854.417,2022.519,852.743,2027.961,850.987
M1974.67,2212.496h24.775v24.774h-24.775V2212.496z M1949.838,2187.721h24.775v24.775h-24.775V2187.721z M1925.064,2212.496
h24.774v24.774h-24.774V2212.496z M1949.838,2237.271h24.775v24.746h-24.775V2237.271z M1974.67,2041.736h24.775v24.775h-24.775
V2041.736z M1949.838,2016.962h24.775v24.774h-24.775V2016.962z M1925.064,2041.736h24.774v24.775h-24.774V2041.736z
M1949.838,2066.511h24.775v24.775h-24.775V2066.511z M1974.67,1883.337h24.775v24.774h-24.775V1883.337z M1949.838,1858.562
h24.775v24.775h-24.775V1858.562z M1925.064,1883.337h24.774v24.774h-24.774V1883.337z M1949.838,1908.11h24.775v24.775h-24.775
V1908.11z M1974.67,1725.984h24.775v24.746h-24.775V1725.984z M1949.838,1701.211h24.775v24.774h-24.775V1701.211z
M1925.064,1725.984h24.774v24.746h-24.774V1725.984z M1949.838,1750.731h24.775v24.775h-24.775V1750.731z M1974.67,1567.557
h24.775v24.775h-24.775V1567.557z M1949.838,1542.811h24.775v24.746h-24.775V1542.811z M1925.064,1567.557h24.774v24.775
h-24.774V1567.557z M1949.838,1592.332h24.775v24.774h-24.775V1592.332z M1974.67,1419.163h24.775v24.774h-24.775V1419.163z
M1949.838,1394.389h24.775v24.775h-24.775V1394.389z M1925.064,1419.163h24.774v24.774h-24.774V1419.163z M1949.838,1443.938
h24.775v24.775h-24.775V1443.938z M1974.67,1260.763h24.775v24.775h-24.775V1260.763z M1949.838,1235.987h24.775v24.775h-24.775
V1235.987z M1925.064,1260.763h24.774v24.775h-24.774V1260.763z M1949.838,1285.538h24.775v24.774h-24.775V1285.538z
M1974.67,1103.384h24.775v24.775h-24.775V1103.384z M1949.838,1078.608h24.775v24.775h-24.775V1078.608z M1925.064,1103.384
h24.774v24.775h-24.774V1103.384z M1949.838,1128.159h24.775v24.774h-24.775V1128.159z M1949.838,920.208h24.775v24.775h-24.775
V920.208z M1925.064,944.983h24.774v24.775h-24.774V944.983z M1949.838,969.759h24.775v24.775h-24.775V969.759z
M174.67,2212.496h24.775v24.774H174.67V2212.496z M227.961,850.987v1650.104H96.547V850.987
c5.443,1.756,10.971,3.43,16.555,5.045v1645.03h98.305V856.004C216.99,854.389,222.52,852.743,227.961,850.987 M174.67,944.983
h24.775v24.775H174.67V944.983z M149.839,920.208h24.774v24.775h-24.774V920.208z M125.064,944.983h24.774v24.775h-24.774
V944.983z M149.839,969.759h24.774v24.775h-24.774V969.759z M174.67,1103.384h24.775v24.775H174.67V1103.384z M149.839,1078.608
h24.774v24.775h-24.774V1078.608z M125.064,1103.384h24.774v24.775h-24.774V1103.384z M149.839,1128.159h24.774v24.774h-24.774
V1128.159z M174.67,1260.763h24.775v24.775H174.67V1260.763z M149.839,1235.987h24.774v24.775h-24.774V1235.987z
M125.064,1260.763h24.774v24.775h-24.774V1260.763z M149.839,1285.538h24.774v24.774h-24.774V1285.538z M174.67,1419.163
h24.775v24.774H174.67V1419.163z M149.839,1394.389h24.774v24.775h-24.774V1394.389z M125.064,1419.163h24.774v24.774h-24.774
V1419.163z M149.839,1443.938h24.774v24.775h-24.774V1443.938z M174.67,1567.557h24.775v24.775H174.67V1567.557z
M149.839,1542.811h24.774v24.746h-24.774V1542.811z M125.064,1567.557h24.774v24.775h-24.774V1567.557z M149.839,1592.332
h24.774v24.774h-24.774V1592.332z M174.67,1725.984h24.775v24.746H174.67V1725.984z M149.839,1701.211h24.774v24.774h-24.774
V1701.211z M125.064,1725.984h24.774v24.746h-24.774V1725.984z M149.839,1750.731h24.774v24.775h-24.774V1750.731z
M174.67,1883.337h24.775v24.774H174.67V1883.337z M149.839,1858.562h24.774v24.775h-24.774V1858.562z M125.064,1883.337h24.774
v24.774h-24.774V1883.337z M149.839,1908.11h24.774v24.775h-24.774V1908.11z M174.67,2041.736h24.775v24.775H174.67V2041.736z
M149.839,2016.962h24.774v24.774h-24.774V2016.962z M125.064,2041.736h24.774v24.775h-24.774V2041.736z M149.839,2066.511
h24.774v24.775h-24.774V2066.511z M149.839,2187.721h24.774v24.775h-24.774V2187.721z M125.064,2212.496h24.774v24.774h-24.774
V2212.496z M149.839,2237.271h24.774v24.746h-24.774V2237.271z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_URL">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#010149" d="
M1974.67,944.983h24.775v24.775h-24.775V944.983z M2027.961,850.987v1650.104h-131.414V850.987
c5.443,1.756,10.97,3.401,16.554,5.017v1645.059h98.307V856.032C2016.991,854.417,2022.519,852.743,2027.961,850.987
M1974.67,2212.496h24.775v24.774h-24.775V2212.496z M1949.838,2187.721h24.775v24.775h-24.775V2187.721z M1925.064,2212.496
h24.774v24.774h-24.774V2212.496z M1949.838,2237.271h24.775v24.746h-24.775V2237.271z M1974.67,2041.736h24.775v24.775h-24.775
V2041.736z M1949.838,2016.962h24.775v24.774h-24.775V2016.962z M1925.064,2041.736h24.774v24.775h-24.774V2041.736z
M1949.838,2066.511h24.775v24.775h-24.775V2066.511z M1974.67,1883.337h24.775v24.774h-24.775V1883.337z M1949.838,1858.562
h24.775v24.775h-24.775V1858.562z M1925.064,1883.337h24.774v24.774h-24.774V1883.337z M1949.838,1908.11h24.775v24.775h-24.775
V1908.11z M1974.67,1725.984h24.775v24.746h-24.775V1725.984z M1949.838,1701.211h24.775v24.774h-24.775V1701.211z
M1925.064,1725.984h24.774v24.746h-24.774V1725.984z M1949.838,1750.731h24.775v24.775h-24.775V1750.731z M1974.67,1567.557
h24.775v24.775h-24.775V1567.557z M1949.838,1542.811h24.775v24.746h-24.775V1542.811z M1925.064,1567.557h24.774v24.775h-24.774
V1567.557z M1949.838,1592.332h24.775v24.774h-24.775V1592.332z M1974.67,1419.163h24.775v24.774h-24.775V1419.163z
M1949.838,1394.389h24.775v24.775h-24.775V1394.389z M1925.064,1419.163h24.774v24.774h-24.774V1419.163z M1949.838,1443.938
h24.775v24.775h-24.775V1443.938z M1974.67,1260.763h24.775v24.775h-24.775V1260.763z M1949.838,1235.987h24.775v24.775h-24.775
V1235.987z M1925.064,1260.763h24.774v24.775h-24.774V1260.763z M1949.838,1285.538h24.775v24.774h-24.775V1285.538z
M1974.67,1103.384h24.775v24.775h-24.775V1103.384z M1949.838,1078.608h24.775v24.775h-24.775V1078.608z M1925.064,1103.384
h24.774v24.775h-24.774V1103.384z M1949.838,1128.159h24.775v24.774h-24.775V1128.159z M1949.838,920.208h24.775v24.775h-24.775
V920.208z M1925.064,944.983h24.774v24.775h-24.774V944.983z M1949.838,969.759h24.775v24.775h-24.775V969.759z M174.67,2212.496
h24.775v24.774H174.67V2212.496z M227.961,850.987v1650.104H96.547V850.987c5.443,1.756,10.971,3.43,16.555,5.045v1645.03h98.305
V856.004C216.99,854.389,222.52,852.743,227.961,850.987 M174.67,944.983h24.775v24.775H174.67V944.983z M149.839,920.208h24.774
v24.775h-24.774V920.208z M125.064,944.983h24.774v24.775h-24.774V944.983z M149.839,969.759h24.774v24.775h-24.774V969.759z
M174.67,1103.384h24.775v24.775H174.67V1103.384z M149.839,1078.608h24.774v24.775h-24.774V1078.608z M125.064,1103.384h24.774
v24.775h-24.774V1103.384z M149.839,1128.159h24.774v24.774h-24.774V1128.159z M174.67,1260.763h24.775v24.775H174.67V1260.763z
M149.839,1235.987h24.774v24.775h-24.774V1235.987z M125.064,1260.763h24.774v24.775h-24.774V1260.763z M149.839,1285.538
h24.774v24.774h-24.774V1285.538z M174.67,1419.163h24.775v24.774H174.67V1419.163z M149.839,1394.389h24.774v24.775h-24.774
V1394.389z M125.064,1419.163h24.774v24.774h-24.774V1419.163z M149.839,1443.938h24.774v24.775h-24.774V1443.938z
M174.67,1567.557h24.775v24.775H174.67V1567.557z M149.839,1542.811h24.774v24.746h-24.774V1542.811z M125.064,1567.557h24.774
v24.775h-24.774V1567.557z M149.839,1592.332h24.774v24.774h-24.774V1592.332z M174.67,1725.984h24.775v24.746H174.67V1725.984z
M149.839,1701.211h24.774v24.774h-24.774V1701.211z M125.064,1725.984h24.774v24.746h-24.774V1725.984z M149.839,1750.731
h24.774v24.775h-24.774V1750.731z M174.67,1883.337h24.775v24.774H174.67V1883.337z M149.839,1858.562h24.774v24.775h-24.774
V1858.562z M125.064,1883.337h24.774v24.774h-24.774V1883.337z M149.839,1908.11h24.774v24.775h-24.774V1908.11z
M174.67,2041.736h24.775v24.775H174.67V2041.736z M149.839,2016.962h24.774v24.774h-24.774V2016.962z M125.064,2041.736h24.774
v24.775h-24.774V2041.736z M149.839,2066.511h24.774v24.775h-24.774V2066.511z M149.839,2187.721h24.774v24.775h-24.774V2187.721
z M125.064,2212.496h24.774v24.774h-24.774V2212.496z M149.839,2237.271h24.774v24.746h-24.774V2237.271z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M1949.838,944.983h24.775v24.775h-24.775V944.983z M1949.838,1103.384h24.775v24.775
h-24.775V1103.384z M1949.838,2212.496h24.775v24.774h-24.775V2212.496z M1949.838,2041.736h24.775v24.775h-24.775V2041.736z
M1949.838,1883.337h24.775v24.774h-24.775V1883.337z M1949.838,1419.163h24.775v24.774h-24.775V1419.163z M1949.838,1260.763
h24.775v24.775h-24.775V1260.763z M1949.838,1725.984h24.775v24.746h-24.775V1725.984z M1949.838,1567.557h24.775v24.775
h-24.775V1567.557z M149.839,944.983h24.774v24.775h-24.774V944.983z M149.839,2212.496h24.774v24.774h-24.774V2212.496z
M149.839,2041.736h24.774v24.775h-24.774V2041.736z M149.839,1883.337h24.774v24.774h-24.774V1883.337z M149.839,1419.163
h24.774v24.774h-24.774V1419.163z M149.839,1260.763h24.774v24.775h-24.774V1260.763z M149.839,1725.984h24.774v24.746h-24.774
V1725.984z M149.839,1567.557h24.774v24.775h-24.774V1567.557z M149.839,1103.384h24.774v24.775h-24.774V1103.384z"/>
</defs>
<clipPath id="Front_Trim_4_Clippath_URL">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FF6100" d="
M1949.838,944.983h24.775v24.775h-24.775V944.983z M1949.838,1103.384h24.775v24.775h-24.775V1103.384z M1949.838,2212.496
h24.775v24.774h-24.775V2212.496z M1949.838,2041.736h24.775v24.775h-24.775V2041.736z M1949.838,1883.337h24.775v24.774h-24.775
V1883.337z M1949.838,1419.163h24.775v24.774h-24.775V1419.163z M1949.838,1260.763h24.775v24.775h-24.775V1260.763z
M1949.838,1725.984h24.775v24.746h-24.775V1725.984z M1949.838,1567.557h24.775v24.775h-24.775V1567.557z M149.839,944.983
h24.774v24.775h-24.774V944.983z M149.839,2212.496h24.774v24.774h-24.774V2212.496z M149.839,2041.736h24.774v24.775h-24.774
V2041.736z M149.839,1883.337h24.774v24.774h-24.774V1883.337z M149.839,1419.163h24.774v24.774h-24.774V1419.163z
M149.839,1260.763h24.774v24.775h-24.774V1260.763z M149.839,1725.984h24.774v24.746h-24.774V1725.984z M149.839,1567.557
h24.774v24.775h-24.774V1567.557z M149.839,1103.384h24.774v24.775h-24.774V1103.384z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="1464.296" y="2141.091" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="984.423" y="74.573" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="556.423" y="347.302" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -0,0 +1,361 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="2975.583px" height="2352.434px" viewBox="0 0 2975.583 2352.434" enable-background="new 0 0 2975.583 2352.434"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M2572.951,1.207l253.9,52.215c-23.869,218.041-23.074,444.16,147.74,567.212v1504.573h-1188
V620.634c170.844-123.052,171.609-349.171,147.742-567.212l253.928-52.215c51.42,80.135,78.633,75.629,192.33,74.892
C2494.291,76.836,2521.501,81.342,2572.951,1.207L2572.951,1.207z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_1_">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_1_)" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M2572.951,1.207l253.9,52.215c-23.869,218.041-23.074,444.16,147.74,567.212v1504.573h-1188V620.634
c170.844-123.052,171.609-349.171,147.742-567.212l253.928-52.215c51.42,80.135,78.633,75.629,192.33,74.892
C2494.291,76.836,2521.501,81.342,2572.951,1.207L2572.951,1.207z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M2907.099,1977.012l66.756,78.52l0.736-0.028 M1791.865,616.75l205.709,54.256
l0.625,0.709l-192.955,9.155l-18.652-21.911v-38.325c0.227-0.17,0.455-0.341,0.682-0.511
C1788.832,619.018,1790.363,617.885,1791.865,616.75L1791.865,616.75z M2974.591,1781.364v29.084l-18.34-21.401l0.029,0.028
l-201.545,8.702l-66.67-78.435l268.072,69.562l-294.945-343.955l0.283,0.34l-198.877,8.844l-66.615-78.35l265.209,69.166
L2071.9,757.66l-193.607,9.128l-66.443-78.122l259.482,68.343l0.369,0.425l-196.895-229.605
c3.6-5.613,7.029-11.282,10.318-17.064L2974.591,1781.364z M2974.591,1860.564v16.838l-146.807,6.293l-66.727-78.463
L2974.591,1860.564z M2974.591,1927.49v38.977l-73.785,3.146l-66.729-78.491L2974.591,1927.49z M2974.591,2086.344v38.863h-1188
V686.539l20.467,26.873L2974.591,2086.344z M2030.91,946.335l66.502,78.208l195.59-9.015l-0.482-0.567L2030.91,946.335z
M2469.005,1461.674l66.613,78.377l199.559-8.815l-0.254-0.312L2469.005,1461.674z M2974.591,1994.474l-67.492-17.462
M2615.046,1633.453l66.67,78.435l200.863-8.759l-0.17-0.228L2615.046,1633.453z M2542.025,1547.563l66.643,78.406
l200.211-8.788l-0.199-0.255L2542.025,1547.563z M2322.964,1289.894l66.586,78.321l198.254-8.9l-0.34-0.369L2322.964,1289.894z
M2249.943,1204.004l66.559,78.293l197.602-8.929l-0.367-0.426L2249.943,1204.004z M2176.923,1118.114l66.557,78.265
l196.924-8.958l-0.398-0.453L2176.923,1118.114z M2103.931,1032.225l66.5,78.236l196.271-8.986l-0.453-0.51L2103.931,1032.225z
M1957.89,860.445l66.473,78.18l194.938-9.043l-0.51-0.596L1957.89,860.445z M1884.869,774.555l66.445,78.152l194.285-9.071
l-0.537-0.652L1884.869,774.555z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_1_">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_1_)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M2907.099,1977.012l66.756,78.52l0.736-0.028 M1791.865,616.75l205.709,54.256l0.625,0.709l-192.955,9.155l-18.652-21.911
v-38.325c0.227-0.17,0.455-0.341,0.682-0.511C1788.832,619.018,1790.363,617.885,1791.865,616.75L1791.865,616.75z
M2974.591,1781.364v29.084l-18.34-21.401l0.029,0.028l-201.545,8.702l-66.67-78.435l268.072,69.562l-294.945-343.955l0.283,0.34
l-198.877,8.844l-66.615-78.35l265.209,69.166L2071.9,757.66l-193.607,9.128l-66.443-78.122l259.482,68.343l0.369,0.425
l-196.895-229.605c3.6-5.613,7.029-11.282,10.318-17.064L2974.591,1781.364z M2974.591,1860.564v16.838l-146.807,6.293
l-66.727-78.463L2974.591,1860.564z M2974.591,1927.49v38.977l-73.785,3.146l-66.729-78.491L2974.591,1927.49z
M2974.591,2086.344v38.863h-1188V686.539l20.467,26.873L2974.591,2086.344z M2030.91,946.335l66.502,78.208l195.59-9.015
l-0.482-0.567L2030.91,946.335z M2469.005,1461.674l66.613,78.377l199.559-8.815l-0.254-0.312L2469.005,1461.674z
M2974.591,1994.474l-67.492-17.462 M2615.046,1633.453l66.67,78.435l200.863-8.759l-0.17-0.228L2615.046,1633.453z
M2542.025,1547.563l66.643,78.406l200.211-8.788l-0.199-0.255L2542.025,1547.563z M2322.964,1289.894l66.586,78.321l198.254-8.9
l-0.34-0.369L2322.964,1289.894z M2249.943,1204.004l66.559,78.293l197.602-8.929l-0.367-0.426L2249.943,1204.004z
M2176.923,1118.114l66.557,78.265l196.924-8.958l-0.398-0.453L2176.923,1118.114z M2103.931,1032.225l66.5,78.236l196.271-8.986
l-0.453-0.51L2103.931,1032.225z M1957.89,860.445l66.473,78.18l194.938-9.043l-0.51-0.596L1957.89,860.445z M1884.869,774.555
l66.445,78.152l194.285-9.071l-0.537-0.652L1884.869,774.555z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M2629.587,12.857l-11.225,17.518c-67.947,105.902-122.061,99.724-237.771,99.724
c-115.709,0-169.852,6.179-237.797-99.724l-11.227-17.518l56.693-11.65c51.42,80.135,78.633,75.629,192.33,74.892
c113.699,0.737,140.91,5.243,192.332-74.892L2629.587,12.857z M2974.591,620.634
c-170.814-123.052-171.609-349.171-147.74-567.212l-52.754-10.857l-0.539,4.904c-17.404,158.91-25.539,345.09,55.391,488.891
c36.197,64.347,86.002,112.904,145.643,148.451V620.634z M1786.99,684.811c59.668-35.547,109.473-84.104,145.672-148.451
c80.93-143.801,72.766-329.98,55.389-488.891l-0.539-4.904l-52.781,10.857c23.869,218.041,23.104,444.16-147.74,567.212V684.811
z"/>
</defs>
<clipPath id="Back_Trim_2_Clippath_1_">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_1_)" fill-rule="evenodd" clip-rule="evenodd" fill="#C2C0B4" stroke="#FFFFFF" stroke-width="0.1984" stroke-miterlimit="10" d="
M2629.587,12.857l-11.225,17.518c-67.947,105.902-122.061,99.724-237.771,99.724c-115.709,0-169.852,6.179-237.797-99.724
l-11.227-17.518l56.693-11.65c51.42,80.135,78.633,75.629,192.33,74.892c113.699,0.737,140.91,5.243,192.332-74.892
L2629.587,12.857z M2974.591,620.634c-170.814-123.052-171.609-349.171-147.74-567.212l-52.754-10.857l-0.539,4.904
c-17.404,158.91-25.539,345.09,55.391,488.891c36.197,64.347,86.002,112.904,145.643,148.451V620.634z M1786.99,684.811
c59.668-35.547,109.473-84.104,145.672-148.451c80.93-143.801,72.766-329.98,55.389-488.891l-0.539-4.904l-52.781,10.857
c23.869,218.041,23.104,444.16-147.74,567.212V684.811z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Jock_Tag">
<rect x="2768.233" y="2189.441" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Prod_QR_Code">
<rect x="2758.591" y="1765.207" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="1876.791" y="130.051" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1075.294,1.207l253.955,52.215c-28.686,262.232-21.798,536.145,273.742,628.412
c68.457-21.373,121.379-52.498,162-90.936v1534.309c-587.99,0-1175.981,0-1764,0V590.898
c40.649,38.438,93.571,69.563,162,90.936c295.568-92.268,302.457-366.18,273.742-628.412L690.689,1.207
c8.93,226.347,79.796,377.178,192.275,472.422C995.47,378.385,1066.308,227.554,1075.294,1.207L1075.294,1.207z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_1_">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_1_)" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M1075.294,1.207l253.955,52.215c-28.686,262.232-21.798,536.145,273.742,628.412c68.457-21.373,121.379-52.498,162-90.936
v1534.309c-587.99,0-1175.981,0-1764,0V590.898c40.649,38.438,93.571,69.563,162,90.936
c295.568-92.268,302.457-366.18,273.742-628.412L690.689,1.207c8.93,226.347,79.796,377.178,192.275,472.422
C995.47,378.385,1066.308,227.554,1075.294,1.207L1075.294,1.207z"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M356.513,1977.012l-66.756,78.52l-203.527-8.589 M1471.748,616.75l-205.738,54.256
l-0.596,0.709l192.955,9.155l39.4-46.347C1488.671,628.854,1479.997,622.93,1471.748,616.75L1471.748,616.75z M1378.488,510.764
c3.26,5.782,6.719,11.451,10.318,17.064l-196.923,229.605l0.397-0.425l259.482-68.343l-66.443,78.122l-193.606-9.128
l-589.294,687.289l265.209-69.166l-66.614,78.35l-198.907-8.844l0.284-0.34l-294.917,343.955l268.072-69.562l-66.671,78.435
l-201.543-8.702v-0.028l-73.587,85.861l268.781-69.676l-66.699,78.463l-202.195-8.674l0.085-0.113L86.258,2046.886l-0.028,0.028
l-67.125,78.293H0.992v-7.965L1378.488,510.764z M1510.724,642.234c27.07,15.477,57.686,28.799,92.268,39.6
c68.457-21.373,121.379-52.498,162-90.936v1534.309H255.969L1456.526,713.412L1510.724,642.234z M230.513,2125.207H42.208
l241.285-62.306L230.513,2125.207z M1232.703,946.335l-66.502,78.208l-195.59-9.015l0.482-0.567L1232.703,946.335z
M794.608,1461.674l-66.643,78.377l-199.559-8.815l0.255-0.312L794.608,1461.674z M429.505,1891.122l-66.728,78.491
l-202.847-8.646l0.057-0.085L429.505,1891.122z M86.258,2046.886l270.255-69.874 M648.567,1633.453l-66.671,78.435
l-200.891-8.759l0.198-0.228L648.567,1633.453z M721.587,1547.563l-66.643,78.406l-200.239-8.788l0.227-0.255L721.587,1547.563z
M940.648,1289.894l-66.585,78.321l-198.255-8.9l0.34-0.369L940.648,1289.894z M1013.64,1204.004l-66.557,78.293l-197.574-8.929
l0.367-0.426L1013.64,1204.004z M1086.662,1118.114l-66.529,78.265l-196.923-8.958l0.397-0.453L1086.662,1118.114z
M1159.681,1032.225l-66.529,78.236l-196.242-8.986l0.426-0.51L1159.681,1032.225z M1305.722,860.445l-66.473,78.18
l-194.938-9.043l0.51-0.596L1305.722,860.445z M1378.744,774.555l-66.473,78.152l-194.258-9.071l0.537-0.652L1378.744,774.555z"
/>
</defs>
<clipPath id="Front_MainColor_Clippath_1_">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_1_)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M356.513,1977.012l-66.756,78.52l-203.527-8.589 M1471.748,616.75l-205.738,54.256l-0.596,0.709l192.955,9.155l39.4-46.347
C1488.671,628.854,1479.997,622.93,1471.748,616.75L1471.748,616.75z M1378.488,510.764c3.26,5.782,6.719,11.451,10.318,17.064
l-196.923,229.605l0.397-0.425l259.482-68.343l-66.443,78.122l-193.606-9.128l-589.294,687.289l265.209-69.166l-66.614,78.35
l-198.907-8.844l0.284-0.34l-294.917,343.955l268.072-69.562l-66.671,78.435l-201.543-8.702v-0.028l-73.587,85.861
l268.781-69.676l-66.699,78.463l-202.195-8.674l0.085-0.113L86.258,2046.886l-0.028,0.028l-67.125,78.293H0.992v-7.965
L1378.488,510.764z M1510.724,642.234c27.07,15.477,57.686,28.799,92.268,39.6c68.457-21.373,121.379-52.498,162-90.936v1534.309
H255.969L1456.526,713.412L1510.724,642.234z M230.513,2125.207H42.208l241.285-62.306L230.513,2125.207z M1232.703,946.335
l-66.502,78.208l-195.59-9.015l0.482-0.567L1232.703,946.335z M794.608,1461.674l-66.643,78.377l-199.559-8.815l0.255-0.312
L794.608,1461.674z M429.505,1891.122l-66.728,78.491l-202.847-8.646l0.057-0.085L429.505,1891.122z M86.258,2046.886
l270.255-69.874 M648.567,1633.453l-66.671,78.435l-200.891-8.759l0.198-0.228L648.567,1633.453z M721.587,1547.563
l-66.643,78.406l-200.239-8.788l0.227-0.255L721.587,1547.563z M940.648,1289.894l-66.585,78.321l-198.255-8.9l0.34-0.369
L940.648,1289.894z M1013.64,1204.004l-66.557,78.293l-197.574-8.929l0.367-0.426L1013.64,1204.004z M1086.662,1118.114
l-66.529,78.265l-196.923-8.958l0.397-0.453L1086.662,1118.114z M1159.681,1032.225l-66.529,78.236l-196.242-8.986l0.426-0.51
L1159.681,1032.225z M1305.722,860.445l-66.473,78.18l-194.938-9.043l0.51-0.596L1305.722,860.445z M1378.744,774.555
l-66.473,78.152l-194.258-9.071l0.537-0.652L1378.744,774.555z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M2162.53,2171.441v180H2.531v-180H2162.53z M1553.867,721.887v1403.32h98.277V721.859
c41.047-15.591,78.945-35.632,112.877-60.775v-70.186c-30.332,28.687-67.494,53.32-112.877,72.822
c-15.42,6.633-31.775,12.699-49.123,18.113c-5.131-1.615-10.178-3.26-15.137-4.989l-0.455-0.142
c-1.219-0.426-2.465-0.851-3.684-1.304c-10.348-3.657-20.297-7.569-29.879-11.708v0.029
c-83.025-35.717-138.67-88.47-174.926-152.136c-71.688-125.83-67.662-294.293-49.719-458.163l-53.121-10.942l-0.539,4.989
c-17.404,158.91-25.568,345.09,55.361,488.891C1381.833,626.813,1459.587,686.058,1553.867,721.887z M113.868,2125.207h98.277
V721.887c94.28-35.829,172.035-95.045,222.945-185.527c80.929-143.801,72.793-329.98,55.389-488.891l-0.539-4.989
l-53.149,10.942c17.943,163.87,21.968,332.333-49.72,458.163c-36.255,63.666-91.899,116.419-174.926,152.136v-0.029
c-11.311,4.877-23.103,9.439-35.433,13.664c-0.822,0.283-1.672,0.566-2.495,0.85c-0.539,0.17-1.077,0.341-1.587,0.511
c-1.417,0.481-2.806,0.936-4.224,1.389l-0.425,0.142c-1.644,0.539-3.316,1.049-4.989,1.588
c-2.098-0.652-4.195-1.332-6.293-2.013l-0.113-0.028c-0.992-0.34-2.013-0.652-3.005-0.992l-0.17-0.057
c-0.992-0.34-1.956-0.652-2.92-0.992l-0.255-0.085c-0.907-0.312-1.814-0.624-2.722-0.936l-0.51-0.17
c-0.851-0.284-1.701-0.595-2.551-0.907l-0.51-0.17c-0.851-0.283-1.701-0.596-2.551-0.907l-0.539-0.198
c-0.822-0.283-1.644-0.596-2.466-0.879l-0.652-0.255c-0.765-0.284-1.531-0.567-2.296-0.851l-0.737-0.283
c-0.793-0.283-1.559-0.567-2.324-0.879l-0.766-0.283c-0.68-0.256-1.36-0.539-2.012-0.794l-1.105-0.425
c-0.595-0.228-1.191-0.454-1.786-0.709l-1.162-0.453c-0.567-0.228-1.105-0.426-1.644-0.652l-1.389-0.567
c-0.539-0.227-1.077-0.425-1.616-0.651l-1.162-0.482c-0.567-0.255-1.134-0.482-1.729-0.709l-1.276-0.566
c-0.51-0.199-1.021-0.426-1.502-0.623c-0.454-0.199-0.907-0.397-1.361-0.596c-45.382-19.502-82.545-44.136-112.875-72.822
v70.186c33.931,25.115,71.83,45.156,112.875,60.775V2125.207z M848.07,510.848l34.895,29.537l34.895-29.537
c148.138-125.461,201.373-311.271,210.756-498.67l-53.32-10.971c-8.986,226.347-79.824,377.178-192.33,472.422
C770.485,378.385,699.619,227.554,690.689,1.207l-53.375,10.971C646.696,199.576,699.931,385.387,848.07,510.848z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_1_">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_1_)" fill="#B3B0A1" d="M2162.53,2171.441v180H2.531v-180H2162.53
z M1553.867,721.887v1403.32h98.277V721.859c41.047-15.591,78.945-35.632,112.877-60.775v-70.186
c-30.332,28.687-67.494,53.32-112.877,72.822c-15.42,6.633-31.775,12.699-49.123,18.113c-5.131-1.615-10.178-3.26-15.137-4.989
l-0.455-0.142c-1.219-0.426-2.465-0.851-3.684-1.304c-10.348-3.657-20.297-7.569-29.879-11.708v0.029
c-83.025-35.717-138.67-88.47-174.926-152.136c-71.688-125.83-67.662-294.293-49.719-458.163l-53.121-10.942l-0.539,4.989
c-17.404,158.91-25.568,345.09,55.361,488.891C1381.833,626.813,1459.587,686.058,1553.867,721.887z M113.868,2125.207h98.277
V721.887c94.28-35.829,172.035-95.045,222.945-185.527c80.929-143.801,72.793-329.98,55.389-488.891l-0.539-4.989l-53.149,10.942
c17.943,163.87,21.968,332.333-49.72,458.163c-36.255,63.666-91.899,116.419-174.926,152.136v-0.029
c-11.311,4.877-23.103,9.439-35.433,13.664c-0.822,0.283-1.672,0.566-2.495,0.85c-0.539,0.17-1.077,0.341-1.587,0.511
c-1.417,0.481-2.806,0.936-4.224,1.389l-0.425,0.142c-1.644,0.539-3.316,1.049-4.989,1.588c-2.098-0.652-4.195-1.332-6.293-2.013
l-0.113-0.028c-0.992-0.34-2.013-0.652-3.005-0.992l-0.17-0.057c-0.992-0.34-1.956-0.652-2.92-0.992l-0.255-0.085
c-0.907-0.312-1.814-0.624-2.722-0.936l-0.51-0.17c-0.851-0.284-1.701-0.595-2.551-0.907l-0.51-0.17
c-0.851-0.283-1.701-0.596-2.551-0.907l-0.539-0.198c-0.822-0.283-1.644-0.596-2.466-0.879l-0.652-0.255
c-0.765-0.284-1.531-0.567-2.296-0.851l-0.737-0.283c-0.793-0.283-1.559-0.567-2.324-0.879l-0.766-0.283
c-0.68-0.256-1.36-0.539-2.012-0.794l-1.105-0.425c-0.595-0.228-1.191-0.454-1.786-0.709l-1.162-0.453
c-0.567-0.228-1.105-0.426-1.644-0.652l-1.389-0.567c-0.539-0.227-1.077-0.425-1.616-0.651l-1.162-0.482
c-0.567-0.255-1.134-0.482-1.729-0.709l-1.276-0.566c-0.51-0.199-1.021-0.426-1.502-0.623c-0.454-0.199-0.907-0.397-1.361-0.596
c-45.382-19.502-82.545-44.136-112.875-72.822v70.186c33.931,25.115,71.83,45.156,112.875,60.775V2125.207z M848.07,510.848
l34.895,29.537l34.895-29.537c148.138-125.461,201.373-311.271,210.756-498.67l-53.32-10.971
c-8.986,226.347-79.824,377.178-192.33,472.422C770.485,378.385,699.619,227.554,690.689,1.207l-53.375,10.971
C646.696,199.576,699.931,385.387,848.07,510.848z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M1615.437,2026.278h24.746v24.746h-24.746V2026.278z M1668.699,656.209L1668.699,656.209
c-5.385,2.579-10.912,5.102-16.555,7.512l0,0C1657.787,661.283,1663.314,658.788,1668.699,656.209L1668.699,656.209z
M1668.699,715.254v1409.953h-16.555V721.859C1657.728,719.732,1663.257,717.551,1668.699,715.254L1668.699,715.254z
M1553.867,2125.207h-16.582V715.283c5.471,2.295,10.998,4.479,16.582,6.604V2125.207z M1537.285,656.209v-0.029
c5.414,2.58,10.914,5.104,16.582,7.541l0,0C1548.199,661.283,1542.699,658.788,1537.285,656.209L1537.285,656.209z
M1609.824,679.651c0.539-0.171,1.076-0.368,1.615-0.538C1610.9,679.283,1610.363,679.48,1609.824,679.651L1609.824,679.651z
M1615.437,758.766h24.746v24.775h-24.746V758.766z M1590.576,733.991h24.775v24.774h-24.775V733.991z M1565.802,758.766h24.773
v24.775h-24.773V758.766z M1590.576,783.541h24.775v24.775h-24.775V783.541z M1615.437,917.166h24.746v24.775h-24.746V917.166z
M1590.576,892.392h24.775v24.774h-24.775V892.392z M1565.802,917.166h24.773v24.775h-24.773V917.166z M1590.576,941.941h24.775
v24.774h-24.775V941.941z M1615.437,1074.546h24.746v24.774h-24.746V1074.546z M1590.576,1049.771h24.775v24.774h-24.775
V1049.771z M1565.802,1074.546h24.773v24.774h-24.773V1074.546z M1590.576,1099.32h24.775v24.747h-24.775V1099.32z
M1615.437,1232.945h24.746v24.775h-24.746V1232.945z M1590.576,1208.171h24.775v24.774h-24.775V1208.171z M1565.802,1232.945
h24.773v24.775h-24.773V1232.945z M1590.576,1257.721h24.775v24.746h-24.775V1257.721z M1615.437,1381.34h24.746v24.774h-24.746
V1381.34z M1590.576,1356.564h24.775v24.775h-24.775V1356.564z M1565.802,1381.34h24.773v24.774h-24.773V1381.34z
M1590.576,1406.114h24.775v24.774h-24.775V1406.114z M1615.437,1539.739h24.746v24.775h-24.746V1539.739z M1590.576,1514.965
h24.775v24.774h-24.775V1514.965z M1565.802,1539.739h24.773v24.775h-24.773V1539.739z M1590.576,1564.515h24.775v24.774
h-24.775V1564.515z M1615.437,1697.119h24.746v24.774h-24.746V1697.119z M1590.576,1672.344h24.775v24.775h-24.775V1672.344z
M1565.802,1697.119h24.773v24.774h-24.773V1697.119z M1590.576,1721.894h24.775v24.775h-24.775V1721.894z M1615.437,1855.52
h24.746v24.774h-24.746V1855.52z M1590.576,1830.744h24.775v24.775h-24.775V1830.744z M1565.802,1855.52h24.773v24.774h-24.773
V1855.52z M1590.576,1880.294h24.775v24.774h-24.775V1880.294z M1590.576,2001.503h24.775v24.775h-24.775V2001.503z
M1565.802,2026.278h24.773v24.746h-24.773V2026.278z M1590.576,2051.024h24.775v24.775h-24.775V2051.024z M175.436,758.766
h24.747v24.775h-24.747V758.766z M228.699,656.18v0.029c-5.386,2.579-10.914,5.102-16.554,7.512l0,0
C217.786,661.283,223.313,658.76,228.699,656.18L228.699,656.18z M228.699,715.283v1409.924h-16.554V721.887
C217.729,719.762,223.257,717.578,228.699,715.283L228.699,715.283z M113.868,2125.207H97.285V715.254
c5.471,2.268,10.998,4.479,16.583,6.605V2125.207z M97.285,715.254v-59.045l0,0 M175.436,2026.278h24.747v24.746h-24.747
V2026.278z M150.576,2001.503h24.775v24.775h-24.775V2001.503z M125.802,2026.278h24.774v24.746h-24.774V2026.278z
M150.576,2051.024h24.775v24.775h-24.775V2051.024z M175.436,1855.52h24.747v24.774h-24.747V1855.52z M150.576,1830.744h24.775
v24.775h-24.775V1830.744z M125.802,1855.52h24.774v24.774h-24.774V1855.52z M150.576,1880.294h24.775v24.774h-24.775V1880.294z
M175.436,1697.119h24.747v24.774h-24.747V1697.119z M150.576,1672.344h24.775v24.775h-24.775V1672.344z M125.802,1697.119
h24.774v24.774h-24.774V1697.119z M150.576,1721.894h24.775v24.775h-24.775V1721.894z M175.436,1539.739h24.747v24.775h-24.747
V1539.739z M150.576,1514.965h24.775v24.774h-24.775V1514.965z M125.802,1539.739h24.774v24.775h-24.774V1539.739z
M150.576,1564.515h24.775v24.774h-24.775V1564.515z M175.436,1381.34h24.747v24.774h-24.747V1381.34z M150.576,1356.564h24.775
v24.775h-24.775V1356.564z M125.802,1381.34h24.774v24.774h-24.774V1381.34z M150.576,1406.114h24.775v24.774h-24.775V1406.114z
M175.436,1232.945h24.747v24.775h-24.747V1232.945z M150.576,1208.171h24.775v24.774h-24.775V1208.171z M125.802,1232.945
h24.774v24.775h-24.774V1232.945z M150.576,1257.721h24.775v24.746h-24.775V1257.721z M175.436,1074.546h24.747v24.774h-24.747
V1074.546z M150.576,1049.771h24.775v24.774h-24.775V1049.771z M125.802,1074.546h24.774v24.774h-24.774V1074.546z
M150.576,1099.32h24.775v24.747h-24.775V1099.32z M175.436,917.166h24.747v24.775h-24.747V917.166z M150.576,892.392h24.775
v24.774h-24.775V892.392z M125.802,917.166h24.774v24.775h-24.774V917.166z M150.576,941.941h24.775v24.774h-24.775V941.941z
M150.576,733.991h24.775v24.774h-24.775V733.991z M125.802,758.766h24.774v24.775h-24.774V758.766z M150.576,783.541h24.775
v24.775h-24.775V783.541z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_1_">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_1_)" fill-rule="evenodd" clip-rule="evenodd" fill="#010149" d="
M1615.437,2026.278h24.746v24.746h-24.746V2026.278z M1668.699,656.209L1668.699,656.209c-5.385,2.579-10.912,5.102-16.555,7.512
l0,0C1657.787,661.283,1663.314,658.788,1668.699,656.209L1668.699,656.209z M1668.699,715.254v1409.953h-16.555V721.859
C1657.728,719.732,1663.257,717.551,1668.699,715.254L1668.699,715.254z M1553.867,2125.207h-16.582V715.283
c5.471,2.295,10.998,4.479,16.582,6.604V2125.207z M1537.285,656.209v-0.029c5.414,2.58,10.914,5.104,16.582,7.541l0,0
C1548.199,661.283,1542.699,658.788,1537.285,656.209L1537.285,656.209z M1609.824,679.651c0.539-0.171,1.076-0.368,1.615-0.538
C1610.9,679.283,1610.363,679.48,1609.824,679.651L1609.824,679.651z M1615.437,758.766h24.746v24.775h-24.746V758.766z
M1590.576,733.991h24.775v24.774h-24.775V733.991z M1565.802,758.766h24.773v24.775h-24.773V758.766z M1590.576,783.541h24.775
v24.775h-24.775V783.541z M1615.437,917.166h24.746v24.775h-24.746V917.166z M1590.576,892.392h24.775v24.774h-24.775V892.392z
M1565.802,917.166h24.773v24.775h-24.773V917.166z M1590.576,941.941h24.775v24.774h-24.775V941.941z M1615.437,1074.546h24.746
v24.774h-24.746V1074.546z M1590.576,1049.771h24.775v24.774h-24.775V1049.771z M1565.802,1074.546h24.773v24.774h-24.773
V1074.546z M1590.576,1099.32h24.775v24.747h-24.775V1099.32z M1615.437,1232.945h24.746v24.775h-24.746V1232.945z
M1590.576,1208.171h24.775v24.774h-24.775V1208.171z M1565.802,1232.945h24.773v24.775h-24.773V1232.945z M1590.576,1257.721
h24.775v24.746h-24.775V1257.721z M1615.437,1381.34h24.746v24.774h-24.746V1381.34z M1590.576,1356.564h24.775v24.775h-24.775
V1356.564z M1565.802,1381.34h24.773v24.774h-24.773V1381.34z M1590.576,1406.114h24.775v24.774h-24.775V1406.114z
M1615.437,1539.739h24.746v24.775h-24.746V1539.739z M1590.576,1514.965h24.775v24.774h-24.775V1514.965z M1565.802,1539.739
h24.773v24.775h-24.773V1539.739z M1590.576,1564.515h24.775v24.774h-24.775V1564.515z M1615.437,1697.119h24.746v24.774h-24.746
V1697.119z M1590.576,1672.344h24.775v24.775h-24.775V1672.344z M1565.802,1697.119h24.773v24.774h-24.773V1697.119z
M1590.576,1721.894h24.775v24.775h-24.775V1721.894z M1615.437,1855.52h24.746v24.774h-24.746V1855.52z M1590.576,1830.744
h24.775v24.775h-24.775V1830.744z M1565.802,1855.52h24.773v24.774h-24.773V1855.52z M1590.576,1880.294h24.775v24.774h-24.775
V1880.294z M1590.576,2001.503h24.775v24.775h-24.775V2001.503z M1565.802,2026.278h24.773v24.746h-24.773V2026.278z
M1590.576,2051.024h24.775v24.775h-24.775V2051.024z M175.436,758.766h24.747v24.775h-24.747V758.766z M228.699,656.18v0.029
c-5.386,2.579-10.914,5.102-16.554,7.512l0,0C217.786,661.283,223.313,658.76,228.699,656.18L228.699,656.18z M228.699,715.283
v1409.924h-16.554V721.887C217.729,719.762,223.257,717.578,228.699,715.283L228.699,715.283z M113.868,2125.207H97.285V715.254
c5.471,2.268,10.998,4.479,16.583,6.605V2125.207z M97.285,715.254v-59.045l0,0 M175.436,2026.278h24.747v24.746h-24.747
V2026.278z M150.576,2001.503h24.775v24.775h-24.775V2001.503z M125.802,2026.278h24.774v24.746h-24.774V2026.278z
M150.576,2051.024h24.775v24.775h-24.775V2051.024z M175.436,1855.52h24.747v24.774h-24.747V1855.52z M150.576,1830.744h24.775
v24.775h-24.775V1830.744z M125.802,1855.52h24.774v24.774h-24.774V1855.52z M150.576,1880.294h24.775v24.774h-24.775V1880.294z
M175.436,1697.119h24.747v24.774h-24.747V1697.119z M150.576,1672.344h24.775v24.775h-24.775V1672.344z M125.802,1697.119
h24.774v24.774h-24.774V1697.119z M150.576,1721.894h24.775v24.775h-24.775V1721.894z M175.436,1539.739h24.747v24.775h-24.747
V1539.739z M150.576,1514.965h24.775v24.774h-24.775V1514.965z M125.802,1539.739h24.774v24.775h-24.774V1539.739z
M150.576,1564.515h24.775v24.774h-24.775V1564.515z M175.436,1381.34h24.747v24.774h-24.747V1381.34z M150.576,1356.564h24.775
v24.775h-24.775V1356.564z M125.802,1381.34h24.774v24.774h-24.774V1381.34z M150.576,1406.114h24.775v24.774h-24.775V1406.114z
M175.436,1232.945h24.747v24.775h-24.747V1232.945z M150.576,1208.171h24.775v24.774h-24.775V1208.171z M125.802,1232.945
h24.774v24.775h-24.774V1232.945z M150.576,1257.721h24.775v24.746h-24.775V1257.721z M175.436,1074.546h24.747v24.774h-24.747
V1074.546z M150.576,1049.771h24.775v24.774h-24.775V1049.771z M125.802,1074.546h24.774v24.774h-24.774V1074.546z
M150.576,1099.32h24.775v24.747h-24.775V1099.32z M175.436,917.166h24.747v24.775h-24.747V917.166z M150.576,892.392h24.775
v24.774h-24.775V892.392z M125.802,917.166h24.774v24.775h-24.774V917.166z M150.576,941.941h24.775v24.774h-24.775V941.941z
M150.576,733.991h24.775v24.774h-24.775V733.991z M125.802,758.766h24.774v24.775h-24.774V758.766z M150.576,783.541h24.775
v24.775h-24.775V783.541z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M150.576,758.766h24.775v24.775h-24.775V758.766z M1590.576,758.766h24.775v24.775h-24.775
V758.766z M1590.576,2026.278h24.775v24.746h-24.775V2026.278z M1590.576,1855.52h24.775v24.774h-24.775V1855.52z
M1590.576,1697.119h24.775v24.774h-24.775V1697.119z M1590.576,1232.945h24.775v24.775h-24.775V1232.945z M1590.576,1074.546
h24.775v24.774h-24.775V1074.546z M1590.576,1539.739h24.775v24.775h-24.775V1539.739z M1590.576,1381.34h24.775v24.774h-24.775
V1381.34z M1590.576,917.166h24.775v24.775h-24.775V917.166z M150.576,2026.278h24.775v24.746h-24.775V2026.278z
M150.576,1855.52h24.775v24.774h-24.775V1855.52z M150.576,1697.119h24.775v24.774h-24.775V1697.119z M150.576,1232.945h24.775
v24.775h-24.775V1232.945z M150.576,1074.546h24.775v24.774h-24.775V1074.546z M150.576,1539.739h24.775v24.775h-24.775
V1539.739z M150.576,1381.34h24.775v24.774h-24.775V1381.34z M150.576,917.166h24.775v24.775h-24.775V917.166z"/>
</defs>
<clipPath id="Front_Trim_4_Clippath_1_">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_1_)" fill-rule="evenodd" clip-rule="evenodd" fill="#FF6100" d="
M150.576,758.766h24.775v24.775h-24.775V758.766z M1590.576,758.766h24.775v24.775h-24.775V758.766z M1590.576,2026.278h24.775
v24.746h-24.775V2026.278z M1590.576,1855.52h24.775v24.774h-24.775V1855.52z M1590.576,1697.119h24.775v24.774h-24.775V1697.119
z M1590.576,1232.945h24.775v24.775h-24.775V1232.945z M1590.576,1074.546h24.775v24.774h-24.775V1074.546z M1590.576,1539.739
h24.775v24.775h-24.775V1539.739z M1590.576,1381.34h24.775v24.774h-24.775V1381.34z M1590.576,917.166h24.775v24.775h-24.775
V917.166z M150.576,2026.278h24.775v24.746h-24.775V2026.278z M150.576,1855.52h24.775v24.774h-24.775V1855.52z
M150.576,1697.119h24.775v24.774h-24.775V1697.119z M150.576,1232.945h24.775v24.775h-24.775V1232.945z M150.576,1074.546
h24.775v24.774h-24.775V1074.546z M150.576,1539.739h24.775v24.775h-24.775V1539.739z M150.576,1381.34h24.775v24.774h-24.775
V1381.34z M150.576,917.166h24.775v24.775h-24.775V917.166z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="1105.285" y="1765.207" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="811.006" y="130.051" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="379.006" y="323.884" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -0,0 +1,431 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="2841.193px" height="2266.018px" viewBox="0 0 2841.193 2266.018" enable-background="new 0 0 2841.193 2266.018"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M2474.56,1.207l253.9,52.215c-18.709,188.617-24.775,409.237,111.74,531.609v1468.176h-1116
V585.031c136.518-122.372,130.451-342.992,111.742-531.609l253.9-52.215c51.391,80.136,78.604,75.629,192.301,74.892
C2395.843,76.836,2423.054,81.343,2474.56,1.207L2474.56,1.207z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_URL">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M2474.56,1.207l253.9,52.215c-18.709,188.617-24.775,409.237,111.74,531.609v1468.176h-1116V585.031
c136.518-122.372,130.451-342.992,111.742-531.609l253.9-52.215c51.391,80.136,78.604,75.629,192.301,74.892
C2395.843,76.836,2423.054,81.343,2474.56,1.207L2474.56,1.207z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M2825.886,1995.012l14.314,16.866 M1724.201,638.322l192.162,50.684l0.623,0.709
l-192.785,9.155V638.322z M2840.201,1737.371v29.055l-260.221-303.477l0.285,0.34l-198.908,8.844l-66.586-78.35l265.209,69.166
L1990.687,775.66l-193.635,9.128l-66.416-78.122l259.455,68.343l0.396,0.425l-200.664-234l-11.141,3.459
c6.236-8.107,12.076-16.47,17.49-25.115L2840.201,1737.371z M2840.201,1797.891v10.687l-166.676,7.2l-66.699-78.435
L2840.201,1797.891z M2840.201,1864.788v32.91l-93.656,3.997l-66.699-78.463L2840.201,1864.788z M2840.201,1931.742v54.992
l-20.607,0.879l-66.727-78.491L2840.201,1931.742z M2840.201,2041.812v11.396h-1116V729.258l1.645,2.154L2840.201,2041.812z
M1949.669,964.334l66.5,78.209l195.592-9.015l-0.455-0.566L1949.669,964.334z M2387.792,1479.673l66.613,78.378l199.559-8.815
l-0.254-0.312L2387.792,1479.673z M2840.201,1998.726l-14.314-3.714 M2533.804,1651.453l66.672,78.435l200.891-8.759
l-0.199-0.228L2533.804,1651.453z M2460.785,1565.563l66.643,78.406l200.238-8.788l-0.227-0.255L2460.785,1565.563z
M2241.751,1307.894l66.586,78.321l198.227-8.9l-0.313-0.369L2241.751,1307.894z M2168.73,1222.004l66.559,78.293l197.574-8.929
l-0.369-0.426L2168.73,1222.004z M2095.71,1136.114l66.529,78.265l196.922-8.958l-0.396-0.453L2095.71,1136.114z
M2022.689,1050.225l66.529,78.236l196.242-8.986l-0.424-0.51L2022.689,1050.225z M1876.648,878.445l66.502,78.18l194.91-9.043
l-0.482-0.596L1876.648,878.445z M1803.656,792.555l66.445,78.152l194.285-9.071l-0.566-0.652L1803.656,792.555z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_URL">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M2825.886,1995.012l14.314,16.866 M1724.201,638.322l192.162,50.684l0.623,0.709l-192.785,9.155V638.322z M2840.201,1737.371
v29.055l-260.221-303.477l0.285,0.34l-198.908,8.844l-66.586-78.35l265.209,69.166L1990.687,775.66l-193.635,9.128
l-66.416-78.122l259.455,68.343l0.396,0.425l-200.664-234l-11.141,3.459c6.236-8.107,12.076-16.47,17.49-25.115
L2840.201,1737.371z M2840.201,1797.891v10.687l-166.676,7.2l-66.699-78.435L2840.201,1797.891z M2840.201,1864.788v32.91
l-93.656,3.997l-66.699-78.463L2840.201,1864.788z M2840.201,1931.742v54.992l-20.607,0.879l-66.727-78.491L2840.201,1931.742z
M2840.201,2041.812v11.396h-1116V729.258l1.645,2.154L2840.201,2041.812z M1949.669,964.334l66.5,78.209l195.592-9.015
l-0.455-0.566L1949.669,964.334z M2387.792,1479.673l66.613,78.378l199.559-8.815l-0.254-0.312L2387.792,1479.673z
M2840.201,1998.726l-14.314-3.714 M2533.804,1651.453l66.672,78.435l200.891-8.759l-0.199-0.228L2533.804,1651.453z
M2460.785,1565.563l66.643,78.406l200.238-8.788l-0.227-0.255L2460.785,1565.563z M2241.751,1307.894l66.586,78.321l198.227-8.9
l-0.313-0.369L2241.751,1307.894z M2168.73,1222.004l66.559,78.293l197.574-8.929l-0.369-0.426L2168.73,1222.004z
M2095.71,1136.114l66.529,78.265l196.922-8.958l-0.396-0.453L2095.71,1136.114z M2022.689,1050.225l66.529,78.236l196.242-8.986
l-0.424-0.51L2022.689,1050.225z M1876.648,878.445l66.502,78.18l194.91-9.043l-0.482-0.596L1876.648,878.445z M1803.656,792.555
l66.445,78.152l194.285-9.071l-0.566-0.652L1803.656,792.555z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M2840.201,585.031c-66.104-59.273-98.787-141.534-112.762-232.102l-0.027-0.17
c-1.787-11.594-3.289-23.329-4.48-35.178l-0.027-0.227c-0.283-2.835-0.566-5.641-0.822-8.477l-0.084-0.963
c-1.021-11.565-1.787-23.188-2.354-34.895c-0.029-0.369-0.029-0.737-0.057-1.105c-0.113-2.608-0.227-5.216-0.313-7.852
l-0.084-2.014c-0.086-2.607-0.17-5.188-0.256-7.795c0-0.396,0-0.822-0.027-1.219c-0.199-8.277-0.342-16.555-0.342-24.832
c0-0.793-0.027-1.587-0.027-2.353c0-2.324,0.027-4.677,0.027-7.001c0-1.078,0.029-2.154,0.029-3.203
c0-2.268,0.027-4.508,0.057-6.747c0.027-1.105,0.057-2.183,0.057-3.26c0.113-7.398,0.313-14.825,0.566-22.224
c0.029-1.304,0.086-2.579,0.113-3.883c0.086-1.984,0.17-3.969,0.227-5.953c0.086-1.475,0.143-2.948,0.199-4.422
c0.086-1.928,0.17-3.855,0.256-5.783c0.084-1.587,0.17-3.146,0.227-4.705c0.113-1.814,0.197-3.656,0.283-5.471
c0.113-2.211,0.254-4.395,0.369-6.576c0.141-2.523,0.311-5.047,0.453-7.541c0.113-1.898,0.227-3.799,0.367-5.697
c0.086-1.588,0.199-3.203,0.313-4.791c0.143-1.898,0.256-3.826,0.396-5.726c0.113-1.53,0.227-3.09,0.34-4.62
c0.143-2.041,0.285-4.11,0.455-6.151c0.113-1.36,0.197-2.722,0.311-4.054c0.256-3.288,0.512-6.52,0.795-9.779
c0.057-0.822,0.113-1.645,0.197-2.467c0.227-2.664,0.453-5.328,0.682-7.965c0.113-1.248,0.227-2.494,0.34-3.742
c0.17-2.211,0.367-4.422,0.566-6.633c0.143-1.275,0.256-2.58,0.369-3.883c0.227-2.297,0.424-4.593,0.65-6.889
c0.086-1.077,0.199-2.126,0.285-3.175c0.34-3.373,0.65-6.747,0.992-10.091l-53.18-10.942l-0.566,5.612
c-4.648,46.999-8.361,94.11-9.666,141.336c-3.4,122.031,8.73,255.799,75.912,361.19c26.873,42.151,60.32,76.252,99.24,103.04
V585.031L2840.201,585.031z M1724.201,585.031c66.105-59.244,98.789-141.563,112.764-232.102l0.027-0.17
c1.785-11.594,3.289-23.329,4.479-35.178l0.029-0.227c0.283-2.835,0.566-5.641,0.822-8.477l0.084-0.963
c1.021-11.565,1.787-23.188,2.354-34.895c0.027-0.369,0.027-0.737,0.057-1.105c0.113-2.608,0.227-5.216,0.311-7.852l0.086-2.014
c0.086-2.607,0.17-5.188,0.256-7.795c0-0.396,0.027-0.822,0.027-1.219c0.227-8.277,0.34-16.555,0.34-24.832
c0.029-0.793,0.029-1.587,0.029-2.353c0-2.324-0.029-4.677-0.029-7.001c0-1.078,0-2.154-0.027-3.203
c0-2.268-0.029-4.508-0.057-6.747c-0.029-1.105-0.029-2.183-0.057-3.26c-0.113-7.398-0.313-14.825-0.568-22.224
c-0.027-1.304-0.084-2.579-0.113-3.883c-0.084-1.984-0.17-3.969-0.227-5.953c-0.057-1.475-0.141-2.948-0.197-4.422
c-0.086-1.928-0.17-3.855-0.256-5.783c-0.084-1.587-0.141-3.146-0.227-4.705c-0.086-1.814-0.199-3.656-0.283-5.471
c-0.113-2.211-0.256-4.395-0.369-6.576c-0.141-2.523-0.283-5.047-0.453-7.541c-0.113-1.898-0.227-3.799-0.369-5.697
c-0.084-1.588-0.197-3.203-0.311-4.791c-0.113-1.898-0.256-3.826-0.398-5.726c-0.113-1.53-0.227-3.09-0.34-4.62
c-0.141-2.041-0.283-4.11-0.453-6.151c-0.113-1.36-0.199-2.722-0.313-4.054c-0.254-3.288-0.51-6.52-0.764-9.779
c-0.086-0.822-0.143-1.645-0.229-2.467c-0.227-2.664-0.453-5.328-0.68-7.965c-0.113-1.248-0.227-2.494-0.313-3.742
c-0.197-2.211-0.396-4.422-0.594-6.633c-0.143-1.275-0.256-2.58-0.369-3.883c-0.199-2.297-0.426-4.593-0.652-6.889l-0.283-3.175
c-0.34-3.373-0.652-6.747-0.992-10.091l53.178-10.942l0.566,5.612c4.65,46.999,8.363,94.11,9.668,141.336
c3.4,122.031-8.732,255.799-75.912,361.19c-26.873,42.151-60.322,76.252-99.242,103.04V585.031L1724.201,585.031z
M2531.167,12.857l-11.225,17.518c-67.945,105.902-122.061,99.724-237.799,99.724c-115.709,0-169.822,6.179-237.77-99.724
l-11.225-17.518l56.693-11.65c51.391,80.136,78.604,75.629,192.301,74.892c113.699,0.737,140.91,5.244,192.332-74.892
L2531.167,12.857z"/>
</defs>
<clipPath id="Back_Trim_2_Clippath_URL">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#A9BBA8" stroke="#FFFFFF" stroke-width="0.2268" stroke-miterlimit="10" d="
M2840.201,585.031c-66.104-59.273-98.787-141.534-112.762-232.102l-0.027-0.17c-1.787-11.594-3.289-23.329-4.48-35.178
l-0.027-0.227c-0.283-2.835-0.566-5.641-0.822-8.477l-0.084-0.963c-1.021-11.565-1.787-23.188-2.354-34.895
c-0.029-0.369-0.029-0.737-0.057-1.105c-0.113-2.608-0.227-5.216-0.313-7.852l-0.084-2.014c-0.086-2.607-0.17-5.188-0.256-7.795
c0-0.396,0-0.822-0.027-1.219c-0.199-8.277-0.342-16.555-0.342-24.832c0-0.793-0.027-1.587-0.027-2.353
c0-2.324,0.027-4.677,0.027-7.001c0-1.078,0.029-2.154,0.029-3.203c0-2.268,0.027-4.508,0.057-6.747
c0.027-1.105,0.057-2.183,0.057-3.26c0.113-7.398,0.313-14.825,0.566-22.224c0.029-1.304,0.086-2.579,0.113-3.883
c0.086-1.984,0.17-3.969,0.227-5.953c0.086-1.475,0.143-2.948,0.199-4.422c0.086-1.928,0.17-3.855,0.256-5.783
c0.084-1.587,0.17-3.146,0.227-4.705c0.113-1.814,0.197-3.656,0.283-5.471c0.113-2.211,0.254-4.395,0.369-6.576
c0.141-2.523,0.311-5.047,0.453-7.541c0.113-1.898,0.227-3.799,0.367-5.697c0.086-1.588,0.199-3.203,0.313-4.791
c0.143-1.898,0.256-3.826,0.396-5.726c0.113-1.53,0.227-3.09,0.34-4.62c0.143-2.041,0.285-4.11,0.455-6.151
c0.113-1.36,0.197-2.722,0.311-4.054c0.256-3.288,0.512-6.52,0.795-9.779c0.057-0.822,0.113-1.645,0.197-2.467
c0.227-2.664,0.453-5.328,0.682-7.965c0.113-1.248,0.227-2.494,0.34-3.742c0.17-2.211,0.367-4.422,0.566-6.633
c0.143-1.275,0.256-2.58,0.369-3.883c0.227-2.297,0.424-4.593,0.65-6.889c0.086-1.077,0.199-2.126,0.285-3.175
c0.34-3.373,0.65-6.747,0.992-10.091l-53.18-10.942l-0.566,5.612c-4.648,46.999-8.361,94.11-9.666,141.336
c-3.4,122.031,8.73,255.799,75.912,361.19c26.873,42.151,60.32,76.252,99.24,103.04V585.031L2840.201,585.031z M1724.201,585.031
c66.105-59.244,98.789-141.563,112.764-232.102l0.027-0.17c1.785-11.594,3.289-23.329,4.479-35.178l0.029-0.227
c0.283-2.835,0.566-5.641,0.822-8.477l0.084-0.963c1.021-11.565,1.787-23.188,2.354-34.895c0.027-0.369,0.027-0.737,0.057-1.105
c0.113-2.608,0.227-5.216,0.311-7.852l0.086-2.014c0.086-2.607,0.17-5.188,0.256-7.795c0-0.396,0.027-0.822,0.027-1.219
c0.227-8.277,0.34-16.555,0.34-24.832c0.029-0.793,0.029-1.587,0.029-2.353c0-2.324-0.029-4.677-0.029-7.001
c0-1.078,0-2.154-0.027-3.203c0-2.268-0.029-4.508-0.057-6.747c-0.029-1.105-0.029-2.183-0.057-3.26
c-0.113-7.398-0.313-14.825-0.568-22.224c-0.027-1.304-0.084-2.579-0.113-3.883c-0.084-1.984-0.17-3.969-0.227-5.953
c-0.057-1.475-0.141-2.948-0.197-4.422c-0.086-1.928-0.17-3.855-0.256-5.783c-0.084-1.587-0.141-3.146-0.227-4.705
c-0.086-1.814-0.199-3.656-0.283-5.471c-0.113-2.211-0.256-4.395-0.369-6.576c-0.141-2.523-0.283-5.047-0.453-7.541
c-0.113-1.898-0.227-3.799-0.369-5.697c-0.084-1.588-0.197-3.203-0.311-4.791c-0.113-1.898-0.256-3.826-0.398-5.726
c-0.113-1.53-0.227-3.09-0.34-4.62c-0.141-2.041-0.283-4.11-0.453-6.151c-0.113-1.36-0.199-2.722-0.313-4.054
c-0.254-3.288-0.51-6.52-0.764-9.779c-0.086-0.822-0.143-1.645-0.229-2.467c-0.227-2.664-0.453-5.328-0.68-7.965
c-0.113-1.248-0.227-2.494-0.313-3.742c-0.197-2.211-0.396-4.422-0.594-6.633c-0.143-1.275-0.256-2.58-0.369-3.883
c-0.199-2.297-0.426-4.593-0.652-6.889l-0.283-3.175c-0.34-3.373-0.652-6.747-0.992-10.091l53.178-10.942l0.566,5.612
c4.65,46.999,8.363,94.11,9.668,141.336c3.4,122.031-8.732,255.799-75.912,361.19c-26.873,42.151-60.322,76.252-99.242,103.04
V585.031L1724.201,585.031z M2531.167,12.857l-11.225,17.518c-67.945,105.902-122.061,99.724-237.799,99.724
c-115.709,0-169.822,6.179-237.77-99.724l-11.225-17.518l56.693-11.65c51.391,80.136,78.604,75.629,192.301,74.892
c113.699,0.737,140.91,5.244,192.332-74.892L2531.167,12.857z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Prod_QR_Code">
<rect x="2661.58" y="2082.904" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Jock_Tag">
<rect x="2624.789" y="1693.561" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="1778.201" y="130.602" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008.001" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1039.323,1.207l253.927,52.215c-23.215,234.283-27.014,517.945,237.742,601.398
c72.396-22.819,124.668-60.634,162-108.284v1506.671c-563.98,0-1127.99,0-1692,0V546.536
c37.332,47.65,89.631,85.465,162,108.284c264.785-83.453,260.986-367.115,237.742-601.398L654.662,1.207
c8.929,226.347,79.795,377.178,192.273,472.422C959.443,378.385,1030.281,227.554,1039.323,1.207L1039.323,1.207z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_URL">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M1039.323,1.207l253.927,52.215c-23.215,234.283-27.014,517.945,237.742,601.398c72.396-22.819,124.668-60.634,162-108.284
v1506.671c-563.98,0-1127.99,0-1692,0V546.536c37.332,47.65,89.631,85.465,162,108.284
c264.785-83.453,260.986-367.115,237.742-601.398L654.662,1.207c8.929,226.347,79.795,377.178,192.273,472.422
C959.443,378.385,1030.281,227.554,1039.323,1.207L1039.323,1.207z"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M320.513,1995.012l-49.464,58.195 M1464.888,627.068l-234.879,61.938l-0.596,0.709
l192.955,9.155l55.416-65.196C1473.392,631.52,1469.083,629.336,1464.888,627.068L1464.888,627.068z M1350.199,519.777
c5.414,8.646,11.253,17.008,17.518,25.115l-11.168-3.459l-200.665,234l0.397-0.425l259.482-68.343l-66.443,78.122
l-193.606-9.128l-589.294,687.289l265.209-69.166l-66.614,78.35l-198.907-8.844l0.283-0.34l-294.917,343.956l268.073-69.563
l-66.671,78.435l-201.543-8.702v-0.028l-73.587,85.861l268.781-69.676l-66.699,78.463l-202.195-8.674l0.085-0.113
L60.265,2053.207H35.348L1350.199,519.777z M1490.457,639.569c12.756,5.642,26.248,10.743,40.535,15.251
c72.396-22.819,124.668-60.634,162-108.284v1506.104v0.566H296.504L1420.526,731.412L1490.457,639.569z M1196.703,964.334
l-66.502,78.209l-195.59-9.015l0.482-0.566L1196.703,964.334z M758.608,1479.673l-66.643,78.378l-199.56-8.815l0.256-0.312
L758.608,1479.673z M393.505,1909.122l-66.728,78.491l-202.847-8.646l0.057-0.085L393.505,1909.122z M95.414,2053.207
l225.099-58.195 M612.567,1651.453l-66.671,78.435l-200.892-8.759l0.199-0.228L612.567,1651.453z M685.587,1565.563
l-66.643,78.406l-200.239-8.788l0.227-0.255L685.587,1565.563z M904.648,1307.894l-66.585,78.321l-198.255-8.9l0.34-0.369
L904.648,1307.894z M977.64,1222.004l-66.557,78.293l-197.575-8.929l0.368-0.426L977.64,1222.004z M1050.662,1136.114
l-66.529,78.265l-196.923-8.958l0.396-0.453L1050.662,1136.114z M1123.681,1050.225l-66.529,78.236l-196.242-8.986l0.426-0.51
L1123.681,1050.225z M1269.722,878.445l-66.473,78.18l-194.938-9.043l0.51-0.596L1269.722,878.445z M1342.744,792.555
l-66.473,78.152l-194.259-9.071l0.538-0.652L1342.744,792.555z"/>
</defs>
<clipPath id="Front_MainColor_Clippath_URL">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M320.513,1995.012l-49.464,58.195 M1464.888,627.068l-234.879,61.938l-0.596,0.709l192.955,9.155l55.416-65.196
C1473.392,631.52,1469.083,629.336,1464.888,627.068L1464.888,627.068z M1350.199,519.777
c5.414,8.646,11.253,17.008,17.518,25.115l-11.168-3.459l-200.665,234l0.397-0.425l259.482-68.343l-66.443,78.122l-193.606-9.128
l-589.294,687.289l265.209-69.166l-66.614,78.35l-198.907-8.844l0.283-0.34l-294.917,343.956l268.073-69.563l-66.671,78.435
l-201.543-8.702v-0.028l-73.587,85.861l268.781-69.676l-66.699,78.463l-202.195-8.674l0.085-0.113L60.265,2053.207H35.348
L1350.199,519.777z M1490.457,639.569c12.756,5.642,26.248,10.743,40.535,15.251c72.396-22.819,124.668-60.634,162-108.284
v1506.104v0.566H296.504L1420.526,731.412L1490.457,639.569z M1196.703,964.334l-66.502,78.209l-195.59-9.015l0.482-0.566
L1196.703,964.334z M758.608,1479.673l-66.643,78.378l-199.56-8.815l0.256-0.312L758.608,1479.673z M393.505,1909.122
l-66.728,78.491l-202.847-8.646l0.057-0.085L393.505,1909.122z M95.414,2053.207l225.099-58.195 M612.567,1651.453
l-66.671,78.435l-200.892-8.759l0.199-0.228L612.567,1651.453z M685.587,1565.563l-66.643,78.406l-200.239-8.788l0.227-0.255
L685.587,1565.563z M904.648,1307.894l-66.585,78.321l-198.255-8.9l0.34-0.369L904.648,1307.894z M977.64,1222.004
l-66.557,78.293l-197.575-8.929l0.368-0.426L977.64,1222.004z M1050.662,1136.114l-66.529,78.265l-196.923-8.958l0.396-0.453
L1050.662,1136.114z M1123.681,1050.225l-66.529,78.236l-196.242-8.986l0.426-0.51L1123.681,1050.225z M1269.722,878.445
l-66.473,78.18l-194.938-9.043l0.51-0.596L1269.722,878.445z M1342.744,792.555l-66.473,78.152l-194.259-9.071l0.538-0.652
L1342.744,792.555z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M2167.286,2085.904v180h-2160v-180H2167.286z M812.041,510.848l34.895,29.537l34.895-29.537
c148.167-125.461,201.373-311.271,210.756-498.699l-53.263-10.941c-9.042,226.347-79.88,377.178-192.388,472.422
C734.457,378.385,663.59,227.554,654.662,1.207l-53.377,10.971C610.667,199.576,663.902,385.387,812.041,510.848z
M1481.867,694.562v1358.646h98.277V694.562c42.096-16.895,79.994-39.798,112.848-69.222v-78.804
c-2.295,2.977-4.678,5.896-7.115,8.759l-0.057,0.086c-1.785,2.098-3.6,4.166-5.414,6.236c-0.367,0.396-0.736,0.793-1.105,1.219
c-1.955,2.154-3.939,4.279-5.953,6.406c-0.623,0.651-1.246,1.275-1.871,1.928c-1.615,1.672-3.26,3.316-4.932,4.932
c-0.992,0.992-2.012,1.956-3.033,2.948c-1.502,1.417-3.004,2.835-4.535,4.224c-1.248,1.134-2.494,2.268-3.77,3.373
c-1.248,1.105-2.494,2.183-3.742,3.26c-1.615,1.389-3.232,2.721-4.875,4.082c-1.105,0.907-2.24,1.814-3.373,2.693
c-1.73,1.389-3.516,2.777-5.301,4.139c-0.965,0.708-1.9,1.417-2.863,2.125c-2.041,1.531-4.111,3.033-6.236,4.508
c-0.879,0.623-1.787,1.247-2.664,1.871c-2.27,1.53-4.537,3.061-6.832,4.563c-0.709,0.453-1.418,0.907-2.154,1.389
c-2.551,1.616-5.131,3.231-7.768,4.79c-0.596,0.369-1.162,0.709-1.729,1.049c-2.75,1.616-5.527,3.203-8.363,4.763
c-0.48,0.255-0.992,0.538-1.473,0.794c-2.949,1.615-5.926,3.175-8.959,4.733c-0.367,0.171-0.736,0.368-1.105,0.567
c-2.521,1.247-5.045,2.494-7.625,3.713c-1.162,0.539-2.295,1.078-3.457,1.616l-0.199,0.085
c-5.018,2.296-10.176,4.535-15.449,6.661l-0.17,0.085h-0.057c-1.814,0.737-3.629,1.475-5.471,2.184l-0.539,0.197
c-3.74,1.446-7.539,2.835-11.395,4.195l-0.426,0.143c-3.26,1.133-6.547,2.239-9.893,3.316l-0.256,0.085l-0.283,0.085
c-0.51,0.17-1.02,0.34-1.559,0.482c-4.025-1.276-7.994-2.58-11.906-3.941l-0.623-0.227c-3.57-1.247-7.086-2.551-10.545-3.883
c-0.709-0.256-1.389-0.51-2.068-0.794c-2.893-1.134-5.727-2.268-8.533-3.458c-1.303-0.539-2.607-1.077-3.883-1.645
c-2.184-0.936-4.365-1.898-6.492-2.863c-1.699-0.793-3.4-1.559-5.074-2.352c-215.007-101.68-210.302-363.487-188.617-582.236
l-53.178-10.942l-0.538,5.612c-4.677,46.999-8.362,94.11-9.694,141.336c-3.402,122.031,8.759,255.799,75.912,361.19
C1348.98,618.395,1409.215,665.365,1481.867,694.562z M113.868,2053.207h98.277V694.562
c72.652-29.196,132.889-76.167,176.088-143.943c67.181-105.392,79.313-239.159,75.911-361.19
c-1.303-47.226-5.017-94.337-9.666-141.336l-0.566-5.612l-53.178,10.942c21.713,218.749,26.419,480.528-188.589,582.236
c-1.672,0.793-3.373,1.559-5.102,2.352c-2.126,0.965-4.28,1.928-6.463,2.863c-1.304,0.567-2.608,1.105-3.912,1.673
c-2.806,1.162-5.641,2.324-8.532,3.43c-0.68,0.284-1.361,0.538-2.041,0.794c-3.458,1.332-7.001,2.636-10.573,3.883l-0.595,0.227
c-3.912,1.361-7.88,2.665-11.934,3.941c-0.51-0.143-1.049-0.313-1.559-0.482l-0.227-0.085l-0.34-0.113
c-3.317-1.049-6.605-2.155-9.836-3.288l-0.454-0.143c-3.855-1.36-7.653-2.749-11.395-4.195l-0.51-0.197
c-1.843-0.709-3.657-1.446-5.471-2.184c-5.13-2.068-10.12-4.223-15.023-6.435l-0.198-0.113l-0.397-0.17l-0.397-0.198
l-0.255-0.113l-0.057-0.029l-0.198-0.084c-0.936-0.426-1.899-0.879-2.806-1.305c-2.58-1.219-5.131-2.466-7.625-3.713
c-0.368-0.199-0.737-0.396-1.134-0.567c-3.004-1.559-6.009-3.118-8.929-4.733c-0.511-0.256-0.992-0.539-1.474-0.794
c-2.835-1.56-5.613-3.146-8.362-4.763c-0.567-0.34-1.162-0.68-1.729-1.049c-2.637-1.559-5.216-3.174-7.795-4.79
c-0.708-0.481-1.417-0.936-2.126-1.389c-2.296-1.503-4.592-3.033-6.832-4.563c-0.907-0.624-1.786-1.248-2.693-1.871
c-2.098-1.475-4.167-2.977-6.236-4.508c-0.936-0.708-1.899-1.417-2.834-2.125c-1.786-1.361-3.572-2.75-5.329-4.139
c-1.105-0.879-2.239-1.786-3.374-2.693c-1.616-1.361-3.231-2.693-4.847-4.082c-1.275-1.077-2.522-2.154-3.77-3.26
c-1.247-1.105-2.523-2.239-3.742-3.373c-1.531-1.389-3.062-2.807-4.535-4.224c-1.021-0.992-2.041-1.956-3.062-2.948
c-1.645-1.615-3.288-3.26-4.904-4.932c-0.624-0.652-1.247-1.276-1.871-1.928c-2.041-2.127-4.025-4.252-5.981-6.406
c-0.34-0.426-0.709-0.822-1.077-1.219c-1.843-2.07-3.628-4.139-5.415-6.236l-0.057-0.086c-2.438-2.863-4.819-5.782-7.143-8.759
v78.804c32.854,29.424,70.781,52.327,112.875,69.222V2053.207z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_URL">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_URL)" fill="#EBFFF0" stroke="#FFFFFF" stroke-width="0.2268" stroke-miterlimit="10" d="
M2167.286,2085.904v180h-2160v-180H2167.286z M812.041,510.848l34.895,29.537l34.895-29.537
c148.167-125.461,201.373-311.271,210.756-498.699l-53.263-10.941c-9.042,226.347-79.88,377.178-192.388,472.422
C734.457,378.385,663.59,227.554,654.662,1.207l-53.377,10.971C610.667,199.576,663.902,385.387,812.041,510.848z
M1481.867,694.562v1358.646h98.277V694.562c42.096-16.895,79.994-39.798,112.848-69.222v-78.804
c-2.295,2.977-4.678,5.896-7.115,8.759l-0.057,0.086c-1.785,2.098-3.6,4.166-5.414,6.236c-0.367,0.396-0.736,0.793-1.105,1.219
c-1.955,2.154-3.939,4.279-5.953,6.406c-0.623,0.651-1.246,1.275-1.871,1.928c-1.615,1.672-3.26,3.316-4.932,4.932
c-0.992,0.992-2.012,1.956-3.033,2.948c-1.502,1.417-3.004,2.835-4.535,4.224c-1.248,1.134-2.494,2.268-3.77,3.373
c-1.248,1.105-2.494,2.183-3.742,3.26c-1.615,1.389-3.232,2.721-4.875,4.082c-1.105,0.907-2.24,1.814-3.373,2.693
c-1.73,1.389-3.516,2.777-5.301,4.139c-0.965,0.708-1.9,1.417-2.863,2.125c-2.041,1.531-4.111,3.033-6.236,4.508
c-0.879,0.623-1.787,1.247-2.664,1.871c-2.27,1.53-4.537,3.061-6.832,4.563c-0.709,0.453-1.418,0.907-2.154,1.389
c-2.551,1.616-5.131,3.231-7.768,4.79c-0.596,0.369-1.162,0.709-1.729,1.049c-2.75,1.616-5.527,3.203-8.363,4.763
c-0.48,0.255-0.992,0.538-1.473,0.794c-2.949,1.615-5.926,3.175-8.959,4.733c-0.367,0.171-0.736,0.368-1.105,0.567
c-2.521,1.247-5.045,2.494-7.625,3.713c-1.162,0.539-2.295,1.078-3.457,1.616l-0.199,0.085
c-5.018,2.296-10.176,4.535-15.449,6.661l-0.17,0.085h-0.057c-1.814,0.737-3.629,1.475-5.471,2.184l-0.539,0.197
c-3.74,1.446-7.539,2.835-11.395,4.195l-0.426,0.143c-3.26,1.133-6.547,2.239-9.893,3.316l-0.256,0.085l-0.283,0.085
c-0.51,0.17-1.02,0.34-1.559,0.482c-4.025-1.276-7.994-2.58-11.906-3.941l-0.623-0.227c-3.57-1.247-7.086-2.551-10.545-3.883
c-0.709-0.256-1.389-0.51-2.068-0.794c-2.893-1.134-5.727-2.268-8.533-3.458c-1.303-0.539-2.607-1.077-3.883-1.645
c-2.184-0.936-4.365-1.898-6.492-2.863c-1.699-0.793-3.4-1.559-5.074-2.352c-215.007-101.68-210.302-363.487-188.617-582.236
l-53.178-10.942l-0.538,5.612c-4.677,46.999-8.362,94.11-9.694,141.336c-3.402,122.031,8.759,255.799,75.912,361.19
C1348.98,618.395,1409.215,665.365,1481.867,694.562z M113.868,2053.207h98.277V694.562
c72.652-29.196,132.889-76.167,176.088-143.943c67.181-105.392,79.313-239.159,75.911-361.19
c-1.303-47.226-5.017-94.337-9.666-141.336l-0.566-5.612l-53.178,10.942c21.713,218.749,26.419,480.528-188.589,582.236
c-1.672,0.793-3.373,1.559-5.102,2.352c-2.126,0.965-4.28,1.928-6.463,2.863c-1.304,0.567-2.608,1.105-3.912,1.673
c-2.806,1.162-5.641,2.324-8.532,3.43c-0.68,0.284-1.361,0.538-2.041,0.794c-3.458,1.332-7.001,2.636-10.573,3.883l-0.595,0.227
c-3.912,1.361-7.88,2.665-11.934,3.941c-0.51-0.143-1.049-0.313-1.559-0.482l-0.227-0.085l-0.34-0.113
c-3.317-1.049-6.605-2.155-9.836-3.288l-0.454-0.143c-3.855-1.36-7.653-2.749-11.395-4.195l-0.51-0.197
c-1.843-0.709-3.657-1.446-5.471-2.184c-5.13-2.068-10.12-4.223-15.023-6.435l-0.198-0.113l-0.397-0.17l-0.397-0.198
l-0.255-0.113l-0.057-0.029l-0.198-0.084c-0.936-0.426-1.899-0.879-2.806-1.305c-2.58-1.219-5.131-2.466-7.625-3.713
c-0.368-0.199-0.737-0.396-1.134-0.567c-3.004-1.559-6.009-3.118-8.929-4.733c-0.511-0.256-0.992-0.539-1.474-0.794
c-2.835-1.56-5.613-3.146-8.362-4.763c-0.567-0.34-1.162-0.68-1.729-1.049c-2.637-1.559-5.216-3.174-7.795-4.79
c-0.708-0.481-1.417-0.936-2.126-1.389c-2.296-1.503-4.592-3.033-6.832-4.563c-0.907-0.624-1.786-1.248-2.693-1.871
c-2.098-1.475-4.167-2.977-6.236-4.508c-0.936-0.708-1.899-1.417-2.834-2.125c-1.786-1.361-3.572-2.75-5.329-4.139
c-1.105-0.879-2.239-1.786-3.374-2.693c-1.616-1.361-3.231-2.693-4.847-4.082c-1.275-1.077-2.522-2.154-3.77-3.26
c-1.247-1.105-2.523-2.239-3.742-3.373c-1.531-1.389-3.062-2.807-4.535-4.224c-1.021-0.992-2.041-1.956-3.062-2.948
c-1.645-1.615-3.288-3.26-4.904-4.932c-0.624-0.652-1.247-1.276-1.871-1.928c-2.041-2.127-4.025-4.252-5.981-6.406
c-0.34-0.426-0.709-0.822-1.077-1.219c-1.843-2.07-3.628-4.139-5.415-6.236l-0.057-0.086c-2.438-2.863-4.819-5.782-7.143-8.759
v78.804c32.854,29.424,70.781,52.327,112.875,69.222V2053.207z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M1596.699,687.503v1365.704h-16.555V694.562
C1585.728,692.322,1591.257,689.969,1596.699,687.503L1596.699,687.503z M228.699,687.503v1365.704h-16.555V694.562
C217.757,692.322,223.257,689.969,228.699,687.503L228.699,687.503z M113.868,2053.207H97.285V687.503
c5.471,2.466,10.97,4.819,16.583,7.059V2053.207z M1543.435,761.204h24.748v24.774h-24.748V761.204z M175.436,761.204h24.747
v24.774h-24.747V761.204z M150.576,736.43h24.775v24.774h-24.775V736.43z M125.801,761.204h24.775v24.774h-24.775V761.204z
M150.576,785.979h24.775v24.775h-24.775V785.979z M175.436,919.604h24.747v24.775h-24.747V919.604z M150.576,894.829h24.775
v24.774h-24.775V894.829z M125.801,919.604h24.775v24.775h-24.775V919.604z M150.576,944.379h24.775v24.775h-24.775V944.379z
M175.436,1076.983h24.747v24.775h-24.747V1076.983z M150.576,1052.209h24.775v24.774h-24.775V1052.209z M125.801,1076.983
h24.775v24.775h-24.775V1076.983z M150.576,1101.759h24.775v24.746h-24.775V1101.759z M175.436,1235.384h24.747v24.774h-24.747
V1235.384z M150.576,1210.608h24.775v24.775h-24.775V1210.608z M125.801,1235.384h24.775v24.774h-24.775V1235.384z
M150.576,1260.158h24.775v24.746h-24.775V1260.158z M175.436,1383.777h24.747v24.774h-24.747V1383.777z M150.576,1359.002
h24.775v24.775h-24.775V1359.002z M125.801,1383.777h24.775v24.774h-24.775V1383.777z M150.576,1408.552h24.775v24.775h-24.775
V1408.552z M175.436,1542.178h24.747v24.774h-24.747V1542.178z M150.576,1517.402h24.775v24.775h-24.775V1517.402z
M125.801,1542.178h24.775v24.774h-24.775V1542.178z M150.576,1566.952h24.775v24.774h-24.775V1566.952z M175.436,1699.557
h24.747v24.775h-24.747V1699.557z M150.576,1674.782h24.775v24.774h-24.775V1674.782z M125.801,1699.557h24.775v24.775h-24.775
V1699.557z M150.576,1724.332h24.775v24.774h-24.775V1724.332z M175.436,1857.957h24.747v24.774h-24.747V1857.957z
M150.576,1833.182h24.775v24.775h-24.775V1833.182z M125.801,1857.957h24.775v24.774h-24.775V1857.957z M150.576,1882.731
h24.775v24.775h-24.775V1882.731z M175.436,2028.688h24.747v24.52h-24.747V2028.688z M150.576,2053.207h-24.775v-24.52h24.775
V2053.207z M150.576,2003.941h24.775v24.746h-24.775V2003.941z M1543.435,2028.688h24.748v24.52h-24.748V2028.688z
M1518.576,2053.207h-24.773v-24.52h24.773V2053.207z M1518.576,2003.941h24.775v24.746h-24.775V2003.941z M1543.435,1857.957
h24.748v24.774h-24.748V1857.957z M1518.576,1833.182h24.775v24.775h-24.775V1833.182z M1493.802,1857.957h24.773v24.774
h-24.773V1857.957z M1518.576,1882.731h24.775v24.775h-24.775V1882.731z M1543.435,1699.557h24.748v24.775h-24.748V1699.557z
M1518.576,1674.782h24.775v24.774h-24.775V1674.782z M1493.802,1699.557h24.773v24.775h-24.773V1699.557z M1518.576,1724.332
h24.775v24.774h-24.775V1724.332z M1543.435,1542.178h24.748v24.774h-24.748V1542.178z M1518.576,1517.402h24.775v24.775
h-24.775V1517.402z M1493.802,1542.178h24.773v24.774h-24.773V1542.178z M1518.576,1566.952h24.775v24.774h-24.775V1566.952z
M1543.435,1383.777h24.748v24.774h-24.748V1383.777z M1518.576,1359.002h24.775v24.775h-24.775V1359.002z M1493.802,1383.777
h24.773v24.774h-24.773V1383.777z M1518.576,1408.552h24.775v24.775h-24.775V1408.552z M1543.435,1235.384h24.748v24.774
h-24.748V1235.384z M1518.576,1210.608h24.775v24.775h-24.775V1210.608z M1493.802,1235.384h24.773v24.774h-24.773V1235.384z
M1518.576,1260.158h24.775v24.746h-24.775V1260.158z M1543.435,1076.983h24.748v24.775h-24.748V1076.983z M1518.576,1052.209
h24.775v24.774h-24.775V1052.209z M1493.802,1076.983h24.773v24.775h-24.773V1076.983z M1518.576,1101.759h24.775v24.746
h-24.775V1101.759z M1543.435,919.604h24.748v24.775h-24.748V919.604z M1518.576,894.829h24.775v24.774h-24.775V894.829z
M1493.802,919.604h24.773v24.775h-24.773V919.604z M1518.576,944.379h24.775v24.775h-24.775V944.379z M1518.576,736.43h24.775
v24.774h-24.775V736.43z M1493.802,761.204h24.773v24.774h-24.773V761.204z M1518.576,785.979h24.775v24.775h-24.775V785.979z
M1481.867,2053.207h-16.582V687.503c5.443,2.466,10.971,4.819,16.582,7.059V2053.207z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_URL">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#010149" d="
M1596.699,687.503v1365.704h-16.555V694.562C1585.728,692.322,1591.257,689.969,1596.699,687.503L1596.699,687.503z
M228.699,687.503v1365.704h-16.555V694.562C217.757,692.322,223.257,689.969,228.699,687.503L228.699,687.503z
M113.868,2053.207H97.285V687.503c5.471,2.466,10.97,4.819,16.583,7.059V2053.207z M1543.435,761.204h24.748v24.774h-24.748
V761.204z M175.436,761.204h24.747v24.774h-24.747V761.204z M150.576,736.43h24.775v24.774h-24.775V736.43z M125.801,761.204
h24.775v24.774h-24.775V761.204z M150.576,785.979h24.775v24.775h-24.775V785.979z M175.436,919.604h24.747v24.775h-24.747
V919.604z M150.576,894.829h24.775v24.774h-24.775V894.829z M125.801,919.604h24.775v24.775h-24.775V919.604z M150.576,944.379
h24.775v24.775h-24.775V944.379z M175.436,1076.983h24.747v24.775h-24.747V1076.983z M150.576,1052.209h24.775v24.774h-24.775
V1052.209z M125.801,1076.983h24.775v24.775h-24.775V1076.983z M150.576,1101.759h24.775v24.746h-24.775V1101.759z
M175.436,1235.384h24.747v24.774h-24.747V1235.384z M150.576,1210.608h24.775v24.775h-24.775V1210.608z M125.801,1235.384
h24.775v24.774h-24.775V1235.384z M150.576,1260.158h24.775v24.746h-24.775V1260.158z M175.436,1383.777h24.747v24.774h-24.747
V1383.777z M150.576,1359.002h24.775v24.775h-24.775V1359.002z M125.801,1383.777h24.775v24.774h-24.775V1383.777z
M150.576,1408.552h24.775v24.775h-24.775V1408.552z M175.436,1542.178h24.747v24.774h-24.747V1542.178z M150.576,1517.402
h24.775v24.775h-24.775V1517.402z M125.801,1542.178h24.775v24.774h-24.775V1542.178z M150.576,1566.952h24.775v24.774h-24.775
V1566.952z M175.436,1699.557h24.747v24.775h-24.747V1699.557z M150.576,1674.782h24.775v24.774h-24.775V1674.782z
M125.801,1699.557h24.775v24.775h-24.775V1699.557z M150.576,1724.332h24.775v24.774h-24.775V1724.332z M175.436,1857.957
h24.747v24.774h-24.747V1857.957z M150.576,1833.182h24.775v24.775h-24.775V1833.182z M125.801,1857.957h24.775v24.774h-24.775
V1857.957z M150.576,1882.731h24.775v24.775h-24.775V1882.731z M175.436,2028.688h24.747v24.52h-24.747V2028.688z
M150.576,2053.207h-24.775v-24.52h24.775V2053.207z M150.576,2003.941h24.775v24.746h-24.775V2003.941z M1543.435,2028.688
h24.748v24.52h-24.748V2028.688z M1518.576,2053.207h-24.773v-24.52h24.773V2053.207z M1518.576,2003.941h24.775v24.746h-24.775
V2003.941z M1543.435,1857.957h24.748v24.774h-24.748V1857.957z M1518.576,1833.182h24.775v24.775h-24.775V1833.182z
M1493.802,1857.957h24.773v24.774h-24.773V1857.957z M1518.576,1882.731h24.775v24.775h-24.775V1882.731z M1543.435,1699.557
h24.748v24.775h-24.748V1699.557z M1518.576,1674.782h24.775v24.774h-24.775V1674.782z M1493.802,1699.557h24.773v24.775h-24.773
V1699.557z M1518.576,1724.332h24.775v24.774h-24.775V1724.332z M1543.435,1542.178h24.748v24.774h-24.748V1542.178z
M1518.576,1517.402h24.775v24.775h-24.775V1517.402z M1493.802,1542.178h24.773v24.774h-24.773V1542.178z M1518.576,1566.952
h24.775v24.774h-24.775V1566.952z M1543.435,1383.777h24.748v24.774h-24.748V1383.777z M1518.576,1359.002h24.775v24.775h-24.775
V1359.002z M1493.802,1383.777h24.773v24.774h-24.773V1383.777z M1518.576,1408.552h24.775v24.775h-24.775V1408.552z
M1543.435,1235.384h24.748v24.774h-24.748V1235.384z M1518.576,1210.608h24.775v24.775h-24.775V1210.608z M1493.802,1235.384
h24.773v24.774h-24.773V1235.384z M1518.576,1260.158h24.775v24.746h-24.775V1260.158z M1543.435,1076.983h24.748v24.775h-24.748
V1076.983z M1518.576,1052.209h24.775v24.774h-24.775V1052.209z M1493.802,1076.983h24.773v24.775h-24.773V1076.983z
M1518.576,1101.759h24.775v24.746h-24.775V1101.759z M1543.435,919.604h24.748v24.775h-24.748V919.604z M1518.576,894.829
h24.775v24.774h-24.775V894.829z M1493.802,919.604h24.773v24.775h-24.773V919.604z M1518.576,944.379h24.775v24.775h-24.775
V944.379z M1518.576,736.43h24.775v24.774h-24.775V736.43z M1493.802,761.204h24.773v24.774h-24.773V761.204z M1518.576,785.979
h24.775v24.775h-24.775V785.979z M1481.867,2053.207h-16.582V687.503c5.443,2.466,10.971,4.819,16.582,7.059V2053.207z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M150.576,761.204h24.775v24.774h-24.775V761.204z M1518.576,761.204h24.775v24.774h-24.775
V761.204z M1518.576,2028.688h24.775v24.52h-24.775V2028.688z M1518.576,1857.957h24.775v24.774h-24.775V1857.957z
M1518.576,1699.557h24.775v24.775h-24.775V1699.557z M1518.576,1235.384h24.775v24.774h-24.775V1235.384z M1518.576,1076.983
h24.775v24.775h-24.775V1076.983z M1518.576,1542.178h24.775v24.774h-24.775V1542.178z M1518.576,1383.777h24.775v24.774
h-24.775V1383.777z M1518.576,919.604h24.775v24.775h-24.775V919.604z M150.576,2028.688h24.775v24.52h-24.775V2028.688z
M150.576,1857.957h24.775v24.774h-24.775V1857.957z M150.576,1699.557h24.775v24.775h-24.775V1699.557z M150.576,1235.384
h24.775v24.774h-24.775V1235.384z M150.576,1076.983h24.775v24.775h-24.775V1076.983z M150.576,1542.178h24.775v24.774h-24.775
V1542.178z M150.576,1383.777h24.775v24.774h-24.775V1383.777z M150.576,919.604h24.775v24.775h-24.775V919.604z"/>
</defs>
<clipPath id="Front_Trim_4_Clippath_URL">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FF6100" d="
M150.576,761.204h24.775v24.774h-24.775V761.204z M1518.576,761.204h24.775v24.774h-24.775V761.204z M1518.576,2028.688h24.775
v24.52h-24.775V2028.688z M1518.576,1857.957h24.775v24.774h-24.775V1857.957z M1518.576,1699.557h24.775v24.775h-24.775
V1699.557z M1518.576,1235.384h24.775v24.774h-24.775V1235.384z M1518.576,1076.983h24.775v24.775h-24.775V1076.983z
M1518.576,1542.178h24.775v24.774h-24.775V1542.178z M1518.576,1383.777h24.775v24.774h-24.775V1383.777z M1518.576,919.604
h24.775v24.775h-24.775V919.604z M150.576,2028.688h24.775v24.52h-24.775V2028.688z M150.576,1857.957h24.775v24.774h-24.775
V1857.957z M150.576,1699.557h24.775v24.775h-24.775V1699.557z M150.576,1235.384h24.775v24.774h-24.775V1235.384z
M150.576,1076.983h24.775v24.775h-24.775V1076.983z M150.576,1542.178h24.775v24.774h-24.775V1542.178z M150.576,1383.777
h24.775v24.774h-24.775V1383.777z M150.576,919.604h24.775v24.775h-24.775V919.604z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="1033.262" y="1672.602" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="779.169" y="183.433" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="342.598" y="324.269" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -0,0 +1,500 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="2703.365px" height="2199.97px" viewBox="0 0 2703.365 2199.97" enable-background="new 0 0 2703.365 2199.97"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M2372.704,3.332l253.927,52.214c-14.201,160.838-32.712,367.484,75.742,491.612v1436.173
h-1044V547.158c108.425-124.128,89.943-330.774,75.742-491.612l253.87-52.214c51.421,80.136,78.634,75.628,192.331,74.892
C2294.014,78.96,2321.227,83.468,2372.704,3.332L2372.704,3.332z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_URL">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#00FFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M2372.704,3.332l253.927,52.214c-14.201,160.838-32.712,367.484,75.742,491.612v1436.173h-1044V547.158
c108.425-124.128,89.943-330.774,75.742-491.612l253.87-52.214c51.421,80.136,78.634,75.628,192.331,74.892
C2294.014,78.96,2321.227,83.468,2372.704,3.332L2372.704,3.332z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M1658.373,582.479l138.982,36.652l0.624,0.709l-139.606,6.633V582.479z
M2702.373,1645.526v29.055l-241.398-281.508l0.283,0.34l-198.907,8.844l-66.614-78.35l265.238,69.166l-589.323-687.288
l-193.605,9.128l-19.673-23.13v-42.69l212.712,56.041l0.396,0.425l-178.44-208.063c0.283-0.51,0.566-1.021,0.85-1.559
c0.822-1.503,1.645-3.033,2.467-4.564c0.396-0.766,0.794-1.531,1.19-2.324c0.737-1.445,1.474-2.892,2.211-4.338
c0.425-0.878,0.851-1.757,1.275-2.636c0.454-0.935,0.907-1.843,1.333-2.778L2702.373,1645.526z M2702.373,1723.14v16.385
l-147.884,6.377l-66.671-78.434L2702.373,1723.14z M2702.373,1790.038v38.578l-74.835,3.203l-66.699-78.463L2702.373,1790.038z
M2702.373,1856.991v60.689l-1.786,0.057l-66.728-78.49L2702.373,1856.991z M2702.373,1949.798v33.533h-1044V722.142
L2702.373,1949.798z M1830.663,894.46l66.501,78.208l195.59-9.015l-0.453-0.567L1830.663,894.46z M2268.757,1409.798
l66.643,78.377l199.56-8.814l-0.255-0.313L2268.757,1409.798z M2414.798,1581.577l66.671,78.436l200.892-8.76l-0.198-0.227
L2414.798,1581.577z M2341.777,1495.688l66.643,78.406l200.239-8.789l-0.227-0.254L2341.777,1495.688z M2122.745,1238.019
l66.557,78.32l198.256-8.9l-0.341-0.369L2122.745,1238.019z M2049.725,1152.128l66.557,78.293l197.575-8.928l-0.368-0.426
L2049.725,1152.128z M1976.704,1066.239l66.528,78.264l196.923-8.957l-0.396-0.453L1976.704,1066.239z M1903.684,980.35
l66.529,78.236l196.242-8.986l-0.426-0.51L1903.684,980.35z M1757.643,808.57l66.473,78.18l194.938-9.043l-0.511-0.596
L1757.643,808.57z M1684.622,722.68l66.472,78.152l194.259-9.071l-0.538-0.652L1684.622,722.68z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_URL">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M1658.373,582.479l138.982,36.652l0.624,0.709l-139.606,6.633V582.479z M2702.373,1645.526v29.055l-241.398-281.508l0.283,0.34
l-198.907,8.844l-66.614-78.35l265.238,69.166l-589.323-687.288l-193.605,9.128l-19.673-23.13v-42.69l212.712,56.041l0.396,0.425
l-178.44-208.063c0.283-0.51,0.566-1.021,0.85-1.559c0.822-1.503,1.645-3.033,2.467-4.564c0.396-0.766,0.794-1.531,1.19-2.324
c0.737-1.445,1.474-2.892,2.211-4.338c0.425-0.878,0.851-1.757,1.275-2.636c0.454-0.935,0.907-1.843,1.333-2.778
L2702.373,1645.526z M2702.373,1723.14v16.385l-147.884,6.377l-66.671-78.434L2702.373,1723.14z M2702.373,1790.038v38.578
l-74.835,3.203l-66.699-78.463L2702.373,1790.038z M2702.373,1856.991v60.689l-1.786,0.057l-66.728-78.49L2702.373,1856.991z
M2702.373,1949.798v33.533h-1044V722.142L2702.373,1949.798z M1830.663,894.46l66.501,78.208l195.59-9.015l-0.453-0.567
L1830.663,894.46z M2268.757,1409.798l66.643,78.377l199.56-8.814l-0.255-0.313L2268.757,1409.798z M2414.798,1581.577
l66.671,78.436l200.892-8.76l-0.198-0.227L2414.798,1581.577z M2341.777,1495.688l66.643,78.406l200.239-8.789l-0.227-0.254
L2341.777,1495.688z M2122.745,1238.019l66.557,78.32l198.256-8.9l-0.341-0.369L2122.745,1238.019z M2049.725,1152.128
l66.557,78.293l197.575-8.928l-0.368-0.426L2049.725,1152.128z M1976.704,1066.239l66.528,78.264l196.923-8.957l-0.396-0.453
L1976.704,1066.239z M1903.684,980.35l66.529,78.236l196.242-8.986l-0.426-0.51L1903.684,980.35z M1757.643,808.57l66.473,78.18
l194.938-9.043l-0.511-0.596L1757.643,808.57z M1684.622,722.68l66.472,78.152l194.259-9.071l-0.538-0.652L1684.622,722.68z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M2626.631,55.546l-0.765,8.59l-0.199,2.352l-0.595,6.577l-0.283,3.486
c-0.171,1.956-0.341,3.94-0.511,5.925l-0.283,3.203c-0.255,2.891-0.511,5.783-0.737,8.702l-0.255,3.005
c-0.17,2.013-0.34,3.996-0.511,6.01c-0.113,1.332-0.198,2.664-0.312,3.996c-0.142,1.758-0.283,3.516-0.425,5.273
c-0.113,1.332-0.198,2.664-0.313,3.996c-0.17,2.239-0.34,4.508-0.51,6.746c-0.113,1.332-0.227,2.693-0.312,4.025
c-0.17,2.381-0.369,4.791-0.539,7.172c-0.085,1.389-0.17,2.807-0.283,4.195c-0.113,1.701-0.227,3.401-0.34,5.103
c-0.114,1.474-0.199,2.976-0.313,4.479c-0.113,1.7-0.198,3.373-0.312,5.074c-0.085,1.474-0.198,2.948-0.283,4.422
c-0.17,2.835-0.341,5.698-0.511,8.532c-0.085,1.502-0.142,3.005-0.227,4.508c-0.085,1.587-0.17,3.203-0.255,4.79
c-0.085,1.673-0.17,3.345-0.255,4.989c-0.058,1.474-0.114,2.947-0.199,4.45c-0.085,1.673-0.142,3.345-0.227,5.046
c-0.057,1.502-0.113,3.033-0.17,4.535c-0.113,2.977-0.227,5.953-0.312,8.93c-0.057,1.445-0.085,2.891-0.142,4.365
c-0.058,1.757-0.086,3.514-0.143,5.301c-0.028,1.359-0.057,2.749-0.085,4.109c-0.057,1.814-0.085,3.6-0.113,5.387
c-0.028,1.332-0.028,2.636-0.057,3.968c-0.028,1.843-0.057,3.714-0.085,5.585c0,0.623,0,1.246,0,1.87
c-0.028,3.997-0.028,7.993-0.028,12.019c0,1.219,0,2.438,0.028,3.686c0,1.871,0.028,3.77,0.028,5.641
c0.028,1.219,0.057,2.467,0.057,3.686c0.028,1.928,0.085,3.855,0.113,5.783c0.028,1.048,0.057,2.097,0.085,3.146
c0.085,3.997,0.228,7.994,0.369,11.991c0.028,0.736,0.057,1.474,0.085,2.211c0.085,2.012,0.17,4.025,0.283,6.037
c0.057,1.078,0.085,2.154,0.142,3.232c0.113,1.984,0.227,3.968,0.341,5.952c0.057,1.077,0.142,2.126,0.198,3.203
c0.425,6.804,0.936,13.606,1.559,20.353c0.085,0.907,0.17,1.814,0.255,2.722c0.171,2.041,0.397,4.054,0.596,6.065
c0.085,0.992,0.198,1.984,0.312,2.977c0.227,2.041,0.454,4.082,0.681,6.123c0.085,0.766,0.198,1.531,0.283,2.297
c0.567,4.619,1.162,9.212,1.814,13.775l0.085,0.539c0.283,2.069,0.596,4.139,0.936,6.207c0.142,0.908,0.283,1.814,0.425,2.723
c0.313,2.012,0.652,4.024,0.992,6.037c0.142,0.879,0.312,1.758,0.454,2.637c1.219,6.774,2.522,13.492,3.968,20.154
c0.171,0.708,0.313,1.445,0.482,2.125c0.425,2.014,0.907,3.998,1.36,5.981c0.198,0.879,0.426,1.729,0.624,2.608
c0.481,1.984,0.964,3.969,1.474,5.953c0.17,0.651,0.34,1.303,0.511,1.927c1.729,6.604,3.571,13.124,5.584,19.587
c0.255,0.795,0.51,1.616,0.766,2.41c0.623,1.898,1.219,3.799,1.87,5.697c0.256,0.794,0.539,1.588,0.794,2.381
c2.183,6.35,4.507,12.615,7.002,18.766c0.255,0.624,0.51,1.275,0.765,1.899c0.737,1.813,1.503,3.628,2.297,5.442
c0.34,0.822,0.708,1.645,1.049,2.467c0.793,1.785,1.587,3.571,2.409,5.357c0.312,0.651,0.623,1.304,0.936,1.983
c2.777,5.896,5.697,11.736,8.815,17.434c0.425,0.766,0.851,1.559,1.275,2.324c0.907,1.672,1.871,3.316,2.835,4.989
c0.425,0.765,0.907,1.53,1.36,2.296c0.992,1.701,1.984,3.373,3.033,5.045c0.113,0.199,0.227,0.369,0.34,0.568
c2.269,3.627,4.593,7.171,7.002,10.686c0.453,0.652,0.879,1.305,1.332,1.956c1.077,1.53,2.183,3.062,3.288,4.593
c0.596,0.793,1.162,1.587,1.758,2.381c1.105,1.502,2.239,3.004,3.373,4.479c0.567,0.709,1.134,1.418,1.701,2.126
c2.749,3.458,5.556,6.888,8.504,10.261l0,0v74.608c-28.715-23.13-53.547-51.165-73.928-84.358
c-85.663-139.493-69.449-330.067-55.615-486.624l0.566-6.18L2626.631,55.546z M1787.35,44.604l-53.234,10.941l0.736,8.59
l0.227,2.352l0.567,6.577l0.312,3.486l0.511,5.925l0.283,3.203c0.227,2.891,0.481,5.783,0.737,8.702l0.255,3.005
c0.142,2.013,0.312,3.996,0.481,6.01l0.341,3.996c0.142,1.758,0.255,3.516,0.396,5.273c0.113,1.332,0.227,2.664,0.34,3.996
c0.171,2.239,0.341,4.508,0.511,6.746c0.085,1.332,0.198,2.693,0.283,4.025c0.198,2.381,0.369,4.791,0.539,7.172
c0.085,1.389,0.198,2.807,0.283,4.195c0.113,1.701,0.255,3.401,0.368,5.103c0.085,1.474,0.198,2.976,0.284,4.479
c0.113,1.7,0.227,3.373,0.34,5.074c0.085,1.474,0.17,2.948,0.255,4.422c0.17,2.835,0.341,5.698,0.511,8.532
c0.085,1.502,0.17,3.005,0.255,4.508c0.085,1.587,0.17,3.203,0.227,4.79c0.085,1.673,0.17,3.345,0.255,4.989
c0.057,1.474,0.143,2.947,0.199,4.45c0.085,1.673,0.17,3.345,0.227,5.046c0.057,1.502,0.113,3.033,0.17,4.535
c0.113,2.977,0.227,5.953,0.312,8.93c0.057,1.445,0.113,2.891,0.142,4.365c0.057,1.757,0.113,3.514,0.142,5.301
c0.028,1.359,0.085,2.749,0.114,4.109c0.028,1.814,0.057,3.6,0.085,5.387c0.028,1.332,0.057,2.636,0.085,3.968
c0,1.843,0.028,3.714,0.057,5.585c0,0.623,0,1.246,0,1.87c0.057,3.997,0.057,7.993,0.028,12.019c0,1.219,0,2.438,0,3.686
c-0.028,1.871-0.028,3.77-0.057,5.641c-0.028,1.219-0.028,2.467-0.057,3.686c-0.028,1.928-0.057,3.855-0.113,5.783
c0,1.048-0.028,2.097-0.058,3.146c-0.113,3.997-0.227,7.994-0.396,11.991c-0.028,0.736-0.057,1.474-0.085,2.211
c-0.085,2.012-0.17,4.025-0.255,6.037c-0.057,1.078-0.113,2.154-0.17,3.232c-0.113,1.984-0.199,3.968-0.341,5.952
c-0.057,1.049-0.113,2.126-0.198,3.203c-0.425,6.804-0.936,13.606-1.559,20.353c-0.057,0.907-0.143,1.814-0.227,2.722
c-0.199,2.041-0.397,4.054-0.596,6.065c-0.113,0.992-0.227,1.984-0.34,2.977c-0.199,2.041-0.426,4.082-0.681,6.123
c-0.085,0.766-0.17,1.531-0.283,2.297c-0.539,4.619-1.134,9.212-1.814,13.775c0,0.17-0.028,0.369-0.057,0.539
c-0.312,2.069-0.624,4.139-0.936,6.207c-0.142,0.908-0.283,1.814-0.425,2.723c-0.341,2.012-0.681,4.024-1.021,6.037
c-0.142,0.879-0.313,1.758-0.454,2.637c-1.19,6.774-2.522,13.492-3.969,20.154c-0.142,0.708-0.312,1.445-0.453,2.125
c-0.453,2.014-0.907,3.998-1.389,5.981c-0.199,0.879-0.397,1.729-0.624,2.608c-0.481,1.984-0.964,3.969-1.474,5.953
c-0.17,0.651-0.341,1.303-0.511,1.927c-1.7,6.604-3.571,13.124-5.584,19.587c-0.255,0.795-0.511,1.616-0.766,2.41
c-0.595,1.898-1.219,3.799-1.843,5.697c-0.283,0.794-0.538,1.588-0.821,2.381c-2.183,6.35-4.507,12.615-7.002,18.766
c-0.255,0.624-0.481,1.275-0.737,1.899c-0.765,1.813-1.53,3.628-2.324,5.442c-0.34,0.822-0.68,1.645-1.049,2.467
c-0.793,1.785-1.587,3.571-2.409,5.357c-0.312,0.651-0.624,1.304-0.936,1.983c-2.749,5.896-5.697,11.736-8.815,17.434
c-0.397,0.766-0.822,1.559-1.247,2.324c-0.936,1.672-1.871,3.316-2.835,4.989c-0.453,0.765-0.907,1.53-1.36,2.296
c-1.021,1.701-2.013,3.373-3.062,5.045c-0.113,0.199-0.227,0.369-0.341,0.568c-2.239,3.627-4.592,7.171-7.001,10.686
c-0.454,0.652-0.879,1.305-1.332,1.956c-1.078,1.53-2.184,3.09-3.289,4.593c-0.566,0.793-1.162,1.587-1.729,2.381
c-1.134,1.502-2.239,3.004-3.401,4.479c-0.567,0.709-1.134,1.418-1.673,2.126c-2.75,3.458-5.584,6.888-8.504,10.261l0,0v74.608
c28.715-23.13,53.547-51.165,73.928-84.358c85.663-139.493,69.42-330.067,55.587-486.624L1787.35,44.604z M2429.312,14.982
l-11.226,17.519c-67.946,105.902-122.06,99.723-237.77,99.723s-169.824,6.18-237.771-99.723l-11.225-17.519l56.664-11.65
c51.421,80.136,78.634,75.628,192.331,74.892c113.697,0.736,140.91,5.244,192.33-74.892L2429.312,14.982z"/>
</defs>
<clipPath id="Back_Trim_2_Clippath_URL">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#D6FFE0" stroke="#FFFFFF" stroke-width="0.2268" stroke-miterlimit="10" d="
M2626.631,55.546l-0.765,8.59l-0.199,2.352l-0.595,6.577l-0.283,3.486c-0.171,1.956-0.341,3.94-0.511,5.925l-0.283,3.203
c-0.255,2.891-0.511,5.783-0.737,8.702l-0.255,3.005c-0.17,2.013-0.34,3.996-0.511,6.01c-0.113,1.332-0.198,2.664-0.312,3.996
c-0.142,1.758-0.283,3.516-0.425,5.273c-0.113,1.332-0.198,2.664-0.313,3.996c-0.17,2.239-0.34,4.508-0.51,6.746
c-0.113,1.332-0.227,2.693-0.312,4.025c-0.17,2.381-0.369,4.791-0.539,7.172c-0.085,1.389-0.17,2.807-0.283,4.195
c-0.113,1.701-0.227,3.401-0.34,5.103c-0.114,1.474-0.199,2.976-0.313,4.479c-0.113,1.7-0.198,3.373-0.312,5.074
c-0.085,1.474-0.198,2.948-0.283,4.422c-0.17,2.835-0.341,5.698-0.511,8.532c-0.085,1.502-0.142,3.005-0.227,4.508
c-0.085,1.587-0.17,3.203-0.255,4.79c-0.085,1.673-0.17,3.345-0.255,4.989c-0.058,1.474-0.114,2.947-0.199,4.45
c-0.085,1.673-0.142,3.345-0.227,5.046c-0.057,1.502-0.113,3.033-0.17,4.535c-0.113,2.977-0.227,5.953-0.312,8.93
c-0.057,1.445-0.085,2.891-0.142,4.365c-0.058,1.757-0.086,3.514-0.143,5.301c-0.028,1.359-0.057,2.749-0.085,4.109
c-0.057,1.814-0.085,3.6-0.113,5.387c-0.028,1.332-0.028,2.636-0.057,3.968c-0.028,1.843-0.057,3.714-0.085,5.585
c0,0.623,0,1.246,0,1.87c-0.028,3.997-0.028,7.993-0.028,12.019c0,1.219,0,2.438,0.028,3.686c0,1.871,0.028,3.77,0.028,5.641
c0.028,1.219,0.057,2.467,0.057,3.686c0.028,1.928,0.085,3.855,0.113,5.783c0.028,1.048,0.057,2.097,0.085,3.146
c0.085,3.997,0.228,7.994,0.369,11.991c0.028,0.736,0.057,1.474,0.085,2.211c0.085,2.012,0.17,4.025,0.283,6.037
c0.057,1.078,0.085,2.154,0.142,3.232c0.113,1.984,0.227,3.968,0.341,5.952c0.057,1.077,0.142,2.126,0.198,3.203
c0.425,6.804,0.936,13.606,1.559,20.353c0.085,0.907,0.17,1.814,0.255,2.722c0.171,2.041,0.397,4.054,0.596,6.065
c0.085,0.992,0.198,1.984,0.312,2.977c0.227,2.041,0.454,4.082,0.681,6.123c0.085,0.766,0.198,1.531,0.283,2.297
c0.567,4.619,1.162,9.212,1.814,13.775l0.085,0.539c0.283,2.069,0.596,4.139,0.936,6.207c0.142,0.908,0.283,1.814,0.425,2.723
c0.313,2.012,0.652,4.024,0.992,6.037c0.142,0.879,0.312,1.758,0.454,2.637c1.219,6.774,2.522,13.492,3.968,20.154
c0.171,0.708,0.313,1.445,0.482,2.125c0.425,2.014,0.907,3.998,1.36,5.981c0.198,0.879,0.426,1.729,0.624,2.608
c0.481,1.984,0.964,3.969,1.474,5.953c0.17,0.651,0.34,1.303,0.511,1.927c1.729,6.604,3.571,13.124,5.584,19.587
c0.255,0.795,0.51,1.616,0.766,2.41c0.623,1.898,1.219,3.799,1.87,5.697c0.256,0.794,0.539,1.588,0.794,2.381
c2.183,6.35,4.507,12.615,7.002,18.766c0.255,0.624,0.51,1.275,0.765,1.899c0.737,1.813,1.503,3.628,2.297,5.442
c0.34,0.822,0.708,1.645,1.049,2.467c0.793,1.785,1.587,3.571,2.409,5.357c0.312,0.651,0.623,1.304,0.936,1.983
c2.777,5.896,5.697,11.736,8.815,17.434c0.425,0.766,0.851,1.559,1.275,2.324c0.907,1.672,1.871,3.316,2.835,4.989
c0.425,0.765,0.907,1.53,1.36,2.296c0.992,1.701,1.984,3.373,3.033,5.045c0.113,0.199,0.227,0.369,0.34,0.568
c2.269,3.627,4.593,7.171,7.002,10.686c0.453,0.652,0.879,1.305,1.332,1.956c1.077,1.53,2.183,3.062,3.288,4.593
c0.596,0.793,1.162,1.587,1.758,2.381c1.105,1.502,2.239,3.004,3.373,4.479c0.567,0.709,1.134,1.418,1.701,2.126
c2.749,3.458,5.556,6.888,8.504,10.261l0,0v74.608c-28.715-23.13-53.547-51.165-73.928-84.358
c-85.663-139.493-69.449-330.067-55.615-486.624l0.566-6.18L2626.631,55.546z M1787.35,44.604l-53.234,10.941l0.736,8.59
l0.227,2.352l0.567,6.577l0.312,3.486l0.511,5.925l0.283,3.203c0.227,2.891,0.481,5.783,0.737,8.702l0.255,3.005
c0.142,2.013,0.312,3.996,0.481,6.01l0.341,3.996c0.142,1.758,0.255,3.516,0.396,5.273c0.113,1.332,0.227,2.664,0.34,3.996
c0.171,2.239,0.341,4.508,0.511,6.746c0.085,1.332,0.198,2.693,0.283,4.025c0.198,2.381,0.369,4.791,0.539,7.172
c0.085,1.389,0.198,2.807,0.283,4.195c0.113,1.701,0.255,3.401,0.368,5.103c0.085,1.474,0.198,2.976,0.284,4.479
c0.113,1.7,0.227,3.373,0.34,5.074c0.085,1.474,0.17,2.948,0.255,4.422c0.17,2.835,0.341,5.698,0.511,8.532
c0.085,1.502,0.17,3.005,0.255,4.508c0.085,1.587,0.17,3.203,0.227,4.79c0.085,1.673,0.17,3.345,0.255,4.989
c0.057,1.474,0.143,2.947,0.199,4.45c0.085,1.673,0.17,3.345,0.227,5.046c0.057,1.502,0.113,3.033,0.17,4.535
c0.113,2.977,0.227,5.953,0.312,8.93c0.057,1.445,0.113,2.891,0.142,4.365c0.057,1.757,0.113,3.514,0.142,5.301
c0.028,1.359,0.085,2.749,0.114,4.109c0.028,1.814,0.057,3.6,0.085,5.387c0.028,1.332,0.057,2.636,0.085,3.968
c0,1.843,0.028,3.714,0.057,5.585c0,0.623,0,1.246,0,1.87c0.057,3.997,0.057,7.993,0.028,12.019c0,1.219,0,2.438,0,3.686
c-0.028,1.871-0.028,3.77-0.057,5.641c-0.028,1.219-0.028,2.467-0.057,3.686c-0.028,1.928-0.057,3.855-0.113,5.783
c0,1.048-0.028,2.097-0.058,3.146c-0.113,3.997-0.227,7.994-0.396,11.991c-0.028,0.736-0.057,1.474-0.085,2.211
c-0.085,2.012-0.17,4.025-0.255,6.037c-0.057,1.078-0.113,2.154-0.17,3.232c-0.113,1.984-0.199,3.968-0.341,5.952
c-0.057,1.049-0.113,2.126-0.198,3.203c-0.425,6.804-0.936,13.606-1.559,20.353c-0.057,0.907-0.143,1.814-0.227,2.722
c-0.199,2.041-0.397,4.054-0.596,6.065c-0.113,0.992-0.227,1.984-0.34,2.977c-0.199,2.041-0.426,4.082-0.681,6.123
c-0.085,0.766-0.17,1.531-0.283,2.297c-0.539,4.619-1.134,9.212-1.814,13.775c0,0.17-0.028,0.369-0.057,0.539
c-0.312,2.069-0.624,4.139-0.936,6.207c-0.142,0.908-0.283,1.814-0.425,2.723c-0.341,2.012-0.681,4.024-1.021,6.037
c-0.142,0.879-0.313,1.758-0.454,2.637c-1.19,6.774-2.522,13.492-3.969,20.154c-0.142,0.708-0.312,1.445-0.453,2.125
c-0.453,2.014-0.907,3.998-1.389,5.981c-0.199,0.879-0.397,1.729-0.624,2.608c-0.481,1.984-0.964,3.969-1.474,5.953
c-0.17,0.651-0.341,1.303-0.511,1.927c-1.7,6.604-3.571,13.124-5.584,19.587c-0.255,0.795-0.511,1.616-0.766,2.41
c-0.595,1.898-1.219,3.799-1.843,5.697c-0.283,0.794-0.538,1.588-0.821,2.381c-2.183,6.35-4.507,12.615-7.002,18.766
c-0.255,0.624-0.481,1.275-0.737,1.899c-0.765,1.813-1.53,3.628-2.324,5.442c-0.34,0.822-0.68,1.645-1.049,2.467
c-0.793,1.785-1.587,3.571-2.409,5.357c-0.312,0.651-0.624,1.304-0.936,1.983c-2.749,5.896-5.697,11.736-8.815,17.434
c-0.397,0.766-0.822,1.559-1.247,2.324c-0.936,1.672-1.871,3.316-2.835,4.989c-0.453,0.765-0.907,1.53-1.36,2.296
c-1.021,1.701-2.013,3.373-3.062,5.045c-0.113,0.199-0.227,0.369-0.341,0.568c-2.239,3.627-4.592,7.171-7.001,10.686
c-0.454,0.652-0.879,1.305-1.332,1.956c-1.078,1.53-2.184,3.09-3.289,4.593c-0.566,0.793-1.162,1.587-1.729,2.381
c-1.134,1.502-2.239,3.004-3.401,4.479c-0.567,0.709-1.134,1.418-1.673,2.126c-2.75,3.458-5.584,6.888-8.504,10.261l0,0v74.608
c28.715-23.13,53.547-51.165,73.928-84.358c85.663-139.493,69.42-330.067,55.587-486.624L1787.35,44.604z M2429.312,14.982
l-11.226,17.519c-67.946,105.902-122.06,99.723-237.77,99.723s-169.824,6.18-237.771-99.723l-11.225-17.519l56.664-11.65
c51.421,80.136,78.634,75.628,192.331,74.892c113.697,0.736,140.91,5.244,192.33-74.892L2429.312,14.982z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Jock_Tag">
<rect x="2485.099" y="1623.282" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Prod_QR_Code">
<rect x="2548.038" y="1996.443" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="1676.373" y="131.933" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1003.322,1.207l253.928,52.214c-18.227,206.477-43.568,488.495,201.742,574.413
c78.973-27.666,129.855-75.656,162-134.873v1488.246c-540,0-1080,0-1620,0V492.961c32.146,59.217,83.056,107.207,162,134.873
c245.339-85.918,219.997-367.937,201.742-574.413L618.662,1.207c8.929,226.347,79.766,377.179,192.273,472.423
C923.414,378.386,994.28,227.554,1003.322,1.207L1003.322,1.207z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_URL">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#00FFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M1003.322,1.207l253.928,52.214c-18.227,206.477-43.568,488.495,201.742,574.413c78.973-27.666,129.855-75.656,162-134.873
v1488.246c-540,0-1080,0-1620,0V492.961c32.146,59.217,83.056,107.207,162,134.873
c245.339-85.918,219.997-367.937,201.742-574.413L618.662,1.207c8.929,226.347,79.766,377.179,192.273,472.423
C923.414,378.386,994.28,227.554,1003.322,1.207L1003.322,1.207z"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M284.514,1923.012l-49.465,58.195 M1361.254,572.898l-167.244,44.107l-0.596,0.709
l192.954,9.155l19.475-22.903C1389.43,594.697,1374.604,584.294,1361.254,572.898L1361.254,572.898z M1288.998,477.172
c2.92,6.18,6.038,12.246,9.326,18.199l-178.441,208.063l0.397-0.425l259.483-68.343l-66.443,78.122l-193.607-9.128
l-589.294,687.289l265.21-69.166l-66.615,78.35l-198.906-8.844l0.283-0.34l-294.917,343.955l268.073-69.562l-66.672,78.435
l-201.542-8.702v-0.028l-73.588,85.861l268.78-69.676l-66.698,78.463l-202.195-8.674l0.085-0.113L24.265,1981.207H0.992v-1.928
L1288.998,477.172z M1446.463,623.156c4.11,1.616,8.277,3.176,12.529,4.678c78.973-27.666,129.855-75.656,162-134.873v1488.246
H260.504L1384.525,659.412l38.127-46.658L1446.463,623.156z M1160.702,892.335l-66.501,78.208l-195.59-9.015l0.481-0.567
L1160.702,892.335z M722.607,1407.674l-66.643,78.377l-199.559-8.815l0.256-0.312L722.607,1407.674z M357.506,1837.122
l-66.728,78.491l-202.848-8.646l0.057-0.085L357.506,1837.122z M59.414,1981.207l225.1-58.195 M576.566,1579.453l-66.67,78.435
l-200.892-8.759l0.198-0.228L576.566,1579.453z M649.588,1493.563l-66.643,78.406l-200.24-8.788l0.228-0.255L649.588,1493.563z
M868.648,1235.894l-66.586,78.321l-198.254-8.9l0.34-0.369L868.648,1235.894z M941.641,1150.004l-66.557,78.293l-197.575-8.929
l0.368-0.426L941.641,1150.004z M1014.662,1064.114l-66.529,78.265l-196.924-8.958l0.397-0.453L1014.662,1064.114z
M1087.682,978.225l-66.529,78.236l-196.242-8.986l0.426-0.51L1087.682,978.225z M1233.723,806.445l-66.473,78.18
l-194.938-9.043l0.51-0.596L1233.723,806.445z M1306.743,720.555l-66.472,78.152l-194.259-9.071l0.538-0.652L1306.743,720.555z"
/>
</defs>
<clipPath id="Front_MainColor_Clippath_URL">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M284.514,1923.012l-49.465,58.195 M1361.254,572.898l-167.244,44.107l-0.596,0.709l192.954,9.155l19.475-22.903
C1389.43,594.697,1374.604,584.294,1361.254,572.898L1361.254,572.898z M1288.998,477.172c2.92,6.18,6.038,12.246,9.326,18.199
l-178.441,208.063l0.397-0.425l259.483-68.343l-66.443,78.122l-193.607-9.128l-589.294,687.289l265.21-69.166l-66.615,78.35
l-198.906-8.844l0.283-0.34l-294.917,343.955l268.073-69.562l-66.672,78.435l-201.542-8.702v-0.028l-73.588,85.861l268.78-69.676
l-66.698,78.463l-202.195-8.674l0.085-0.113L24.265,1981.207H0.992v-1.928L1288.998,477.172z M1446.463,623.156
c4.11,1.616,8.277,3.176,12.529,4.678c78.973-27.666,129.855-75.656,162-134.873v1488.246H260.504L1384.525,659.412
l38.127-46.658L1446.463,623.156z M1160.702,892.335l-66.501,78.208l-195.59-9.015l0.481-0.567L1160.702,892.335z
M722.607,1407.674l-66.643,78.377l-199.559-8.815l0.256-0.312L722.607,1407.674z M357.506,1837.122l-66.728,78.491
l-202.848-8.646l0.057-0.085L357.506,1837.122z M59.414,1981.207l225.1-58.195 M576.566,1579.453l-66.67,78.435l-200.892-8.759
l0.198-0.228L576.566,1579.453z M649.588,1493.563l-66.643,78.406l-200.24-8.788l0.228-0.255L649.588,1493.563z
M868.648,1235.894l-66.586,78.321l-198.254-8.9l0.34-0.369L868.648,1235.894z M941.641,1150.004l-66.557,78.293l-197.575-8.929
l0.368-0.426L941.641,1150.004z M1014.662,1064.114l-66.529,78.265l-196.924-8.958l0.397-0.453L1014.662,1064.114z
M1087.682,978.225l-66.529,78.236l-196.242-8.986l0.426-0.51L1087.682,978.225z M1233.723,806.445l-66.473,78.18l-194.938-9.043
l0.51-0.596L1233.723,806.445z M1306.743,720.555l-66.472,78.152l-194.259-9.071l0.538-0.652L1306.743,720.555z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M565.285,12.177l53.377-10.97c8.929,226.347,79.766,377.179,192.273,472.423
C923.414,378.386,994.28,227.554,1003.322,1.207l53.264,10.942c-9.383,187.426-62.617,373.237-210.756,498.698l-34.895,29.537
l-34.895-29.537C627.902,385.387,574.668,199.575,565.285,12.177z M1409.867,666.357v1314.85h98.277V666.357
c43.37-19.39,81.354-46.063,112.848-80.562v-92.835c-3.062,5.642-6.265,11.169-9.666,16.583
c-0.539,0.851-1.077,1.701-1.616,2.522c-1.134,1.729-2.239,3.459-3.401,5.188c-0.681,1.021-1.389,2.041-2.098,3.063
c-1.105,1.615-2.239,3.203-3.401,4.79c-0.794,1.105-1.616,2.211-2.438,3.316c-1.076,1.474-2.183,2.92-3.288,4.365
c-0.964,1.22-1.956,2.466-2.919,3.685c-1.021,1.276-2.069,2.552-3.118,3.799c-1.19,1.418-2.382,2.835-3.601,4.224
c-0.907,1.049-1.813,2.098-2.749,3.118c-1.361,1.531-2.778,3.062-4.195,4.564c-0.794,0.879-1.616,1.729-2.438,2.579
c-1.502,1.56-3.061,3.118-4.62,4.677c-0.766,0.766-1.559,1.531-2.324,2.297c-1.673,1.587-3.373,3.174-5.074,4.762
c-0.737,0.652-1.445,1.304-2.183,1.956c-1.843,1.673-3.713,3.288-5.612,4.903c-0.652,0.539-1.333,1.105-1.984,1.673
c-2.041,1.7-4.11,3.345-6.208,4.989c-0.566,0.453-1.134,0.906-1.701,1.332c-2.268,1.758-4.563,3.486-6.916,5.159
c-0.454,0.34-0.907,0.651-1.361,0.992c-2.438,1.729-4.903,3.43-7.426,5.13c-0.397,0.256-0.794,0.511-1.191,0.766
c-2.579,1.701-5.215,3.373-7.88,5.018c-0.368,0.227-0.709,0.426-1.077,0.652c-2.722,1.672-5.527,3.288-8.362,4.904
c-0.312,0.17-0.624,0.34-0.964,0.538c-0.992,0.567-2.013,1.105-3.033,1.673c-0.936,0.51-1.842,0.992-2.777,1.502l-0.113,0.057
l-0.454,0.227l-0.368,0.199l-0.426,0.227l-0.255,0.113l-0.425,0.227l-0.369,0.198l-0.425,0.227l-0.198,0.114h-0.028
l-0.028,0.027l-0.652,0.313c-0.453,0.255-0.936,0.481-1.389,0.736h-0.057l-0.596,0.313l-0.198,0.113l-0.425,0.198l-0.426,0.227
l-0.198,0.085l-0.453,0.227l-0.028,0.029c-1.899,0.936-3.827,1.87-5.755,2.777l-0.651,0.313l-0.228,0.084l-0.312,0.17
c-3.09,1.446-6.236,2.836-9.411,4.195c-0.17,0.086-0.312,0.143-0.481,0.228c-3.459,1.474-6.974,2.892-10.545,4.28l-0.283,0.113
c-2.665,1.049-5.387,2.069-8.164,3.062l-0.283,0.113l-0.341,0.113l-0.737,0.255c-0.566,0.199-1.105,0.396-1.672,0.596
c-3.714-1.305-7.398-2.664-10.998-4.054l-0.624-0.255c-3.231-1.275-6.463-2.58-9.609-3.912c-0.709-0.312-1.39-0.596-2.098-0.907
c-2.552-1.105-5.074-2.239-7.54-3.373c-1.418-0.651-2.807-1.332-4.167-1.984c-1.673-0.794-3.345-1.616-4.961-2.438
c-2.126-1.077-4.224-2.154-6.293-3.26c-195.562-103.72-172.431-361.786-155.452-554.23l-53.234-10.941l-0.539,6.18
c-13.832,156.557-30.075,347.131,55.588,486.624C1295.915,595.292,1347.278,638.351,1409.867,666.357z M113.868,666.357v1314.85
h98.277V666.357c62.588-28.007,113.952-71.065,150.774-131.074c85.663-139.493,69.449-330.067,55.615-486.624l-0.538-6.18
l-53.263,10.941c16.922,191.509,39.911,447.987-152.589,552.7l-0.029,0.027c-0.936,0.511-1.871,0.992-2.806,1.503
c-2.069,1.105-4.167,2.183-6.293,3.26c-1.644,0.821-3.288,1.644-4.933,2.438c-1.417,0.652-2.807,1.333-4.224,1.984
c-2.466,1.134-4.96,2.268-7.512,3.373c-0.708,0.312-1.417,0.596-2.126,0.907c-3.146,1.332-6.35,2.637-9.581,3.912l-0.651,0.255
c-3.601,1.39-7.258,2.749-10.999,4.054c-1.021-0.369-2.069-0.737-3.09-1.105c-0.511-0.17-1.021-0.369-1.53-0.539l-0.17-0.085
c-2.154-0.794-4.281-1.587-6.406-2.409l-0.284-0.113c-3.571-1.389-7.087-2.807-10.517-4.28l-0.481-0.228
c-3.374-1.445-6.718-2.919-9.978-4.449l-0.624-0.313c-2.154-1.021-4.28-2.041-6.35-3.09l-0.198-0.085l-0.426-0.198l-0.453-0.256
l-0.113-0.057l-0.624-0.311l-0.028-0.029l-0.652-0.312l-0.084-0.057l-0.567-0.284l-0.737-0.367
c-0.596-0.313-1.19-0.624-1.785-0.936l-0.057-0.029l-0.709-0.396l-0.199-0.085l-0.34-0.198l-0.481-0.227l-0.171-0.086
c-0.68-0.396-1.389-0.765-2.068-1.133c-1.021-0.567-2.041-1.105-3.062-1.673l-0.936-0.538c-2.835-1.616-5.642-3.232-8.391-4.904
c-0.341-0.227-0.708-0.426-1.049-0.652c-2.665-1.645-5.301-3.316-7.88-5.018c-0.397-0.255-0.794-0.51-1.191-0.766
c-2.522-1.7-4.988-3.4-7.426-5.13c-0.454-0.341-0.936-0.652-1.39-0.992c-2.324-1.673-4.62-3.401-6.888-5.159
c-0.567-0.426-1.135-0.879-1.701-1.332c-2.098-1.645-4.167-3.289-6.208-4.989c-0.681-0.567-1.332-1.134-1.984-1.673
c-1.899-1.615-3.771-3.23-5.612-4.903c-0.737-0.652-1.475-1.304-2.183-1.956c-1.729-1.588-3.401-3.175-5.074-4.762
c-0.794-0.766-1.56-1.531-2.353-2.297c-1.559-1.559-3.09-3.117-4.592-4.677c-0.822-0.851-1.645-1.7-2.467-2.579
c-1.417-1.503-2.807-3.033-4.167-4.564c-0.935-1.021-1.843-2.069-2.749-3.118c-1.219-1.389-2.41-2.806-3.601-4.224
c-1.049-1.247-2.097-2.522-3.118-3.799c-0.992-1.219-1.955-2.465-2.92-3.685c-1.105-1.445-2.211-2.892-3.316-4.365
c-0.822-1.105-1.615-2.211-2.438-3.316c-1.134-1.587-2.268-3.175-3.401-4.79c-0.681-1.021-1.39-2.041-2.069-3.063
c-1.162-1.729-2.296-3.458-3.401-5.188c-0.539-0.821-1.077-1.672-1.616-2.522c-3.401-5.414-6.633-10.941-9.666-16.583H0.992
v92.835C32.485,620.294,70.47,646.968,113.868,666.357z M1.002,2019.97v180h1656.001v-180H1.002z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_URL">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#F25100" d="
M565.285,12.177l53.377-10.97c8.929,226.347,79.766,377.179,192.273,472.423C923.414,378.386,994.28,227.554,1003.322,1.207
l53.264,10.942c-9.383,187.426-62.617,373.237-210.756,498.698l-34.895,29.537l-34.895-29.537
C627.902,385.387,574.668,199.575,565.285,12.177z M1409.867,666.357v1314.85h98.277V666.357
c43.37-19.39,81.354-46.063,112.848-80.562v-92.835c-3.062,5.642-6.265,11.169-9.666,16.583
c-0.539,0.851-1.077,1.701-1.616,2.522c-1.134,1.729-2.239,3.459-3.401,5.188c-0.681,1.021-1.389,2.041-2.098,3.063
c-1.105,1.615-2.239,3.203-3.401,4.79c-0.794,1.105-1.616,2.211-2.438,3.316c-1.076,1.474-2.183,2.92-3.288,4.365
c-0.964,1.22-1.956,2.466-2.919,3.685c-1.021,1.276-2.069,2.552-3.118,3.799c-1.19,1.418-2.382,2.835-3.601,4.224
c-0.907,1.049-1.813,2.098-2.749,3.118c-1.361,1.531-2.778,3.062-4.195,4.564c-0.794,0.879-1.616,1.729-2.438,2.579
c-1.502,1.56-3.061,3.118-4.62,4.677c-0.766,0.766-1.559,1.531-2.324,2.297c-1.673,1.587-3.373,3.174-5.074,4.762
c-0.737,0.652-1.445,1.304-2.183,1.956c-1.843,1.673-3.713,3.288-5.612,4.903c-0.652,0.539-1.333,1.105-1.984,1.673
c-2.041,1.7-4.11,3.345-6.208,4.989c-0.566,0.453-1.134,0.906-1.701,1.332c-2.268,1.758-4.563,3.486-6.916,5.159
c-0.454,0.34-0.907,0.651-1.361,0.992c-2.438,1.729-4.903,3.43-7.426,5.13c-0.397,0.256-0.794,0.511-1.191,0.766
c-2.579,1.701-5.215,3.373-7.88,5.018c-0.368,0.227-0.709,0.426-1.077,0.652c-2.722,1.672-5.527,3.288-8.362,4.904
c-0.312,0.17-0.624,0.34-0.964,0.538c-0.992,0.567-2.013,1.105-3.033,1.673c-0.936,0.51-1.842,0.992-2.777,1.502l-0.113,0.057
l-0.454,0.227l-0.368,0.199l-0.426,0.227l-0.255,0.113l-0.425,0.227l-0.369,0.198l-0.425,0.227l-0.198,0.114h-0.028l-0.028,0.027
l-0.652,0.313c-0.453,0.255-0.936,0.481-1.389,0.736h-0.057l-0.596,0.313l-0.198,0.113l-0.425,0.198l-0.426,0.227l-0.198,0.085
l-0.453,0.227l-0.028,0.029c-1.899,0.936-3.827,1.87-5.755,2.777l-0.651,0.313l-0.228,0.084l-0.312,0.17
c-3.09,1.446-6.236,2.836-9.411,4.195c-0.17,0.086-0.312,0.143-0.481,0.228c-3.459,1.474-6.974,2.892-10.545,4.28l-0.283,0.113
c-2.665,1.049-5.387,2.069-8.164,3.062l-0.283,0.113l-0.341,0.113l-0.737,0.255c-0.566,0.199-1.105,0.396-1.672,0.596
c-3.714-1.305-7.398-2.664-10.998-4.054l-0.624-0.255c-3.231-1.275-6.463-2.58-9.609-3.912c-0.709-0.312-1.39-0.596-2.098-0.907
c-2.552-1.105-5.074-2.239-7.54-3.373c-1.418-0.651-2.807-1.332-4.167-1.984c-1.673-0.794-3.345-1.616-4.961-2.438
c-2.126-1.077-4.224-2.154-6.293-3.26c-195.562-103.72-172.431-361.786-155.452-554.23l-53.234-10.941l-0.539,6.18
c-13.832,156.557-30.075,347.131,55.588,486.624C1295.915,595.292,1347.278,638.351,1409.867,666.357z M113.868,666.357v1314.85
h98.277V666.357c62.588-28.007,113.952-71.065,150.774-131.074c85.663-139.493,69.449-330.067,55.615-486.624l-0.538-6.18
l-53.263,10.941c16.922,191.509,39.911,447.987-152.589,552.7l-0.029,0.027c-0.936,0.511-1.871,0.992-2.806,1.503
c-2.069,1.105-4.167,2.183-6.293,3.26c-1.644,0.821-3.288,1.644-4.933,2.438c-1.417,0.652-2.807,1.333-4.224,1.984
c-2.466,1.134-4.96,2.268-7.512,3.373c-0.708,0.312-1.417,0.596-2.126,0.907c-3.146,1.332-6.35,2.637-9.581,3.912l-0.651,0.255
c-3.601,1.39-7.258,2.749-10.999,4.054c-1.021-0.369-2.069-0.737-3.09-1.105c-0.511-0.17-1.021-0.369-1.53-0.539l-0.17-0.085
c-2.154-0.794-4.281-1.587-6.406-2.409l-0.284-0.113c-3.571-1.389-7.087-2.807-10.517-4.28l-0.481-0.228
c-3.374-1.445-6.718-2.919-9.978-4.449l-0.624-0.313c-2.154-1.021-4.28-2.041-6.35-3.09l-0.198-0.085l-0.426-0.198l-0.453-0.256
l-0.113-0.057l-0.624-0.311l-0.028-0.029l-0.652-0.312l-0.084-0.057l-0.567-0.284l-0.737-0.367
c-0.596-0.313-1.19-0.624-1.785-0.936l-0.057-0.029l-0.709-0.396l-0.199-0.085l-0.34-0.198l-0.481-0.227l-0.171-0.086
c-0.68-0.396-1.389-0.765-2.068-1.133c-1.021-0.567-2.041-1.105-3.062-1.673l-0.936-0.538c-2.835-1.616-5.642-3.232-8.391-4.904
c-0.341-0.227-0.708-0.426-1.049-0.652c-2.665-1.645-5.301-3.316-7.88-5.018c-0.397-0.255-0.794-0.51-1.191-0.766
c-2.522-1.7-4.988-3.4-7.426-5.13c-0.454-0.341-0.936-0.652-1.39-0.992c-2.324-1.673-4.62-3.401-6.888-5.159
c-0.567-0.426-1.135-0.879-1.701-1.332c-2.098-1.645-4.167-3.289-6.208-4.989c-0.681-0.567-1.332-1.134-1.984-1.673
c-1.899-1.615-3.771-3.23-5.612-4.903c-0.737-0.652-1.475-1.304-2.183-1.956c-1.729-1.588-3.401-3.175-5.074-4.762
c-0.794-0.766-1.56-1.531-2.353-2.297c-1.559-1.559-3.09-3.117-4.592-4.677c-0.822-0.851-1.645-1.7-2.467-2.579
c-1.417-1.503-2.807-3.033-4.167-4.564c-0.935-1.021-1.843-2.069-2.749-3.118c-1.219-1.389-2.41-2.806-3.601-4.224
c-1.049-1.247-2.097-2.522-3.118-3.799c-0.992-1.219-1.955-2.465-2.92-3.685c-1.105-1.445-2.211-2.892-3.316-4.365
c-0.822-1.105-1.615-2.211-2.438-3.316c-1.134-1.587-2.268-3.175-3.401-4.79c-0.681-1.021-1.39-2.041-2.069-3.063
c-1.162-1.729-2.296-3.458-3.401-5.188c-0.539-0.821-1.077-1.672-1.616-2.522c-3.401-5.414-6.633-10.941-9.666-16.583H0.992
v92.835C32.485,620.294,70.47,646.968,113.868,666.357z M1.002,2019.97v180h1656.001v-180H1.002z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M175.437,773.166h24.746v24.775h-24.746V773.166z M228.699,658.477v1322.73h-16.554V666.357
C217.758,663.862,223.285,661.227,228.699,658.477L228.699,658.477z M213.081,605.639c1.898-1.049,3.798-2.126,5.668-3.203
C216.879,603.513,214.979,604.59,213.081,605.639L213.081,605.639z M221.812,600.649c2.324-1.389,4.62-2.806,6.888-4.224
C226.432,597.844,224.136,599.261,221.812,600.649L221.812,600.649z M113.868,1981.207H97.285V658.477
c5.442,2.75,10.97,5.386,16.583,7.881V1981.207z M1524.699,658.477v1322.73h-16.555V666.357
C1513.758,663.862,1519.285,661.227,1524.699,658.477L1524.699,658.477z M1409.867,1981.207h-16.582V658.477
c5.442,2.75,10.97,5.386,16.582,7.881V1981.207z M1393.285,596.426c2.296,1.418,4.592,2.835,6.916,4.224
C1397.877,599.261,1395.581,597.844,1393.285,596.426L1393.285,596.426z M1403.234,602.436c1.871,1.077,3.771,2.154,5.698,3.203
C1407.005,604.59,1405.105,603.513,1403.234,602.436L1403.234,602.436z M1471.437,1882.278h24.746v24.746h-24.746V1882.278z
M1471.437,773.166h24.746v24.775h-24.746V773.166z M1446.576,748.392h24.775v24.774h-24.775V748.392z M1421.802,773.166h24.774
v24.775h-24.774V773.166z M1446.576,797.941h24.775v24.774h-24.775V797.941z M1471.437,930.546h24.746v24.774h-24.746V930.546z
M1446.576,905.771h24.775v24.774h-24.775V905.771z M1421.802,930.546h24.774v24.774h-24.774V930.546z M1446.576,955.32h24.775
v24.746h-24.775V955.32z M1471.437,1088.945h24.746v24.775h-24.746V1088.945z M1446.576,1064.171h24.775v24.774h-24.775
V1064.171z M1421.802,1088.945h24.774v24.775h-24.774V1088.945z M1446.576,1113.721h24.775v24.746h-24.775V1113.721z
M1471.437,1237.34h24.746v24.774h-24.746V1237.34z M1446.576,1212.564h24.775v24.775h-24.775V1212.564z M1421.802,1237.34
h24.774v24.774h-24.774V1237.34z M1446.576,1262.114h24.775v24.774h-24.775V1262.114z M1471.437,1395.739h24.746v24.775h-24.746
V1395.739z M1446.576,1370.965h24.775v24.774h-24.775V1370.965z M1421.802,1395.739h24.774v24.775h-24.774V1395.739z
M1446.576,1420.515h24.775v24.774h-24.775V1420.515z M1471.437,1553.119h24.746v24.774h-24.746V1553.119z M1446.576,1528.344
h24.775v24.775h-24.775V1528.344z M1421.802,1553.119h24.774v24.774h-24.774V1553.119z M1446.576,1577.894h24.775v24.775
h-24.775V1577.894z M1471.437,1711.52h24.746v24.774h-24.746V1711.52z M1446.576,1686.744h24.775v24.775h-24.775V1686.744z
M1421.802,1711.52h24.774v24.774h-24.774V1711.52z M1446.576,1736.294h24.775v24.774h-24.775V1736.294z M1446.576,1857.503
h24.775v24.775h-24.775V1857.503z M1421.802,1882.278h24.774v24.746h-24.774V1882.278z M1446.576,1907.024h24.775v24.774
h-24.775V1907.024z M175.437,1882.278h24.746v24.746h-24.746V1882.278z M150.577,1857.503h24.774v24.775h-24.774V1857.503z
M125.802,1882.278h24.775v24.746h-24.775V1882.278z M150.577,1907.024h24.774v24.774h-24.774V1907.024z M175.437,1711.52
h24.746v24.774h-24.746V1711.52z M150.577,1686.744h24.774v24.775h-24.774V1686.744z M125.802,1711.52h24.775v24.774h-24.775
V1711.52z M150.577,1736.294h24.774v24.774h-24.774V1736.294z M175.437,1553.119h24.746v24.774h-24.746V1553.119z
M150.577,1528.344h24.774v24.775h-24.774V1528.344z M125.802,1553.119h24.775v24.774h-24.775V1553.119z M150.577,1577.894
h24.774v24.775h-24.774V1577.894z M175.437,1395.739h24.746v24.775h-24.746V1395.739z M150.577,1370.965h24.774v24.774h-24.774
V1370.965z M125.802,1395.739h24.775v24.775h-24.775V1395.739z M150.577,1420.515h24.774v24.774h-24.774V1420.515z
M175.437,1237.34h24.746v24.774h-24.746V1237.34z M150.577,1212.564h24.774v24.775h-24.774V1212.564z M125.802,1237.34h24.775
v24.774h-24.775V1237.34z M150.577,1262.114h24.774v24.774h-24.774V1262.114z M175.437,1088.945h24.746v24.775h-24.746V1088.945
z M150.577,1064.171h24.774v24.774h-24.774V1064.171z M125.802,1088.945h24.775v24.775h-24.775V1088.945z M150.577,1113.721
h24.774v24.746h-24.774V1113.721z M175.437,930.546h24.746v24.774h-24.746V930.546z M150.577,905.771h24.774v24.774h-24.774
V905.771z M125.802,930.546h24.775v24.774h-24.775V930.546z M150.577,955.32h24.774v24.746h-24.774V955.32z M150.577,748.392
h24.774v24.774h-24.774V748.392z M125.802,773.166h24.775v24.775h-24.775V773.166z M150.577,797.941h24.774v24.774h-24.774
V797.941z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_URL">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#010149" d="
M175.437,773.166h24.746v24.775h-24.746V773.166z M228.699,658.477v1322.73h-16.554V666.357
C217.758,663.862,223.285,661.227,228.699,658.477L228.699,658.477z M213.081,605.639c1.898-1.049,3.798-2.126,5.668-3.203
C216.879,603.513,214.979,604.59,213.081,605.639L213.081,605.639z M221.812,600.649c2.324-1.389,4.62-2.806,6.888-4.224
C226.432,597.844,224.136,599.261,221.812,600.649L221.812,600.649z M113.868,1981.207H97.285V658.477
c5.442,2.75,10.97,5.386,16.583,7.881V1981.207z M1524.699,658.477v1322.73h-16.555V666.357
C1513.758,663.862,1519.285,661.227,1524.699,658.477L1524.699,658.477z M1409.867,1981.207h-16.582V658.477
c5.442,2.75,10.97,5.386,16.582,7.881V1981.207z M1393.285,596.426c2.296,1.418,4.592,2.835,6.916,4.224
C1397.877,599.261,1395.581,597.844,1393.285,596.426L1393.285,596.426z M1403.234,602.436c1.871,1.077,3.771,2.154,5.698,3.203
C1407.005,604.59,1405.105,603.513,1403.234,602.436L1403.234,602.436z M1471.437,1882.278h24.746v24.746h-24.746V1882.278z
M1471.437,773.166h24.746v24.775h-24.746V773.166z M1446.576,748.392h24.775v24.774h-24.775V748.392z M1421.802,773.166h24.774
v24.775h-24.774V773.166z M1446.576,797.941h24.775v24.774h-24.775V797.941z M1471.437,930.546h24.746v24.774h-24.746V930.546z
M1446.576,905.771h24.775v24.774h-24.775V905.771z M1421.802,930.546h24.774v24.774h-24.774V930.546z M1446.576,955.32h24.775
v24.746h-24.775V955.32z M1471.437,1088.945h24.746v24.775h-24.746V1088.945z M1446.576,1064.171h24.775v24.774h-24.775V1064.171
z M1421.802,1088.945h24.774v24.775h-24.774V1088.945z M1446.576,1113.721h24.775v24.746h-24.775V1113.721z M1471.437,1237.34
h24.746v24.774h-24.746V1237.34z M1446.576,1212.564h24.775v24.775h-24.775V1212.564z M1421.802,1237.34h24.774v24.774h-24.774
V1237.34z M1446.576,1262.114h24.775v24.774h-24.775V1262.114z M1471.437,1395.739h24.746v24.775h-24.746V1395.739z
M1446.576,1370.965h24.775v24.774h-24.775V1370.965z M1421.802,1395.739h24.774v24.775h-24.774V1395.739z M1446.576,1420.515
h24.775v24.774h-24.775V1420.515z M1471.437,1553.119h24.746v24.774h-24.746V1553.119z M1446.576,1528.344h24.775v24.775h-24.775
V1528.344z M1421.802,1553.119h24.774v24.774h-24.774V1553.119z M1446.576,1577.894h24.775v24.775h-24.775V1577.894z
M1471.437,1711.52h24.746v24.774h-24.746V1711.52z M1446.576,1686.744h24.775v24.775h-24.775V1686.744z M1421.802,1711.52
h24.774v24.774h-24.774V1711.52z M1446.576,1736.294h24.775v24.774h-24.775V1736.294z M1446.576,1857.503h24.775v24.775h-24.775
V1857.503z M1421.802,1882.278h24.774v24.746h-24.774V1882.278z M1446.576,1907.024h24.775v24.774h-24.775V1907.024z
M175.437,1882.278h24.746v24.746h-24.746V1882.278z M150.577,1857.503h24.774v24.775h-24.774V1857.503z M125.802,1882.278
h24.775v24.746h-24.775V1882.278z M150.577,1907.024h24.774v24.774h-24.774V1907.024z M175.437,1711.52h24.746v24.774h-24.746
V1711.52z M150.577,1686.744h24.774v24.775h-24.774V1686.744z M125.802,1711.52h24.775v24.774h-24.775V1711.52z
M150.577,1736.294h24.774v24.774h-24.774V1736.294z M175.437,1553.119h24.746v24.774h-24.746V1553.119z M150.577,1528.344
h24.774v24.775h-24.774V1528.344z M125.802,1553.119h24.775v24.774h-24.775V1553.119z M150.577,1577.894h24.774v24.775h-24.774
V1577.894z M175.437,1395.739h24.746v24.775h-24.746V1395.739z M150.577,1370.965h24.774v24.774h-24.774V1370.965z
M125.802,1395.739h24.775v24.775h-24.775V1395.739z M150.577,1420.515h24.774v24.774h-24.774V1420.515z M175.437,1237.34h24.746
v24.774h-24.746V1237.34z M150.577,1212.564h24.774v24.775h-24.774V1212.564z M125.802,1237.34h24.775v24.774h-24.775V1237.34z
M150.577,1262.114h24.774v24.774h-24.774V1262.114z M175.437,1088.945h24.746v24.775h-24.746V1088.945z M150.577,1064.171
h24.774v24.774h-24.774V1064.171z M125.802,1088.945h24.775v24.775h-24.775V1088.945z M150.577,1113.721h24.774v24.746h-24.774
V1113.721z M175.437,930.546h24.746v24.774h-24.746V930.546z M150.577,905.771h24.774v24.774h-24.774V905.771z M125.802,930.546
h24.775v24.774h-24.775V930.546z M150.577,955.32h24.774v24.746h-24.774V955.32z M150.577,748.392h24.774v24.774h-24.774V748.392
z M125.802,773.166h24.775v24.775h-24.775V773.166z M150.577,797.941h24.774v24.774h-24.774V797.941z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M1446.576,773.166h24.775v24.775h-24.775V773.166z M150.577,773.166h24.774v24.775h-24.774
V773.166z M150.577,1882.278h24.774v24.746h-24.774V1882.278z M150.577,1711.52h24.774v24.774h-24.774V1711.52z
M150.577,1553.119h24.774v24.774h-24.774V1553.119z M150.577,1088.945h24.774v24.775h-24.774V1088.945z M150.577,930.546
h24.774v24.774h-24.774V930.546z M150.577,1395.739h24.774v24.775h-24.774V1395.739z M150.577,1237.34h24.774v24.774h-24.774
V1237.34z M1446.576,1882.278h24.775v24.746h-24.775V1882.278z M1446.576,1711.52h24.775v24.774h-24.775V1711.52z
M1446.576,1553.119h24.775v24.774h-24.775V1553.119z M1446.576,1088.945h24.775v24.775h-24.775V1088.945z M1446.576,930.546
h24.775v24.774h-24.775V930.546z M1446.576,1395.739h24.775v24.775h-24.775V1395.739z M1446.576,1237.34h24.775v24.774h-24.775
V1237.34z"/>
</defs>
<clipPath id="Front_Trim_4_Clippath_URL">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FF6100" d="
M1446.576,773.166h24.775v24.775h-24.775V773.166z M150.577,773.166h24.774v24.775h-24.774V773.166z M150.577,1882.278h24.774
v24.746h-24.774V1882.278z M150.577,1711.52h24.774v24.774h-24.774V1711.52z M150.577,1553.119h24.774v24.774h-24.774V1553.119z
M150.577,1088.945h24.774v24.775h-24.774V1088.945z M150.577,930.546h24.774v24.774h-24.774V930.546z M150.577,1395.739h24.774
v24.775h-24.774V1395.739z M150.577,1237.34h24.774v24.774h-24.774V1237.34z M1446.576,1882.278h24.775v24.746h-24.775V1882.278z
M1446.576,1711.52h24.775v24.774h-24.775V1711.52z M1446.576,1553.119h24.775v24.774h-24.775V1553.119z M1446.576,1088.945
h24.775v24.775h-24.775V1088.945z M1446.576,930.546h24.775v24.774h-24.775V930.546z M1446.576,1395.739h24.775v24.775h-24.775
V1395.739z M1446.576,1237.34h24.775v24.774h-24.775V1237.34z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="961.247" y="1621.62" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="738.207" y="59.933" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="306.6" y="324.433" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

View File

@@ -0,0 +1,456 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="3133.654px" height="2413.34px" viewBox="0 0 3133.654 2413.34" enable-background="new 0 0 3133.654 2413.34"
xml:space="preserve">
<g id="Gradient_List">
</g>
<g id="back_jersey">
<g id="Layer_10">
<g>
<defs>
<path id="Back_Trim_1_Clippath" d="M2694.992,1.207l253.928,52.215c-29.537,245.253-18.312,477.439,183.742,600.689v1543.096
h-1260V654.111c202.053-123.25,213.25-355.437,183.741-600.689l253.928-52.215c51.421,80.135,78.633,75.629,192.331,74.892
C2616.359,76.836,2643.572,81.342,2694.992,1.207L2694.992,1.207z"/>
</defs>
<clipPath id="Back_Trim_1_Clippath_URL">
<use xlink:href="#Back_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_1" clip-path="url(#Back_Trim_1_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M2694.992,1.207l253.928,52.215c-29.537,245.253-18.312,477.439,183.742,600.689v1543.096h-1260V654.111
c202.053-123.25,213.25-355.437,183.741-600.689l253.928-52.215c51.421,80.135,78.633,75.629,192.331,74.892
C2616.359,76.836,2643.572,81.342,2694.992,1.207L2694.992,1.207z"/>
</g>
<g id="Back_Trim_1_Pattern">
</g>
</g>
<g id="Layer_9">
<g>
<defs>
<path id="Back_MainColor_Clippath" d="M3082.148,2095.188l50.514,59.414 M1883.802,648.017l233.405,61.54l0.651,0.794
l-204.718,9.694l-40.479-47.622V654.99C1876.432,652.693,1880.146,650.369,1883.802,648.017L1883.802,648.017z
M3132.662,1863.002v30.842l-311.387-363.175l0.284,0.368l-211.011,9.383l-70.668-83.112l281.366,73.361l-625.209-729.156
l-205.398,9.694l-70.497-82.913l275.301,72.511l0.396,0.481l-211.748-246.954c4.11-5.613,8.021-11.311,11.764-17.094
L3132.662,1863.002z M3132.662,1895.204v0.651l-212.174,9.185l-70.725-83.225L3132.662,1895.204z M3132.662,1966.184v24.236
l-134.675,5.754l-70.78-83.225L3132.662,1966.184z M3132.662,2037.191v47.707l-57.176,2.438l-70.809-83.281L3132.662,2037.191z
M3132.662,2186.351v10.856h-1260V698.842l42.406,55.729L3132.662,2186.351z M2152.555,1001.667l70.555,82.999l207.496-9.582
l-0.482-0.566L2152.555,1001.667z M2617.352,1548.441l70.695,83.141l211.721-9.354l-0.284-0.312L2617.352,1548.441z
M3132.662,2108.256l-50.514-13.067 M2772.293,1730.682l70.725,83.196l213.137-9.27l-0.198-0.227L2772.293,1730.682z
M2694.822,1639.547l70.696,83.197l212.428-9.326l-0.227-0.283L2694.822,1639.547z M2462.41,1366.174l70.639,83.112
l210.331-9.439l-0.341-0.397L2462.41,1366.174z M2384.938,1275.04l70.64,83.084l209.622-9.468l-0.396-0.454L2384.938,1275.04z
M2307.496,1183.935l70.583,83.026l208.913-9.495l-0.425-0.482L2307.496,1183.935z M2230.025,1092.801l70.555,83.027
l208.232-9.553l-0.453-0.539L2230.025,1092.801z M2075.084,910.562l70.525,82.941l206.816-9.609l-0.539-0.624L2075.084,910.562z
M1997.613,819.428l70.497,82.941l206.136-9.666l-0.596-0.652L1997.613,819.428z"/>
</defs>
<clipPath id="Back_MainColor_Clippath_URL">
<use xlink:href="#Back_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_MainColor" clip-path="url(#Back_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M3082.148,2095.188l50.514,59.414 M1883.802,648.017l233.405,61.54l0.651,0.794l-204.718,9.694l-40.479-47.622V654.99
C1876.432,652.693,1880.146,650.369,1883.802,648.017L1883.802,648.017z M3132.662,1863.002v30.842l-311.387-363.175l0.284,0.368
l-211.011,9.383l-70.668-83.112l281.366,73.361l-625.209-729.156l-205.398,9.694l-70.497-82.913l275.301,72.511l0.396,0.481
l-211.748-246.954c4.11-5.613,8.021-11.311,11.764-17.094L3132.662,1863.002z M3132.662,1895.204v0.651l-212.174,9.185
l-70.725-83.225L3132.662,1895.204z M3132.662,1966.184v24.236l-134.675,5.754l-70.78-83.225L3132.662,1966.184z
M3132.662,2037.191v47.707l-57.176,2.438l-70.809-83.281L3132.662,2037.191z M3132.662,2186.351v10.856h-1260V698.842
l42.406,55.729L3132.662,2186.351z M2152.555,1001.667l70.555,82.999l207.496-9.582l-0.482-0.566L2152.555,1001.667z
M2617.352,1548.441l70.695,83.141l211.721-9.354l-0.284-0.312L2617.352,1548.441z M3132.662,2108.256l-50.514-13.067
M2772.293,1730.682l70.725,83.196l213.137-9.27l-0.198-0.227L2772.293,1730.682z M2694.822,1639.547l70.696,83.197
l212.428-9.326l-0.227-0.283L2694.822,1639.547z M2462.41,1366.174l70.639,83.112l210.331-9.439l-0.341-0.397L2462.41,1366.174z
M2384.938,1275.04l70.64,83.084l209.622-9.468l-0.396-0.454L2384.938,1275.04z M2307.496,1183.935l70.583,83.026l208.913-9.495
l-0.425-0.482L2307.496,1183.935z M2230.025,1092.801l70.555,83.027l208.232-9.553l-0.453-0.539L2230.025,1092.801z
M2075.084,910.562l70.525,82.941l206.816-9.609l-0.539-0.624L2075.084,910.562z M1997.613,819.428l70.497,82.941l206.136-9.666
l-0.596-0.652L1997.613,819.428z"/>
</g>
<g id="Back_MainColor_Pattern">
</g>
</g>
<g id="Layer_15">
<g>
<defs>
<path id="Back_Trim_2_Clippath" d="M1872.662,716.189c76.024-39.969,139.635-97.115,183.458-176.938
c80.306-146.212,73.219-331.739,53.887-492.293l-0.539-4.451l-53.064,10.914c0.481,4.195,0.992,8.361,1.474,12.557
c0.143,1.389,0.313,2.778,0.454,4.167c0.312,2.807,0.624,5.612,0.936,8.419c0.17,1.615,0.34,3.26,0.538,4.875
c0.256,2.58,0.539,5.16,0.794,7.739c0.17,1.7,0.341,3.373,0.511,5.074c0.255,2.551,0.51,5.13,0.765,7.682
c0.142,1.644,0.312,3.288,0.454,4.933c0.255,2.777,0.51,5.556,0.736,8.334c0.143,1.389,0.256,2.807,0.397,4.195
c0.34,4.053,0.651,8.078,0.964,12.104c0.113,1.361,0.198,2.693,0.312,4.054c0.198,2.749,0.425,5.471,0.595,8.22
c0.143,1.814,0.256,3.629,0.369,5.443c0.142,2.268,0.312,4.535,0.453,6.803c0.113,1.928,0.227,3.884,0.341,5.811
c0.113,2.127,0.227,4.281,0.34,6.406c0.113,1.984,0.198,3.969,0.312,5.982c0.085,2.041,0.199,4.109,0.283,6.15
c0.086,2.041,0.171,4.082,0.256,6.095c0.085,2.041,0.142,4.054,0.198,6.095c0.142,3.741,0.227,7.512,0.34,11.254
c0.028,1.955,0.085,3.911,0.142,5.839c0.029,2.268,0.057,4.535,0.086,6.803c0.027,1.673,0.057,3.374,0.057,5.046
c0.027,2.296,0.027,4.592,0.027,6.859c0,1.645,0,3.289,0,4.904c0,2.354,0,4.678-0.027,7.002
c-0.029,1.53-0.029,3.061-0.057,4.563c-0.029,2.409-0.086,4.819-0.143,7.2c-0.028,1.36-0.057,2.693-0.085,4.053
c-0.085,2.58-0.142,5.16-0.227,7.711c0,0.369-0.028,0.709-0.057,1.077c-0.227,6.604-0.538,13.21-0.907,19.757
c-0.028,0.228-0.028,0.454-0.028,0.682c-0.17,2.777-0.368,5.527-0.567,8.305c-0.057,0.992-0.113,1.984-0.197,3.005
c-0.199,2.636-0.397,5.272-0.624,7.909c-0.085,1.076-0.17,2.154-0.284,3.23c-0.227,2.637-0.453,5.301-0.708,7.938
c-0.113,0.936-0.198,1.871-0.312,2.807c-0.284,2.807-0.567,5.584-0.879,8.361c-0.057,0.454-0.113,0.908-0.17,1.361
c-1.503,13.011-3.373,25.852-5.613,38.522c-0.085,0.538-0.17,1.077-0.283,1.645c-0.51,2.835-1.049,5.697-1.588,8.532
c-0.113,0.596-0.255,1.219-0.368,1.814c-0.566,2.891-1.162,5.782-1.786,8.645c-0.057,0.341-0.142,0.709-0.227,1.049
c-3.458,16.017-7.568,31.664-12.416,46.914l-0.255,0.766c-0.935,2.92-1.87,5.839-2.862,8.73l-0.256,0.736
c-6.321,18.369-13.72,36.143-22.337,53.264l-0.113,0.255c-29.026,57.544-71.858,107.519-133.03,147.062l-0.283,0.199
c-3.004,1.927-6.094,3.854-9.184,5.754l0,0V716.189z M2751.657,12.857l-11.226,17.518
c-67.946,105.902-122.06,99.724-237.77,99.724c-115.711,0-169.853,6.179-237.799-99.724l-11.226-17.518l56.693-11.65
c51.421,80.135,78.633,75.629,192.331,74.892c113.697,0.737,140.91,5.243,192.33-74.892L2751.657,12.857z M3132.662,716.189
c-76.025-39.969-139.635-97.115-183.487-176.938c-80.306-146.212-73.19-331.739-53.887-492.293l0.539-4.451l53.093,10.914
c-0.51,4.195-0.992,8.361-1.475,12.557c-0.17,1.389-0.312,2.778-0.481,4.167c-0.312,2.807-0.624,5.612-0.936,8.419
c-0.17,1.615-0.34,3.26-0.51,4.875c-0.284,2.58-0.539,5.16-0.822,7.739c-0.17,1.7-0.341,3.373-0.511,5.074
c-0.255,2.551-0.51,5.13-0.736,7.682c-0.17,1.644-0.313,3.288-0.482,4.933c-0.255,2.777-0.481,5.556-0.736,8.334
c-0.113,1.389-0.256,2.807-0.369,4.195c-0.34,4.053-0.68,8.078-0.992,12.104c-0.113,1.361-0.198,2.693-0.312,4.054
c-0.198,2.749-0.396,5.471-0.595,8.22c-0.114,1.814-0.256,3.629-0.369,5.443c-0.142,2.268-0.283,4.535-0.425,6.803
c-0.114,1.928-0.228,3.884-0.341,5.811c-0.142,2.127-0.255,4.281-0.368,6.406c-0.085,1.984-0.198,3.969-0.283,5.982
c-0.113,2.041-0.198,4.109-0.284,6.15c-0.084,2.041-0.198,4.082-0.255,6.095c-0.085,2.041-0.142,4.054-0.227,6.095
c-0.113,3.741-0.227,7.512-0.312,11.254c-0.057,1.955-0.113,3.911-0.142,5.839c-0.058,2.268-0.085,4.535-0.114,6.803
c0,1.673-0.027,3.374-0.057,5.046c-0.027,2.296-0.027,4.592-0.027,6.859c0,1.645,0,3.289,0,4.904
c0,2.354,0.027,4.678,0.057,7.002c0,1.53,0.027,3.061,0.057,4.563c0.027,2.409,0.057,4.819,0.113,7.2
c0.028,1.36,0.057,2.693,0.113,4.053c0.057,2.58,0.113,5.16,0.198,7.711c0.028,0.369,0.028,0.709,0.057,1.077
c0.227,6.604,0.538,13.21,0.907,19.757c0.028,0.228,0.028,0.454,0.057,0.682c0.17,2.777,0.34,5.527,0.539,8.305
c0.057,0.992,0.141,1.984,0.197,3.005c0.199,2.636,0.426,5.272,0.624,7.909c0.085,1.076,0.198,2.154,0.284,3.23
c0.227,2.637,0.481,5.273,0.736,7.938c0.085,0.936,0.198,1.871,0.283,2.807c0.284,2.807,0.567,5.584,0.907,8.361
c0.028,0.454,0.085,0.908,0.142,1.361c1.503,13.011,3.373,25.852,5.613,38.522c0.085,0.538,0.198,1.077,0.283,1.645
c0.51,2.835,1.049,5.697,1.615,8.532c0.114,0.596,0.228,1.219,0.341,1.814c0.595,2.891,1.162,5.782,1.786,8.645
c0.084,0.341,0.142,0.709,0.227,1.049c3.458,16.017,7.597,31.664,12.443,46.914c0.057,0.255,0.143,0.51,0.228,0.766
c0.935,2.92,1.899,5.839,2.892,8.73l0.255,0.736c6.292,18.369,13.69,36.143,22.309,53.264l0.142,0.255
c28.998,57.544,71.858,107.519,133.002,147.062l0.283,0.199c3.033,1.927,6.094,3.854,9.213,5.754l0,0V716.189z"/>
</defs>
<clipPath id="Back_Trim_2_Clippath_URL">
<use xlink:href="#Back_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Back_Trim_2" clip-path="url(#Back_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#0000FF" stroke="#FFFFFF" stroke-width="0.2268" stroke-miterlimit="10" d="
M1872.662,716.189c76.024-39.969,139.635-97.115,183.458-176.938c80.306-146.212,73.219-331.739,53.887-492.293l-0.539-4.451
l-53.064,10.914c0.481,4.195,0.992,8.361,1.474,12.557c0.143,1.389,0.313,2.778,0.454,4.167c0.312,2.807,0.624,5.612,0.936,8.419
c0.17,1.615,0.34,3.26,0.538,4.875c0.256,2.58,0.539,5.16,0.794,7.739c0.17,1.7,0.341,3.373,0.511,5.074
c0.255,2.551,0.51,5.13,0.765,7.682c0.142,1.644,0.312,3.288,0.454,4.933c0.255,2.777,0.51,5.556,0.736,8.334
c0.143,1.389,0.256,2.807,0.397,4.195c0.34,4.053,0.651,8.078,0.964,12.104c0.113,1.361,0.198,2.693,0.312,4.054
c0.198,2.749,0.425,5.471,0.595,8.22c0.143,1.814,0.256,3.629,0.369,5.443c0.142,2.268,0.312,4.535,0.453,6.803
c0.113,1.928,0.227,3.884,0.341,5.811c0.113,2.127,0.227,4.281,0.34,6.406c0.113,1.984,0.198,3.969,0.312,5.982
c0.085,2.041,0.199,4.109,0.283,6.15c0.086,2.041,0.171,4.082,0.256,6.095c0.085,2.041,0.142,4.054,0.198,6.095
c0.142,3.741,0.227,7.512,0.34,11.254c0.028,1.955,0.085,3.911,0.142,5.839c0.029,2.268,0.057,4.535,0.086,6.803
c0.027,1.673,0.057,3.374,0.057,5.046c0.027,2.296,0.027,4.592,0.027,6.859c0,1.645,0,3.289,0,4.904c0,2.354,0,4.678-0.027,7.002
c-0.029,1.53-0.029,3.061-0.057,4.563c-0.029,2.409-0.086,4.819-0.143,7.2c-0.028,1.36-0.057,2.693-0.085,4.053
c-0.085,2.58-0.142,5.16-0.227,7.711c0,0.369-0.028,0.709-0.057,1.077c-0.227,6.604-0.538,13.21-0.907,19.757
c-0.028,0.228-0.028,0.454-0.028,0.682c-0.17,2.777-0.368,5.527-0.567,8.305c-0.057,0.992-0.113,1.984-0.197,3.005
c-0.199,2.636-0.397,5.272-0.624,7.909c-0.085,1.076-0.17,2.154-0.284,3.23c-0.227,2.637-0.453,5.301-0.708,7.938
c-0.113,0.936-0.198,1.871-0.312,2.807c-0.284,2.807-0.567,5.584-0.879,8.361c-0.057,0.454-0.113,0.908-0.17,1.361
c-1.503,13.011-3.373,25.852-5.613,38.522c-0.085,0.538-0.17,1.077-0.283,1.645c-0.51,2.835-1.049,5.697-1.588,8.532
c-0.113,0.596-0.255,1.219-0.368,1.814c-0.566,2.891-1.162,5.782-1.786,8.645c-0.057,0.341-0.142,0.709-0.227,1.049
c-3.458,16.017-7.568,31.664-12.416,46.914l-0.255,0.766c-0.935,2.92-1.87,5.839-2.862,8.73l-0.256,0.736
c-6.321,18.369-13.72,36.143-22.337,53.264l-0.113,0.255c-29.026,57.544-71.858,107.519-133.03,147.062l-0.283,0.199
c-3.004,1.927-6.094,3.854-9.184,5.754l0,0V716.189z M2751.657,12.857l-11.226,17.518
c-67.946,105.902-122.06,99.724-237.77,99.724c-115.711,0-169.853,6.179-237.799-99.724l-11.226-17.518l56.693-11.65
c51.421,80.135,78.633,75.629,192.331,74.892c113.697,0.737,140.91,5.243,192.33-74.892L2751.657,12.857z M3132.662,716.189
c-76.025-39.969-139.635-97.115-183.487-176.938c-80.306-146.212-73.19-331.739-53.887-492.293l0.539-4.451l53.093,10.914
c-0.51,4.195-0.992,8.361-1.475,12.557c-0.17,1.389-0.312,2.778-0.481,4.167c-0.312,2.807-0.624,5.612-0.936,8.419
c-0.17,1.615-0.34,3.26-0.51,4.875c-0.284,2.58-0.539,5.16-0.822,7.739c-0.17,1.7-0.341,3.373-0.511,5.074
c-0.255,2.551-0.51,5.13-0.736,7.682c-0.17,1.644-0.313,3.288-0.482,4.933c-0.255,2.777-0.481,5.556-0.736,8.334
c-0.113,1.389-0.256,2.807-0.369,4.195c-0.34,4.053-0.68,8.078-0.992,12.104c-0.113,1.361-0.198,2.693-0.312,4.054
c-0.198,2.749-0.396,5.471-0.595,8.22c-0.114,1.814-0.256,3.629-0.369,5.443c-0.142,2.268-0.283,4.535-0.425,6.803
c-0.114,1.928-0.228,3.884-0.341,5.811c-0.142,2.127-0.255,4.281-0.368,6.406c-0.085,1.984-0.198,3.969-0.283,5.982
c-0.113,2.041-0.198,4.109-0.284,6.15c-0.084,2.041-0.198,4.082-0.255,6.095c-0.085,2.041-0.142,4.054-0.227,6.095
c-0.113,3.741-0.227,7.512-0.312,11.254c-0.057,1.955-0.113,3.911-0.142,5.839c-0.058,2.268-0.085,4.535-0.114,6.803
c0,1.673-0.027,3.374-0.057,5.046c-0.027,2.296-0.027,4.592-0.027,6.859c0,1.645,0,3.289,0,4.904
c0,2.354,0.027,4.678,0.057,7.002c0,1.53,0.027,3.061,0.057,4.563c0.027,2.409,0.057,4.819,0.113,7.2
c0.028,1.36,0.057,2.693,0.113,4.053c0.057,2.58,0.113,5.16,0.198,7.711c0.028,0.369,0.028,0.709,0.057,1.077
c0.227,6.604,0.538,13.21,0.907,19.757c0.028,0.228,0.028,0.454,0.057,0.682c0.17,2.777,0.34,5.527,0.539,8.305
c0.057,0.992,0.141,1.984,0.197,3.005c0.199,2.636,0.426,5.272,0.624,7.909c0.085,1.076,0.198,2.154,0.284,3.23
c0.227,2.637,0.481,5.273,0.736,7.938c0.085,0.936,0.198,1.871,0.283,2.807c0.284,2.807,0.567,5.584,0.907,8.361
c0.028,0.454,0.085,0.908,0.142,1.361c1.503,13.011,3.373,25.852,5.613,38.522c0.085,0.538,0.198,1.077,0.283,1.645
c0.51,2.835,1.049,5.697,1.615,8.532c0.114,0.596,0.228,1.219,0.341,1.814c0.595,2.891,1.162,5.782,1.786,8.645
c0.084,0.341,0.142,0.709,0.227,1.049c3.458,16.017,7.597,31.664,12.443,46.914c0.057,0.255,0.143,0.51,0.228,0.766
c0.935,2.92,1.899,5.839,2.892,8.73l0.255,0.736c6.292,18.369,13.69,36.143,22.309,53.264l0.142,0.255
c28.998,57.544,71.858,107.519,133.002,147.062l0.283,0.199c3.033,1.927,6.094,3.854,9.213,5.754l0,0V716.189z"/>
</g>
<g id="Back_Trim_2_Pattern">
</g>
</g>
<g id="Back_Jock_Tag">
<rect x="2916.662" y="1837.207" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Prod_QR_Code">
<rect x="2566.281" y="2219.34" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Back_Border">
<rect x="1998.662" y="129.113" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
<g id="front_jersey">
<g id="Layer_5">
<g>
<defs>
<path id="Front_Trim_1_Clippath" d="M1111.267,1.207l253.984,52.215c-34.753,288.68-13.124,559.219,309.741,655.398
c65.849-19.588,119.141-46.461,162-79.258v1567.645c-612,0-1224,0-1836,0V629.563c42.86,32.797,96.18,59.67,162,79.258
c322.867-96.18,344.495-366.719,309.742-655.398L726.719,1.207c8.929,226.347,79.767,377.178,192.246,472.422
C1031.471,378.385,1102.309,227.554,1111.267,1.207L1111.267,1.207z"/>
</defs>
<clipPath id="Front_Trim_1_Clippath_URL">
<use xlink:href="#Front_Trim_1_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_1" clip-path="url(#Front_Trim_1_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" stroke="#000000" stroke-width="1.9842" stroke-miterlimit="10" d="
M1111.267,1.207l253.984,52.215c-34.753,288.68-13.124,559.219,309.741,655.398c65.849-19.588,119.141-46.461,162-79.258
v1567.645c-612,0-1224,0-1836,0V629.563c42.86,32.797,96.18,59.67,162,79.258c322.867-96.18,344.495-366.719,309.742-655.398
L726.719,1.207c8.929,226.347,79.767,377.178,192.246,472.422C1031.471,378.385,1102.309,227.554,1111.267,1.207L1111.267,1.207z
"/>
</g>
<g id="Front_Trim_1_Pattern">
</g>
</g>
<g id="Layer_4">
<g>
<defs>
<path id="Front_MainColor_Clippath" d="M340.924,2095.188l-70.811,83.311l-215.943-9.128 M1539.298,648.017l-233.405,61.54
l-0.651,0.794l204.69,9.694l50.399-59.244C1553.074,656.662,1546.072,652.41,1539.298,648.017L1539.298,648.017z
M1427.216,537.238c3.771,5.783,7.683,11.48,11.792,17.094l-211.775,246.954l0.425-0.481l275.272-72.511l-70.47,82.913
l-205.427-9.694l-625.209,729.156l281.367-73.361l-70.64,83.112l-211.04-9.383l0.313-0.368l-312.916,364.932l284.428-73.785
l-70.753,83.225l-213.817-9.241l0.028-0.027l-78.122,91.076l285.193-73.898l-70.781,83.225l-214.525-9.184l0.113-0.143
L54.228,2169.314l-0.028,0.028l-23.896,27.864H3.855L1427.216,537.238z M1573.796,668.171
c29.877,15.761,63.468,29.424,101.196,40.649c65.849-19.588,119.141-46.461,162-79.258v1567.645H281.197L1508.004,754.57
L1573.796,668.171z M254.211,2197.207h-32.938l42.179-10.885L254.211,2197.207z M1270.545,1001.667l-70.555,82.999
l-207.523-9.582l0.51-0.566L1270.545,1001.667z M805.748,1548.441l-70.695,83.141l-211.721-9.354l0.256-0.312L805.748,1548.441z
M418.395,2004.055l-70.781,83.281l-215.234-9.155l0.084-0.113L418.395,2004.055z M54.228,2169.314l286.696-74.126
M650.807,1730.682l-70.725,83.196l-213.137-9.27l0.198-0.227L650.807,1730.682z M728.277,1639.547l-70.725,83.197
l-212.428-9.326l0.255-0.283L728.277,1639.547z M960.662,1366.174l-70.64,83.112l-210.302-9.439l0.34-0.397L960.662,1366.174z
M1038.133,1275.04l-70.611,83.084l-209.622-9.468l0.397-0.454L1038.133,1275.04z M1115.604,1183.935l-70.582,83.026
l-208.942-9.495l0.425-0.482L1115.604,1183.935z M1193.074,1092.801l-70.582,83.027l-208.205-9.553l0.453-0.539
L1193.074,1092.801z M1348.016,910.562l-70.554,82.941l-206.815-9.609l0.538-0.624L1348.016,910.562z M1425.459,819.428
l-70.498,82.941l-206.107-9.666l0.567-0.652L1425.459,819.428z"/>
</defs>
<clipPath id="Front_MainColor_Clippath_URL">
<use xlink:href="#Front_MainColor_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_MainColor" clip-path="url(#Front_MainColor_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCCC" d="
M340.924,2095.188l-70.811,83.311l-215.943-9.128 M1539.298,648.017l-233.405,61.54l-0.651,0.794l204.69,9.694l50.399-59.244
C1553.074,656.662,1546.072,652.41,1539.298,648.017L1539.298,648.017z M1427.216,537.238c3.771,5.783,7.683,11.48,11.792,17.094
l-211.775,246.954l0.425-0.481l275.272-72.511l-70.47,82.913l-205.427-9.694l-625.209,729.156l281.367-73.361l-70.64,83.112
l-211.04-9.383l0.313-0.368l-312.916,364.932l284.428-73.785l-70.753,83.225l-213.817-9.241l0.028-0.027l-78.122,91.076
l285.193-73.898l-70.781,83.225l-214.525-9.184l0.113-0.143L54.228,2169.314l-0.028,0.028l-23.896,27.864H3.855L1427.216,537.238
z M1573.796,668.171c29.877,15.761,63.468,29.424,101.196,40.649c65.849-19.588,119.141-46.461,162-79.258v1567.645H281.197
L1508.004,754.57L1573.796,668.171z M254.211,2197.207h-32.938l42.179-10.885L254.211,2197.207z M1270.545,1001.667
l-70.555,82.999l-207.523-9.582l0.51-0.566L1270.545,1001.667z M805.748,1548.441l-70.695,83.141l-211.721-9.354l0.256-0.312
L805.748,1548.441z M418.395,2004.055l-70.781,83.281l-215.234-9.155l0.084-0.113L418.395,2004.055z M54.228,2169.314
l286.696-74.126 M650.807,1730.682l-70.725,83.196l-213.137-9.27l0.198-0.227L650.807,1730.682z M728.277,1639.547
l-70.725,83.197l-212.428-9.326l0.255-0.283L728.277,1639.547z M960.662,1366.174l-70.64,83.112l-210.302-9.439l0.34-0.397
L960.662,1366.174z M1038.133,1275.04l-70.611,83.084l-209.622-9.468l0.397-0.454L1038.133,1275.04z M1115.604,1183.935
l-70.582,83.026l-208.942-9.495l0.425-0.482L1115.604,1183.935z M1193.074,1092.801l-70.582,83.027l-208.205-9.553l0.453-0.539
L1193.074,1092.801z M1348.016,910.562l-70.554,82.941l-206.815-9.609l0.538-0.624L1348.016,910.562z M1425.459,819.428
l-70.498,82.941l-206.107-9.666l0.567-0.652L1425.459,819.428z"/>
</g>
<g id="Front_MainColor_Pattern">
</g>
</g>
<g id="Layer_6">
<g>
<defs>
<path id="Front_Trim_2_Clippath" d="M113.868,749.61c-40.252-14.286-78.151-32.173-112.876-54.255v-65.793
c0.369,0.284,0.737,0.567,1.105,0.852c2.92,2.211,5.896,4.393,8.93,6.547c0.368,0.284,0.736,0.567,1.134,0.822
c3.033,2.184,6.123,4.309,9.27,6.406c0.368,0.256,0.765,0.511,1.134,0.766c3.175,2.126,6.406,4.224,9.694,6.265l1.049,0.681
c3.316,2.068,6.718,4.109,10.147,6.123c0.313,0.197,0.652,0.396,0.965,0.566c3.515,2.041,7.058,4.054,10.658,6.037
c0.312,0.143,0.595,0.313,0.879,0.482c3.685,1.984,7.398,3.969,11.168,5.896l0.793,0.396c3.827,1.956,7.711,3.855,11.65,5.727
l0.738,0.34c3.968,1.898,8.021,3.742,12.132,5.556l0.595,0.284c4.167,1.813,8.391,3.628,12.672,5.385l0.51,0.199
c2.522,1.049,5.102,2.068,7.682,3.09l0.198,0.084l0.228,0.086l0.113,0.057l0.34,0.113l0.425,0.17l0.142,0.057l0.879,0.34
l0.057,0.029l0.34,0.141l0.341,0.113l0.567,0.228c0.68,0.255,1.332,0.511,2.012,0.765l0.227,0.086
c0.766,0.283,1.531,0.566,2.297,0.879l0.481,0.17l1.333,0.481l0.963,0.368l0.313,0.113l0.481,0.17l0.142,0.058
c0.652,0.255,1.332,0.481,1.984,0.737l0.199,0.057l1.219,0.453l0.396,0.142l0.057,0.028l0.255,0.085l0.255,0.085l0.086,0.029
l1.162,0.424l0.623,0.199l1.531,0.566l0.227,0.057c4.677,1.645,9.439,3.26,14.258,4.819l0.143,0.057
c2.041,0.651,4.109,1.304,6.179,1.956l0.085,0.028l1.078,0.341h0.057l0.396,0.141l0.057,0.029l0.396,0.113l0.085,0.027
l0.397,0.113l0.793,0.256l1.531,0.453l0.057,0.029l0.736,0.227l0.539,0.141l0.142,0.058l0.539,0.17l0.566,0.17l0.171,0.028
l0.425,0.143l0.595,0.17c4.819-1.418,9.553-2.893,14.23-4.395l1.53-0.51c3.827-1.248,7.626-2.523,11.367-3.827
c1.814-0.651,3.601-1.275,5.386-1.927c2.239-0.795,4.422-1.588,6.633-2.41c3.373-1.247,6.719-2.523,10.007-3.826
C487.957,583.67,505.645,326.682,472.734,53.422l53.093-10.914l0.538,4.451c19.333,160.554,26.42,346.081-53.887,492.293
c-57.911,105.477-150.349,171.297-260.333,210.33v1447.625h-98.277V749.61z M884.098,514.845l34.895,29.537l34.895-29.537
c149.188-126.34,202.139-313.88,210.955-502.61l-53.575-11.027c-8.929,226.347-79.767,377.178-192.274,472.422
C806.514,378.385,735.676,227.554,726.747,1.207l-53.575,11.027C681.988,200.965,734.91,388.505,884.098,514.845z
M1835.887,630.414c-2.92,2.211-5.867,4.393-8.9,6.547c-0.369,0.284-0.766,0.567-1.134,0.822
c-3.033,2.184-6.123,4.309-9.27,6.406c-0.368,0.256-0.766,0.511-1.162,0.766c-3.175,2.126-6.378,4.224-9.666,6.265l-1.049,0.681
c-3.345,2.068-6.719,4.109-10.148,6.123c-0.34,0.197-0.651,0.396-0.992,0.566c-3.486,2.041-7.03,4.054-10.63,6.037
c-0.312,0.143-0.595,0.313-0.907,0.482c-3.656,1.984-7.37,3.969-11.14,5.896l-0.822,0.396
c-3.799,1.956-7.682,3.855-11.622,5.727l-0.737,0.34c-3.968,1.898-8.021,3.742-12.132,5.556l-0.624,0.284
c-4.139,1.813-8.362,3.628-12.643,5.385l-0.51,0.199c-2.551,1.049-5.103,2.068-7.682,3.09l-0.199,0.084l-0.255,0.086
l-0.113,0.057l-0.312,0.113l-0.426,0.17l-0.142,0.057l-0.879,0.34l-0.085,0.029l-0.34,0.141l-0.396,0.143l-0.482,0.198
l-0.085,0.028c-0.624,0.227-1.247,0.482-1.871,0.709l-0.283,0.113c-2.126,0.793-4.28,1.615-6.435,2.381
c-0.566,0.227-1.162,0.426-1.729,0.652l-0.481,0.17l-1.275,0.453l-0.313,0.113l-0.312,0.113l-0.794,0.283l-0.368,0.113
l-0.396,0.171l-0.596,0.198l-1.077,0.369l-0.227,0.084c-3.714,1.305-7.483,2.58-11.282,3.855l-0.198,0.057
c-0.936,0.313-1.871,0.624-2.807,0.907l-0.113,0.057c-2.579,0.822-5.188,1.644-7.823,2.466l-0.028,0.029l-0.879,0.254
l-0.17,0.057l-0.113,0.029l-0.511,0.17l-1.53,0.453l-0.085,0.029l-0.709,0.227l-0.567,0.17l-0.142,0.028l-0.538,0.17
l-0.482,0.142l-0.283,0.085l-0.368,0.114l-0.624,0.17c-4.79-1.418-9.524-2.893-14.201-4.395l-1.531-0.51
c-3.826-1.248-7.597-2.523-11.338-3.827c-1.843-0.651-3.657-1.275-5.5-1.927c-2.183-0.795-4.337-1.588-6.491-2.41
c-3.401-1.247-6.746-2.523-10.063-3.826c-275.839-108.256-293.499-365.244-260.617-638.504l-53.065-10.914l-0.538,4.451
c-19.332,160.554-26.419,346.081,53.887,492.293c57.911,105.477,150.321,171.297,260.334,210.33v1447.625h98.277V749.61
c40.252-14.286,78.15-32.173,112.847-54.255v-65.793C1836.624,629.847,1836.256,630.13,1835.887,630.414z M0.991,2413.34h1656
v-180h-1656V2413.34z"/>
</defs>
<clipPath id="Front_Trim_2_Clippath_URL">
<use xlink:href="#Front_Trim_2_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_2" clip-path="url(#Front_Trim_2_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#F25100" d="
M113.868,749.61c-40.252-14.286-78.151-32.173-112.876-54.255v-65.793c0.369,0.284,0.737,0.567,1.105,0.852
c2.92,2.211,5.896,4.393,8.93,6.547c0.368,0.284,0.736,0.567,1.134,0.822c3.033,2.184,6.123,4.309,9.27,6.406
c0.368,0.256,0.765,0.511,1.134,0.766c3.175,2.126,6.406,4.224,9.694,6.265l1.049,0.681c3.316,2.068,6.718,4.109,10.147,6.123
c0.313,0.197,0.652,0.396,0.965,0.566c3.515,2.041,7.058,4.054,10.658,6.037c0.312,0.143,0.595,0.313,0.879,0.482
c3.685,1.984,7.398,3.969,11.168,5.896l0.793,0.396c3.827,1.956,7.711,3.855,11.65,5.727l0.738,0.34
c3.968,1.898,8.021,3.742,12.132,5.556l0.595,0.284c4.167,1.813,8.391,3.628,12.672,5.385l0.51,0.199
c2.522,1.049,5.102,2.068,7.682,3.09l0.198,0.084l0.228,0.086l0.113,0.057l0.34,0.113l0.425,0.17l0.142,0.057l0.879,0.34
l0.057,0.029l0.34,0.141l0.341,0.113l0.567,0.228c0.68,0.255,1.332,0.511,2.012,0.765l0.227,0.086
c0.766,0.283,1.531,0.566,2.297,0.879l0.481,0.17l1.333,0.481l0.963,0.368l0.313,0.113l0.481,0.17l0.142,0.058
c0.652,0.255,1.332,0.481,1.984,0.737l0.199,0.057l1.219,0.453l0.396,0.142l0.057,0.028l0.255,0.085l0.255,0.085l0.086,0.029
l1.162,0.424l0.623,0.199l1.531,0.566l0.227,0.057c4.677,1.645,9.439,3.26,14.258,4.819l0.143,0.057
c2.041,0.651,4.109,1.304,6.179,1.956l0.085,0.028l1.078,0.341h0.057l0.396,0.141l0.057,0.029l0.396,0.113l0.085,0.027
l0.397,0.113l0.793,0.256l1.531,0.453l0.057,0.029l0.736,0.227l0.539,0.141l0.142,0.058l0.539,0.17l0.566,0.17l0.171,0.028
l0.425,0.143l0.595,0.17c4.819-1.418,9.553-2.893,14.23-4.395l1.53-0.51c3.827-1.248,7.626-2.523,11.367-3.827
c1.814-0.651,3.601-1.275,5.386-1.927c2.239-0.795,4.422-1.588,6.633-2.41c3.373-1.247,6.719-2.523,10.007-3.826
C487.957,583.67,505.645,326.682,472.734,53.422l53.093-10.914l0.538,4.451c19.333,160.554,26.42,346.081-53.887,492.293
c-57.911,105.477-150.349,171.297-260.333,210.33v1447.625h-98.277V749.61z M884.098,514.845l34.895,29.537l34.895-29.537
c149.188-126.34,202.139-313.88,210.955-502.61l-53.575-11.027c-8.929,226.347-79.767,377.178-192.274,472.422
C806.514,378.385,735.676,227.554,726.747,1.207l-53.575,11.027C681.988,200.965,734.91,388.505,884.098,514.845z
M1835.887,630.414c-2.92,2.211-5.867,4.393-8.9,6.547c-0.369,0.284-0.766,0.567-1.134,0.822
c-3.033,2.184-6.123,4.309-9.27,6.406c-0.368,0.256-0.766,0.511-1.162,0.766c-3.175,2.126-6.378,4.224-9.666,6.265l-1.049,0.681
c-3.345,2.068-6.719,4.109-10.148,6.123c-0.34,0.197-0.651,0.396-0.992,0.566c-3.486,2.041-7.03,4.054-10.63,6.037
c-0.312,0.143-0.595,0.313-0.907,0.482c-3.656,1.984-7.37,3.969-11.14,5.896l-0.822,0.396c-3.799,1.956-7.682,3.855-11.622,5.727
l-0.737,0.34c-3.968,1.898-8.021,3.742-12.132,5.556l-0.624,0.284c-4.139,1.813-8.362,3.628-12.643,5.385l-0.51,0.199
c-2.551,1.049-5.103,2.068-7.682,3.09l-0.199,0.084l-0.255,0.086l-0.113,0.057l-0.312,0.113l-0.426,0.17l-0.142,0.057
l-0.879,0.34l-0.085,0.029l-0.34,0.141l-0.396,0.143l-0.482,0.198l-0.085,0.028c-0.624,0.227-1.247,0.482-1.871,0.709
l-0.283,0.113c-2.126,0.793-4.28,1.615-6.435,2.381c-0.566,0.227-1.162,0.426-1.729,0.652l-0.481,0.17l-1.275,0.453l-0.313,0.113
l-0.312,0.113l-0.794,0.283l-0.368,0.113l-0.396,0.171l-0.596,0.198l-1.077,0.369l-0.227,0.084
c-3.714,1.305-7.483,2.58-11.282,3.855l-0.198,0.057c-0.936,0.313-1.871,0.624-2.807,0.907l-0.113,0.057
c-2.579,0.822-5.188,1.644-7.823,2.466l-0.028,0.029l-0.879,0.254l-0.17,0.057l-0.113,0.029l-0.511,0.17l-1.53,0.453
l-0.085,0.029l-0.709,0.227l-0.567,0.17l-0.142,0.028l-0.538,0.17l-0.482,0.142l-0.283,0.085l-0.368,0.114l-0.624,0.17
c-4.79-1.418-9.524-2.893-14.201-4.395l-1.531-0.51c-3.826-1.248-7.597-2.523-11.338-3.827c-1.843-0.651-3.657-1.275-5.5-1.927
c-2.183-0.795-4.337-1.588-6.491-2.41c-3.401-1.247-6.746-2.523-10.063-3.826c-275.839-108.256-293.499-365.244-260.617-638.504
l-53.065-10.914l-0.538,4.451c-19.332,160.554-26.419,346.081,53.887,492.293c57.911,105.477,150.321,171.297,260.334,210.33
v1447.625h98.277V749.61c40.252-14.286,78.15-32.173,112.847-54.255v-65.793C1836.624,629.847,1836.256,630.13,1835.887,630.414z
M0.991,2413.34h1656v-180h-1656V2413.34z"/>
</g>
<g id="Front_Trim_2_Pattern">
</g>
</g>
<g id="Layer_7">
<g>
<defs>
<path id="Front_Trim_3_Clippath" d="M1687.437,2098.278h24.746v24.746h-24.746V2098.278z M175.437,830.766h24.747v24.775
h-24.747V830.766z M228.699,743.459v1453.748h-16.554V749.582C217.729,747.626,223.229,745.585,228.699,743.459L228.699,743.459
z M216.313,690.281c2.75-1.105,5.499-2.239,8.221-3.373C221.812,688.042,219.063,689.176,216.313,690.281L216.313,690.281z
M113.868,2197.207H97.285V743.459c5.5,2.126,10.999,4.167,16.583,6.151V2197.207z M175.437,2098.278h24.747v24.746h-24.747
V2098.278z M150.577,2073.503h24.774v24.775h-24.774V2073.503z M125.802,2098.278h24.775v24.746h-24.775V2098.278z
M150.577,2123.024h24.774v24.775h-24.774V2123.024z M175.437,1927.52h24.747v24.774h-24.747V1927.52z M150.577,1902.744h24.774
v24.775h-24.774V1902.744z M125.802,1927.52h24.775v24.774h-24.775V1927.52z M150.577,1952.294h24.774v24.774h-24.774V1952.294z
M175.437,1769.119h24.747v24.774h-24.747V1769.119z M150.577,1744.344h24.774v24.775h-24.774V1744.344z M125.802,1769.119
h24.775v24.774h-24.775V1769.119z M150.577,1793.894h24.774v24.775h-24.774V1793.894z M175.437,1611.739h24.747v24.775h-24.747
V1611.739z M150.577,1586.965h24.774v24.774h-24.774V1586.965z M125.802,1611.739h24.775v24.775h-24.775V1611.739z
M150.577,1636.515h24.774v24.774h-24.774V1636.515z M175.437,1453.34h24.747v24.774h-24.747V1453.34z M150.577,1428.564h24.774
v24.775h-24.774V1428.564z M125.802,1453.34h24.775v24.774h-24.775V1453.34z M150.577,1478.114h24.774v24.774h-24.774V1478.114z
M175.437,1304.945h24.747v24.775h-24.747V1304.945z M150.577,1280.171h24.774v24.774h-24.774V1280.171z M125.802,1304.945
h24.775v24.775h-24.775V1304.945z M150.577,1329.721h24.774v24.746h-24.774V1329.721z M175.437,1146.546h24.747v24.774h-24.747
V1146.546z M150.577,1121.771h24.774v24.775h-24.774V1121.771z M125.802,1146.546h24.775v24.774h-24.775V1146.546z
M150.577,1171.32h24.774v24.747h-24.774V1171.32z M175.437,989.166h24.747v24.775h-24.747V989.166z M150.577,964.392h24.774
v24.774h-24.774V964.392z M125.802,989.166h24.775v24.775h-24.775V989.166z M150.577,1013.941h24.774v24.774h-24.774V1013.941z
M150.577,805.991h24.774v24.774h-24.774V805.991z M125.802,830.766h24.775v24.775h-24.775V830.766z M150.577,855.541h24.774
v24.775h-24.774V855.541z M1740.699,743.459v1453.748h-16.554V749.61C1729.701,747.626,1735.229,745.585,1740.699,743.459
L1740.699,743.459z M1625.868,2197.207h-16.583V743.459c5.471,2.126,10.998,4.167,16.583,6.123V2197.207z M1687.437,830.766
h24.746v24.775h-24.746V830.766z M1662.576,805.991h24.775v24.774h-24.775V805.991z M1637.802,830.766h24.774v24.775h-24.774
V830.766z M1662.576,855.541h24.775v24.775h-24.775V855.541z M1687.437,989.166h24.746v24.775h-24.746V989.166z
M1662.576,964.392h24.775v24.774h-24.775V964.392z M1637.802,989.166h24.774v24.775h-24.774V989.166z M1662.576,1013.941
h24.775v24.774h-24.775V1013.941z M1687.437,1146.546h24.746v24.774h-24.746V1146.546z M1662.576,1121.771h24.775v24.775
h-24.775V1121.771z M1637.802,1146.546h24.774v24.774h-24.774V1146.546z M1662.576,1171.32h24.775v24.747h-24.775V1171.32z
M1687.437,1304.945h24.746v24.775h-24.746V1304.945z M1662.576,1280.171h24.775v24.774h-24.775V1280.171z M1637.802,1304.945
h24.774v24.775h-24.774V1304.945z M1662.576,1329.721h24.775v24.746h-24.775V1329.721z M1687.437,1453.34h24.746v24.774h-24.746
V1453.34z M1662.576,1428.564h24.775v24.775h-24.775V1428.564z M1637.802,1453.34h24.774v24.774h-24.774V1453.34z
M1662.576,1478.114h24.775v24.774h-24.775V1478.114z M1687.437,1611.739h24.746v24.775h-24.746V1611.739z M1662.576,1586.965
h24.775v24.774h-24.775V1586.965z M1637.802,1611.739h24.774v24.775h-24.774V1611.739z M1662.576,1636.515h24.775v24.774
h-24.775V1636.515z M1687.437,1769.119h24.746v24.774h-24.746V1769.119z M1662.576,1744.344h24.775v24.775h-24.775V1744.344z
M1637.802,1769.119h24.774v24.774h-24.774V1769.119z M1662.576,1793.894h24.775v24.775h-24.775V1793.894z M1687.437,1927.52
h24.746v24.774h-24.746V1927.52z M1662.576,1902.744h24.775v24.775h-24.775V1902.744z M1637.802,1927.52h24.774v24.774h-24.774
V1927.52z M1662.576,1952.294h24.775v24.774h-24.775V1952.294z M1662.576,2073.503h24.775v24.775h-24.775V2073.503z
M1637.802,2098.278h24.774v24.746h-24.774V2098.278z M1662.576,2123.024h24.775v24.775h-24.775V2123.024z"/>
</defs>
<clipPath id="Front_Trim_3_Clippath_URL">
<use xlink:href="#Front_Trim_3_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_3" clip-path="url(#Front_Trim_3_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#010149" d="
M1687.437,2098.278h24.746v24.746h-24.746V2098.278z M175.437,830.766h24.747v24.775h-24.747V830.766z M228.699,743.459v1453.748
h-16.554V749.582C217.729,747.626,223.229,745.585,228.699,743.459L228.699,743.459z M216.313,690.281
c2.75-1.105,5.499-2.239,8.221-3.373C221.812,688.042,219.063,689.176,216.313,690.281L216.313,690.281z M113.868,2197.207
H97.285V743.459c5.5,2.126,10.999,4.167,16.583,6.151V2197.207z M175.437,2098.278h24.747v24.746h-24.747V2098.278z
M150.577,2073.503h24.774v24.775h-24.774V2073.503z M125.802,2098.278h24.775v24.746h-24.775V2098.278z M150.577,2123.024
h24.774v24.775h-24.774V2123.024z M175.437,1927.52h24.747v24.774h-24.747V1927.52z M150.577,1902.744h24.774v24.775h-24.774
V1902.744z M125.802,1927.52h24.775v24.774h-24.775V1927.52z M150.577,1952.294h24.774v24.774h-24.774V1952.294z
M175.437,1769.119h24.747v24.774h-24.747V1769.119z M150.577,1744.344h24.774v24.775h-24.774V1744.344z M125.802,1769.119
h24.775v24.774h-24.775V1769.119z M150.577,1793.894h24.774v24.775h-24.774V1793.894z M175.437,1611.739h24.747v24.775h-24.747
V1611.739z M150.577,1586.965h24.774v24.774h-24.774V1586.965z M125.802,1611.739h24.775v24.775h-24.775V1611.739z
M150.577,1636.515h24.774v24.774h-24.774V1636.515z M175.437,1453.34h24.747v24.774h-24.747V1453.34z M150.577,1428.564h24.774
v24.775h-24.774V1428.564z M125.802,1453.34h24.775v24.774h-24.775V1453.34z M150.577,1478.114h24.774v24.774h-24.774V1478.114z
M175.437,1304.945h24.747v24.775h-24.747V1304.945z M150.577,1280.171h24.774v24.774h-24.774V1280.171z M125.802,1304.945
h24.775v24.775h-24.775V1304.945z M150.577,1329.721h24.774v24.746h-24.774V1329.721z M175.437,1146.546h24.747v24.774h-24.747
V1146.546z M150.577,1121.771h24.774v24.775h-24.774V1121.771z M125.802,1146.546h24.775v24.774h-24.775V1146.546z
M150.577,1171.32h24.774v24.747h-24.774V1171.32z M175.437,989.166h24.747v24.775h-24.747V989.166z M150.577,964.392h24.774
v24.774h-24.774V964.392z M125.802,989.166h24.775v24.775h-24.775V989.166z M150.577,1013.941h24.774v24.774h-24.774V1013.941z
M150.577,805.991h24.774v24.774h-24.774V805.991z M125.802,830.766h24.775v24.775h-24.775V830.766z M150.577,855.541h24.774
v24.775h-24.774V855.541z M1740.699,743.459v1453.748h-16.554V749.61C1729.701,747.626,1735.229,745.585,1740.699,743.459
L1740.699,743.459z M1625.868,2197.207h-16.583V743.459c5.471,2.126,10.998,4.167,16.583,6.123V2197.207z M1687.437,830.766
h24.746v24.775h-24.746V830.766z M1662.576,805.991h24.775v24.774h-24.775V805.991z M1637.802,830.766h24.774v24.775h-24.774
V830.766z M1662.576,855.541h24.775v24.775h-24.775V855.541z M1687.437,989.166h24.746v24.775h-24.746V989.166z
M1662.576,964.392h24.775v24.774h-24.775V964.392z M1637.802,989.166h24.774v24.775h-24.774V989.166z M1662.576,1013.941h24.775
v24.774h-24.775V1013.941z M1687.437,1146.546h24.746v24.774h-24.746V1146.546z M1662.576,1121.771h24.775v24.775h-24.775
V1121.771z M1637.802,1146.546h24.774v24.774h-24.774V1146.546z M1662.576,1171.32h24.775v24.747h-24.775V1171.32z
M1687.437,1304.945h24.746v24.775h-24.746V1304.945z M1662.576,1280.171h24.775v24.774h-24.775V1280.171z M1637.802,1304.945
h24.774v24.775h-24.774V1304.945z M1662.576,1329.721h24.775v24.746h-24.775V1329.721z M1687.437,1453.34h24.746v24.774h-24.746
V1453.34z M1662.576,1428.564h24.775v24.775h-24.775V1428.564z M1637.802,1453.34h24.774v24.774h-24.774V1453.34z
M1662.576,1478.114h24.775v24.774h-24.775V1478.114z M1687.437,1611.739h24.746v24.775h-24.746V1611.739z M1662.576,1586.965
h24.775v24.774h-24.775V1586.965z M1637.802,1611.739h24.774v24.775h-24.774V1611.739z M1662.576,1636.515h24.775v24.774h-24.775
V1636.515z M1687.437,1769.119h24.746v24.774h-24.746V1769.119z M1662.576,1744.344h24.775v24.775h-24.775V1744.344z
M1637.802,1769.119h24.774v24.774h-24.774V1769.119z M1662.576,1793.894h24.775v24.775h-24.775V1793.894z M1687.437,1927.52
h24.746v24.774h-24.746V1927.52z M1662.576,1902.744h24.775v24.775h-24.775V1902.744z M1637.802,1927.52h24.774v24.774h-24.774
V1927.52z M1662.576,1952.294h24.775v24.774h-24.775V1952.294z M1662.576,2073.503h24.775v24.775h-24.775V2073.503z
M1637.802,2098.278h24.774v24.746h-24.774V2098.278z M1662.576,2123.024h24.775v24.775h-24.775V2123.024z"/>
</g>
<g id="Front_Trim_3_Pattern">
</g>
</g>
<g id="Layer_8">
<g>
<defs>
<path id="Front_Trim_4_Clippath" d="M150.577,830.766h24.774v24.775h-24.774V830.766z M1662.576,830.766h24.775v24.775
h-24.775V830.766z M1662.576,2098.278h24.775v24.746h-24.775V2098.278z M1662.576,1927.52h24.775v24.774h-24.775V1927.52z
M1662.576,1769.119h24.775v24.774h-24.775V1769.119z M1662.576,1304.945h24.775v24.775h-24.775V1304.945z M1662.576,1146.546
h24.775v24.774h-24.775V1146.546z M1662.576,1611.739h24.775v24.775h-24.775V1611.739z M1662.576,1453.34h24.775v24.774h-24.775
V1453.34z M1662.576,989.166h24.775v24.775h-24.775V989.166z M150.577,2098.278h24.774v24.746h-24.774V2098.278z
M150.577,1927.52h24.774v24.774h-24.774V1927.52z M150.577,1769.119h24.774v24.774h-24.774V1769.119z M150.577,1304.945h24.774
v24.775h-24.774V1304.945z M150.577,1146.546h24.774v24.774h-24.774V1146.546z M150.577,1611.739h24.774v24.775h-24.774
V1611.739z M150.577,1453.34h24.774v24.774h-24.774V1453.34z M150.577,989.166h24.774v24.775h-24.774V989.166z"/>
</defs>
<clipPath id="Front_Trim_4_Clippath_URL">
<use xlink:href="#Front_Trim_4_Clippath" overflow="visible"/>
</clipPath>
<path id="Front_Trim_4" clip-path="url(#Front_Trim_4_Clippath_URL)" fill-rule="evenodd" clip-rule="evenodd" fill="#FF6100" d="
M150.577,830.766h24.774v24.775h-24.774V830.766z M1662.576,830.766h24.775v24.775h-24.775V830.766z M1662.576,2098.278h24.775
v24.746h-24.775V2098.278z M1662.576,1927.52h24.775v24.774h-24.775V1927.52z M1662.576,1769.119h24.775v24.774h-24.775V1769.119
z M1662.576,1304.945h24.775v24.775h-24.775V1304.945z M1662.576,1146.546h24.775v24.774h-24.775V1146.546z M1662.576,1611.739
h24.775v24.775h-24.775V1611.739z M1662.576,1453.34h24.775v24.774h-24.775V1453.34z M1662.576,989.166h24.775v24.775h-24.775
V989.166z M150.577,2098.278h24.774v24.746h-24.774V2098.278z M150.577,1927.52h24.774v24.774h-24.774V1927.52z
M150.577,1769.119h24.774v24.774h-24.774V1769.119z M150.577,1304.945h24.774v24.775h-24.774V1304.945z M150.577,1146.546
h24.774v24.774h-24.774V1146.546z M150.577,1611.739h24.774v24.775h-24.774V1611.739z M150.577,1453.34h24.774v24.774h-24.774
V1453.34z M150.577,989.166h24.774v24.775h-24.774V989.166z"/>
</g>
<g id="Front_Trim_4_Pattern">
</g>
</g>
<g id="Front_Jock_Tag">
<rect x="1177.615" y="1837.207" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="360" height="144"/>
</g>
<g id="Front_Prod_QR_Code">
<rect x="846.6" y="116.522" fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#050000" stroke-miterlimit="22.9256" width="144" height="144"/>
</g>
<g id="Front_Border">
<rect x="414.992" y="329.114" fill="none" stroke="#231F20" stroke-width="0.75" stroke-miterlimit="10" width="1008" height="1728"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -0,0 +1,520 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Order Details</title>
<style>
/* -------------------------------------
GLOBAL RESETS
------------------------------------- */
/*All the styling goes here*/
img {
border: none;
-ms-interpolation-mode: bicubic;
max-width: 100%;
}
body {
background-color: #f6f6f6;
font-family: sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 12px;
line-height: 1.4;
margin: 0;
padding: 0;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
table {
border-collapse: separate;
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
width: 100%; }
table td {
font-family: sans-serif;
font-size: 12px;
vertical-align: top;
}
/* -------------------------------------
BODY & CONTAINER
------------------------------------- */
.body {
background-color: #f6f6f6;
width: 100%;
}
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
.container {
display: block;
margin: 0 auto !important;
/* makes it centered */
max-width: 580px;
padding: 10px;
width: 580px;
}
/* This should also be a block element, so that it will fill 100% of the .container */
.content {
box-sizing: border-box;
display: block;
margin: 0 auto;
max-width: 580px;
padding: 10px;
}
/* -------------------------------------
HEADER, FOOTER, MAIN
------------------------------------- */
.main {
background: #ffffff;
border-radius: 3px;
width: 100%;
}
.wrapper {
box-sizing: border-box;
padding: 20px;
}
.content-block {
padding-bottom: 10px;
padding-top: 10px;
}
.footer {
clear: both;
margin-top: 10px;
text-align: center;
width: 100%;
}
.footer td,
.footer p,
.footer span,
.footer a {
color: #999999;
font-size: 12px;
text-align: center;
}
/* -------------------------------------
TYPOGRAPHY
------------------------------------- */
h1,
h2,
h3,
h4 {
color: #000000;
font-family: sans-serif;
font-weight: 400;
line-height: 1.4;
margin: 0;
margin-bottom: 20px;
}
h1 {
font-size: 35px;
font-weight: 300;
text-align: center;
text-transform: capitalize;
}
p,
ul,
ol {
font-family: sans-serif;
font-size: 14px;
font-weight: normal;
margin: 0;
margin-bottom: 15px;
}
p li,
ul li,
ol li {
list-style-position: inside;
margin-left: 5px;
}
a {
color: #3498db;
text-decoration: underline;
}
/* -------------------------------------
BUTTONS
------------------------------------- */
.btn {
box-sizing: border-box;
width: 100%; }
.btn > tbody > tr > td {
padding-bottom: 15px; }
.btn table {
width: auto;
}
.btn table td {
background-color: #ffffff;
border-radius: 5px;
text-align: center;
}
.btn a {
background-color: #ffffff;
border: solid 1px #3498db;
border-radius: 5px;
box-sizing: border-box;
color: #3498db;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: bold;
margin: 0;
padding: 12px 25px;
text-decoration: none;
text-transform: capitalize;
}
.btn-primary table td {
background-color: #3498db;
}
.btn-primary a {
background-color: #3498db;
border-color: #3498db;
color: #ffffff;
}
/* -------------------------------------
OTHER STYLES THAT MIGHT BE USEFUL
------------------------------------- */
.last {
margin-bottom: 0;
}
.first {
margin-top: 0;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
.align-left {
text-align: left;
}
.clear {
clear: both;
}
.mt0 {
margin-top: 0;
}
.mb0 {
margin-bottom: 0;
}
.preheader {
color: transparent;
display: none;
height: 0;
max-height: 0;
max-width: 0;
opacity: 0;
overflow: hidden;
mso-hide: all;
visibility: hidden;
width: 0;
}
.powered-by a {
text-decoration: none;
}
hr {
border: 0;
border-bottom: 1px solid #f6f6f6;
margin: 20px 0;
}
/* -------------------------------------
RESPONSIVE AND MOBILE FRIENDLY STYLES
------------------------------------- */
@media only screen and (max-width: 620px) {
table[class=body] h1 {
font-size: 28px !important;
margin-bottom: 10px !important;
}
table[class=body] p,
table[class=body] ul,
table[class=body] ol,
table[class=body] td,
table[class=body] span,
table[class=body] a {
font-size: 12px !important;
}
table[class=body] .wrapper,
table[class=body] .article {
padding: 10px !important;
}
table[class=body] .content {
padding: 0 !important;
}
table[class=body] .container {
padding: 0 !important;
width: 100% !important;
}
table[class=body] .main {
border-left-width: 0 !important;
border-radius: 0 !important;
border-right-width: 0 !important;
}
table[class=body] .btn table {
width: 100% !important;
}
table[class=body] .btn a {
width: 100% !important;
}
table[class=body] .img-responsive {
height: auto !important;
max-width: 100% !important;
width: auto !important;
}
}
/* -------------------------------------
PRESERVE THESE STYLES IN THE HEAD
------------------------------------- */
@media all {
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
.apple-link a {
color: inherit !important;
font-family: inherit !important;
font-size: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
text-decoration: none !important;
}
.btn-primary table td:hover {
background-color: #34495e !important;
}
.btn-primary a:hover {
background-color: #34495e !important;
border-color: #34495e !important;
}
}
.table-bordered td {
border: 1px solid black;
padding: 2px;
}
.previewImage {
height: 200px;
overflow: hidden;
object-fit: contain;
}
</style>
</head>
<body class="">
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
<tr>
<td>&nbsp;</td>
<td class="container">
<div class="content">
<!-- START CENTERED WHITE CONTAINER -->
<table role="presentation" class="main">
<!-- START MAIN CONTENT AREA -->
<tr>
<td class="wrapper">
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<h3 class="align-center"><b>Order Details</b></h3>
<table class="table table-condensed table-bordered" style="width: 100%; border-collapse: collapse; ">
<tr >
<td class="text-center" colspan="2"><b>Payer Information</b></td>
</tr>
<tr>
<td class="col-md-3">Payer Name</td>
<td>{{ $array_payment_details[0]->Payer_Firstname . ' ' . $array_payment_details[0]->Payer_Lastname }}</td>
</tr>
<tr>
<td class="col-md-3">Payer Email Address</td>
<td>{{ $array_payment_details[0]->Payer_Email }}</td>
</tr>
<tr>
<td class="col-md-3">Payment Method</td>
<td>{{ $array_payment_details[0]->PaymentMethod }}</td>
</tr>
<tr >
<td class="text-center" colspan="2"><b>Transaction Information</b></td>
</tr>
<tr>
<td class="col-md-3">Subtotal</td>
<td>{{ $array_payment_details[0]->SubTotal . ' ' . $array_payment_details[0]->Currency }}</td>
</tr>
<tr>
<td class="col-md-3">Tax</td>
<td>{{ $array_payment_details[0]->Tax . ' ' . $array_payment_details[0]->Currency }}</td>
</tr>
<tr>
<td class="col-md-3">Total</td>
<td>{{ $array_payment_details[0]->Total . ' ' . $array_payment_details[0]->Currency }}</td>
</tr>
<tr>
<td class="col-md-3">Invoice #</td>
<td>{{ $array_payment_details[0]->InvoiceNumber }}</td>
</tr>
</table>
<br>
<p>Item Order(s):</p>
@foreach($item_goup_array as $item)
<div style="border: 1px solid #e2e2e2; padding: 10px; margin-bottom: 10px;">
<table role="presentation" border="0" cellpadding="0" cellspacing="0" >
<tbody>
<tr>
<td align="left">
@foreach($img_thumb as $img)
@if($img->ProductId == $item->ProductId)
<img style="height: 200px; overflow: hidden; object-fit: contain;" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $img->Image }}">
@endif
@endforeach
</td>
<td>
<div style="font-size: 14px;"><a href="{{ url('teamstore') . '/' . $item->StoreURL . '/' . 'product/' . $item->ProductURL }}">{{ $item->ProductName }}</a></div>
Total Price: ${{ $item->total_price * $item->total_qty }} &bull; Row(s): {{ $item->qty }}
<table class="table table-condensed table-bordered" style="width: 100%; border-collapse: collapse;">
@if($item->FormUsed=="jersey-and-shorts-form")
<tr>
<td><b>Name</b></td>
<td><b>Number</b></td>
<td><b>Jersey Size</b></td>
<td><b>Shorts Size</b></td>
<td><b>Price</b></td>
<td><b>Quantity</b></td>
</tr>
@elseif($item->FormUsed=="tshirt-form")
<tr>
<td><b>Size</b></td>
<td><b>Price</b></td>
<td><b>Quantity</b></td>
</tr>
@elseif($item->FormUsed=="quantity-form")
<tr>
<td><b>Price</b></td>
<td>Quantity</b></td>
</tr>
@elseif($item->FormUsed=="name-number-form")
<tr>
<td><b>Name</b></td>
<td><b>Number</b></td>
<td><b>Price</b></td>
<td><b>Quantity</b></td>
</tr>
@else
@endif
<!-- table header -->
<!-- table body -->
@foreach($order_item_array as $sub_item)
@if($sub_item->ProductId == $item->ProductId)
@if($item->FormUsed=="jersey-and-shorts-form")
<tr>
<td> @if($sub_item->Name != '') {{ $sub_item->Name }} @else -- @endif </td>
<td>{{ $sub_item->Number }}</td>
<td>{{ $sub_item->JerseySize }}</td>
<td>{{ $sub_item->ShortsSize }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="tshirt-form")
<tr>
<td>{{ $sub_item->Size }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="quantity-form")
<tr>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="name-number-form")
<tr>
<td>{{ $sub_item->Name }}</td>
<td>{{ $sub_item->Number }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@else
@endif
@endif
@endforeach
</table>
</td>
</tr>
</tbody>
</table>
</div>
@endforeach
</td>
</tr>
</table>
</td>
</tr>
<!-- END MAIN CONTENT AREA -->
</table>
<!-- END CENTERED WHITE CONTAINER -->
<!-- START FOOTER -->
<div class="footer">
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="content-block">
<span class="apple-link">Copyright &copy 2019 <a href="https://crewsportswear.com">crewsportswear.com. All rights reserved.</a></span>
</td>
</tr>
</table>
</div>
<!-- END FOOTER -->
</div>
</td>
<td>&nbsp;</td>
</tr>
</table>
</body>
</html>

View File

@@ -63,12 +63,17 @@
<div class="row">
<div class="col-md-3">
<div class="text-center">
<img class="previewImage" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $item->DesignCode }}{{ $thumb_display }}">
@foreach($img_thumb as $img)
@if($img->ProductId == $item->ProductId)
<img class="previewImage" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $img->Image }}">
@endif
@endforeach
</div>
</div>
<div class="col-md-9">
<h4><a href="{{ url('teamstore') . '/' . $item->StoreURL . '/' . 'product/' . $item->ProductURL }}">{{ $item->ProductName }}</a></h4>
<p>Total Price: ${{ $item->total_price }} &bull; Row(s): {{ $item->qty }} </p>
<p>Total Price: ${{ $item->total_price * $item->total_qty }} &bull; Row(s): {{ $item->qty }} </p>
<div class="table-responsive">
<table class="table table-striped table-condensed">
@@ -97,6 +102,26 @@
<th></th>
</tr>
@elseif($item->FormUsed=="name-number-form")
<tr>
<th>Name</th>
<th>Number</th>
<th>Price</th>
<th>Quantity</th>
<th></th>
</tr>
@elseif($item->FormUsed=="name-number-size-form")
<tr>
<th>Name</th>
<th>Number</th>
<th>Size</th>
<th>Price</th>
<th>Quantity</th>
<th></th>
</tr>
@else
@endif
@@ -128,7 +153,23 @@
<td>{{ $sub_item->Quantity }}</td>
<td><a class="btn btn-xs btn-link pull-right" href="{{ url('removeitem') }}/{{ $sub_item->Id }}"><span class="glyphicon glyphicon-remove"></span></a></td>
</tr>
@elseif($item->FormUsed=="name-number-form")
<tr>
<td>{{ $sub_item->Name }}</td>
<td>{{ $sub_item->Number }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
<td><a class="btn btn-xs btn-link pull-right" href="{{ url('removeitem') }}/{{ $sub_item->Id }}"><span class="glyphicon glyphicon-remove"></span></a></td>
</tr>
@elseif($item->FormUsed=="name-number-size-form")
<tr>
<td>{{ $sub_item->Name }}</td>
<td>{{ $sub_item->Number }}</td>
<td>{{ $sub_item->Size }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
<td><a class="btn btn-xs btn-link pull-right" href="{{ url('removeitem') }}/{{ $sub_item->Id }}"><span class="glyphicon glyphicon-remove"></span></a></td>
</tr>
@else
@endif

View File

@@ -112,6 +112,14 @@
}
});
$('#myCarousel').on('slid.bs.carousel', function (e) {
var id = $('.item.active').data('slide-number');
// $('#carousel-text').html($('#slide-content-'+id).html());
// console.log(id)
$('.a_thumbnail').removeClass('active');
$('#carousel-selector-'+id).addClass('active');
});
$('.input-number').focusin(function(){
$(this).data('oldValue', $(this).val());
});
@@ -227,13 +235,21 @@
$(this).val($(this).val().toUpperCase());
});
$('.image-thumbnails').click(function(){
// console.log($(this))
// console.log($(this).attr('src'))
$('#main-thumbnail').attr('src', $(this).attr('src'));
// $('.image-thumbnails').click(function(){
// // console.log($(this))
// // console.log($(this).attr('src'))
// $('#main-thumbnail').attr('src', $(this).attr('src'));
// $('.a_thumbnail').removeClass('active');
// $(this).parent().addClass('active');
// });
$('[id^=carousel-selector-]').click( function(){
var id = this.id.substr(this.id.lastIndexOf("-") + 1);
var id = parseInt(id);
$('#myCarousel').carousel(id);
$('.a_thumbnail').removeClass('active');
$(this).parent().addClass('active');
$(this).addClass('active');
});
$(document).on('button click', '.removeRow', function(){
@@ -251,6 +267,40 @@
$('.'+str).remove();
});
$(document).on('button click', '.removeRow-name-and-number', function(){
var str = $(this).closest('tr').attr('class');
var trCount = $('#tableRow tbody').children('tr').length;
if(trCount == 2){
return false;
}
if(trCount == 3){
$('#addnew-btn-tbl-row').remove();
$('.tr-remove-btn').html('<button type="button" id="addNewRow_name_and_number" class="btn btn-success btn-sm btn-roster-action" data-toggle="tooltip" title="Add Another"><i class="fa fa-plus" aria-hidden="true"></i></button>');
}
$('.'+str).remove();
});
$(document).on('button click', '.removeRow-name-number-size', function(){
var str = $(this).closest('tr').attr('class');
var trCount = $('#tableRow tbody').children('tr').length;
if(trCount == 2){
return false;
}
if(trCount == 3){
$('#addnew-btn-tbl-row').remove();
$('.tr-remove-btn').html('<button type="button" id="addNewRow_name_number_size" class="btn btn-success btn-sm btn-roster-action" data-toggle="tooltip" title="Add Another"><i class="fa fa-plus" aria-hidden="true"></i></button>');
}
$('.'+str).remove();
});
$("#frm-order-list").validate({
rules: {
@@ -352,6 +402,88 @@
});
});
$(document).on('button click', '#addNewRow_name_and_number', function(){
var TemplateCode = $('#template_code').val();
// console.log(TemplateCode)
var orderCounterValue = $('#orderCounterValue').val();
var numi = document.getElementById('orderCounterValue');
var num = (document.getElementById('orderCounterValue').value -1) + 2;
numi.value = num;
$.ajax({ //create an ajax request to load_page.php
type: "POST",
url: "{{ url('/designer/a/add-new-row-name-and-number') }}",
data:{
itemCount : num,
tempCode : TemplateCode
},
dataType: "html", //expect html to be returned
beforeSend:function(xhr){
var token = $('meta[name="csrf_token"]').attr('content');
if (token) {
return xhr.setRequestHeader('X-CSRF-TOKEN', token);
}
xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest');
},
success: function(response){
var className = "row" + (num - 1);
$('.tr-remove-btn').html('<button type="button" class="btn btn-danger btn-sm removeRow-name-and-number btn-roster-action" data-toggle="tooltip" title="Remove"><i class="fa fa-remove" aria-hidden="true"></i></button>');
$('#addnew-btn-tbl-row').remove();
$('#tableRow tbody').append(response);
$('#orderListPanel').scrollTop($('#orderListPanel')[0].scrollHeight);
$('.inputName').keyup(function() {
this.value = this.value.toLocaleUpperCase();
});
}
});
});
$(document).on('button click', '#addNewRow_name_number_size', function(){
var TemplateCode = $('#template_code').val();
// console.log(TemplateCode)
var orderCounterValue = $('#orderCounterValue').val();
var numi = document.getElementById('orderCounterValue');
var num = (document.getElementById('orderCounterValue').value -1) + 2;
numi.value = num;
$.ajax({ //create an ajax request to load_page.php
type: "POST",
url: "{{ url('/designer/a/add-new-row-name-number-size') }}",
data:{
itemCount : num,
tempCode : TemplateCode
},
dataType: "html", //expect html to be returned
beforeSend:function(xhr){
var token = $('meta[name="csrf_token"]').attr('content');
if (token) {
return xhr.setRequestHeader('X-CSRF-TOKEN', token);
}
xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest');
},
success: function(response){
var className = "row" + (num - 1);
$('.tr-remove-btn').html('<button type="button" class="btn btn-danger btn-sm removeRow-name-number-size btn-roster-action" data-toggle="tooltip" title="Remove"><i class="fa fa-remove" aria-hidden="true"></i></button>');
$('#addnew-btn-tbl-row').remove();
$('#tableRow tbody').append(response);
$('#orderListPanel').scrollTop($('#orderListPanel')[0].scrollHeight);
$('.inputName').keyup(function() {
this.value = this.value.toLocaleUpperCase();
});
}
});
});
}); //end document ready
function myCart(){

View File

@@ -10,7 +10,7 @@
<div class="panel panel-default">
<div class="panel-heading">
<!-- <h1>{{ $product_array[0]->ProductName }} <small id="display-product-price">$ {{ $product_array[0]->ProductPrice }} </small></h1> -->
<h1>{{ $product_array[0]->ProductName }}</h1>
<h1>{{ $product_array[0]->ProductName }} <p class="price"><small>$ {{ $product_array[0]->ProductPrice }}</small></p></h1>
</div>
<div class="panel-body">
<div class="row">

View File

@@ -0,0 +1,90 @@
<style>
tbody#orderTableBody>tr>td {
padding: 0px !important;
}
.panel-design-details{
max-height: 300px;
overflow: auto;
}
</style>
<div class="panel panel-default">
<div class="panel-heading">
<!-- <h1>{{ $product_array[0]->ProductName }} <small id="display-product-price">$ {{ $product_array[0]->ProductPrice }} </small></h1> -->
<h1>{{ $product_array[0]->ProductName }} <p class="price"><small>$ {{ $product_array[0]->ProductPrice }}</small></p></h1>
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<form id="frm-order-list">
<input type="hidden" value="1" id="orderCounterValue" name="orderCounterValue" />
<input type="hidden" value="{{ $product_array[0]->Id }}" id="product_id" name="product_id" />
<input type="hidden" name="product_price" id="product_price" value="{{ $product_array[0]->ProductPrice }}">
<input type="hidden" name="price_holder" id="price_holder" value="{{ $product_array[0]->ProductPrice }}">
<input type="hidden" name="template_code" id="template_code" value="{{ $product_array[0]->TemplateCode }}">
<input type="hidden" name="store_url" id="store_url" value="{{ $store_array[0]->StoreUrl }}">
<div class="panel-design-details" id="orderListPanel">
<table class="table" id="tableRow" style="font-size:12px;">
<thead>
<tr>
<!-- <th>#</th> -->
<th class="col-md-6">Name</th>
<th class="col-md-5">Number</th>
<th class="text-center"></th>
</tr>
</thead>
<tbody id="orderTableBody">
<tr class="table-tr-1">
<td>
<input type="text" name="order_names[]" id="order_names" class="form-control input-sm inputName roster-input" placeholder="Name">
</td>
<td>
<!-- <input type="text" name="order_numbers[]" id="order_numbers" class="form-control input-sm inputName" placeholder="Number"> -->
<select class="form-control input-sm roster-input" name="order_number[]" id="order_number">
<option value="none">none</option>
@for($i = 0; $i <= 99; $i++)
<option value="{{ $i }}">{{ $i }}</option>
@endfor
<option value="00">00</option>
</select>
</td>
<td id="action-column" class="text-center" style="padding: 4px !important; border-top: none">
<span class="tr-remove-btn">
<button type="button" id="addNewRow_name_and_number" class="btn btn-success btn-sm btn-roster-action" data-toggle="tooltip" title="Add Another"><i class="fa fa-plus" aria-hidden="true"></i></button>
</span>
</td>
</tr>
</tbody>
</table>
</div>
<!-- <hr class="hr-design"> -->
<div id="displayqty"></div>
<br>
<button class="btn btn-primary pull-right" type="submit" id="btn-add-to-cart"><span class="glyphicon glyphicon-shopping-cart" aria-hidden="true"></span> Add to Cart</button>
</form>
</div>
</div>
<div class="spacer-top"></div>
<div class="row">
<div class="col-md-12">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#productDescription" aria-controls="productDescription" role="tab" data-toggle="tab">Desciption</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="productDescription">
<div class="row">
<div class="col-md-12">
<p>
{{ $product_array[0]->ProductDescription }}
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,99 @@
<style>
tbody#orderTableBody>tr>td {
padding: 0px !important;
}
.panel-design-details{
max-height: 300px;
overflow: auto;
}
</style>
<div class="panel panel-default">
<div class="panel-heading">
<!-- <h1>{{ $product_array[0]->ProductName }} <small id="display-product-price">$ {{ $product_array[0]->ProductPrice }} </small></h1> -->
<h1>{{ $product_array[0]->ProductName }} <p class="price"><small>$ {{ $product_array[0]->ProductPrice }}</small></p></h1>
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<form id="frm-order-list">
<input type="hidden" value="1" id="orderCounterValue" name="orderCounterValue" />
<input type="hidden" value="{{ $product_array[0]->Id }}" id="product_id" name="product_id" />
<input type="hidden" name="product_price" id="product_price" value="{{ $product_array[0]->ProductPrice }}">
<input type="hidden" name="price_holder" id="price_holder" value="{{ $product_array[0]->ProductPrice }}">
<input type="hidden" name="template_code" id="template_code" value="{{ $product_array[0]->TemplateCode }}">
<input type="hidden" name="store_url" id="store_url" value="{{ $store_array[0]->StoreUrl }}">
<div class="panel-design-details" id="orderListPanel">
<table class="table" id="tableRow" style="font-size:12px;">
<thead>
<tr>
<!-- <th>#</th> -->
<th class="col-md-5">Name</th>
<th class="col-md-3">Number</th>
<th class="col-md-3">Size</th>
<th class="text-center"></th>
</tr>
</thead>
<tbody id="orderTableBody">
<tr class="table-tr-1">
<td>
<input type="text" name="order_names[]" id="order_names" class="form-control input-sm inputName roster-input" placeholder="Name">
</td>
<td>
<!-- <input type="text" name="order_numbers[]" id="order_numbers" class="form-control input-sm inputName" placeholder="Number"> -->
<select class="form-control input-sm roster-input" name="order_number[]" id="order_number">
<option value="none">none</option>
@for($i = 0; $i <= 99; $i++)
<option value="{{ $i }}">{{ $i }}</option>
@endfor
<option value="00">00</option>
</select>
</td>
<td>
<select class="form-control input-sm order-size roster-input" name="order_size[]" id="order_jersey_size_1" data-row-number="1">
@foreach($sizes_array as $size)
<option value="{{ $size->Size }}">{{ $size->Size }}</option>
@endforeach
</select>
</td>
<td id="action-column" class="text-center" style="padding: 4px !important; border-top: none">
<span class="tr-remove-btn">
<button type="button" id="addNewRow_name_number_size" class="btn btn-success btn-sm btn-roster-action" data-toggle="tooltip" title="Add Another"><i class="fa fa-plus" aria-hidden="true"></i></button>
</span>
</td>
</tr>
</tbody>
</table>
</div>
<!-- <hr class="hr-design"> -->
<div id="displayqty"></div>
<br>
<button class="btn btn-primary pull-right" type="submit" id="btn-add-to-cart"><span class="glyphicon glyphicon-shopping-cart" aria-hidden="true"></span> Add to Cart</button>
</form>
</div>
</div>
<div class="spacer-top"></div>
<div class="row">
<div class="col-md-12">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#productDescription" aria-controls="productDescription" role="tab" data-toggle="tab">Desciption</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="productDescription">
<div class="row">
<div class="col-md-12">
<p>
{{ $product_array[0]->ProductDescription }}
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@@ -10,7 +10,7 @@
<div class="panel panel-default">
<div class="panel-heading">
<!-- <h1>{{ $product_array[0]->ProductName }} <small id="display-product-price">$ {{ $product_array[0]->ProductPrice }} </small></h1> -->
<h1>{{ $product_array[0]->ProductName }}</h1>
<h1>{{ $product_array[0]->ProductName }} <p class="price"><small>$ {{ $product_array[0]->ProductPrice }}</small></p></h1>
</div>
<div class="panel-body">
<div class="row">

View File

@@ -10,7 +10,7 @@
<div class="panel panel-default">
<div class="panel-heading">
<!-- <h1>{{ $product_array[0]->ProductName }} <small id="display-product-price">$ {{ $product_array[0]->ProductPrice }} </small></h1> -->
<h1>{{ $product_array[0]->ProductName }}</h1>
<h1>{{ $product_array[0]->ProductName }} <p class="price"><small>$ {{ $product_array[0]->ProductPrice }}</small></p></h1>
</div>
<div class="panel-body">
<div class="row">

View File

@@ -81,6 +81,9 @@
padding-bottom: 20px;
background-image: url("{{asset('public/images/teamstore') . '/' . $store_array[0]->StoreUrl . '/' . $store_array[0]->StoreBanner }}");
background-color: #f3f3f3;
background-position: center;
background-size: cover;
width: 100%;
height: 128px;
}
@@ -91,6 +94,22 @@
padding: 10px;
}
@media (min-width: 200px) {
.jumbotron { height: 50px; }
}
@media (min-width: 400px) {
.jumbotron { height: 57px; }
}
@media (min-width: 768px) {
.jumbotron { height: 100px; }
}
@media (min-width: 992px) {
.jumbotron { height: 128px; }
}
</style>
<div class="container">
@@ -105,7 +124,7 @@
</div>
<div class="row">
<div class="col-md-12">
<h2>FEATURED PRODUCT</h2>
<h2>FEATURED PRODUCTS</h2>
</div>
</div>
<div class="row">
@@ -122,8 +141,10 @@
<div class="col-md-3 col-sm-6">
<span class="thumbnail">
<img src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $filename }}" alt="{{ $product->ProductName }}" >
<h4>{{ $product->ProductName }}</h4>
<a href="{{ url('teamstore') }}/{{ $store_array[0]->StoreUrl }}/product/{{ $product->ProductURL }}">
<img style="height: 201.84px;" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $filename }}" alt="{{ $product->ProductName }}" >
</a>
<h4 class="text-center">{{ $product->ProductName }}</h4>
<!-- (w/ Shorts) -->
<!-- <div class="ratings">
<span class="glyphicon glyphicon-star"></span>

View File

@@ -163,7 +163,12 @@
.table>thead>tr>th{
border-bottom:none;
}
.carousel-control.right{
margin-right :0px;
}
.carousel-control.left {
margin-left: 0px;
}
</style>
<div class="container">
@@ -182,25 +187,57 @@
<div class="col-md-5 col-sm-5">
<div class="row">
<div class="col-md-12">
@foreach($thumbnails_array as $thumbnail)
@if($thumbnail->ImageClass == 'active')
<img id="main-thumbnail" class="img img-responsive product-center" style="height:287px;" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $thumbnail->Image }}"/>
@endif
@endforeach
<!-- <div class="col-md-12"> -->
<div class="col-sm-12" id="carousel-bounding-box">
<div class="carousel slide" id="myCarousel" data-interval="false">
<!-- Carousel items -->
<div class="carousel-inner">
@define $i = 0
@foreach($thumbnails_array as $thumbnail)
<!-- @if($thumbnail->ImageClass == 'active')
<img id="main-thumbnail" class="img img-responsive product-center" style="height:287px;" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $thumbnail->Image }}"/>
@endif -->
@if($thumbnail->ImageClass == 'active')
<div class="active item" data-slide-number="{{ $i }}">
<img style="height:400px;" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $thumbnail->Image }}">
</div>
@else
<div class="item" data-slide-number="{{ $i }}">
<img style="height:400px;" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $thumbnail->Image }}">
</div>
@endif
@define $i++
@endforeach
</div>
<!-- Carousel nav -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<!-- </div> -->
</div>
<hr class="line">
<div class="row">
<div class="col-md-12">
<ul class="hide-bullets">
@define $j = 0
@foreach($thumbnails_array as $thumbnail)
<li class="col-sm-3 col-xs-3">
<a class="thumbnail a_thumbnail {{ $thumbnail->ImageClass }}">
<a class="thumbnail a_thumbnail {{ $thumbnail->ImageClass }}" id="carousel-selector-{{ $j }}">
<img class="img img-responsive product-center image-thumbnails" style="height: 59.45px;" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $thumbnail->Image }}"/>
</a>
</li>
@define $j++
@endforeach
</ul>
</div>

View File

@@ -3,21 +3,33 @@
<style>
a.thumbnail>img {
height: 250px;
/* height: 250px; */
}
.hide-bullets {
list-style:none;
margin-left: -40px;
margin-top:20px;
position: relative;
}
.thumbnail{
border: none;
margin-bottom: 50px;
display: unset;
background-color: transparent;
}
.li-custom{
padding:10px;
}
.store-logo{
/* height: 250px;
width: 250px;
overflow: hidden;
object-fit: contain; */
/* cursor: pointer; */
}
a.thumbnail>img{
height: 150px
}
</style>
<div class="container">
<div class="row">
@@ -25,16 +37,16 @@
</div><!-- /row -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="row hidden-xs" id="slider-thumbs">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="row" id="slider-thumbs">
<!-- Bottom switcher of slider -->
<ul class="hide-bullets">
@foreach ($stores_array as $store)
<li class="li-custom col-sm-3">
<li class="li-custom col-lg-3 col-md-3 col-sm-4 col-xs-12">
<div style="border: 1px solid #dddddd;">
<a class="thumbnail" href="{{ url('teamstore') . '/' . $store->StoreUrl }}">
<img src="{{asset('public/images/teamstore') . '/' . $store->StoreUrl . '/' . $store->StoreLogo }}">
<img class="store-logo" src="{{asset('public/images/teamstore') . '/' . $store->StoreUrl . '/' . $store->StoreLogo }}">
</a>
<h4 style="border-top: 1px solid #dddddd; padding: 10px;" class="text-center">{{ $store->StoreName }}</h4>
</div>

View File

@@ -24,7 +24,7 @@
</div>
<div class="text-center" id="homepage-logo">
@endif
<img src="{{asset('/public/images/logo.png')}}" class="img img-responsive" />
<img src="{{asset('/public/images/logo.png')}}" style="height: 200px;" class="img img-responsive" />
</div>
</section>
<!-- /.content -->

View File

@@ -0,0 +1,192 @@
@extends('user-layouts.user_template')
@section('content')
<style>
.previewImage{
height: 150px;
width: 95%;
overflow:hidden;
object-fit: contain;
}
</style>
<div class="content-wrapper" style="min-height: 916px;">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Orders
<!-- <small>Control panel</small> -->
</h1>
<ol class="breadcrumb">
<li><a href="{{ url ('user') }}"><i class="fa fa-home"></i> Home</a></li>
<li><a href="{{ url ('user/orders') }}"><i class="fa fa-list"></i> Orders</a></li>
<li class="active">Orders Details</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">
Order Details
</h3>
</div>
<!-- <form role="form" id="frm-create-address-book"> -->
<div class="box-body">
<div class="row">
<div class="col-md-12">
<table class="table table-condensed table-bordered">
<tr >
<th class="text-center" colspan="2">Payer Information</th>
</tr>
<tr>
<th class="col-md-3">Payer Name</th>
<td>{{ $array_payment_details[0]->Payer_Firstname . ' ' . $array_payment_details[0]->Payer_Lastname }}</td>
</tr>
<tr>
<th class="col-md-3">Payer Email Address</th>
<td>{{ $array_payment_details[0]->Payer_Email }}</td>
</tr>
<tr>
<th class="col-md-3">Payment Method</th>
<td>{{ $array_payment_details[0]->PaymentMethod }}</td>
</tr>
<tr >
<th class="text-center" colspan="2">Transaction Information</th>
</tr>
<tr>
<th class="col-md-3">Subtotal</th>
<td>{{ $array_payment_details[0]->SubTotal . ' ' . $array_payment_details[0]->Currency }}</td>
</tr>
<tr>
<th class="col-md-3">Tax</th>
<td>{{ $array_payment_details[0]->Tax . ' ' . $array_payment_details[0]->Currency }}</td>
</tr>
<tr>
<th class="col-md-3">Total</th>
<td>{{ $array_payment_details[0]->Total . ' ' . $array_payment_details[0]->Currency }}</td>
</tr>
<tr>
<th class="col-md-3">Invoice #</th>
<td>{{ $array_payment_details[0]->InvoiceNumber }}</td>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="col-md-12">
@foreach($item_goup_array as $item)
<div style="border: 1px solid #e2e2e2; padding: 10px; margin-bottom: 10px;">
<div class="row">
<div class="col-md-2">
<div class="text-center">
@foreach($img_thumb as $img)
@if($img->ProductId == $item->ProductId)
<img class="previewImage" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $img->Image }}">
@endif
@endforeach
</div>
</div>
<div class="col-md-10">
<h4><a href="{{ url('teamstore') . '/' . $item->StoreURL . '/' . 'product/' . $item->ProductURL }}">{{ $item->ProductName }}</a></h4>
<p>Total Price: ${{ $item->total_price * $item->total_qty }} &bull; Row(s): {{ $item->qty }} </p>
<div class="table-responsive">
<table class="table table-striped table-condensed">
@if($item->FormUsed=="jersey-and-shorts-form")
<tr>
<th>Name</th>
<th>Number</th>
<th>Jersey Size</th>
<th>Shorts Size</th>
<th>Price</th>
<th>Quantity</th>
</tr>
@elseif($item->FormUsed=="tshirt-form")
<tr>
<th>Size</th>
<th>Price</th>
<th>Quantity</th>
</tr>
@elseif($item->FormUsed=="quantity-form")
<tr>
<th>Price</th>
<th>Quantity</th>
</tr>
@elseif($item->FormUsed=="name-number-form")
<tr>
<th>Name</th>
<th>Number</th>
<th>Price</th>
<th>Quantity</th>
</tr>
@else
@endif
@foreach($order_item_array as $sub_item)
@if($sub_item->ProductId == $item->ProductId)
@if($item->FormUsed=="jersey-and-shorts-form")
<tr>
<td> @if($sub_item->Name != '') {{ $sub_item->Name }} @else -- @endif </td>
<td>{{ $sub_item->Number }}</td>
<td>{{ $sub_item->JerseySize }}</td>
<td>{{ $sub_item->ShortsSize }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="tshirt-form")
<tr>
<td>{{ $sub_item->Size }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="quantity-form")
<tr>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="name-number-form")
<tr>
<td>{{ $sub_item->Name }}</td>
<td>{{ $sub_item->Number }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@else
@endif
@endif
@endforeach
</table>
</div>
</div>
</div>
</div>
@endforeach
</div>
</div>
</div>
<div>
</div>
</div>
</section>
<!-- /.content -->
</div>
@endsection

View File

@@ -45,7 +45,7 @@
<td>{{ $row->Currency }} {{ $row->Total }} </td>
<td>{{ date('F j, Y g:i a', strtotime($row->DateCreated)) }} </td>
<td class="text-center">
<a href="{{ url('user/orders/view') }}/{{ $row->CartKey }}" class="btn btn-default btn-xs">View</a>
<a href="{{ url('user/orders/view') }}/{{ $row->CartKey }}" class="btn btn-default btn-xs">View Details</a>
</td>
</tr>
@endforeach

View File

@@ -36,7 +36,7 @@
<div class="col-md-12 text-center">
@foreach($thumbnails_array as $thumbnail)
@if($thumbnail->ImageClass == 'active')
<img src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $thumbnail->Image }}" id="main-thumbnail">
<img style="height:400px" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $thumbnail->Image }}" id="main-thumbnail">
@endif
@endforeach
</div>