Version Description
- New: Gutenberg block
- Fixed: Replace curl calls by wp_remote_get and wp_remote_post
- Fixed: Failing to save theme (Premium)
- Fixed: Compatibility with some plugins
Download this release
Release Info
Developer | webdorado |
Plugin | WD Facebook Feed – Custom Facebook Feed Plugin |
Version | 1.1.4 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.4
- css/tw-gb/block.css +57 -0
- facebook-feed-wd.php +82 -4
- framework/WDFacebookFeed.php +7 -19
- frontend/models/FFWDModelMain.php +8 -18
- frontend/models/FFWDModelPopupBox.php +8 -18
- images/wt-gb/ffwd_logo_editor.svg +369 -0
- images/wt-gb/icon.svg +368 -0
- js/tw-gb/block.js +200 -0
- readme.txt +39 -33
css/tw-gb/block.css
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* 10Web plugins Gutenberg integration
|
3 |
+
* version 2.0.3
|
4 |
+
*/
|
5 |
+
.tw-container {
|
6 |
+
position: fixed;
|
7 |
+
top: 0;
|
8 |
+
left: 0;
|
9 |
+
right: 0;
|
10 |
+
bottom: 0;
|
11 |
+
z-index: 9999999;
|
12 |
+
background: rgba(0,0,0,0.7);
|
13 |
+
}
|
14 |
+
|
15 |
+
.tw-container .tw-container-wrap {
|
16 |
+
background: #fff;
|
17 |
+
height: 100%;
|
18 |
+
width: 100%;
|
19 |
+
position: absolute;
|
20 |
+
top: 0;
|
21 |
+
bottom: 0;
|
22 |
+
margin: auto;
|
23 |
+
right: 0;
|
24 |
+
left: 0;
|
25 |
+
padding-top: 40px;
|
26 |
+
}
|
27 |
+
|
28 |
+
.tw-container .tw-container-wrap-800-540 {
|
29 |
+
max-width: 800px;
|
30 |
+
max-height: 540px;
|
31 |
+
}
|
32 |
+
|
33 |
+
.tw-container .tw-container-wrap-520-400 {
|
34 |
+
max-width: 520px;
|
35 |
+
max-height: 400px;
|
36 |
+
}
|
37 |
+
|
38 |
+
.tw-container .tw-container-wrap-420-450 {
|
39 |
+
max-width: 420px;
|
40 |
+
max-height: 450px;
|
41 |
+
}
|
42 |
+
|
43 |
+
.tw-container .tw-container-wrap .media-modal-close{
|
44 |
+
line-height: 34px;
|
45 |
+
text-align: center;
|
46 |
+
height: 40px;
|
47 |
+
top: 10px;
|
48 |
+
}
|
49 |
+
|
50 |
+
.tw-container .tw-container-wrap iframe {
|
51 |
+
height: 100%;
|
52 |
+
width: 100%;
|
53 |
+
}
|
54 |
+
.tw-gb-select {
|
55 |
+
width: 100%;
|
56 |
+
height: auto !important;
|
57 |
+
}
|
facebook-feed-wd.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: WD Facebook Feed
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
|
6 |
* Description:WD Facebook Feed is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
|
7 |
-
* Version: 1.1.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -17,7 +17,7 @@ define( 'WD_FFWD_URL', plugins_url( plugin_basename( dirname( __FILE__ ) ) ) );
|
|
17 |
define( 'WD_FFWD_PRO', true );
|
18 |
define( 'WD_FB_PREFIX', 'ffwd' );
|
19 |
if(! defined( 'FFWD_VERSION' ) ){
|
20 |
-
define ('FFWD_VERSION',"1.1.
|
21 |
}
|
22 |
|
23 |
|
@@ -488,8 +488,10 @@ function ffwd_add_button( $buttons ) {
|
|
488 |
|
489 |
// Register Facebook Feed WD button.
|
490 |
function ffwd_register( $plugin_array ) {
|
491 |
-
|
492 |
-
|
|
|
|
|
493 |
|
494 |
return $plugin_array;
|
495 |
}
|
@@ -507,6 +509,82 @@ function ffwd_admin_ajax() {
|
|
507 |
|
508 |
add_action( 'admin_head', 'ffwd_admin_ajax' );
|
509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
// Add the Facebook Feed WD button to editor.
|
511 |
add_action( 'wp_ajax_FFWDShortcode', 'ffwd_ajax' );
|
512 |
add_filter( 'mce_external_plugins', 'ffwd_register' );
|
4 |
* Plugin Name: WD Facebook Feed
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
|
6 |
* Description:WD Facebook Feed is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
|
7 |
+
* Version: 1.1.4
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
17 |
define( 'WD_FFWD_PRO', true );
|
18 |
define( 'WD_FB_PREFIX', 'ffwd' );
|
19 |
if(! defined( 'FFWD_VERSION' ) ){
|
20 |
+
define ('FFWD_VERSION',"1.1.4");
|
21 |
}
|
22 |
|
23 |
|
488 |
|
489 |
// Register Facebook Feed WD button.
|
490 |
function ffwd_register( $plugin_array ) {
|
491 |
+
if(is_admin()) {
|
492 |
+
$url = WD_FFWD_URL . '/js/ffwd_editor_button.js';
|
493 |
+
$plugin_array["wd_fb_mce"] = $url;
|
494 |
+
}
|
495 |
|
496 |
return $plugin_array;
|
497 |
}
|
509 |
|
510 |
add_action( 'admin_head', 'ffwd_admin_ajax' );
|
511 |
|
512 |
+
|
513 |
+
add_filter('tw_get_plugin_blocks', 'ffwd_register_plugin_block');
|
514 |
+
function ffwd_register_plugin_block($blocks) {
|
515 |
+
$plugin_name = __('Facebook Feed WD', WD_FB_PREFIX);
|
516 |
+
$icon_url = WD_FFWD_URL . '/images/wt-gb/ffwd_logo_editor.svg';
|
517 |
+
$icon_svg = WD_FFWD_URL . '/images/wt-gb/icon.svg';
|
518 |
+
global $wpdb;
|
519 |
+
$rows = $wpdb->get_results('SELECT `id`, `name` FROM `' . $wpdb->prefix . 'wd_fb_info` ORDER BY `name` ASC');
|
520 |
+
$data = array();
|
521 |
+
$data['shortcode_prefix'] = 'WD_FB';
|
522 |
+
$data['inputs'][] = array(
|
523 |
+
'type' => 'select',
|
524 |
+
'id' => 'WD_FB_id',
|
525 |
+
'name' => 'WD_FB_id',
|
526 |
+
'shortcode_attibute_name' => 'id',
|
527 |
+
'options' => $rows,
|
528 |
+
);
|
529 |
+
$data = json_encode($data);
|
530 |
+
|
531 |
+
$blocks['tw/'.WD_FB_PREFIX] = array(
|
532 |
+
'title' => __('Facebook Feed WD', WD_FB_PREFIX),
|
533 |
+
'titleSelect' => sprintf(__('Select %s', WD_FB_PREFIX), $plugin_name),
|
534 |
+
'iconUrl' => $icon_url,
|
535 |
+
'iconSvg' => array('width' => 30, 'height' => 30, 'src' => $icon_svg),
|
536 |
+
'isPopup' => false,
|
537 |
+
'data' => $data,
|
538 |
+
);
|
539 |
+
return $blocks;
|
540 |
+
}
|
541 |
+
|
542 |
+
// Enqueue block editor assets for Gutenberg.
|
543 |
+
add_filter('tw_get_block_editor_assets', 'ffwd_register_block_editor_assets');
|
544 |
+
add_action( 'enqueue_block_editor_assets', 'ffwd_enqueue_block_editor_assets');
|
545 |
+
|
546 |
+
function ffwd_register_block_editor_assets($assets) {
|
547 |
+
$version = '2.0.3';
|
548 |
+
$js_path = WD_FFWD_URL . '/js/tw-gb/block.js';
|
549 |
+
$css_path = WD_FFWD_URL . '/css/tw-gb/block.css';
|
550 |
+
if (!isset($assets['version']) || version_compare($assets['version'], $version) === -1) {
|
551 |
+
$assets['version'] = $version;
|
552 |
+
$assets['js_path'] = $js_path;
|
553 |
+
$assets['css_path'] = $css_path;
|
554 |
+
}
|
555 |
+
return $assets;
|
556 |
+
}
|
557 |
+
|
558 |
+
/**
|
559 |
+
* Enqueue block editor assets.
|
560 |
+
*/
|
561 |
+
function ffwd_enqueue_block_editor_assets() {
|
562 |
+
|
563 |
+
// Remove previously registered or enqueued versions
|
564 |
+
$wp_scripts = wp_scripts();
|
565 |
+
foreach ($wp_scripts->registered as $key => $value) {
|
566 |
+
// Check for an older versions with prefix.
|
567 |
+
if (strpos($key, 'tw-gb-block') > 0) {
|
568 |
+
wp_deregister_script( $key );
|
569 |
+
wp_deregister_style( $key );
|
570 |
+
}
|
571 |
+
}
|
572 |
+
// Get plugin blocks from all 10Web plugins.
|
573 |
+
$blocks = apply_filters('tw_get_plugin_blocks', array());
|
574 |
+
// Get the last version from all 10Web plugins.
|
575 |
+
$assets = apply_filters('tw_get_block_editor_assets', array());
|
576 |
+
// Not performing unregister or unenqueue as in old versions all are with prefixes.
|
577 |
+
wp_enqueue_script('tw-gb-block', $assets['js_path'], array( 'wp-blocks', 'wp-element' ), $assets['version']);
|
578 |
+
wp_localize_script('tw-gb-block', 'tw_obj_translate', array(
|
579 |
+
'nothing_selected' => __('Nothing selected.', WD_FB_PREFIX),
|
580 |
+
'empty_item' => __('- Select -', WD_FB_PREFIX),
|
581 |
+
'blocks' => json_encode($blocks)
|
582 |
+
));
|
583 |
+
wp_enqueue_style('tw-gb-block', $assets['css_path'], array( 'wp-edit-blocks' ), $assets['version']);
|
584 |
+
}
|
585 |
+
|
586 |
+
|
587 |
+
|
588 |
// Add the Facebook Feed WD button to editor.
|
589 |
add_action( 'wp_ajax_FFWDShortcode', 'ffwd_ajax' );
|
590 |
add_filter( 'mce_external_plugins', 'ffwd_register' );
|
framework/WDFacebookFeed.php
CHANGED
@@ -1643,26 +1643,14 @@ $ffwd_info_options[$ffwd_option_db] =((isset($_POST[$ffwd_option_db])) ? esc_htm
|
|
1643 |
$facebook_graph_results = null;
|
1644 |
$facebook_graph_url = $uri; //TODO: Add URL checking here, else error out
|
1645 |
|
1646 |
-
|
1647 |
-
if (extension_loaded('curl')) {
|
1648 |
-
$ch = curl_init();
|
1649 |
-
curl_setopt($ch, CURLOPT_URL, $facebook_graph_url);
|
1650 |
-
curl_setopt($ch, CURLOPT_HEADER, 0);
|
1651 |
-
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
1652 |
-
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
|
1653 |
-
if (!$facebook_graph_results = curl_exec($ch)) {
|
1654 |
-
printf('<p>cURL Error: %1$s %2$s</p>', curl_errno($ch), curl_error($ch));
|
1655 |
-
printf('<p>Please try entering <strong>%s</strong> into your URL bar and seeing if the page loads.', $facebook_graph_url);
|
1656 |
-
}
|
1657 |
-
if (curl_errno($ch) == 7) {
|
1658 |
-
print '<p><strong>Your server cannot communicate with Facebook\'s servers. This means your server does not support IPv6 or is having issues resolving facebook.com. Please contact your hosting provider.';
|
1659 |
-
}
|
1660 |
-
curl_close($ch);
|
1661 |
-
} else {
|
1662 |
-
self::wd_fb_massage('error', 'Sorry, your server does not allow remote fopen or have CURL');
|
1663 |
-
}
|
1664 |
-
|
1665 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1666 |
$facebook_graph_results = json_decode($facebook_graph_results, true);
|
1667 |
if (array_key_exists("error", $facebook_graph_results)) {
|
1668 |
if ($facebook_graph_results['error']['code'] == 2) {
|
1643 |
$facebook_graph_results = null;
|
1644 |
$facebook_graph_url = $uri; //TODO: Add URL checking here, else error out
|
1645 |
|
1646 |
+
$response = wp_remote_get($facebook_graph_url);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1647 |
|
1648 |
+
if(isset($response->errors) && isset($response->errors["http_request_failed"][0])){
|
1649 |
+
self::wd_fb_massage('error', $response->errors["http_request_failed"][0]);
|
1650 |
+
}elseif( is_array( $response ) && isset($response['body'])) {
|
1651 |
+
$header = $response['headers']; // array of http header lines
|
1652 |
+
$facebook_graph_results = $response['body']; // use the content
|
1653 |
+
}
|
1654 |
$facebook_graph_results = json_decode($facebook_graph_results, true);
|
1655 |
if (array_key_exists("error", $facebook_graph_results)) {
|
1656 |
if ($facebook_graph_results['error']['code'] == 2) {
|
frontend/models/FFWDModelMain.php
CHANGED
@@ -78,24 +78,14 @@ class FFWDModelMain {
|
|
78 |
public static function decap_do_curl($uri) {
|
79 |
$facebook_graph_results = null;
|
80 |
$facebook_graph_url = $uri;
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
printf('<p>cURL Error: %1$s %2$s</p>', curl_errno($ch), curl_error($ch));
|
90 |
-
printf('<p>Please try entering <strong>%s</strong> into your URL bar and seeing if the page loads.', $facebook_graph_url);
|
91 |
-
}
|
92 |
-
if(curl_errno($ch) == 7) {
|
93 |
-
print '<p><strong>Your server cannot communicate with Facebook\'s servers. This means your server does not support IPv6 or is having issues resolving facebook.com. Please contact your hosting provider.';
|
94 |
-
}
|
95 |
-
curl_close($ch);
|
96 |
-
} else {
|
97 |
-
print ('Sorry, your server does not allow remote fopen or have CURL');
|
98 |
-
}
|
99 |
$facebook_graph_results = json_decode($facebook_graph_results, true);
|
100 |
return $facebook_graph_results;
|
101 |
}
|
78 |
public static function decap_do_curl($uri) {
|
79 |
$facebook_graph_results = null;
|
80 |
$facebook_graph_url = $uri;
|
81 |
+
$response = wp_remote_get($facebook_graph_url);
|
82 |
+
if(isset($response->errors) && isset($response->errors["http_request_failed"][0])){
|
83 |
+
print $response->errors["http_request_failed"][0];
|
84 |
+
}elseif( is_array( $response ) && isset($response['body'])) {
|
85 |
+
$header = $response['headers']; // array of http header lines
|
86 |
+
$facebook_graph_results = $response['body']; // use the content
|
87 |
+
}
|
88 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
$facebook_graph_results = json_decode($facebook_graph_results, true);
|
90 |
return $facebook_graph_results;
|
91 |
}
|
frontend/models/FFWDModelPopupBox.php
CHANGED
@@ -90,24 +90,14 @@ class FFWDModelPopupBox {
|
|
90 |
public static function decap_do_curl($uri) {
|
91 |
$facebook_graph_results = null;
|
92 |
$facebook_graph_url = $uri; //TODO: Add URL checking here, else error out
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
printf('<p>cURL Error: %1$s %2$s</p>', curl_errno($ch), curl_error($ch));
|
102 |
-
printf('<p>Please try entering <strong>%s</strong> into your URL bar and seeing if the page loads.', $facebook_graph_url);
|
103 |
-
}
|
104 |
-
if(curl_errno($ch) == 7) {
|
105 |
-
print '<p><strong>Your server cannot communicate with Facebook\'s servers. This means your server does not support IPv6 or is having issues resolving facebook.com. Please contact your hosting provider.';
|
106 |
-
}
|
107 |
-
curl_close($ch);
|
108 |
-
} else {
|
109 |
-
print ('Sorry, your server does not allow remote fopen or have CURL');
|
110 |
-
}
|
111 |
$facebook_graph_results = json_decode($facebook_graph_results, true);
|
112 |
return $facebook_graph_results;
|
113 |
}
|
90 |
public static function decap_do_curl($uri) {
|
91 |
$facebook_graph_results = null;
|
92 |
$facebook_graph_url = $uri; //TODO: Add URL checking here, else error out
|
93 |
+
$response = wp_remote_get($facebook_graph_url);
|
94 |
+
if(isset($response->errors) && isset($response->errors["http_request_failed"][0])){
|
95 |
+
print $response->errors["http_request_failed"][0];
|
96 |
+
}elseif( is_array( $response ) && isset($response['body'])) {
|
97 |
+
$header = $response['headers']; // array of http header lines
|
98 |
+
$facebook_graph_results = $response['body']; // use the content
|
99 |
+
}
|
100 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
$facebook_graph_results = json_decode($facebook_graph_results, true);
|
102 |
return $facebook_graph_results;
|
103 |
}
|
images/wt-gb/ffwd_logo_editor.svg
ADDED
@@ -0,0 +1,369 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 18.5 14.4" style="enable-background:new 0 0 18.5 14.4;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#565D66;}
|
7 |
+
.st1{fill:#EAEAEA;}
|
8 |
+
.st2{fill:#103856;}
|
9 |
+
.st3{fill:#991032;}
|
10 |
+
.st4{fill:#F48900;}
|
11 |
+
.st5{opacity:0.5;fill:#6A6A69;enable-background:new ;}
|
12 |
+
.st6{fill:#FFFFFF;}
|
13 |
+
.st7{fill:#EDEDED;}
|
14 |
+
.st8{fill:#158181;}
|
15 |
+
.st9{fill:#157070;}
|
16 |
+
.st10{fill:none;}
|
17 |
+
.st11{fill:#112730;}
|
18 |
+
.st12{fill:#1BB290;}
|
19 |
+
.st13{fill:#3C5A98;}
|
20 |
+
</style>
|
21 |
+
<path id="XMLID_14_" class="st0" d="M-89.2,32.3c-0.4,0-0.8,0-1.2,0c0-4.8,0-9.6,0-14.4c0.4,0,0.8,0,1.2,0
|
22 |
+
C-89.2,22.7-89.2,27.5-89.2,32.3z"/>
|
23 |
+
<rect id="XMLID_13_" x="-88.8" y="17.9" class="st1" width="10.5" height="14.4"/>
|
24 |
+
<rect id="XMLID_12_" x="-87.4" y="20.8" class="st0" width="2.5" height="2.1"/>
|
25 |
+
<rect id="XMLID_11_" x="-87.4" y="24.2" class="st0" width="2.5" height="2.1"/>
|
26 |
+
<rect id="XMLID_10_" x="-87.4" y="27.5" class="st0" width="2.5" height="2.1"/>
|
27 |
+
<path id="XMLID_9_" class="st0" d="M-81.7,21.1h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
28 |
+
l0,0C-81.6,21.1-81.6,21.1-81.7,21.1z"/>
|
29 |
+
<path id="XMLID_8_" class="st0" d="M-79.8,22h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2l0,0
|
30 |
+
C-79.6,21.9-79.7,22-79.8,22z"/>
|
31 |
+
<path id="XMLID_7_" class="st0" d="M-79.8,22.9h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
32 |
+
l0,0C-79.6,22.8-79.7,22.9-79.8,22.9z"/>
|
33 |
+
<path id="XMLID_6_" class="st0" d="M-81.7,24.6h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
34 |
+
l0,0C-81.6,24.5-81.6,24.6-81.7,24.6z"/>
|
35 |
+
<path id="XMLID_5_" class="st0" d="M-79.8,25.4h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
36 |
+
l0,0C-79.6,25.4-79.7,25.4-79.8,25.4z"/>
|
37 |
+
<path id="XMLID_4_" class="st0" d="M-79.8,26.3h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
38 |
+
l0,0C-79.6,26.2-79.7,26.3-79.8,26.3z"/>
|
39 |
+
<path id="XMLID_3_" class="st0" d="M-81.7,27.9h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
40 |
+
l0,0C-81.6,27.8-81.6,27.9-81.7,27.9z"/>
|
41 |
+
<path id="XMLID_2_" class="st0" d="M-79.8,28.7h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
42 |
+
l0,0C-79.6,28.6-79.7,28.7-79.8,28.7z"/>
|
43 |
+
<path id="XMLID_1_" class="st0" d="M-79.8,29.6h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
44 |
+
l0,0C-79.6,29.5-79.7,29.6-79.8,29.6z"/>
|
45 |
+
<g>
|
46 |
+
<path id="XMLID_28_" class="st2" d="M-89.2,14.4c-0.4,0-0.8,0-1.2,0c0-4.8,0-9.6,0-14.4c0.4,0,0.8,0,1.2,0
|
47 |
+
C-89.2,4.8-89.2,9.6-89.2,14.4z"/>
|
48 |
+
<g>
|
49 |
+
<rect id="XMLID_27_" x="-88.8" y="0" class="st1" width="10.5" height="14.4"/>
|
50 |
+
<rect id="XMLID_26_" x="-87.4" y="2.9" class="st2" width="2.5" height="2.1"/>
|
51 |
+
<rect id="XMLID_25_" x="-87.4" y="6.3" class="st3" width="2.5" height="2.1"/>
|
52 |
+
<rect id="XMLID_24_" x="-87.4" y="9.6" class="st4" width="2.5" height="2.1"/>
|
53 |
+
<path id="XMLID_23_" class="st5" d="M-81.7,3.2h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
54 |
+
l0,0C-81.6,3.1-81.6,3.2-81.7,3.2z"/>
|
55 |
+
<path id="XMLID_22_" class="st5" d="M-79.8,4.1h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
56 |
+
l0,0C-79.6,4-79.7,4.1-79.8,4.1z"/>
|
57 |
+
<path id="XMLID_21_" class="st5" d="M-79.8,4.9h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
58 |
+
l0,0C-79.6,4.9-79.7,4.9-79.8,4.9z"/>
|
59 |
+
<path id="XMLID_20_" class="st5" d="M-81.7,6.6h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
60 |
+
l0,0C-81.6,6.6-81.6,6.6-81.7,6.6z"/>
|
61 |
+
<path id="XMLID_19_" class="st5" d="M-79.8,7.5h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
62 |
+
l0,0C-79.6,7.4-79.7,7.5-79.8,7.5z"/>
|
63 |
+
<path id="XMLID_18_" class="st5" d="M-79.8,8.4h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
64 |
+
l0,0C-79.6,8.3-79.7,8.4-79.8,8.4z"/>
|
65 |
+
<path id="XMLID_17_" class="st5" d="M-81.7,9.9h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
66 |
+
l0,0C-81.6,9.8-81.6,9.9-81.7,9.9z"/>
|
67 |
+
<path id="XMLID_16_" class="st5" d="M-79.8,10.8h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1
|
68 |
+
c0.1,0,0.2,0.1,0.2,0.2l0,0C-79.6,10.7-79.7,10.8-79.8,10.8z"/>
|
69 |
+
<path id="XMLID_15_" class="st5" d="M-79.8,11.6h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1
|
70 |
+
c0.1,0,0.2,0.1,0.2,0.2l0,0C-79.6,11.6-79.7,11.6-79.8,11.6z"/>
|
71 |
+
</g>
|
72 |
+
</g>
|
73 |
+
<g id="XMLID_33_">
|
74 |
+
<g id="XMLID_34_">
|
75 |
+
<g>
|
76 |
+
<rect id="XMLID_35_" x="-65.1" y="17.9" class="st6" width="12.2" height="14.4"/>
|
77 |
+
</g>
|
78 |
+
</g>
|
79 |
+
</g>
|
80 |
+
<path id="XMLID_31_" class="st0" d="M-66.4,17.9c-0.4,0-0.6,0.4-0.6,0.8v12.6c0,0.5,0.2,0.9,0.6,0.9h0.9V17.9H-66.4z"/>
|
81 |
+
<rect id="XMLID_30_" x="-65.1" y="17.9" class="st7" width="12.2" height="14.4"/>
|
82 |
+
<path id="XMLID_29_" class="st0" d="M-54.2,29.5c-3.3,0-6.6,0-9.9,0c0-0.3,0.2-0.4,0.3-0.6c0.1,0,0.1-0.1,0.2-0.1
|
83 |
+
c0.4-0.2,0.8-0.4,1.2-0.6c0.5-0.2,1-0.4,1.5-0.6c0-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.3,0.1-0.3c0.1,0,0.1,0,0.2,0c0-0.2,0-0.4,0.1-0.6
|
84 |
+
c0-0.1,0-0.2,0-0.2l-0.1-0.1l-0.1-0.1l0,0c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1-0.1-0.2-0.1-0.3
|
85 |
+
c0-0.1-0.1-0.2-0.1-0.2c-0.1-0.2-0.1-0.4-0.1-0.7c0-0.1,0-0.2,0.1-0.2h0.1c0-0.4,0-0.9,0-1.3c0-0.1,0-0.3,0-0.4s0.1-0.3,0.2-0.4
|
86 |
+
c0.1-0.1,0.2-0.2,0.3-0.3l0.1-0.1c0.1-0.1,0.2-0.2,0.3-0.2c0.1-0.1,0.2-0.1,0.4-0.1c0.2-0.1,0.4-0.1,0.6-0.2c0.1,0,0.3-0.1,0.4-0.1
|
87 |
+
c0.1,0,0.3-0.1,0.5,0c0,0.1-0.1,0.1-0.1,0.1s-0.1,0.1-0.1,0.2s0.1,0.1,0.1,0.1l0.1,0.1l0,0c0.2,0.1,0.4,0.3,0.5,0.5
|
88 |
+
c0.1,0.1,0.2,0.2,0.2,0.3c0,0.1,0,0.3,0,0.4c0,0.4,0,0.9,0,1.3c0.2,0,0.1,0.1,0.1,0.3c0,0.3,0,0.5-0.1,0.7c0,0.1-0.1,0.1-0.1,0.2
|
89 |
+
s0,0.1,0,0.2c-0.1,0.3-0.1,0.5-0.3,0.7l-0.1,0.1c0,0.1,0,0.3,0,0.4c0,0.2,0,0.3,0,0.4h0.1c0.2,0,0.1,0.2,0.2,0.4
|
90 |
+
c0,0.1,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.2c0.8,0.3,1.7,0.7,2.5,1.1c0.1,0.1,0.2,0.1,0.3,0.2l0,0C-54.4,29-54.3,29.2-54.2,29.5
|
91 |
+
L-54.2,29.5z"/>
|
92 |
+
<g>
|
93 |
+
<g id="XMLID_40_">
|
94 |
+
<g id="XMLID_41_">
|
95 |
+
<g>
|
96 |
+
<rect id="XMLID_42_" x="-65.1" y="0" class="st6" width="12.2" height="14.4"/>
|
97 |
+
</g>
|
98 |
+
</g>
|
99 |
+
</g>
|
100 |
+
<path id="XMLID_38_" class="st8" d="M-66.4,0C-66.8,0-67,0.4-67,0.8v12.6c0,0.5,0.2,0.9,0.6,0.9h0.9V0H-66.4z"/>
|
101 |
+
<rect id="XMLID_37_" x="-65.1" y="0" class="st7" width="12.2" height="14.4"/>
|
102 |
+
<path id="XMLID_36_" class="st8" d="M-54.2,11.6c-3.3,0-6.6,0-9.9,0c0-0.3,0.2-0.4,0.3-0.6c0.1,0,0.1-0.1,0.2-0.1
|
103 |
+
c0.4-0.2,0.8-0.4,1.2-0.6c0.5-0.2,1-0.4,1.5-0.6c0-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.3,0.1-0.3c0.1,0,0.1,0,0.2,0c0-0.2,0-0.4,0.1-0.6
|
104 |
+
c0-0.1,0-0.2,0-0.2l-0.1-0.1L-60.6,8l0,0c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1-0.1-0.2-0.1-0.3
|
105 |
+
C-60.9,7.1-61,7-61,7c-0.1-0.2-0.1-0.4-0.1-0.7c0-0.1,0-0.2,0.1-0.2h0.1c0-0.4,0-0.9,0-1.3c0-0.1,0-0.3,0-0.4s0.1-0.3,0.2-0.4
|
106 |
+
c0.1-0.1,0.2-0.2,0.3-0.3l0.1-0.1c0.1-0.1,0.2-0.2,0.3-0.2c0.1-0.1,0.2-0.1,0.4-0.1c0.2-0.1,0.4-0.1,0.6-0.2c0.1,0,0.3-0.1,0.4-0.1
|
107 |
+
c0.1,0,0.3-0.1,0.5,0c0,0.1-0.1,0.1-0.1,0.1s-0.1,0.1-0.1,0.2c0,0.1,0.1,0.1,0.1,0.1l0.1,0.1l0,0c0.2,0.1,0.4,0.3,0.5,0.5
|
108 |
+
c0.1,0.1,0.2,0.2,0.2,0.3c0,0.1,0,0.3,0,0.4c0,0.4,0,0.9,0,1.3c0.2,0,0.1,0.1,0.1,0.3c0,0.3,0,0.5-0.1,0.7c0,0.1-0.1,0.1-0.1,0.2
|
109 |
+
s0,0.1,0,0.2c-0.1,0.3-0.1,0.5-0.3,0.7l-0.1,0.1c0,0.1,0,0.3,0,0.4c0,0.2,0,0.3,0,0.4h0.1c0.2,0,0.1,0.2,0.2,0.4
|
110 |
+
c0,0.1,0.1,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.8,0.3,1.7,0.7,2.5,1.1c0.1,0.1,0.2,0.1,0.3,0.2l0,0
|
111 |
+
C-54.4,11.1-54.3,11.3-54.2,11.6L-54.2,11.6z"/>
|
112 |
+
</g>
|
113 |
+
<path id="XMLID_32_" class="st9" d="M-30.3,7.8l-10,6.4c-0.5,0.3-1.2,0-1.2-0.6V0.8c0-0.6,0.7-1,1.2-0.6l10,6.4
|
114 |
+
C-29.8,6.9-29.8,7.5-30.3,7.8z"/>
|
115 |
+
<path class="st7" d="M-5.9,30.1c0,0.7-0.6,1.3-1.3,1.3h-11.7c-0.7,0-1.3-0.6-1.3-1.3V18.4c0-0.7,0.6-1.3,1.3-1.3h11.7
|
116 |
+
c0.7,0,1.3,0.6,1.3,1.3V30.1z"/>
|
117 |
+
<path class="st0" d="M-15.9,24.7c0,0.1,0.1,0.3,0.2,0.4l0.3,0.5c0,0,0,0,0,0.1c0.3,0.4,0.7,0.6,1.2,0.8c0.2,0.1,0.5,0.1,0.7,0.2
|
118 |
+
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l0.4,0l0.8,0l0.5,0l3.6-1.9c0.3-0.2,0.5-0.6,0.3-1l-1.8-3.4c-0.2-0.3-0.6-0.5-1-0.3l-1.3,0.7
|
119 |
+
l-0.1-0.2c-0.1-0.2-0.4-0.3-0.7-0.2l-2,1.1c-0.2,0.1-0.3,0.4-0.2,0.7l0.1,0.2l-1.3,0.7v0.9C-16,24.1-16,24.4-15.9,24.7z"/>
|
120 |
+
<g>
|
121 |
+
<path class="st7" d="M-10.1,24.1c0-0.5-0.2-1-0.5-1.3l-0.6,1.9L-10.1,24.1z"/>
|
122 |
+
<path class="st7" d="M-10.7,25.4l-1.9-0.6l0.6,1.1C-11.5,25.9-11,25.8-10.7,25.4z"/>
|
123 |
+
</g>
|
124 |
+
<g>
|
125 |
+
<path class="st7" d="M-10.7,25.4c0.4-0.3,0.6-0.8,0.6-1.4l-1.8,1L-10.7,25.4z"/>
|
126 |
+
<path class="st7" d="M-11.9,22.1l1,1.8l0.4-1.2C-10.9,22.3-11.4,22.1-11.9,22.1z"/>
|
127 |
+
</g>
|
128 |
+
<path class="st7" d="M-13.2,22.6l1.9,0.6l-0.6-1.1C-12.4,22.1-12.9,22.3-13.2,22.6L-13.2,22.6z"/>
|
129 |
+
<path class="st7" d="M-13.9,23.9l1.8-1l-1.2-0.4C-13.6,22.9-13.8,23.4-13.9,23.9L-13.9,23.9z"/>
|
130 |
+
<path class="st7" d="M-13.9,23.9c0,0.5,0.2,1,0.5,1.3l0.6-1.9L-13.9,23.9z"/>
|
131 |
+
<path class="st7" d="M-12,25.9l-1-1.8l-0.4,1.2C-13,25.6-12.5,25.9-12,25.9L-12,25.9z"/>
|
132 |
+
<g>
|
133 |
+
<path class="st0" d="M-11,25.7c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1l0,0
|
134 |
+
c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
135 |
+
l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0l0,0
|
136 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0
|
137 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0l0,0c-0.1,0-0.1-0.1-0.2-0.1
|
138 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
139 |
+
l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0-0.1-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
140 |
+
c0,0,0-0.1-0.1-0.1c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1-0.1-0.2-0.1-0.2l0,0c0,0,0-0.1,0-0.1
|
141 |
+
c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
142 |
+
c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0-0.1
|
143 |
+
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0
|
144 |
+
c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0c0.1-0.1,0.2-0.3,0.3-0.4l0,0c0,0,0,0,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0
|
145 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.2,0.8-0.2l0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0l0,0l0,0
|
146 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0
|
147 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0,0
|
148 |
+
c0.2,0.1,0.3,0.2,0.5,0.3c0,0,0,0,0,0c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0
|
149 |
+
l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
150 |
+
c0,0,0,0.1,0.1,0.1c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0.1,0.1,0.2,0.1,0.2l0,0c0,0,0,0.1,0,0.1
|
151 |
+
l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0
|
152 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0
|
153 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0c-0.1,0.2-0.2,0.3-0.3,0.5
|
154 |
+
l0,0c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0.1
|
155 |
+
l0,0c0,0,0,0-0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0C-10.9,25.6-10.9,25.7-11,25.7C-11,25.7-11,25.7-11,25.7z
|
156 |
+
M-12,25.9L-12,25.9c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0
|
157 |
+
c0,0,0,0,0.1,0l0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.1-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0l0,0
|
158 |
+
c0,0,0,0,0,0l0,0l0.1-0.1l-1.8-0.5L-12,25.9z M-10.7,25.4L-10.7,25.4C-10.6,25.4-10.6,25.4-10.7,25.4
|
159 |
+
C-10.6,25.4-10.6,25.4-10.7,25.4C-10.6,25.3-10.6,25.3-10.7,25.4L-10.7,25.4c0.1-0.1,0.1-0.2,0.2-0.2c0,0,0,0,0-0.1
|
160 |
+
c0,0,0-0.1,0.1-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1l0,0l0,0c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1
|
161 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0-0.1l-1.8,1L-10.7,25.4z M-13.3,25.3
|
162 |
+
L-13.3,25.3C-13.3,25.3-13.3,25.3-13.3,25.3C-13.3,25.3-13.3,25.3-13.3,25.3C-13.3,25.4-13.3,25.4-13.3,25.3L-13.3,25.3
|
163 |
+
c0.1,0.1,0.2,0.1,0.2,0.2c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
164 |
+
c0,0,0.1,0,0.1,0l0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0.1,0.3,0.1l0.1,0l-0.9-1.8L-13.3,25.3z
|
165 |
+
M-11.1,24.6l1-0.6l0,0c0,0,0-0.1,0-0.2c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0c0,0,0,0,0,0
|
166 |
+
c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0-0.1,0-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0
|
167 |
+
l-0.1-0.1L-11.1,24.6z M-13,24.1l0.4,0.8l0.7,0.2l0.7-0.4l0.2-0.7l-0.4-0.7L-12,23l-0.8,0.4L-13,24.1z M-13.8,24c0,0,0,0.1,0,0.2
|
168 |
+
c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1
|
169 |
+
c0,0,0,0,0,0l0,0c0,0.1,0,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0.1,0.1l0.5-1.8L-13.8,24
|
170 |
+
L-13.8,24z M-10.9,23.9l0.3-1.2l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1-0.1
|
171 |
+
c0,0,0,0-0.1,0c0,0,0,0-0.1,0l0,0l0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0
|
172 |
+
c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0l-0.1,0L-10.9,23.9z M-13.1,22.5
|
173 |
+
C-13.1,22.5-13.1,22.5-13.1,22.5L-13.1,22.5l-0.1,0.1l1.8,0.6l-0.6-1l0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c0,0,0,0,0,0l0,0
|
174 |
+
c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0
|
175 |
+
c0,0,0,0-0.1,0l0,0C-12.9,22.4-13,22.4-13.1,22.5L-13.1,22.5L-13.1,22.5z M-13.3,22.7C-13.3,22.7-13.3,22.7-13.3,22.7
|
176 |
+
C-13.3,22.7-13.3,22.7-13.3,22.7C-13.3,22.7-13.3,22.7-13.3,22.7c-0.1,0.1-0.1,0.1-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0-0.1,0.1
|
177 |
+
c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0
|
178 |
+
c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0.1l1.8-1L-13.3,22.7L-13.3,22.7z"/>
|
179 |
+
</g>
|
180 |
+
<circle class="st7" cx="-10.4" cy="21.1" r="0.4"/>
|
181 |
+
<g>
|
182 |
+
<path class="st7" d="M-10.9,25.9c-1,0.6-2.3,0.2-2.9-0.9c-0.6-1-0.2-2.3,0.9-2.9c1-0.6,2.3-0.2,2.9,0.9C-9.5,24-9.9,25.3-10.9,25.9
|
183 |
+
z M-12.9,22.3c-1,0.5-1.3,1.7-0.8,2.7s1.7,1.3,2.7,0.8c1-0.5,1.3-1.7,0.8-2.7C-10.7,22.1-11.9,21.7-12.9,22.3z"/>
|
184 |
+
</g>
|
185 |
+
<path class="st10" d="M-15.9,25.2c0.1,0.2,0.2,0.4,0.3,0.6l-0.4-0.7C-16,25.1-16,25.2-15.9,25.2z"/>
|
186 |
+
<path class="st0" d="M-7.9,25C-8,25-8,25.5-8.1,25.7c-0.1,0.2-0.3,0.4-0.4,0.6c-0.4,0.3-0.8,0.5-1.3,0.6c-0.1,0-0.1,0-0.2,0l-0.2,0
|
187 |
+
l-0.4,0l-0.8,0l-0.3,0l-0.5,0l-0.8,0l-0.4,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.5-0.1-0.7-0.2
|
188 |
+
c-0.4-0.2-0.8-0.4-1.2-0.8c0,0,0,0,0-0.1c-0.1-0.2-0.2-0.4-0.3-0.6c0,0,0-0.1,0-0.1c-0.1-0.3-0.2-0.8-0.2-0.9v-0.9v-0.5
|
189 |
+
c0-0.7-0.6-1.4-1.3-1.4c-0.4,0-0.8,0-1,0.5c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.1,0.3,0.1,0.5,0c0.1-0.1,0.3-0.2,0.5-0.2
|
190 |
+
c0.4,0,0.7,0.3,0.7,0.7v1.4c0,0.1-0.1,1.1,0.7,2.2c0.4,0.4,0.9,0.7,1.3,0.9c0.5,0.2,0.9,0.2,1,0.2c0.1,0,0.1,0,0.2,0
|
191 |
+
c0.1,0,0.1,0,0.2,0l0.4,0l0.1,0l0.7,0l0.8,0l0.8,0l0.4,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.6-0.1,1.1-0.4,1.5-0.8
|
192 |
+
C-8,26.1-7.6,24.9-7.9,25z"/>
|
193 |
+
<path class="st0" d="M-14.7,28.1c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
194 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.1-0.5,0C-14.5,28.4-14.6,28.3-14.7,28.1z"/>
|
195 |
+
<path class="st0" d="M-11,27.9c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
196 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.1-0.5,0C-10.8,28.2-10.9,28.1-11,27.9z"/>
|
197 |
+
<g>
|
198 |
+
<path class="st11" d="M-5.9,13c0,0.7-0.6,1.3-1.3,1.3h-11.7c-0.7,0-1.3-0.6-1.3-1.3V1.4c0-0.7,0.6-1.3,1.3-1.3h11.7
|
199 |
+
c0.7,0,1.3,0.6,1.3,1.3V13z"/>
|
200 |
+
<g>
|
201 |
+
<g>
|
202 |
+
<path class="st12" d="M-15.9,7.6c0,0.1,0.1,0.3,0.2,0.4l0.3,0.5c0,0,0,0,0,0.1c0.3,0.4,0.7,0.6,1.2,0.8c0.2,0.1,0.5,0.1,0.7,0.2
|
203 |
+
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l0.4,0l0.8,0l0.5,0L-8,7.7c0.3-0.2,0.5-0.6,0.3-1l-1.8-3.4c-0.2-0.3-0.6-0.5-1-0.3l-1.3,0.7
|
204 |
+
l-0.1-0.2c-0.1-0.2-0.4-0.3-0.7-0.2l-2,1.1c-0.2,0.1-0.3,0.4-0.2,0.7l0.1,0.2L-16,6.1V7C-16,7-16,7.4-15.9,7.6z"/>
|
205 |
+
<g>
|
206 |
+
<g>
|
207 |
+
<g>
|
208 |
+
<path class="st11" d="M-10.1,7c0-0.5-0.2-1-0.5-1.3l-0.6,1.9L-10.1,7z"/>
|
209 |
+
<path class="st11" d="M-10.7,8.4l-1.9-0.6l0.6,1.1C-11.5,8.9-11,8.7-10.7,8.4z"/>
|
210 |
+
</g>
|
211 |
+
</g>
|
212 |
+
<g>
|
213 |
+
<g>
|
214 |
+
<path class="st11" d="M-10.7,8.4c0.4-0.3,0.6-0.8,0.6-1.4l-1.8,1L-10.7,8.4z"/>
|
215 |
+
<path class="st11" d="M-11.9,5l1,1.8l0.4-1.2C-10.9,5.3-11.4,5.1-11.9,5z"/>
|
216 |
+
</g>
|
217 |
+
</g>
|
218 |
+
<path class="st11" d="M-13.2,5.5l1.9,0.6L-11.9,5C-12.4,5-12.9,5.2-13.2,5.5L-13.2,5.5z"/>
|
219 |
+
<path class="st11" d="M-13.9,6.9l1.9-1l-1.2-0.4C-13.6,5.9-13.9,6.4-13.9,6.9L-13.9,6.9z"/>
|
220 |
+
<path class="st11" d="M-13.9,6.9c0,0.5,0.2,1,0.5,1.3l0.6-1.9L-13.9,6.9z"/>
|
221 |
+
<path class="st11" d="M-12,8.9L-13,7l-0.4,1.2C-13,8.6-12.5,8.8-12,8.9L-12,8.9z"/>
|
222 |
+
<g>
|
223 |
+
<path class="st12" d="M-11,8.6c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1l0,0
|
224 |
+
c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
225 |
+
l0,0l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0l0,0
|
226 |
+
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0
|
227 |
+
c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0
|
228 |
+
l0,0c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
229 |
+
l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0-0.1-0.1l0,0c0,0,0,0,0,0
|
230 |
+
c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0
|
231 |
+
c0-0.1-0.1-0.2-0.1-0.2l0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
232 |
+
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1
|
233 |
+
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0
|
234 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0c0.1-0.1,0.2-0.3,0.3-0.4l0,0
|
235 |
+
c0,0,0,0,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0
|
236 |
+
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.2,0.8-0.2l0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
237 |
+
c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
238 |
+
c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0,0c0.2,0.1,0.3,0.2,0.5,0.3c0,0,0,0,0,0
|
239 |
+
c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0
|
240 |
+
c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1
|
241 |
+
c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0.1,0.1,0.2,0.1,0.2l0,0c0,0,0,0.1,0,0.1l0,0
|
242 |
+
c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0
|
243 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0
|
244 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0
|
245 |
+
c-0.1,0.2-0.2,0.3-0.3,0.5l0,0c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0l0,0
|
246 |
+
c0,0,0,0,0,0c0,0,0,0-0.1,0.1l0,0c0,0,0,0-0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0C-10.9,8.6-10.9,8.6-11,8.6
|
247 |
+
C-11,8.6-11,8.6-11,8.6z M-12,8.8L-12,8.8c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0
|
248 |
+
c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0l0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.1-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
249 |
+
c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0l0.1-0.1l-1.8-0.5L-12,8.8z M-10.7,8.3L-10.7,8.3
|
250 |
+
C-10.6,8.3-10.6,8.3-10.7,8.3C-10.6,8.3-10.6,8.3-10.7,8.3C-10.6,8.3-10.6,8.3-10.7,8.3L-10.7,8.3c0.1-0.1,0.1-0.2,0.2-0.2
|
251 |
+
c0,0,0,0,0-0.1c0,0,0-0.1,0.1-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1l0,0l0,0c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
252 |
+
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0-0.1l-1.8,1L-10.7,8.3z
|
253 |
+
M-13.3,8.2L-13.3,8.2C-13.3,8.3-13.3,8.3-13.3,8.2C-13.3,8.3-13.3,8.3-13.3,8.2C-13.3,8.3-13.3,8.3-13.3,8.2L-13.3,8.2
|
254 |
+
c0.1,0.1,0.2,0.1,0.2,0.2c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
255 |
+
c0,0,0.1,0,0.1,0l0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0.1,0.3,0.1l0.1,0L-13,7.1L-13.3,8.2z
|
256 |
+
M-11.1,7.5l1-0.6l0,0c0,0,0-0.1,0-0.2c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0
|
257 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0-0.1,0-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l0,0
|
258 |
+
c0,0,0,0,0,0l0,0l-0.1-0.1L-11.1,7.5z M-13,7l0.4,0.8l0.7,0.2l0.7-0.4l0.2-0.7l-0.4-0.7L-12,5.9l-0.8,0.4L-13,7z M-13.8,7
|
259 |
+
c0,0,0,0.1,0,0.2c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
260 |
+
c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0.1,0,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0.1,0.1
|
261 |
+
l0.5-1.8L-13.8,7L-13.8,7z M-10.9,6.8l0.3-1.2l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1-0.1c0,0,0,0-0.1,0
|
262 |
+
c0,0-0.1,0-0.1-0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0l0,0l0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
263 |
+
c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0l-0.1,0L-10.9,6.8z
|
264 |
+
M-13.1,5.4C-13.1,5.4-13.1,5.4-13.1,5.4L-13.1,5.4l-0.1,0.1l1.8,0.6l-0.6-1l0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c0,0,0,0,0,0
|
265 |
+
l0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0.1
|
266 |
+
c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0C-12.9,5.3-13,5.4-13.1,5.4L-13.1,5.4L-13.1,5.4z M-13.3,5.6C-13.3,5.6-13.3,5.6-13.3,5.6
|
267 |
+
C-13.3,5.6-13.3,5.6-13.3,5.6C-13.3,5.6-13.3,5.6-13.3,5.6c-0.1,0.1-0.1,0.1-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0-0.1,0.1
|
268 |
+
c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0
|
269 |
+
c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0.1l1.8-1L-13.3,5.6L-13.3,5.6z"/>
|
270 |
+
</g>
|
271 |
+
</g>
|
272 |
+
<circle class="st11" cx="-10.4" cy="4.1" r="0.4"/>
|
273 |
+
<g>
|
274 |
+
<path class="st11" d="M-10.9,8.8C-12,9.4-13.3,9-13.8,8c-0.6-1-0.2-2.3,0.9-2.9s2.3-0.2,2.9,0.9S-9.9,8.3-10.9,8.8z M-12.9,5.2
|
275 |
+
c-1,0.5-1.3,1.7-0.8,2.7S-12,9.2-11,8.7C-10,8.2-9.7,7-10.2,6C-10.7,5-11.9,4.7-12.9,5.2z"/>
|
276 |
+
</g>
|
277 |
+
</g>
|
278 |
+
<path class="st10" d="M-15.9,8.2c0.1,0.2,0.2,0.4,0.3,0.6L-16,8C-16,8.1-16,8.1-15.9,8.2z"/>
|
279 |
+
<path class="st12" d="M-15.9,8.2c0,0,0-0.1,0-0.1l-0.5-0.9c-0.2-0.3-0.1-0.8,0.3-1l0,0V5.7c0-0.7-0.6-1.4-1.3-1.4
|
280 |
+
c-0.4,0-0.8,0-1,0.5c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.1,0.3,0.1,0.5,0c0.1-0.1,0.3-0.2,0.5-0.2c0.4,0,0.7,0.3,0.7,0.7v1.4
|
281 |
+
c0,0.1-0.1,1.1,0.7,2.2c0.4,0.4,0.9,0.7,1.3,0.9l-0.8-1.4C-15.8,8.5-15.8,8.3-15.9,8.2z"/>
|
282 |
+
<path class="st12" d="M-7.9,7.9C-8,7.9-8,8.4-8.1,8.7c-0.1,0.2-0.3,0.4-0.4,0.6c-0.4,0.3-0.8,0.5-1.3,0.6c-0.1,0-0.1,0-0.2,0
|
283 |
+
l-0.2,0l-0.4,0l-0.8,0l-0.3,0l-1.2,0.6l0.7,0l0.8,0l0.8,0l0.4,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.6-0.1,1.1-0.4,1.5-0.8
|
284 |
+
C-8,9-7.6,7.9-7.9,7.9z"/>
|
285 |
+
<path class="st12" d="M-12.2,9.8l-0.8,0l-0.4,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.5-0.1-0.7-0.2
|
286 |
+
c-0.4-0.2-0.8-0.4-1.2-0.8c0,0,0,0,0-0.1l0.8,1.4c0.5,0.2,0.9,0.2,1,0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l0.4,0l0.1,0l1.2-0.6
|
287 |
+
L-12.2,9.8z"/>
|
288 |
+
<path class="st12" d="M-16.5,7.2L-16,8c-0.1-0.3-0.2-0.8-0.2-0.9V6.2l0,0C-16.5,6.4-16.6,6.8-16.5,7.2z"/>
|
289 |
+
<path class="st12" d="M-14.7,11.1c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
290 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.1-0.5,0C-14.5,11.3-14.6,11.2-14.7,11.1z"/>
|
291 |
+
<path class="st12" d="M-11,10.9c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
292 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.1-0.5,0C-10.8,11.1-10.9,11-11,10.9z"/>
|
293 |
+
</g>
|
294 |
+
</g>
|
295 |
+
<g>
|
296 |
+
<path id="XMLID_1084_" class="st0" d="M2.2,29.2v-2.8c0,0,0-0.2-0.1-0.3c-0.1-0.1-0.3-0.1-0.3-0.1h-1c0,0-0.4-0.1-0.6-0.3
|
297 |
+
C0,25.5,0,25.1,0,25.1v-1.7c0,0,0-0.5,0.3-0.7c0.3-0.2,0.6-0.3,0.6-0.3h0.8c0,0,0.1,0,0.3-0.1C2.2,22.2,2.2,22,2.2,22v-2.3
|
298 |
+
c0,0,0.1-1.1,0.9-1.8c0.8-0.7,1.6-0.8,1.6-0.8h2.9c0,0,0.5,0.1,0.7,0.4c0.2,0.3,0.2,0.6,0.2,0.6l0,1.6c0,0,0.1,0.4-0.3,0.7
|
299 |
+
c-0.3,0.3-0.6,0.3-0.6,0.3l-1.4,0c0,0-0.2,0-0.3,0.1C5.8,20.9,5.8,21,5.8,21l0,1.1c0,0,0,0.2,0.2,0.3c0.1,0.1,0.3,0.1,0.3,0.1h1.4
|
300 |
+
c0,0,0.5,0,0.6,0.4s0.2,0.4,0.1,0.7c0,0.3-0.3,1.5-0.3,1.5s-0.1,0.5-0.4,0.8c-0.2,0.2-0.6,0.2-0.6,0.2H6.1c0,0-0.1,0-0.2,0.1
|
301 |
+
c-0.1,0.1-0.1,0.2-0.1,0.2s0,4.3,0,4.2s0,0.2-0.3,0.5c-0.3,0.3-0.5,0.3-0.5,0.3H3.4c0,0-0.4,0-0.4-0.5c0-0.5,0.4-0.5,0.4-0.5l1.1,0
|
302 |
+
c0,0,0.2,0,0.2-0.1C4.8,30.2,4.8,30,4.8,30l0-3.9c0,0,0-0.4,0.3-0.7c0.3-0.3,0.6-0.3,0.6-0.3h1.1c0,0,0.2,0,0.3-0.3
|
303 |
+
c0.2-0.5,0.3-1,0.3-1s0.1-0.2,0-0.4c-0.1-0.1-0.2-0.1-0.2-0.1l-1.4,0c0,0-0.5,0-0.8-0.4c-0.3-0.3-0.3-0.6-0.3-0.6v-1.6
|
304 |
+
c0,0,0-0.4,0.4-0.8c0.3-0.3,0.6-0.3,0.6-0.3h1.5c0,0,0.1,0,0.2-0.1c0.1-0.1,0.1-0.2,0.1-0.2v-1.1c0,0,0-0.2-0.1-0.2
|
305 |
+
c-0.1-0.1-0.3-0.1-0.3-0.1H5c0,0-0.7,0.1-1.3,0.7c-0.5,0.5-0.5,1.1-0.5,1.1v2.5c0,0,0,0.5-0.4,0.8c-0.3,0.3-0.6,0.3-0.6,0.3l-0.9,0
|
306 |
+
c0,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.2v1c0,0,0,0.2,0.1,0.3c0.2,0.1,0.3,0.1,0.3,0.1l0.8,0c0,0,0.4,0,0.7,0.3
|
307 |
+
c0.3,0.4,0.3,0.6,0.3,0.6l0,3.1c0,0,0,0.4-0.5,0.4S2.2,29.2,2.2,29.2z"/>
|
308 |
+
<g id="XMLID_1074_">
|
309 |
+
<path id="XMLID_1081_" class="st0" d="M11.2,24.4H9.7c0,0.2,0,0.3,0.1,0.5c0.1,0.1,0.2,0.2,0.3,0.3s0.2,0.1,0.4,0.1
|
310 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1
|
311 |
+
c0.1,0,0.1,0,0.2,0.1c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3s-0.2,0.2-0.4,0.2
|
312 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.7-0.4-1.1c0-0.2,0-0.4,0.1-0.6c0.1-0.2,0.2-0.4,0.3-0.5
|
313 |
+
c0.1-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6
|
314 |
+
c0,0.2-0.1,0.3-0.2,0.4C11.6,24.4,11.4,24.4,11.2,24.4z M9.7,24h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2
|
315 |
+
c-0.2,0-0.3,0.1-0.5,0.2C9.8,23.5,9.7,23.7,9.7,24z"/>
|
316 |
+
<path id="XMLID_1078_" class="st0" d="M14.5,24.4H13c0,0.2,0,0.3,0.1,0.5c0.1,0.1,0.2,0.2,0.3,0.3s0.2,0.1,0.4,0.1
|
317 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1
|
318 |
+
c0.1,0,0.1,0,0.2,0.1c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.4,0.2
|
319 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.7-0.4-1.1c0-0.2,0-0.4,0.1-0.6c0.1-0.2,0.2-0.4,0.3-0.5
|
320 |
+
s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6
|
321 |
+
c0,0.2-0.1,0.3-0.2,0.4C14.9,24.4,14.7,24.4,14.5,24.4z M13,24h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2
|
322 |
+
c-0.2,0-0.3,0.1-0.5,0.2C13.1,23.5,13,23.7,13,24z"/>
|
323 |
+
<path id="XMLID_1075_" class="st0" d="M17.8,25.4L17.8,25.4c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2s-0.2,0.1-0.4,0.1
|
324 |
+
c-0.2,0-0.4,0-0.5-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.3-0.3-0.5c-0.1-0.2-0.1-0.4-0.1-0.6c0-0.5,0.1-0.9,0.4-1.1
|
325 |
+
c0.2-0.3,0.5-0.4,0.9-0.4c0.2,0,0.4,0,0.6,0.1c0.2,0.1,0.3,0.2,0.4,0.4V22c0-0.2,0-0.3,0.1-0.4c0.1-0.1,0.2-0.1,0.3-0.1
|
326 |
+
c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v3.4c0,0.1,0,0.3-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c-0.1,0-0.2,0-0.3-0.1
|
327 |
+
C17.8,25.6,17.8,25.5,17.8,25.4z M16.3,24.2c0,0.2,0,0.4,0.1,0.5c0.1,0.1,0.2,0.3,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.1
|
328 |
+
c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.2,0-0.4-0.1-0.5c-0.1-0.1-0.2-0.3-0.3-0.3
|
329 |
+
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.2-0.3,0.3C16.3,23.9,16.3,24,16.3,24.2z"/>
|
330 |
+
</g>
|
331 |
+
</g>
|
332 |
+
<g>
|
333 |
+
<path id="XMLID_52_" class="st13" d="M2.2,12.2V9.4c0,0,0-0.2-0.1-0.3C2,9,1.8,9,1.8,9h-1c0,0-0.4-0.1-0.6-0.3C0,8.4,0,8.1,0,8.1
|
334 |
+
V6.4c0,0,0-0.5,0.3-0.7c0.3-0.2,0.6-0.3,0.6-0.3h0.8c0,0,0.1,0,0.3-0.1C2.2,5.2,2.2,5,2.2,5V2.6c0,0,0.1-1.1,0.9-1.8
|
335 |
+
s1.6-0.8,1.6-0.8h2.9c0,0,0.5,0.1,0.7,0.4C8.5,0.7,8.5,1,8.5,1l0,1.6c0,0,0.1,0.4-0.3,0.7C7.9,3.6,7.6,3.6,7.6,3.6l-1.4,0
|
336 |
+
c0,0-0.2,0-0.3,0.1C5.8,3.8,5.8,3.9,5.8,3.9l0,1.1c0,0,0,0.2,0.2,0.3c0.1,0.1,0.3,0.1,0.3,0.1h1.4c0,0,0.5,0,0.6,0.4
|
337 |
+
c0.2,0.3,0.2,0.4,0.1,0.7C8.4,6.8,8.2,8,8.2,8S8.1,8.4,7.8,8.7C7.6,9,7.2,9,7.2,9H6.1c0,0-0.1,0-0.2,0.1C5.8,9.2,5.8,9.3,5.8,9.3
|
338 |
+
s0,4.3,0,4.2s0,0.2-0.3,0.5c-0.3,0.3-0.5,0.3-0.5,0.3H3.4c0,0-0.4,0-0.4-0.5c0-0.5,0.4-0.5,0.4-0.5l1.1,0c0,0,0.2,0,0.2-0.1
|
339 |
+
C4.8,13.1,4.8,13,4.8,13l0-3.9c0,0,0-0.4,0.3-0.7C5.5,8,5.8,8,5.8,8h1.1c0,0,0.2,0,0.3-0.3c0.2-0.5,0.3-1,0.3-1s0.1-0.2,0-0.4
|
340 |
+
C7.4,6.3,7.2,6.4,7.2,6.4l-1.4,0c0,0-0.5,0-0.8-0.4C4.8,5.6,4.8,5.3,4.8,5.3V3.8c0,0,0-0.4,0.4-0.8c0.3-0.3,0.6-0.3,0.6-0.3h1.5
|
341 |
+
c0,0,0.1,0,0.2-0.1c0.1-0.1,0.1-0.2,0.1-0.2V1.3c0,0,0-0.2-0.1-0.2C7.3,1,7.1,1,7.1,1H5c0,0-0.7,0.1-1.3,0.7
|
342 |
+
C3.2,2.1,3.1,2.8,3.1,2.8v2.5c0,0,0,0.5-0.4,0.8C2.4,6.4,2.1,6.4,2.1,6.4l-0.9,0c0,0-0.2,0-0.3,0.1C0.9,6.6,0.9,6.7,0.9,6.7v1
|
343 |
+
c0,0,0,0.2,0.1,0.3c0.2,0.1,0.3,0.1,0.3,0.1l0.8,0c0,0,0.4,0,0.7,0.3C3.2,8.8,3.1,9,3.1,9l0,3.1c0,0,0,0.4-0.5,0.4
|
344 |
+
S2.2,12.2,2.2,12.2z"/>
|
345 |
+
<g id="XMLID_39_">
|
346 |
+
<path id="XMLID_49_" class="st13" d="M11.2,7.4H9.7c0,0.2,0,0.3,0.1,0.5C9.9,8,10,8.1,10.1,8.1c0.1,0.1,0.2,0.1,0.4,0.1
|
347 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1C11,8.1,11.1,8,11.1,8c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1
|
348 |
+
c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.4,0.2c-0.2,0.1-0.4,0.1-0.6,0.1
|
349 |
+
c-0.5,0-0.9-0.1-1.2-0.4C9.1,8,8.9,7.7,8.9,7.2C8.9,7,9,6.7,9,6.6s0.2-0.4,0.3-0.5c0.1-0.1,0.3-0.2,0.5-0.3
|
350 |
+
c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6c0,0.2-0.1,0.3-0.2,0.4
|
351 |
+
C11.6,7.3,11.4,7.4,11.2,7.4z M9.7,6.9h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.3,0.1-0.5,0.2
|
352 |
+
C9.8,6.5,9.7,6.7,9.7,6.9z"/>
|
353 |
+
<path id="XMLID_46_" class="st13" d="M14.5,7.4H13c0,0.2,0,0.3,0.1,0.5c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.1
|
354 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1
|
355 |
+
c0.1,0,0.1,0,0.2,0.1c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.4,0.2
|
356 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.7-0.4-1.1c0-0.2,0-0.4,0.1-0.6s0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3
|
357 |
+
c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6c0,0.2-0.1,0.3-0.2,0.4
|
358 |
+
C14.9,7.3,14.7,7.4,14.5,7.4z M13,6.9h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.3,0.1-0.5,0.2
|
359 |
+
C13.1,6.5,13,6.7,13,6.9z"/>
|
360 |
+
<path id="XMLID_43_" class="st13" d="M17.8,8.3L17.8,8.3c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0-0.2,0.1-0.4,0.1
|
361 |
+
c-0.2,0-0.4,0-0.5-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.3-0.3-0.5c-0.1-0.2-0.1-0.4-0.1-0.6c0-0.5,0.1-0.9,0.4-1.1
|
362 |
+
c0.2-0.3,0.5-0.4,0.9-0.4c0.2,0,0.4,0,0.6,0.1c0.2,0.1,0.3,0.2,0.4,0.4V5c0-0.2,0-0.3,0.1-0.4c0.1-0.1,0.2-0.1,0.3-0.1
|
363 |
+
c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v3.4c0,0.1,0,0.3-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c-0.1,0-0.2,0-0.3-0.1
|
364 |
+
C17.8,8.6,17.8,8.5,17.8,8.3z M16.3,7.2c0,0.2,0,0.4,0.1,0.5C16.4,7.9,16.5,8,16.6,8c0.1,0.1,0.2,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1
|
365 |
+
c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.2,0-0.4-0.1-0.5c-0.1-0.1-0.2-0.3-0.3-0.3S17.1,6.2,17,6.2
|
366 |
+
c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.2-0.3,0.3C16.3,6.8,16.3,7,16.3,7.2z"/>
|
367 |
+
</g>
|
368 |
+
</g>
|
369 |
+
</svg>
|
images/wt-gb/icon.svg
ADDED
@@ -0,0 +1,368 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 18.5 14.4" style="enable-background:new 0 0 18.5 14.4;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#565D66;}
|
7 |
+
.st1{fill:#EAEAEA;}
|
8 |
+
.st2{fill:#103856;}
|
9 |
+
.st3{fill:#991032;}
|
10 |
+
.st4{fill:#F48900;}
|
11 |
+
.st5{opacity:0.5;fill:#6A6A69;enable-background:new ;}
|
12 |
+
.st6{fill:#FFFFFF;}
|
13 |
+
.st7{fill:#EDEDED;}
|
14 |
+
.st8{fill:#158181;}
|
15 |
+
.st9{fill:#157070;}
|
16 |
+
.st10{fill:none;}
|
17 |
+
.st11{fill:#112730;}
|
18 |
+
.st12{fill:#1BB290;}
|
19 |
+
.st13{fill:#3C5A98;}
|
20 |
+
</style>
|
21 |
+
<path id="XMLID_14_" class="st0" d="M-89.2,15.2c-0.4,0-0.8,0-1.2,0c0-4.8,0-9.6,0-14.4c0.4,0,0.8,0,1.2,0
|
22 |
+
C-89.2,5.6-89.2,10.4-89.2,15.2z"/>
|
23 |
+
<rect id="XMLID_13_" x="-88.8" y="0.8" class="st1" width="10.5" height="14.4"/>
|
24 |
+
<rect id="XMLID_12_" x="-87.4" y="3.7" class="st0" width="2.5" height="2.1"/>
|
25 |
+
<rect id="XMLID_11_" x="-87.4" y="7.1" class="st0" width="2.5" height="2.1"/>
|
26 |
+
<rect id="XMLID_10_" x="-87.4" y="10.4" class="st0" width="2.5" height="2.1"/>
|
27 |
+
<path id="XMLID_9_" class="st0" d="M-81.7,4h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2l0,0
|
28 |
+
C-81.6,4-81.6,4-81.7,4z"/>
|
29 |
+
<path id="XMLID_8_" class="st0" d="M-79.8,4.9h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
30 |
+
l0,0C-79.6,4.8-79.7,4.9-79.8,4.9z"/>
|
31 |
+
<path id="XMLID_7_" class="st0" d="M-79.8,5.8h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
32 |
+
l0,0C-79.6,5.7-79.7,5.8-79.8,5.8z"/>
|
33 |
+
<path id="XMLID_6_" class="st0" d="M-81.7,7.5h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
34 |
+
l0,0C-81.6,7.4-81.6,7.5-81.7,7.5z"/>
|
35 |
+
<path id="XMLID_5_" class="st0" d="M-79.8,8.3h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
36 |
+
l0,0C-79.6,8.3-79.7,8.3-79.8,8.3z"/>
|
37 |
+
<path id="XMLID_4_" class="st0" d="M-79.8,9.2h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
38 |
+
l0,0C-79.6,9.1-79.7,9.2-79.8,9.2z"/>
|
39 |
+
<path id="XMLID_3_" class="st0" d="M-81.7,10.8h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
40 |
+
l0,0C-81.6,10.7-81.6,10.8-81.7,10.8z"/>
|
41 |
+
<path id="XMLID_2_" class="st0" d="M-79.8,11.6h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
42 |
+
l0,0C-79.6,11.5-79.7,11.6-79.8,11.6z"/>
|
43 |
+
<path id="XMLID_1_" class="st0" d="M-79.8,12.5h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
44 |
+
l0,0C-79.6,12.4-79.7,12.5-79.8,12.5z"/>
|
45 |
+
<g>
|
46 |
+
<path id="XMLID_28_" class="st2" d="M-89.2-2.7c-0.4,0-0.8,0-1.2,0c0-4.8,0-9.6,0-14.4c0.4,0,0.8,0,1.2,0
|
47 |
+
C-89.2-12.3-89.2-7.5-89.2-2.7z"/>
|
48 |
+
<g>
|
49 |
+
<rect id="XMLID_27_" x="-88.8" y="-17.1" class="st1" width="10.5" height="14.4"/>
|
50 |
+
<rect id="XMLID_26_" x="-87.4" y="-14.2" class="st2" width="2.5" height="2.1"/>
|
51 |
+
<rect id="XMLID_25_" x="-87.4" y="-10.8" class="st3" width="2.5" height="2.1"/>
|
52 |
+
<rect id="XMLID_24_" x="-87.4" y="-7.5" class="st4" width="2.5" height="2.1"/>
|
53 |
+
<path id="XMLID_23_" class="st5" d="M-81.7-13.9h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2
|
54 |
+
c0.1,0,0.2,0.1,0.2,0.2l0,0C-81.6-14-81.6-13.9-81.7-13.9z"/>
|
55 |
+
<path id="XMLID_22_" class="st5" d="M-79.8-13h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
56 |
+
l0,0C-79.6-13.1-79.7-13-79.8-13z"/>
|
57 |
+
<path id="XMLID_21_" class="st5" d="M-79.8-12.2h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1
|
58 |
+
c0.1,0,0.2,0.1,0.2,0.2l0,0C-79.6-12.2-79.7-12.2-79.8-12.2z"/>
|
59 |
+
<path id="XMLID_20_" class="st5" d="M-81.7-10.5h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2
|
60 |
+
c0.1,0,0.2,0.1,0.2,0.2l0,0C-81.6-10.5-81.6-10.5-81.7-10.5z"/>
|
61 |
+
<path id="XMLID_19_" class="st5" d="M-79.8-9.6h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
62 |
+
l0,0C-79.6-9.7-79.7-9.6-79.8-9.6z"/>
|
63 |
+
<path id="XMLID_18_" class="st5" d="M-79.8-8.7h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
64 |
+
l0,0C-79.6-8.8-79.7-8.7-79.8-8.7z"/>
|
65 |
+
<path id="XMLID_17_" class="st5" d="M-81.7-7.2h-2.2c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h2.2c0.1,0,0.2,0.1,0.2,0.2
|
66 |
+
l0,0C-81.6-7.3-81.6-7.2-81.7-7.2z"/>
|
67 |
+
<path id="XMLID_16_" class="st5" d="M-79.8-6.3h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
68 |
+
l0,0C-79.6-6.4-79.7-6.3-79.8-6.3z"/>
|
69 |
+
<path id="XMLID_15_" class="st5" d="M-79.8-5.5h-4.1c-0.1,0-0.2-0.1-0.2-0.2l0,0c0-0.1,0.1-0.2,0.2-0.2h4.1c0.1,0,0.2,0.1,0.2,0.2
|
70 |
+
l0,0C-79.6-5.5-79.7-5.5-79.8-5.5z"/>
|
71 |
+
</g>
|
72 |
+
</g>
|
73 |
+
<g id="XMLID_33_">
|
74 |
+
<g id="XMLID_34_">
|
75 |
+
<g>
|
76 |
+
<rect id="XMLID_35_" x="-65.1" y="0.8" class="st6" width="12.2" height="14.4"/>
|
77 |
+
</g>
|
78 |
+
</g>
|
79 |
+
</g>
|
80 |
+
<path id="XMLID_31_" class="st0" d="M-66.4,0.8c-0.4,0-0.6,0.4-0.6,0.8v12.6c0,0.5,0.2,0.9,0.6,0.9h0.9V0.8H-66.4z"/>
|
81 |
+
<rect id="XMLID_30_" x="-65.1" y="0.8" class="st7" width="12.2" height="14.4"/>
|
82 |
+
<path id="XMLID_29_" class="st0" d="M-54.2,12.4c-3.3,0-6.6,0-9.9,0c0-0.3,0.2-0.4,0.3-0.6c0.1,0,0.1-0.1,0.2-0.1
|
83 |
+
c0.4-0.2,0.8-0.4,1.2-0.6c0.5-0.2,1-0.4,1.5-0.6c0-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.3,0.1-0.3c0.1,0,0.1,0,0.2,0c0-0.2,0-0.4,0.1-0.6
|
84 |
+
c0-0.1,0-0.2,0-0.2l-0.1-0.1l-0.1-0.1l0,0c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1-0.1-0.2-0.1-0.3
|
85 |
+
c0-0.1-0.1-0.2-0.1-0.2c-0.1-0.2-0.1-0.4-0.1-0.7c0-0.1,0-0.2,0.1-0.2h0.1c0-0.4,0-0.9,0-1.3c0-0.1,0-0.3,0-0.4s0.1-0.3,0.2-0.4
|
86 |
+
c0.1-0.1,0.2-0.2,0.3-0.3l0.1-0.1c0.1-0.1,0.2-0.2,0.3-0.2c0.1-0.1,0.2-0.1,0.4-0.1C-59.4,4-59.2,4-59,3.9c0.1,0,0.3-0.1,0.4-0.1
|
87 |
+
c0.1,0,0.3-0.1,0.5,0c0,0.1-0.1,0.1-0.1,0.1s-0.1,0.1-0.1,0.2s0.1,0.1,0.1,0.1l0.1,0.1l0,0c0.2,0.1,0.4,0.3,0.5,0.5
|
88 |
+
c0.1,0.1,0.2,0.2,0.2,0.3c0,0.1,0,0.3,0,0.4c0,0.4,0,0.9,0,1.3c0.2,0,0.1,0.1,0.1,0.3c0,0.3,0,0.5-0.1,0.7c0,0.1-0.1,0.1-0.1,0.2
|
89 |
+
c0,0.1,0,0.1,0,0.2c-0.1,0.3-0.1,0.5-0.3,0.7L-57.9,9c0,0.1,0,0.3,0,0.4c0,0.2,0,0.3,0,0.4h0.1c0.2,0,0.1,0.2,0.2,0.4
|
90 |
+
c0,0.1,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.2c0.8,0.3,1.7,0.7,2.5,1.1c0.1,0.1,0.2,0.1,0.3,0.2l0,0C-54.4,11.9-54.3,12.1-54.2,12.4
|
91 |
+
L-54.2,12.4z"/>
|
92 |
+
<g>
|
93 |
+
<g id="XMLID_40_">
|
94 |
+
<g id="XMLID_41_">
|
95 |
+
<g>
|
96 |
+
<rect id="XMLID_42_" x="-65.1" y="-17.1" class="st6" width="12.2" height="14.4"/>
|
97 |
+
</g>
|
98 |
+
</g>
|
99 |
+
</g>
|
100 |
+
<path id="XMLID_38_" class="st8" d="M-66.4-17.1c-0.4,0-0.6,0.4-0.6,0.8v12.6c0,0.5,0.2,0.9,0.6,0.9h0.9v-14.3H-66.4z"/>
|
101 |
+
<rect id="XMLID_37_" x="-65.1" y="-17.1" class="st7" width="12.2" height="14.4"/>
|
102 |
+
<path id="XMLID_36_" class="st8" d="M-54.2-5.5c-3.3,0-6.6,0-9.9,0c0-0.3,0.2-0.4,0.3-0.6c0.1,0,0.1-0.1,0.2-0.1
|
103 |
+
c0.4-0.2,0.8-0.4,1.2-0.6c0.5-0.2,1-0.4,1.5-0.6c0-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.3,0.1-0.3c0.1,0,0.1,0,0.2,0c0-0.2,0-0.4,0.1-0.6
|
104 |
+
c0-0.1,0-0.2,0-0.2L-60.5-9l-0.1-0.1l0,0c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1-0.1-0.2-0.1-0.3
|
105 |
+
c0-0.1-0.1-0.2-0.1-0.2c-0.1-0.2-0.1-0.4-0.1-0.7c0-0.1,0-0.2,0.1-0.2h0.1c0-0.4,0-0.9,0-1.3c0-0.1,0-0.3,0-0.4
|
106 |
+
c0-0.1,0.1-0.3,0.2-0.4c0.1-0.1,0.2-0.2,0.3-0.3l0.1-0.1c0.1-0.1,0.2-0.2,0.3-0.2c0.1-0.1,0.2-0.1,0.4-0.1c0.2-0.1,0.4-0.1,0.6-0.2
|
107 |
+
c0.1,0,0.3-0.1,0.4-0.1c0.1,0,0.3-0.1,0.5,0c0,0.1-0.1,0.1-0.1,0.1s-0.1,0.1-0.1,0.2c0,0.1,0.1,0.1,0.1,0.1l0.1,0.1l0,0
|
108 |
+
c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.1,0.2,0.2,0.2,0.3c0,0.1,0,0.3,0,0.4c0,0.4,0,0.9,0,1.3c0.2,0,0.1,0.1,0.1,0.3c0,0.3,0,0.5-0.1,0.7
|
109 |
+
c0,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0,0.2c-0.1,0.3-0.1,0.5-0.3,0.7l-0.1,0.1c0,0.1,0,0.3,0,0.4c0,0.2,0,0.3,0,0.4h0.1
|
110 |
+
c0.2,0,0.1,0.2,0.2,0.4c0,0.1,0.1,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.8,0.3,1.7,0.7,2.5,1.1c0.1,0.1,0.2,0.1,0.3,0.2l0,0
|
111 |
+
C-54.4-6-54.3-5.8-54.2-5.5L-54.2-5.5z"/>
|
112 |
+
</g>
|
113 |
+
<path id="XMLID_32_" class="st9" d="M-30.3-9.3l-10,6.4c-0.5,0.3-1.2,0-1.2-0.6v-12.8c0-0.6,0.7-1,1.2-0.6l10,6.4
|
114 |
+
C-29.8-10.2-29.8-9.6-30.3-9.3z"/>
|
115 |
+
<path class="st7" d="M-5.9,13c0,0.7-0.6,1.3-1.3,1.3h-11.7c-0.7,0-1.3-0.6-1.3-1.3V1.4c0-0.7,0.6-1.3,1.3-1.3h11.7
|
116 |
+
c0.7,0,1.3,0.6,1.3,1.3V13z"/>
|
117 |
+
<path class="st0" d="M-15.9,7.6c0,0.1,0.1,0.3,0.2,0.4l0.3,0.5c0,0,0,0,0,0.1c0.3,0.4,0.7,0.6,1.2,0.8c0.2,0.1,0.5,0.1,0.7,0.2
|
118 |
+
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l0.4,0l0.8,0l0.5,0L-8,7.7c0.3-0.2,0.5-0.6,0.3-1l-1.8-3.4c-0.2-0.3-0.6-0.5-1-0.3l-1.3,0.7
|
119 |
+
l-0.1-0.2c-0.1-0.2-0.4-0.3-0.7-0.2l-2,1.1c-0.2,0.1-0.3,0.4-0.2,0.7l0.1,0.2L-16,6.1V7C-16,7-16,7.4-15.9,7.6z"/>
|
120 |
+
<g>
|
121 |
+
<path class="st7" d="M-10.1,7c0-0.5-0.2-1-0.5-1.3l-0.6,1.9L-10.1,7z"/>
|
122 |
+
<path class="st7" d="M-10.7,8.4l-1.9-0.6l0.6,1.1C-11.5,8.9-11,8.7-10.7,8.4z"/>
|
123 |
+
</g>
|
124 |
+
<g>
|
125 |
+
<path class="st7" d="M-10.7,8.4c0.4-0.3,0.6-0.8,0.6-1.4l-1.8,1L-10.7,8.4z"/>
|
126 |
+
<path class="st7" d="M-11.9,5l1,1.8l0.4-1.2C-10.9,5.3-11.4,5.1-11.9,5z"/>
|
127 |
+
</g>
|
128 |
+
<path class="st7" d="M-13.2,5.5l1.9,0.6l-0.6-1.1C-12.4,5-12.9,5.2-13.2,5.5L-13.2,5.5z"/>
|
129 |
+
<path class="st7" d="M-13.9,6.9l1.8-1l-1.2-0.4C-13.6,5.9-13.8,6.4-13.9,6.9L-13.9,6.9z"/>
|
130 |
+
<path class="st7" d="M-13.9,6.9c0,0.5,0.2,1,0.5,1.3l0.6-1.9L-13.9,6.9z"/>
|
131 |
+
<path class="st7" d="M-12,8.8L-13,7l-0.4,1.2C-13,8.6-12.5,8.8-12,8.8L-12,8.8z"/>
|
132 |
+
<g>
|
133 |
+
<path class="st0" d="M-11,8.6c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1l0,0
|
134 |
+
c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
135 |
+
l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0l0,0
|
136 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0
|
137 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0l0,0c-0.1,0-0.1-0.1-0.2-0.1
|
138 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
139 |
+
l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0-0.1-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
140 |
+
c0,0,0-0.1-0.1-0.1c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1-0.1-0.2-0.1-0.2l0,0c0,0,0-0.1,0-0.1
|
141 |
+
c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
142 |
+
c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0-0.1
|
143 |
+
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0
|
144 |
+
c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0c0.1-0.1,0.2-0.3,0.3-0.4l0,0c0,0,0,0,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0
|
145 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.2,0.8-0.2l0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0l0,0l0,0
|
146 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0
|
147 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0,0
|
148 |
+
c0.2,0.1,0.3,0.2,0.5,0.3c0,0,0,0,0,0c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0
|
149 |
+
l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
150 |
+
c0,0,0,0.1,0.1,0.1c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0.1,0.1,0.2,0.1,0.2l0,0c0,0,0,0.1,0,0.1
|
151 |
+
l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0
|
152 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0
|
153 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0c-0.1,0.2-0.2,0.3-0.3,0.5
|
154 |
+
l0,0c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0.1
|
155 |
+
l0,0c0,0,0,0-0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0C-10.9,8.6-10.9,8.6-11,8.6C-11,8.6-11,8.6-11,8.6z M-12,8.8
|
156 |
+
L-12,8.8c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0
|
157 |
+
c0,0,0,0,0.1,0l0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.1-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0l0,0
|
158 |
+
c0,0,0,0,0,0l0,0l0.1-0.1l-1.8-0.5L-12,8.8z M-10.7,8.3L-10.7,8.3C-10.6,8.3-10.6,8.3-10.7,8.3C-10.6,8.3-10.6,8.3-10.7,8.3
|
159 |
+
C-10.6,8.3-10.6,8.3-10.7,8.3L-10.7,8.3c0.1-0.1,0.1-0.2,0.2-0.2c0,0,0,0,0-0.1c0,0,0-0.1,0.1-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1l0,0
|
160 |
+
l0,0c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2
|
161 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0-0.1l-1.8,1L-10.7,8.3z M-13.3,8.2L-13.3,8.2C-13.3,8.3-13.3,8.3-13.3,8.2
|
162 |
+
C-13.3,8.3-13.3,8.3-13.3,8.2C-13.3,8.3-13.3,8.3-13.3,8.2L-13.3,8.2c0.1,0.1,0.2,0.1,0.2,0.2c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1
|
163 |
+
c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0l0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0
|
164 |
+
c0,0,0,0,0,0c0.1,0,0.2,0.1,0.3,0.1l0.1,0L-13,7.1L-13.3,8.2z M-11.1,7.5l1-0.6l0,0c0,0,0-0.1,0-0.2c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2
|
165 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0-0.1,0-0.1-0.1-0.2
|
166 |
+
c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0l-0.1-0.1L-11.1,7.5z M-13,7l0.4,0.8l0.7,0.2l0.7-0.4l0.2-0.7l-0.4-0.7
|
167 |
+
L-12,5.9l-0.8,0.4L-13,7z M-13.8,7c0,0,0,0.1,0,0.2c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0
|
168 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0.1,0,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0
|
169 |
+
c0,0,0,0,0,0l0.1,0.1l0.5-1.8L-13.8,7L-13.8,7z M-10.9,6.8l0.3-1.2l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1-0.1
|
170 |
+
c0,0,0,0-0.1,0c0,0-0.1,0-0.1-0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0l0,0l0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
171 |
+
c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0l-0.1,0L-10.9,6.8z
|
172 |
+
M-13.1,5.4C-13.1,5.4-13.1,5.4-13.1,5.4L-13.1,5.4l-0.1,0.1l1.8,0.6l-0.6-1l0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c0,0,0,0,0,0l0,0
|
173 |
+
c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0
|
174 |
+
c0,0,0,0-0.1,0l0,0C-12.9,5.3-13,5.4-13.1,5.4L-13.1,5.4L-13.1,5.4z M-13.3,5.6C-13.3,5.6-13.3,5.6-13.3,5.6
|
175 |
+
C-13.3,5.6-13.3,5.6-13.3,5.6C-13.3,5.6-13.3,5.6-13.3,5.6c-0.1,0.1-0.1,0.1-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0-0.1,0.1c0,0,0,0,0,0.1
|
176 |
+
c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
177 |
+
c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0.1l1.8-1L-13.3,5.6L-13.3,5.6z"/>
|
178 |
+
</g>
|
179 |
+
<circle class="st7" cx="-10.4" cy="4.1" r="0.4"/>
|
180 |
+
<g>
|
181 |
+
<path class="st7" d="M-10.9,8.8C-12,9.4-13.3,9-13.8,8c-0.6-1-0.2-2.3,0.9-2.9s2.3-0.2,2.9,0.9S-9.9,8.3-10.9,8.8z M-12.9,5.2
|
182 |
+
c-1,0.5-1.3,1.7-0.8,2.7S-12,9.2-11,8.7C-10,8.2-9.7,7-10.2,6C-10.7,5-11.9,4.7-12.9,5.2z"/>
|
183 |
+
</g>
|
184 |
+
<path class="st10" d="M-15.9,8.2c0.1,0.2,0.2,0.4,0.3,0.6L-16,8C-16,8.1-16,8.1-15.9,8.2z"/>
|
185 |
+
<path class="st0" d="M-7.9,7.9C-8,7.9-8,8.4-8.1,8.7c-0.1,0.2-0.3,0.4-0.4,0.6c-0.4,0.3-0.8,0.5-1.3,0.6c-0.1,0-0.1,0-0.2,0l-0.2,0
|
186 |
+
l-0.4,0l-0.8,0l-0.3,0l-0.5,0l-0.8,0l-0.4,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.5-0.1-0.7-0.2
|
187 |
+
c-0.4-0.2-0.8-0.4-1.2-0.8c0,0,0,0,0-0.1c-0.1-0.2-0.2-0.4-0.3-0.6c0,0,0-0.1,0-0.1c-0.1-0.3-0.2-0.8-0.2-0.9V6.2V5.7
|
188 |
+
c0-0.7-0.6-1.4-1.3-1.4c-0.4,0-0.8,0-1,0.5c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.1,0.3,0.1,0.5,0c0.1-0.1,0.3-0.2,0.5-0.2
|
189 |
+
c0.4,0,0.7,0.3,0.7,0.7v1.4c0,0.1-0.1,1.1,0.7,2.2c0.4,0.4,0.9,0.7,1.3,0.9c0.5,0.2,0.9,0.2,1,0.2c0.1,0,0.1,0,0.2,0
|
190 |
+
c0.1,0,0.1,0,0.2,0l0.4,0l0.1,0l0.7,0l0.8,0l0.8,0l0.4,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.6-0.1,1.1-0.4,1.5-0.8
|
191 |
+
C-8,9-7.6,7.9-7.9,7.9z"/>
|
192 |
+
<path class="st0" d="M-14.7,11.1c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
193 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.1-0.5,0C-14.5,11.3-14.6,11.2-14.7,11.1z"/>
|
194 |
+
<path class="st0" d="M-11,10.9c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
195 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.1-0.5,0C-10.8,11.1-10.9,11-11,10.9z"/>
|
196 |
+
<g>
|
197 |
+
<path class="st11" d="M-5.9-4c0,0.7-0.6,1.3-1.3,1.3h-11.7c-0.7,0-1.3-0.6-1.3-1.3v-11.7c0-0.7,0.6-1.3,1.3-1.3h11.7
|
198 |
+
c0.7,0,1.3,0.6,1.3,1.3V-4z"/>
|
199 |
+
<g>
|
200 |
+
<g>
|
201 |
+
<path class="st12" d="M-15.9-9.4c0,0.1,0.1,0.3,0.2,0.4l0.3,0.5c0,0,0,0,0,0.1c0.3,0.4,0.7,0.6,1.2,0.8c0.2,0.1,0.5,0.1,0.7,0.2
|
202 |
+
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l0.4,0l0.8,0l0.5,0L-8-9.4c0.3-0.2,0.5-0.6,0.3-1l-1.8-3.4c-0.2-0.3-0.6-0.5-1-0.3l-1.3,0.7
|
203 |
+
l-0.1-0.2c-0.1-0.2-0.4-0.3-0.7-0.2l-2,1.1c-0.2,0.1-0.3,0.4-0.2,0.7l0.1,0.2L-16-11v0.9C-16-10-16-9.7-15.9-9.4z"/>
|
204 |
+
<g>
|
205 |
+
<g>
|
206 |
+
<g>
|
207 |
+
<path class="st11" d="M-10.1-10.1c0-0.5-0.2-1-0.5-1.3l-0.6,1.9L-10.1-10.1z"/>
|
208 |
+
<path class="st11" d="M-10.7-8.7l-1.9-0.6l0.6,1.1C-11.5-8.2-11-8.4-10.7-8.7z"/>
|
209 |
+
</g>
|
210 |
+
</g>
|
211 |
+
<g>
|
212 |
+
<g>
|
213 |
+
<path class="st11" d="M-10.7-8.7c0.4-0.3,0.6-0.8,0.6-1.4l-1.8,1L-10.7-8.7z"/>
|
214 |
+
<path class="st11" d="M-11.9-12l1,1.8l0.4-1.2C-10.9-11.8-11.4-12-11.9-12z"/>
|
215 |
+
</g>
|
216 |
+
</g>
|
217 |
+
<path class="st11" d="M-13.2-11.5l1.9,0.6l-0.6-1.1C-12.4-12-12.9-11.9-13.2-11.5L-13.2-11.5z"/>
|
218 |
+
<path class="st11" d="M-13.9-10.2l1.9-1l-1.2-0.4C-13.6-11.2-13.9-10.7-13.9-10.2L-13.9-10.2z"/>
|
219 |
+
<path class="st11" d="M-13.9-10.2c0,0.5,0.2,1,0.5,1.3l0.6-1.9L-13.9-10.2z"/>
|
220 |
+
<path class="st11" d="M-12-8.2l-1-1.8l-0.4,1.2C-13-8.4-12.5-8.2-12-8.2L-12-8.2z"/>
|
221 |
+
<g>
|
222 |
+
<path class="st12" d="M-11-8.4c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1l0,0
|
223 |
+
c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
224 |
+
l0,0l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0l0,0
|
225 |
+
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0
|
226 |
+
c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0
|
227 |
+
l0,0c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
228 |
+
l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0-0.1-0.1l0,0c0,0,0,0,0,0
|
229 |
+
c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0
|
230 |
+
c0-0.1-0.1-0.2-0.1-0.2l0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
231 |
+
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1
|
232 |
+
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0
|
233 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0c0.1-0.1,0.2-0.3,0.3-0.4l0,0
|
234 |
+
c0,0,0,0,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0
|
235 |
+
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.2,0.8-0.2l0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
236 |
+
c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
237 |
+
c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0,0c0.2,0.1,0.3,0.2,0.5,0.3c0,0,0,0,0,0
|
238 |
+
c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0
|
239 |
+
c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1
|
240 |
+
c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0.1,0.1,0.2,0.1,0.2l0,0c0,0,0,0.1,0,0.1l0,0
|
241 |
+
c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0
|
242 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0
|
243 |
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0
|
244 |
+
c-0.1,0.2-0.2,0.3-0.3,0.5l0,0c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0l0,0
|
245 |
+
c0,0,0,0,0,0c0,0,0,0-0.1,0.1l0,0c0,0,0,0-0.1,0.1l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0C-10.9-8.5-10.9-8.5-11-8.4
|
246 |
+
C-11-8.4-11-8.4-11-8.4z M-12-8.2L-12-8.2c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0
|
247 |
+
c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0l0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.1-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
248 |
+
c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0l0.1-0.1l-1.8-0.5L-12-8.2z M-10.7-8.7L-10.7-8.7
|
249 |
+
C-10.6-8.8-10.6-8.8-10.7-8.7C-10.6-8.8-10.6-8.8-10.7-8.7C-10.6-8.8-10.6-8.8-10.7-8.7L-10.7-8.7c0.1-0.1,0.1-0.2,0.2-0.2
|
250 |
+
c0,0,0,0,0-0.1c0,0,0-0.1,0.1-0.1c0,0,0,0,0-0.1c0,0,0,0,0-0.1l0,0l0,0c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
251 |
+
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0-0.1l-1.8,1L-10.7-8.7z
|
252 |
+
M-13.3-8.8L-13.3-8.8C-13.3-8.8-13.3-8.8-13.3-8.8C-13.3-8.8-13.3-8.8-13.3-8.8C-13.3-8.8-13.3-8.8-13.3-8.8L-13.3-8.8
|
253 |
+
c0.1,0.1,0.2,0.1,0.2,0.2c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
254 |
+
c0,0,0.1,0,0.1,0l0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0.1,0.3,0.1l0.1,0L-13-10L-13.3-8.8z
|
255 |
+
M-11.1-9.5l1-0.6l0,0c0,0,0-0.1,0-0.2c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1l0,0
|
256 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0l0,0c0-0.1,0-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l0,0
|
257 |
+
c0,0,0,0,0,0l0,0l-0.1-0.1L-11.1-9.5z M-13-10l0.4,0.8l0.7,0.2l0.7-0.4l0.2-0.7l-0.4-0.7l-0.7-0.2l-0.8,0.4L-13-10z
|
258 |
+
M-13.8-10.1c0,0,0,0.1,0,0.2c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0
|
259 |
+
c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0.1,0,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0
|
260 |
+
c0,0,0,0,0,0l0.1,0.1l0.5-1.8L-13.8-10.1L-13.8-10.1z M-10.9-10.2l0.3-1.2l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
261 |
+
c0,0-0.1,0-0.1-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1-0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0l0,0l0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0
|
262 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0
|
263 |
+
c0,0-0.1,0-0.1,0l-0.1,0L-10.9-10.2z M-13.1-11.6C-13.1-11.6-13.1-11.6-13.1-11.6L-13.1-11.6l-0.1,0.1l1.8,0.6l-0.6-1l0,0
|
264 |
+
c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0
|
265 |
+
c0,0,0,0-0.1,0l0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0C-12.9-11.7-13-11.7-13.1-11.6L-13.1-11.6
|
266 |
+
L-13.1-11.6z M-13.3-11.5C-13.3-11.5-13.3-11.5-13.3-11.5C-13.3-11.5-13.3-11.5-13.3-11.5C-13.3-11.4-13.3-11.4-13.3-11.5
|
267 |
+
c-0.1,0.1-0.1,0.1-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0.1l0,0
|
268 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1l0,0.1l1.8-1
|
269 |
+
L-13.3-11.5L-13.3-11.5z"/>
|
270 |
+
</g>
|
271 |
+
</g>
|
272 |
+
<circle class="st11" cx="-10.4" cy="-13" r="0.4"/>
|
273 |
+
<g>
|
274 |
+
<path class="st11" d="M-10.9-8.2c-1,0.6-2.3,0.2-2.9-0.9c-0.6-1-0.2-2.3,0.9-2.9s2.3-0.2,2.9,0.9S-9.9-8.8-10.9-8.2z
|
275 |
+
M-12.9-11.9c-1,0.5-1.3,1.7-0.8,2.7S-12-7.8-11-8.3s1.3-1.7,0.8-2.7C-10.7-12-11.9-12.4-12.9-11.9z"/>
|
276 |
+
</g>
|
277 |
+
</g>
|
278 |
+
<path class="st10" d="M-15.9-8.9c0.1,0.2,0.2,0.4,0.3,0.6L-16-9C-16-9-16-8.9-15.9-8.9z"/>
|
279 |
+
<path class="st12" d="M-15.9-8.9c0,0,0-0.1,0-0.1l-0.5-0.9c-0.2-0.3-0.1-0.8,0.3-1l0,0v-0.5c0-0.7-0.6-1.4-1.3-1.4
|
280 |
+
c-0.4,0-0.8,0-1,0.5c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.1,0.3,0.1,0.5,0c0.1-0.1,0.3-0.2,0.5-0.2c0.4,0,0.7,0.3,0.7,0.7v1.4
|
281 |
+
c0,0.1-0.1,1.1,0.7,2.2c0.4,0.4,0.9,0.7,1.3,0.9l-0.8-1.4C-15.8-8.5-15.8-8.7-15.9-8.9z"/>
|
282 |
+
<path class="st12" d="M-7.9-9.1C-8-9.1-8-8.6-8.1-8.4C-8.2-8.2-8.4-8-8.5-7.8c-0.4,0.3-0.8,0.5-1.3,0.6c-0.1,0-0.1,0-0.2,0l-0.2,0
|
283 |
+
l-0.4,0l-0.8,0l-0.3,0l-1.2,0.6l0.7,0l0.8,0l0.8,0l0.4,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.6-0.1,1.1-0.4,1.5-0.8
|
284 |
+
C-8-8-7.6-9.2-7.9-9.1z"/>
|
285 |
+
<path class="st12" d="M-12.2-7.3l-0.8,0l-0.4,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.5-0.1-0.7-0.2
|
286 |
+
c-0.4-0.2-0.8-0.4-1.2-0.8c0,0,0,0,0-0.1l0.8,1.4c0.5,0.2,0.9,0.2,1,0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l0.4,0l0.1,0l1.2-0.6
|
287 |
+
L-12.2-7.3z"/>
|
288 |
+
<path class="st12" d="M-16.5-9.9L-16-9c-0.1-0.3-0.2-0.8-0.2-0.9v-0.9l0,0C-16.5-10.7-16.6-10.2-16.5-9.9z"/>
|
289 |
+
<path class="st12" d="M-14.7-6c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
290 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.1-0.5,0C-14.5-5.7-14.6-5.8-14.7-6z"/>
|
291 |
+
<path class="st12" d="M-11-6.2c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.2
|
292 |
+
c0-0.1,0.2-0.1,0.2,0c0,0.1,0,0.2,0,0.3C-9.8-6.2-9.9-6-10.1-5.9c-0.2,0.1-0.4,0.1-0.5,0C-10.8-5.9-10.9-6.1-11-6.2z"/>
|
293 |
+
</g>
|
294 |
+
</g>
|
295 |
+
<g>
|
296 |
+
<path id="XMLID_1084_" class="st0" d="M2.2,12.2V9.4c0,0,0-0.2-0.1-0.3C2,9,1.8,9,1.8,9h-1c0,0-0.4-0.1-0.6-0.3C0,8.4,0,8.1,0,8.1
|
297 |
+
V6.4c0,0,0-0.5,0.3-0.7c0.3-0.2,0.6-0.3,0.6-0.3h0.8c0,0,0.1,0,0.3-0.1C2.2,5.2,2.2,5,2.2,5V2.6c0,0,0.1-1.1,0.9-1.8
|
298 |
+
s1.6-0.8,1.6-0.8h2.9c0,0,0.5,0.1,0.7,0.4C8.5,0.7,8.5,1,8.5,1l0,1.6c0,0,0.1,0.4-0.3,0.7C7.9,3.6,7.6,3.6,7.6,3.6l-1.4,0
|
299 |
+
c0,0-0.2,0-0.3,0.1C5.8,3.8,5.8,3.9,5.8,3.9l0,1.1c0,0,0,0.2,0.2,0.3c0.1,0.1,0.3,0.1,0.3,0.1h1.4c0,0,0.5,0,0.6,0.4
|
300 |
+
c0.2,0.3,0.2,0.4,0.1,0.7C8.4,6.8,8.2,8,8.2,8S8.1,8.4,7.8,8.7C7.6,9,7.2,9,7.2,9H6.1c0,0-0.1,0-0.2,0.1C5.8,9.2,5.8,9.3,5.8,9.3
|
301 |
+
s0,4.3,0,4.2s0,0.2-0.3,0.5c-0.3,0.3-0.5,0.3-0.5,0.3H3.4c0,0-0.4,0-0.4-0.5c0-0.5,0.4-0.5,0.4-0.5l1.1,0c0,0,0.2,0,0.2-0.1
|
302 |
+
C4.8,13.1,4.8,13,4.8,13l0-3.9c0,0,0-0.4,0.3-0.7C5.5,8,5.8,8,5.8,8h1.1c0,0,0.2,0,0.3-0.3c0.2-0.5,0.3-1,0.3-1s0.1-0.2,0-0.4
|
303 |
+
C7.4,6.3,7.2,6.4,7.2,6.4l-1.4,0c0,0-0.5,0-0.8-0.4C4.8,5.6,4.8,5.3,4.8,5.3V3.8c0,0,0-0.4,0.4-0.8c0.3-0.3,0.6-0.3,0.6-0.3h1.5
|
304 |
+
c0,0,0.1,0,0.2-0.1c0.1-0.1,0.1-0.2,0.1-0.2V1.3c0,0,0-0.2-0.1-0.2C7.3,1,7.1,1,7.1,1H5c0,0-0.7,0.1-1.3,0.7
|
305 |
+
C3.2,2.1,3.1,2.8,3.1,2.8v2.5c0,0,0,0.5-0.4,0.8C2.4,6.4,2.1,6.4,2.1,6.4l-0.9,0c0,0-0.2,0-0.3,0.1C0.9,6.6,0.9,6.7,0.9,6.7v1
|
306 |
+
c0,0,0,0.2,0.1,0.3c0.2,0.1,0.3,0.1,0.3,0.1l0.8,0c0,0,0.4,0,0.7,0.3C3.2,8.8,3.1,9,3.1,9l0,3.1c0,0,0,0.4-0.5,0.4
|
307 |
+
S2.2,12.2,2.2,12.2z"/>
|
308 |
+
<g id="XMLID_1074_">
|
309 |
+
<path id="XMLID_1081_" class="st0" d="M11.2,7.4H9.7c0,0.2,0,0.3,0.1,0.5C9.9,8,10,8.1,10.1,8.1c0.1,0.1,0.2,0.1,0.4,0.1
|
310 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1C11,8.1,11.1,8,11.1,8c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1
|
311 |
+
c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.4,0.2c-0.2,0.1-0.4,0.1-0.6,0.1
|
312 |
+
c-0.5,0-0.9-0.1-1.2-0.4C9.1,8,8.9,7.7,8.9,7.2C8.9,7,9,6.7,9,6.6s0.2-0.4,0.3-0.5c0.1-0.1,0.3-0.2,0.5-0.3
|
313 |
+
c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6c0,0.2-0.1,0.3-0.2,0.4
|
314 |
+
C11.6,7.3,11.4,7.4,11.2,7.4z M9.7,6.9h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.3,0.1-0.5,0.2
|
315 |
+
C9.8,6.5,9.7,6.7,9.7,6.9z"/>
|
316 |
+
<path id="XMLID_1078_" class="st0" d="M14.5,7.4H13c0,0.2,0,0.3,0.1,0.5c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.1
|
317 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1
|
318 |
+
c0.1,0,0.1,0,0.2,0.1c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.4,0.2
|
319 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.7-0.4-1.1c0-0.2,0-0.4,0.1-0.6s0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3
|
320 |
+
c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6c0,0.2-0.1,0.3-0.2,0.4
|
321 |
+
C14.9,7.3,14.7,7.4,14.5,7.4z M13,6.9h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.3,0.1-0.5,0.2
|
322 |
+
C13.1,6.5,13,6.7,13,6.9z"/>
|
323 |
+
<path id="XMLID_1075_" class="st0" d="M17.8,8.3L17.8,8.3c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2
|
324 |
+
c-0.1,0-0.2,0.1-0.4,0.1c-0.2,0-0.4,0-0.5-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.3-0.3-0.5c-0.1-0.2-0.1-0.4-0.1-0.6
|
325 |
+
c0-0.5,0.1-0.9,0.4-1.1c0.2-0.3,0.5-0.4,0.9-0.4c0.2,0,0.4,0,0.6,0.1c0.2,0.1,0.3,0.2,0.4,0.4V5c0-0.2,0-0.3,0.1-0.4
|
326 |
+
c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v3.4c0,0.1,0,0.3-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1
|
327 |
+
c-0.1,0-0.2,0-0.3-0.1C17.8,8.6,17.8,8.5,17.8,8.3z M16.3,7.2c0,0.2,0,0.4,0.1,0.5C16.4,7.9,16.5,8,16.6,8
|
328 |
+
c0.1,0.1,0.2,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.2,0-0.4-0.1-0.5
|
329 |
+
c-0.1-0.1-0.2-0.3-0.3-0.3S17.1,6.2,17,6.2c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.2-0.3,0.3C16.3,6.8,16.3,7,16.3,7.2z"/>
|
330 |
+
</g>
|
331 |
+
</g>
|
332 |
+
<g>
|
333 |
+
<path id="XMLID_52_" class="st13" d="M2.2-4.9v-2.8c0,0,0-0.2-0.1-0.3C2-8.1,1.8-8.1,1.8-8.1h-1c0,0-0.4-0.1-0.6-0.3C0-8.6,0-9,0-9
|
334 |
+
v-1.7c0,0,0-0.5,0.3-0.7s0.6-0.3,0.6-0.3h0.8c0,0,0.1,0,0.3-0.1c0.2-0.1,0.1-0.3,0.1-0.3v-2.3c0,0,0.1-1.1,0.9-1.8
|
335 |
+
C3.8-16.9,4.6-17,4.6-17h2.9c0,0,0.5,0.1,0.7,0.4C8.5-16.3,8.5-16,8.5-16l0,1.6c0,0,0.1,0.4-0.3,0.7c-0.3,0.3-0.6,0.3-0.6,0.3
|
336 |
+
l-1.4,0c0,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.2l0,1.1c0,0,0,0.2,0.2,0.3c0.1,0.1,0.3,0.1,0.3,0.1h1.4c0,0,0.5,0,0.6,0.4
|
337 |
+
s0.2,0.4,0.1,0.7c0,0.3-0.3,1.5-0.3,1.5S8.1-8.6,7.8-8.3C7.6-8.1,7.2-8.1,7.2-8.1H6.1c0,0-0.1,0-0.2,0.1C5.8-7.9,5.8-7.8,5.8-7.8
|
338 |
+
s0,4.3,0,4.2c0,0,0,0.2-0.3,0.5C5.2-2.7,4.9-2.7,4.9-2.7H3.4c0,0-0.4,0-0.4-0.5c0-0.5,0.4-0.5,0.4-0.5l1.1,0c0,0,0.2,0,0.2-0.1
|
339 |
+
c0.1-0.2,0.1-0.3,0.1-0.3l0-3.9c0,0,0-0.4,0.3-0.7C5.5-9,5.8-9,5.8-9h1.1c0,0,0.2,0,0.3-0.3c0.2-0.5,0.3-1,0.3-1s0.1-0.2,0-0.4
|
340 |
+
c-0.1-0.1-0.2-0.1-0.2-0.1l-1.4,0c0,0-0.5,0-0.8-0.4c-0.3-0.3-0.3-0.6-0.3-0.6v-1.6c0,0,0-0.4,0.4-0.8c0.3-0.3,0.6-0.3,0.6-0.3h1.5
|
341 |
+
c0,0,0.1,0,0.2-0.1c0.1-0.1,0.1-0.2,0.1-0.2v-1.1c0,0,0-0.2-0.1-0.2c-0.1-0.1-0.3-0.1-0.3-0.1H5c0,0-0.7,0.1-1.3,0.7
|
342 |
+
c-0.5,0.5-0.5,1.1-0.5,1.1v2.5c0,0,0,0.5-0.4,0.8c-0.3,0.3-0.6,0.3-0.6,0.3l-0.9,0c0,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.2v1
|
343 |
+
c0,0,0,0.2,0.1,0.3C1.2-9,1.3-9,1.3-9l0.8,0c0,0,0.4,0,0.7,0.3C3.2-8.3,3.1-8,3.1-8l0,3.1c0,0,0,0.4-0.5,0.4S2.2-4.9,2.2-4.9z"/>
|
344 |
+
<g id="XMLID_39_">
|
345 |
+
<path id="XMLID_49_" class="st13" d="M11.2-9.7H9.7c0,0.2,0,0.3,0.1,0.5C9.9-9.1,10-9,10.1-8.9c0.1,0.1,0.2,0.1,0.4,0.1
|
346 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1
|
347 |
+
c0.1,0,0.1,0,0.2,0.1c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.4,0.2
|
348 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.5,0-0.9-0.1-1.2-0.4C9.1-9,8.9-9.4,8.9-9.9c0-0.2,0-0.4,0.1-0.6s0.2-0.4,0.3-0.5
|
349 |
+
c0.1-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6
|
350 |
+
c0,0.2-0.1,0.3-0.2,0.4C11.6-9.7,11.4-9.7,11.2-9.7z M9.7-10.1h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2
|
351 |
+
c-0.2,0-0.3,0.1-0.5,0.2C9.8-10.6,9.7-10.4,9.7-10.1z"/>
|
352 |
+
<path id="XMLID_46_" class="st13" d="M14.5-9.7H13c0,0.2,0,0.3,0.1,0.5c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.1
|
353 |
+
c0.1,0,0.2,0,0.3,0c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.2-0.1
|
354 |
+
c0.1,0,0.1,0,0.2,0.1c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.2-0.4,0.2
|
355 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.7-0.4-1.1c0-0.2,0-0.4,0.1-0.6s0.2-0.4,0.3-0.5
|
356 |
+
c0.1-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.1c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.6
|
357 |
+
c0,0.2-0.1,0.3-0.2,0.4C14.9-9.7,14.7-9.7,14.5-9.7z M13-10.1h1.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2
|
358 |
+
c-0.2,0-0.3,0.1-0.5,0.2C13.1-10.6,13-10.4,13-10.1z"/>
|
359 |
+
<path id="XMLID_43_" class="st13" d="M17.8-8.8L17.8-8.8c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0-0.2,0.1-0.4,0.1
|
360 |
+
c-0.2,0-0.4,0-0.5-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.3-0.3-0.5c-0.1-0.2-0.1-0.4-0.1-0.6c0-0.5,0.1-0.9,0.4-1.1
|
361 |
+
c0.2-0.3,0.5-0.4,0.9-0.4c0.2,0,0.4,0,0.6,0.1c0.2,0.1,0.3,0.2,0.4,0.4v-1.1c0-0.2,0-0.3,0.1-0.4c0.1-0.1,0.2-0.1,0.3-0.1
|
362 |
+
c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v3.4c0,0.1,0,0.3-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c-0.1,0-0.2,0-0.3-0.1
|
363 |
+
C17.8-8.5,17.8-8.6,17.8-8.8z M16.3-9.9c0,0.2,0,0.4,0.1,0.5c0.1,0.1,0.2,0.3,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.1
|
364 |
+
c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.2,0-0.4-0.1-0.5c-0.1-0.1-0.2-0.3-0.3-0.3
|
365 |
+
s-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.2-0.3,0.3S16.3-10.1,16.3-9.9z"/>
|
366 |
+
</g>
|
367 |
+
</g>
|
368 |
+
</svg>
|
js/tw-gb/block.js
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* 10Web plugins Gutenberg integration
|
3 |
+
* version 2.0.3
|
4 |
+
*/
|
5 |
+
( function ( blocks, element ) {
|
6 |
+
registerAllPluginBlocks();
|
7 |
+
|
8 |
+
function registerAllPluginBlocks() {
|
9 |
+
var twPluginsData = JSON.parse(tw_obj_translate.blocks);
|
10 |
+
for ( var pluginId in window['tw_gb'] ) {
|
11 |
+
if ( !window['tw_gb'].hasOwnProperty( pluginId ) ) {
|
12 |
+
continue;
|
13 |
+
}
|
14 |
+
twPluginsData[pluginId] = window['tw_gb'][pluginId];
|
15 |
+
}
|
16 |
+
if ( !twPluginsData ) {
|
17 |
+
return;
|
18 |
+
}
|
19 |
+
|
20 |
+
for ( var pluginId in twPluginsData ) {
|
21 |
+
if ( !twPluginsData.hasOwnProperty( pluginId ) ) {
|
22 |
+
continue;
|
23 |
+
}
|
24 |
+
|
25 |
+
if ( !twPluginsData[pluginId].inited ) {
|
26 |
+
twPluginsData[pluginId].inited = true;
|
27 |
+
registerPluginBlock( blocks, element, pluginId, twPluginsData[pluginId] );
|
28 |
+
}
|
29 |
+
}
|
30 |
+
}
|
31 |
+
|
32 |
+
function registerPluginBlock( blocks, element, pluginId, pluginData ) {
|
33 |
+
var el = element.createElement;
|
34 |
+
|
35 |
+
var isPopup = pluginData.isPopup;
|
36 |
+
|
37 |
+
var iconEl = el( 'img', {
|
38 |
+
width: pluginData.iconSvg.width,
|
39 |
+
height: pluginData.iconSvg.height,
|
40 |
+
src: pluginData.iconSvg.src
|
41 |
+
} );
|
42 |
+
|
43 |
+
blocks.registerBlockType( pluginId, {
|
44 |
+
title: pluginData.title,
|
45 |
+
icon: iconEl,
|
46 |
+
category: 'common',
|
47 |
+
attributes: {
|
48 |
+
shortcode: {
|
49 |
+
type: 'string'
|
50 |
+
},
|
51 |
+
popupOpened: {
|
52 |
+
type: 'boolean',
|
53 |
+
value: true
|
54 |
+
},
|
55 |
+
notInitial: {
|
56 |
+
type: 'boolean'
|
57 |
+
},
|
58 |
+
shortcode_id: {
|
59 |
+
type: 'string'
|
60 |
+
}
|
61 |
+
},
|
62 |
+
|
63 |
+
edit: function ( props ) {
|
64 |
+
if ( !props.attributes.notInitial ) {
|
65 |
+
props.setAttributes( {
|
66 |
+
notInitial: true,
|
67 |
+
popupOpened: true
|
68 |
+
} );
|
69 |
+
|
70 |
+
return el( 'p' );
|
71 |
+
}
|
72 |
+
|
73 |
+
if ( props.attributes.popupOpened ) {
|
74 |
+
if ( isPopup ) {
|
75 |
+
return showPopup( props.attributes.shortcode, props.attributes.shortcode_id );
|
76 |
+
}
|
77 |
+
else {
|
78 |
+
return showShortcodeList( props.attributes.shortcode );
|
79 |
+
}
|
80 |
+
}
|
81 |
+
|
82 |
+
if ( props.attributes.shortcode ) {
|
83 |
+
return showShortcode();
|
84 |
+
}
|
85 |
+
else {
|
86 |
+
return showShortcodePlaceholder();
|
87 |
+
}
|
88 |
+
|
89 |
+
function showPopup( shortcode, shortcode_id ) {
|
90 |
+
var shortcodeCbName = generateUniqueCbName( pluginId );
|
91 |
+
/* Store shortcode attribute into a global variable to get it from an iframe. */
|
92 |
+
window[shortcodeCbName + '_shortcode'] = shortcode ? shortcode : '';
|
93 |
+
window[shortcodeCbName] = function ( shortcode, shortcode_id ) {
|
94 |
+
delete window[shortcodeCbName];
|
95 |
+
|
96 |
+
if ( props ) {
|
97 |
+
props.setAttributes( { shortcode: shortcode, shortcode_id: shortcode_id, popupOpened: false } );
|
98 |
+
}
|
99 |
+
};
|
100 |
+
props.setAttributes( { popupOpened: true } );
|
101 |
+
if (!shortcode_id && undefined != shortcode) {
|
102 |
+
var shortcode_extract = shortcode.split(' ');
|
103 |
+
for (i = 0; i < shortcode_extract.length; i++) {
|
104 |
+
var attributes = shortcode_extract[i].split('=');
|
105 |
+
if ('id'== attributes[0]) {
|
106 |
+
shortcode_id = attributes[1].replace(/"/g, "");
|
107 |
+
}
|
108 |
+
}
|
109 |
+
}
|
110 |
+
var elem = el( 'form', { className: 'tw-container' }, el( 'div', { className: 'tw-container-wrap' + (pluginData.containerClass ? ' ' + pluginData.containerClass : '') }, el( 'span', {
|
111 |
+
className: "media-modal-close",
|
112 |
+
onClick: close
|
113 |
+
}, el( "span", { className: "media-modal-icon" } ) ), el( 'iframe', { src: pluginData.data.shortcodeUrl + '&callback=' + shortcodeCbName + '&edit=' + shortcode_id } ) ) );
|
114 |
+
return elem;
|
115 |
+
}
|
116 |
+
|
117 |
+
function showShortcodeList( shortcode ) {
|
118 |
+
props.setAttributes( { popupOpened: true } );
|
119 |
+
var children = [];
|
120 |
+
var shortcodeList = JSON.parse( pluginData.data );
|
121 |
+
shortcodeList.inputs.forEach( function ( inputItem ) {
|
122 |
+
if ( inputItem.type === 'select' ) {
|
123 |
+
children.push( el( 'option', { value: '', dataId: 0 }, tw_obj_translate.empty_item ) );
|
124 |
+
if ( inputItem.options.length ) {
|
125 |
+
inputItem.options.forEach( function ( optionItem ) {
|
126 |
+
var shortcode = '[' + shortcodeList.shortcode_prefix + ' ' + inputItem.shortcode_attibute_name + '="' + optionItem.id + '"]';
|
127 |
+
children.push(
|
128 |
+
el( 'option', { value: shortcode, dataId: optionItem.id }, optionItem.name )
|
129 |
+
);
|
130 |
+
} )
|
131 |
+
}
|
132 |
+
}
|
133 |
+
} );
|
134 |
+
|
135 |
+
if ( shortcodeList.shortcodes ) {
|
136 |
+
shortcodeList.shortcodes.forEach( function ( shortcodeItem ) {
|
137 |
+
children.push(
|
138 |
+
el( 'option', { value: shortcodeItem.shortcode, dataId: shortcodeItem.id }, shortcodeItem.name )
|
139 |
+
);
|
140 |
+
} );
|
141 |
+
}
|
142 |
+
|
143 |
+
return el( 'form', { onSubmit: chooseFromList }, el( 'div', {}, pluginData.titleSelect ), el( 'select', {
|
144 |
+
value: shortcode,
|
145 |
+
onChange: chooseFromList,
|
146 |
+
class: 'tw-gb-select'
|
147 |
+
}, children ) );
|
148 |
+
}
|
149 |
+
|
150 |
+
function showShortcodePlaceholder() {
|
151 |
+
props.setAttributes( { popupOpened: false } );
|
152 |
+
return el( 'p', {
|
153 |
+
style: {
|
154 |
+
'cursor': "pointer"
|
155 |
+
},
|
156 |
+
|
157 |
+
onClick: function () {
|
158 |
+
props.setAttributes( { popupOpened: true } );
|
159 |
+
}.bind( this )
|
160 |
+
}, tw_obj_translate.nothing_selected );
|
161 |
+
}
|
162 |
+
|
163 |
+
function showShortcode() {
|
164 |
+
return el( 'img', {
|
165 |
+
src: pluginData.iconUrl,
|
166 |
+
alt: pluginData.title,
|
167 |
+
style: {
|
168 |
+
'height': "36px",
|
169 |
+
'width': "36px"
|
170 |
+
},
|
171 |
+
onClick: function () {
|
172 |
+
props.setAttributes( { popupOpened: true } );
|
173 |
+
}.bind( this )
|
174 |
+
} );
|
175 |
+
}
|
176 |
+
|
177 |
+
function close() {
|
178 |
+
props.setAttributes( { popupOpened: false } );
|
179 |
+
}
|
180 |
+
|
181 |
+
function chooseFromList( event, shortcode_id ) {
|
182 |
+
var selected = event.target.querySelector( 'option:checked' );
|
183 |
+
props.setAttributes( { shortcode: selected.value, shortcode_id: selected.dataId, popupOpened: false } );
|
184 |
+
event.preventDefault();
|
185 |
+
}
|
186 |
+
},
|
187 |
+
|
188 |
+
save: function ( props ) {
|
189 |
+
return props.attributes.shortcode;
|
190 |
+
}
|
191 |
+
} );
|
192 |
+
}
|
193 |
+
|
194 |
+
function generateUniqueCbName( pluginId ) {
|
195 |
+
return 'wdg_cb_' + pluginId;
|
196 |
+
}
|
197 |
+
} )(
|
198 |
+
window.wp.blocks,
|
199 |
+
window.wp.element
|
200 |
+
);
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: webdorado,10web,wdsupport
|
|
3 |
Tags: customizable facebook feed, facebook, facebook events, facebook feed, facebook group, facebook like box, facebook likes, facebook page, facebook photos, facebook plugin, facebook posts, facebook likebox
|
4 |
Requires at least: 3.4
|
5 |
Requires PHP: 5.2
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,13 +12,13 @@ WD Facebook Feed is a comprehensive tool for displaying Facebook feed, events an
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
[Special Offer for all Premium Plugins](https://web-dorado.com/wordpress-plugins-bundle.html)
|
16 |
-
[WordPress WD Facebook Feed](https://web-dorado.com/products/wordpress-facebook-feed-plugin.html)
|
17 |
-
[Demo](http://wpdemo.web-dorado.com/facebook-feed/)
|
18 |
-
[Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=info_ffwd)
|
19 |
-
[User Guide](https://web-dorado.com/wordpress-facebook-feed/installing.html)
|
20 |
-
[Support Forum](https://web-dorado.com/forum/facebook-feed-wd.html)
|
21 |
-
|
22 |
Integrating customized content to your WordPress website from Facebook can't be any easier when using Facebook Feed WD plugin. It provides features to display a wide range of content from any page with full control over the content length, type and styling.
|
23 |
|
24 |
Whether you want to display an entire timeline of the feed with all its content, or just specific photos, videos, events, links and statuses from it, you can easily do that by choosing the desired post type you want to display. Each of the content type has its display views available and its own set of settings that you can fully customize.
|
@@ -28,49 +28,49 @@ The plugin features a powerful lightbox which supports filmstrip display (Premiu
|
|
28 |
**Benefits**
|
29 |
|
30 |
* **No feed limitations** - Facebook Feed WD lets you display unlimited number of feeds on every post and page. You can have different feeds based Facebook pages within the same page or post.
|
31 |
-
* **User engagement** - Facebook is a social media giant and most probably a great majority of your site visitors uses it on a daily basis. Displaying feeds with relevant content is definitely going to increase user engagement of your posts and have your visitors stay on your website way longer.
|
32 |
* **Go social** - Your posts might be really interesting and engaging, but a little bit of content from Facebook won't do any harm. You can support your posts with relevant content from Facebook and actually make your posts and pages look more interesting and fun.
|
33 |
-
* **Filter out desired content** - Facebook is a great source of information, but sometimes there is just too much of the stuff that's not relevant to your website or you simply don't want to show in your posts. With the premium version of Facebook Feed WD you can choose specific content types you want your visitors to see and engage with, such as photos, videos, albums and events.
|
34 |
-
* **Customization** - There are wide range of feed customizing options in the plugin to make sure your feeds don't look boring. Depending on the content type you want to display you can choose between different layout options. Also if you're using the premium version of the plugin there are various themes available that you can apply to the feeds.
|
35 |
-
* **Be in Charge** - Facebook Feed WD is giving you full control over the content you want to display. You can choose posts' user roles, the number of the posts displayed on the page, the length of the posts, feed update option, enable social sharing buttons, and many more.
|
36 |
* **Awesome support at your disposal** - The team behind Facebook Feed WD provides timely and effective support to all its users. We keep standards high and response time low.
|
37 |
|
38 |
**What's in it**
|
39 |
|
40 |
**RESPONSIVE LAYOUT**
|
41 |
|
42 |
-
Displayed feeds are responsive and scale perfectly to any screen.
|
43 |
|
44 |
**UNLIMITED FEEDS**
|
45 |
|
46 |
-
You can display as many feeds within the same post or page. Moreover, the feeds can be based on different Facebook pages.
|
47 |
|
48 |
**FEED AUTO UPDATE**
|
49 |
|
50 |
-
Specify the feed update interval, and the feed content will be automatically updated within the provided time period. You can also choose feed update option, whether the old posts are removed when the new ones are added, or the old ones are displayed together with the new ones.
|
51 |
|
52 |
**FACEBOOK WIDGET**
|
53 |
|
54 |
-
You can insert the feeds into your posts or pages using the provided shortcode, or display the feeds with the widget on the sidebar areas of your website. All the feed options, including feed view, number of posts,and the theme can be configured for the widget as well.
|
55 |
|
56 |
**MULTIPLE FEED LAYOUTS**
|
57 |
|
58 |
-
Facebook Feed WD comes with a number of feed display layouts - Album view for albums, Masonry and Thumbnail views for Facebook videos and photos, BlogStyle and Thumbnail view for Facebook events. The view options are available in the premium version, and vary depending on the content type you want to display.
|
59 |
|
60 |
**THEMES**
|
61 |
|
62 |
-
The users of the premium version will find four themes that they can apply to the feeds. The free version uses the default theme. All the parameters of the themes can be configured and reset any time.
|
63 |
|
64 |
**POWERFUL LIGHTBOX**
|
65 |
|
66 |
-
The plugin features an advanced lightbox which supports full-width view and 15 transition effects. The premium version of the plugin also support filsmtrip view within the widget.
|
67 |
|
68 |
**SOCIAL SHARING**
|
69 |
|
70 |
-
Social sharing feature is available in the premium version of the plugin, and it will let your site visitors share the feeds on Google+, Twitter and Facebook.
|
|
|
71 |
|
72 |
|
73 |
-
|
74 |
**SETTINGS/CUSTOMIZATION**
|
75 |
*Some customizations described here are available in Premium version. Please refer to premium feature summary below.*
|
76 |
|
@@ -78,13 +78,13 @@ To have Facebook Feed WD plugin up and running you have to create an app on Face
|
|
78 |
|
79 |
Adding feeds is just a matter of a few clicks. You just click on the **Add new** button from the feeds section of the plugin, and a new window with four setting tabs will open, including settings for the feed, lightbox, comments and events. From the main feed settings you set the page to create a feed with. Under the main settings you can also choose whether you display the whole timeline of the feed, or choose to display only specific content, such as only photos, videos, links or events.
|
80 |
|
81 |
-
With a Facebook page feed, you can filter out the content based on user roles, and show posts and updates only from the page owner or other users from the group, or both. There is a long list of the lightbox settings you can enable, including social share buttons, showing comments, playing filmstrip, and more. The comments settings mainly include choosing comment filtering option, whether its top level or stream, with the former being the same structure as in Facebook and the latter including all-level comments. Here you can also enable showing the comment replies and choose commenting order.
|
82 |
|
83 |
|
84 |
**[Premium version adds](https://web-dorado.com/products/wordpress-facebook-feed-plugin.html)**
|
85 |
|
86 |
-
* Specific content feeds, where you can choose to display only single type of content from your Facebook wall (photos, videos, albums, events)
|
87 |
-
* Show Facebook share buttons
|
88 |
* Advanced lightbox with comments
|
89 |
* Filmstrip for lightbox
|
90 |
* Themes to change styles and colors for each view
|
@@ -92,7 +92,7 @@ With a Facebook page feed, you can filter out the content based on user roles, a
|
|
92 |
* Social sharing for feed to Google Plus, Twitter and Facebook
|
93 |
|
94 |
|
95 |
-
###IMPORTANT:
|
96 |
If you think you found a bug in WD Facebook Feed or have any problem/question concerning this plugin, please check out [Support Forum](https://wordpress.org/support/plugin/wd-facebook-feed) . If you do not find a solution here, do not hesitate to [click here to contact us](https://web-dorado.com/support/contact-us.html).
|
97 |
|
98 |
== Privacy Policy =
|
@@ -100,22 +100,28 @@ The plugin uses Facebook API to get public data from Facebook. All the received
|
|
100 |
|
101 |
== Changelog ==
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
= 1.1.3 =
|
104 |
-
* Added: Facebook widget in 10Web Builder
|
105 |
|
106 |
= 1.1.2 =
|
107 |
-
* Fixed: Inserting shortcode when when no feed is selected
|
108 |
-
* Fixed: Events features are removed because Facebook events API was shut down
|
109 |
|
110 |
= 1.1.1 =
|
111 |
* Improved: Simplified Facebook login. No need to enter app ID and get page tokens manually. This is a new Facebook app, so reauthentication is required.
|
112 |
* Fixed: Elementor compatibility
|
113 |
|
114 |
= 1.1.0 =
|
115 |
-
* **Important: Breaking change. Obtaining page access token is required to display your page content with Facebook Feed WD plugin. See the [documentation](https://web-dorado.com/wordpress-facebook-feed/options.html).
|
116 |
-
* Fixed: Error on PHP 7.2
|
117 |
-
* Fixed: Notices when feed is unpublished
|
118 |
-
* Changed: Deactivation popup
|
119 |
|
120 |
= 1.0.38 =
|
121 |
* New: Using page access token
|
3 |
Tags: customizable facebook feed, facebook, facebook events, facebook feed, facebook group, facebook like box, facebook likes, facebook page, facebook photos, facebook plugin, facebook posts, facebook likebox
|
4 |
Requires at least: 3.4
|
5 |
Requires PHP: 5.2
|
6 |
+
Tested up to: 5.1
|
7 |
+
Stable tag: 1.1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
[Special Offer for all Premium Plugins](https://web-dorado.com/wordpress-plugins-bundle.html)
|
16 |
+
[WordPress WD Facebook Feed](https://web-dorado.com/products/wordpress-facebook-feed-plugin.html)
|
17 |
+
[Demo](http://wpdemo.web-dorado.com/facebook-feed/)
|
18 |
+
[Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=info_ffwd)
|
19 |
+
[User Guide](https://web-dorado.com/wordpress-facebook-feed/installing.html)
|
20 |
+
[Support Forum](https://web-dorado.com/forum/facebook-feed-wd.html)
|
21 |
+
|
22 |
Integrating customized content to your WordPress website from Facebook can't be any easier when using Facebook Feed WD plugin. It provides features to display a wide range of content from any page with full control over the content length, type and styling.
|
23 |
|
24 |
Whether you want to display an entire timeline of the feed with all its content, or just specific photos, videos, events, links and statuses from it, you can easily do that by choosing the desired post type you want to display. Each of the content type has its display views available and its own set of settings that you can fully customize.
|
28 |
**Benefits**
|
29 |
|
30 |
* **No feed limitations** - Facebook Feed WD lets you display unlimited number of feeds on every post and page. You can have different feeds based Facebook pages within the same page or post.
|
31 |
+
* **User engagement** - Facebook is a social media giant and most probably a great majority of your site visitors uses it on a daily basis. Displaying feeds with relevant content is definitely going to increase user engagement of your posts and have your visitors stay on your website way longer.
|
32 |
* **Go social** - Your posts might be really interesting and engaging, but a little bit of content from Facebook won't do any harm. You can support your posts with relevant content from Facebook and actually make your posts and pages look more interesting and fun.
|
33 |
+
* **Filter out desired content** - Facebook is a great source of information, but sometimes there is just too much of the stuff that's not relevant to your website or you simply don't want to show in your posts. With the premium version of Facebook Feed WD you can choose specific content types you want your visitors to see and engage with, such as photos, videos, albums and events.
|
34 |
+
* **Customization** - There are wide range of feed customizing options in the plugin to make sure your feeds don't look boring. Depending on the content type you want to display you can choose between different layout options. Also if you're using the premium version of the plugin there are various themes available that you can apply to the feeds.
|
35 |
+
* **Be in Charge** - Facebook Feed WD is giving you full control over the content you want to display. You can choose posts' user roles, the number of the posts displayed on the page, the length of the posts, feed update option, enable social sharing buttons, and many more.
|
36 |
* **Awesome support at your disposal** - The team behind Facebook Feed WD provides timely and effective support to all its users. We keep standards high and response time low.
|
37 |
|
38 |
**What's in it**
|
39 |
|
40 |
**RESPONSIVE LAYOUT**
|
41 |
|
42 |
+
Displayed feeds are responsive and scale perfectly to any screen.
|
43 |
|
44 |
**UNLIMITED FEEDS**
|
45 |
|
46 |
+
You can display as many feeds within the same post or page. Moreover, the feeds can be based on different Facebook pages.
|
47 |
|
48 |
**FEED AUTO UPDATE**
|
49 |
|
50 |
+
Specify the feed update interval, and the feed content will be automatically updated within the provided time period. You can also choose feed update option, whether the old posts are removed when the new ones are added, or the old ones are displayed together with the new ones.
|
51 |
|
52 |
**FACEBOOK WIDGET**
|
53 |
|
54 |
+
You can insert the feeds into your posts or pages using the provided shortcode, or display the feeds with the widget on the sidebar areas of your website. All the feed options, including feed view, number of posts,and the theme can be configured for the widget as well.
|
55 |
|
56 |
**MULTIPLE FEED LAYOUTS**
|
57 |
|
58 |
+
Facebook Feed WD comes with a number of feed display layouts - Album view for albums, Masonry and Thumbnail views for Facebook videos and photos, BlogStyle and Thumbnail view for Facebook events. The view options are available in the premium version, and vary depending on the content type you want to display.
|
59 |
|
60 |
**THEMES**
|
61 |
|
62 |
+
The users of the premium version will find four themes that they can apply to the feeds. The free version uses the default theme. All the parameters of the themes can be configured and reset any time.
|
63 |
|
64 |
**POWERFUL LIGHTBOX**
|
65 |
|
66 |
+
The plugin features an advanced lightbox which supports full-width view and 15 transition effects. The premium version of the plugin also support filsmtrip view within the widget.
|
67 |
|
68 |
**SOCIAL SHARING**
|
69 |
|
70 |
+
Social sharing feature is available in the premium version of the plugin, and it will let your site visitors share the feeds on Google+, Twitter and Facebook.
|
71 |
+
|
72 |
|
73 |
|
|
|
74 |
**SETTINGS/CUSTOMIZATION**
|
75 |
*Some customizations described here are available in Premium version. Please refer to premium feature summary below.*
|
76 |
|
78 |
|
79 |
Adding feeds is just a matter of a few clicks. You just click on the **Add new** button from the feeds section of the plugin, and a new window with four setting tabs will open, including settings for the feed, lightbox, comments and events. From the main feed settings you set the page to create a feed with. Under the main settings you can also choose whether you display the whole timeline of the feed, or choose to display only specific content, such as only photos, videos, links or events.
|
80 |
|
81 |
+
With a Facebook page feed, you can filter out the content based on user roles, and show posts and updates only from the page owner or other users from the group, or both. There is a long list of the lightbox settings you can enable, including social share buttons, showing comments, playing filmstrip, and more. The comments settings mainly include choosing comment filtering option, whether its top level or stream, with the former being the same structure as in Facebook and the latter including all-level comments. Here you can also enable showing the comment replies and choose commenting order.
|
82 |
|
83 |
|
84 |
**[Premium version adds](https://web-dorado.com/products/wordpress-facebook-feed-plugin.html)**
|
85 |
|
86 |
+
* Specific content feeds, where you can choose to display only single type of content from your Facebook wall (photos, videos, albums, events)
|
87 |
+
* Show Facebook share buttons
|
88 |
* Advanced lightbox with comments
|
89 |
* Filmstrip for lightbox
|
90 |
* Themes to change styles and colors for each view
|
92 |
* Social sharing for feed to Google Plus, Twitter and Facebook
|
93 |
|
94 |
|
95 |
+
###IMPORTANT:
|
96 |
If you think you found a bug in WD Facebook Feed or have any problem/question concerning this plugin, please check out [Support Forum](https://wordpress.org/support/plugin/wd-facebook-feed) . If you do not find a solution here, do not hesitate to [click here to contact us](https://web-dorado.com/support/contact-us.html).
|
97 |
|
98 |
== Privacy Policy =
|
100 |
|
101 |
== Changelog ==
|
102 |
|
103 |
+
= 1.1.4 =
|
104 |
+
* New: Gutenberg block
|
105 |
+
* Fixed: Replace curl calls by wp_remote_get and wp_remote_post
|
106 |
+
* Fixed: Failing to save theme (Premium)
|
107 |
+
* Fixed: Compatibility with some plugins
|
108 |
+
|
109 |
= 1.1.3 =
|
110 |
+
* Added: Facebook widget in 10Web Builder
|
111 |
|
112 |
= 1.1.2 =
|
113 |
+
* Fixed: Inserting shortcode when when no feed is selected
|
114 |
+
* Fixed: Events features are removed because Facebook events API was shut down
|
115 |
|
116 |
= 1.1.1 =
|
117 |
* Improved: Simplified Facebook login. No need to enter app ID and get page tokens manually. This is a new Facebook app, so reauthentication is required.
|
118 |
* Fixed: Elementor compatibility
|
119 |
|
120 |
= 1.1.0 =
|
121 |
+
* **Important: Breaking change. Obtaining page access token is required to display your page content with Facebook Feed WD plugin. See the [documentation](https://web-dorado.com/wordpress-facebook-feed/options.html).
|
122 |
+
* Fixed: Error on PHP 7.2
|
123 |
+
* Fixed: Notices when feed is unpublished
|
124 |
+
* Changed: Deactivation popup
|
125 |
|
126 |
= 1.0.38 =
|
127 |
* New: Using page access token
|