// Photo element
->add_fields('photo', __('Photo', 'usines'), [
- Field::make('image', 'image'),
+ Field::make('image', 'image')->set_required(),
])//->set_header_template('Photo: <%- image %>')
// Video embed element
->add_fields('video', __('Vidéo', 'usines'), [
- Field::make('oembed', 'url', __('YouTube URL', 'usines')),
+ Field::make('oembed', 'url', __('YouTube URL', 'usines'))->set_required(),
+ Field::make('image', 'placeholder', __('Placeholder image', 'usines')),
]),//->set_header_template('Video: <%- url %>'),
Field::make('textarea', 'testimonial', __('Témoignage', 'usines')),
--- /dev/null
+<?php
+
+namespace App\View\Composers;
+
+use Roots\Acorn\View\Composer;
+use function Roots\asset;
+
+class NewsIndex extends Composer
+{
+ /**
+ * List of views served by this composer.
+ *
+ * @var array
+ */
+ protected static $views = [
+ 'index', // (index.blade.php) Main posts archive / index page
+ ];
+
+ /**
+ * List of default styles for the decorations
+ *
+ * @var array
+ */
+ protected $decoration_styles = [
+ 'position' => 'absolute',
+ 'width' => '100%',
+ 'z-index' => '-1',
+ ];
+
+ /**
+ * Data to be passed to view before rendering.
+ *
+ * @return array
+ */
+ public function with()
+ {
+ return [
+ 'decorations' => $this->get_decorations(),
+ ];
+ }
+
+ /**
+ * Defines the SVG background elements for each post template on the index
+ *
+ * @return array
+ */
+ public function get_decorations()
+ {
+ $bg[1] = $this->decoration('news-circle.svg', ['width' => '95.2%', 'top' => '-37.5%', 'left' => '-6.875%']) .
+ $this->decoration('news-plane-right.svg', ['width' => '97.7%', 'bottom' => '-25.42%', 'left' => '33.75%']);
+
+ $bg[2] = $this->circle('#fece3b', ['width' => '96.67%', 'top' => '-48.75%', 'right' => '-10.83%']) .
+ $this->decoration('news-stars.svg', ['width' => '47.92%', 'bottom' => '-35%', 'left' => '-62.71%']);
+
+ $bg[3] = $this->circle('#83d0de', ['width' => '94.17%', 'top' => '31.875%', 'left' => '39.79%']);
+
+ $bg[4] = $this->decoration('news-circle.svg', ['width' => '95.2%', 'top' => '-19.17%', 'left' => '-34.58%']) .
+ $this->decoration('news-plane-left.svg', ['width' => '97.7%', 'bottom' => '-45.42%', 'left' => '-39.58%']);
+
+ $bg[5] = $this->decoration('news-circle.svg', ['width' => '95.2%', 'top' => '10.83%', 'left' => '60.625%']);
+
+ $bg[6] = $this->circle('#ccdc49', ['width' => '96.67%', 'top' => '17.29%', 'left' => '-63.125%']);
+
+
+ return $bg;
+ }
+
+ /**
+ * Build the image tag for a decoration
+ *
+ * @param string $name File name in the decorations folder
+ * @param array $styles Array of inline CSS properties
+ * @return string Resulting HTML
+ */
+ public function decoration($name, $styles = []) {
+
+ $style = $this->build_styles(array_merge($this->decoration_styles, $styles));
+
+ return '<img src="'. asset("images/decorations/$name") .'" style="'. $style .'">';
+ }
+
+ /**
+ * Build a coloured SVG circle for the background
+ *
+ * @param string $color Fill colour of the circle
+ * @param array $styles Array of inline CSS properties
+ * @return string Resulting HTML
+ */
+ public function circle($color, $styles = []) {
+
+ $style = $this->build_styles(array_merge($this->decoration_styles, $styles));
+
+ $svg = '<svg class="absolute" fill="'. $color .'" style="'. $style .'" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">';
+ $svg .= '<circle cx="50" cy="50" r="50"/>';
+ $svg .= '</svg>';
+
+ return $svg;
+ }
+
+ /**
+ * @param array $styles_array Array of inline CSS properties
+ * @return string Inline CSS
+ */
+ protected function build_styles($styles_array) {
+ $styles = array_map(function($value, $key) {
+ return "$key: $value";
+ }, array_values($styles_array), array_keys($styles_array));
+
+ return implode('; ', $styles);
+ }
+
+
+}
namespace App\View\Composers;
use Roots\Acorn\View\Composer;
+use Elementor\Embed;
+use function Roots\asset;
class Realisation extends Composer
{
'category' => $this->get_category(),
'hero_image' => carbon_get_post_meta($postID, 'hero_image'),
'description' => carbon_get_post_meta($postID, 'description'),
- 'gallery' => carbon_get_post_meta($postID, 'gallery'),
+ 'gallery' => $this->prepare_gallery($gallery = carbon_get_post_meta($postID, 'gallery')),
+ 'gallery_backgrounds' => $this->gallery_backgrounds(count($gallery)),
'testimonial' => carbon_get_post_meta($postID, 'testimonial'),
'testimonial_author' => carbon_get_post_meta($postID, 'testimonial_author'),
];
// out and return the category if it exists (ref: https://stackoverflow.com/a/8131148)
return reset(get_the_terms(get_the_ID(), 'realisation_category'));
}
+
+ /**
+ * Prepare gallery by generating photo and video assets into the final array for display
+ *
+ * @return array
+ */
+ public function prepare_gallery($items)
+ {
+ wp_enqueue_script('lite-youtube', asset('scripts/lite-youtube.js'), [], null, true);
+
+ $gallery = [];
+
+ foreach ($items as $item) {
+ $renderer = "gallery_{$item['_type']}"; // Function name for rendering function based on type
+ if (method_exists($this, $renderer)) {
+ $gallery[] = $this->$renderer($item);
+ }
+ }
+
+ return $gallery;
+ }
+
+ /**
+ * Based on the number of items in the gallery, return the SVG images to be used as backgrounds
+ *
+ * @param integer $count The number of items in the gallery
+ * @return string
+ */
+ public function gallery_backgrounds($count)
+ {
+ $backgrounds = ceil((int) $count / 2); // There should be ~1/2 the number of background images as items
+ $res = '';
+
+ for ($i = 1; $i <= $backgrounds; $i++) {
+
+ // Control offset of right / left circles
+ $translateAmount = ($i % 2 === 0) ? '142%' : '-40%';
+
+ $res .= '<img style="width: 50%; transform: translateX('. $translateAmount .')"
+
+ src="'. asset('images/decorations/realisation-detail-circle.svg') .'">';
+ }
+
+ return '<div class="gallery-backgrounds absolute inset-0 flex flex-col justify-around" style="z-index: -1">'. $res .'</div>';
+
+ }
+
+ /**
+ * Render photo item for the gallery
+ *
+ * @param array $data Gallery item containing photo info
+ * @return string
+ */
+ protected function gallery_photo($data)
+ {
+ return wp_get_attachment_image($data['image'], 'full', false, ['class' => 'w-full']);
+ }
+
+ /**
+ * Render video item for the gallery
+ *
+ * @param array $data Gallery item containing video info
+ * @return string|null
+ */
+ protected function gallery_video($data)
+ {
+
+ // Use Elementor's Embed helper to get video ID
+ $video = Embed::get_video_properties($data['url']);
+
+ if ($video['provider'] !== 'youtube' || empty($video['video_id'])) return null;
+
+ $placeholder = $data['placeholder'] ? wp_get_attachment_image_url($data['placeholder'], 'full') : '';
+
+ return '<lite-youtube videoid="'. $video['video_id'] .'" placeholder="'. $placeholder .'"></lite-youtube>';
+ }
+
}
* @return string
*/
add_filter('excerpt_more', function () {
- return ' … <a href="' . get_permalink() . '">' . __('Continued', 'sage') . '</a>';
+ return '… <div class="mt-6"><a class="btn" href="' . get_permalink() . '">' . __('Lire la suite', 'usines') . '</a></div>';
});
/**
"translate:js": "wp i18n make-json ./resources/languages --no-purge --pretty-print"
},
"devDependencies": {
+ "@justinribeiro/lite-youtube": "^0.9.1",
"@tinypixelco/laravel-mix-wp-blocks": "^1.1.0",
"@wordpress/babel-preset-default": "^4.17.0",
"@wordpress/browserslist-config": "^2.7.0",
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 460.3 460.3" style="enable-background:new 0 0 460.3 460.3;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#B79673;}
+</style>
+<path class="st0" d="M231,460.3c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c2.7,0,5.3-0.1,8-0.2c0.3,0,0.5,0.2,0.5,0.5
+ c0,0.3-0.2,0.5-0.5,0.5C236.4,460.2,233.7,460.3,231,460.3C231,460.3,231,460.3,231,460.3z M223,460.2
+ C223,460.2,223,460.2,223,460.2c-2.7-0.1-5.4-0.2-8-0.4c-0.3,0-0.5-0.3-0.5-0.5s0.3-0.5,0.5-0.5c2.6,0.2,5.3,0.3,8,0.4
+ c0.3,0,0.5,0.2,0.5,0.5C223.5,460,223.3,460.2,223,460.2z M247,459.7c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5
+ c2.6-0.2,5.3-0.4,7.9-0.7c0.3,0,0.5,0.2,0.6,0.4c0,0.3-0.2,0.5-0.4,0.6C252.4,459.3,249.7,459.5,247,459.7
+ C247,459.7,247,459.7,247,459.7z M207.1,459.2C207.1,459.2,207.1,459.2,207.1,459.2c-2.7-0.3-5.4-0.6-8-0.9c-0.3,0-0.5-0.3-0.4-0.6
+ c0-0.3,0.3-0.5,0.6-0.4c2.6,0.4,5.3,0.7,7.9,0.9c0.3,0,0.5,0.3,0.4,0.5C207.6,459,207.3,459.2,207.1,459.2z M262.9,458
+ c-0.2,0-0.5-0.2-0.5-0.4c0-0.3,0.2-0.5,0.4-0.6c2.6-0.4,5.3-0.8,7.9-1.3c0.3,0,0.5,0.1,0.6,0.4c0,0.3-0.1,0.5-0.4,0.6
+ C268.3,457.2,265.6,457.6,262.9,458C263,458,262.9,458,262.9,458z M191.2,457C191.2,457,191.2,457,191.2,457c-2.7-0.5-5.3-1-8-1.5
+ c-0.3-0.1-0.4-0.3-0.4-0.6s0.3-0.5,0.6-0.4c2.6,0.5,5.2,1,7.8,1.5c0.3,0,0.5,0.3,0.4,0.6C191.7,456.9,191.5,457,191.2,457z
+ M278.7,455.2c-0.2,0-0.4-0.2-0.5-0.4c-0.1-0.3,0.1-0.5,0.4-0.6c2.6-0.6,5.2-1.2,7.8-1.8c0.3-0.1,0.5,0.1,0.6,0.4s-0.1,0.5-0.4,0.6
+ c-2.6,0.7-5.2,1.3-7.8,1.8C278.7,455.2,278.7,455.2,278.7,455.2z M175.6,453.8c0,0-0.1,0-0.1,0c-2.6-0.6-5.2-1.3-7.8-2
+ c-0.3-0.1-0.4-0.4-0.3-0.6c0.1-0.3,0.4-0.4,0.6-0.3c2.5,0.7,5.1,1.4,7.7,2c0.3,0.1,0.4,0.3,0.4,0.6
+ C176,453.6,175.8,453.8,175.6,453.8z M294.2,451.3c-0.2,0-0.4-0.1-0.5-0.4c-0.1-0.3,0.1-0.5,0.3-0.6c2.5-0.7,5.1-1.5,7.6-2.4
+ c0.3-0.1,0.5,0.1,0.6,0.3c0.1,0.3-0.1,0.5-0.3,0.6c-2.5,0.8-5.1,1.6-7.7,2.4C294.3,451.3,294.2,451.3,294.2,451.3z M160.2,449.5
+ c-0.1,0-0.1,0-0.2,0c-2.5-0.8-5.1-1.7-7.6-2.6c-0.3-0.1-0.4-0.4-0.3-0.6s0.4-0.4,0.6-0.3c2.5,0.9,5.1,1.8,7.6,2.6
+ c0.3,0.1,0.4,0.4,0.3,0.6C160.6,449.3,160.4,449.5,160.2,449.5z M309.4,446.3c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0-0.5,0.3-0.6
+ c2.5-0.9,5-1.9,7.4-2.9c0.3-0.1,0.5,0,0.7,0.3s0,0.5-0.3,0.7c-2.5,1-5,2-7.5,2.9C309.5,446.3,309.4,446.3,309.4,446.3z M145.1,444
+ c-0.1,0-0.1,0-0.2,0c-2.5-1-5-2-7.4-3.1c-0.3-0.1-0.4-0.4-0.3-0.7c0.1-0.3,0.4-0.4,0.7-0.3c2.4,1.1,4.9,2.1,7.4,3.1
+ c0.3,0.1,0.4,0.4,0.3,0.6C145.5,443.9,145.3,444,145.1,444z M324.2,440.3c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0-0.5,0.3-0.7
+ c2.4-1.1,4.8-2.2,7.2-3.4c0.2-0.1,0.5,0,0.7,0.2c0.1,0.2,0,0.5-0.2,0.7c-2.4,1.2-4.8,2.3-7.2,3.4
+ C324.3,440.3,324.2,440.3,324.2,440.3z M130.4,437.6c-0.1,0-0.1,0-0.2,0c-2.4-1.2-4.8-2.4-7.2-3.6c-0.2-0.1-0.3-0.4-0.2-0.7
+ c0.1-0.2,0.4-0.3,0.7-0.2c2.4,1.2,4.8,2.5,7.1,3.6c0.2,0.1,0.4,0.4,0.2,0.7C130.8,437.5,130.6,437.6,130.4,437.6z M338.5,433.2
+ c-0.2,0-0.4-0.1-0.4-0.3c-0.1-0.2,0-0.5,0.2-0.7c2.3-1.2,4.7-2.5,7-3.9c0.2-0.1,0.5-0.1,0.7,0.2c0.1,0.2,0.1,0.5-0.2,0.7
+ c-2.3,1.3-4.7,2.7-7,3.9C338.6,433.2,338.6,433.2,338.5,433.2z M116.2,430.1c-0.1,0-0.2,0-0.2-0.1c-2.3-1.3-4.6-2.7-6.9-4.1
+ c-0.2-0.1-0.3-0.5-0.2-0.7c0.1-0.2,0.5-0.3,0.7-0.2c2.3,1.4,4.6,2.8,6.9,4.1c0.2,0.1,0.3,0.4,0.2,0.7
+ C116.6,430,116.4,430.1,116.2,430.1z M352.3,425.2c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.2-0.1-0.5,0.2-0.7c2.2-1.4,4.5-2.9,6.7-4.4
+ c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7c-2.2,1.5-4.5,3-6.7,4.4C352.5,425.2,352.4,425.2,352.3,425.2z M102.6,421.7
+ c-0.1,0-0.2,0-0.3-0.1c-2.2-1.5-4.4-3-6.6-4.6c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c2.1,1.5,4.4,3.1,6.6,4.6
+ c0.2,0.2,0.3,0.5,0.1,0.7C102.9,421.6,102.8,421.7,102.6,421.7z M365.5,416.2c-0.2,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.1-0.5,0.1-0.7
+ c2.1-1.6,4.3-3.2,6.4-4.8c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7c-2.1,1.6-4.2,3.3-6.4,4.8
+ C365.7,416.2,365.6,416.2,365.5,416.2z M89.6,412.3c-0.1,0-0.2,0-0.3-0.1c-2.1-1.6-4.2-3.3-6.3-5c-0.2-0.2-0.2-0.5-0.1-0.7
+ c0.2-0.2,0.5-0.2,0.7-0.1c2,1.7,4.1,3.4,6.2,5c0.2,0.2,0.3,0.5,0.1,0.7C89.9,412.3,89.8,412.3,89.6,412.3z M378.1,406.4
+ c-0.1,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.2-0.5,0.1-0.7c2-1.7,4.1-3.5,6-5.2c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7
+ c-2,1.8-4,3.5-6,5.3C378.3,406.3,378.2,406.4,378.1,406.4z M77.3,402.1c-0.1,0-0.2,0-0.3-0.1c-2-1.8-4-3.6-5.9-5.4
+ c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0c1.9,1.8,3.9,3.7,5.9,5.4c0.2,0.2,0.2,0.5,0,0.7C77.6,402,77.5,402.1,77.3,402.1z
+ M389.9,395.6c-0.1,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.2-0.5,0-0.7c1.9-1.8,3.8-3.7,5.6-5.6c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7
+ c-1.8,1.9-3.7,3.8-5.7,5.7C390.2,395.6,390.1,395.6,389.9,395.6z M65.8,391c-0.1,0-0.3-0.1-0.4-0.2c-1.9-1.9-3.7-3.9-5.5-5.8
+ c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0c1.8,2,3.6,3.9,5.5,5.8c0.2,0.2,0.2,0.5,0,0.7C66,391,65.9,391,65.8,391z M401,384.1
+ c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.2-0.5,0-0.7c1.8-2,3.5-4,5.2-6c0.2-0.2,0.5-0.2,0.7-0.1c0.2,0.2,0.2,0.5,0.1,0.7
+ c-1.7,2-3.5,4.1-5.3,6.1C401.3,384.1,401.2,384.1,401,384.1z M55,379.2c-0.1,0-0.3-0.1-0.4-0.2c-1.7-2-3.4-4.1-5.1-6.2
+ c-0.2-0.2-0.1-0.5,0.1-0.7c0.2-0.2,0.5-0.1,0.7,0.1c1.6,2.1,3.3,4.1,5.1,6.2c0.2,0.2,0.2,0.5-0.1,0.7
+ C55.2,379.2,55.1,379.2,55,379.2z M411.3,371.9c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7c1.6-2.1,3.2-4.2,4.8-6.4
+ c0.2-0.2,0.5-0.3,0.7-0.1c0.2,0.2,0.3,0.5,0.1,0.7c-1.6,2.2-3.2,4.3-4.8,6.4C411.6,371.8,411.5,371.9,411.3,371.9z M45.1,366.7
+ c-0.2,0-0.3-0.1-0.4-0.2c-1.6-2.1-3.1-4.3-4.6-6.5c-0.2-0.2-0.1-0.5,0.1-0.7c0.2-0.2,0.5-0.1,0.7,0.1c1.5,2.2,3,4.4,4.6,6.5
+ c0.2,0.2,0.1,0.5-0.1,0.7C45.3,366.7,45.2,366.7,45.1,366.7z M420.7,358.9c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7
+ c1.5-2.2,3-4.5,4.4-6.7c0.1-0.2,0.5-0.3,0.7-0.2c0.2,0.1,0.3,0.5,0.2,0.7c-1.4,2.2-2.9,4.5-4.4,6.7
+ C421,358.8,420.9,358.9,420.7,358.9z M36.1,353.5c-0.2,0-0.3-0.1-0.4-0.2c-1.4-2.2-2.8-4.5-4.2-6.8c-0.1-0.2-0.1-0.5,0.2-0.7
+ c0.2-0.1,0.5-0.1,0.7,0.2c1.3,2.3,2.7,4.6,4.2,6.8c0.1,0.2,0.1,0.5-0.2,0.7C36.3,353.5,36.2,353.5,36.1,353.5z M429.2,345.3
+ c-0.1,0-0.2,0-0.2-0.1c-0.2-0.1-0.3-0.4-0.2-0.7c1.3-2.3,2.6-4.6,3.9-7c0.1-0.2,0.4-0.3,0.7-0.2c0.2,0.1,0.3,0.4,0.2,0.7
+ c-1.3,2.4-2.6,4.7-3.9,7C429.5,345.2,429.4,345.3,429.2,345.3z M28,339.7c-0.2,0-0.4-0.1-0.4-0.3c-1.3-2.3-2.5-4.7-3.7-7.1
+ c-0.1-0.2,0-0.5,0.2-0.7c0.2-0.1,0.5,0,0.7,0.2c1.2,2.4,2.4,4.7,3.7,7.1c0.1,0.2,0,0.5-0.2,0.7C28.2,339.7,28.1,339.7,28,339.7z
+ M436.7,331.2c-0.1,0-0.1,0-0.2-0.1c-0.2-0.1-0.4-0.4-0.2-0.7c1.2-2.4,2.3-4.8,3.4-7.2c0.1-0.3,0.4-0.4,0.7-0.3
+ c0.3,0.1,0.4,0.4,0.3,0.7c-1.1,2.4-2.2,4.9-3.4,7.3C437.1,331.1,436.9,331.2,436.7,331.2z M20.9,325.4c-0.2,0-0.4-0.1-0.5-0.3
+ c-1.1-2.4-2.2-4.9-3.2-7.3c-0.1-0.3,0-0.5,0.3-0.7c0.3-0.1,0.5,0,0.7,0.3c1,2.4,2.1,4.9,3.2,7.3c0.1,0.3,0,0.5-0.2,0.7
+ C21.1,325.4,21,325.4,20.9,325.4z M443.2,316.5c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.7c1-2.5,2-5,2.9-7.5
+ c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-0.9,2.5-1.9,5-2.9,7.5C443.6,316.4,443.4,316.5,443.2,316.5z M14.8,310.7
+ c-0.2,0-0.4-0.1-0.5-0.3c-0.9-2.5-1.8-5-2.7-7.6c-0.1-0.3,0.1-0.5,0.3-0.6c0.3-0.1,0.5,0.1,0.6,0.3c0.8,2.5,1.7,5,2.6,7.5
+ c0.1,0.3,0,0.5-0.3,0.6C14.9,310.7,14.9,310.7,14.8,310.7z M448.7,301.5c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.6
+ c0.8-2.5,1.6-5.1,2.3-7.6c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-0.7,2.6-1.5,5.1-2.3,7.7
+ C449.1,301.3,448.9,301.5,448.7,301.5z M9.8,295.5c-0.2,0-0.4-0.1-0.5-0.4c-0.7-2.5-1.5-5.1-2.1-7.7c-0.1-0.3,0.1-0.5,0.4-0.6
+ c0.3-0.1,0.5,0.1,0.6,0.4c0.7,2.6,1.4,5.2,2.1,7.7c0.1,0.3-0.1,0.5-0.3,0.6C9.9,295.5,9.8,295.5,9.8,295.5z M453.1,286.1
+ c0,0-0.1,0-0.1,0c-0.3-0.1-0.4-0.3-0.4-0.6c0.6-2.6,1.2-5.2,1.8-7.8c0.1-0.3,0.3-0.4,0.6-0.4c0.3,0.1,0.4,0.3,0.4,0.6
+ c-0.5,2.6-1.2,5.2-1.8,7.8C453.5,285.9,453.3,286.1,453.1,286.1z M5.8,280c-0.2,0-0.4-0.2-0.5-0.4c-0.6-2.6-1.1-5.2-1.6-7.9
+ c0-0.3,0.1-0.5,0.4-0.6c0.3-0.1,0.5,0.1,0.6,0.4c0.5,2.6,1,5.2,1.6,7.8c0.1,0.3-0.1,0.5-0.4,0.6C5.9,280,5.9,280,5.8,280z
+ M456.4,270.4C456.4,270.4,456.3,270.4,456.4,270.4c-0.4-0.1-0.5-0.3-0.5-0.6c0.5-2.6,0.9-5.3,1.2-7.9c0-0.3,0.3-0.5,0.6-0.4
+ c0.3,0,0.5,0.3,0.4,0.6c-0.4,2.6-0.8,5.3-1.2,7.9C456.8,270.3,456.6,270.4,456.4,270.4z M2.9,264.3c-0.2,0-0.5-0.2-0.5-0.4
+ c-0.4-2.6-0.7-5.3-1-7.9c0-0.3,0.2-0.5,0.4-0.6c0.3,0,0.5,0.2,0.6,0.4c0.3,2.6,0.6,5.3,1,7.9C3.5,264,3.3,264.2,2.9,264.3
+ C3,264.3,3,264.3,2.9,264.3z M458.6,254.6C458.6,254.6,458.6,254.6,458.6,254.6c-0.3,0-0.5-0.3-0.5-0.6c0.3-2.6,0.5-5.3,0.7-8
+ c0-0.3,0.3-0.5,0.5-0.5c0.3,0,0.5,0.3,0.5,0.5c-0.2,2.7-0.4,5.3-0.7,8C459.1,254.4,458.9,254.6,458.6,254.6z M1.2,248.4
+ c-0.3,0-0.5-0.2-0.5-0.5c-0.2-2.7-0.4-5.3-0.5-8c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0.1,2.6,0.3,5.3,0.5,8
+ C1.7,248.1,1.5,248.4,1.2,248.4C1.2,248.4,1.2,248.4,1.2,248.4z M459.7,238.6C459.7,238.6,459.7,238.6,459.7,238.6
+ c-0.3,0-0.5-0.2-0.5-0.5c0.1-2.6,0.1-5.3,0.1-8c0-1.2,0-2.3,0-3.5c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0,1.2,0,2.4,0,3.5
+ c0,2.7,0,5.4-0.1,8C460.2,238.4,460,238.6,459.7,238.6z M0.5,232.4c-0.3,0-0.5-0.2-0.5-0.5c0-0.6,0-1.2,0-1.8c0-2.1,0-4.2,0.1-6.3
+ c0-0.3,0.3-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5C1,226,1,228.1,1,230.2c0,0.6,0,1.2,0,1.7C1,232.2,0.8,232.4,0.5,232.4
+ C0.5,232.4,0.5,232.4,0.5,232.4z M459.5,219.1c-0.3,0-0.5-0.2-0.5-0.5c-0.1-2.6-0.3-5.3-0.5-8c0-0.3,0.2-0.5,0.5-0.5
+ c0.3,0,0.5,0.2,0.5,0.5c0.2,2.7,0.4,5.3,0.5,8C460.1,218.9,459.8,219.1,459.5,219.1C459.6,219.1,459.6,219.1,459.5,219.1z
+ M0.9,216.4C0.9,216.4,0.9,216.4,0.9,216.4c-0.3,0-0.5-0.3-0.5-0.5c0.2-2.7,0.4-5.3,0.6-8c0-0.3,0.3-0.5,0.5-0.4
+ c0.3,0,0.5,0.3,0.4,0.5c-0.3,2.6-0.5,5.3-0.6,8C1.4,216.2,1.2,216.4,0.9,216.4z M458.2,203.2c-0.2,0-0.5-0.2-0.5-0.4
+ c-0.3-2.6-0.7-5.3-1.1-7.9c0-0.3,0.1-0.5,0.4-0.6c0.3,0,0.5,0.1,0.6,0.4c0.4,2.6,0.8,5.3,1.1,7.9
+ C458.7,202.9,458.5,203.2,458.2,203.2C458.2,203.2,458.2,203.2,458.2,203.2z M2.5,200.5C2.4,200.5,2.4,200.5,2.5,200.5
+ c-0.3,0-0.5-0.3-0.5-0.6c0.3-2.6,0.7-5.3,1.2-7.9c0-0.3,0.3-0.5,0.6-0.4c0.3,0,0.5,0.3,0.4,0.6c-0.4,2.6-0.8,5.3-1.2,7.9
+ C2.9,200.3,2.7,200.5,2.5,200.5z M455.8,187.4c-0.2,0-0.4-0.2-0.5-0.4c-0.5-2.6-1-5.2-1.6-7.8c-0.1-0.3,0.1-0.5,0.4-0.6
+ c0.3-0.1,0.5,0.1,0.6,0.4c0.6,2.6,1.1,5.2,1.6,7.8C456.3,187.1,456.1,187.3,455.8,187.4C455.8,187.4,455.8,187.4,455.8,187.4z
+ M5.1,184.7c0,0-0.1,0-0.1,0c-0.3-0.1-0.4-0.3-0.4-0.6c0.5-2.6,1.1-5.2,1.7-7.8c0.1-0.3,0.3-0.4,0.6-0.4c0.3,0.1,0.4,0.3,0.4,0.6
+ c-0.6,2.6-1.2,5.2-1.7,7.8C5.5,184.6,5.3,184.7,5.1,184.7z M452.2,171.8c-0.2,0-0.4-0.1-0.5-0.4c-0.7-2.6-1.4-5.1-2.2-7.7
+ c-0.1-0.3,0.1-0.5,0.3-0.6c0.3-0.1,0.5,0.1,0.6,0.3c0.8,2.5,1.5,5.1,2.2,7.7c0.1,0.3-0.1,0.5-0.4,0.6
+ C452.3,171.8,452.3,171.8,452.2,171.8z M8.8,169.2c0,0-0.1,0-0.1,0c-0.3-0.1-0.4-0.3-0.3-0.6c0.7-2.6,1.5-5.2,2.3-7.7
+ c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-0.8,2.5-1.6,5.1-2.3,7.7C9.2,169,9,169.2,8.8,169.2z M447.6,156.5
+ c-0.2,0-0.4-0.1-0.5-0.3c-0.9-2.5-1.8-5-2.7-7.5c-0.1-0.3,0-0.5,0.3-0.6c0.3-0.1,0.5,0,0.6,0.3c0.9,2.5,1.9,5,2.7,7.5
+ c0.1,0.3-0.1,0.5-0.3,0.6C447.7,156.5,447.6,156.5,447.6,156.5z M13.6,153.9c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.6
+ c0.9-2.5,1.8-5.1,2.8-7.5c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-1,2.5-1.9,5-2.8,7.5C14,153.8,13.8,153.9,13.6,153.9z
+ M441.9,141.6c-0.2,0-0.4-0.1-0.5-0.3c-1-2.4-2.1-4.9-3.2-7.3c-0.1-0.3,0-0.5,0.2-0.7s0.5,0,0.7,0.2c1.1,2.4,2.2,4.9,3.2,7.3
+ c0.1,0.3,0,0.5-0.3,0.7C442,141.6,442,141.6,441.9,141.6z M19.5,139c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.7
+ c1.1-2.4,2.2-4.9,3.3-7.3c0.1-0.2,0.4-0.4,0.7-0.2c0.2,0.1,0.4,0.4,0.2,0.7c-1.1,2.4-2.3,4.8-3.3,7.3C19.9,138.9,19.7,139,19.5,139z
+ M435.2,127.1c-0.2,0-0.4-0.1-0.4-0.3c-1.2-2.4-2.4-4.7-3.7-7c-0.1-0.2,0-0.5,0.2-0.7c0.2-0.1,0.5,0,0.7,0.2
+ c1.3,2.3,2.5,4.7,3.7,7.1c0.1,0.2,0,0.5-0.2,0.7C435.4,127.1,435.3,127.1,435.2,127.1z M26.4,124.5c-0.1,0-0.2,0-0.2-0.1
+ c-0.2-0.1-0.3-0.4-0.2-0.7c1.2-2.4,2.5-4.7,3.8-7.1c0.1-0.2,0.4-0.3,0.7-0.2c0.2,0.1,0.3,0.4,0.2,0.7c-1.3,2.3-2.6,4.7-3.8,7
+ C26.8,124.4,26.6,124.5,26.4,124.5z M427.5,113.1c-0.2,0-0.3-0.1-0.4-0.2c-1.3-2.3-2.8-4.5-4.2-6.8c-0.1-0.2-0.1-0.5,0.1-0.7
+ c0.2-0.2,0.5-0.1,0.7,0.1c1.4,2.2,2.9,4.5,4.2,6.8c0.1,0.2,0.1,0.5-0.2,0.7C427.7,113.1,427.6,113.1,427.5,113.1z M34.3,110.6
+ c-0.1,0-0.2,0-0.3-0.1c-0.2-0.1-0.3-0.5-0.2-0.7c1.4-2.3,2.8-4.5,4.3-6.8c0.2-0.2,0.5-0.3,0.7-0.1c0.2,0.2,0.3,0.5,0.1,0.7
+ c-1.5,2.2-2.9,4.5-4.3,6.7C34.7,110.5,34.5,110.6,34.3,110.6z M418.9,99.7c-0.2,0-0.3-0.1-0.4-0.2c-1.5-2.2-3.1-4.3-4.7-6.5
+ c-0.2-0.2-0.1-0.5,0.1-0.7c0.2-0.2,0.5-0.1,0.7,0.1c1.6,2.1,3.2,4.3,4.7,6.5c0.2,0.2,0.1,0.5-0.1,0.7
+ C419.1,99.7,419,99.7,418.9,99.7z M43.2,97.2c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7c1.5-2.2,3.2-4.3,4.8-6.4
+ c0.2-0.2,0.5-0.3,0.7-0.1c0.2,0.2,0.3,0.5,0.1,0.7c-1.6,2.1-3.2,4.3-4.8,6.4C43.5,97.2,43.4,97.2,43.2,97.2z M409.3,86.9
+ c-0.1,0-0.3-0.1-0.4-0.2c-1.7-2.1-3.4-4.1-5.1-6.1c-0.2-0.2-0.2-0.5,0.1-0.7c0.2-0.2,0.5-0.2,0.7,0.1c1.7,2,3.5,4.1,5.1,6.2
+ c0.2,0.2,0.1,0.5-0.1,0.7C409.5,86.9,409.4,86.9,409.3,86.9z M52.9,84.6c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.2-0.5-0.1-0.7
+ c1.7-2,3.4-4.1,5.2-6.1c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7c-1.8,2-3.5,4-5.2,6.1C53.2,84.5,53.1,84.6,52.9,84.6z
+ M398.9,74.8c-0.1,0-0.3-0.1-0.4-0.2c-1.8-1.9-3.7-3.9-5.5-5.8c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0
+ c1.9,1.9,3.7,3.8,5.5,5.8c0.2,0.2,0.2,0.5,0,0.7C399.1,74.7,399,74.8,398.9,74.8z M63.6,72.6c-0.1,0-0.2,0-0.3-0.1
+ c-0.2-0.2-0.2-0.5,0-0.7c1.8-1.9,3.7-3.9,5.6-5.7c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7c-1.9,1.9-3.8,3.8-5.6,5.7
+ C63.8,72.5,63.7,72.6,63.6,72.6z M387.6,63.4c-0.1,0-0.2,0-0.3-0.1c-1.9-1.8-3.9-3.6-5.9-5.4c-0.2-0.2-0.2-0.5,0-0.7
+ c0.2-0.2,0.5-0.2,0.7,0c2,1.8,4,3.6,5.9,5.4c0.2,0.2,0.2,0.5,0,0.7C387.9,63.4,387.7,63.4,387.6,63.4z M75,61.4
+ c-0.1,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.2-0.5,0-0.7c2-1.8,4-3.6,6-5.3c0.2-0.2,0.5-0.2,0.7,0.1c0.2,0.2,0.2,0.5-0.1,0.7
+ c-2,1.7-4,3.5-6,5.3C75.2,61.3,75.1,61.4,75,61.4z M375.6,52.9c-0.1,0-0.2,0-0.3-0.1c-2.1-1.7-4.2-3.3-6.3-5
+ c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c2.1,1.6,4.2,3.3,6.3,5c0.2,0.2,0.2,0.5,0.1,0.7
+ C375.9,52.8,375.7,52.9,375.6,52.9z M87.1,51c-0.1,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.1-0.5,0.1-0.7c2.1-1.7,4.2-3.3,6.3-4.9
+ c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7c-2.1,1.6-4.2,3.2-6.3,4.9C87.3,50.9,87.2,51,87.1,51z M362.8,43.2
+ c-0.1,0-0.2,0-0.3-0.1c-2.2-1.5-4.4-3.1-6.6-4.5c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c2.2,1.5,4.4,3,6.6,4.5
+ c0.2,0.2,0.3,0.5,0.1,0.7C363.2,43.1,363,43.2,362.8,43.2z M99.9,41.5c-0.2,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.1-0.5,0.1-0.7
+ c2.2-1.5,4.4-3,6.7-4.4c0.2-0.1,0.5-0.1,0.7,0.2c0.1,0.2,0.1,0.5-0.2,0.7c-2.2,1.4-4.5,2.9-6.6,4.4C100.1,41.4,100,41.5,99.9,41.5z
+ M349.5,34.4c-0.1,0-0.2,0-0.3-0.1c-2.3-1.4-4.6-2.7-6.9-4c-0.2-0.1-0.3-0.4-0.2-0.7s0.4-0.3,0.7-0.2c2.3,1.3,4.7,2.7,6.9,4.1
+ c0.2,0.1,0.3,0.5,0.2,0.7C349.8,34.3,349.6,34.4,349.5,34.4z M113.4,32.9c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.2-0.1-0.5,0.2-0.7
+ c2.3-1.4,4.6-2.7,7-4c0.2-0.1,0.5,0,0.7,0.2s0,0.5-0.2,0.7c-2.3,1.3-4.6,2.6-6.9,3.9C113.6,32.8,113.5,32.9,113.4,32.9z M335.5,26.5
+ c-0.1,0-0.2,0-0.2-0.1c-2.4-1.2-4.8-2.4-7.2-3.5c-0.2-0.1-0.4-0.4-0.2-0.7s0.4-0.4,0.7-0.2c2.4,1.1,4.8,2.3,7.2,3.6
+ c0.2,0.1,0.3,0.4,0.2,0.7C335.9,26.4,335.7,26.5,335.5,26.5z M127.4,25.2c-0.2,0-0.4-0.1-0.4-0.3c-0.1-0.2,0-0.5,0.2-0.7
+ c2.4-1.2,4.8-2.4,7.2-3.5c0.3-0.1,0.5,0,0.7,0.2c0.1,0.3,0,0.5-0.2,0.7c-2.4,1.1-4.8,2.3-7.2,3.4C127.5,25.2,127.5,25.2,127.4,25.2z
+ M321,19.7c-0.1,0-0.1,0-0.2,0c-2.4-1-4.9-2.1-7.4-3c-0.3-0.1-0.4-0.4-0.3-0.6c0.1-0.3,0.4-0.4,0.6-0.3c2.5,1,5,2,7.4,3.1
+ c0.3,0.1,0.4,0.4,0.3,0.7C321.4,19.5,321.2,19.7,321,19.7z M141.9,18.6c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0-0.5,0.3-0.7
+ c2.5-1,5-2,7.4-2.9c0.3-0.1,0.5,0,0.6,0.3c0.1,0.3,0,0.5-0.3,0.6c-2.5,0.9-5,1.9-7.4,2.9C142,18.5,142,18.6,141.9,18.6z M306.1,13.8
+ c-0.1,0-0.1,0-0.2,0c-2.5-0.9-5.1-1.7-7.6-2.5c-0.3-0.1-0.4-0.4-0.3-0.6c0.1-0.3,0.4-0.4,0.6-0.3c2.6,0.8,5.1,1.6,7.6,2.5
+ c0.3,0.1,0.4,0.4,0.3,0.6C306.5,13.7,306.3,13.8,306.1,13.8z M156.8,12.9c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0.1-0.5,0.3-0.6
+ c2.5-0.9,5.1-1.7,7.6-2.4c0.3-0.1,0.5,0.1,0.6,0.3c0.1,0.3-0.1,0.5-0.3,0.6c-2.5,0.8-5.1,1.6-7.6,2.4
+ C156.9,12.9,156.9,12.9,156.8,12.9z M290.8,9.1c0,0-0.1,0-0.1,0c-2.6-0.7-5.2-1.4-7.7-2c-0.3-0.1-0.4-0.3-0.4-0.6s0.3-0.4,0.6-0.4
+ c2.6,0.6,5.2,1.3,7.8,2c0.3,0.1,0.4,0.3,0.4,0.6C291.2,8.9,291,9.1,290.8,9.1z M172.2,8.4c-0.2,0-0.4-0.1-0.5-0.4
+ c-0.1-0.3,0.1-0.5,0.4-0.6c2.6-0.7,5.2-1.3,7.8-1.9c0.3-0.1,0.5,0.1,0.6,0.4c0.1,0.3-0.1,0.5-0.4,0.6c-2.6,0.6-5.2,1.2-7.8,1.9
+ C172.3,8.4,172.2,8.4,172.2,8.4z M275.2,5.4C275.2,5.4,275.2,5.4,275.2,5.4c-2.7-0.5-5.3-1-8-1.4c-0.3,0-0.5-0.3-0.4-0.6
+ c0-0.3,0.3-0.5,0.6-0.4c2.6,0.4,5.3,0.9,7.9,1.4c0.3,0.1,0.4,0.3,0.4,0.6C275.7,5.2,275.5,5.4,275.2,5.4z M187.8,4.9
+ c-0.2,0-0.4-0.2-0.5-0.4c-0.1-0.3,0.1-0.5,0.4-0.6c2.6-0.5,5.3-0.9,7.9-1.3c0.3,0,0.5,0.1,0.6,0.4s-0.1,0.5-0.4,0.6
+ C193.1,3.9,190.5,4.4,187.8,4.9C187.8,4.9,187.8,4.9,187.8,4.9z M259.4,2.8C259.4,2.8,259.4,2.8,259.4,2.8c-2.7-0.3-5.4-0.6-8-0.9
+ c-0.3,0-0.5-0.3-0.5-0.5c0-0.3,0.3-0.5,0.5-0.5c2.7,0.2,5.3,0.5,8,0.9c0.3,0,0.5,0.3,0.4,0.6C259.9,2.6,259.7,2.8,259.4,2.8z
+ M203.6,2.5c-0.3,0-0.5-0.2-0.5-0.4c0-0.3,0.2-0.5,0.4-0.6c2.6-0.3,5.3-0.6,8-0.8c0.3,0,0.5,0.2,0.5,0.5s-0.2,0.5-0.5,0.5
+ C208.9,1.9,206.3,2.2,203.6,2.5C203.6,2.5,203.6,2.5,203.6,2.5z M243.5,1.4C243.5,1.4,243.5,1.4,243.5,1.4c-2.7-0.2-5.4-0.3-8-0.3
+ c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c2.7,0.1,5.4,0.2,8,0.3c0.3,0,0.5,0.3,0.5,0.5C244,1.2,243.8,1.4,243.5,1.4z
+ M219.5,1.2c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c2.7-0.1,5.3-0.2,8-0.2c0,0,0,0,0,0c0.3,0,0.5,0.2,0.5,0.5
+ c0,0.3-0.2,0.5-0.5,0.5C224.9,1,222.2,1.1,219.5,1.2C219.5,1.2,219.5,1.2,219.5,1.2z"/>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 467.8 833.6" style="enable-background:new 0 0 467.8 833.6;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#B79673;}
+</style>
+<g>
+ <path class="st0" d="M429,543.3c-0.3,0.5,0,1.1,0.4,1.4c0.2,0.1,0.3,0.1,0.4,0.1c0.4,0,0.7-0.1,1-0.5c2.5-4.7,4.9-9.6,7-14.4
+ c0.3-0.6,0-1.1-0.4-1.4c-0.6-0.3-1.1,0-1.4,0.4C433.9,533.8,431.5,538.6,429,543.3z"/>
+ <path class="st0" d="M454.4,295c0.1,0.4,0.4,0.8,0.8,0.8c0.1,0,0.2-0.1,0.3-0.1c0.5-0.1,0.9-0.7,0.7-1.2
+ c-1.1-5.2-2.3-10.4-3.5-15.6c-0.1-0.5-0.7-0.9-1.2-0.7c-0.5,0.1-0.9,0.7-0.7,1.2C452,284.5,453.2,289.8,454.4,295z"/>
+ <path class="st0" d="M442.4,514.5c-0.2,0.5,0.1,1.1,0.6,1.3c0.1,0,0.2,0,0.3,0c0.5,0.1,0.9-0.2,1.1-0.6c2-5,3.9-10,5.6-15
+ c0.2-0.5-0.2-1.1-0.7-1.3c-0.5-0.2-1.1,0.2-1.3,0.7C446.2,504.5,444.4,509.6,442.4,514.5z"/>
+ <path class="st0" d="M442.4,248.6c1.6,5,3,10.2,4.4,15.3c0.1,0.4,0.4,0.7,0.8,0.7c0.2,0,0.3-0.1,0.4-0.1c0.6-0.1,0.9-0.7,0.7-1.2
+ c-1.4-5.2-2.9-10.3-4.4-15.4c-0.1-0.5-0.7-0.8-1.2-0.6C442.6,247.5,442.3,248.1,442.4,248.6z"/>
+ <path class="st0" d="M462.2,342.2c0.4,3.5,0.8,6.9,1.2,10.3c0.2,1.8,0.4,3.7,0.6,5.5c0,0.5,0.4,0.9,0.9,0.9c0.1,0,0.1,0,0.2,0
+ c0.6,0,1-0.6,0.9-1.1c-0.2-1.8-0.4-3.8-0.5-5.6c-0.3-3.4-0.8-6.8-1.2-10.3c0-0.5-0.6-0.9-1.1-0.8
+ C462.5,341.1,462.1,341.6,462.2,342.2z"/>
+ <path class="st0" d="M412.9,571.1c-0.3,0.5-0.1,1.1,0.3,1.3c0.1,0.1,0.3,0.1,0.4,0.1c0.4,0,0.7-0.1,1-0.5c2.8-4.5,5.7-9.1,8.4-13.7
+ c0.3-0.5,0.1-1.1-0.3-1.3s-1.1-0.1-1.3,0.3C418.7,561.9,415.9,566.5,412.9,571.1z"/>
+ <path class="st0" d="M351.9,644.4c-0.4,0.4-0.4,1-0.1,1.4c0.2,0.1,0.4,0.2,0.6,0.3c0.3,0,0.6-0.1,0.8-0.3
+ c3.9-3.8,7.7-7.5,11.4-11.3c0.3-0.4,0.3-1.1,0-1.4s-1.1-0.3-1.4,0C359.5,636.8,355.7,640.6,351.9,644.4z"/>
+ <path class="st0" d="M394.8,597c-0.4,0.5-0.3,1.1,0.1,1.4c0.1,0.1,0.3,0.1,0.5,0.2c0.4,0,0.7-0.1,1-0.4c3.2-4.2,6.5-8.6,9.5-12.9
+ c0.4-0.5,0.2-1.1-0.2-1.4c-0.5-0.4-1.1-0.2-1.4,0.2C401,588.4,397.9,592.8,394.8,597z"/>
+ <path class="st0" d="M420.6,188.7c2.1,4.9,4.2,9.8,6.1,14.7c0.2,0.3,0.4,0.6,0.8,0.6c0.2,0,0.3,0,0.5,0c0.5-0.2,0.8-0.8,0.6-1.3
+ c-1.9-5-4-9.9-6.1-14.8c-0.2-0.5-0.8-0.8-1.3-0.6C420.6,187.5,420.4,188.1,420.6,188.7z"/>
+ <path class="st0" d="M374.2,621.5c-0.5,0.4-0.4,1.1,0,1.4c0.2,0.1,0.4,0.2,0.6,0.3c0.3,0,0.6,0,0.8-0.3c3.6-4,7.1-8.1,10.5-12.1
+ c0.4-0.5,0.3-1.1-0.1-1.4c-0.5-0.4-1.1-0.3-1.4,0.1C381.2,613.4,377.7,617.5,374.2,621.5z"/>
+ <path class="st0" d="M456.9,468.8c-1.2,5.2-2.5,10.4-4,15.4c-0.2,0.6,0.2,1.1,0.7,1.3c0.1,0,0.1,0,0.2,0c0.5,0.1,0.9-0.2,1.1-0.7
+ c1.4-5.2,2.8-10.3,4.1-15.5c0.2-0.5-0.2-1-0.8-1.2C457.6,468,457.1,468.4,456.9,468.8z"/>
+ <path class="st0" d="M439.5,232.8c-1.6-5-3.4-10.1-5.3-15.1c-0.1-0.5-0.7-0.7-1.2-0.6c-0.5,0.1-0.7,0.7-0.6,1.2
+ c1.8,5,3.6,10,5.3,15c0.2,0.4,0.4,0.7,0.8,0.7c0.1,0,0.3,0,0.4-0.1C439.5,233.9,439.8,233.3,439.5,232.8z"/>
+ <path class="st0" d="M401.3,145.9c0.4-0.3,0.6-0.8,0.4-1.4c-2.5-4.6-5-9.4-7.7-14c-0.3-0.4-0.9-0.6-1.4-0.4
+ c-0.4,0.3-0.6,0.9-0.4,1.4c2.7,4.6,5.2,9.4,7.7,14c0.2,0.3,0.4,0.5,0.7,0.5C400.9,146.1,401.1,146,401.3,145.9z"/>
+ <path class="st0" d="M461.9,326.1c-0.8-5.3-1.7-10.6-2.7-15.8c0-0.6-0.6-1-1.1-0.8c-0.6,0-1,0.6-0.8,1.1c1,5.2,1.9,10.5,2.7,15.7
+ c0.2,0.4,0.5,0.8,0.9,0.8c0.1,0,0.2,0,0.3,0C461.7,327.1,462.1,326.6,461.9,326.1z"/>
+ <path class="st0" d="M461,454.4C461.1,454.4,461.1,454.4,461,454.4c0.6,0.1,1.1-0.3,1.2-0.8c0.9-5.2,1.8-10.6,2.5-15.8
+ c0.1-0.5-0.3-1-0.9-1.1c-0.5-0.1-1,0.3-1.1,0.9c-0.7,5.3-1.6,10.6-2.5,15.7C460.1,453.9,460.4,454.5,461,454.4z"/>
+ <path class="st0" d="M407.2,159.6c2.3,4.8,4.7,9.6,6.9,14.4c0.2,0.3,0.5,0.6,0.8,0.6c0.2,0,0.3,0,0.5,0c0.4-0.3,0.7-0.8,0.5-1.4
+ c-2.3-4.8-4.6-9.7-6.9-14.4c-0.2-0.5-0.8-0.7-1.4-0.5C407.1,158.6,407,159.2,407.2,159.6z"/>
+ <path class="st0" d="M466.5,421.9c0.4-5.3,0.8-10.7,1-16c0-0.5-0.4-1.1-1-1c-0.5,0-1,0.4-1,1c-0.2,5.3-0.6,10.6-1,15.9
+ c-0.1,0.6,0.3,1,0.9,1.1l0,0C465.9,422.9,466.4,422.5,466.5,421.9z"/>
+ <path class="st0" d="M465.3,373.9c0.3,5.4,0.4,10.7,0.5,16c0,0.5,0.4,1,0.9,1l0.1,0c0.6,0,1.1-0.5,1-1c-0.1-5.3-0.2-10.7-0.5-16.1
+ c0-0.5-0.5-1-1.1-0.9C465.6,372.9,465.2,373.4,465.3,373.9z"/>
+ <path class="st0" d="M164,766.2c0.2,0.3,0.5,0.6,0.8,0.6c0.2,0,0.3,0,0.5,0c4.9-2.1,9.9-4.4,14.7-6.6c0.4-0.3,0.7-0.8,0.5-1.4
+ c-0.3-0.4-0.8-0.7-1.4-0.5c-4.8,2.2-9.7,4.4-14.6,6.5C164,765.1,163.8,765.7,164,766.2z"/>
+ <path class="st0" d="M134.3,778.5c0.2,0.3,0.4,0.6,0.8,0.6c0.2,0,0.3,0,0.5,0c5-1.9,9.9-4,14.9-6c0.5-0.2,0.8-0.8,0.6-1.3
+ c-0.2-0.5-0.8-0.8-1.3-0.6c-4.9,2-9.8,4.1-14.8,6C134.4,777.4,134.2,778,134.3,778.5z"/>
+ <path class="st0" d="M193.2,752.8c0.1,0.3,0.4,0.6,0.7,0.6c0.1,0,0.3-0.1,0.5-0.1c4.8-2.3,9.6-4.7,14.3-7.2
+ c0.5-0.2,0.7-0.8,0.5-1.4s-0.8-0.7-1.4-0.5c-4.7,2.5-9.5,4.8-14.3,7.2C193.1,751.7,192.9,752.3,193.2,752.8z"/>
+ <path class="st0" d="M73.5,799.3c0.1,0.4,0.4,0.7,0.8,0.7c0.1,0,0.3,0,0.4-0.1c3.3-0.9,8.7-2.5,15.5-4.7c0.5-0.1,0.8-0.7,0.6-1.2
+ c-0.1-0.5-0.7-0.8-1.2-0.6c-6.8,2.1-12.1,3.7-15.4,4.6C73.7,798.2,73.5,798.6,73.5,799.3z"/>
+ <path class="st0" d="M104.3,789.5c0.2,0.4,0.4,0.7,0.8,0.7c0.1,0,0.3,0,0.4-0.1c4.9-1.7,10.1-3.5,15.1-5.5c0.5-0.1,0.8-0.7,0.6-1.2
+ c-0.1-0.5-0.7-0.8-1.2-0.6c-5.1,1.8-10.2,3.6-15.1,5.4C104.4,788.4,104.1,789,104.3,789.5z"/>
+ <path class="st0" d="M222.1,736.9c-0.4,0.3-0.6,0.8-0.4,1.4c0.2,0.3,0.4,0.5,0.7,0.5c0.2,0,0.4-0.1,0.6-0.1c4.7-2.6,9.4-5.2,14-7.8
+ c0.4-0.3,0.6-0.9,0.4-1.4c-0.3-0.4-0.9-0.6-1.4-0.4C231.4,731.7,226.8,734.4,222.1,736.9z"/>
+ <path class="st0" d="M303,685.5c-0.4,0.4-0.5,0.9-0.2,1.4c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0,0.5,0,0.7-0.2c4.3-3.2,8.6-6.5,12.7-9.8
+ c0.4-0.4,0.5-0.9,0.2-1.4c-0.4-0.4-0.9-0.5-1.4-0.2C311.6,679.1,307.3,682.3,303,685.5z"/>
+ <path class="st0" d="M357.9,77.6c3.1,4.4,6.1,8.8,9,13.2c0.2,0.3,0.4,0.5,0.7,0.5c0.2,0,0.4,0,0.6-0.1c0.4-0.3,0.6-0.9,0.3-1.4
+ c-2.9-4.4-5.9-8.9-9-13.3c-0.4-0.4-0.9-0.6-1.4-0.3C357.8,76.4,357.7,77.1,357.9,77.6z"/>
+ <path class="st0" d="M276.8,704c-0.4,0.3-0.6,0.9-0.3,1.4c0.2,0.3,0.4,0.5,0.7,0.5c0.2,0,0.4,0,0.6-0.1c4.5-3,9-6.1,13.3-9.1
+ c0.4-0.4,0.6-0.9,0.3-1.4c-0.4-0.4-0.9-0.6-1.4-0.3C285.8,698,281.4,701,276.8,704z"/>
+ <path class="st0" d="M375.7,104c2.9,4.6,5.7,9.1,8.4,13.6c0.2,0.3,0.4,0.5,0.7,0.5c0.2,0,0.4-0.1,0.6-0.1c0.5-0.2,0.6-0.9,0.4-1.4
+ c-2.7-4.4-5.6-9-8.5-13.6c-0.3-0.4-0.9-0.5-1.4-0.3C375.6,103,375.4,103.7,375.7,104z"/>
+ <path class="st0" d="M328.1,665.6c-0.4,0.4-0.5,0.9-0.2,1.4c0.2,0.2,0.5,0.4,0.7,0.4s0.5,0,0.7-0.2c4.1-3.4,8.2-7,12.1-10.5
+ c0.4-0.4,0.4-1,0.1-1.4c-0.4-0.4-1-0.4-1.4-0.1C336.3,658.8,332.1,662.2,328.1,665.6z"/>
+ <path class="st0" d="M299.4,0.2c-0.4,0.4-0.5,0.9-0.2,1.4c3.4,4.1,6.8,8.3,10.2,12.4c0.2,0.2,0.5,0.4,0.7,0.4s0.5,0,0.7-0.2
+ c0.4-0.4,0.5-0.9,0.2-1.4c-3.4-4.2-6.9-8.4-10.2-12.4C300.5-0.1,299.9-0.1,299.4,0.2z"/>
+ <path class="st0" d="M319.6,26.5c3.4,4.2,6.8,8.5,9.9,12.6c0.2,0.2,0.4,0.3,0.7,0.4s0.5,0,0.7-0.2c0.4-0.4,0.5-0.9,0.2-1.4
+ c-3.1-4.1-6.5-8.3-9.9-12.6c-0.4-0.4-0.9-0.5-1.4-0.2C319.3,25.4,319.2,26,319.6,26.5z"/>
+ <path class="st0" d="M249.9,721c-0.5,0.2-0.6,0.9-0.4,1.4c0.2,0.3,0.4,0.5,0.7,0.5c0.2,0,0.4-0.1,0.6-0.1c4.7-2.8,9.2-5.7,13.7-8.4
+ c0.4-0.3,0.5-0.9,0.3-1.4c-0.3-0.4-0.9-0.5-1.4-0.3C259.1,715.4,254.5,718.3,249.9,721z"/>
+ <path class="st0" d="M339.1,51.8c3.3,4.3,6.5,8.6,9.6,12.8c0.2,0.2,0.4,0.3,0.7,0.4s0.5,0,0.7-0.2c0.5-0.3,0.6-0.9,0.3-1.4
+ c-3-4.3-6.2-8.6-9.5-12.9c-0.4-0.4-0.9-0.5-1.4-0.2C339,50.6,338.9,51.2,339.1,51.8z"/>
+ <path class="st0" d="M3.7,819.6l47,13.8c1.3,0.4,2.7,0.2,4-0.5c1.2-0.7,2.1-1.8,2.5-3.1c0.4-1.3,0.3-2.6-0.3-3.7l-3.1-6.4l7.7-4.2
+ c0.9-0.4,1.7-1.3,2.2-2.2c0.7-1.2,0.7-2.7,0.3-3.9c-0.4-1.3-1.3-2.3-2.6-3L50.6,801l6.2-12.2c1.2-2.5,0.2-5.7-2.3-6.9
+ c-1.6-0.8-3.5-0.8-5.1,0.2L2.5,810.4c0,0,0,0-0.1,0.1c-1.2,0.7-1.9,1.8-2.3,3.2c-0.3,1.4-0.1,2.7,0.5,3.9
+ C1.5,818.4,2.5,819.2,3.7,819.6z M55.1,826.9c0.3,0.7,0.5,1.5,0.3,2.3c-0.2,0.8-0.7,1.5-1.5,1.9c-0.7,0.4-1.6,0.5-2.4,0.2l-47-13.8
+ c-0.7-0.2-1.4-0.8-1.8-1.4c-0.1-0.1-0.1-0.2-0.2-0.3l43.5-7.9L55.1,826.9z M60.3,808.2c0.7,0.4,1.4,1,1.6,1.8
+ c0.3,0.8,0.2,1.6-0.1,2.4c-0.3,0.5-0.7,1-1.1,1.3c-0.1,0.1-0.1,0.1-0.2,0.1l-7.6,4.1L47.6,807l2.2-4.3L60.3,808.2z M3.6,811.9
+ L3.6,811.9l46.9-28.3c0.9-0.6,2.1-0.6,3.1-0.1c1.6,0.8,2.2,2.8,1.4,4.3L45.7,806l-43.6,7.9c0,0-0.1-0.1,0-0.1
+ C2.4,813,2.8,812.4,3.6,811.9z"/>
+</g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 467.8 833.6" style="enable-background:new 0 0 467.8 833.6;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#B79673;}
+</style>
+<g>
+ <path class="st0" d="M31.7,529c-0.3-0.5-0.8-0.7-1.4-0.4c-0.5,0.3-0.7,0.8-0.4,1.4c2.2,4.8,4.6,9.6,7,14.4c0.2,0.4,0.6,0.5,1,0.5
+ c0.1,0,0.2,0,0.4-0.1c0.5-0.3,0.7-0.9,0.4-1.4C36.3,538.6,33.9,533.8,31.7,529z"/>
+ <path class="st0" d="M17,279.4c0.1-0.5-0.2-1.1-0.7-1.2c-0.5-0.1-1.1,0.2-1.2,0.7c-1.2,5.2-2.4,10.5-3.5,15.6
+ c-0.1,0.5,0.2,1.1,0.7,1.2c0.1,0,0.2,0.1,0.3,0.1c0.4,0,0.8-0.4,0.8-0.8C14.6,289.8,15.8,284.5,17,279.4z"/>
+ <path class="st0" d="M19.8,499.5c-0.2-0.5-0.8-0.8-1.3-0.7c-0.5,0.2-0.8,0.8-0.7,1.3c1.7,5,3.6,10,5.6,15c0.1,0.4,0.6,0.6,1.1,0.6
+ c0.1,0,0.2,0,0.3,0c0.5-0.2,0.7-0.8,0.6-1.3C23.4,509.6,21.6,504.5,19.8,499.5z"/>
+ <path class="st0" d="M24.7,247.3c-0.5-0.1-1.1,0.1-1.2,0.6c-1.5,5.1-3,10.2-4.4,15.4c-0.1,0.5,0.1,1.1,0.7,1.2
+ c0.1,0,0.2,0.1,0.4,0.1c0.4,0,0.8-0.3,0.8-0.7c1.4-5.1,2.8-10.3,4.4-15.3C25.5,248.1,25.2,247.5,24.7,247.3z"/>
+ <path class="st0" d="M4.7,341.1c-0.5,0-1.1,0.3-1.1,0.8c-0.4,3.5-0.9,7-1.2,10.3c-0.2,1.8-0.4,3.8-0.5,5.6c0,0.5,0.3,1.1,0.9,1.1
+ c0.1,0,0.1,0,0.2,0c0.5-0.1,0.9-0.4,0.9-0.9c0.2-1.8,0.4-3.7,0.6-5.5c0.4-3.4,0.8-6.8,1.2-10.3C5.6,341.6,5.3,341.1,4.7,341.1z"/>
+ <path class="st0" d="M46.5,557.4c-0.3-0.5-0.9-0.6-1.3-0.3c-0.5,0.3-0.6,0.9-0.3,1.3c2.7,4.6,5.5,9.2,8.4,13.7
+ c0.2,0.4,0.6,0.5,1,0.5c0.1,0,0.3,0,0.4-0.1c0.5-0.3,0.6-0.9,0.3-1.3C51.9,566.5,49.1,561.9,46.5,557.4z"/>
+ <path class="st0" d="M104.6,633c-0.3-0.4-1.1-0.4-1.4,0c-0.4,0.3-0.4,1.1,0,1.4c3.7,3.8,7.5,7.6,11.4,11.3c0.2,0.2,0.5,0.3,0.8,0.3
+ c0.2,0,0.4-0.1,0.6-0.3c0.4-0.4,0.4-1.1-0.1-1.4C112,640.6,108.3,636.8,104.6,633z"/>
+ <path class="st0" d="M63.6,584.1c-0.4-0.5-1-0.6-1.4-0.2c-0.5,0.4-0.6,1-0.2,1.4c3,4.3,6.3,8.6,9.5,12.9c0.2,0.3,0.6,0.4,1,0.4
+ c0.2,0,0.4,0,0.5-0.2c0.5-0.4,0.5-1,0.1-1.4C69.9,592.8,66.8,588.4,63.6,584.1z"/>
+ <path class="st0" d="M46.6,187.3c-0.5-0.2-1.1,0-1.3,0.6c-2.1,4.9-4.2,9.9-6.1,14.8c-0.2,0.5,0,1.1,0.6,1.3c0.2,0.1,0.3,0.1,0.5,0
+ c0.4,0,0.7-0.3,0.8-0.6c1.9-5,4-9.8,6.1-14.7C47.3,188.1,47.2,187.5,46.6,187.3z"/>
+ <path class="st0" d="M83.2,609.4c-0.4-0.5-1-0.5-1.4-0.1c-0.5,0.4-0.5,1-0.1,1.4c3.4,4,6.9,8.1,10.5,12.1c0.2,0.3,0.5,0.3,0.8,0.3
+ c0.2,0,0.4-0.1,0.6-0.3c0.5-0.4,0.5-1,0-1.4C90.1,617.5,86.6,613.4,83.2,609.4z"/>
+ <path class="st0" d="M9.7,468.2c-0.6,0.2-0.9,0.7-0.8,1.2c1.2,5.2,2.6,10.4,4.1,15.5c0.2,0.5,0.6,0.7,1.1,0.7c0.1,0,0.1,0,0.2,0
+ c0.5-0.2,0.8-0.7,0.7-1.3c-1.5-5.1-2.8-10.2-4-15.4C10.7,468.4,10.2,468,9.7,468.2z"/>
+ <path class="st0" d="M28.8,234c0.1,0.1,0.3,0.1,0.4,0.1c0.4,0,0.7-0.3,0.8-0.7c1.6-5,3.4-10.1,5.3-15c0.1-0.5,0-1.1-0.6-1.2
+ c-0.5-0.1-1.1,0-1.2,0.6c-1.8,5-3.6,10.1-5.3,15.1C28,233.3,28.3,233.9,28.8,234z"/>
+ <path class="st0" d="M67.1,146.1c0.3,0,0.6-0.2,0.7-0.5c2.5-4.6,5-9.4,7.7-14c0.3-0.4,0.1-1.1-0.4-1.4s-1.1-0.1-1.4,0.4
+ c-2.7,4.6-5.2,9.4-7.7,14c-0.2,0.5-0.1,1.1,0.4,1.4C66.7,146,66.9,146.1,67.1,146.1z"/>
+ <path class="st0" d="M6.7,327.2c0.1,0,0.2,0,0.3,0c0.4,0,0.8-0.4,0.9-0.8c0.8-5.2,1.7-10.6,2.7-15.7c0.1-0.5-0.2-1.1-0.8-1.1
+ c-0.5-0.1-1.1,0.2-1.1,0.8c-1,5.3-1.9,10.5-2.7,15.8C5.7,326.6,6,327.1,6.7,327.2z"/>
+ <path class="st0" d="M7.5,453.3c-0.9-5.1-1.7-10.5-2.5-15.7C5,437,4.5,436.7,4,436.7c-0.6,0.1-0.9,0.6-0.9,1.1
+ c0.7,5.3,1.6,10.6,2.5,15.8c0.1,0.5,0.6,0.8,1.1,0.8c0,0,0,0,0.1,0C7.4,454.5,7.7,453.9,7.5,453.3z"/>
+ <path class="st0" d="M60.1,158.4c-0.5-0.2-1.1-0.1-1.4,0.5c-2.4,4.7-4.7,9.6-6.9,14.4c-0.2,0.5,0,1.1,0.5,1.4
+ c0.2,0.1,0.3,0.1,0.5,0c0.3,0,0.7-0.3,0.8-0.6c2.3-4.8,4.6-9.6,6.9-14.4C60.8,159.2,60.7,158.6,60.1,158.4z"/>
+ <path class="st0" d="M2.4,422.8L2.4,422.8c0.6-0.1,0.9-0.5,0.9-1.1c-0.4-5.3-0.8-10.6-1-15.9c-0.1-0.6-0.5-0.9-1-1
+ c-0.6,0-0.9,0.5-1,1c0.2,5.3,0.6,10.7,1,16C1.4,422.5,1.9,422.9,2.4,422.8z"/>
+ <path class="st0" d="M1.6,372.9c-0.6,0-1.1,0.4-1.1,0.9c-0.3,5.4-0.4,10.7-0.5,16.1c0,0.5,0.4,1,1,1l0.1,0c0.5-0.1,0.8-0.5,0.9-1
+ c0.1-5.2,0.3-10.6,0.5-16C2.6,373.4,2.2,372.9,1.6,372.9z"/>
+ <path class="st0" d="M303.2,764.9c-4.9-2.1-9.8-4.4-14.6-6.5c-0.5-0.2-1.1,0-1.4,0.5c-0.2,0.5,0,1.1,0.5,1.4
+ c4.8,2.2,9.8,4.5,14.7,6.6c0.2,0.1,0.3,0.1,0.5,0c0.3,0,0.7-0.3,0.8-0.6C304,765.7,303.7,765.1,303.2,764.9z"/>
+ <path class="st0" d="M332.9,777.1c-5-1.9-9.9-4-14.8-6c-0.5-0.2-1.1,0-1.3,0.6c-0.2,0.5,0,1.1,0.6,1.3c5,2,9.9,4.1,14.9,6
+ c0.2,0.1,0.3,0.1,0.5,0c0.4,0,0.7-0.3,0.8-0.6C333.6,778,333.4,777.4,332.9,777.1z"/>
+ <path class="st0" d="M274.2,751.5c-4.8-2.3-9.6-4.7-14.3-7.2c-0.5-0.2-1.1-0.1-1.4,0.5c-0.2,0.5-0.1,1.1,0.5,1.4
+ c4.7,2.5,9.5,4.8,14.3,7.2c0.2,0.1,0.4,0.2,0.5,0.1c0.3,0,0.7-0.3,0.7-0.6C274.9,752.3,274.7,751.7,274.2,751.5z"/>
+ <path class="st0" d="M393.5,797.9c-3.2-0.9-8.6-2.5-15.4-4.6c-0.5-0.1-1.1,0.1-1.2,0.6c-0.1,0.5,0.1,1.1,0.6,1.2
+ c6.8,2.2,12.1,3.8,15.5,4.7c0.1,0.1,0.3,0.1,0.4,0.1c0.4,0,0.8-0.3,0.8-0.7C394.3,798.6,394.1,798.2,393.5,797.9z"/>
+ <path class="st0" d="M362.9,788.3c-4.9-1.7-10-3.5-15.1-5.4c-0.5-0.2-1.1,0-1.2,0.6c-0.2,0.5,0,1.1,0.6,1.2
+ c5.1,1.9,10.2,3.7,15.1,5.5c0.1,0.1,0.3,0.1,0.4,0.1c0.4,0,0.7-0.3,0.8-0.7C363.7,789,363.4,788.4,362.9,788.3z"/>
+ <path class="st0" d="M231.7,729.1c-0.4-0.3-1.1-0.1-1.4,0.4c-0.3,0.4-0.1,1.1,0.4,1.4c4.6,2.6,9.3,5.2,14,7.8
+ c0.2,0.1,0.4,0.2,0.6,0.1c0.3,0,0.6-0.2,0.7-0.5c0.2-0.5,0.1-1.1-0.4-1.4C241,734.4,236.3,731.7,231.7,729.1z"/>
+ <path class="st0" d="M152.1,675.8c-0.4-0.4-1-0.3-1.4,0.2c-0.4,0.4-0.3,1,0.2,1.4c4.1,3.2,8.4,6.6,12.7,9.8
+ c0.2,0.2,0.4,0.3,0.7,0.2c0.3,0,0.5-0.2,0.7-0.4c0.4-0.4,0.3-1-0.2-1.4C160.5,682.3,156.2,679.1,152.1,675.8z"/>
+ <path class="st0" d="M109.6,76.2c-0.4-0.4-1-0.2-1.4,0.3c-3.1,4.4-6.1,8.9-9,13.3c-0.4,0.4-0.2,1.1,0.3,1.4
+ c0.2,0.2,0.4,0.2,0.6,0.1c0.3,0,0.6-0.2,0.7-0.5c2.9-4.4,5.9-8.8,9-13.2C110.1,77.1,110,76.4,109.6,76.2z"/>
+ <path class="st0" d="M177.7,695c-0.4-0.4-1-0.2-1.4,0.3c-0.4,0.4-0.2,1,0.3,1.4c4.3,3,8.8,6.1,13.3,9.1c0.2,0.2,0.4,0.2,0.6,0.1
+ c0.3,0,0.6-0.2,0.7-0.5c0.4-0.4,0.2-1.1-0.3-1.4C186.4,701,182,698,177.7,695z"/>
+ <path class="st0" d="M91.8,102.8c-0.4-0.3-1.1-0.2-1.4,0.3c-2.9,4.6-5.8,9.1-8.5,13.6c-0.3,0.4-0.2,1.1,0.4,1.4
+ c0.2,0.1,0.4,0.2,0.6,0.1c0.3,0,0.6-0.2,0.7-0.5c2.7-4.4,5.5-9,8.4-13.6C92.4,103.7,92.2,103,91.8,102.8z"/>
+ <path class="st0" d="M127.7,655.2c-0.4-0.4-1.1-0.4-1.4,0.1c-0.4,0.4-0.4,1.1,0.1,1.4c3.9,3.6,8,7.1,12.1,10.5
+ c0.2,0.2,0.5,0.2,0.7,0.2s0.5-0.2,0.7-0.4c0.4-0.4,0.3-1-0.2-1.4C135.6,662.2,131.5,658.8,127.7,655.2z"/>
+ <path class="st0" d="M167,0.4c-3.3,4-6.8,8.2-10.2,12.4c-0.4,0.4-0.3,1,0.2,1.4c0.2,0.2,0.5,0.2,0.7,0.2c0.2,0,0.5-0.2,0.7-0.4
+ c3.4-4.1,6.8-8.3,10.2-12.4c0.4-0.4,0.3-1-0.2-1.4C167.9-0.1,167.3-0.1,167,0.4z"/>
+ <path class="st0" d="M148,25.1c-0.4-0.4-1-0.3-1.4,0.2c-3.4,4.2-6.8,8.5-9.9,12.6c-0.4,0.4-0.3,1,0.2,1.4c0.2,0.2,0.4,0.3,0.7,0.2
+ s0.5-0.2,0.7-0.4c3.1-4.1,6.5-8.3,9.9-12.6C148.5,26,148.5,25.4,148,25.1z"/>
+ <path class="st0" d="M204.3,712.7c-0.4-0.3-1.1-0.2-1.4,0.3c-0.3,0.4-0.2,1.1,0.3,1.4c4.5,2.8,9,5.7,13.7,8.4
+ c0.2,0.1,0.4,0.2,0.6,0.1c0.3,0,0.6-0.2,0.7-0.5c0.3-0.4,0.2-1.1-0.4-1.4C213.3,718.3,208.7,715.4,204.3,712.7z"/>
+ <path class="st0" d="M128.4,50.3c-0.4-0.4-1-0.3-1.4,0.2c-3.3,4.3-6.5,8.6-9.5,12.9c-0.4,0.4-0.3,1,0.3,1.4
+ c0.2,0.2,0.4,0.3,0.7,0.2s0.5-0.2,0.7-0.4c3-4.2,6.2-8.5,9.6-12.8C128.9,51.2,128.8,50.6,128.4,50.3z"/>
+ <path class="st0" d="M467.1,817.5c0.6-1.2,0.9-2.5,0.5-3.9c-0.3-1.4-1.1-2.4-2.3-3.2c-0.1-0.1-0.1-0.1-0.1-0.1l-46.9-28.3
+ c-1.5-0.9-3.5-1-5.1-0.2c-2.5,1.2-3.5,4.4-2.3,6.9l6.2,12.2l-10.7,5.5c-1.2,0.7-2.1,1.7-2.6,3s-0.4,2.7,0.3,3.9
+ c0.5,0.9,1.3,1.7,2.2,2.2l7.7,4.2l-3.1,6.4c-0.5,1.1-0.7,2.4-0.3,3.7c0.4,1.3,1.2,2.4,2.5,3.1c1.2,0.7,2.7,0.8,4,0.5l47-13.8
+ C465.3,819.2,466.3,818.4,467.1,817.5z M422,808l43.5,7.9c-0.1,0.1-0.1,0.2-0.2,0.3c-0.4,0.7-1.1,1.2-1.8,1.4l-47,13.8
+ c-0.9,0.3-1.8,0.2-2.4-0.2c-0.8-0.4-1.3-1.1-1.5-1.9c-0.2-0.8-0.1-1.6,0.3-2.3L422,808z M418,802.7l2.2,4.3l-5.4,10.9l-7.6-4.1
+ c-0.1-0.1-0.1-0.1-0.2-0.1c-0.4-0.3-0.8-0.7-1.1-1.3c-0.3-0.8-0.4-1.7-0.1-2.4s0.9-1.4,1.6-1.8L418,802.7z M465.7,813.8
+ c0.1,0.1,0,0.1,0,0.1l-43.6-7.9l-9.3-18.2c-0.8-1.6-0.2-3.5,1.4-4.3c1-0.4,2.2-0.4,3.1,0.1l46.9,28.3l0,0
+ C465,812.4,465.4,813,465.7,813.8z"/>
+</g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 230 190.7" style="enable-background:new 0 0 230 190.7;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#B79673;}
+</style>
+<g>
+ <path class="st0" d="M41.6,64c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1s1-0.4,1-1V65C42.6,64.4,42.1,64,41.6,64z"/>
+ <path class="st0" d="M41.6,18c0.6,0,1-0.4,1-1V1c0-0.6-0.4-1-1-1s-1,0.4-1,1v16C40.6,17.6,41,18,41.6,18z"/>
+ <path class="st0" d="M81,40.6H65c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S81.6,40.6,81,40.6z"/>
+ <path class="st0" d="M17,40.6H1c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S17.6,40.6,17,40.6z"/>
+ <path class="st0" d="M49,40.6h-6.4V33c0-0.6-0.4-1-1-1s-1,0.4-1,1v7.6H33c-0.6,0-1,0.4-1,1s0.4,1,1,1h7.6V49c0,0.6,0.4,1,1,1
+ s1-0.4,1-1v-6.4H49c0.6,0,1-0.4,1-1S49.6,40.6,49,40.6z"/>
+ <path class="st0" d="M153.8,173.9c-0.6,0-1,0.4-1,1v14.8c0,0.6,0.4,1,1,1s1-0.4,1-1v-14.8C154.8,174.4,154.4,173.9,153.8,173.9z"/>
+ <path class="st0" d="M153.8,141.9c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1s1-0.4,1-1v-16C154.8,142.4,154.4,141.9,153.8,141.9z"/>
+ <path class="st0" d="M177.2,165.3h-14.8c-0.6,0-1,0.4-1,1s0.4,1,1,1h14.8c0.6,0,1-0.4,1-1S177.8,165.3,177.2,165.3z"/>
+ <path class="st0" d="M146.4,165.3h-16c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S147,165.3,146.4,165.3z"/>
+ <path class="st0" d="M205.7,29.1c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1s1-0.4,1-1v-16C206.7,29.5,206.2,29.1,205.7,29.1z"/>
+ <path class="st0" d="M205.7,61.1c-0.6,0-1,0.4-1,1v14.8c0,0.6,0.4,1,1,1s1-0.4,1-1V62.1C206.7,61.5,206.2,61.1,205.7,61.1z"/>
+ <path class="st0" d="M229,52.4h-14.8c-0.6,0-1,0.4-1,1s0.4,1,1,1H229c0.6,0,1-0.4,1-1S229.6,52.4,229,52.4z"/>
+ <path class="st0" d="M198.3,52.4h-16c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S198.8,52.4,198.3,52.4z"/>
+</g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 735.9 735.9" style="enable-background:new 0 0 735.9 735.9;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#B79673;}
+</style>
+<path class="st0" d="M369.4,735.9c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c4.3,0,8.6-0.1,12.8-0.3c0.3,0,0.5,0.2,0.5,0.5
+ c0,0.3-0.2,0.5-0.5,0.5C377.9,735.8,373.6,735.9,369.4,735.9C369.4,735.9,369.4,735.9,369.4,735.9z M356.6,735.7
+ C356.6,735.7,356.6,735.7,356.6,735.7c-4.3-0.1-8.6-0.3-12.8-0.6c-0.3,0-0.5-0.3-0.5-0.5s0.2-0.5,0.5-0.5c4.2,0.3,8.5,0.5,12.8,0.6
+ c0.3,0,0.5,0.2,0.5,0.5C357.1,735.5,356.8,735.7,356.6,735.7z M394.9,734.9c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5
+ c4.2-0.3,8.5-0.7,12.7-1.1c0.3,0,0.5,0.2,0.6,0.4c0,0.3-0.2,0.5-0.4,0.6C403.5,734.2,399.2,734.6,394.9,734.9
+ C395,734.9,395,734.9,394.9,734.9z M331,734.1C331,734.1,331,734.1,331,734.1c-4.3-0.4-8.6-0.9-12.8-1.5c-0.3,0-0.5-0.3-0.4-0.6
+ c0-0.3,0.3-0.5,0.6-0.4c4.2,0.6,8.5,1.1,12.7,1.5c0.3,0,0.5,0.3,0.4,0.5C331.5,733.9,331.3,734.1,331,734.1z M420.4,732.2
+ c-0.2,0-0.5-0.2-0.5-0.4c0-0.3,0.2-0.5,0.4-0.6c4.2-0.6,8.4-1.3,12.6-2c0.3,0,0.5,0.1,0.6,0.4c0,0.3-0.1,0.5-0.4,0.6
+ C428.9,730.9,424.7,731.6,420.4,732.2C420.4,732.2,420.4,732.2,420.4,732.2z M305.7,730.7C305.7,730.7,305.6,730.7,305.7,730.7
+ c-4.3-0.7-8.5-1.5-12.7-2.4c-0.3-0.1-0.4-0.3-0.4-0.6c0.1-0.3,0.3-0.4,0.6-0.4c4.2,0.9,8.4,1.7,12.6,2.4c0.3,0,0.5,0.3,0.4,0.6
+ C306.1,730.5,305.9,730.7,305.7,730.7z M445.6,727.7c-0.2,0-0.4-0.2-0.5-0.4c-0.1-0.3,0.1-0.5,0.4-0.6c4.2-0.9,8.3-1.9,12.4-2.9
+ c0.3-0.1,0.5,0.1,0.6,0.4s-0.1,0.5-0.4,0.6c-4.1,1-8.3,2-12.5,2.9C445.6,727.7,445.6,727.7,445.6,727.7z M280.6,725.5
+ c0,0-0.1,0-0.1,0c-4.1-1-8.3-2.1-12.4-3.3c-0.3-0.1-0.4-0.4-0.3-0.6s0.3-0.4,0.6-0.3c4.1,1.1,8.2,2.2,12.4,3.2
+ c0.3,0.1,0.4,0.3,0.4,0.6C281.1,725.3,280.9,725.5,280.6,725.5z M470.4,721.5c-0.2,0-0.4-0.1-0.5-0.4c-0.1-0.3,0.1-0.5,0.3-0.6
+ c4.1-1.2,8.2-2.5,12.2-3.8c0.3-0.1,0.5,0.1,0.6,0.3c0.1,0.3-0.1,0.5-0.3,0.6c-4,1.3-8.2,2.6-12.2,3.8
+ C470.5,721.4,470.4,721.5,470.4,721.5z M256,718.5c-0.1,0-0.1,0-0.2,0c-4.1-1.3-8.2-2.7-12.2-4.1c-0.3-0.1-0.4-0.4-0.3-0.6
+ c0.1-0.3,0.4-0.4,0.6-0.3c4,1.4,8.1,2.8,12.1,4.1c0.3,0.1,0.4,0.4,0.3,0.6C256.4,718.4,256.2,718.5,256,718.5z M494.7,713.5
+ c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0-0.5,0.3-0.6c4-1.5,8-3,11.9-4.6c0.3-0.1,0.5,0,0.7,0.3c0.1,0.3,0,0.5-0.3,0.7
+ c-3.9,1.6-7.9,3.2-11.9,4.6C494.8,713.5,494.8,713.5,494.7,713.5z M231.8,709.9c-0.1,0-0.1,0-0.2,0c-4-1.6-8-3.3-11.8-5
+ c-0.3-0.1-0.4-0.4-0.3-0.7c0.1-0.3,0.4-0.4,0.7-0.3c3.9,1.7,7.9,3.4,11.8,5c0.3,0.1,0.4,0.4,0.3,0.7
+ C232.2,709.8,232,709.9,231.8,709.9z M518.4,703.8c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0-0.5,0.3-0.7c3.9-1.7,7.7-3.6,11.5-5.4
+ c0.3-0.1,0.5,0,0.7,0.2c0.1,0.2,0,0.5-0.2,0.7c-3.8,1.9-7.7,3.7-11.6,5.4C518.5,703.8,518.4,703.8,518.4,703.8z M208.4,699.5
+ c-0.1,0-0.1,0-0.2,0c-3.8-1.9-7.7-3.8-11.5-5.8c-0.2-0.1-0.3-0.4-0.2-0.7c0.1-0.2,0.4-0.3,0.7-0.2c3.8,2,7.6,3.9,11.4,5.8
+ c0.2,0.1,0.4,0.4,0.2,0.7C208.7,699.4,208.6,699.5,208.4,699.5z M541.3,692.6c-0.2,0-0.4-0.1-0.4-0.3c-0.1-0.2,0-0.5,0.2-0.7
+ c3.7-2,7.5-4.1,11.1-6.2c0.2-0.1,0.5-0.1,0.7,0.2c0.1,0.2,0.1,0.5-0.2,0.7c-3.7,2.1-7.4,4.2-11.2,6.2
+ C541.4,692.5,541.3,692.6,541.3,692.6z M185.7,687.6c-0.1,0-0.2,0-0.2-0.1c-3.7-2.1-7.4-4.3-11-6.6c-0.2-0.1-0.3-0.5-0.2-0.7
+ c0.1-0.2,0.5-0.3,0.7-0.2c3.6,2.2,7.3,4.4,11,6.6c0.2,0.1,0.3,0.4,0.2,0.7C186,687.5,185.9,687.6,185.7,687.6z M563.3,679.7
+ c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.2-0.1-0.5,0.2-0.7c3.6-2.3,7.2-4.6,10.7-7c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7
+ c-3.5,2.4-7.1,4.7-10.7,7C563.5,679.7,563.4,679.7,563.3,679.7z M163.9,674.1c-0.1,0-0.2,0-0.3-0.1c-3.5-2.4-7.1-4.8-10.5-7.3
+ c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c3.4,2.5,7,4.9,10.5,7.3c0.2,0.2,0.3,0.5,0.1,0.7
+ C164.2,674,164.1,674.1,163.9,674.1z M584.5,665.4c-0.2,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.1-0.5,0.1-0.7c3.4-2.5,6.9-5.1,10.2-7.7
+ c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7c-3.3,2.6-6.8,5.2-10.2,7.7C584.7,665.3,584.6,665.4,584.5,665.4z M143.1,659.1
+ c-0.1,0-0.2,0-0.3-0.1c-3.4-2.6-6.7-5.3-10-8c-0.2-0.2-0.2-0.5-0.1-0.7c0.2-0.2,0.5-0.2,0.7-0.1c3.3,2.7,6.6,5.4,10,8
+ c0.2,0.2,0.3,0.5,0.1,0.7C143.4,659.1,143.3,659.1,143.1,659.1z M604.6,649.6c-0.1,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.2-0.5,0.1-0.7
+ c3.2-2.7,6.5-5.6,9.6-8.4c0.2-0.2,0.5-0.2,0.7,0s0.2,0.5,0,0.7c-3.2,2.9-6.4,5.7-9.7,8.4C604.8,649.5,604.7,649.6,604.6,649.6z
+ M123.4,642.8c-0.1,0-0.2,0-0.3-0.1c-3.2-2.8-6.3-5.7-9.4-8.7c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0
+ c3.1,2.9,6.2,5.9,9.4,8.7c0.2,0.2,0.2,0.5,0,0.7C123.7,642.7,123.6,642.8,123.4,642.8z M623.6,632.4c-0.1,0-0.3-0.1-0.4-0.2
+ c-0.2-0.2-0.2-0.5,0-0.7c3-2.9,6.1-6,9-9c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7c-3,3.1-6,6.1-9,9.1
+ C623.8,632.4,623.7,632.4,623.6,632.4z M105,625.1c-0.1,0-0.3-0.1-0.4-0.2c-3-3-5.9-6.2-8.8-9.3c-0.2-0.2-0.2-0.5,0-0.7
+ c0.2-0.2,0.5-0.2,0.7,0c2.8,3.1,5.8,6.3,8.8,9.3c0.2,0.2,0.2,0.5,0,0.7C105.2,625,105.1,625.1,105,625.1z M641.3,614
+ c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.2-0.5,0-0.7c2.8-3.1,5.6-6.4,8.4-9.7c0.2-0.2,0.5-0.2,0.7-0.1c0.2,0.2,0.2,0.5,0.1,0.7
+ c-2.7,3.3-5.6,6.5-8.4,9.7C641.6,614,641.5,614,641.3,614z M87.7,606.2c-0.1,0-0.3-0.1-0.4-0.2c-2.8-3.2-5.5-6.6-8.1-9.9
+ c-0.2-0.2-0.1-0.5,0.1-0.7c0.2-0.2,0.5-0.1,0.7,0.1c2.6,3.3,5.3,6.6,8.1,9.9c0.2,0.2,0.2,0.5-0.1,0.7
+ C88,606.1,87.8,606.2,87.7,606.2z M657.8,594.4c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7c2.6-3.3,5.2-6.8,7.7-10.2
+ c0.2-0.2,0.5-0.3,0.7-0.1c0.2,0.2,0.3,0.5,0.1,0.7c-2.5,3.4-5.1,6.9-7.7,10.2C658.1,594.3,657.9,594.4,657.8,594.4z M71.9,586.1
+ c-0.2,0-0.3-0.1-0.4-0.2c-2.5-3.4-5-6.9-7.4-10.4c-0.2-0.2-0.1-0.5,0.1-0.7c0.2-0.2,0.5-0.1,0.7,0.1c2.4,3.5,4.9,7,7.4,10.4
+ c0.2,0.2,0.1,0.5-0.1,0.7C72.1,586.1,72,586.1,71.9,586.1z M672.8,573.7c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7
+ c2.4-3.5,4.7-7.1,7-10.7c0.1-0.2,0.5-0.3,0.7-0.2c0.2,0.1,0.3,0.5,0.2,0.7c-2.3,3.6-4.6,7.2-7,10.8
+ C673.2,573.6,673,573.7,672.8,573.7z M57.4,565c-0.2,0-0.3-0.1-0.4-0.2c-2.3-3.6-4.5-7.3-6.7-10.9c-0.1-0.2-0.1-0.5,0.2-0.7
+ c0.2-0.1,0.5-0.1,0.7,0.2c2.1,3.6,4.4,7.3,6.6,10.9c0.1,0.2,0.1,0.5-0.2,0.7C57.6,565,57.5,565,57.4,565z M686.4,551.9
+ c-0.1,0-0.2,0-0.2-0.1c-0.2-0.1-0.3-0.4-0.2-0.7c2.1-3.7,4.2-7.5,6.2-11.2c0.1-0.2,0.4-0.3,0.7-0.2c0.2,0.1,0.3,0.4,0.2,0.7
+ c-2,3.8-4.1,7.5-6.2,11.2C686.8,551.8,686.6,551.9,686.4,551.9z M44.5,543c-0.2,0-0.3-0.1-0.4-0.3c-2-3.7-4-7.6-5.9-11.4
+ c-0.1-0.2,0-0.5,0.2-0.7c0.2-0.1,0.5,0,0.7,0.2c1.9,3.8,3.9,7.6,5.9,11.3c0.1,0.2,0,0.5-0.2,0.7C44.7,543,44.6,543,44.5,543z
+ M698.4,529.3c-0.1,0-0.1,0-0.2-0.1c-0.2-0.1-0.4-0.4-0.2-0.7c1.9-3.8,3.7-7.7,5.4-11.6c0.1-0.3,0.4-0.4,0.7-0.3
+ c0.3,0.1,0.4,0.4,0.3,0.7c-1.7,3.9-3.6,7.8-5.4,11.6C698.8,529.2,698.6,529.3,698.4,529.3z M33.2,520.1c-0.2,0-0.4-0.1-0.5-0.3
+ c-1.8-3.9-3.5-7.8-5.1-11.7c-0.1-0.3,0-0.5,0.3-0.7c0.3-0.1,0.5,0,0.7,0.3c1.6,3.9,3.3,7.8,5.1,11.7c0.1,0.3,0,0.5-0.2,0.7
+ C33.3,520.1,33.2,520.1,33.2,520.1z M708.9,505.9c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.7c1.6-3.9,3.1-8,4.6-12
+ c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-1.5,4-3,8-4.6,12C709.3,505.8,709.1,505.9,708.9,505.9z M23.4,496.5
+ c-0.2,0-0.4-0.1-0.5-0.3c-1.5-4-2.9-8.1-4.3-12.1c-0.1-0.3,0.1-0.5,0.3-0.6c0.3-0.1,0.5,0.1,0.6,0.3c1.3,4,2.8,8.1,4.2,12.1
+ c0.1,0.3,0,0.5-0.3,0.6C23.5,496.5,23.5,496.5,23.4,496.5z M717.6,481.8c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.6
+ c1.3-4,2.6-8.2,3.7-12.2c0.1-0.3,0.3-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-1.2,4.1-2.4,8.2-3.7,12.3
+ C718,481.6,717.8,481.8,717.6,481.8z M15.4,472.2c-0.2,0-0.4-0.1-0.5-0.4c-1.2-4.1-2.3-8.2-3.4-12.4c-0.1-0.3,0.1-0.5,0.4-0.6
+ c0.3-0.1,0.5,0.1,0.6,0.4c1,4.1,2.2,8.2,3.4,12.3c0.1,0.3-0.1,0.5-0.3,0.6C15.4,472.2,15.4,472.2,15.4,472.2z M724.7,457.1
+ c0,0-0.1,0-0.1,0c-0.3-0.1-0.4-0.3-0.4-0.6c1-4.1,2-8.3,2.9-12.5c0.1-0.3,0.3-0.4,0.6-0.4c0.3,0.1,0.4,0.3,0.4,0.6
+ c-0.9,4.2-1.8,8.4-2.9,12.5C725.1,457,724.9,457.1,724.7,457.1z M9,447.4c-0.2,0-0.4-0.2-0.5-0.4c-0.9-4.2-1.8-8.4-2.5-12.6
+ c0-0.3,0.1-0.5,0.4-0.6c0.3,0,0.5,0.1,0.6,0.4c0.8,4.2,1.6,8.4,2.5,12.5c0.1,0.3-0.1,0.5-0.4,0.6C9.1,447.4,9,447.4,9,447.4z
+ M729.9,432.1C729.9,432.1,729.9,432.1,729.9,432.1c-0.4-0.1-0.5-0.3-0.5-0.6c0.7-4.2,1.4-8.4,2-12.6c0-0.3,0.3-0.5,0.6-0.4
+ c0.3,0,0.5,0.3,0.4,0.6c-0.6,4.2-1.3,8.5-2,12.7C730.4,431.9,730.2,432.1,729.9,432.1z M4.4,422.2c-0.2,0-0.5-0.2-0.5-0.4
+ c-0.6-4.2-1.2-8.5-1.6-12.7c0-0.3,0.2-0.5,0.4-0.6c0.3,0,0.5,0.2,0.6,0.4c0.5,4.2,1,8.5,1.6,12.7C4.9,421.9,4.8,422.2,4.4,422.2
+ C4.5,422.2,4.4,422.2,4.4,422.2z M733.5,406.8C733.4,406.8,733.4,406.8,733.5,406.8c-0.3,0-0.5-0.3-0.5-0.6
+ c0.4-4.2,0.8-8.5,1.1-12.7c0-0.3,0.3-0.5,0.5-0.5c0.3,0,0.5,0.3,0.5,0.5c-0.3,4.3-0.7,8.6-1.1,12.8
+ C733.9,406.6,733.7,406.8,733.5,406.8z M1.6,396.8c-0.3,0-0.5-0.2-0.5-0.5c-0.3-4.2-0.6-8.5-0.8-12.8c0-0.3,0.2-0.5,0.5-0.5
+ c0.3,0,0.5,0.2,0.5,0.5c0.2,4.2,0.4,8.5,0.8,12.8C2.1,396.5,1.9,396.8,1.6,396.8C1.6,396.8,1.6,396.8,1.6,396.8z M735.2,381.2
+ C735.2,381.2,735.2,381.2,735.2,381.2c-0.3,0-0.5-0.2-0.5-0.5c0.1-4.2,0.2-8.5,0.2-12.8c0-1.9,0-3.8,0-5.6c0-0.3,0.2-0.5,0.5-0.5
+ c0,0,0,0,0,0c0.3,0,0.5,0.2,0.5,0.5c0,1.9,0,3.8,0,5.6c0,4.3-0.1,8.6-0.2,12.8C735.7,381,735.5,381.2,735.2,381.2z M0.5,371.2
+ c-0.3,0-0.5-0.2-0.5-0.5c0-0.9,0-1.9,0-2.8c0-3.3,0-6.7,0.1-10c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5
+ c-0.1,3.3-0.1,6.7-0.1,10c0,0.9,0,1.9,0,2.8C1,371,0.8,371.2,0.5,371.2C0.5,371.2,0.5,371.2,0.5,371.2z M735,350
+ c-0.3,0-0.5-0.2-0.5-0.5c-0.2-4.2-0.5-8.5-0.9-12.8c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0.4,4.2,0.6,8.5,0.9,12.8
+ C735.5,349.8,735.3,350,735,350C735,350,735,350,735,350z M1.2,345.7C1.2,345.7,1.2,345.7,1.2,345.7c-0.3,0-0.5-0.3-0.5-0.5
+ c0.3-4.2,0.6-8.5,1-12.8c0-0.3,0.3-0.5,0.5-0.4c0.3,0,0.5,0.3,0.4,0.5c-0.4,4.2-0.7,8.5-1,12.7C1.7,345.5,1.5,345.7,1.2,345.7z
+ M732.8,324.5c-0.2,0-0.5-0.2-0.5-0.4c-0.5-4.2-1.1-8.5-1.7-12.7c0-0.3,0.1-0.5,0.4-0.6c0.3,0,0.5,0.1,0.6,0.4
+ c0.6,4.2,1.2,8.5,1.7,12.7C733.4,324.2,733.2,324.5,732.8,324.5C732.9,324.5,732.9,324.5,732.8,324.5z M3.6,320.2
+ C3.6,320.2,3.6,320.2,3.6,320.2c-0.3,0-0.5-0.3-0.5-0.6c0.6-4.2,1.2-8.5,1.9-12.7c0-0.3,0.3-0.5,0.6-0.4c0.3,0,0.5,0.3,0.4,0.6
+ c-0.7,4.2-1.3,8.4-1.9,12.6C4.1,320,3.9,320.2,3.6,320.2z M728.9,299.2c-0.2,0-0.4-0.2-0.5-0.4c-0.8-4.2-1.7-8.4-2.6-12.5
+ c-0.1-0.3,0.1-0.5,0.4-0.6c0.3-0.1,0.5,0.1,0.6,0.4c0.9,4.1,1.8,8.4,2.6,12.5C729.5,298.9,729.3,299.2,728.9,299.2
+ C729,299.2,729,299.2,728.9,299.2z M7.8,295c0,0-0.1,0-0.1,0c-0.3-0.1-0.4-0.3-0.4-0.6c0.8-4.2,1.8-8.4,2.8-12.5
+ c0.1-0.3,0.3-0.4,0.6-0.4c0.3,0.1,0.4,0.3,0.4,0.6c-1,4.1-1.9,8.3-2.8,12.5C8.3,294.8,8.1,295,7.8,295z M723.3,274.3
+ c-0.2,0-0.4-0.1-0.5-0.4c-1.1-4.1-2.3-8.2-3.5-12.3c-0.1-0.3,0.1-0.5,0.3-0.6c0.3-0.1,0.5,0.1,0.6,0.3c1.2,4.1,2.4,8.2,3.5,12.3
+ c0.1,0.3-0.1,0.5-0.4,0.6C723.3,274.3,723.3,274.3,723.3,274.3z M13.8,270.1c0,0-0.1,0-0.1,0c-0.3-0.1-0.4-0.3-0.3-0.6
+ c1.1-4.1,2.4-8.2,3.6-12.3c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-1.3,4-2.5,8.2-3.6,12.3
+ C14.2,269.9,14,270.1,13.8,270.1z M715.9,249.8c-0.2,0-0.4-0.1-0.5-0.3c-1.4-4-2.8-8.1-4.3-12c-0.1-0.3,0-0.5,0.3-0.6
+ c0.3-0.1,0.5,0,0.6,0.3c1.5,4,3,8,4.3,12.1c0.1,0.3-0.1,0.5-0.3,0.6C716,249.8,715.9,249.8,715.9,249.8z M21.5,245.6
+ c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.6c1.4-4,2.9-8.1,4.5-12c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6
+ c-1.6,4-3.1,8-4.5,12C21.9,245.5,21.7,245.6,21.5,245.6z M706.8,225.9c-0.2,0-0.4-0.1-0.5-0.3c-1.6-3.9-3.4-7.8-5.2-11.7
+ c-0.1-0.3,0-0.5,0.2-0.7c0.3-0.1,0.5,0,0.7,0.2c1.8,3.8,3.5,7.8,5.2,11.7c0.1,0.3,0,0.5-0.3,0.7
+ C706.9,225.9,706.8,225.9,706.8,225.9z M30.9,221.8c-0.1,0-0.1,0-0.2,0c-0.3-0.1-0.4-0.4-0.3-0.7c1.7-3.9,3.5-7.8,5.3-11.7
+ c0.1-0.2,0.4-0.4,0.7-0.2c0.2,0.1,0.4,0.4,0.2,0.7c-1.8,3.8-3.6,7.8-5.3,11.6C31.3,221.7,31.1,221.8,30.9,221.8z M696,202.7
+ c-0.2,0-0.4-0.1-0.4-0.3c-1.9-3.8-3.9-7.6-6-11.3c-0.1-0.2,0-0.5,0.2-0.7c0.2-0.1,0.5,0,0.7,0.2c2,3.7,4.1,7.5,6,11.3
+ c0.1,0.2,0,0.5-0.2,0.7C696.2,202.7,696.1,202.7,696,202.7z M42,198.6c-0.1,0-0.2,0-0.2-0.1c-0.2-0.1-0.3-0.4-0.2-0.7
+ c2-3.8,4-7.6,6.1-11.3c0.1-0.2,0.4-0.3,0.7-0.2s0.3,0.4,0.2,0.7c-2.1,3.7-4.2,7.5-6.1,11.2C42.4,198.5,42.2,198.6,42,198.6z
+ M683.7,180.4c-0.2,0-0.3-0.1-0.4-0.2c-2.2-3.6-4.4-7.3-6.7-10.8c-0.1-0.2-0.1-0.5,0.1-0.7c0.2-0.1,0.5-0.1,0.7,0.1
+ c2.3,3.6,4.6,7.2,6.7,10.9c0.1,0.2,0.1,0.5-0.2,0.7C683.9,180.4,683.8,180.4,683.7,180.4z M54.6,176.3c-0.1,0-0.2,0-0.3-0.1
+ c-0.2-0.1-0.3-0.5-0.2-0.7c2.2-3.6,4.5-7.3,6.9-10.8c0.2-0.2,0.5-0.3,0.7-0.1c0.2,0.2,0.3,0.5,0.1,0.7c-2.3,3.5-4.7,7.2-6.9,10.8
+ C55,176.3,54.8,176.3,54.6,176.3z M669.9,158.9c-0.2,0-0.3-0.1-0.4-0.2c-2.4-3.5-4.9-7-7.5-10.4c-0.2-0.2-0.1-0.5,0.1-0.7
+ c0.2-0.2,0.5-0.1,0.7,0.1c2.5,3.4,5.1,6.9,7.5,10.4c0.2,0.2,0.1,0.5-0.1,0.7C670.1,158.9,670,158.9,669.9,158.9z M68.8,155
+ c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7c2.5-3.5,5-6.9,7.6-10.3c0.2-0.2,0.5-0.3,0.7-0.1c0.2,0.2,0.3,0.5,0.1,0.7
+ c-2.6,3.4-5.2,6.8-7.6,10.3C69.1,154.9,69,155,68.8,155z M654.6,138.4c-0.1,0-0.3-0.1-0.4-0.2c-2.7-3.3-5.4-6.6-8.2-9.8
+ c-0.2-0.2-0.2-0.5,0.1-0.7c0.2-0.2,0.5-0.2,0.7,0.1c2.8,3.2,5.5,6.5,8.2,9.8c0.2,0.2,0.1,0.5-0.1,0.7
+ C654.8,138.4,654.7,138.4,654.6,138.4z M84.4,134.7c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.2-0.5-0.1-0.7c2.7-3.3,5.5-6.6,8.3-9.7
+ c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7c-2.8,3.2-5.6,6.4-8.3,9.7C84.7,134.6,84.6,134.7,84.4,134.7z M637.9,119.1
+ c-0.1,0-0.3-0.1-0.4-0.2c-2.9-3.1-5.9-6.2-8.8-9.2c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0c3,3,6,6.1,8.9,9.3
+ c0.2,0.2,0.2,0.5,0,0.7C638.1,119,638,119.1,637.9,119.1z M101.4,115.5c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.2-0.5,0-0.7
+ c2.9-3.1,5.9-6.2,9-9.1c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7c-3,3-6,6-9,9.1C101.6,115.5,101.5,115.5,101.4,115.5z
+ M619.9,100.9c-0.1,0-0.2,0-0.3-0.1c-3.1-2.9-6.3-5.8-9.5-8.6c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0
+ c3.2,2.8,6.4,5.7,9.5,8.6c0.2,0.2,0.2,0.5,0,0.7C620.1,100.8,620,100.9,619.9,100.9z M119.6,97.6c-0.1,0-0.3-0.1-0.4-0.2
+ c-0.2-0.2-0.2-0.5,0-0.7c3.1-2.9,6.4-5.7,9.6-8.5c0.2-0.2,0.5-0.2,0.7,0.1c0.2,0.2,0.2,0.5-0.1,0.7c-3.2,2.8-6.4,5.6-9.6,8.5
+ C119.9,97.6,119.7,97.6,119.6,97.6z M600.6,84c-0.1,0-0.2,0-0.3-0.1c-3.3-2.7-6.7-5.4-10-7.9c-0.2-0.2-0.3-0.5-0.1-0.7
+ c0.2-0.2,0.5-0.3,0.7-0.1c3.4,2.6,6.8,5.3,10.1,7.9c0.2,0.2,0.2,0.5,0.1,0.7C600.9,83.9,600.8,84,600.6,84z M139.1,81
+ c-0.1,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.1-0.5,0.1-0.7c3.3-2.6,6.7-5.3,10.1-7.8c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7
+ c-3.4,2.5-6.8,5.1-10.1,7.8C139.3,80.9,139.2,81,139.1,81z M580.3,68.5c-0.1,0-0.2,0-0.3-0.1c-3.5-2.5-7-4.9-10.6-7.2
+ c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c3.5,2.3,7.1,4.8,10.6,7.2c0.2,0.2,0.3,0.5,0.1,0.7
+ C580.6,68.4,580.4,68.5,580.3,68.5z M159.6,65.7c-0.2,0-0.3-0.1-0.4-0.2c-0.2-0.2-0.1-0.5,0.1-0.7c3.5-2.4,7.1-4.8,10.7-7.1
+ c0.2-0.1,0.5-0.1,0.7,0.2c0.1,0.2,0.1,0.5-0.2,0.7c-3.6,2.3-7.1,4.7-10.6,7.1C159.8,65.7,159.7,65.7,159.6,65.7z M558.9,54.4
+ c-0.1,0-0.2,0-0.3-0.1c-3.6-2.2-7.3-4.4-11-6.5c-0.2-0.1-0.3-0.4-0.2-0.7c0.1-0.2,0.4-0.3,0.7-0.2c3.7,2.1,7.4,4.3,11.1,6.5
+ c0.2,0.1,0.3,0.5,0.2,0.7C559.2,54.3,559,54.4,558.9,54.4z M181.1,52c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.2-0.1-0.5,0.2-0.7
+ c3.7-2.2,7.4-4.3,11.1-6.3c0.2-0.1,0.5,0,0.7,0.2c0.1,0.2,0,0.5-0.2,0.7c-3.7,2-7.4,4.1-11.1,6.3C181.3,51.9,181.2,52,181.1,52z
+ M536.5,41.8c-0.1,0-0.2,0-0.2-0.1c-3.8-2-7.6-3.9-11.5-5.7c-0.2-0.1-0.4-0.4-0.2-0.7c0.1-0.2,0.4-0.4,0.7-0.2
+ c3.8,1.8,7.7,3.7,11.5,5.7c0.2,0.1,0.3,0.4,0.2,0.7C536.9,41.7,536.7,41.8,536.5,41.8z M203.5,39.7c-0.2,0-0.4-0.1-0.4-0.3
+ c-0.1-0.2,0-0.5,0.2-0.7c3.8-1.9,7.7-3.8,11.5-5.5c0.3-0.1,0.5,0,0.7,0.2c0.1,0.3,0,0.5-0.2,0.7c-3.8,1.8-7.7,3.6-11.5,5.5
+ C203.7,39.7,203.6,39.7,203.5,39.7z M513.3,30.9c-0.1,0-0.1,0-0.2,0c-3.9-1.7-7.9-3.3-11.9-4.9c-0.3-0.1-0.4-0.4-0.3-0.6
+ c0.1-0.3,0.4-0.4,0.6-0.3c4,1.5,8,3.2,11.9,4.9c0.3,0.1,0.4,0.4,0.3,0.7C513.7,30.7,513.5,30.9,513.3,30.9z M226.7,29.1
+ c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0-0.5,0.3-0.7c3.9-1.6,7.9-3.2,11.9-4.7c0.3-0.1,0.5,0,0.6,0.3c0.1,0.3,0,0.5-0.3,0.6
+ c-4,1.5-7.9,3.1-11.8,4.7C226.9,29.1,226.8,29.1,226.7,29.1z M489.4,21.5c-0.1,0-0.1,0-0.2,0c-4-1.4-8.1-2.8-12.2-4
+ c-0.3-0.1-0.4-0.4-0.3-0.6c0.1-0.3,0.4-0.4,0.6-0.3c4.1,1.3,8.2,2.6,12.2,4c0.3,0.1,0.4,0.4,0.3,0.6
+ C489.8,21.4,489.6,21.5,489.4,21.5z M250.6,20.1c-0.2,0-0.4-0.1-0.5-0.3c-0.1-0.3,0.1-0.5,0.3-0.6c4-1.4,8.1-2.7,12.2-3.9
+ c0.3-0.1,0.5,0.1,0.6,0.3c0.1,0.3-0.1,0.5-0.3,0.6c-4.1,1.2-8.2,2.5-12.2,3.9C250.8,20.1,250.7,20.1,250.6,20.1z M465,13.9
+ c0,0-0.1,0-0.1,0c-4.1-1.1-8.3-2.2-12.4-3.1c-0.3-0.1-0.4-0.3-0.4-0.6c0.1-0.3,0.3-0.4,0.6-0.4c4.1,1,8.3,2,12.4,3.2
+ c0.3,0.1,0.4,0.3,0.4,0.6C465.4,13.8,465.2,13.9,465,13.9z M275.2,12.8c-0.2,0-0.4-0.1-0.5-0.4c-0.1-0.3,0.1-0.5,0.4-0.6
+ c4.1-1.1,8.3-2.1,12.5-3c0.3-0.1,0.5,0.1,0.6,0.4c0.1,0.3-0.1,0.5-0.4,0.6c-4.1,0.9-8.3,1.9-12.4,3
+ C275.3,12.8,275.2,12.8,275.2,12.8z M440.1,8C440,8,440,8,440.1,8c-4.3-0.8-8.5-1.6-12.7-2.3c-0.3,0-0.5-0.3-0.4-0.6
+ c0-0.3,0.3-0.5,0.6-0.4c4.2,0.7,8.4,1.5,12.6,2.3c0.3,0.1,0.4,0.3,0.4,0.6C440.5,7.9,440.3,8,440.1,8z M300.1,7.2
+ c-0.2,0-0.4-0.2-0.5-0.4c-0.1-0.3,0.1-0.5,0.4-0.6c4.2-0.8,8.4-1.5,12.6-2.1c0.3,0,0.5,0.1,0.6,0.4c0,0.3-0.1,0.5-0.4,0.6
+ C308.6,5.7,304.4,6.4,300.1,7.2C300.2,7.2,300.2,7.2,300.1,7.2z M414.8,3.9C414.8,3.9,414.8,3.9,414.8,3.9c-4.3-0.5-8.5-1-12.8-1.4
+ c-0.3,0-0.5-0.3-0.5-0.5c0-0.3,0.3-0.5,0.5-0.5c4.2,0.4,8.5,0.9,12.7,1.4c0.3,0,0.5,0.3,0.4,0.6C415.3,3.8,415.1,3.9,414.8,3.9z
+ M325.4,3.4c-0.3,0-0.5-0.2-0.5-0.4c0-0.3,0.2-0.5,0.4-0.6c4.2-0.5,8.5-0.9,12.8-1.2c0.3,0,0.5,0.2,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5
+ C334,2.5,329.7,2.9,325.4,3.4C325.5,3.4,325.5,3.4,325.4,3.4z M389.3,1.6C389.3,1.6,389.3,1.6,389.3,1.6c-4.3-0.2-8.6-0.4-12.8-0.5
+ c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c4.3,0.1,8.6,0.3,12.8,0.5c0.3,0,0.5,0.3,0.5,0.5C389.8,1.4,389.6,1.6,389.3,1.6z
+ M350.9,1.4c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c4.2-0.2,8.6-0.3,12.8-0.4c0.3,0,0.5,0.2,0.5,0.5S364,1,363.7,1
+ C359.5,1.1,355.2,1.2,350.9,1.4C351,1.4,351,1.4,350.9,1.4z"/>
+</svg>
--- /dev/null
+// ELEMENTOR Trigger
+(function($) {
+ $(window).on('elementor/frontend/init', function () {
+ elementorFrontend.hooks.addAction('frontend/element_ready/cube-intro-carousel.default', function ($scope) {
+
+ // Inspired by: https://www.sitepoint.com/make-a-simple-javascript-slideshow-without-jquery/
+ const slides = $scope.find('.intro-carousel-image');
+ const slideInterval = setInterval(nextSlide, 4000);
+ let currentSlide = 0;
+
+ initSlideshow();
+
+ function initSlideshow() {
+ let slideshowDots = document.createElement('ul');
+ slideshowDots.className = 'intro-carousel-dots';
+
+ // Build dots navigation
+ slides.each(function (index) {
+ let item = document.createElement('li');
+ item.setAttribute('data-slide', index);
+ if (index === 0) {
+ item.className = 'active';
+ }
+ slideshowDots.appendChild(item);
+ });
+
+ $scope.append(slideshowDots);
+
+ $(document).on('click', '.intro-carousel-dots li', function() {
+ clearInterval(slideInterval); // Stop autoplay
+ showSlide($(this).data('slide'));
+ });
+ }
+
+ function showSlide(index) {
+ $(slides[currentSlide]).removeClass('showing');
+ $scope.find(`[data-slide="${currentSlide}"]`).removeClass('active');
+ currentSlide = (index + slides.length) % slides.length;
+ $(slides[currentSlide]).addClass('showing');
+ $scope.find(`[data-slide="${currentSlide}"]`).addClass('active');
+ }
+
+ function nextSlide() {
+ showSlide(currentSlide + 1);
+ }
+ function prevSlide() {
+ showSlide(currentSlide - 1);
+ }
+
+
+
+ });
+ });
+})(jQuery);
--- /dev/null
+// Forked version of https://github.com/justinribeiro/lite-youtube/
+// This version is a temporary replacement to resolve a problem with missing webp placeholder images for many videos
+// YouTube handles these poorly and the fallback in the original script is useless
+// See: https://github.com/justinribeiro/lite-youtube/issues/24
+
+// This fork also supports setting a placeholder image manually via the attribute placeholder=""
+
+//===========================================================
+
+/**
+ *
+ * The shadowDom / Intersection Observer version of Paul's concept:
+ * https://github.com/paulirish/lite-youtube-embed
+ *
+ * A lightweight YouTube embed. Still should feel the same to the user, just
+ * MUCH faster to initialize and paint.
+ *
+ * Thx to these as the inspiration
+ * https://storage.googleapis.com/amp-vs-non-amp/youtube-lazy.html
+ * https://autoplay-youtube-player.glitch.me/
+ *
+ * Once built it, I also found these (👍👍):
+ * https://github.com/ampproject/amphtml/blob/master/extensions/amp-youtube
+ * https://github.com/Daugilas/lazyYT https://github.com/vb/lazyframe
+ */
+export class LiteYTEmbed extends HTMLElement {
+ constructor() {
+ super();
+ this.iframeLoaded = false;
+ this.setupDom();
+ }
+ static get observedAttributes() {
+ return ['videoid'];
+ }
+ connectedCallback() {
+ this.addEventListener('pointerover', LiteYTEmbed.warmConnections, {
+ once: true,
+ });
+ this.addEventListener('click', () => this.addIframe());
+ }
+ get videoId() {
+ return encodeURIComponent(this.getAttribute('videoid') || '');
+ }
+ set videoId(id) {
+ this.setAttribute('videoid', id);
+ }
+ get videoTitle() {
+ return this.getAttribute('videotitle') || 'Video';
+ }
+ set videoTitle(title) {
+ this.setAttribute('videotitle', title);
+ }
+ get placeholder() {
+ return this.getAttribute('placeholder') || '';
+ }
+ set placeholder(image) {
+ this.setAttribute('placeholder', image);
+ }
+ get videoPlay() {
+ return this.getAttribute('videoPlay') || 'Play';
+ }
+ set videoPlay(name) {
+ this.setAttribute('videoPlay', name);
+ }
+ get videoStartAt() {
+ return Number(this.getAttribute('videoStartAt') || '0');
+ }
+ set videoStartAt(time) {
+ this.setAttribute('videoStartAt', String(time));
+ }
+ get autoLoad() {
+ return this.hasAttribute('autoload');
+ }
+ set autoLoad(value) {
+ if (value) {
+ this.setAttribute('autoload', '');
+ }
+ else {
+ this.removeAttribute('autoload');
+ }
+ }
+ get params() {
+ return `start=${this.videoStartAt}&${this.getAttribute('params')}`;
+ }
+ /**
+ * Define our shadowDOM for the component
+ */
+ setupDom() {
+ const shadowDom = this.attachShadow({ mode: 'open' });
+ shadowDom.innerHTML = `
+ <style>
+ :host {
+ contain: content;
+ display: block;
+ position: relative;
+ width: 100%;
+ padding-bottom: calc(100% / (16 / 9));
+ }
+
+ #frame, #fallbackPlaceholder, iframe {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ }
+
+ #frame {
+ cursor: pointer;
+ }
+
+ #fallbackPlaceholder {
+ object-fit: cover;
+ }
+
+ #frame::before {
+ content: '';
+ display: block;
+ position: absolute;
+ top: 0;
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
+ background-position: top;
+ background-repeat: repeat-x;
+ height: 60px;
+ padding-bottom: 50px;
+ width: 100%;
+ transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
+ z-index: 1;
+ }
+ /* play button */
+ .lty-playbtn {
+ width: 70px;
+ height: 46px;
+ background-color: #212121;
+ z-index: 1;
+ opacity: 0.8;
+ border-radius: 14%; /* TODO: Consider replacing this with YT's actual svg. Eh. */
+ transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
+ border: 0;
+ }
+ #frame:hover .lty-playbtn {
+ background-color: #f00;
+ opacity: 1;
+ }
+ /* play button triangle */
+ .lty-playbtn:before {
+ content: '';
+ border-style: solid;
+ border-width: 11px 0 11px 19px;
+ border-color: transparent transparent transparent #fff;
+ }
+ .lty-playbtn,
+ .lty-playbtn:before {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate3d(-50%, -50%, 0);
+ }
+
+ /* Post-click styles */
+ .lyt-activated {
+ cursor: unset;
+ }
+
+ #frame.lyt-activated::before,
+ .lyt-activated .lty-playbtn {
+ display: none;
+ }
+ </style>
+ <div id="frame">
+ <picture>
+ <source id="webpPlaceholder" type="image/webp">
+ <source id="jpegPlaceholder" type="image/jpeg">
+ <img id="fallbackPlaceholder" referrerpolicy="origin">
+ </picture>
+ <button class="lty-playbtn"></button>
+ </div>
+ `;
+ this.domRefFrame = this.shadowRoot.querySelector('#frame');
+ this.domRefImg = {
+ fallback: this.shadowRoot.querySelector('#fallbackPlaceholder'),
+ webp: this.shadowRoot.querySelector('#webpPlaceholder'),
+ jpeg: this.shadowRoot.querySelector('#jpegPlaceholder'),
+ };
+ this.domRefPlayButton = this.shadowRoot.querySelector('.lty-playbtn');
+ }
+ /**
+ * Parse our attributes and fire up some placeholders
+ */
+ setupComponent() {
+ this.initImagePlaceholder();
+ this.domRefPlayButton.setAttribute('aria-label', `${this.videoPlay}: ${this.videoTitle}`);
+ this.setAttribute('title', `${this.videoPlay}: ${this.videoTitle}`);
+ if (this.autoLoad) {
+ this.initIntersectionObserver();
+ }
+ }
+ /**
+ * Lifecycle method that we use to listen for attribute changes to period
+ * @param {*} name
+ * @param {*} oldVal
+ * @param {*} newVal
+ */
+ attributeChangedCallback(name, oldVal, newVal) {
+ switch (name) {
+ case 'videoid': {
+ if (oldVal !== newVal) {
+ this.setupComponent();
+ // if we have a previous iframe, remove it and the activated class
+ if (this.domRefFrame.classList.contains('lyt-activated')) {
+ this.domRefFrame.classList.remove('lyt-activated');
+ this.shadowRoot.querySelector('iframe').remove();
+ this.iframeLoaded = false;
+ }
+ }
+ break;
+ }
+ default:
+ break;
+ }
+ }
+ /**
+ * Inject the iframe into the component body
+ */
+ addIframe() {
+ if (!this.iframeLoaded) {
+ const iframeHTML = `
+<iframe frameborder="0"
+ allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen
+ src="https://www.youtube.com/embed/${this.videoId}?autoplay=1&${this.params}"
+></iframe>`;
+ this.domRefFrame.insertAdjacentHTML('beforeend', iframeHTML);
+ this.domRefFrame.classList.add('lyt-activated');
+ this.iframeLoaded = true;
+ }
+ }
+ /**
+ * Setup the placeholder image for the component
+ */
+ initImagePlaceholder() {
+ // we don't know which image type to preload, so warm the connection
+ LiteYTEmbed.addPrefetch('preconnect', 'https://i.ytimg.com/');
+ const posterUrlJpeg = this.placeholder || `https://i.ytimg.com/vi/${this.videoId}/hqdefault.jpg`;
+ //const posterUrlWebp = `https://i.ytimg.com/vi_webp/${this.videoId}/hqdefault.webp`;
+ //this.domRefImg.webp.srcset = posterUrlWebp; // DISABLED!
+ this.domRefImg.jpeg.srcset = posterUrlJpeg;
+ this.domRefImg.fallback.src = posterUrlJpeg;
+ this.domRefImg.fallback.setAttribute('aria-label', `${this.videoPlay}: ${this.videoTitle}`);
+ this.domRefImg.fallback.setAttribute('alt', `${this.videoPlay}: ${this.videoTitle}`);
+ }
+ /**
+ * Setup the Intersection Observer to load the iframe when scrolled into view
+ */
+ initIntersectionObserver() {
+ if ('IntersectionObserver' in window &&
+ 'IntersectionObserverEntry' in window) {
+ const options = {
+ root: null,
+ rootMargin: '0px',
+ threshold: 0,
+ };
+ const observer = new IntersectionObserver((entries, observer) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting && !this.iframeLoaded) {
+ LiteYTEmbed.warmConnections();
+ this.addIframe();
+ observer.unobserve(this);
+ }
+ });
+ }, options);
+ observer.observe(this);
+ }
+ }
+ /**
+ * Add a <link rel={preload | preconnect} ...> to the head
+ * @param {*} kind
+ * @param {*} url
+ * @param {*} as
+ */
+ static addPrefetch(kind, url, as) {
+ const linkElem = document.createElement('link');
+ linkElem.rel = kind;
+ linkElem.href = url;
+ if (as) {
+ linkElem.as = as;
+ }
+ linkElem.crossOrigin = 'true';
+ document.head.append(linkElem);
+ }
+ /**
+ * Begin preconnecting to warm up the iframe load Since the embed's netwok
+ * requests load within its iframe, preload/prefetch'ing them outside the
+ * iframe will only cause double-downloads. So, the best we can do is warm up
+ * a few connections to origins that are in the critical path.
+ *
+ * Maybe `<link rel=preload as=document>` would work, but it's unsupported:
+ * http://crbug.com/593267 But TBH, I don't think it'll happen soon with Site
+ * Isolation and split caches adding serious complexity.
+ */
+ static warmConnections() {
+ if (LiteYTEmbed.preconnected)
+ return;
+ // Host that YT uses to serve JS needed by player, per amp-youtube
+ LiteYTEmbed.addPrefetch('preconnect', 'https://s.ytimg.com');
+ // The iframe document and most of its subresources come right off
+ // youtube.com
+ LiteYTEmbed.addPrefetch('preconnect', 'https://www.youtube.com');
+ // The botguard script is fetched off from google.com
+ LiteYTEmbed.addPrefetch('preconnect', 'https://www.google.com');
+ // TODO: Not certain if these ad related domains are in the critical path.
+ // Could verify with domain-specific throttling.
+ LiteYTEmbed.addPrefetch('preconnect', 'https://googleads.g.doubleclick.net');
+ LiteYTEmbed.addPrefetch('preconnect', 'https://static.doubleclick.net');
+ LiteYTEmbed.preconnected = true;
+ }
+}
+LiteYTEmbed.preconnected = false;
+// Register custom element
+customElements.define('lite-youtube', LiteYTEmbed);
+//# sourceMappingURL=lite-youtube.js.map
margin-top: 1.5em
.spaced-lg > * + *
margin-top: 2em
+ .spaced-1v > * + *
+ constrain(margin-top, 2.5vw)
+ .spaced-2v > * + *
+ constrain(margin-top, 5vw)
.spaced-none > * + *
margin-top: 0
'3': 7.5vw,
'4': 10vw,
'5': 12.5vw,
+ '6': 15vw,
+ '7': 17.5vw,
}
$sides = {
appearance: none
input[type="submit"]
+ @apply bg-red
width: auto
select
h4, .h4
@apply text-base
+
+// Extra tweaks for the larger headings
++below(1700px)
+ .text-2xl
+ font-size: r(48px) !important
+
++below(1400px)
+ .text-2xl
+ font-size: r(42px) !important
+ .text-xl
+ font-size: r(32px) !important
+
++below(1000px)
+ .text-2xl
+ font-size: r(36px) !important
+ .text-xl
+ font-size: r(28px) !important
--- /dev/null
+.posts-navigation
+ .nav-links
+ display: flex
+ flex-wrap: wrap
+ justify-content: space-between
+ align-items: center
+
+ a
+ @apply relative inline-block overflow-hidden
+ @apply bg-red text-white rounded-full
+ @apply px-4 py-2
+ font-smoothing()
+ transition: background-color 0.25s
+ white-space: nowrap
+
+ &:hover
+ @apply bg-blue text-white
@section('content')
- <div class="container-content py-2v px-1v">
+ <h2 class="text-2xl text-center my-2v mx-1v">L'actu mobilier & déco</h2>
- {{-- TODO !
+ {{-- Applying 1px vertical padding here so margins take effect at top and bottom (can't use overflow:hidden due to background decorations) --}}
+ <div class="container relative my-2v" style="padding: 1px 0">
+
+ <div class="absolute h-full bg-light left-1/2 transform -translate-x-1/2" style="width: 55%; z-index: -1;">{{-- BG layer --}}</div>
@if (! have_posts())
<x-alert type="warning">
{!! get_search_form(false) !!}
@endif
+ @php
+ // Keep a counter of posts so we can style them differently
+ $counter = 0;
+ @endphp
@while(have_posts()) @php(the_post())
- @includeFirst(['partials.content-' . get_post_type(), 'partials.content'])
+ @php($counter++)
+ @includeFirst(['partials.content-' . get_post_type(), 'partials.content'], [compact('counter')])
@endwhile
- {!! get_the_posts_navigation() !!}
-
- --}}
+ </div>
+ <div class="mt-1v mx-2v">
+ {!! get_the_posts_navigation() !!}
</div>
@endsection
<div class="realisation-category">{!! $category->name !!}</div>
</header>
+ {{-- Main content wrapper --}}
<div class="relative pt-1v pb-2v">
- <div class="bg-light absolute inset-0 mx-2v" style="z-index: -1">{{-- Inset light background --}}</div>
+ <div class="bg-light absolute inset-0 mx-4v md:mx-0" style="z-index: -1;">{{-- Inset, light background --}}</div>
- {{-- Just the URL: @image($hero_image, 'raw') --}}
- @image($hero_image, 'full', ['class' => 'block mx-auto mb-1v'])
+ <div class="mb-1v mx-2v md:mx-1v">
+ @image($hero_image, 'full', ['class' => 'block mx-auto'])
+ </div>
- <div class="mx-auto mb-1v debug" style="max-width: 1040px">{!! nl2br($description) !!}</div>
+ {{-- Main text --}}
+ <div class="pt-6 mx-6v md:mx-1v mb-2v">
+ <div class="mx-auto" style="max-width: 1056px">{!! nl2br($description) !!}</div>
+ </div>
- @dump($gallery)
+ {{-- Gallery --}}
+ <div class="relative mx-6v md:mx-1v spaced-2v">
+ {!! $gallery_backgrounds !!}
+ @foreach($gallery as $gallery_item)
+ {!! $gallery_item !!}
+ @endforeach
+ </div>
+
+ {{-- Testimonial --}}
+ @if ($testimonial)
+ <div class="mt-2v mx-6v md:mx-1v">
+ <div class="mx-auto text-center" style="max-width: 1056px">
+ <div class="italic">{!! nl2br($testimonial) !!}</div>
+ <div class="pt-6">{{ $testimonial_author }}</div>
+ </div>
+ </div>
+ @endif
+
+ </div>
+
+ <div class="mt-1v text-center font-medium">
+ <a href="../">Retour</a>
</div>
{{--
-<article @php(post_class())>
- <header>
- <h1 class="entry-title">
- {!! $title !!}
- </h1>
+<article @php(post_class('flex items-start mx-2v'))>
- @include('partials/entry-meta')
- </header>
-
- <div class="entry-content">
- @php(the_content())
+ {{-- Featured Image --}}
+ <div class="post-featured-image bg-cover" style="width: 46.875%; background-image: url({{ get_the_post_thumbnail_url() }})">
+ <div class="block pb-100%">{{-- Proportional image sizer thanks to the padding --}}</div>
</div>
- <footer>
- {!! wp_link_pages(['echo' => 0, 'before' => '<nav class="page-nav"><p>' . __('Pages:', 'sage'), 'after' => '</p></nav>']) !!}
- </footer>
+ {{-- Post Content --}}
+ <div class="pt-2v px-2v" style="width: 53.125%">
+
+ <h1 class="text-xl mb-6">{!! $title !!}</h1>
+
+ <div class="spaced">
+ @php(the_content())
+
+ <a href="../" class="btn px-8">Retour</a>
+ </div>
+
+ <footer>
+ {!! wp_link_pages(['echo' => 0, 'before' => '<nav class="page-nav"><p>' . __('Pages:', 'sage'), 'after' => '</p></nav>']) !!}
+ </footer>
+ </div>
- @php(comments_template())
+ {{-- @php(comments_template())--}}
</article>
-<article @php(post_class())>
- <header>
- <h2 class="entry-title">
- <a href="{{ get_permalink() }}">
- {!! $title !!}
- </a>
- </h2>
-
- @include('partials/entry-meta')
- </header>
-
- <div class="entry-summary">
- @php(the_excerpt())
+{{-- News Post Item --}}
+{{-- This layout gets mirrored using flexbox direction row-reverse for even items --}}
+@php
+ $classes = 'flex items-center mt-2v mb-3v';
+ if ($counter % 2 == 0) $classes .= ' flex-row-reverse';
+@endphp
+<article @php(post_class($classes))>
+
+ {{-- Featured Image --}}
+ <div class="post-featured-image relative bg-cover mx-2v w-1/4" style="background-image: url({{ get_the_post_thumbnail_url() }})">
+ <a class="block pb-100%" href="{{ get_permalink() }}">
+ {{-- Link acts as a proportional sizer thanks to the padding --}}
+ </a>
+
+ {{-- Decorations in the background --}}
+ @isset($decorations[$counter])
+ {!! $decorations[$counter] !!}
+ @endisset
</div>
+
+ {{-- Post Title and Excerpt --}}
+ <div style="width: 35%">
+ <h2 class="text-xl"><a href="{{ get_permalink() }}">{!! $title !!}</a></h2>
+ <div class="mt-6">@php(the_excerpt())</div>
+ </div>
+
</article>
--- /dev/null
+@extends('layouts.app')
+
+@section('content')
+
+ <div class="container-content py-2v">
+
+ @while(have_posts()) @php(the_post())
+ @includeFirst(['partials.content-single-' . get_post_type(), 'partials.content-single'])
+ @endwhile
+
+ </div>
+
+@endsection
@section('content')
- <div class="container-content py-2v">
+ {{-- H2 tag here because the post has a H1 for the title --}}
+ <h2 class="text-2xl text-center my-2v mx-1v">L'actu mobilier & déco</h2>
+
+ <div class="container-content relative py-2v">
+
+ <div class="absolute inset-0 bg-light ml-7v mr-2v" style="z-index: -1">{{-- BG layer --}}</div>
@while(have_posts()) @php(the_post())
@includeFirst(['partials.content-single-' . get_post_type(), 'partials.content-single'])
<div style="flex-basis: 40%">
<div class="mx-1v" style="max-width: 624px">
- <h1 class="relative text-2xl md:text-xl font-semibold leading-tight mb-6">
+ <h1 class="relative text-2xl md:text-xl font-semibold leading-tight mb-8">
{{ $title }}
<span class="absolute block bg-beige" style="top: -0.1em; bottom: -0.15em; left: -0.325em; width: 36%; z-index: -1"></span>
</h1>
- <div class="leading-loose">{{ $body }}</div>
+ <div class="leading-loose mb-6">{{ $body }}</div>
<a href="{{ $cta_link['url'] }}" class="btn">{{ $cta_text }}</a>
</div>
</div>
purge: {
content: [
'./*.php',
+ './app/View/**/*.php',
'./resources/views/**/*.php',
'./resources/assets/**/*.js',
],
options: {
+ // Todo: make a script to generate a list of all custom classes used in Elementor content
safelist: [
+ 'm-0',
+ 'mt-0',
+ 'mr-0',
+ 'mb-0',
+ 'ml-0',
+ 'm-0!',
+ 'mt-0!',
+ 'mr-0!',
'mb-0!',
+ 'ml-0!',
'pb-6',
+ 'pb-8',
'bg-light',
].concat(
require('purgecss-with-wordpress').whitelist,
.js('resources/assets/scripts/masonry-columns.js', 'scripts')
.js('resources/assets/scripts/image-map.js', 'scripts')
.js('resources/assets/scripts/customizer.js', 'scripts')
- .blocks('resources/assets/scripts/editor.js', 'scripts')
- .extract();
+ .blocks('resources/assets/scripts/editor.js', 'scripts');
+ //.extract();
+
+// Process resources installed via NPM
+//mix.js('node_modules/@justinribeiro/lite-youtube/lite-youtube.js', publicPath('scripts'));
+// Due to a problem with this component, I had to fork and modify it (see: https://github.com/justinribeiro/lite-youtube/issues/24)
+mix.js('resources/assets/scripts/lite-youtube.js', publicPath('scripts'));
// Static files
mix
postcss "7.0.32"
purgecss "^3.0.0"
+"@justinribeiro/lite-youtube@^0.9.1":
+ version "0.9.1"
+ resolved "https://registry.yarnpkg.com/@justinribeiro/lite-youtube/-/lite-youtube-0.9.1.tgz#c9f83861daad361d58de76b2a5e078de6fe6b751"
+ integrity sha512-IgcpHnovzZGxU4Ec+0c7sSLhrJWflvYliQUmdcwBgyVkGw0ZL9Y8IU/m09NPk9EzIk2HAOWUGLywTVpB785egA==
+
"@mrmlnc/readdir-enhanced@^2.2.1":
version "2.2.1"
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"