Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timelsass/481d8a6ac81506ff9194ee26348972f9 to your computer and use it in GitHub Desktop.
Save timelsass/481d8a6ac81506ff9194ee26348972f9 to your computer and use it in GitHub Desktop.
Splatter Configuration Example
<?php
/**
* This is responsible for setting the theme's configurable options.
*
* @package BoldGrid Theme
*/
/**
* Set the Theme's Configuration Options.
*
* @since 1.0.0
* @param array $boldgrid_framework_configs Array of boldgrid framework configurations.
*/
function boldgrid_theme_framework_config( $boldgrid_framework_configs ) {
/**
* General Configs
*/
// Enable the BoldGrid Parent Theme Wrapper.
$boldgrid_framework_configs['boldgrid-parent-theme'] = true;
// Set the parent theme's name that this child makes use of.
$boldgrid_framework_configs['parent-theme-name'] = 'prime';
// Set the theme's name.
$boldgrid_framework_configs['theme_name'] = 'boldgrid-diced';
// Enable Bootstrap SCSS Compiling.
$boldgrid_framework_configs['bootstrap-compile'] = true;
// Enable the BoldGrid Sticky Footer.
$boldgrid_framework_configs['scripts']['boldgrid-sticky-footer'] = true;
// Enable offcanvas menu support.
$boldgrid_framework_configs['scripts']['offcanvas-menu'] = true;
// Allow for proper attribution links.
$boldgrid_framework_configs['temp']['attribution_links'] = true;
// Load animate.css.
$boldgrid_framework_configs['scripts']['animate-css'] = true;
// Load wow.js.
$boldgrid_framework_configs['scripts']['wow-js'] = true;
// Set the block class to look for in wow.js.
$boldgrid_framework_configs['scripts']['options']['wow-js']['boxClass'] = 'boldgrid-animate';
// Select a Header Template.
$boldgrid_framework_configs['template']['header'] = '5';
// Select a Footer Template.
$boldgrid_framework_configs['template']['footer'] = '';
// No Background Image by default for this theme.
$boldgrid_framework_configs['customizer-options']['background']['defaults']['background_image'] = false;
// Show the Call to Action widget on all pages.
$boldgrid_framework_configs['template']['call-to-action'] = 'all-pages';
/**
* Customizer Configs
*/
// Enable the BoldGrid color palette system.
$boldgrid_framework_configs['customizer-options']['colors']['enabled'] = true;
// Set the default palettes for the BoldGrid color palette system.
$boldgrid_framework_configs['customizer-options']['colors']['defaults'] = array(
array(
'default' => true,
'format' => 'palette-primary',
'neutral-color' => '#f7f7f7',
'colors' => array(
'#027b7f',
'#ffa588',
'#d62957',
'#bf1e62',
'#572e4f',
),
),
array(
'format' => 'palette-primary',
'neutral-color' => '#0a0a0a',
'colors' => array(
'#678d6c',
'#fc7d23',
'#fa3c08',
'#bd0a41',
'#772a53',
),
),
array(
'format' => 'palette-primary',
'neutral-color' => '#e5e5e5',
'colors' => array(
'#002e34',
'#004443',
'#00755c',
'#00c16c',
'#90ff17',
),
),
);
/**
* Navbar Configuration.
*/
// Enable Navbar Search Form.
$boldgrid_framework_configs['template']['navbar-search-form'] = true;
// Remove Container ID that is targetted by navbar-toggle.
$boldgrid_framework_configs['menu']['prototype']['primary']['container_id'] = 'primary-menu';
// Remove the container classes that are targetted with navbar-collapse.
$boldgrid_framework_configs['menu']['prototype']['primary']['container_class'] = 'primary-menu';
// Add support for offcanvas navmenu.
$boldgrid_framework_configs['menu']['prototype']['primary']['menu_class'] = 'nav navmenu-nav';
// Align social media menu.
$boldgrid_framework_configs['menu']['prototype']['social']['container_class'] = 'text-center';
// Navbar Border Radius.
$boldgrid_framework_configs['bootstrap']['navbar-border-radius'] = '0px';
// Navbar Height.
$boldgrid_framework_configs['bootstrap']['navbar-height'] = '40px';
// Navbar Margin Bottom.
$boldgrid_framework_configs['bootstrap']['navbar-margin-bottom'] = '-1px';
// Navbar Border.
$boldgrid_framework_configs['bootstrap']['navbar-default-border'] = 'transparent';
// Navbar-Default Background Color.
$boldgrid_framework_configs['bootstrap']['navbar-default-bg'] = 'transparent';
// Navbar-default Toggle Border Color.
$boldgrid_framework_configs['bootstrap']['navbar-default-toggle-border-color'] = 'transparent';
/**
* Social Media Icon Configuration.
*/
// Set the default icon type.
$boldgrid_framework_configs['social-icons']['type'] = 'icon-circle';
// Set the default icon size.
$boldgrid_framework_configs['social-icons']['size'] = 'large';
// Specify the default social media icons to create.
$boldgrid_framework_configs['menu']['default-menus']['social']['items'] = array(
array(
'menu-item-title' => __( 'Pinterest' ),
'menu-item-classes' => 'pinterest',
'menu-item-url' => '//pinterest.com',
'menu-item-status' => 'publish',
),
array(
'menu-item-title' => __( 'Instagram' ),
'menu-item-classes' => 'instagram',
'menu-item-url' => '//instagr.am',
'menu-item-status' => 'publish',
),
array(
'menu-item-title' => __( 'Flickr' ),
'menu-item-classes' => 'flickr',
'menu-item-url' => '//flickr.com',
'menu-item-status' => 'publish',
),
array(
'menu-item-title' => __( 'Dribbble' ),
'menu-item-classes' => 'dribbble',
'menu-item-url' => '//dribbble.com',
'menu-item-status' => 'publish',
),
);
// Text Contrast Colors.
$boldgrid_framework_configs['customizer-options']['colors']['light_text'] = '#ffffff';
$boldgrid_framework_configs['customizer-options']['colors']['dark_text'] = '#000000';
// Menu Locations.
$boldgrid_framework_configs['menu']['locations']['secondary'] = 'Secondary Menu, Above Header';
$boldgrid_framework_configs['menu']['locations']['tertiary'] = 'Top Right, Above Header';
$boldgrid_framework_configs['menu']['locations']['social'] = 'Top of Footer';
$boldgrid_framework_configs['menu']['footer_menus'][] = 'social';
/**
* Typography
*/
// Enable the custom Typography Controls.
$boldgrid_framework_configs['customizer-options']['typography']['enabled'] = true;
// Navigation Font Family.
$boldgrid_framework_configs['customizer-options']['typography']['navigation_font_family'] = 'Caveat Brush';
// Navigation Size.
$boldgrid_framework_configs['customizer-options']['typography']['navigation_font_size'] = 19;
// Navigation Text Transform.
$boldgrid_framework_configs['customizer-options']['typography']['navigation_text_transform'] = 'uppercase';
// Main Text Font Family.
$boldgrid_framework_configs['customizer-options']['typography']['body_font_family'] = 'Antic';
// Main Text Font Size.
$boldgrid_framework_configs['customizer-options']['typography']['body_font_size'] = 18;
// Main Text Line Height.
$boldgrid_framework_configs['customizer-options']['typography']['body_line_height'] = 127;
// Headings Font Family.
$boldgrid_framework_configs['customizer-options']['typography']['headings_font_family'] = 'Swanky and Moo Moo';
// Headings Font Size.
$boldgrid_framework_configs['customizer-options']['typography']['headings_font_size'] = 24;
// Subheadings Font Family.
$boldgrid_framework_configs['customizer-options']['typography']['alternate_headings_font_family'] = 'Shadows Into Light';
// Subheadings Font Size.
$boldgrid_framework_configs['customizer-options']['typography']['alternate_headings_font_size'] = 48;
// Subheadings Capitalization.
$boldgrid_framework_configs['customizer-options']['typography']['alternate_headings_text_transform'] = 'uppercase';
/**
* Widgets
*/
// CTA Widget Markup.
$widget_markup['call-to-action'] = '
<div class="jumbotron">
<div class="container">
<h2 class="alt-font">This is Splatter</h2>
<p>Another BoldGrid theme that does stuff for things.</p>
<p><a class="button-primary btn-lg" href="#" role="button">Learn more »</a></p>
</div>
</div>';
// Widget 1.
$boldgrid_framework_configs['widget']['widget_instances']['boldgrid-widget-1'][] = array(
'title' => 'Call To Action',
'text' => $widget_markup['call-to-action'],
'type' => 'visual',
'filter' => 1,
'label' => 'black-studio-tinymce',
);
// Name Widget Areas.
$boldgrid_framework_configs['widget']['sidebars']['boldgrid-widget-1']['name'] = 'Call To Action';
$boldgrid_framework_configs['widget']['sidebars']['boldgrid-widget-2']['name'] = 'Below Primary Navigation';
$boldgrid_framework_configs['widget']['sidebars']['boldgrid-widget-3']['name'] = 'Footer Center';
// Get Subcategory ID from the Database.
$boldgrid_install_options = get_option( 'boldgrid_install_options', array() );
$subcategory_id = null;
if ( ! empty( $boldgrid_install_options['subcategory_id'] ) ) {
$subcategory_id = $boldgrid_install_options['subcategory_id'];
}
// Override Options per Subcategory.
switch ( $subcategory_id ) {
case 14: // <-- Fashion.
$boldgrid_framework_configs['customizer-options']['colors']['defaults'][1]['default'] = true;
break;
case 32: // <-- General.
$boldgrid_framework_configs['customizer-options']['colors']['defaults'][3]['default'] = true;
break;
// Default Behavior.
default:
$boldgrid_framework_configs['customizer-options']['colors']['defaults'][0]['default'] = true;
break;
}
// Configs above will override framework defaults.
return $boldgrid_framework_configs;
}
add_filter( 'boldgrid_theme_framework_config', 'boldgrid_theme_framework_config' );
/**
* Site Title & Logo Controls
*
* @param array $controls Customizer controls to apply defaults to.
*/
function filter_logo_controls( $controls ) {
$controls['logo_font_family']['default'] = 'Zeyada';
$controls['logo_font_size']['default'] = '60px';
$controls['logo_margin_top']['default'] = 29;
$controls['logo_margin_bottom']['default'] = 68;
$controls['logo_margin_left']['default'] = 18;
// Controls above will override framework defaults.
return $controls;
}
add_filter( 'kirki/fields', 'filter_logo_controls' );
function svg_paint_nav() {
?>
<div class="offcanvas-background">
<svg xmlns="http://www.w3.org/2000/svg" width="640" height="480" viewBox="0 0 640 480"><path class="st0" d="M137.144 276.628c-3.392-3.54-3.478-7.495-.232-10.741 3.861-3.861 8.636-2.926 11.382 2.23 1.697 3.186 1.434 5.703-.909 8.681C144.599 280.338 140.635 280.272 137.144 276.628zM117.77 272.306c-4.111-1.157-7.313-5.271-7.313-9.393 0-2.363-.682-3.697-2.5-4.888-1.375-.901-2.5-2.334-2.5-3.183 0-2.14 4.934-8.41 6.619-8.41 2.58 0 1.396-1.747-1.587-2.344-1.633-.326-3.931-1.556-5.107-2.731-1.887-1.887-2.312-1.965-3.617-.66-1.304 1.304-2.009 1.276-5.985-.233-2.479-.94-4.886-2.324-5.349-3.074-2-3.237 1.792-11.114 5.993-12.447 1.276-.405 1.596-1.599 1.413-5.267-.399-7.966-.936-9.773-5.015-16.884-2.164-3.772-4.767-9.109-5.784-11.859s-5.901-14.675-10.853-26.5c-4.952-11.825-11.673-28.25-14.936-36.5s-7.179-17.7-8.702-21c-1.522-3.3-4.428-10.578-6.456-16.173-2.238-6.174-4.844-11.411-6.629-13.322-3.434-3.675-5.014-9.751-2.886-11.099 2.111-1.337 3.292-1.104 6.984 1.382 6.19 4.167 7.209 10.527 1.954 12.195-1.854.588-1.781 1.008 1.528 8.818 1.912 4.51 3.595 8.943 3.742 9.852.147.909.713 2.259 1.259 3 1.126 1.53 3.502 6.822 12.951 28.848 8.475 19.756 24.011 53.001 27.806 59.5 1.606 2.75 3.469 6.575 4.14 8.5.671 1.925 1.7 3.5 2.286 3.5 1.765 0 2.758 1.558 1.492 2.34-.862.533-.5 2.206 1.334 6.165 1.523 3.287 2.803 4.972 3.24 4.265.461-.747 1.796.431 3.694 3.259 2.838 4.228 5.642 5.624 6.972 3.472.973-1.574 5.222-1.167 5.886.563.33.86.973 1.333 1.429 1.051 1.219-.753 4.362 3.29 3.563 4.583-.469.758-1.027.638-1.78-.383-1.061-1.439-4.839-3.815-6.066-3.815-.33 0 .937 1.35 2.816 3 1.879 1.65 3.968 3 4.642 3s.979.643.677 1.429c-1.447 3.77-1.752 8.541-.676 10.551 1.573 2.939.496 3.769-1.983 1.525-1.967-1.78-2.006-1.755-2.006 1.304 0 2.883-2.861 5.996-4.242 4.615-.277-.277-.735.377-1.017 1.454-.45 1.723-.115 1.894 2.79 1.423 3.521-.572 4.477-.048 10.154 5.568 1.874 1.854 3.655 3.121 3.96 2.817.839-.839-1.55-7.362-3.197-8.729-1.682-1.396-1.906-2.958-.424-2.958.563 0 1.416 1.013 1.895 2.25s2.527 3.704 4.552 5.482c4.053 3.56 4.38 6.571.768 7.087-1.232.176-2.24-.161-2.24-.75 0-1.762-1.822-1.207-2.441.744-.947 2.982-6.878 8.82-9.559 9.408C122.082 272.956 119.522 272.799 117.77 272.306zM102.457 270.933c-.993-1.196-.993-1.804 0-3 1.631-1.966 3.629-1.908 4.41.127.612 1.595-.919 4.373-2.41 4.373C104.041 272.433 103.141 271.758 102.457 270.933zM141.957 261.433c.34-.55 1.042-1 1.559-1s.941.45.941 1-.702 1-1.559 1S141.617 261.982 141.957 261.433z"/><path class="st0" d="M127.957 246.433c-.34-.55-.142-1 .441-1s1.059.45 1.059 1-.199 1-.441 1C128.773 247.433 128.296 246.982 127.957 246.433zM90.457 217.433c0-.55.45-1 1-1 .55 0 1 .45 1 1 0 .55-.45 1-1 1C90.906 218.433 90.457 217.983 90.457 217.433zM108.707 213.771c-1.715-.692-1.569-2.828.3-4.379 1.277-1.061 1.829-1.008 3.137.3C114.931 212.479 112.54 215.317 108.707 213.771zM93.457 210.433c0-.55.423-1 .941-1s1.219.45 1.559 1c.34.55-.083 1-.941 1S93.457 210.983 93.457 210.433zM71.628 207.701c-2.532-2.842-2.19-5.737 1.002-8.499 1.816-1.572 2.268-1.592 4.913-.225 2.145 1.109 2.909 2.225 2.898 4.231-.019 3.357-.77 4.452-4.033 5.881C74.191 210.061 73.569 209.88 71.628 207.701zM90.427 207.897c-1.736-2.092-.289-3.211 1.649-1.273.935.935 1.174 1.818.59 2.179C92.125 209.138 91.118 208.73 90.427 207.897zM55.028 201.861c-.864-.864-1.571-1.957-1.571-2.429 0-.913 2.807-4 3.637-4 1.506 0 4.363 2.268 4.363 3.464 0 1.535-2.647 4.536-4 4.536C56.985 203.433 55.892 202.726 55.028 201.861zM103.021 200.726c-.542-1.425-.428-1.541.56-.56.684.678.991 1.485.683 1.793C103.956 202.267 103.396 201.712 103.021 200.726zM118.675 199.278c.52-1.559 2.663-1.812 3.032-.359.137.542-.589 1.148-1.615 1.346C118.877 200.499 118.383 200.154 118.675 199.278zM78.04 196.567c-.431-.697-.513-1.537-.183-1.867.895-.895 1.871.421 1.387 1.872C78.905 197.587 78.669 197.586 78.04 196.567zM111.566 196.065c-.858-1.034-.797-1.647.251-2.517 1.863-1.546 4.639-.354 4.639 1.991C116.457 197.777 113.271 198.119 111.566 196.065zM100.539 185.586c-1.166-2.178.332-4.153 3.149-4.153 2.347 0 3.355 2.588 1.758 4.513C103.77 187.965 101.732 187.816 100.539 185.586zM64.802 184.89c-.326-.849-.323-1.813.007-2.143.712-.712 3.648 1.548 3.648 2.808C68.457 187.064 65.424 186.512 64.802 184.89zM111.956 184.789c-1.822-1.822-1.334-5.869.995-8.249 1.159-1.185 1.671-.886 3.431 2 2.571 4.217 2.599 5.542.142 6.857C114.011 186.742 113.893 186.726 111.956 184.789zM131.457 175.506c0-1.431.642-2.073 2.073-2.073 2.562 0 2.272 3.31-.335 3.812C131.995 177.476 131.457 176.937 131.457 175.506zM82.802 159.89c-.326-.849-.327-1.809-.003-2.133s-.52-1.462-1.876-2.529c-2.571-2.022-3.254-5.189-1.371-6.354.621-.384-.602-1.437-2.826-2.432-3.653-1.636-5.676-4.473-6.427-9.009-.396-2.391 2.754-7.445 5.583-8.959 1.905-1.019 3.563-1.143 6.239-.464 7.588 1.924 10.425 11.37 4.854 16.162-2.553 2.195-2.689 2.586-1.2 3.42 2.026 1.134 2.212 5.269.315 7.04-1.153 1.077-1.127 1.451.163 2.395 1.837 1.343.936 4.407-1.296 4.407C84.097 161.433 83.127 160.738 82.802 159.89zM127.707 120.714c-2.107-.756-1.49-4.282.75-4.282 1.313 0 2 .667 2 1.941C130.457 120.578 129.529 121.368 127.707 120.714zM74.669 118.245c-1.876-1.876-1.439-2.984 1.038-2.632 1.237.176 2.25.957 2.25 1.736C77.957 119.253 76.165 119.741 74.669 118.245zM118.048 117.812c-.374-.973-.103-2.072.625-2.533 1.877-1.189 3.284-.451 3.284 1.724C121.957 119.443 118.916 120.073 118.048 117.812zM39.457 116.433c0-.55.675-1 1.5-1 .825 0 1.5.45 1.5 1 0 .55-.675 1-1.5 1C40.131 117.433 39.457 116.983 39.457 116.433zM90.866 116.057c-.835-2.177-.25-2.762 1.611-1.611 1.144.707 1.199 1.168.254 2.113C91.786 117.503 91.379 117.394 90.866 116.057zM108.457 114.85c0-1.766 2.153-1.458 2.771.396.217.653-.317 1.188-1.188 1.188C109.169 116.433 108.457 115.72 108.457 114.85zM112.457 115.433c0-.55.198-1 .441-1s.719.45 1.059 1c.34.55.141 1-.441 1C112.933 116.433 112.457 115.983 112.457 115.433zM31.179 112.658c-1.958-1.214-2.955-2.83-3.378-5.474-.355-2.221-1.16-3.751-1.972-3.751-.754 0-1.372-.45-1.372-1 0-.926 1.706-1.382 4.75-1.269 1.485.055 1.686-3.344.25-4.231-.55-.34-1-1.068-1-1.618 0-.55.546-.662 1.213-.25.667.413 2.805.896 4.75 1.074 4.744.434 7.586 2.011 8.926 4.952 1.857 4.077 1.294 7.312-1.813 10.42C38.219 114.824 35.211 115.157 31.179 112.658zM100.457 111.933c0-.825.675-1.5 1.5-1.5.825 0 1.5.675 1.5 1.5 0 .825-.675 1.5-1.5 1.5C101.131 113.433 100.457 112.758 100.457 111.933zM18.457 110.933c0-.917.562-1.479 1.25-1.25 1.416.472 1.26 2.08-.25 2.583C18.906 112.449 18.457 111.85 18.457 110.933zM62.848 108.907c-1.55-2.365-1.541-2.651.132-4.5 3.14-3.469 7.477-1.909 7.477 2.69 0 2.112-2.519 4.335-4.911 4.335C64.972 111.433 63.758 110.296 62.848 108.907zM90.978 109.812c-2.3-2.301-1.489-4.823 1.669-5.188 1.855-.215 3 .299 3.738 1.677C98.664 110.558 94.456 113.29 90.978 109.812zM18.813 99.92c-.663-1.727 1.271-4.487 3.143-4.487.69 0 1.855.724 2.59 1.608 1.134 1.366 1.048 1.817-.569 3C21.499 101.854 19.538 101.808 18.813 99.92zM26.186 94.829c-.401-.401-.729-1.419-.729-2.263 0-1.125.296-1.237 1.112-.42.612.612.94 1.63.729 2.262C27.087 95.04 26.587 95.229 26.186 94.829zM71.018 77.493c.216-3.029-.278-4.542-2.14-6.551-3.094-3.338-3.07-6.584.076-10.323 5.399-6.417 11.958-4.272 11.958 3.91 0 3.424-.543 4.528-3.355 6.824-1.846 1.506-3.466 3.828-3.6 5.16-.134 1.332-.301 2.983-.372 3.671s-.739 1.25-1.487 1.25C71.133 81.433 70.819 80.285 71.018 77.493zM93.457 77.433c-2.491-2.491-2.554-5.188-.171-7.345 4.519-4.089 11.821.35 9.093 5.528C100.085 79.967 96.684 80.66 93.457 77.433zM16.967 72.449c-.346-.559.073-1.017.931-1.017 1.756 0 2.015.6.628 1.458C18.014 73.207 17.312 73.008 16.967 72.449zM26.03 42.575c-.866-1.674-1.554-3.628-1.53-4.343.024-.715.957.43 2.073 2.545 1.115 2.114 1.804 4.068 1.529 4.343S26.896 44.249 26.03 42.575zM21.631 33.917c-.688-1.509-1.044-2.948-.793-3.199.679-.679 2.805 3.655 2.396 4.884C23.04 36.184 22.318 35.425 21.631 33.917zM93.457 29.492c0-.583.45-1.059 1-1.059.55 0 1 .199 1 .441 0 .243-.45.719-1 1.059C93.906 30.272 93.457 30.074 93.457 29.492zM15.138 19.89c-.907-1.901-1.218-3.457-.691-3.457 1.333 0 4.191 5.77 3.171 6.4C17.16 23.116 16.044 21.792 15.138 19.89zM108.15 16.793c-.799-.799.104-2.361 1.365-2.361.518 0 .941.675.941 1.5C110.457 17.479 109.276 17.919 108.15 16.793zM112.15 15.793c-.934-.934.194-2.361 1.865-2.361.792 0 1.441.675 1.441 1.5C115.457 16.439 113.346 16.988 112.15 15.793z"/><path class="st3" d="M304.144 309.628c-3.392-3.54-3.478-7.496-.233-10.741 3.862-3.861 8.636-2.926 11.382 2.23 1.697 3.186 1.433 5.703-.909 8.681C311.599 313.338 307.635 313.272 304.144 309.628zM284.769 305.306c-4.11-1.157-7.312-5.27-7.313-9.393 0-2.363-.682-3.697-2.5-4.888-1.375-.901-2.5-2.333-2.5-3.181 0-2.141 4.934-8.41 6.619-8.411 2.58 0 1.396-1.747-1.587-2.344-1.633-.326-3.931-1.556-5.107-2.732-1.887-1.887-2.312-1.964-3.617-.66s-2.009 1.277-5.985-.232c-2.479-.941-4.886-2.324-5.349-3.074-2-3.236 1.792-11.113 5.993-12.447 1.276-.404 1.596-1.599 1.413-5.267-.399-7.965-.936-9.773-5.015-16.884-2.164-3.773-4.767-9.109-5.784-11.86-1.017-2.75-5.901-14.675-10.853-26.5-4.951-11.825-11.673-28.25-14.936-36.5-3.263-8.25-7.179-17.7-8.701-21-1.523-3.3-4.428-10.578-6.457-16.174-2.238-6.174-4.844-11.411-6.629-13.322-3.434-3.675-5.014-9.751-2.887-11.099 2.112-1.337 3.292-1.104 6.984 1.382 6.19 4.167 7.209 10.526 1.954 12.195-1.854.588-1.781 1.008 1.529 8.817 1.911 4.51 3.595 8.944 3.742 9.853.147.909.714 2.259 1.259 3 1.127 1.53 3.502 6.821 12.951 28.847 8.474 19.757 24.011 53.001 27.806 59.5 1.606 2.75 3.469 6.575 4.139 8.5.671 1.925 1.7 3.5 2.286 3.5 1.764 0 2.758 1.558 1.492 2.34-.862.533-.5 2.206 1.334 6.165 1.523 3.287 2.803 4.972 3.24 4.265.461-.747 1.796.431 3.694 3.259 2.838 4.228 5.642 5.624 6.972 3.472.973-1.573 5.222-1.167 5.886.564.33.86.973 1.332 1.429 1.051 1.219-.754 4.362 3.29 3.562 4.584-.468.758-1.027.638-1.78-.383-1.061-1.439-4.839-3.815-6.066-3.815-.33 0 .937 1.35 2.816 3 1.879 1.65 3.968 3 4.642 3 .674 0 .978.643.677 1.429-1.447 3.77-1.752 8.54-.676 10.551 1.573 2.939.496 3.768-1.983 1.525-1.967-1.78-2.006-1.755-2.006 1.304 0 2.882-2.861 5.996-4.241 4.615-.278-.277-.735.377-1.017 1.454-.45 1.723-.115 1.893 2.79 1.422 3.521-.572 4.477-.048 10.154 5.569 1.874 1.854 3.656 3.122 3.96 2.817.839-.839-1.55-7.363-3.197-8.729-1.682-1.396-1.906-2.958-.424-2.958.563 0 1.417 1.012 1.895 2.25.479 1.238 2.527 3.705 4.552 5.483 4.054 3.559 4.38 6.572.768 7.087-1.232.176-2.24-.162-2.24-.75 0-1.762-1.821-1.207-2.441.744-.947 2.983-6.878 8.82-9.56 9.408C289.082 305.956 286.523 305.799 284.769 305.306zM269.457 303.933c-.993-1.197-.993-1.804 0-3 1.632-1.966 3.629-1.908 4.41.127.612 1.594-.919 4.373-2.41 4.373C271.041 305.433 270.142 304.758 269.457 303.933zM308.957 294.433c.34-.55 1.041-1 1.559-1 .518 0 .941.45.941 1 0 .55-.702 1-1.559 1C309.04 295.433 308.617 294.983 308.957 294.433z" transform="rotate(130 248.955 179.885)"/><path class="st3" d="M294.957 279.433c-.34-.55-.141-1 .441-1 .582 0 1.059.45 1.059.999 0 .55-.198 1-.441 1C295.773 280.433 295.297 279.982 294.957 279.433zM257.457 250.433c0-.55.45-1 1-1s1 .45 1 1c0 .55-.45 1-1 1C257.907 251.433 257.457 250.983 257.457 250.433zM275.707 246.77c-1.715-.692-1.569-2.828.3-4.379 1.278-1.061 1.829-1.008 3.137.3C281.931 245.479 279.54 248.317 275.707 246.77zM260.457 243.433c0-.55.424-1 .941-1 .518 0 1.219.45 1.559 1 .34.55-.083 1-.941 1C261.158 244.433 260.457 243.983 260.457 243.433zM238.629 240.701c-2.532-2.842-2.19-5.736 1.002-8.499 1.817-1.572 2.268-1.592 4.913-.224 2.145 1.109 2.909 2.225 2.898 4.231-.019 3.357-.769 4.452-4.033 5.882C241.191 243.061 240.57 242.881 238.629 240.701zM257.427 240.897c-1.737-2.092-.288-3.211 1.649-1.274.935.935 1.174 1.818.589 2.18C259.126 242.137 258.118 241.73 257.427 240.897zM222.028 234.861c-.865-.864-1.571-1.957-1.571-2.428 0-.913 2.807-4 3.637-4 1.507 0 4.363 2.267 4.363 3.464 0 1.535-2.647 4.536-4 4.536C223.985 236.433 222.892 235.725 222.028 234.861zM270.021 233.726c-.543-1.425-.428-1.54.56-.56.683.678.991 1.485.683 1.793C270.956 235.267 270.396 234.712 270.021 233.726zM285.675 232.278c.52-1.559 2.664-1.813 3.032-.359.138.542-.589 1.148-1.615 1.345C285.877 233.498 285.383 233.154 285.675 232.278zM245.04 229.567c-.431-.697-.513-1.537-.183-1.867.895-.895 1.871.421 1.388 1.872C245.905 230.587 245.67 230.586 245.04 229.567zM278.567 229.065c-.858-1.034-.798-1.647.251-2.517 1.863-1.546 4.639-.355 4.639 1.991C283.457 230.777 280.271 231.119 278.567 229.065zM267.539 218.586c-1.166-2.178.332-4.153 3.149-4.153 2.347 0 3.356 2.588 1.758 4.513C270.77 220.965 268.732 220.816 267.539 218.586zM231.802 217.889c-.326-.849-.322-1.813.008-2.142.712-.712 3.648 1.547 3.648 2.808C235.457 220.064 232.424 219.512 231.802 217.889zM278.956 217.789c-1.822-1.822-1.334-5.869.994-8.249 1.159-1.185 1.671-.886 3.43 2 2.571 4.217 2.599 5.542.141 6.857C281.011 219.741 280.893 219.726 278.956 217.789zM298.456 208.506c0-1.431.642-2.073 2.073-2.073 2.563 0 2.272 3.31-.335 3.812C298.995 210.475 298.456 209.937 298.456 208.506zM249.802 192.89c-.326-.849-.327-1.809-.003-2.133.324-.324-.52-1.462-1.876-2.529-2.571-2.023-3.254-5.19-1.371-6.354.621-.383-.602-1.436-2.826-2.432-3.653-1.636-5.677-4.472-6.427-9.009-.396-2.391 2.755-7.446 5.583-8.96 1.905-1.019 3.564-1.143 6.239-.464 7.588 1.924 10.426 11.37 4.855 16.162-2.553 2.196-2.69 2.586-1.2 3.42 2.026 1.134 2.211 5.268.315 7.04-1.153 1.076-1.127 1.451.163 2.395 1.837 1.344.936 4.407-1.296 4.407C251.097 194.433 250.127 193.738 249.802 192.89zM294.706 153.714c-2.107-.756-1.49-4.281.75-4.282 1.313 0 2 .667 2 1.941C297.457 153.578 296.529 154.368 294.706 153.714zM241.669 151.245c-1.876-1.876-1.439-2.984 1.038-2.632 1.238.176 2.25.957 2.25 1.736C244.957 152.253 243.166 152.742 241.669 151.245zM285.048 150.812c-.373-.974-.103-2.072.624-2.533 1.877-1.19 3.284-.451 3.284 1.724C288.957 152.443 285.916 153.073 285.048 150.812zM206.457 149.433c0-.55.675-1 1.5-1 .825 0 1.5.45 1.5 1 0 .55-.675 1-1.5 1C207.132 150.433 206.457 149.983 206.457 149.433zM257.866 149.057c-.836-2.177-.25-2.762 1.611-1.611 1.144.707 1.199 1.168.254 2.113C258.786 150.503 258.379 150.394 257.866 149.057zM275.457 147.849c0-1.766 2.153-1.458 2.771.396.218.654-.317 1.187-1.188 1.188C276.169 149.433 275.457 148.72 275.457 147.849zM279.457 148.433c0-.55.198-1 .441-1 .243 0 .719.45 1.059 1 .34.55.142 1-.441 1C279.933 149.433 279.457 148.983 279.457 148.433zM198.179 145.657c-1.958-1.213-2.955-2.829-3.378-5.474-.355-2.221-1.16-3.751-1.972-3.751-.755 0-1.372-.45-1.372-1 0-.926 1.706-1.382 4.75-1.269 1.485.055 1.686-3.344.25-4.232-.55-.339-1-1.068-1-1.618s.546-.662 1.214-.25c.667.412 2.804.895 4.749 1.073 4.745.434 7.587 2.011 8.926 4.951 1.858 4.077 1.295 7.313-1.812 10.42C205.219 147.824 202.211 148.157 198.179 145.657zM267.456 144.933c0-.825.675-1.5 1.5-1.5.825 0 1.5.675 1.5 1.5 0 .825-.675 1.5-1.5 1.5C268.132 146.432 267.457 145.758 267.456 144.933zM185.456 143.933c0-.917.563-1.479 1.25-1.25 1.416.472 1.26 2.08-.25 2.583C185.907 145.449 185.457 144.849 185.456 143.933zM229.848 141.907c-1.549-2.365-1.541-2.651.132-4.5 3.14-3.469 7.477-1.909 7.477 2.69 0 2.112-2.519 4.335-4.911 4.335C231.972 144.433 230.758 143.296 229.848 141.907zM257.978 142.811c-2.3-2.301-1.489-4.822 1.67-5.188 1.855-.215 3 .299 3.738 1.677C265.664 143.557 261.456 146.29 257.978 142.811zM185.813 132.92c-.662-1.726 1.271-4.487 3.144-4.486.69 0 1.855.723 2.59 1.608 1.134 1.366 1.048 1.818-.57 2.999C188.498 134.853 186.538 134.808 185.813 132.92zM193.186 127.829c-.401-.401-.729-1.419-.729-2.263 0-1.125.296-1.237 1.112-.421.612.612.941 1.63.73 2.263C194.087 128.04 193.587 128.23 193.186 127.829zM238.018 110.493c.216-3.03-.278-4.542-2.14-6.552-3.094-3.338-3.07-6.584.076-10.323 5.399-6.417 11.958-4.272 11.958 3.91 0 3.425-.542 4.528-3.355 6.824-1.846 1.507-3.465 3.828-3.599 5.16-.135 1.332-.302 2.984-.372 3.671-.07.687-.74 1.25-1.487 1.25C238.133 114.433 237.819 113.285 238.018 110.493zM260.457 110.433c-2.491-2.491-2.554-5.188-.171-7.345 4.519-4.089 11.821.35 9.093 5.528C267.086 112.967 263.684 113.659 260.457 110.433zM183.967 105.449c-.345-.559.073-1.016.931-1.016 1.757 0 2.015.599.628 1.457C185.014 106.206 184.312 106.008 183.967 105.449zM193.03 75.575c-.865-1.674-1.554-3.628-1.53-4.343.025-.714.957.431 2.072 2.545 1.115 2.115 1.804 4.07 1.53 4.343C194.828 78.394 193.895 77.249 193.03 75.575zM188.631 66.917c-.687-1.508-1.044-2.948-.793-3.199.679-.679 2.804 3.655 2.395 4.883C190.04 69.184 189.318 68.425 188.631 66.917zM260.457 62.492c-.001-.583.45-1.059.999-1.059.55 0 1 .198 1 .441.001.243-.45.719-.999 1.059C260.906 63.272 260.457 63.074 260.457 62.492zM182.138 52.89c-.907-1.902-1.217-3.457-.691-3.457 1.334 0 4.192 5.77 3.171 6.401C184.16 56.116 183.045 54.792 182.138 52.89zM275.151 49.793c-.799-.798.104-2.36 1.365-2.36.518 0 .941.675.941 1.5C277.456 50.479 276.277 50.919 275.151 49.793zM279.15 48.792c-.933-.933.195-2.36 1.865-2.36.793 0 1.441.675 1.442 1.5C282.457 49.439 280.345 49.989 279.15 48.792z" transform="rotate(130 248.955 179.885)"/><g><path class="st2" d="M216.143 436.628c-3.392-3.54-3.477-7.496-.232-10.741 3.861-3.862 8.636-2.926 11.382 2.23 1.697 3.186 1.433 5.703-.91 8.681C223.599 440.339 219.635 440.273 216.143 436.628zM196.769 432.306c-4.11-1.157-7.313-5.271-7.313-9.393 0-2.363-.682-3.697-2.5-4.888-1.375-.901-2.5-2.333-2.5-3.182 0-2.14 4.934-8.411 6.619-8.41 2.58 0 1.396-1.747-1.588-2.344-1.633-.327-3.931-1.556-5.107-2.732-1.887-1.886-2.312-1.964-3.616-.66s-2.008 1.277-5.985-.233c-2.479-.941-4.886-2.324-5.349-3.074-2-3.236 1.792-11.113 5.993-12.447 1.276-.405 1.596-1.599 1.412-5.267-.399-7.965-.936-9.774-5.015-16.884-2.164-3.772-4.768-9.109-5.784-11.859-1.017-2.75-5.901-14.676-10.852-26.499-4.952-11.826-11.673-28.251-14.936-36.501-3.263-8.25-7.179-17.7-8.701-21-1.522-3.3-4.428-10.579-6.456-16.174-2.238-6.174-4.844-11.411-6.629-13.321-3.433-3.676-5.014-9.752-2.886-11.099 2.111-1.337 3.292-1.104 6.984 1.382 6.19 4.167 7.209 10.527 1.953 12.195-1.854.588-1.781 1.008 1.529 8.818 1.912 4.51 3.595 8.943 3.742 9.853.147.909.714 2.259 1.259 3 1.126 1.53 3.502 6.822 12.95 28.848 8.474 19.756 24.011 53 27.806 59.5 1.606 2.75 3.469 6.574 4.14 8.5.67 1.924 1.699 3.5 2.285 3.5 1.765-.001 2.757 1.556 1.492 2.339-.862.533-.5 2.205 1.334 6.165 1.523 3.287 2.803 4.972 3.24 4.265.461-.747 1.796.431 3.694 3.259 2.838 4.228 5.642 5.624 6.972 3.472.973-1.574 5.222-1.167 5.886.563.33.86.973 1.333 1.428 1.051 1.219-.753 4.362 3.29 3.563 4.584-.469.758-1.027.638-1.78-.383-1.061-1.439-4.839-3.815-6.066-3.815-.33 0 .937 1.35 2.816 3 1.879 1.65 3.968 3 4.642 3 .674 0 .978.643.677 1.429-1.447 3.77-1.752 8.54-.676 10.551 1.573 2.94.496 3.768-1.983 1.525-1.968-1.781-2.006-1.755-2.006 1.304 0 2.882-2.862 5.995-4.241 4.615-.278-.277-.735.377-1.016 1.454-.451 1.723-.115 1.894 2.789 1.422 3.522-.572 4.477-.048 10.154 5.569 1.874 1.854 3.656 3.121 3.96 2.817.839-.839-1.55-7.363-3.197-8.729-1.682-1.396-1.906-2.958-.424-2.958.564 0 1.417 1.013 1.895 2.25.479 1.237 2.527 3.705 4.552 5.482 4.054 3.56 4.38 6.572.768 7.087-1.232.176-2.24-.162-2.24-.75 0-1.763-1.821-1.207-2.441.744-.946 2.983-6.878 8.82-9.559 9.408C201.082 432.956 198.522 432.8 196.769 432.306zM181.456 430.933c-.993-1.197-.993-1.803 0-3 1.631-1.966 3.629-1.909 4.41.127.612 1.594-.919 4.373-2.41 4.373C183.041 432.433 182.141 431.758 181.456 430.933zM220.956 421.433c.34-.55 1.042-1 1.559-.999.517 0 .941.45.941 1 0 .55-.702 1-1.559 1C221.04 422.433 220.617 421.983 220.956 421.433z" transform="rotate(-159.544 160.955 306.885)"/><path class="st2" d="M206.956 406.433c-.34-.55-.142-1 .441-1 .582 0 1.059.45 1.059 1 0 .55-.198 1-.441 1C207.773 407.433 207.297 406.983 206.956 406.433zM169.456 377.433c0-.55.45-1 1-1 .55 0 1 .45 1 1 0 .55-.45 1-1 1C169.907 378.433 169.456 377.983 169.456 377.433zM187.706 373.771c-1.715-.692-1.569-2.828.3-4.38 1.278-1.06 1.829-1.008 3.137.3C193.931 372.479 191.54 375.318 187.706 373.771zM172.456 370.432c0-.549.423-1 .941-.999.517 0 1.219.45 1.559 1 .339.55-.084.999-.941 1C173.158 371.433 172.456 370.983 172.456 370.432zM150.628 367.701c-2.532-2.842-2.19-5.737 1.002-8.499 1.816-1.572 2.268-1.592 4.913-.224 2.145 1.108 2.909 2.224 2.898 4.231-.019 3.357-.77 4.451-4.033 5.881C153.191 370.061 152.57 369.881 150.628 367.701zM169.427 367.898c-1.737-2.092-.288-3.211 1.649-1.274.935.935 1.174 1.818.59 2.179C171.125 369.138 170.118 368.73 169.427 367.898zM134.028 361.861c-.864-.864-1.572-1.957-1.571-2.428 0-.913 2.807-4.001 3.637-4 1.507 0 4.363 2.268 4.363 3.463 0 1.535-2.647 4.536-4 4.537C135.985 363.433 134.892 362.725 134.028 361.861zM182.021 360.726c-.542-1.425-.428-1.539.56-.559.683.678.991 1.485.683 1.792C182.955 362.268 182.396 361.712 182.021 360.726zM197.675 359.279c.519-1.559 2.663-1.813 3.031-.359.138.543-.589 1.148-1.615 1.346C197.877 360.498 197.383 360.155 197.675 359.279zM157.039 356.567c-.431-.697-.513-1.538-.184-1.868.895-.895 1.871.422 1.388 1.872C157.905 357.587 157.669 357.587 157.039 356.567zM190.567 356.065c-.858-1.034-.797-1.647.251-2.517 1.863-1.546 4.639-.355 4.639 1.992C195.456 357.777 192.271 358.12 190.567 356.065zM179.538 345.586c-1.166-2.178.332-4.153 3.149-4.154 2.348.001 3.356 2.588 1.758 4.514C182.77 347.966 180.732 347.816 179.538 345.586zM143.802 344.89c-.326-.849-.323-1.813.007-2.142.713-.712 3.648 1.547 3.648 2.809C147.456 347.064 144.424 346.512 143.802 344.89zM190.956 344.79c-1.822-1.822-1.334-5.869.995-8.249 1.159-1.185 1.671-.886 3.43 2 2.571 4.218 2.599 5.543.141 6.858C193.011 346.741 192.893 346.726 190.956 344.79zM210.456 335.506c0-1.431.642-2.073 2.073-2.073 2.563 0 2.272 3.31-.335 3.811C210.995 337.475 210.456 336.937 210.456 335.506zM161.802 319.89c-.326-.849-.327-1.808-.002-2.133.324-.325-.521-1.463-1.877-2.529-2.571-2.023-3.254-5.19-1.371-6.354.621-.384-.602-1.436-2.826-2.432-3.653-1.635-5.677-4.472-6.427-9.009-.395-2.391 2.754-7.446 5.583-8.959 1.905-1.019 3.564-1.143 6.24-.464 7.588 1.924 10.425 11.37 4.854 16.161-2.552 2.195-2.69 2.586-1.2 3.42 2.026 1.134 2.211 5.268.315 7.04-1.153 1.076-1.128 1.452.162 2.395 1.837 1.343.936 4.408-1.296 4.407C163.097 321.433 162.127 320.739 161.802 319.89zM206.707 280.715c-2.108-.756-1.491-4.282.75-4.282 1.313 0 2 .666 2 1.941C209.456 280.578 208.529 281.368 206.707 280.715zM153.669 278.246c-1.876-1.877-1.44-2.984 1.038-2.632 1.237.175 2.25.957 2.25 1.736C156.957 279.253 155.165 279.742 153.669 278.246zM197.048 277.812c-.373-.973-.102-2.071.624-2.532 1.877-1.19 3.284-.452 3.284 1.723C200.956 279.443 197.916 280.073 197.048 277.812zM118.456 276.433c0-.55.675-1 1.5-1 .826.001 1.5.45 1.5 1.001 0 .549-.675.999-1.5.999C119.131 277.433 118.457 276.983 118.456 276.433zM169.865 276.057c-.835-2.177-.25-2.761 1.612-1.611 1.144.707 1.199 1.168.253 2.113C170.786 277.504 170.379 277.394 169.865 276.057zM187.456 274.849c0-1.766 2.153-1.458 2.771.396.217.653-.316 1.188-1.187 1.187C188.169 276.433 187.456 275.721 187.456 274.849zM191.456 275.433c0-.55.198-1.001.441-1 .243 0 .719.45 1.059.999.34.551.141 1-.441 1C191.933 276.433 191.456 275.983 191.456 275.433zM110.178 272.658c-1.958-1.214-2.955-2.83-3.378-5.474-.355-2.221-1.16-3.751-1.972-3.752-.755 0-1.372-.449-1.372-.999 0-.927 1.706-1.382 4.75-1.268 1.485.055 1.686-3.344.25-4.232-.55-.34-1-1.068-1-1.618 0-.55.546-.662 1.214-.25.667.413 2.805.896 4.75 1.074 4.744.435 7.587 2.012 8.926 4.951 1.858 4.078 1.295 7.313-1.812 10.42C117.219 274.824 114.211 275.158 110.178 272.658zM179.457 271.933c0-.825.674-1.5 1.5-1.5.825 0 1.5.675 1.5 1.5 0 .824-.675 1.5-1.5 1.5C180.132 273.433 179.457 272.758 179.457 271.933zM97.456 270.933c0-.917.562-1.479 1.25-1.25 1.416.471 1.26 2.079-.25 2.583C97.906 272.45 97.456 271.849 97.456 270.933zM141.848 268.907c-1.549-2.365-1.541-2.651.132-4.5 3.14-3.469 7.477-1.909 7.477 2.69 0 2.112-2.519 4.335-4.912 4.335C143.971 271.433 142.758 270.296 141.848 268.907zM169.978 269.812c-2.301-2.301-1.489-4.823 1.67-5.189 1.855-.215 3 .299 3.738 1.677C177.664 270.558 173.456 273.289 169.978 269.812zM97.813 259.92c-.662-1.727 1.271-4.487 3.143-4.487.69 0 1.856.724 2.59 1.608 1.134 1.367 1.048 1.818-.569 3C100.499 261.854 98.538 261.808 97.813 259.92zM105.186 254.829c-.401-.401-.729-1.419-.729-2.263 0-1.126.296-1.237 1.113-.42.612.612.94 1.63.729 2.262C106.087 255.041 105.587 255.229 105.186 254.829zM150.018 237.494c.215-3.03-.279-4.543-2.141-6.552-3.094-3.338-3.07-6.584.076-10.323 5.4-6.417 11.958-4.273 11.958 3.909 0 3.425-.543 4.528-3.356 6.824-1.846 1.507-3.466 3.828-3.6 5.16-.134 1.332-.301 2.984-.372 3.671-.07.688-.739 1.25-1.487 1.25C150.133 241.432 149.819 240.285 150.018 237.494zM172.457 237.433c-2.491-2.492-2.554-5.189-.171-7.346 4.518-4.089 11.821.351 9.092 5.528C179.085 239.967 175.683 240.659 172.457 237.433zM95.966 232.449c-.346-.559.074-1.017.931-1.016 1.756 0 2.015.6.628 1.457C97.014 233.207 96.312 233.008 95.966 232.449zM105.03 202.575c-.865-1.673-1.554-3.628-1.529-4.343.024-.715.957.43 2.072 2.545 1.115 2.115 1.804 4.069 1.529 4.343C106.828 205.394 105.896 204.249 105.03 202.575zM100.631 193.917c-.688-1.508-1.044-2.948-.793-3.199.679-.679 2.805 3.656 2.396 4.884C102.04 196.183 101.319 195.425 100.631 193.917zM172.457 189.492c0-.583.45-1.059 1-1.059.55 0 1 .198 1 .441 0 .242-.45.719-1 1.059C172.907 190.273 172.457 190.075 172.457 189.492zM94.138 179.89c-.907-1.902-1.218-3.457-.691-3.457 1.333 0 4.192 5.77 3.17 6.4C96.16 183.116 95.044 181.792 94.138 179.89zM187.15 176.793c-.799-.799.105-2.36 1.365-2.36.518 0 .941.675.941 1.5C189.457 177.48 188.276 177.92 187.15 176.793zM191.15 175.793c-.933-.933.195-2.36 1.865-2.36.793 0 1.441.675 1.441 1.5C194.456 176.439 192.345 176.989 191.15 175.793z" transform="rotate(-159.544 160.955 306.885)"/></g><g><path class="st4" d="M278.143 309.628c-3.392-3.54-3.478-7.496-.233-10.741 3.862-3.861 8.636-2.926 11.382 2.23 1.697 3.186 1.433 5.703-.909 8.681C285.599 313.338 281.635 313.272 278.143 309.628zM258.769 305.305c-4.111-1.157-7.313-5.27-7.313-9.393 0-2.363-.682-3.697-2.5-4.888-1.375-.901-2.501-2.333-2.5-3.181 0-2.14 4.934-8.411 6.619-8.411 2.579 0 1.396-1.747-1.588-2.344-1.633-.326-3.931-1.556-5.107-2.732-1.887-1.887-2.313-1.964-3.617-.66-1.304 1.304-2.008 1.277-5.985-.233-2.478-.941-4.886-2.324-5.349-3.074-2-3.237 1.793-11.113 5.993-12.447 1.276-.405 1.596-1.599 1.413-5.267-.399-7.966-.936-9.773-5.015-16.885-2.164-3.773-4.767-9.109-5.784-11.859-1.017-2.75-5.901-14.675-10.852-26.5-4.952-11.825-11.673-28.25-14.936-36.5-3.263-8.25-7.179-17.7-8.701-21-1.523-3.3-4.428-10.579-6.456-16.173-2.238-6.174-4.844-11.411-6.629-13.322-3.433-3.675-5.014-9.752-2.887-11.099 2.111-1.337 3.292-1.104 6.984 1.382 6.19 4.167 7.209 10.527 1.954 12.195-1.854.589-1.781 1.009 1.528 8.818 1.912 4.51 3.596 8.944 3.743 9.853.146.909.713 2.259 1.259 3 1.126 1.53 3.502 6.822 12.95 28.847 8.475 19.757 24.011 53.001 27.807 59.5 1.606 2.75 3.469 6.575 4.14 8.5.671 1.925 1.699 3.5 2.286 3.5 1.765 0 2.758 1.558 1.492 2.34-.862.533-.5 2.205 1.335 6.165 1.523 3.287 2.803 4.972 3.24 4.265.461-.747 1.796.431 3.694 3.259 2.838 4.228 5.642 5.624 6.972 3.472.973-1.574 5.222-1.167 5.886.563.33.86.973 1.333 1.429 1.052 1.219-.754 4.362 3.29 3.563 4.584-.469.758-1.027.638-1.78-.384-1.061-1.439-4.839-3.815-6.066-3.815-.331 0 .937 1.35 2.816 3 1.879 1.65 3.968 3 4.642 3 .674 0 .978.643.676 1.429-1.446 3.77-1.752 8.54-.676 10.552 1.573 2.94.495 3.768-1.983 1.525-1.968-1.78-2.006-1.755-2.006 1.304 0 2.882-2.861 5.995-4.242 4.615-.277-.278-.735.377-1.016 1.454-.451 1.723-.115 1.894 2.79 1.422 3.522-.571 4.477-.047 10.154 5.569 1.874 1.854 3.656 3.121 3.96 2.817.839-.839-1.55-7.363-3.197-8.73-1.682-1.396-1.906-2.957-.424-2.958.563 0 1.417 1.013 1.895 2.25.479 1.237 2.527 3.705 4.552 5.482 4.053 3.559 4.38 6.571.768 7.087-1.232.176-2.24-.161-2.239-.75 0-1.763-1.822-1.208-2.441.744-.947 2.983-6.877 8.82-9.559 9.408C263.081 305.956 260.522 305.799 258.769 305.305zM243.456 303.932c-.993-1.196-.993-1.803 0-3 1.632-1.966 3.629-1.909 4.411.127.612 1.595-.92 4.373-2.411 4.373C245.041 305.433 244.141 304.758 243.456 303.932zM282.956 294.433c.34-.55 1.042-1 1.559-1 .518 0 .941.45.941 1 0 .55-.701 1-1.559 1C283.04 295.432 282.616 294.982 282.956 294.433z" transform="rotate(-149.603 222.955 179.885)"/><path class="st4" d="M268.956 279.433c-.34-.55-.141-1 .441-1 .582 0 1.059.45 1.059 1 0 .55-.199 1-.441 1C269.773 280.433 269.296 279.983 268.956 279.433zM231.456 250.433c0-.55.45-1 1-1 .55 0 1 .45 1 1 0 .55-.45 1-1 1C231.906 251.433 231.456 250.983 231.456 250.433zM249.707 246.77c-1.715-.692-1.569-2.828.3-4.379 1.278-1.061 1.829-1.008 3.137.3C255.931 245.479 253.539 248.317 249.707 246.77zM234.456 243.432c0-.55.424-1 .941-1 .517 0 1.219.45 1.559 1 .34.55-.084 1-.941 1C235.158 244.433 234.456 243.982 234.456 243.432zM212.628 240.701c-2.532-2.842-2.19-5.737 1.002-8.499 1.817-1.572 2.268-1.592 4.913-.224 2.145 1.109 2.909 2.225 2.898 4.231-.019 3.357-.769 4.451-4.033 5.881C215.191 243.061 214.569 242.88 212.628 240.701zM231.427 240.897c-1.737-2.092-.288-3.211 1.649-1.273.935.935 1.174 1.818.59 2.179C233.125 242.137 232.118 241.73 231.427 240.897zM196.028 234.861c-.864-.864-1.571-1.958-1.571-2.429 0-.913 2.807-4 3.637-4 1.506 0 4.363 2.268 4.363 3.464 0 1.535-2.647 4.536-4 4.536C197.985 236.433 196.892 235.725 196.028 234.861zM244.021 233.726c-.543-1.425-.428-1.54.559-.56.684.678.991 1.485.683 1.793C244.956 235.267 244.396 234.712 244.021 233.726zM259.674 232.278c.52-1.559 2.663-1.813 3.032-.359.137.543-.59 1.148-1.615 1.346C259.876 233.499 259.382 233.154 259.674 232.278zM219.039 229.567c-.431-.697-.513-1.538-.183-1.868.895-.895 1.871.421 1.387 1.872C219.905 230.587 219.669 230.586 219.039 229.567zM252.566 229.065c-.859-1.034-.798-1.647.25-2.517 1.863-1.547 4.639-.354 4.639 1.991C257.456 230.777 254.271 231.119 252.566 229.065zM241.538 218.586c-1.166-2.178.332-4.153 3.149-4.153 2.347 0 3.355 2.588 1.758 4.513C244.769 220.965 242.732 220.816 241.538 218.586zM205.801 217.89c-.325-.849-.322-1.813.008-2.143.712-.712 3.647 1.547 3.647 2.808C209.456 220.064 206.424 219.512 205.801 217.89zM252.955 217.789c-1.822-1.822-1.334-5.869.995-8.248 1.159-1.184 1.671-.886 3.43 2 2.571 4.218 2.598 5.542.142 6.857C255.011 219.741 254.892 219.726 252.955 217.789zM272.456 208.506c0-1.431.642-2.073 2.073-2.073 2.563 0 2.272 3.31-.335 3.812C272.995 210.476 272.456 209.937 272.456 208.506zM223.801 192.89c-.326-.849-.327-1.809-.002-2.133.324-.324-.521-1.463-1.877-2.529-2.571-2.022-3.255-5.189-1.371-6.353.621-.384-.602-1.436-2.826-2.432-3.653-1.636-5.677-4.472-6.427-9.009-.395-2.391 2.754-7.446 5.583-8.959 1.904-1.02 3.564-1.143 6.239-.465 7.588 1.924 10.425 11.371 4.855 16.162-2.552 2.195-2.689 2.586-1.2 3.42 2.027 1.134 2.212 5.268.315 7.04-1.153 1.077-1.128 1.452.163 2.395 1.837 1.343.936 4.408-1.296 4.408C225.097 194.433 224.127 193.738 223.801 192.89zM268.706 153.714c-2.108-.756-1.49-4.281.749-4.282 1.313 0 2.001.667 2 1.941C271.456 153.578 270.528 154.368 268.706 153.714zM215.669 151.245c-1.876-1.876-1.439-2.984 1.038-2.632 1.238.176 2.25.957 2.25 1.736C218.956 152.253 217.165 152.742 215.669 151.245zM259.048 150.812c-.374-.974-.103-2.072.624-2.533 1.877-1.19 3.284-.451 3.284 1.723C262.957 152.443 259.916 153.073 259.048 150.812zM180.456 149.433c0-.55.675-1 1.5-1 .825 0 1.5.45 1.5 1 0 .55-.675 1-1.5 1C181.131 150.433 180.456 149.983 180.456 149.433zM231.866 149.056c-.836-2.177-.251-2.762 1.611-1.611 1.144.707 1.199 1.168.254 2.113S232.378 150.394 231.866 149.056zM249.456 147.849c0-1.766 2.153-1.458 2.771.396.218.653-.317 1.187-1.187 1.187C250.169 149.433 249.456 148.72 249.456 147.849zM253.456 148.433c0-.55.199-1 .441-1 .243 0 .719.45 1.059 1 .34.55.141 1-.441 1C253.933 149.432 253.456 148.983 253.456 148.433zM172.178 145.657c-1.958-1.214-2.955-2.829-3.378-5.474-.355-2.221-1.159-3.751-1.972-3.751-.755 0-1.372-.45-1.372-1 0-.926 1.706-1.382 4.75-1.268 1.485.055 1.686-3.344.25-4.232-.55-.34-1-1.068-1-1.619 0-.549.546-.662 1.214-.25.667.413 2.804.896 4.75 1.074 4.744.435 7.586 2.011 8.926 4.951 1.857 4.077 1.295 7.313-1.813 10.42C179.219 147.824 176.211 148.157 172.178 145.657zM241.456 144.933c0-.825.675-1.5 1.5-1.5s1.5.675 1.5 1.5c0 .825-.675 1.5-1.5 1.5C242.131 146.433 241.456 145.758 241.456 144.933zM159.456 143.933c0-.917.562-1.479 1.25-1.25 1.416.472 1.26 2.08-.25 2.583C159.906 145.449 159.457 144.85 159.456 143.933zM203.848 141.907c-1.549-2.365-1.541-2.651.132-4.5 3.14-3.469 7.477-1.909 7.477 2.691 0 2.112-2.519 4.335-4.911 4.335C205.971 144.433 204.758 143.296 203.848 141.907zM231.978 142.811c-2.3-2.3-1.489-4.822 1.67-5.188 1.855-.215 3 .299 3.738 1.678C239.664 143.557 235.456 146.289 231.978 142.811zM159.813 132.92c-.663-1.727 1.271-4.487 3.143-4.488.69 0 1.856.724 2.59 1.609 1.134 1.366 1.048 1.817-.569 2.999C162.498 134.854 160.537 134.807 159.813 132.92zM167.185 127.828c-.401-.401-.729-1.418-.729-2.262 0-1.125.296-1.237 1.112-.421.612.612.94 1.63.73 2.263C168.087 128.04 167.587 128.23 167.185 127.828zM212.017 110.493c.216-3.03-.278-4.542-2.14-6.551-3.094-3.338-3.07-6.584.076-10.324 5.399-6.417 11.957-4.272 11.957 3.91 0 3.425-.542 4.529-3.355 6.824-1.846 1.506-3.466 3.827-3.599 5.159-.135 1.331-.302 2.984-.372 3.671-.071.687-.74 1.249-1.488 1.25C212.133 114.433 211.819 113.286 212.017 110.493zM234.456 110.432c-2.491-2.491-2.554-5.188-.171-7.345 4.518-4.089 11.821.35 9.093 5.528C241.085 112.967 237.683 113.659 234.456 110.432zM157.967 105.45c-.346-.559.073-1.017.931-1.017 1.756 0 2.015.6.628 1.458C159.013 106.206 158.312 106.008 157.967 105.45zM167.03 75.575c-.865-1.674-1.554-3.629-1.529-4.343.024-.715.957.431 2.072 2.544 1.115 2.114 1.804 4.069 1.53 4.344C168.828 78.395 167.896 77.249 167.03 75.575zM162.631 66.917c-.687-1.508-1.044-2.948-.793-3.199.679-.679 2.805 3.655 2.396 4.884C164.039 69.184 163.319 68.426 162.631 66.917zM234.456 62.492c0-.582.45-1.059 1-1.06.551.001 1 .199 1 .441 0 .242-.45.719-1 1.06C234.906 63.273 234.456 63.074 234.456 62.492zM156.137 52.889c-.907-1.901-1.217-3.457-.691-3.457 1.333 0 4.191 5.77 3.171 6.4C158.16 56.116 157.044 54.792 156.137 52.889zM249.15 49.794c-.799-.799.104-2.361 1.365-2.361.517 0 .941.675.941 1.5C251.456 50.479 250.276 50.92 249.15 49.794zM253.15 48.793c-.933-.933.195-2.36 1.865-2.36.793 0 1.441.675 1.441 1.5C256.456 49.439 254.346 49.989 253.15 48.793z" transform="rotate(-149.603 222.955 179.885)"/></g><g><path class="st1" d="M321.143 429.628c-3.392-3.54-3.477-7.495-.233-10.741 3.862-3.861 8.636-2.926 11.382 2.23 1.697 3.186 1.433 5.703-.909 8.681C328.599 433.338 324.635 433.272 321.143 429.628zM301.769 425.305c-4.111-1.157-7.313-5.27-7.313-9.392 0-2.364-.683-3.698-2.5-4.888-1.376-.901-2.501-2.333-2.501-3.182 0-2.14 4.935-8.41 6.619-8.41 2.579 0 1.396-1.747-1.588-2.344-1.633-.327-3.931-1.556-5.107-2.733-1.887-1.886-2.312-1.964-3.617-.66-1.304 1.304-2.008 1.277-5.984-.232-2.479-.941-4.886-2.324-5.35-3.074-2-3.236 1.793-11.113 5.993-12.446 1.276-.405 1.596-1.599 1.412-5.267-.399-7.966-.935-9.773-5.015-16.884-2.165-3.773-4.767-9.11-5.785-11.859-1.017-2.75-5.901-14.675-10.852-26.5-4.952-11.825-11.673-28.25-14.936-36.5-3.264-8.25-7.179-17.7-8.702-21-1.522-3.299-4.428-10.578-6.456-16.173-2.238-6.174-4.844-11.411-6.629-13.322-3.434-3.675-5.014-9.752-2.886-11.099 2.111-1.337 3.291-1.104 6.984 1.381 6.19 4.167 7.209 10.527 1.953 12.195-1.854.589-1.781 1.008 1.529 8.818 1.911 4.51 3.595 8.943 3.742 9.852.147.909.713 2.259 1.258 3 1.127 1.531 3.502 6.822 12.951 28.848 8.474 19.755 24.011 53 27.806 59.499 1.606 2.75 3.469 6.575 4.139 8.5.671 1.926 1.7 3.5 2.286 3.5 1.764 0 2.757 1.557 1.492 2.34-.862.533-.5 2.205 1.334 6.164 1.523 3.287 2.804 4.972 3.241 4.265.461-.747 1.796.431 3.694 3.259 2.838 4.228 5.642 5.624 6.972 3.472.973-1.574 5.222-1.167 5.886.564.329.859.973 1.333 1.429 1.051 1.219-.753 4.362 3.29 3.563 4.584-.469.758-1.028.637-1.78-.384-1.061-1.439-4.839-3.814-6.066-3.814-.331 0 .937 1.35 2.816 3 1.879 1.65 3.968 3 4.641 2.999.674 0 .978.643.677 1.429-1.446 3.77-1.752 8.541-.676 10.551 1.573 2.94.496 3.769-1.983 1.526-1.967-1.781-2.006-1.755-2.006 1.304 0 2.882-2.861 5.996-4.241 4.616-.278-.278-.735.377-1.017 1.453-.45 1.723-.115 1.894 2.79 1.423 3.521-.572 4.477-.047 10.154 5.569 1.873 1.853 3.656 3.122 3.96 2.817.839-.839-1.551-7.363-3.197-8.729-1.682-1.396-1.906-2.958-.425-2.958.564 0 1.417 1.012 1.896 2.251.479 1.237 2.527 3.705 4.552 5.482 4.053 3.559 4.38 6.571.767 7.087-1.232.176-2.239-.161-2.239-.749 0-1.763-1.821-1.208-2.441.744-.946 2.983-6.878 8.82-9.559 9.409C306.081 425.956 303.522 425.799 301.769 425.305zM286.456 423.933c-.993-1.196-.993-1.803 0-3 1.632-1.966 3.63-1.908 4.41.127.612 1.595-.919 4.374-2.41 4.374C288.041 425.432 287.141 424.758 286.456 423.933zM325.956 414.433c.34-.55 1.041-1 1.559-1 .518 0 .941.45.941.999 0 .55-.701 1-1.559 1C326.04 415.433 325.617 414.983 325.956 414.433z" transform="rotate(47.262 265.955 299.885)"/><path class="st1" d="M311.957 399.433c-.34-.55-.142-1 .44-1 .583.001 1.06.45 1.06 1 0 .55-.198 1-.441 1C312.773 400.433 312.297 399.983 311.957 399.433zM274.456 370.433c0-.55.45-1 1-1 .55 0 1 .45 1 1 .001.55-.449 1-1 1C274.907 371.433 274.456 370.983 274.456 370.433zM292.706 366.771c-1.715-.692-1.568-2.828.3-4.38 1.278-1.06 1.83-1.007 3.137.3C298.931 365.479 296.54 368.318 292.706 366.771zM277.456 363.433c0-.55.424-1 .941-1 .518 0 1.219.449 1.559 1 .34.55-.083 1-.941 1C278.158 364.433 277.456 363.983 277.456 363.433zM255.628 360.701c-2.531-2.842-2.19-5.737 1.002-8.499 1.816-1.571 2.268-1.592 4.913-.224 2.145 1.109 2.909 2.225 2.898 4.231-.019 3.357-.77 4.452-4.033 5.882C258.191 363.061 257.569 362.88 255.628 360.701zM274.427 360.897c-1.737-2.092-.288-3.211 1.649-1.273.935.935 1.174 1.818.59 2.179C276.125 362.138 275.118 361.73 274.427 360.897zM239.028 354.862c-.865-.865-1.571-1.957-1.572-2.429 0-.912 2.807-4 3.637-4 1.506 0 4.362 2.268 4.362 3.464 0 1.535-2.646 4.536-4 4.536C240.985 356.433 239.892 355.725 239.028 354.862zM287.021 353.726c-.543-1.426-.428-1.54.56-.56.683.678.991 1.485.682 1.793C287.956 355.267 287.396 354.712 287.021 353.726zM302.675 352.279c.519-1.559 2.663-1.813 3.032-.36.138.543-.589 1.148-1.615 1.346C302.877 353.499 302.383 353.154 302.675 352.279zM262.039 349.567c-.43-.697-.513-1.537-.183-1.867.895-.895 1.87.421 1.387 1.872C262.905 350.587 262.669 350.586 262.039 349.567zM295.566 349.065c-.858-1.034-.797-1.647.251-2.518 1.863-1.546 4.639-.354 4.639 1.992C300.456 350.777 297.272 351.12 295.566 349.065zM284.538 338.586c-1.166-2.178.332-4.153 3.15-4.153 2.347 0 3.355 2.588 1.758 4.513C287.77 340.965 285.732 340.816 284.538 338.586zM248.802 337.889c-.326-.849-.322-1.812.007-2.142.712-.713 3.647 1.547 3.647 2.807C252.456 340.064 249.424 339.512 248.802 337.889zM295.955 337.789c-1.821-1.822-1.333-5.868.995-8.249 1.159-1.184 1.671-.886 3.43 2 2.572 4.218 2.599 5.542.142 6.858C298.011 339.742 297.892 339.726 295.955 337.789zM315.456 328.506c0-1.432.642-2.074 2.073-2.074 2.563 0 2.272 3.31-.334 3.812C315.995 330.476 315.456 329.937 315.456 328.506zM266.801 312.889c-.325-.848-.326-1.808-.003-2.133.325-.324-.52-1.462-1.876-2.529-2.572-2.023-3.255-5.189-1.372-6.354.622-.384-.602-1.436-2.826-2.432-3.653-1.635-5.677-4.472-6.428-9.009-.395-2.39 2.755-7.445 5.583-8.959 1.905-1.02 3.564-1.143 6.24-.465 7.587 1.924 10.425 11.37 4.855 16.162-2.553 2.196-2.69 2.586-1.2 3.42 2.026 1.134 2.212 5.268.315 7.04-1.153 1.077-1.127 1.452.162 2.394 1.837 1.343.936 4.407-1.295 4.408C268.097 314.433 267.127 313.738 266.801 312.889zM311.706 273.715c-2.107-.756-1.49-4.282.75-4.281 1.313 0 2 .666 2 1.941C314.457 273.579 313.529 274.368 311.706 273.715zM258.669 271.245c-1.876-1.876-1.439-2.984 1.037-2.632 1.238.176 2.25.957 2.25 1.736C261.956 272.253 260.165 272.742 258.669 271.245zM302.048 270.812c-.374-.974-.103-2.072.625-2.532 1.876-1.19 3.284-.451 3.284 1.723C305.957 272.443 302.916 273.073 302.048 270.812zM223.456 269.433c0-.55.675-1 1.5-1 .825 0 1.501.451 1.501 1 0 .55-.675 1-1.501.999C224.132 270.433 223.457 269.983 223.456 269.433zM274.865 269.057c-.835-2.177-.25-2.762 1.611-1.612 1.144.707 1.2 1.168.254 2.114C275.786 270.504 275.379 270.394 274.865 269.057zM292.457 267.85c0-1.767 2.152-1.459 2.77.395.218.654-.316 1.188-1.188 1.188C293.169 269.433 292.456 268.72 292.457 267.85zM296.457 268.432c0-.55.199-1 .441-.999.243-.001.72.45 1.06 1 .339.549.141.999-.442.999C296.933 269.432 296.457 268.983 296.457 268.432zM215.178 265.658c-1.958-1.214-2.955-2.829-3.378-5.474-.356-2.221-1.16-3.751-1.972-3.751-.755 0-1.373-.45-1.372-1 0-.926 1.706-1.381 4.75-1.269 1.486.055 1.686-3.344.25-4.231-.55-.34-1-1.068-1-1.618 0-.55.546-.663 1.214-.25s2.805.895 4.75 1.074c4.744.434 7.586 2.011 8.926 4.951 1.857 4.077 1.295 7.313-1.813 10.42C222.219 267.823 219.211 268.157 215.178 265.658zM284.457 264.933c-.001-.826.675-1.5 1.5-1.5.825 0 1.5.675 1.499 1.5 0 .825-.675 1.5-1.5 1.5C285.132 266.433 284.456 265.758 284.457 264.933zM202.456 263.933c0-.917.563-1.479 1.25-1.25 1.415.472 1.26 2.08-.25 2.584C202.906 265.449 202.456 264.849 202.456 263.933zM246.848 261.907c-1.55-2.365-1.542-2.652.132-4.5 3.139-3.469 7.477-1.909 7.477 2.69-.001 2.112-2.519 4.335-4.911 4.335C248.971 264.432 247.758 263.297 246.848 261.907zM274.978 262.811c-2.301-2.301-1.489-4.823 1.67-5.188 1.855-.215 3 .299 3.738 1.677C282.664 263.558 278.456 266.29 274.978 262.811zM202.813 252.92c-.663-1.727 1.271-4.487 3.143-4.487.69 0 1.856.724 2.59 1.608 1.134 1.366 1.048 1.818-.569 3C205.499 254.854 203.537 254.808 202.813 252.92zM210.186 247.829c-.401-.401-.729-1.419-.729-2.263 0-1.125.296-1.237 1.113-.421.612.612.94 1.63.729 2.262C211.087 248.04 210.586 248.23 210.186 247.829zM255.018 230.493c.216-3.03-.278-4.542-2.14-6.552-3.094-3.338-3.07-6.584.076-10.323 5.4-6.417 11.957-4.272 11.958 3.909-.001 3.424-.543 4.529-3.356 6.824-1.845 1.507-3.465 3.828-3.599 5.16-.134 1.331-.302 2.983-.372 3.671-.07.688-.739 1.25-1.488 1.25C255.133 234.432 254.818 233.285 255.018 230.493zM277.457 230.432c-2.492-2.491-2.554-5.188-.172-7.344 4.519-4.089 11.821.349 9.093 5.527C284.085 232.967 280.684 233.66 277.457 230.432zM200.967 225.449c-.345-.559.074-1.016.931-1.016 1.756 0 2.015.6.628 1.458C202.014 226.207 201.312 226.008 200.967 225.449zM210.03 195.575c-.866-1.673-1.554-3.628-1.53-4.343.025-.715.957.43 2.073 2.545 1.116 2.114 1.804 4.069 1.529 4.343C211.829 198.394 210.896 197.249 210.03 195.575zM205.631 186.917c-.687-1.508-1.044-2.948-.793-3.199.679-.679 2.805 3.655 2.396 4.883C207.04 189.183 206.318 188.425 205.631 186.917zM277.457 182.491c0-.582.45-1.059 1-1.058.55-.001 1 .198 1 .441 0 .242-.45.719-1 1.059C277.907 183.273 277.457 183.074 277.457 182.491zM199.138 172.89c-.907-1.901-1.218-3.457-.691-3.457 1.333 0 4.191 5.77 3.171 6.401C201.16 176.116 200.044 174.791 199.138 172.89zM292.151 169.793c-.8-.799.103-2.36 1.365-2.361.517.001.941.675.94 1.5C294.457 170.479 293.277 170.92 292.151 169.793zM296.15 168.793c-.933-.933.195-2.361 1.865-2.36.793-.001 1.441.675 1.441 1.499C299.456 169.439 297.345 169.988 296.15 168.793z" transform="rotate(47.262 265.955 299.885)"/></g><path class="st0" d="M162.007,109.527c0.511-0.752,1.298-1.301,1.75-1.22c0.452,0.081,0.904-1.262,1.005-2.985 c0.192-3.266,2.402-5.635,4.433-4.753c0.669,0.291,0.835-1.314,0.383-3.709c-0.744-3.933,0.43-7.214,3.726-10.42 c1.737-1.69,7.685-1.991,10.543-0.534c1.924,0.982,2.973,2.273,3.944,4.857c2.753,7.328-3.381,15.051-10.496,13.214 c-3.26-0.842-3.659-0.731-3.493,0.968c0.226,2.311-3.062,4.824-5.599,4.279c-1.542-0.332-1.835-0.097-1.873,1.501 c-0.054,2.275-3.084,3.285-4.358,1.453C161.48,111.472,161.496,110.279,162.007,109.527z"/></svg>
</div>
<?php
}
add_action( 'inside_offcanvas_nav', 'svg_paint_nav' );
function top_left_triangle() {
if ( has_nav_menu( 'primary' ) ) {
?>
<div class="triangle-topleft"></div>
<?php
}
}
add_action( 'boldgrid_header_top', 'top_left_triangle' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment