AlkantarClanX12

Your IP : 3.145.8.139


Current Path : /home/thanudqk/siamfreetour.com/wp-content/uploads/2024/02/
Upload File :
Current File : /home/thanudqk/siamfreetour.com/wp-content/uploads/2024/02/spiko.1.1.5.zip

PK�uKX�ؒ<��
spiko/404.php<?php
/**
 * The template for displaying 404 pages (not found)
 *
 * @link https://codex.wordpress.org/Creating_an_Error_404_Page
 *
 * @package spiko
 */
get_header();?>
<section class="section-space error-page bg-default">
            <div class="container<?php echo esc_html(spiko_container());?>">         
                <div class="row">
                    <div class="col-lg-12 col-sm-12">
                        <div class="text-center">
                            <h2 class="title mb-0 count-up" data-from="0" data-to="404" data-time="2000"><?php esc_html_e('404', 'spiko' ); ?></h2>
                            <h3 class="sub-title"><?php esc_html_e('Oops! Page is not available','spiko' ); ?></h3>
                            <p><?php esc_html_e("We're not being able to find the page you're looking for",'spiko' ); ?></p>
                            <div class="mx-auto pt-4">
                                <a href="<?php echo esc_url(home_url('/')); ?>" class="btn-small btn-default"><?php esc_html_e('Back to Homepage', 'spiko' ); ?></a>
                            </div>
                        </div>
                    </div>
                </div>          
            </div>
        </section>
<?php get_footer();?>PK�uKXWw��zzspiko/archive.php<?php
/**
 * The template for displaying archive pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package spiko
 */
get_header();?>
<section class="section-space blog">
    <div class="container<?php echo esc_html(spiko_blog_post_container());?>">
        <div class="row">
            <?php
            if ( is_active_sidebar( 'sidebar-1' ) ):        
                echo '<div class="col-lg-8 col-md-7 col-sm-12 standard-view">';
            else:
                echo '<div class="col-lg-12 col-md-12 col-sm-12 standard-view">';   
            endif; 

            if (have_posts()): 
                    while (have_posts()): the_post();
                        if(! function_exists( 'spiko_plus_activate' ) ){
                            get_template_part( 'template-parts/content');
                        }
                        else{
                            include(SPIKOP_PLUGIN_DIR.'/inc/template-parts/content.php' );
                        }
                    endwhile;
                else:
                    get_template_part('template-parts/content', 'none');
                endif;
                // pagination
                    do_action('spiko_post_navigation');
                // pagination
                ?>
            </div>	
            <?php get_sidebar();?>
        </div>
    </div>
</section>
<?php get_footer(); ?>PK�uKX9�q���spiko/comments.php<?php
/**
 * The template for displaying comments
 *
 * This is the template that displays the area of the page that contains both the current comments
 * and the comment form.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package spiko
 */
/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if (post_password_required()) {
    return;
}
if (have_comments()) : ?>
    <article class="comment-section">
        <div class="comment-title">
            <h3>
                <?php
                $spiko_comment_count = get_comments_number();
                if ('1' === $spiko_comment_count) {
                    printf(
                            /* translators: 1: title. */
                            esc_html__('1 comment', 'spiko' ),
                            '<span>' . esc_html(get_the_title()) . '</span>'
                    );
                } else {
                    printf(
                            /* translators: 1: comment count number, 2: title. */
                            esc_html(_nx('%1$s comment', '%1$s comments', $spiko_comment_count, 'comments title', 'spiko' )),
                            esc_html(number_format_i18n($spiko_comment_count)),
                            '<span>' . esc_html(get_the_title()) . '</span>'
                    );
                }
                ?>
            </h3>
        </div>
        <?php
        the_comments_navigation();
        wp_list_comments('type=comment&callback=spiko_comment');
        the_comments_navigation();

        // If comments are closed and there are comments, let's leave a little note, shall we?
        if (!comments_open()) :
            ?>
            <p class="no-comments"><?php esc_html_e('Comments are closed.', 'spiko' ); ?></p>
        <?php endif; ?>
    </article>
<?php endif;
echo '<article class="comment-form">';
  
     $fields=array(
        'author' => '<p><span class="blog-form-group your-name">
                    <input type="text" name="author" value="" size="40" class="blog-form-control" placeholder="'.__('Your Name','spiko' ).'" aria-required="true" arai-invalid="false">
                   </span></p>',
        'email' => '<p><span class="blog-form-group your-email">
                     <input type="email" name="email" value="" size="40" class="blog-form-control" placeholder="'.__('Your Email','spiko' ).'" aria-required="true" arai-invalid="false">
                   </span></p>',
       'url' => '<p>
                 <span class="blog-form-group your-subject">
                   <input type="text" name="url" value="" size="40" class="blog-form-control" placeholder="'.__('Website','spiko' ).'" aria-required="true" arai-invalid="false">
                   </span>
                </p>',
        

        );
        function spiko_fields($fields) { 
            return $fields;
        }
        add_filter('comment_form_default_fields','spiko_fields');
            $defaults = array(
            'fields'=> apply_filters( 'comment_form_default_fields', $fields ),
            'comment_field'=> '<p><span class="blog-form-group-textarea your-message">
                   <textarea id="comments" type="text" rows="4" name="comment" value="" size="40" class="blog-form-control" placeholder="'.esc_html__('Message','spiko' ).'" aria-required="true" arai-invalid="false"></textarea>
                 </span></p>',     
            'logged_in_as' => '<p class="blog-post-info-detail">' . esc_html__("Logged in as",'spiko'  ).' '.'<a href="'. esc_url(admin_url( 'profile.php' )).'">'.$user_identity.'</a>'. '<a href="'. esc_url(wp_logout_url( get_permalink() )).'" title="'.esc_html__('Log out from this Account','spiko' ).'">'.' '.esc_html__("Log out",'spiko' ).'?</a>' . '</p>',
            'id_submit'=> 'blogdetail-btn',
            'label_submit'=>esc_html__('Send Message','spiko' ),
            'comment_notes_after'=> '',
            'comment_notes_before' => '',
            'title_reply'=> '<div class="comment-title">'.esc_html__('Leave a Reply', 'spiko' ).'</div>',
            'id_form'=> 'commentform'
            );
            ob_start();
            comment_form($defaults);
        
    
echo '</article>';?>PK�uKX�H�7��spiko/footer.php<?php
/**
 * The template for displaying the footer
 *
 * Contains the closing of the #content div and all content after.
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package spiko
 */
if ( ! function_exists( 'spiko_plus_activate' ) ):
	do_action('spiko_footer_section_hook');
else:
	do_action('spiko_plus_footer_section_hook');
endif;?>
</div>
</div>
<?php wp_footer(); ?>	
</body>
</html>PK�uKXAbN�))spiko/functions.php<?php

// Global variables define
define('SPIKO_TEMPLATE_DIR_URI', get_template_directory_uri());
define('SPIKO_TEMPLATE_DIR', get_template_directory());
if ( ! function_exists( 'wp_body_open' ) ) {

    function wp_body_open() {
        /**
         * Triggered after the opening <body> tag.
         */
        do_action( 'wp_body_open' );
    }
}
require( SPIKO_TEMPLATE_DIR . '/inc/font/font.php');
require( SPIKO_TEMPLATE_DIR . '/inc/scripts/script.php');
require( SPIKO_TEMPLATE_DIR . '/inc/menu/default_menu_walker.php');
require( SPIKO_TEMPLATE_DIR . '/inc/menu/spiko_nav_walker.php');
require( SPIKO_TEMPLATE_DIR . '/inc/widgets/sidebars.php');
// Adding customizer files
require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer.php' );
require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/custom-control.php' );
require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/helper-function.php');
require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_sections_settings.php' );
require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/single-blog-options.php' );
require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/blog-options.php' );
require_once SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-slider/customizer-slider.php';
require_once SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-image-radio/customizer-image-radio.php';
require_once SPIKO_TEMPLATE_DIR . '/inc/class-tgm-plugin-activation.php';
    
if ( ! function_exists( 'spiko_plus_activate' ) ){
    require( SPIKO_TEMPLATE_DIR . '/inc/breadcrumbs/breadcrumbs.php');
    require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-pro-feature.php' );    
    require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_theme_style.php' );    
    require( SPIKO_TEMPLATE_DIR . '/inc/customizer/general-settings.php');
    require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-recommended-plugin.php');
    require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/blog-page-options.php' );
    require( SPIKO_TEMPLATE_DIR . '/inc/custom-style/custom-css.php');
    require( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_color_back_settings.php');
    require( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_typography.php');
}

// Theme title
if (!function_exists('spiko_head_title')) {

    function spiko_head_title($title, $sep) {
        global $paged, $page;

        if (is_feed())
            return $title;

        // Add the site name
        $title .= get_bloginfo('name');

        // Add the site description for the home / front page
        $site_description = get_bloginfo('description');
        if ($site_description && ( is_home() || is_front_page() ))
            $title = "$title $sep $site_description";

        // Add a page number if necessary.
        if (( $paged >= 2 || $page >= 2 ) && !is_404())
            $title = "$title $sep " . sprintf(esc_html__('Page', 'spiko' ), max($paged, $page));

        return $title;
    }

}
add_filter('wp_title', 'spiko_head_title', 10, 2);


if (!function_exists('spiko_theme_setup')) :

    function spiko_theme_setup() {

        /*
         * Make theme available for translation.
         * Translations can be filed in the /languages/ directory.
         */

        load_theme_textdomain('spiko' , SPIKO_TEMPLATE_DIR . '/languages');

        // Add default posts and comments RSS feed links to head.

        add_theme_support('automatic-feed-links');


        //Add selective refresh for sidebar widget
        add_theme_support('customize-selective-refresh-widgets');

        /*
         * Let WordPress manage the document title.
         */
        add_theme_support('title-tag');


        // supports featured image
        add_theme_support('post-thumbnails');



        // This theme uses wp_nav_menu() in two locations.
        register_nav_menus(array(
            'spiko-primary' => esc_html__('Primary', 'spiko' ),
        ));

        //Custom background support
        add_theme_support('custom-background');
        
        // woocommerce support
        add_theme_support('woocommerce');
        add_theme_support('wc-product-gallery-zoom');
        add_theme_support('wc-product-gallery-lightbox');
        add_theme_support('wc-product-gallery-slider');

        //Custom logo
        add_theme_support('custom-logo', array(
            'height' => 61,
            'width' => 212,
            'flex-width' => true,
            'flex-height' => true,
            'header-text' => array('site-title', 'site-description'),
        ));

        // set default content width
        if (!isset($content_width)) {
            $content_width = 696;
        }
        
        //About Theme
        if(!function_exists( 'spiko_plus_activate' )) :        
            $spiko_theme = wp_get_theme(); // gets the current theme
            if ('Spiko' == $spiko_theme->name) {
                if (is_admin()) {
                    require SPIKO_TEMPLATE_DIR . '/admin/admin-init.php';
                }
            }
        endif;
    }

endif;
add_action('after_setup_theme', 'spiko_theme_setup');

add_action( 'admin_init', 'spiko_customizer_css' );
    function spiko_customizer_css() 
        {
            wp_enqueue_style( 'spiko-pro-info', SPIKO_TEMPLATE_DIR_URI . '/assets/css/pro-details.css' );
        }

function spiko_logo_class($html) {
    $html = str_replace('custom-logo-link', 'navbar-brand custom-logo', $html);
    return $html;
}

add_filter('get_custom_logo', 'spiko_logo_class');

function spiko_new_content_more($more) {
    global $post;
    return '<p><a href="' . esc_url(get_permalink()) . "#more-{$post->ID}\" class=\"more-link btn-ex-small btn-border\">" . esc_html__('Read More', 'spiko' ) . "</a></p>";
}

add_filter('the_content_more_link', 'spiko_new_content_more');

if ( ! function_exists( 'spiko_plus_activate' ) ){
    add_action( 'tgmpa_register', 'spiko_register_required_plugins' );

/**
 * Register the required plugins for this theme.
 *
 * In this example, we register five plugins:
 * - one included with the TGMPA library
 * - two from an external source, one from an arbitrary source, one from a GitHub repository
 * - two from the .org repo, where one demonstrates the use of the `is_callable` argument
 *
 * The variables passed to the `tgmpa()` function should be:
 * - an array of plugin arrays;
 * - optionally a configuration array.
 * If you are not changing anything in the configuration array, you can remove the array and remove the
 * variable from the function call: `tgmpa( $plugins );`.
 * In that case, the TGMPA default settings will be used.
 *
 * This function is hooked into `tgmpa_register`, which is fired on the WP `init` action on priority 10.
 */
    function spiko_register_required_plugins() {
        /*
         * Array of plugin arrays. Required keys are name and slug.
         * If the source is NOT from the .org repo, then source is also required.
         */
        $plugins = array(
             // This is an example of how to include a plugin from the WordPress Plugin Repository.
            array(
                'name'      => esc_html__('Contact Form 7', 'spiko' ),
                'slug'      => 'contact-form-7',
                'required'  => false,
            ),
            array(
                'name'      => esc_html__('Spice Box', 'spiko' ),
                'slug'      => 'spicebox',
                'required'  => false,
            ),
            array(
                'name'      => esc_html__('Unique Headers','spiko'),
                'slug'      => 'unique-headers',
                'required'  => false,
            ),
            array(
                'name'      => esc_html__('Yoast SEO','spiko'),
                'slug'      => 'wordpress-seo',
                'required'  => false,
            ),
            array(
                'name'      => esc_html__('Spice Post Slider','spiko'),
                'slug'      => 'spice-post-slider',
                'required'  => false,
            ),
            array(
                'name'     => esc_html__('Spice Social Share', 'spiko'),
                'slug'     => 'spice-social-share',
                'required'  => false,
            ),
			array(
            'name'     => esc_html__('Seo Optimized Images', 'spiko'),
            'slug'     => 'seo-optimized-images',
            'required'  => false,
            )		
        );

        /*
         * Array of configuration settings. Amend each line as needed.
         *
         * TGMPA will start providing localized text strings soon. If you already have translations of our standard
         * strings available, please help us make TGMPA even better by giving us access to these translations or by
         * sending in a pull-request with .po file(s) with the translations.
         *
         * Only uncomment the strings in the config array if you want to customize the strings.
         */
        $config = array(
            'id'           => 'tgmpa',                 // Unique ID for hashing notices for multiple instances of TGMPA.
            'default_path' => '',                      // Default absolute path to bundled plugins.
            'menu'         => 'tgmpa-install-plugins', // Menu slug.
            'has_notices'  => true,                    // Show admin notices or not.
            'dismissable'  => true,                    // If false, a user cannot dismiss the nag message.
            'dismiss_msg'  => '',                      // If 'dismissable' is false, this message will be output at top of nag.
            'is_automatic' => false,                   // Automatically activate plugins after installation or not.
            'message'      => '',                      // Message to output right before the plugins table.
        );

        tgmpa( $plugins, $config );
    }
}

function spiko_modify_read_more_link() {
     $blog_button = get_theme_mod('spiko_blog_button_title', 'READ MORE');

            if (empty($blog_button)) {
                return;
            }
            return '<p><a href = "' . esc_url(get_the_permalink()) . '" class="btn-small">' . esc_html($blog_button) . ' <i class="fa fa-angle-double-right"></i></a></p>';

}
add_filter( 'the_content_more_link', 'spiko_modify_read_more_link' );

//spiko sanitize checkbox
function spiko_sanitize_checkbox($checked) {
        // Boolean check.
        return ( ( isset($checked) && true == $checked ) ? true : false );
}

//spiko sanitize text
function spiko_sanitize_text($input) {
        return wp_kses_post(force_balance_tags($input));
}PK�uKXn����spiko/header.php<?php
/**
 * The header for our theme
 *
 * @package spiko
 */
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?> >
    <head>
        <meta charset="<?php bloginfo('charset'); ?>">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
        <?php if (is_singular() && pings_open(get_queried_object())) : 
            echo '<link rel="pingback" href=" '.esc_url(get_bloginfo( 'pingback_url' )).' ">';
        endif;
        wp_head(); ?>   
    </head>
<?php
if(get_theme_mod('banner_enable',true)==true) { $spiko_banner='banner'; } else { $spiko_banner='remove-banner'; }
if(get_theme_mod('spiko_layout_style', 'wide') == "boxed") { $spiko_class = "boxed"; } else { $spiko_class = "wide"; } ?>
<body <?php body_class($spiko_class." ". $spiko_banner." ".get_theme_mod('spiko_color_skin','light')); ?> >
    <?php wp_body_open(); ?>
        <div id="page" class="site">
            <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'spiko'  ); ?></a>
               <div id="wrapper"> 
                <?php 
                global $template;
                global $woocommerce;
                        
                if ( ! function_exists( 'spiko_plus_activate' ) ):
                    do_action('spiko_preloader_feaure_section_hook');         
                    get_template_part('inc/header/header-nav');
                    if(basename($template)!='template-business.php'):
                        spiko_breadcrumbs();
                    endif;
                else:   
                    do_action('spiko_plus_preloader_feaure_section_hook');                     
                    do_action('spiko_plus_header_feaure_section_hook');
                    if(basename($template)!='template-business.php'):
                        spiko_breadcrumbs();
                    endif;
                endif;?>
                    <div id="content">PK�uKX�I���spiko/home.php<?php 
get_header();
		if('page' == get_option('show_on_front')){ get_template_part('index');}
		elseif(is_home()){ get_template_part('index');}
		elseif ( ! function_exists( 'spiko_plus_activate' ) ){ get_template_part('index');}
		elseif (function_exists( 'spiko_plus_activate' ) )
		{
		$spiko_front_page = get_theme_mod('front_page_data','cta1,services,cta2,portfolio,testimonial,news,fun,team,wooproduct,client,contact');
		do_action( 'spiko_plus_before_slider_section_hook', false);
		do_action( 'spiko_plus_slider_action' , false);		
		do_action( 'spiko_plus_after_slider_section_hook', false);
	    
	    $spiko_data =is_array($spiko_front_page) ? $spiko_front_page : explode(",",$spiko_front_page);			
		if($spiko_data) 
		{
			foreach($spiko_data as $key=>$value)
			{	
                do_action( 'spiko_plus_before_'.$value.'_section_hook', false);
				
				do_action( 'spiko_plus_'.$value.'_action', false);
				
				do_action( 'spiko_plus_after_'.$value.'_section_hook', false);

			}
		}
	}
get_footer();PK�uKX �v̧�spiko/index.php<?php
/**
 * The main template file
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package spiko
 */
get_header();?>	
 <section class="section-space blog bg-default">
    <div class="container<?php echo esc_html(spiko_blog_post_container());?>">
        <div class="row">
            <?php
            if ( is_active_sidebar( 'sidebar-1' ) ):        
                echo '<div class="col-lg-8 col-md-7 col-sm-12">';
            else:
                echo '<div class="col-lg-12 col-md-12 col-sm-12">';   
            endif;
                if (have_posts()): 
                    while (have_posts()): the_post();
                        if(! function_exists( 'spiko_plus_activate' ) ){
                            get_template_part( 'template-parts/content');
                        }
                        else{
                            if(get_theme_mod('post_nav_style_setting','pagination')=='pagination'):
                                include(SPIKOP_PLUGIN_DIR.'/inc/template-parts/content.php' );
                            endif;
                        }
                    endwhile;
                else:
                    get_template_part('template-parts/content', 'none');
                endif;

                // pagination
                if ( ! function_exists( 'spiko_plus_activate' ) ){
                 do_action('spiko_post_navigation');
                }else{
                 do_action('spiko_plus_post_navigation');
                }
                // pagination
                ?>
        </div>  
        <?php get_sidebar();?>
        </div>
    </div>
</section>   
<?php get_footer(); ?>PK�uKXS����
�
spiko/page.php<?php
/**
 * The template for displaying all pages
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site may use a
 * different template.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package spiko
 */
get_header();?>
<section class="section-space page bg-default">
    <div class="container<?php echo esc_html(spiko_container());?>">
        <div class="row">	
            <?php
            if (class_exists('WooCommerce')) {

                if (is_account_page() || is_cart() || is_checkout()) {
                    echo '<div class="col-lg-' . (!is_active_sidebar("woocommerce") ? "12" : "8" ) . ' col-md-' . (!is_active_sidebar("woocommerce") ? "12" : "7" ) . ' col-xs-12">';
                } else {

                    echo '<div class="col-lg-' . (!is_active_sidebar("sidebar-1") ? "12" : "8" ) . ' col-md-' . (!is_active_sidebar("sidebar-1") ? "12" : "7" ) . ' col-xs-12">';
                }
            } else {
                echo '<div class="col-lg-' . (!is_active_sidebar("sidebar-1") ? "12" : "8" ) . ' col-md-' . (!is_active_sidebar("sidebar-1") ? "12" : "7" ) . ' col-xs-12">';
            }
            ?>
            <?php
            if (class_exists('WooCommerce')) {

                if (is_account_page() || is_cart() || is_checkout()) {

                    while (have_posts()) : the_post();
                        get_template_part('template-parts/content', 'page');
                        if (comments_open() || get_comments_number()) :
                            comments_template();
                        endif;
                    endwhile;
                } else {
                    while (have_posts()) : the_post();
                        get_template_part('template-parts/content', 'page');
                        if (comments_open() || get_comments_number()) :
                            comments_template();
                        endif;
                    endwhile;
                }
            } else {
                while (have_posts()) : the_post();
                    get_template_part('template-parts/content', 'page');
                    if (comments_open() || get_comments_number()) :
                        comments_template();
                    endif;
                endwhile;
            }
            ?>
        </div>	
        <?php
        if (class_exists('WooCommerce')) {

            if (is_account_page() || is_cart() || is_checkout()) {
                get_sidebar('woocommerce');
            } else {
                get_sidebar();
            }
        } else {
            get_sidebar();
        }
        ?>
    </div>
</section>
<?php get_footer(); ?>PK�uKX|u�++spiko/readme.txt== Spiko ==

Contributors: spicethemes
Requires at least: 4.5
Tested up to: 6.2
Stable tag: 1.1.5
Requires PHP: 5.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

== Description ==

Spiko WordPress Theme is a lightweight, elegant, fully responsive, and translation-ready theme that allows you to create stunning blogs and websites. The theme is well suited for companies, law firms, eCommerce, finance, agency, travel, photography, design, arts, personal, and any other creative websites and blogs. The theme is developed using the Bootstrap 4 framework. It comes with a predesigned home page, good-looking header designs, and a number of content sections that you can easily customize. It also has lots of customization options (banner, services, testimonial, etc) that will help you create a beautiful, unique website in a short time. Spiko is compatible with popular plugins like Polylang, WooCommerce and Contact Form 7. The theme provides custom breadcrumb trail options for popular plugins - Breadcrumb NavXT, Yoast SEO, and Rank Math SEO plugin .This  theme is fully GDPR-compliant and doesn’t use any external Google Fonts. All fonts are locally hosted. Spiko theme is available in several locales. (DEMO: https://spiko.spicethemes.com/) 

== Installation ==

1. In your admin panel, go to Appearance > Themes and click the Add New button.
2. Click Upload and Choose File, then select the theme's .zip file. Click Install Now.
3. Click Activate to use your new theme right away.

== Keyboard navigation ==

Keyboard navigation is working properly in the forward direction by using the tab key. For the reverse direction, Shift+Tab key is working on all the parent menus and if the dropdown menus are open then it is working on it. The focus is moving back to the parent menu having submenus from the next menu in a reverse direction. The menu that have #, once it is open then dropdown menus are open by using the space key.

== License ==

Spiko WordPress Theme, Copyright (C) 2022-2023, spicethemes
Spiko WordPress Theme is distributed under the terms of the GNU GPL

== Changelog ==

@Version 1.1.5
* Added Rank Math,Seo Yoast and NavXT Breadcrumbs Feature.

@Version 1.1.4
* Fix css conflic issue with WooCommerce Rental & Booking System plugin.

@Version 1.1.3
* Added google font locally feature.
* Recommended SEO Optimized  plugin.

@Version 1.1.2
* Fixed escaping issue in customizer notice.

@Version 1.1.1
* Recommended the Spice Social Share plugin on the options page.

@Version 1.1
* Fixed preloader and some style issues.

@Version 1.0
* Updated tested up to field in style.css and readme file.
* Added WooCommerce gallery theme support.
* Fixed some style issues.

@Version 0.9
* Removed one click demo tab in option's page.

@Version 0.2
* Fixed the issues with PHP 8.
* Recommended the Spice Post Slider plugin on the options page.

@Version 0.1
* Initial release

== External resources ==

Font Awesome
Copyright: (c) Dave Gandy
License: https://fontawesome.com/license ( Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License )
Source: https://fontawesome.com

Bootstrap
Copyright: (c) Twitter
License: MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
Source: https://getbootstrap.com

jQuery
Copyright: (c) OpenJS Foundation and jQuery contributors
License: MIT license
Source: https://jquery.org

SmartMenus jQuery Plugin
Copyright: (c) Vasil Dinkov, Vadikom Web Ltd
License: MIT license
Source: https://github.com/vadikom/smartmenus/blob/master/dist/jquery.smartmenus.js

Owl Carousel
Copyright: (c) David Deutsch
License: MIT license
Source: https://cdnjs.com/libraries/OwlCarousel2/2.2.1

Customizer Sortable
Kirki, Copyright © 2016 Aristeides Stathopoulos
License: MIT License, http://www.opensource.org/licenses/MIT
Source: https://github.com/aristath/kirki

jquery.mb.YTPlayer
Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi)
License: Under GPL and MIT
Source: https://github.com/pupunzi/jquery.mb.YTPlayer

Customizer Notify
Copyright: (c) Mikesetzer
License: Under GNU General Public License
Source: https://github.com/mikesetzer/origintheme/tree/master/ti-customizer-notify

Customizer toggle control
Copyright: (c) 2016 soderlind
License: Under GNU General Public License v2.0
Source: https://github.com/soderlind/class-customizer-toggle-control

Custom Slider, Image Radio & Text Radio Button Controls
Copyright: (c) Anthony Hortin
License: Under GNU General Public License v2.0
Source: https://github.com/maddisondesigns/customizer-custom-controls

== Images ==

* Image used in screenshot, License CC0 Public Domain
https://pxhere.com/en/photo/109465

* Background Image used in Page Header, License CC0 Public Domain
https://pxhere.com/en/photo/99193

* Images on /assets/images folder
Copyright (C) 2022-2023, spicethemes and available as [GPLv2](https://www.gnu.org/licenses/gpl-2.0.html)PK�uKX���9�9�spiko/screenshot.png�PNG


IHDR����8��PLTE
5�9������
"#![UTNGD)1+$D>:80*XQN<5/&%,%M@: 1$_XW#a][RMK&)#8)+>0*)!B71#%3E78(G92YKD ,")6)!*.%/4HQW9DK.1$@-"VZ^*4;���/:BM7+ZB4<L@��١��E1%����ÿwȅZ�Q�ๅ��(r,ŧ����qom�����Ѳܵ��qOw��qL>�o/�5,@���o�h&w�IDATx���n۸�).U풍i;��1-��	���E�"z���-���,�f�xR�:���_�l��)���d���*W����ܶ0�����+���I��&�Կ����7o4m׶��x���K���[]QZ�^y�i�T�|��ֹ".:=�}��vts�ׄ����ו�ȋ5�j_������o,>�%����l�aXL��O�m����ܟ�j�m�P�vd�z���a[��S��{p�>X榠�6��^3�ܰ�<�膊WX\w_S��+�>;�%��+f�5������v��r��C�z�+B
r���0���D��N<S��O�v]ǐ���#���T2�*��:��W<���ھ��l��D�Fӭ�,���m�]��,�1�
jEeB��?e���[S���%Ϙ�U���V J
#����7�G����JK�JRq+.-8�St@�B�	����
�0;*c����+s�V���#{k(�[�f*��ū�_,�QE�ҥ~�G��z�>���"��eˬ$4S�Z^��7�bk�TmD����+�����T�4�
��2U3-b�;`A���t�-G'�DH:�6����dg2�e+E�`�L�,٣~��~=`��,{u��^���9`�j���E,�L%�U}�ս�Q`������ҖVu�Z�f�JZq�s�+sL�p�J�N�-�B`��\7"7�ۆL3)`Ep!�n�	.-�((8����ZO��D�zO`S���|ȑ2'<�����;̯e^��4OX�KZ5�`��h�4O���q�@��,έ�ɝ��BdN��q�|-����%�j Xnx�X�~�",������"���R�˨���C�&r���=I,�\�K�o��BOo^,�ܹbbU�H�ɡ��C�?;���w�Y�2HyŬ���#v�eF��V�W�d1V���*vpߜHH
��B��%��J,2�3��}���X�8O�)@��1���9i��	��p!�*G[�W�ko�T���x��b|N�`����%�j��^��jbaX�J�����aN|\�����H+^��q��gx�8�Gr�Mx�V�v|%�ۡV��v����R-%�\�bu1����ڷU��C7�?�8��B`.�K&|�j������q�V!�����J?Iʇ�L�X�w,�]�BK�t��6�Mx�aU�"�yA�֪�������W���[`5XZd�G���¼��,��9�2&L��:�_,^V��l�b%.��#�r�s}K�ZЄ˸�O�@�
���M���*�8Z5Kz-�(�L��%��KyU��-!�Hs��F�	�3C�Z�ɨ���
�wa��'�2��b�l� _4�ǦB��p\e�fC��+`��W5�G��m��,B�d`�ª\�܌���UC���9���.��F��K�X����0�,��f�Xޔ�MdZ3�y�B�I���2��U��*`��3/? 1�!߸����(X{�Y}v�5���d&���XY����
�0�ÅK�6�Xa����xfRpք�C�fD�a㧻+`��Ί����V�?K�V�}�*��bͧaq_b����˃�k����Jq�
�N�x�^va����m�֣g�n��-���r#HrJz�2�<�Ap�E��ީ��u����4��š��2�.ja�EX6_5@T"�ΩwL��	ZBVIb$����Y��O/ȩZTy�������5�D�]��,�-�ل�G��i����1v12��"�Y^e3G!��hϯVj��fu�dt����IȮ��j��>�z�ˮ���t}�
�z�+�+�(��2�a��`���uN��ƻ
�ZWvڮ(�]��`=�����*�\5�����#����LĞ�B��V�;s��|Z�o`�l¢���,1�b���jIhR���If��`yOiJ�U���A$x��{)��ڦZ�,���"yU�?���#P�8O�7����"�9����E��������DOP��.2O|k�Q���$|�v��ݳ)�5�$q��N9�(�W8{,,/���ez+�����̙T>j��kT\R�r�
x�����~W|�~�kk/a�hl^Ίo�=lY޺�K6�*Z���	Ne��Ѹ����߬7���Y�U�[��KnN���SAA]Ms܇�;��KXs1��n@ K�UM6Mk��)=�e�d
����9�:��L|P�곰�p�<ؤ/kXl	�<d��q%\���bU|i6�����gͤ�u����/��3��$�Y�a�����0�4e�f���L�}�rA�
�xu�e�	,t������_n�+�p4��sSY�I��L"%��w4��Wƥ9�B^	/��$�R�"�
�+Y��ᕗ��c����a�TXq(y3�0�a�L|gg`���88`AѪ��9���$~&�0+b����Yy���S�Z��V�����|���?r�S��`��	X
e����L���8X5�vn8�}�;���J�\��V٢�{ղ�pE����������2u����m��Ʈ�)�R����ծ�<��U�cuNs�3��_0Ix›���,��S�'��Qck<1����?__�?~��r~B�៳-߿I�������}���L�
�?_[elODa�U������ec	�L����Abs����J)����]q�����6��jF%�qJamV���]�.�	�k��%�ۆpG��"b�](Yr��q����z�n�!T��}^ݍZY��d���؈�??����`�<|u��y��}�g��n0Z|�*��
��G?�P-'�xջ�?�BC,��p�
Vr�`:�\�*=�aW�W��VS��x�w����~��J���˘��7u�ܧ��گ��j7�u�E�>�άb*8`"��2/�7��J�|�v�y56�A7��e��p
��)�O�X�=���
�"��b,�����A˫��3=���l��{k�y�l`��[#�%<�ͫ�i,�(�\�	��2�4��
��@�R��pY-aM�����tc�WjTl5��=�<��Xȫ�=hI�O�sO��NY'�gR��:��z~VH1g�b���E���`n�KͿX���!���p�Rn�$�ǧ��`�_�ҩ����
&�K�Ft];��'�.�l��Y`�-�M]�X;�uc�Օ�Uw�i*��21p�l	���e�"��J`�����ۅ�O��@��T�Y�/{{N�i��2SSk v6�@	�3�����Og{��uƮ���yqCN˱Mk�'S�(�C���w�$��+H��U��ܤ?X`�-dV��e��4V���+�ɞ���w ����(,˖*^�Ljt= �):��n+��m�՟NjV�|*a=·d4+�/�L�{���j��m�zc&�_Lj�b��ě�&
,�˲P�]XFa
|�A���W%��~��-������}�������Ү����W>������
k�H�X�v�W�="� )� �Y�T�F�e:� J+���A����ˉ5���k���3#�����u��0�XKϣ�%nL|��},sX�����'l�I����ȥ�'I5p��m�&��v�U�vmOa�K2E�-��TNXܪ��-��z������J�D�Aڜ��2���$�u�u��~DŽm1u��D�HD)�Y���Lj�Z���>޵��kAمo���qw.L�+Kσ���J-�+K�ڲ��j�G*9������L2y�R�=�*
�� 3?���ݓx��ް��-���~��^��ؽ�
�6�TLa�,b�� 8�A�&3>�d�F+�O_��!7�6����Z[�#����T���������2Ő�U��v���B���n��n�����V�G��p��(����+?KD!q�*���s:aP�*���>,�׳��AMij�r��+�.�U��8"����Q���r�1G�MS`)���+��{���,�4����?��j��Wo��+�&^#�D\+�ʠ���tMg��;�
��V�&U��w��WI�r<�ݲ%w�’���̤�x�ߜ׹;�$��q��Dn�4�eR^��NV�8�;��Vw��S�����^�iJ&�p�Ћ0`�sQc,E5�>��-�V(,]r��G� I� (�X�hW�c,�i�N��k��.Oə��0-��;���>��"�6��_O�-�Y$_
����Juh.��*Xִ���vֽ��~ZH���Mc�
cU����I�*�y
�PRa��hb������T�;�D֟4�
�Q��}X$�1M6bNw��Ê4�,,�:���T�<�Mm�e�4��&=�I�f`N0jL���F+�은���,B�?�<i]6qc�~�+:�Snp�;��W6�sy6�Z�g����솿F^�oX����~��?,�ͭ灵��{���W��Ӣ>l~�fL�ŅJ�|5}�@aE���z�w9nS�TWR�v<�j&�V���jZ�{gT)�|X�I�7�&a�	��0`uVv�ي�<(�X��q�Q����&�e�pC\�:`�!��ӍԚJ�"ߎ���V�W���I��0�(�-e�f��0����+��n��<��zwz_�,-_���<�0�9��vOW�z����,�a�G�%S���\�g���႙��X�v��YYg|ΐ��Ԝ_:�,,'�+�BO�/_��’J5ĉ3Q��������Fg,���{Ý�gƩq��D�iJf�+�,�:�-�tQc�f�X,�t�^�6�*�mt�J+7�����V���k2`ͱ���b�n�>��e���ᡣ�\l��3�!dF��kJ���T��j)�Ep��*-��,��ps}Qղ���3�:��]QoV����r�Ci7k���6���(F��i�W��Ј�lTXźHi��ў��Bso�]ٌE7G6~�>3	_�,�]k����o�b4+f����Α%��W������,��_ݧ��k��vs�ۣ���g�-1J��4��W����'qX���tQ�]?��z9=c�
�V6�n�T$i��Y�I~�UKC�k��m�4�Vx�G,7��d:k2��N�l�o�i�¢�t
�]��w�wE��O�<^?���_�V�t�;���#���w|{|�'�C`��S���蝽8����O�v�u���_�/�!��
/ �!��>�ҽ�2�"��ݫ9��B�]�8��Qsa<��'��>����9���=���п��q/��WX�2�v�D!jM�Di�4M�k��Q/��F�P���J�U�����c"�"S��I��@�v��e���VY�!VZ^X�L�_����[�*�/jV�J�}]�6��������_��J�{6��Y�q���MK�J��X��g,��h
Q��ɶq���s�M�%��m�jV��|d��c'*��i��#$���e`�6_�h�غ���cY�ײ�Ҡ�?�3��c�`9~vG7�:w��9��
�KA��m�ji�ǖ����؝:��cO�0O7���(A�kh�v簑�^%���-8���uR
�:��D���WV74m�}.�q�-�Pr�`�W�;4�� ����|�g3:��D�VXԏ)�|��q=�с|��:��8���ާ���v�k��
��s����h�$�q�	N�:�6�@���T���y������}ģ����Y���r��ʡ,6O0u*(����W�m�y֛V�1h�f
"V�4I��'S�j�Z�Fx��bAb�TEh��Ef����b:]|�*�U$�1*��ߪ�K!�$���̗�����5u��aNa�ǿ'�`���Z�##�;ܡ�X�s�����P��]@�y�L�P`ãb�ޗro�:�es��:�sE�'���{��P#Pb��{G�m[����	�ņXY�Kk�m�޼��Y�b�:#�f�~�����Ul(),@am���c���w(!����{
�L��+�J	�(�h/��=*��gm}R�]�
���;�ze��4i��U�;���7V�W򜞫���k�KG�f����X����љTDf�9�|�L-�U�T���m�&��
a���%�3����Ԝ^�i�r+%ֆ�b~�X5���q��{e`��	kb�=hN�#��k�NPlY�"K�*��=��Ι?�����,>N�>L�y���a����%��Ck�����͂D@C8/�
�*�}����
P��7���p@+LB�{�s;r)�Z��
Ug96�K5`�C	����]
xJ�N��}Xqʪ]l��`��c$���RA��u�Dõ�������,�v�T@p7�~'��p"��nH�bH��+��h�Jb���4Db�hri^���原��^PX�1āEh���԰S���Ҡ==]	,M��/�5htƃ�4>5=됋+���!���u�Z��*W��s�GEx��jZ�y�����0�>�I�,[�	wf�>,���56���YO���A�&�&a�q/g�}��T.��`���e�w���PXb��p�[4�`�Н�f��>�NJW��~�#��@MK�����J�I��}���Zf�b�F.��~=����(!E���n�[�MOc�
<`!����N�x@I�ks��qX�)]@F��ƭ���ӝ�:x���1��g�G讁W�#E�ժ��#�I�wx�ll-��\C�<^�ʝ����ZV�"U$�3��1X+������O�F�]=��ɰ�̔�Q	�!<N�8H�d8���������Z�/yWÖ:��ۦ2�r�������ǝ�a�O�FY	�����l�&i�&���[E���{�y�9|��Y��¼����a��_;b�Xuh��j4����P,
O7������ڂ�$<�kKȢu��n�aS�l{����Wsz��M.�ד���>,��-�4,��S��oS�����z��'Xt�(Q�ăye�Km�Nv�qy~�}IaR��3_Sn�=�]�m>��M.����m��a��v�v���l֡v��ٟ|������;��>�gX�;�(��6�剒�.gXSJ����q)�}XL�+�]�i�a9#�*J�<U�Q;)���(�U
�*��Õ+2
"� �	��q�
X��ھ�,����R�j-,�7�zE(n0� �qW�O��FekU.
D<X�b�i�a^ҽXI"�!�X�
�e�
�����ζȖ5�.���P��E��JN�
ǔRѻ�q|�l8t�}D'�W��l����t?�e��3q��j4>@���hHg�������t��Û=����h����E0���'|�|MNqz�� ���G>-�ػ+ˇ�#�r��1[�9�W��l[��ud릟�E^����5�Rpjn-���)d>��.�`�$7�Dc�
����:�TK��>�R!'󬞰M�w�g�	X��_�����Wv�\�^��`	��w�Y���[,CeV��C	X�D��'*k �X�YEN�ҫݬbu��%�s,[:+�}SeƁ�X�ۓ1��a+	,��\��3�s��am�RK-Z�aE�YDn��ʔX�F���
9y�H��P�-��Q�׿`���~��}}s<+d�9�����E-C��喿~��A)ۢ�'���"��`K��Ě��]	��q�>m�/U�[>�&��Bzi2=V��H�i��F�B��
����-�aECJ�d�'���}���#_ԗ���Yk�~�%�k���`����8�q�쭢lg,]@�Z|�|@��e��-�!��[U��l����PT
�$+IvU���3Q�}P@�ޯ�k������^�-��H}���P��Mqs�CF�O5�*i;l��~��A�|���O��V�3��n�H�� �B�#�Yo�Pk�'�J��$��|C�k#��x��*RD���\s
���HGQ �Q����GA��l�D�y��Y�]�e���E�&
-�� X�f�2�9лw���-5�9���V�ҽn��Ug}�I��n[�
��]��/Z	ՕKH/��[�,����D�蓶��Cv!���2`>�<K_ч%.��%��G'�P6�72���=�0�k��+g����SY\���U����U�VMm�*�,jI�6^A��=!�@3��Xq�#M0��U�X7#�G�}�7�V���\¥�M
p���'�^�ߧ%C��\�qRbS6�k�b��t��W�Aת5��xx=�D>@_3�/���)���W��$�O��r���|<<C=�Q9H>�ɘ9���*���Dzaw0Pm�P���=eC+�(�j��qφV4�J&���_�h����πɰ~�Ǥ����+��"�)F\ՏW�M�6�ux��:�5���5�ò�ڪ������|�o�8��^���ǫѕ;�O|B����8�uOxk����?G�P�*����H�$LM��<!�V�.Ĩʣ��j�Wuf���]������D��SF,G[�%�q�T��%
Fźq�ڍ�jֵ�i>g&�k�W�"]sj^�
��ns�Ƨ��pr��#�c|E�,`�����ʀ���x�e�z��`��龘�B�h93Q�j�3�h����H�4Wn�P��GS�JY��}���S�����Ka5�Ӏ�3(Kc�!AP"Y��*l�����fR�*��W��J?�q��-]��?��f���ʍ6��RI�i`�r���t~���q+�a80��Fx��>k<����R���N����b��P���&x�x�Ѡ̾Md��n�@5�I�z�7U\�2�!�6����v�PLF���a������{)�crAF���Gv霸ϓ�Ȩ$h��/��a��
܁m:,�tz� �M)�d�؟��ҝ��@�96�M]�����Z$��^�uel�/�ҽ^�g�g��r�^�a�T#q��"���~����n��=gX�?r��#M�I���A��l84���8X��dRR	L(3�H:�ډ��$f�W0�p��!�Y}&�Q�܂�����c�MG{�HFQ�1HG��("�E5P�	��s���Vg�F���u��Ͱ�$��vD��UU�	d�x����i�(�ԍ��R/�*^�{ruЦ�~�u�E�����}{�e�Qv4=���������xttB>��KtNZ���Jo�,�-�g�k
������C�r-8�6ޢ�򭬏<�X�/��V�	�P[E��Y�1�I��=���9`@���Ő�#2"�FY�(�%8E-ҋ(���
�#	�1��1&��2Li�[�U��"Q�x��Ī	X.�{Ὕ�î�'�t���@LЬ��.kF��PA+�^�aA��xi�P�3
�T�:�p37?���V�O+�gS�婛S�������ä�,�T��иoL�
E
�;j�1B(ȴG�#���G�3&=
j}Ҁ�_!�⌒�F��S�I�o�E����v�)M���)�j'���!b7J��Gm�Z��/[W来=��*ܩ��o�
O7P)c����aX������!�E��)`#g��?ꊁR��C97�ծ�!�چy�F���[m ƿ �Ĕu�
:��N�d�M�Y��
F��v��l���؉;)l���6l�B��t.��������:l�R���
���]�4b3Age����~m}�F��,w�S��Ž����/ׁ8.���a���zS# X,6W�F�0�t�"j�n^�oS�R�ؠd
�o=FT㒢�8J���>�̦�@�W:a�'��ۛ~"xj$�괰��nP�݁Po�޺U)�er}6�{]�Gx���Ɍ��VR�"�:�!��nt���"o�NX�еY���
��9�j貆i��ߞ\�8;�n��d��"YaX��l���W.i�k���+�Y�.w��׻��`��Z�����1O(V��/�	�[-�R�0/
E�� �6XeOܒ�+�G�u��J�^��b��?��k�$iKx�����,�4be^*F�G��̀x쬒a=뚼&!x�@��9n��LH�%A"!WK-�zr�	��vg���������0'`9]?V�Ȳ�����eD�G�P2
ͧ�����x���YN��E3i�C�F�|��'��%�$ŧ��XB�H��t�����_�e�q\��U����*�}ˋt�l��d5?��KC�E��d)q����I�!�A ��?:�X���%,�e���G���[����6K��ߊ�ε�_�������Tۊ���:��eڌ�����q��R:��r����|l�]�D
X
���F'���*N��1m�#@k����@��l�RU3�{�ۺ�\p��&�n�T�|�k�d���-�����g�޲-�ڐ�B��W���+������)Q`U��P�u8e�X���iW�Uf�aX[��Rxlm�;�—�t`��W'�KMG�C�_%(�6(�;�9��V4�tf�����P��qr|��_��A��v��m��@�b@��$��x�W+"��0x��`�U�|�G�
Hkݒ��Ru8&���g�1�+��If䧅4�Mu������&��D�n��ٿ^��_�Vה~��.��z�N�E�UY��\������8�/V��a}�z���xIw�j�)}�،X�;D�Y���kG5��W���E�2q�+�n�vO0ʓl�TXűf���⧠�=�X�TنX��	�'x������=�c����M٪9^����O�w��z�UJ��>Xj{8���xFk���
ے�)����)%��H�J��{�[��x��–�NX�z�����;�a��ߩ��`�i;�w?�wr��+��w���:��]�d��	�>>>L��E-��O�p�3�j]����}�78]����wi�,�
��Oz�뻺�c��W�����:��K_NM�$����b��vΩ��+��q�Y�O��΅�׏����8��dP?�� �o6t��JѬ*�iÀ�j��S)^�r����v��ad���u3'�$�����qj#*1�݋�ד|�p������V�d��|�����l�_��<�ۨ�j�P�����6N�p�N\_*���`
���K	���<'��^I�~�Jn��
�8W���,�&�ȖuN,�C�m��2F��D�6� �a[�ii�kh{C,w��z[_����D[�bX:ժ��+���jX^�^���<F߭���� Ҍ�6��`�	��-�3���p�ݑ�^��]�T܃8��ì�w[:2�ի�?♢�3���������ɾ�Z�v�V^���y��	g�y�������Ov{�P<8��'����)!w�dT�2N��i�k���,҂e�꯺��
Y<��سi߬��
`�?��p=
��V����j���_�>�Yƴ��N�_F��r��	E���U�qL��F)��-`��iO�)�����S\���߁��y��P��K��me%�c�W���)�f���i�
�R\��u7�_��RA�����
n�/CD�F�{w~��G��|�$�!�3��?�W*f� )�����h������j�X�~��.�,��'�����0s�b��
�p�I��wS�d���ط�&,Iϣ���Ҿ�.ƒ\—���Zh�Ry��:UXňED��KX~P^�n�,5\�|�ViixߤW����临lEg6W8�e7�A�n�ƕ���M�nW���p��X���Z��|kl��>4����t�I�#�?` ����r��� Kؔ����];d��Ov�T�#��Kr����2C�6*va�2��V�ƅj
ړ	P����Y�����N�c�Ɯ�±Y�|�Q�%�?#���5
I�q0���JV�V�F�����
��n�^I$�2���Z�d�����J���G=�0T
h[��
���*)�Q�o{k�xRڿf�K�d�bJID��O>�W���|�����Mp�GhF���ԕ��
���I��y�՞�m�L�7�ն���n�xj-��a5F�*!��a(�+�J;Y]by�΅f�0l1��O82ab��t������v{����v;���q�5����
X�c��P�:B#�t��]�[V:����l���i�l$�CÐ��C��|3�J�R�Z���z��;��Ÿ����t��s0��N����&�?Ox��N�Nl�DVŲ����|-*�
��^y0�|��\.��/�1�x����?~���_.��i�n��Ϫ_W��I���t�|_��;\JMŚ���jh�6Z�m�&�5
۝mUW2İ��7��7�Bὖ�3���,�U�6U�J����V��jx�e�=0����o��6���/�f#��Ẅe{YNW��FG�����:I1J
�B���D��Q�l(�H���\{~�P6HU��̓|��
��=H)�A�l
tQ����lH1�Q�A���7��a�$����9��rX#��-��=���#t�C�`+i!�P:,�i)�C,9	�ɲ�԰J�KǬ���n�zx5���U��� 2�@8�yqf5����A)�9�y����l9�f�>D7R�<>�X,4�,��c9��Ȑ�^i�be3!���}+X5�@��Kj��fA�Tz#9��,���(�.g����X��q*��<'�K�b2�Nlmq��"�$p���5័P�yA�����!�mF�+ùpN��T�
�l�̲��J堶c�Ĕ�Vr��א�T\�v��|e�$$+W4T���g�D�e�|�@h�g�Nh<I3(e�����/d�O�t�`��x)~e���9`�^���.��D�*.��w<�����̠d�l�3qA2���*}\b%�HCs-=� "4�����<��⁠�0il�<�V�/�mX֥4yDŽD�o�$�gC���-l�`�Hk�bL���iU�
�(V֩�v@�1��Ax�-`��B���
�9�(��x-��s$6v�a��.�0�X�x)9�ؐQ��F�C�
p�c�ә��!K5(v%(�*@	a�$�H�K<љ�Ƒ�\��)
hv�Ҥ,p��1Tc���K����X�����O�
�T��˦u(
�"qN�8[|Rg��i �
@t^2\�2R	�hG���,F��M��$m��W5�Wr�g���ObMF,[/�'�YE�.M���7]��"x��K��3�qt�p=���S�ɶ_�p�3�U�25^���[#����W� l�����C���?	��=�i�t�����8�Ycx�'����Q⃤I���~����)�����ٌ!`�����쎝��'!�Y2�.pdh��(�W��Nl�c�D���O���~��������B	�9Rk�7T��YmN�;he)�
���B��Wz׉wg�j���i����R�E-r+˶누������I��%�1�P�o��>F�����r�徛�w����K��`��1��sb=r��\u:�WD�`�c��(B��U��w�C��ɑ�D��(�x����� ���N��9Y'�4W��7�"���2U�^(<���Hי�k�"����y���sR���-f�|�M��v��H�G��]��%qvJpJ�*�a%�42�^������J3"�D�����z-�U��,���u;�$"I�|AkM��H�tW��m=%�O�+�L�ɪp,e�1��
�Z�O��#
Zʄ�gs�6C�b�B�E
Q�l�`9�"�bG�H,��+�Y����4��b�J�1�� E��cW�:#��$���Q�`b�}C
�̝N���C�BYN/�cY�"4L�n#ve�>�Ԙ��_%�a���Q��m��҅�8�[�����Jԗ%-"R�SLS,��Ǹ�2P�e}�[��.2t��(�c��En�\|A��Q-��"�_L1�q#����$��r�
3%��b�f���E�` O�rf�@����!�B�F��h�c��W���U�E@�{�́9�X߄�r�_$$�z+�x�<��g�a�P�H�=Q�c(������uӲ޳bMU-���3M4�V�=�ױw�#��6A��躖7�$XY,�I	�a�Ȑ�Ì�>�\��?�ݕ�Q���G��&�*2�E5R��\no��6;�
�I��%vR��i�«�%�dd�?.��{�|x�A�?H�l���!c4>����������5�w��PV㩇��pv��!�A�=�
Ż={���P����O����n�#OS�Bc�~�z��5hKsd���G����U�j}u+�Ԟ�EF��8@ƴ �1��#&"ç�?&Q��ǔ���AP�PձO#�'��v;� �S
���Fj!�싔9)*4��,��:ٌp�IR�GT�q��q$K��2�N�l4������&LڽD�N���w�Z��
�,�k�����୦�4:}��P]vwű�)25BS�>�./hU	��+�*(��r��� ��a7�<�=V�S�+��.kބ�n�Fh�4uZP�ӵ�F��糙��
����zoO3X���zt�e�l)rp�
a�qݠ�F�U�L�jq�%D&���j�������	�کm��*����.^5c�3:̲f2�=j�ʯRF�&E<Y���X��T\ ��;<��Hs�����V���,s�3��`� M���6�?��rōH7a���R���d#b���[��Q�Ύ9�!
ЀY�XpSugcZ��fMu�iQ}�}v �g]&�ׁ�H��?:�̿�d̄��AVg]��ȧ�e�{6]�oAXS5����H2jΐ�ݵ0�Uv{�����6(,�"O1��m�BA!�F�j���[��j&�	�'qN�jrڔ���L�~�6��ff�AA~Âs�9�Q�}�
P~ʱ@&��@JY�v%dK�]5�JU��ֻ�tWZ�(H5���D�%��.
��&^}�R�to��K�jC��&@6_~�@P_D���[���D��(wSi�0�?��
����ĥ�.�h���$)�f�:��BsG�$Z����I�P�Y��[�L��?�4��a��r-��KA�%9o�&��`ȱ���<��s$��77pxC.�%�,4ɣ�����l�!�hV�m�G,�2"'P��(�����n�޴�L�ҋ_�'ōM���RK�q����du��`CَaI���
��t�P�!]!��&!ߞf��w��x���d�Ұ(G3��W��x�����h��6aڂ7�J��Q�;=���ڿ�~�V�ጐn���a�Ы�q�R5�f�ˣ��7u+�S�O�~������c]�Ǖ�|��8��տ����x���Њ�n`���a��aD�U!��>S���w��X>�7�
S��%�����B��b��0���eK���-�l�K��"G�P�!�>{(kpn��sEA�1��V��5��=�F�
>���*q�-�uՉ��
e�W��)5X0��A�m�ev%�{8��/Z��u�G�)�c�f�����;2U3ې����߲��"5��f�ȃ�����j��Ac�3L�ͫX�d�1��V[�>B+�+��}�:'��i���wŨ��'M,0ܠ��.��r:c�W��EBy�k�
�KCϗ�q�@P��UUϩVc������D�w<2��OE,뉤�x�rC��P��=֞X�+��~�^�2V$��;�-�Ȝ @�G]G%.���I����!��
�b���±*%,�~�ңC ^s�#�w�]��4]^3�5�$��/;��D�cgM�z�i���&��C�z��rB��3�/M�
S���n���%������DqŒ�t��(J�"]|��I�%�S��8Z���h��`�S����F�Ug��L�M!�{�C[�n®���o
kf���G�{�{��#,U����mS������v|�HS	:�Տ㊃˸G-9�.G�6�3`��6ÐΚ$�:�k�oy���oH�'y�W��H��x������x��9.����(9�-�d��2�N��&ڇd�Pb-v�)W��)�.���OBU�l����k8	�N5�k4�7"Z}|��,#$9=U�Y�(���	?L�3teģpG�!���شh7R�֤ekE:@�<HQ���T��
��E.�u4�b����zm�'���	�dƊ�ÉY������DG�% ����l'�w��%Q�L���M+��J;_��1QAuv�����h��Uw_�%!ˉ:�u���$@�c����I�ι�	SG�2!�qƄ��g��a�k���(�<�Kc�g���2WȢV8E罦��77�񇐈r"jO{^���	W�㔴��E���[}?�xQ��)lA}D��	ji��n{QB]4ʔ�X���b���j��)h�� Am�B�>Z�,>c���0�v`+]��.5ї�h#��'��^dƴ�n���;��3:b���J�#ky���訥�ʉ��w�L�a�5��s}M��cYۈg!+l�0���B���gh���Âa�S�9����vW��31�e��N�e�"?��$%���\ьZr,�!H���+;%�R^��`�(�v��9#ׅY�h@�'��+[����DZ���W?��5�M?������_��y�%����1�yے
^y�׎5T��qG�K�R��az�qI��-:��a��u�‰t����M$9�ߔ�:�,���\����Y���?Ai��:��+��@��'�GN5���wY���|\��HH%�,�_F�"��v�q�!�^~��;�>p_'�H�R=����6����[%�UB_��.���4�ң�Ҍ���0"���#�(o�%A��AwSR=h���	��zs�#J�7w��5�kz�Jy�6k��"� ���mے��~�b²�Q^�cLp�HtM��Y��b\v�|S�d����F�+~՗7��+���#1;3D��_���'b���k���?���r^ݿ=��v V*��h�-�"s5���8��Y����ێ��x{�!)r[OIȴ��G���@ޜ*�W�s�2G�(X���y��e.�<鬟�(�rZ���K�Y��Y	XXãyC�.���L7�aE��-C-ނf�H�9�շq�,�9����L�Z�lGskl��ߨ���:����W�_��%�$~�`�h��5b1��*ю��h`����b�b5*�RӅ��V���;%�Ӕ�;�JGT�9����
�'�iB�TJ�Ԯ&ZJ^Y��=��o��0D�V��=�l��e�'�8�XF���Й%�i)��.��E�a���h��~�s���
��{>~��v�����z�+ܹt��#9 e�pF�<�~`�Ҙny!���`�z��!�3r5���|%��:,�����)��r�(��`'Vo������\�����8��D8��Y]�|+Vo{�~;��'�|ʲЙ1�	�g�h�~�eh�_r�׻�K�Y�[O����OS�˩�O�_{��&�3D9݉�#��8�œ�N��8�:=`��+����2jdQuh�@N��zv��\�b���{�,�駣٘�Qf(�N	a��T��(@,{�l��M���`�^|�����l�v8	��mT���|L���PlI1�y.�5Jw ǃ�
����٠�]��԰����ǟ���_��s�{D�6w?N���غ�嶍%�����"��Ȓi��,9���:���:�;�^ȴ�$ހAOOwOL�6��~")�NY�sS?�v&p~�V8zF��w��~`�*���
�R]�V��)0�z�uL��:�RFp���G�J�xG�5����85�d2yx\���Q;N|q�i$�4� ;	�0��;�ʳ]��8Σ�$aԤ��*��a�J���S�e���Hb��1�>���<+���K����wIB���p�KTe�*���%Y�&x4$!�/2�KW�9Ae�0#ĕ�ı�
�ED�b	ŕ�����ǘ�L �'�M>R�D2��(~g��XT�dÑ��@nX�CI.?&��V�v�����X�����JkW�R��|���",�1�s�\CX���\*��c)ZK�X�MX��y0"���مi
b������$#�|��B7J�`+Q��z����W��=�jz}֑׋dʅ�����
����F�u��������Q�g:V�eƼAM'�k�(�#F�SIe܁����̊��Ɂ�}���{n��p)�����1G�_L�$9�n	T�hXt�|r��l���z1�Cn
��L�eɍ��^�P&s����
Y��Z0n:x>��R�ҥ�ĕh����+ݓ�A�`/��Hǁ�e8V��H�d�$FPd
�e?���6u�,�ֲ� x�Q�����p\Q+!���O%�-L�/ɧ���s2ePEu���R@�gҧ��*ph���ei��|\�R��y��B�� t�Bץ����b���ݹ�S�)R�<;A-0��֕_r+O��>�%�рbS���!�58rz�TL%��p
ھq�>��Ĥ$��
�v�s�jz�)@
�0`�h8L�=�q�y����?^�Tm`nz>��k5�n[Q*��i�Yh���d��do<N��'�E�C
�Dӝ�-�|�t4o�~�!U�HvD�eT���w�M�	dNE2b-��-�����V<�1���#��L�@��r�.�4�c@�X �5�"���&�5����$���1gc�,ϒ��))��4�qA���i�B߆�|�g��5�����bR^ٮ֫JJ�ߍ�n]Տ���>�	���qt�܎���:.����Ao3�K����lSi����fIJd��ɷ�c��dXy�\�+K���2� �1"t���A����8t�p�-�UkY��WJr�Q�Jx4B�����EҤ�|�H>V}��u���8O��y�*�<e��m}���}�z�
�Z�	��l�P��"�4Ngk�m@��&xĦ���OZ�H&б�O���<:��f��#���H��#)���걥m"�W#�C�z��>B&�Iz9Q�K�U�$c5+D��>![�[<O�R�.Bp2Q4�3��Iب��X$��wQii��Q�}�8t���'ھ��K)����G>��3�8�� �L8Ü��J�?����]�4���ʉ��V�Z���s��5ϻ}�\���~.y�[�@�y�i��-�'[ƘV3J�eD,�ڈ5a�r�_�T��pL_1���/�̏B7�m@Ǎ	�U��,c�ч��[��j�*G��q����ܢ]��6��-J��e�=�<�~̻��S���?�;Z�\��i���U��oc��.ij�-^��)t
S�Ǭ��+��
TK��N�dӰz(w�M0H9u��tT^�E���!i���u6@VB�tWE��#E5}Ł]�"����MkQY�"�P�cɫ��H`H$�б�PiJ���w��m%	���#_����)�|Z�?�?��%b����i;���hbA�~@��[jE@�۰V�g8D�q�@p�X�	�v�>sGX��m�竧ōy4��J�߿�t�����}�m���31�o/�y�y~�Y�ȮC{�5����X>� 	\��J�d4���!��>}�Q+GM��KHw�&+M3_�L� �Z���f6f@T��'t5B��>7j��E�� p�rfΥ#�J&&��l�_�Z�T��|9��^^�/��˟�ή�=�������T��v����.N,��T��=kж�V���Ź��A�������&Q�/��.����![����M�L	>��ee�\}���qݧ�G�XƽK
q�O��k�&�G��	��-֝5h��puթ��bpt��rl.W���F�n|#���1M�H.��*�5}N�i��A,���@��~7o��T���U76�ꚶ�wR������ڭ��ݦ�
xO�����l����(e{3Z�j�&YQTm�9�KϜ�"�]�z������L:��J&��j(b��&>sǚ�J��#�Z%��z�9���z�G
���P���daI�L�ջk��4�����������������t:/󤷟�X��u�,�\{ǥ<����fU]
�
?�e��#iHa=�	�k��/-u��(����Z0`Z����R=zhM��P�9�}m2{����VY�u��h-aG�K���Ap���s&��)s��qw3��:2���U��XҬ�@���F)��c�X	��-ߤt��^��%N��
k�T/���U��JHz9��P��d�$�
��R���a�1aK����
y�N[�R9�R�n7-X��8�܁*�_~�ki�K2�Z�Z��d���&o�X���A��*ut��lXB��bق��f��.R#͒�ri8��?G���&�!�K�cO�ɯ ~ECY�����6{e���c�.�$��ڑ�E�J�:�.�)�N_�}mE�r�K�W+�R)���|>���pxyx�%��y)hk���6L��R��г����E�z	�)AT�S?K��m��?�.uI5s0D"��*���J���$nً5�lՓ�4 _P�O�}�p�lf�|���K侚N����Wӌh!��@xw	�n��U#��Ν��˅�*�Ře����ԯaZ��>�b��<�G6`���`lk�[f:+9řF��뉷��j��\��{y[��t�����ձS%�
f���D˰����0G�槨+.��:Kt��!�c���Y���ij}�Zn\����:o]铳{q�Vǽ�PO��r:� �F9Ѳk�w��p��c��ް;�*��r�M�}�Q?ϗ��������P*��r9�-��w�W�V���v{x()e��
È�MT�a�<���P��Z���C�Ԥ·m��q���$DI5R9���3D؞��sQ(�#�(�2��F��n%�a��݌��+��FD�ݚ���*���N�Iu�m�
���R6�i�3��k�����Wߞ<�Er��C�7xј:^a
��rZ=���+�^���B/h��H+qc�>o���p� �y�<�f���@]wg�*�5?��D�y�kWM;�Z�D�&Xjc��9����fTRLU1�S�o�d�_���~�(,Z��f5ACW���cuu`Y���D(`	55��Wm�+�7AH[�)y�$te��L�+Z�Q7s1��.L����h���K�J�����?��\�0}�{�h���:���P�T+V��_������$�4V��<��F��[iYl7� }2���,Ls�u*�yB�?]��ƑD��F��.�$���l3�F,���?�N�O�mYgmG�L�Xu��wi
ׅj�@�܍�\a,T��b.i�j�3�eAMl��W��{��sl���*;�pf=^1�/�*5���VSV�s������Z�*��I�[�"�h<�6XW��(�b�PN��
"繊��1e�
H�`l�j�c��O��I[�H�몭��"*�D�Ś%�B��u�ۭ�w��u�Q�]'�W��bQ����{T���`E����]�ͮ��`��d�|e������h��E����_�Fz���.�#	6|����	��4E�
�n�7ٙ20�D�
��͡���<(����rxxz��x\�����ۨ���G?u��\w��,�X�oY�����zgq�|>�/��_ga��:x�w��U�uG���b���֩����K��~L��Ϳ+����8�!��w�Q�S�u�,}1���rO�L�J���4R���9؟	�z.�0����7[�:�S��k���b�M�8�-a�X($ԧ�u�H��2�-9�wa)����T4�[���cH�8NE_�;Li�P�:�>
2*��;9�ѹpm��`}���[�է�>����-�/����]]#kۮҵRh�U�li�W�DP�^��*Fw��mgn��C���G��X�$є��	&����ׇ�q���Y9֡��~{wyϿ}�_�+r�QŢ����7ꥨ��*� ���FC.Z������V���t�<�]��y����u�)�QNra]_Rx������(q����2�b�WV
MI��4�Qc����1�-��_I��Q	ƽIq6[��e�u
I�
����<�2��,�;�oP��۹�0Q
D�	���cQ�'��E�h�e�{LҜ�|�i�cw3�0)�Y��g(�ر�ɾŒ�#U�v�K,ԓ�T
�k�Z���Z��o�*����\`���akgR�%t�
��	Px��8���k�i7�J��g�n�_��h����u���D!��Z� �-�W��|��d�4��؆��Em�v�݋ Ɇ�����V��4U:�\��Jvw��r���a_N�/_�:M�,��Ζ�}�'1`�����4���-pH��FB�����������N��8]dX�ʼ��:^�8\�m�Eo��M���;aK˃\P�9y+M�2�=�/�
�#�t��ng�o��o�� �.���a�
K&���_����8�g��Q�Qb�߆:흶>���!Ǎ ���l���"{7�M6��4W���0á^M���,.Y;�	?>^__�`}be�U��i7c\D����tiVkVGj��팇�vf����ʕ@nl��^���*H�(X��Ol��4CK�Ft��5����y�[��m�����
��{@=E�Z߃��lV���p��3�:����MU�F뎚�_W,jŞ���@��N���p�o�D�L�P�"YL���V��������{(���>��q��mé���6����}�Z�������Fkz��"���JZ)�Vj�5W�&&�O7�������i ݂�~�4)�:.XS��Vg��w�X%,v��?�4�c���,�_:�bpр	"�#��	�!���A%�Ƃ12�mz��
����jw<�o�*Xt~(�-}�W��}���DH���7���%�8�%
����4��cy�!d�6 �+�����"4���Ρ�ò����
bd��/�1;U�
IF���������ѭMi�����t�^��v|��\qugs�g�CV�Dc����J֝�
��Ӵ<&�֎��z4�P����]Ė]������,B��K��z��-^��X(-��f����1�/";
[`tt!M�EXvA�h�H�8Hr� ́�i ~��o��Âz�q	�[�#wG~lR�Ú�y��g�
��=NbזCC�y��_g��c�GX�$��W�Ǯ���|m���[��los�.!&�}��q��i�V
�?c��]��w.XT�v;�С�f�)L��h��rb�C��qq}��Y�X����cR�<�~��e�L�!ˠ���M}�t��e��ϼ
r6�-��0ո"cȢ��O��X�d�j`o S��<����iVV�XN����Ϧ���G5���H�3�N��S�*����n0A�.��1�l1Fn	[q.cC5���% ޛ���J�'�������Z|�$ϓa(u:芘qbi5�Dύ�%纩�n�7��8�fx>k�g.�������ݰ`���S��Ve!�g����<y��������ޮ����@�I����.1��N
���]{��L��,{��ӤW*a��
�p6)X7츺�J����L�����\
�'�w�}ҠYt�4	$Y��b�A���nvٿxG%���(j�v�>0
���� ֌��c�Z\�BK�����N���\B���o���l��?�~�w��>F�����|��`��~'���7c�:�A�-�ݝti�d�����I]����D�2u'�!a����0�!��)Y�Rl�AC/7o���[ד��[����z����[kv]c”v�9b����Yh�<Ǎ�(b�,�
N�"sP�+R���
�k�5Ċ5�j��b�e�u>��t�t���.�vU�YΪg�`bq�lg�j����27�H��&��54�C(��x�Գܲ�\�eZD�X�U1c.�dY6��!�>�M$�����sź���E��4���j�d�"+<l^�_<X�hS���y��^�`}��f�s�gޛ�`
�$/��G��x�#�R~�`Y��zD�:��;�h�&��t����s�Vj��,l���Ƀ���lc ?�L���*�R�Q�l�!�\�*+aooT��������Y�BE��É$?Y�4B�\џ�}�X��ks܋����&���
���ߑ�,w�-���Q��d��!�ֆA�
ll@��3�`1�~c�+4��7�B���	]���b�0w���\^.WO��:H�@�%��$o醖�'��\�d&����r��a���׊�U��FA�F~92]�ZL�!�13�ֹ��d�Y��[>�oU�
5�l�klD�n�+�Vk���Wk�b|�(���U4����=��h���[�jF�}3�mx}�'>c���U,M��DqL������#� S��Tk���X�˄�::�L;������,Q�Dvڟ���ȩ
�=�\g���-?���%Kk��iO�7B@�i�1��3�i2�r�y��h�7�a�{��R�a��Y�������O���
&������n�k�1��T-�+@e�GXK�b愰-�D�U`�#@��NH�lUX{{{f��o�����h�2o������i�:�{�o���M���ʟ�y8Y0�
b:�YV<-Ϭ�Ѧ}�:��O5�����w��;�:�3F̘弨�<q�{v&,��a�G�+�Q~���AYL1e�����x�Ct�k�R��^�:vM<���}����.߁��8�#���h��<�f�6��Y��;Hvo�����nQ$>�a�B&d�u�c$G/�pR��TUEŤ����t��V4��n=�ߊ}Xdĺge��om>3Zys�,ֲN��b
;^� �J9��xp�c���*��J��C>��\5�z
��}s��<A�i~�q>�������H��b�d&���-�n}��`�^��ו��dѪ��?����	r���!�Ό,E�y���M�ކ �c��黜%���2/��GU8N1��+���ꯧ�ۉ1�UZ`sg3xK��(
�e�Ł5�H�Ϡ����eR^��^4N���wѽ�h9��̖���k<,�2&S�bV��7d9��i�Y���*�����q/2A�Ƚ�#�X�h>�C@,�ë.��݌���ރYO���t5�fs�|ϫ
��E
f�'����.��*���r��Le8���0���A�lISX�k�5��k{�i/�Y���\�LлV\�xGX[�4m�>�
	��#~�Vixו������åV.O�K��H~��z� '.��r��ųN}�p8��E��5
va򒮷�	�Xv��!���]I�]���M�>��Zj��u���Թ<Ā�Ş|̅���p&6Ԣ�
�YX; l��vj�
�n G��U�W�驕�3:c;���ȆSt�L\�x?	��f#�R����hB�߹��W�3Bq��
i����5Ě{��P+J �A�Kx�F9b���g*L�������.o�h��]���D�l/?�1�����K�ĥ�s'�����e��� ���N�,d-l��e7�Sv�3>�3�W���Rb9�����*���Fͩ�*;�a�M�/�� 3j�(��Z��<>�v�-ۡyC���x�%�����¿�?���Gm�X�vzh���]�u��*����f��d��u����*�?�%�I���O\B�IL��5��K��*�	/>l�g��Ɵ��Z�FǬ�S������]����T؈3o�x@���	�h�v=!dݸ;�#��j���	�MK.�净�1�a�oLל�Xt�Z����Ħ��K���%4)0Ŧ�Y����g�D�Y��F�1L#{�t@M�����Cl	߾`���p��/��\-�|!=�A��L��]�\�ld3X����<a��i�=��&2�-w��o�Vm���JNvG��.w��r�M��v2Aq�c&�8��������V�Ͽj214���_O�n���†;�τRn�~�Vo=|�k���Qj������Q�s˚Vc�u��D�i�nVΫ�%�:��C 6�͒�4�2�<��@�fp;Xe�`���1�mM�T�(�Zr'q�.�'�ԛ컮7ND5�x��Ę�+�s �v�s�p�F"@E�����O������[���)�Ke��i_�q!���j�P�V��X���H�ßmg�������P臉�X@Jo]�|��JY��G���,���#7��M�@Ǻ�"�t��q�`kBq5��z����<��F*�U���}ŗ��Z��XB����dT�E�OA��N+���]�GO,�DgwǡF����5�Vb]��U�Y�A��E5�L$�q9
=��׿/��ʜ�Eg�C��w%�uvpվ~�(J�3��a��wC,`v���9�^{,�֊s��P��	,.�܏�"�tfZb�t��nV���X�d��D�9f�'�l��k�>��s����Aj�韲G���zn������L4f��	�b�E���.���u#�;М�
l�fo���<똣g%4q��%�ՙ�"��sw�#t{�-d�y~�Y%�9�C�ׅ�~
�@F���T
���e2҅y����)���.�W�;x~���̷�V�����.�{2R(�8M�#�ՠ2qR.|'6���9��x��X�3S��%��#˂�`$Gj�_f�$o���U#|o����|������ઓ!;{Dw�8� /k�M-�*�N�[��/�;�a!H#��I�	�6�����ۆT`�ך�Vf�Dz&׬���?��a�K;�P�x�;�e��=��5�	��k��Fy��'+�����H�$$Z���qF��>�c�8�0Wu�ʼS����d����Տ�=մ��0	kb�j�;�+-nz��Y�����w��hA��3�t�CR�/��ira��b������I_b��VΛ��� gR^K>�aM�|�ɲ]Byo�w�]�F���A�}�J/(��{�:j>q?�)�U���OoWXo�X�GBS�ϐ�z�I=1˳��:�Wɜ�4s�y��N���M�/�X�yg�/�`C�~Ȗ�B��5P�2��u�/ŕ�Ѡds���vNT݅�Uo	oo���1�$�B�ǻ:�[7O��Q獒ۍİ�5��?>��k��C,B�v���_�V:�*�\f��q@�`o������2����tz�*8�*�Vk9n��5e
ZU��"65���]�fk�a\�#�9��k4C���1�9I��)�c��,�d61W��p�cJ�$�nHp�r�X7`e
2A_�ad�w�\w�o@�W�"��v�\,�:��dTSr��v�A%�{A�2�InP���\h*ìv���}f��g�,�mT)�ᕻ*��!���D�>�~����?����Y��
hG93�D�"�e��ݛ��o5�����@0=�X���szKִ"=K��kׯ���c���J�p�����],J�
�08�2�H
�����['�q�#i	��n���om�6�f�P�1rR!�A���
Y�������4�N���:�U��l�ͽ��M.m %OU����WB�D��"Zc�mƮ,⍦\����je$�d�O���0�M-5J�J)�9dm��>.N6�	s�ѫ�S�_�oJ�����Ӡ��@|v����]���Y�t�Dv�M'�),�Y�:;*]X��ĭ&�{� J���9hB+7H�{��L�ھL�Wg��>��Y������΋i��?�R��cJO��#F5�zߓ��hu.�����K�CI�D=t/١,��R�P�`P���@S���1��19�7
T���Pt������3�����J"_���iz��j6��w�֓�k?��L]AKW��<�ۛ�//��iU�m6h��8
4W_�-�����Z�~��Pf5�Ů��68�:���p���Ý��#o�/��GD'��#d5�Ɉ�__�9��=�xc�]�T��&l��Q��V#uQkun�\��'��pw"�et�y5Vw��?����2y�-�
�\�j0�L3,¡za$�óe�����X��RD�Bv��ʧ:�v��P|��G\EM�κ�`Me��$��@#c�O�'J��){�u��1�t��*0`��.��i��R{�)�*n��	��y^.4�_H+��%�s��;��!Ae>�G�Yg���B+����d�����5Ǚg�VL�"�Vԇ�+:����̪D�0�G>yQ��,��|H|G�.�U��������x4��*6e�8jr�Ϋ��]ؾ���G�;Ӟ�c{�Skzş�é�Y�Cw?N���BZy X����2�QG�%m�l�M�4JU(RY��5+y^�����l�5�BҪ*��+�}&��lهLp/�]V�Q
޾��>�ي��l�9Ue�}��Mc�/l��kb�^/��CӮW�v��x1�z�f"ED�o�;M��ٯ,6t����uWՁn���:Jy����z�˴����h��-����	�a �E�M�հ�c����?��@x]��U[_H�T�a'��UV<S���jI3�ң�O��l���#�c��1�r�)j����!5̃��Sh���,�-;�3~ā�
/�$\^	\�b���G��Jp"��V��k�M[ˢ>��:`�N.�V�t$�̇ۑ�Ys��k?-Q�&$�q��X���ܽ���
�7�`��@ D\�"�|LT�+Y$n1�:mk`�ǁ�wd�E��-!��}�����n����~ڬ�蟳P�׮��qͳi�����ހ��=5���)Y��j�M��`�A|H$
��	���V�7��+�.����W��6^r���6U+�{TqM�MC����C���uL��r!��P�|�Qq�S^����K(̝����GT�YO�Rnk����'O��2��<�S/\x�R�Z��%r�ڻO���٥󕬲xN/�:�24K}Uk*����B�o9Rr҈�椊MY���B�ع��n�����D#ɞ�υU�����3M��iQw�k�_6��$_�O������L�@�HNS���>7#���>6�13e�yw/m��ڽ�������Z6-Q�hP�X7*�N�W��;9�D�%�����4�5�R���j��P�>R�a�ލ�(Ȩ�Q��`��f���N�z�i����d�>Y�C_�U��Q��Hv*"2)ZŒoi|š�o6�o��:ʰ�iE�IGض���Y��V��oq�ꗊ�Ѩ\s1�m��H�8�eps��W�̮e^��]�\a	
H}��W����pM��4U����Z���@َXo�-�ZMu�����(��c�Za�z!~ģ�07/U��:iK(=XA�
-�M�yO_�Z9L���y>*��j@%�*��8�+X�O5��TB�8xR����ڴ'7��9�+=@+���H��,r�&���R�&�^�LVQXJA�.(r���
{E<a6��ئkp�@�f�<�׉���Vl�?��@M�f;�i9���R���@.5�E������җ�����k_��l�Ǽ�k��w���o2�	ѽ~��R�pP��Z�_i8t�j��[j�	&�5W`u۰�Sc��*�9�+�&=�W�e5W6�����WSw���ڤܪaR=���tn�nj'Q~k6M�X|��G�}A}:��]:��i<��8!e�E�ΣZ����9SFt~R��F��"��R��� �e�Aܧ�,���m���RxA7�ԏ��c�>�XlL�҃����-?�c��*��ʫ�v�ܧ	b1Li,G�޳�2$p�0�+a)�;i'�܎_����G���g)�洛8�=��c 8k�=��V�T6��
lGP�d�x��٪��M�Խ�4j!�e���(
�g�Mb���t
9�,�����~�D��/\<�z;H:HgHu!֯�H
���<�­Iw�X��f��|�U�}��M��~ߧ0:֖�
+2.=„�r��EO�6��o����oE����J���l:Q((T/��]��&W�ԃ��
L��Q0{z�?'�Ʋ��WnR0��ضm%xXM6����f8bJ�Nj�1v�Ҁ�:w�H� .�u�"�X��~V�Y8���?�{��[&���lk\
�3e?
��R�M���3+�&�),]�/�&Y]�a�\iP�
z@!�9W�2+K�@���"�|R����4��,z�,<�#�]����D����1�ɤ���������]~\��gs��,�B1i=u���":�U��A�͕@@�&��`$u�(��j�����>����vҔ�r�~"��t/;2C�f�X����^G�WXb�u�.���P�ʫ�X�A�E�T��X�$�p���+0���;�]lVd��z�Y��7��}�,�q63Wg��8{U��ԦdV� �0�vx��~q/�V�R���r�&fO>F)Uy�ɳ�S�:r��sos��FX�)ģ-��Pú�2֪��6ߣ;r��vf�Q�>Y�{�Z����<�E��eq���4�O��fPO԰�k<\5�?�<j/���ON�Q�-"�,����ˆd��^;�L)�Vߠ�=rY�5S���|,�m{A��2��E
�5J�l0��Je��ޓd;XWW�˫,ػ`��Ѡ����wZ�NCۚ����Gs2�7EB6�XZB��S�\���ި�ܣC�hp��D�sC��8��]*�pܪ�7o'��3��gQb=�`P:��1C�:�z�"p*O.o�������.����:���K�-���g�3�B����d��f��H)���9o�wfrnVr���`(����q�T�?�̓�P��Q+XaM��E3�gVCj�kcԴ�T�
G��\��y,��M4NpCc����n�%�Ӭ��l솉''�
�R?�ٜs���ko�[!�%5z���.�OS��=pNڔ�<J[xߍ�� T��
bgש�/��0��7�\a��H�E�$��[6���#�������Gp_S�Q��r�D�&r�U�<X��韱�bT��`�C�w�ǖ��?MH۶�Ӱ�Yz�i�ә����~fuj�%�Q,�+a��:��^:&�N��7��ra�u,�
2j�����+d<3�����"������0���Rsx��k}�;u���.�k2m��n��/�&s���Z�>�k���yrSQCC1b��*-�5;h��Oi�]M�T��yY����jᠾl�k1(�rT�F4#�C���(pL����$7�.�	6UൾNv"��5v��~����<�5yG�u���zD��UFY�l����s4Ӏo�W2�]�$�.ת�JBkv�A�^���$�WPt���#��t=���7�/~mn
���Z�Rgq��`Vk�yI�\�I�[X<�י�	�[X��6ԄЁ��u�i@��R;�Օ^~�LA�N����q�m���m��`�hT�k)��~�Iz����KG��M�wl"9�x'atuF��"hj���|C�D��̽��,��7�������>o<�*="
��7�)/�>�=��Bxx�Z�1c~��{w]�=+��W����!#�b�+n���L��+n���gz6�HIg�q`�� l�`����b���Z���X2}��9�
M�(5�Q��?�I���-��k�D��Z�m-}�<��(�Z����A��PES�sac�#�ׇ^���0u�Z�%5��A<�<�~L䑀�U�D:˽�|֨�5[ ���9�/XX�=x��B40���N�p
B7��7K��Q���!��A9���1z��6/�˲^wk������#�6����ȍ���R�eOҜwx{��=\��d�~X=�zn.E����>k�X�N�2B��y�j�Ɨ���d��9E�[���N�d��*#����S�����sZ��������͆����ss�����j�� y7|���`K��|�����#M�}��j�+��\����f�>��'l5q"����k�:*$e���^Q��<f�5�l����Vslb��Ȭ��3x�ë*�!*�����*�`�&���Mi
4��>��ҵ�����<J���Q
�dY?!�Pޏ2z�&��q�x�G�َ�}6E�M�,�H���,x9'����D>ɟiM��!��	a�@9�� p.;�c�=�!�\��PQH�3�qT�‹m�؟�G߼�dψu���H 3�]dۙ���X�^jz;�.w��J\xNVs9U�/A������d�n�*t:A����a�vβ
zg)��wp0�QO�\n6�k�Z�3�����{Óy �*��βTV��X���M��٬6��ۯ�VJ-j
i,_J��Q��S
,r0�?[��۶�E��u�D1*}<1l	�,��KR ��g��=rS�5�ulis_��X�S9���
.رϩ+%��'��T'o姶���:���z
�)cџ�X8*L=U�vF_6��CZf�c��,�����(V�s����O���I��U��r��Z�!.+��[�.���V��Ɔ\�8�P<̅	���1ۉ�X$q���m���M����� �"�2>E��p�����v�k2��Or�YJP�wq��:c�z>߁]u;��̑����߃zy(Y�q�j�*�h���r{(Xq8�|��᭍I�0~�	,��H��L����ߢ��
ֿ�X�e���L�\(>-�ۉ�Ьd/c��(iF��2��	d�Cg��`�ץ��I�D��EVh(��j��|$��sxp/K,�����b�(G�#t�[wm�2���_��Z�@�`�ޜ:$���r�
���d�֡��t��@��t�rp�sɭO9�ޭ��CpzP}�!�9��Y�+��!7Y��=@9[��%�=�iG��Ǧ�{�d�</��h,;2�E�Q�<v�,�&�[V[-��(ײ$���*,����M����,ms?�!ZF�QM΅6_7��H��r�u;����Z�vx�#_�Mb�����s�r
�gGz��g�1�p#U�Y�N#{r;I$x6u�=-�iq>��p:�Rҙ�ws�鉐vXD�!xu##�X|Xc�e,OT
���
�#(WU���l�l5�"��veol���)�w����.�J�����U!كF�;�%�ށ���2�|�HVG��+�^��4	�7�1޼��J.�X�H��`{u�����Z�T{�������z��\]�uܾ.�X}y����߯.�~�O�!y,��H�1RJ�q|�z8uD�zSvB2�E��%��rX��z5f�\@���{��U���,?�g�\���|��$"R�Lh�&�XYm���]Rs���ߕ��PI+�O�w���,q��f8	��5���ˊ�h��o�=b]L�P�0XcES��g�-:��@C��c
HץTFݶ��_ᗌ�(?�*��|����
=� gK\1�c�s+ll�N;w(X�Lߗ��Jz6?����<�@U\T^����^�m�ݕ�7ՙ�f͊��f�D��D�f��t��/W�t�!�%O�Y�!�� ��Y�پ-�Zh�D�ხe�?�z�Ӽ%h�C���ϴXtND�A�a��S��2�Ǻ���T�i����z�e�"�c������x*��&�����ܯ��X��c��t�V��.i�W	���	��e��T�tb��a愓,�2Z���Is����%��Jm<�>Y��*]�1,*^Pa�l
:JFo�v�*A���W��=n[>��P�L1򾆸~�w(ZʽU3�#�g� K�^��5޻�����J��Y<Vb�v4����C���Z��g���D�؄�0�F�k
�1��A"���O���@�y��z��'�&�ن�Q�Z��tL"���h7–'�)����-?KGs�(!����U��0�b�M��r7[ݩ�H9�B�P[DX0Ej�Ҏ�#㷾�_���P��_ۑ��n��A��A��T)�J���y�Ou*\��~�Y�?u���p���;4RW��� ֪�#ɱ �p7������k�I��Z���E�=�6蔾���@R��{L��mtj�<�`.8��F͔��/��"�	M�{�����	_���	��"��U��_��lw����\}�rc�x�,�O�a��b_蓞q�ebQR8+��	I�)P�U��s�
�X�:+�X4K�e��eBz�&����O�|w���T�zP�XP�O��Z�Ƭ.�@��D0�gN$� X1:��}�E;8s�\]~�F��s���us�����T����W�&���mW�,i�X(W/+�����d��_|AZ|ڃPP��Lt���y��Z�%Y����rw,T��SxV;)nʘü��G�n_w��΋*^��,��6�h؁���W;ت���z9��ZC�Z.���Z��'}L��,v�`���Րd?R5kA�Mk
�}�#��B��=�)����3�-��[+�YCI���@3�p�*yW5�����k�i4�V#�]��S
moE_�=zu+�>"c�Ъ��&]J�h.��;����x�g�ZО�ʝ`�z�0�\a�e��h+V���#[p:�g]g�ո:��7񦂄W�
����$�bBN�n�5��@a69wv��X�O����nMf�l�Gaij̗׎rl�Nܰ�m�l*XT���b����9wh�-X�z�K��8^)d񥙖�U-��RJ%��N�M�f��œ�ڡ��ni�
�^���n(}޼~��-7X�{�>f�H�׋�;#������xpjق��wm�N�u�X�XM��u:\��,�ϫ�KHj;n���0��gҟ�7��G��kNCJ.5���FOO�lP�Ó~�H9M��a�KS/a���#�݃v1*�A7W2�YT[�j|A�,'ktT_����=ղ. ,�B�B+�
/��y�B��Q��3,厖�;fJ@;Bs
CR�R���2�RiuJUS�ˊ�U��f�>�$�A��"-E�'ڼ��b��$��?-gf�_8���0��-��av�@5e}�%=�j6k֬%O�9���}�\j����Qvo]kL���%=�g?�h�t�*󯉯�����3߀\�bc�1\����#s���!�7�E�$Y�Ь�9d������	u}�H�k5�d��B��ff�Z����kK���Ł-9|�}���56Ud���>Y�e��_�ɺL��~���~�e�����ˇ8�^kE��:~[�e��vK�wj�탤�?���F���FE�OD x{ԇ���9`(��<3l�
d��{c]��v����a49��q��KO>����ۧEӵfw���2�ÓM���)�տ3���]����G�)��݄5қ������r�t������fe:5��gK�D�U�J��nX���Ę�hF����BX��#�i,,�e�;�@� �O(�:�uY`k}�b�!j��q8�ѕs�ׂuy��oR8T��'5��q.GRW�uJ���bՄ�+��J���S�z���� �Sc�܂C�I[r2b7n�`M{̾�Y�I���)�jx�۰���C
�_����FkEVf,X������>c�u��d��V�0_�T�2U���:�Yp�����ܦ�;������t����Y���0O����Ǟ��4�5�;e��P��n})f4���F&KO�mI�M�sl���;�h$E��v�-��"P,h;{���x�.@�K͝FMu��P��Lsa5�4{Gm�Y=��� ����H��2�;5Z��Q轎��Z#w^=Y\�D��vi����/��<��z�sO�QA�sB��l�}�*�+"T(=�T��ؐs���i�Tn0!F��
Wꅄ�#�R'>+�ڵ)H/���cc�N���Z��y����+��E�,��e�-R�y�Y6հr�|o�+t�K�#��I$��N�"|D�Gak�K<��'>���kP�ﳕg�:��&p�l;�lU�4iR�6#��G�rt�y��=��Ȟ��>"Pɷ̪�Z�8~��j�� �\�y�����ʖE�(Ie��f�l3�*cI~Qw�C��V��o�c�^�����.g����5]N�4M��,#�Z�ܡ���t3^��C���#M;g��C�BK=8�A{m);�SR9[|�C��u��O�-sU�h_
�4�T�>�>T6��\~X?�!�#�;��~Jd�{~�zX9�j��a!���q�fW`�����R~I�̫��'8��H
�0`�ֲw1�"%�/:'�d3����YTEvA�Q�ʞ@B�~5Id��*���k�*[u�S�x<��aO}�9#��JA��=P��˘t��A���#�G�9S�7c-o1\l'*�����w�Js'�Bh���⥕�R����V•�<XئV�-��I�\WO��,���u�li޴W�>�RA���mk��L/{������퀀uFvՇ��0sH�Y��9��W/�RZ`؞���i��u�k�05m���2�-K>�z�]�g�WҘ�J�t�y��E<�ʲ�K��f�_�)���8�!�YH��@cQ^�`���Kl~)s��B���$Sx�.��H��ʪ���
�I���¬	R�)^5>zE��8�,Z�zka���ᩇ_�o<��^�K�Kj*;"Q�H�������I�����2U
ھ�o���S��ڸ�;ܖ��v�@�+�c�,[M\[���?���c���,����Q�(�9��*���(�?��5��q���^'�G�봠�i���[��(^��<DL>]w>@ڧ��UB��ʱ��<��?"b3)��=�����B:�Җ_�M5]Z9?n.Ѫ��m2^��1��,�A��||�.��l�{A��5bF2HG=���K.xSI�<OC��XXK���rJ�������.i�� +�|����P�����0��|�kۦ���ǯ��Y�J%�
�s��&Yt��ng��/ϝ,�+�\a�.�g��&5��iČ�]�dK����z�"L�r����Q��(^����������uY�M�Q���-�d�PX5�@�
�%�g��u�-�(�a�J��+��C�i
�,w�Hϛ���PFʣ�&H.X{�y撋t��99}u
Ow�F�B����^�"UɼݰP-Mf
��0�G䝶��s=�=b�,u�V&�"K��ج����p�K�x�q��
���W�/����2�/]�������di3hw:7]�`�mA�(U����
w�ܭ4���p�.�8`�g�܌�*.�����!8���Pgt��ӎfZ�՛�	�.��
隺a�P}����\:��i��t�rsx��߿A+}�E��
C+��4����me>xpl'k&�5�J{�B�S=�.�9WL.��A�(b���[!�����l*���#S�0���&KTGh&_�_	�$S½L��OGu�r`(x)X�-A¸سj�]d�P}��4�7q��Q/"�N#���H�U�|e�C�r�N�����FD<.��%���e���Ÿ��Ay2!�/g�WZ�
�� �׊$��q�,e�ws�JD}���Fo����������\wf�J(1_����@_���*9Ct9_�P�E	�&�ي�bj�W�D/#]W��{%qL\��"'DI*wn���;�@_nL`s��y��*�J�V�I|�ֵ��t8+s�
�e��*p���f��*�9�$��p	�<�z,U4J��eLZ��:�[��sW�������"��g��3�����ˉ�8+��|�mc�m���&�ru�j�m�n]�G��l��ݻJ3U��Q�̩����+�$�6ZY���\�в'�Я*YzF;�ċA��In��E�.���R��B��4J�M���HvCw�/q&aq3�HI�)���Oȕh����5����(���2H�1�c�2��bJΐ�^-�|sj���2VQ� 5�?C��v]��*x�Z�U�3W��O��G�|�2#4�����j���rEe��ںc�8ޯ�Y*_�MxȏUr��d��>��ݿ�
�+ ��,�v��Z��![3I�I�D)w6��z\NA�Y,U
�_x�!ض�0��C��y��i<��1g�NX�����*�Já�`�o��XPeI������sC��%\s/�M��+�>���ϗi���V��w�Nޗ��2������g.����Έu�
�\�`O����^�V�v�rfBi4��UV����?~�uS�o�U�E_e�^,��vg��K|��Fm�-`������]b�ʸ��؝.ĺK
���������.Y��/1��(�S$�3�~a6��}�]cжJ8	��E�B&�K؉� �	=Z��UNA��5�P��X�G�uT��[@��z*X���N�E��LB����@��qSU4���_3����_�ɇ;u'��J�g��t�%���TXZq6�UZ���G
FqX���1e�V��]��[2�ڮ�x^U��vi&&�ЭGtDif�x�dg���j4��	��h\i��)j)(�������EI��1*�>��Ѱ�����d�yp6���t=f�!l�2X
���`4��t;]N�{�`2��z�������	�X7�$�k�˲m���?mt#s:S(�l��
9��U�6�{A�Ec�'=xH�7��eY�,(;EQ�TUlV�Lq��%��p�r*��ħ�%�$y�"ˇ
�`Z)/L��ȡ`��	2)'��3)Wp^�+ӫ�a�bϽ�i��n�XB�)
H&��5�Ylb�m�nf<�:%��}=!��c��oC��߾i�w'�8,'����F=LQ��j�ߔ�����=bdC��MC��$D�:�WQ����4��l�S}�:�mW&���0p�F���O�?9qG	�*�P��jf�~(���I[9�>~2��yݑD�U��?/�~�|�/k���Րa�eAœ�v\��6:��)��\`3*WN8W�(E�v�9��sp.�k�Rn�s҄5S7��t�& [��r����4
]�އ^+}ο���r��o8ˢ�;`a��|�
�"6�s�+�����L��Q�Kdql�U��>�&��,�uj��)�ج�	'nx��?�w�uY{⻇�Xr,<6�g�CZ��r�i<��Z
��6�>z������<nš.�ć���D;�#B�𜶤s��l��� �bp�0o��|���Q��"%��'JGL?�
	�]�X�<"�T{����Z�7tD=�/�C��O���Bb��@��n��cQIb%D����+[����j�4���U�(R��X����ޟwu�+���C����:��]Q�42�ƶ�3d��貪��ђJ_Z
A'�F��)&8�طq�Ҟ�H�2��S#`�S����ޠ{��h��v�����k�	c���oˀ/"ѽ�+M�2ͧK.�f`3L�2�����;�b���)����tN`D��
��a�Æ�Π�}��=t�q>o�
�i2Zo���e,]8�D��U��XW���"F��L׮�n�"vd�DT�������5u�P	AV8�WZ�ҍ.1�3(Z�O��|s������GT�JP�[���&�D�n܇!�����$h'���[�!�cm�j�����l�*���݂�t���aY�kG�uX����N1����Hw��J�K��51�8:ZI.F��\}R�r���`�G��i������2U��b5OӼ��s��wg����ι�����siÁ��/����ϲ`�T >l��5W�tFMa!4R�A���h����<#'Q�U�R�u��|��:���V�K^p�Ò$�/��CQY�Q��ȟˤ��g�kL�,<b�Ba����w�Ί�z]I,�T���i�Z�t0��|؃��劕��Q�0m�҃.k�
�4�����w�]� �d����`T� �0�?3���r|%�����T+X���c}�8��E7�G&K�}g���X.��nkaE��ԣѫ�|�`�����C��*}W2_�i�Saң�5o�M���F8ӏ���͎��c�r�I�p��c�����x	
I"�i�j�v��b�ZWv�1C��0�)�k3�p~:
x`���+��ha~�A'!,r��Ԝ�����
�k!�̯(�]H$�����Z'x�k�7Z40���<%�S�������>��4�YM&��A�|����4�Z8S>��ic�;��Zy��������8�Qk�v��fg�y�V��t��ZnrH��;� A�I7�"y�5
��O��7L�A����+�67o�X���T�Z�0L���-XӾ/=a3��v����ڴhٙA��������?����`5��Zz,��w.��Ҕ��@�ʡg*�{H(i�q��H')&�F���bD^9�����*(O9I�X��(&?WKC�#�^9���d��2c��t`Nu-D�ָ[22oe5�!=/�� �=�2�Չ�i������ΓAX^hMٽ
�+g�U�dDq>M��:J��ȃ�x���BF�*$�o�.(*4x�3�S,��ey����6u�*F�r&�rB��W��a��tV�Y� �k'��S�z���q(���C	��{qM�� J ?5g�H�݌�
$7�T��ݥ%�ܙ���NEDQi5t��Z�\+S�GD�#�k1*B��鸦|"���ǹ6ݮ<���2^��n�V,��B��7����as��N>�Z�?���o�Y�`h��o�~O�0�Z��N���[W��\���]q�t�\��l��`�)�ߨ`���K������.� ��bfD�'�?�ɤ�B�b���p3;�?������Q�_��$ftc{�T�X�7-Ӌ�w�4��O�sT��^�A���ŒP&ƹK��*�U�#��U�ǂHU�X��h�$vȄ
I2��㕪w`�sa;�L#ie��3F�hlEw2��r��Kł�9$	x���ѓ�9�Uv�c]��\O�P�}��N|4�X��@
I��D97��6�8�(UFBF�o�tj�D?j�!‚p�5n���^c*�莎�
�ۮ��YcY��/�^DF	0(~y1G�[�(hRC�i"&2T�:��X�lI�g:b;� )�6��7�X�=�N���`�8
+9�0�_��
3�~� U���n}�����/P�r�5�S�c��]�ފ�>�{�X�8�7������&�A~bgW~�Z�ƽ�bR4xsh���{���EiիVB��;�uT�K��]�Ţ"lJef9�P�	_��Py���Ӫ��t��W��'O��t2��� �`�Gg���j��v���QY��I5�X,jv~6���PR_�ZW)�b�-h�z�؋s]��Pn�k��9�����$����k�C�F�tV=L���3-d5T���9N�������
��|{�jնr�l�M�'R��-q�zE��^Pȣ�Jf�I"���J4<*��倻	m�[(��\����/j��,�s^�]��z�n��N�$�B��H
9�}���߿�EG��,�4�
��7�`��r+Љ�W��?�;�z�l������/�`0��U	{�aj��x�e��{>G�=��X�9����-pM��[�o[�Һ֘w�R�����×(�],��
�Q�
R�Ӄ:ж��$%1V~��h����Yd�b�Ǒ�ܙ"z�Wʩj�"z_�U�]H��7t�Jk=cx��y���R��=�	�����H�d��hF��5�0.
~N��a��/#5����a�t�74�Y�p�$��g.]#6����"_��r�xA� �isHn��+��cp���=��k�	�8pY��@�ά�8��t��ǃ�f����������p�чR���b44�L]'�K�(�K4ʁE^Ѿ'������X)϶P.�i$Z�~vaWF�Ì����p�] �0d�!�C��n�|�l�(@/8�:A�,��1��f�
 ��m�;���/�q���~�{d����@��q��5n�K����ן�|(��5�_�$�¢���ժ"R�D��!��F,LUЌ#-�(*)�/(+/��n$�Wׇ�|�~���r0Qy� v���o�ͩ������e3�mm�BK��RqD������!Z!L\�h��!��I����j%��w$֐$'1�U+=��~�Y.X���4D�9�w��>�<'�_��&�M�|���<�3���
�yC;�>�b��"�
Q�~ �Q�������#E~(~E‹RW�SRUŧ#D2�ªS��(�0B�eHQĨ�\���%��e7S:���Q��l"�CkDg21�D���.mV)�RAc��`*![HI�^р��,έ&q.X���x9������U�YW�����0���k�;�`i��-7R��X��N8њ1����0�
u��\�|��ʯb7����{.wb-�@�5��ƭ���`j�4=���T^H��CDc	��ȩ�UB*��=���W\�l���Jz�_J���;yC�-z�R��C����~�C	��+ꪂ�M�h���j�
DŽ�o<~��}:�#u�}T�N��L�4�����]$�����W�Q�I��qU��wWm��0jzB�">r��`����Ɛ#�F�@p��n�fm�a���\�t�yF�B��A"ೠ����n�p���,�Vm�α`1�)���JK��?�����(R�?�� B�A��˱�*��ն���rd�UۢI����t&�
n��<��lBj�Y���K�BQ��2�бł���B���(�Eo�|ο�S(��4��yyG*;��˿|��65��:���6��)�4�=���R)�3������ڷ��\��W^�����`=��Ԥ�Q^څ�q�W��(喝���X 1��	��<+yMR<_�uV��Wa
�[+Z,�S� �Y!mh��}����Kwh��.S��"�u���$��5g1���Y֦���s8��y摋��䆉>����ʶ\�WW5k��|����U���Ǔ�ka%��vz�+6\Pn?1wJ�{��g|�D�����pщ�X�a@ 5T
M�a��t����T��a���^��(Q��d֞dq�<�H!a���\M_�=�r~��cU�E�/����%�:'A��訙�����\*���v���un�mI�O�  � �`��J��ڲ��r��V��=���.G�-Y��}9�;QƑ��r��Db����'8�7�R��(-�!N��`��e�Â����KḠJ�yZA	
G�
��Lx�ش�
v鰟%CO��r�;C)*�@�X+vT}_�Zn��R��3R;����|��&�����8U�`z�y�O1�4y�]���^��4X�nK��.
W.z};�܃$o\�[t�A������V5��tɱ��HAȃ�b\�q�`�7���v[
 ���c�Ӛ0O��O�	�M�F���$��/�b����Wԛ�O�5|�I��ݾ3�@3����AO������u�x1�]QEz�Dӱk�A�2jD]��3�jvXT58.8,nU�ŮE	����X]�<{�a0o��@V�^�K�(�B��0�?����C�8��쌳Q(���I��w�c݃Q2���v��^"'���.Ģ9��lng�[:`.}��']N@��_����G��
�'BXu��C�/�
ee��St�}�qr$@��p�	�k��n��Z��7F�s��5!w0N�����u�{�]m)uS�5o�{߽���<�Rx����N<��Ծ%��`ڠ��WRG�A��^�_�^�/ڔL�[9
�Ԫ��jƁ�ʽP:,�X�
"�%�Cx)��*3��F��fO���?���d	]�eS��RɃ��+1㊌B�/�9�\�O�&�{U ��\���j���t���<���U��n�P��J�J�2�@�;21����Ek%TH���jŞ�R\�F��N�͇�2��#�e�]�p*�'ڝȆƩ���{۹�)2F��v�g�CΒ�+�JK.��#�e���%A�/+~���1WN�P�_���X�.A�
�$F�eՂe-/�p{���hܝ
���C�Xc3^.ȅ�����N�]�0/��>녠4>�7yzܨ�P4�+�J�
�k�R�����8��&�����t��*u����t�W��o��)M׭�;cz�DL[�e]B���j�[8�I4,{z����>��a��\�4�!s���*��đ2����4�Nf�2L��uu�L�i��rx�2-,
$���l�!Qֲ��;�W1绻#�6�X�+�	���,�0�φ�]j�"N���=�8!�,;�[](zCB��"���ϭL�YB��1-���uT��������TRh��

���<�f���0
�r�+�����W�-�I��F�.F�?��J�!t�*za��W�����&�V�\z��vZ�H*5o��ޱL���Ő*�����b��D��F�C�C�vc*�M�����i$<�W$3���r0�,�
A�^z,eݯ�4�`}�`�t�0+l��~�Z���,�R��S,����mX��*��v��x���"e�?5��bu�w��5�70�|�(�v-���������ٍ�L��E�;��T��6�?��s/��A�\�F��q��ϻI�?�丙J��DC�=���o�9��o���ؘ-�7�7�H.qY�-�P��@����Ձ/r���J��[��l��N�rgM9w�U�+wz�n�\w����Q8b:"��k�:*�*,$��r��^�@x-$+�A��̕����r ='�z�hZ���lh9	L����%�
4��:`.�Gw���E��RRlH`-w����������',rXF�j��n�O(�����,z�s���|w}��űa�E��?^���x�`�aO��"U���F�õ��vE�������m����B0����3	L��*��GSf������n#�$�CQ���R���=j$@��҈��`�P����f+}qr���q���lSt�b�ѤWϱ�K睃s�
��H��Ca��"	�h�,������r�d�4��S�N��D��%2�Op�}�Xa&Ӊ�;��e�	��=z�4�v,o0I��u��31��t�`Ǚ6��*o'BJ��p���	cR�Ǿ�,�̾p��s��(�Iھ�Hv@
�-��n�;)V,�����
݀?��e+yd�Ƀ�O,Q�E��Y�z0��!�XQ��� �*��C;p�C�ZT�ص*�sfzLz��o�Qв�Ũ&S�x=�e�$�X�H��\ÑQ� 00_i��0s�@�*��|�^q�zp,�'X�C��0gx&���w����D¹|����I�G�$�mN�F�|�N��걅���~�9���ۢw��1X�{�Q]�
uP�!5t׽Xb �ue1e�d�ߚ�)�yOf����ߗ�����W�����M�ȱ�T������cEn�ʓ�2R=��6�����"|
Ebџ�P�%3 �۳6�a9����*JP�F����_�T�S<���6�x�k	�'���O�@v@��'P�U�g�I�E'�}1lbY��\�H(�i�m�@�� &��̀7���o~H����{�8ѷ�!����_ˁ���98ڶ�#4�ICB�0�[4�?5Dހ�SEe�1��u�J{��MU��I�h[�$UnT<^.�0W�Tjё��^�弿C�	�aڃ��W��_�2�ae*���O#���"괮@ĚY��������ԥ�o;S-��
Ί8��4d=I�Nx�,����:�
�&��:�;^��K���-�]�AO<�ָ�4Q��S��5ʙ�١���/r+p�����&]y�.{��׶��޲�0Asv"�:7K��.s	�	yۛ�Gaz*`I�����@
σ�KF���������R��
���֫r/�% ��'8�����}�D���x�+�����l
7�vVeQ��jh�,^��� J��2�3���5�I�q��C%�t��"|I�5��ɺأc�V�YuZr5����>��]tvyuيR#j�dG�2����ڒ���𦰐Pm&�=������ANѠ�`�CwY<*ƾ�"(�=��:�3tX��B��H�-��8����JP�����i��8�q�UJ
tYx��.�ˏ�_��GS��dp�U^3^�b�-q|og�괧w�Bm�>oCt�x�,9�|2�2B-��{��~�2X>)L�"\�B�MU���Z��W���h*b�/��i�d馪R�X��ʬ-V�R��=��iI���ى[!l���9�X������$�1U�� �)�������D�F�9�-Cԙ1̀Sʠ�1lG�b�U�=a`�D��<�a]r$C-�K?��%{��&��
�bP����e���eʌvX�
u��h����h���y厓�+^����;)�2k�h��\�#���hH
ַ��YB��`��8Rok��nԝ��
g�$ŏB=b�Y_J�����G�#���y�\�i���Џ-����pu�H	�4���WC ���Xh�iɮU*S�ֶ���������=�X��	ۮ�'
S��>ڔ�~���3%��םܒ_���?	�=ͤ��C��fe!�����-�B���D���J����/�+4j�"9<�/,b����mFU��,�6\ĉ��!�!�jߩ��TC@��*@��wm��\񁚟|Z��_�!]T��hغ�u��skj٢pw�K��زP$�����y9P����5��M�L&5!0{{_�V�`�Hpp�e�FB�	D`n�u�����_�k5��XP�(�~�8gq��+Ij�8z�b*V�R��C��~��G�e��K{�`^U�2)(,�I�s��"ݮ�]P��P��=�-E����z��pq)S�9$�4ָ_c�z�Tw"�n�ƕ�H
a9���l+?���V颖�+��2��r8�y�ԕq/��r���TXÈz�r�~|�������#�F'쨶�s��[�ޞ�Op0//8��~���ZaM��#h�^@O��^?>�C�G؍m�ojQ�NK�l�ڙ�W���;1V�D��/1���6�X�3���F{e�wD��f�+݂��s^8�O��O�\�����W}��y&u���'dU��^AHTg|��F]��</��(��+|����=��vM)f����a�XP�tׄ�FE�-]��q~V�?��b,�H��!2��x���H��f|XIm���6H���|?�Xi�+o+�1�I�;�%���R�|tD6���)�e�(�<�V�0j�u��>��yf��9�.4�6��l�v�妧=Q���/9�S+ReJ���r4�(�~IB^���H�Su>���8�'��5�Br�����5�:j-�д�
�M���2L0�����B�>aC5� H��išY��}B�,�yK��]��]��u����G(X�����u}���:m=�=�7~/\��Z��]�e�4�^�}�0�(aݦZ���➳�D��GQ��7h��_�K�Ju_t�w�T�j�_Jɱ؂9IC����AeZ@1H��a�q@�%��P���}!�;,�[�!G�H�[��mCS����xgE���q%VR�ҵNF�%�~%���)B���Ҏ�B�\A��޳��Y�$�2�4ы�
��:KܸCEA{,X�zu���[©��v1��^i�H��������p�i��.Z>֡���r~u-Z*&�e���!�ޏ�Usv�,��B�T�r�.������X�2>@�)Ia{u:����P&�R28©o*�����V�W�c�W*���l
�d�L<�|���i�p]|O.x��z}�P:�_����4m�u�y^���&��� �j��V��ܮ=Y������G�Y��x�~��,?���,������5R��WX�.Xխ�^�A����͉\�R��+�|�ˢ�ly�q�ZRX�
�x>�,7�視2��@��dꨫb��eu3n�b��f��S��.
%�	'����i�=D�R	�AaO�5�$�W�$��zU~09FT[ྡ��Q6�Ns�l4���fB��7[�m5�c��vk�F�P��
���5�Wɐ5����}t�Nܩv�YK�ƫ7'*�r`Jw�m�f��^2�>sJ@Vigr��� �[O'
H-Mm�0�@�tX��wO}�</(h��պb��ݕ�{(��U)-el�-�� zO�G,T{���UB�%�_��~���(��p�Q���N�=���,�!8uS��ue��L��J{`�Ai��w�	
���i�̪;��r�6�"iQbx-�
ӱ:���^��*:��E���y��Z�F��lWf���H�
�	��pN*O��q�r�i4�9_�Y������0J��O]D��U���"\����Ս�s@��=���[^WQtFj)#��'S!i�IZ
�Q�bX�dq:,B�0��!tҴ�D�=5�,C��#3G)�m����6�~GV��i`(��	H�S���EL�F�YDyb�s�{y�7
)�/m�(����uB��9�_4�CցEE��f��N�����:��ł���\��#Q1���~�7Wc�F=h�=�o��Z~FauZ�ȟ�21A׸�/�AD
��+�x��W�8�Qr�
ץL�X�J�,��2:��Hh>WФ�
ܒ��%V�^�W�+A'�l
�q��	������^��X�
�G���eL��)~�yjW�А�5ZF9If]�!�w4%��V�sJ87?���xĀ�N+d7�`a��G��[|��d���F��c�`�"�.PZa0��D
��QĀ�+}7�#��Q��l?܁�V��v�|��H�m����@n2���R֒�~��k�Z���†����8�:�<�9�r�67PD���P��{Ln�?�v6�+�DhG�W~��lj	��ʼn�*,�d�=�4s��х�$��%��Wst� �Xӡi)�M?"���0����t��2�����J�q����
M�r��!��@[�\����Z���r�\�`�[K�5�����[�T�o)�eE�:\�`!_^!u�ei�J�?0f���~�dIup�9K��9�<��W�����B�����n)
RN�:Ӿ�U�Q\�,<Z;�,����	CFdw)����z^��|DP���I9��chc4I��ʢS�ra��M/Th��h�=8�,2��P�}>���̨�'%��Ƽ�W�W����D���a�	Ł��rǎ�s�π™n��Z�Q|�s��lS�ȠD�=�x�uB��z�Q�}��-KV2oT�V�W�b�N��ʑ;@�­;�*�-l�HA���O�<V���`��{KW޹������bGA�I�2F�U�>��)���`�2%�!�	�4���ID����E�$I�ԪR�lS�;����"�擑���ƅ:��p���,�t~ƈ��:��|m�2��P�z`��Y/?C�|��p.�
B/c�W})Y�Ӻ�ntFP��|�ޞ0��Y�v-%	�h@��
|_����e^����	���u�epDo/f7�?ÆjOU�N��7ʞj�@�Z�M�όNI���U�\C����ep�Ð_����$/U��i�I<���Cb�� =�dݣ���*[;A�Z�Y�t��$e��(�[��!'а8��n|�2���mG1:��#ޘ��TMp�̙��P]�]~��I*�
�2�nbq&��
C�X�I�z2v[7�À��H�hF�R\��Š��TЦ��Za���P��ߗ��F��,�h��(:��$~�]�H)<���jȖyT5���̮��a�^��Fۊ�P�=�X.~�T1z~���O5;�_�ɭw0,�k'�@�v�E��4���[��:`F!tZ��O�rA���@q>�fd,LA�Q���q���\~��������=��|#��� -:� �e�������c�*�,JE����lzx=������߶��>F�T-�6�'��鍣N�b�΃�sո��M���Ϛ>"���(w�̪�%	W�HR�{J���¾R������d@[o�pT#�n��8 �˨�h�	�����a�5�%���O�����b�OXah*9� F��ġ�ל�(�{	ATS��6���θ��#a�V�6i��:Z���kgҎ���F �*Aax�WX_��
+���3z�\T�� ��7:QP ��
�j!��x�p�3�F��
��XD��D�"}S4�?o�LUuWɆ�䙐Ƀq�:�9��q��r
������ct7CC�?(]�L�|&��
,�a�	s;��K�����unMm$I�*U�Z��j��j��l���]"���V޳�^�x�����r�;y�n�a0�##�l略�р����X�ȟ��T4���E�ߠ<�B�8�����*a���;��
�s15�:7SS;�)TI�UnV��[���h~��[��D�t��틢jHŞe]dv}�/�Z4���h��	��L
�Q���"�_a��6���L"�-�7���jh<֘W�F+�g�0��Q�kbG�g�E�r�1�O:[�Э��6*>��K#R�Q51�΂�"2�v��6�%�$빕�D.�H�����%��ˇ��?��*�+ �H��B�,-��� >�����F��Z!�`PMI��fj{yK\0J�����eWg��N����8̃;���|Өx}�5j�~%�i��qQh�z���a}��r"I���ݷ4aߞϧ�C)�0%���i���5�O]�,.�m������x���PX���	�	�r��ถ��gV.h/8���GSCWz�
��`�t��4��~���]gcM˦��X�cpŬ���JD#zF��C��-�S���>2�4��6�����fEAX ��G��qz��FQBN�i/����6�V�h&���tǐ%i++2&NC�rȟeI=�P�J��:n?ޅ�S�5���O�~5:[^Q�����M�B����#�Պ�}#�v�&h︆�yx��R�!r̊l�h�B����B�Q��]XO����Q	
dM�<]�	u)Yg�_���@���Q���z�����{k:&$�z'V�C�U�/~���=%*¨�����d_��~��
��Ȧbt�k��/2��|�$Hʜ�||��$�X����l�:N澧�z`4���xgw���c��������9��Gu�)TN�oG�&T���E��n��Z�X`e�+3��b�ǯ�]�QںJ�H�F8j�]Q��XM�1E�e8#V��lՆ/�'rQy�tO���Z7��n�ѓ��5��#�\��r��(�ڲ����,>�*��0�+�ّ�\t-f�gN���'��7�llȺ �'
=�iV0��#U�ElI�4@���F��1tW�x(ǃ�>���Ҳ^$�3Θj!�f��
���Jp(�d��k�(���Xz1��^�~p`=VSE�zT��S�
�
�9�s�L���82xc��zE'Z?�N^Ӳi�79������ݲ��.�$['�Yɥ6����X��Q��2�<�w1�QR�+��o?�Zs�l)h�o��LW:1�����x�;A^N,��aK���@�*z4�|8t8}_��Үq}̝h!L�����W���?ɎՐp�W[��Hc�ci7�uw�ǿ��BW��M�n<,�����P�G_��(7�	�Hc�r�n;� ;NC5/%x�Zԍ���{�1Q�6�6��4_�Q@�OQ���Q�j��E�m�9J��ץ�)�Vaq(XMP��q��x^�B|}�I*�#8�s2���Fm��`vp1v甌Q<��O!�4�K���R�Q��o�����h�;�aa�X��UXB�1�
���E��@b�^�������U���.	��_ �֒I�?X��=׬�xzcҗ�B�hCЪ?�r�W�o��h���*�NL�+#s��j��Q���Mh�Q��3�**�7��2�Y�6S��m��������tޗ1~{�e���C�1u�&��V���q�Jcw�u�#��np.��op��e!g�;�!�s�h�a+����F<
���є����i}и�2ENʖr+�zᶷI�V��9�Ip/cT�~��5����Nd�E�[An��d������t���h�ӟ�*֓�T�����"���4���P/z��M�&�
�QS��\v�D�c��Ќ�+\:�{K�!I�Pn�ɦ���%�O*a��gg�����\�� ZOW��(�Oy�Y��#��a�/Rq����ۿ��}@��T����y�E�_�PKX���蚘��/_d��:�/��C�s�=~|c�iV$2��ȁ,Ω��u	�'�D���e��q���S龑�������L7Ԅ�D�O����.�������_�=m�?o�E~����O���;IL�z����C�;E�Ʀ�Ю��T:��C�Y�\����g��,�5 ���7��+|˜�� v3�
:‡�Ţt���0�
|a��*9&C���N{@��Z�:���G3A�^;��I�1��&��q�6��?�W���}+3��O]Nw�'�����`��cc=[Mf�f����P��a��0�m�ڌ����+�F�(�F�=١~�fX�|'�S�I�ˈ�B8�i0"��h�"��7Ⰻ� �z�W
�W�2�T��
'L�����e8.��W)]�\�|�l
K�������@Ӯ�o����D��r�� ��-h�P��S�a�M?t�e�O�z��Zse��N���ꌲg��[�u���ՇK�of=��m	D1V�7:򏎙j�H�K��Q�*iȠ�r�%O����t���p.�u?���~?m��n���а-�e xY��
B`}ו�������*�ԲRE���ϖ'Z�-���z%�
]�B��Z#�����ߨX�(��A'Z��&�/���lx�|X�#�ru�#�U�g4�V�Yt��t�!�{u>T�C�,s�(C2	�V�s5l�<#vf"9j�#�Զ����\T~�P��$%N��,�.�����9�ؾ8w�� ԧfiZ�w�M���-ɇ�U����ʔ�Ef�Pʰ���T��$#�R���V-G�6��8gt5|�����F�,h
��*���E����F��8����cb�H�����,z|��.�ɒ��Ŋf�%�J;�\E��V�:��'R���Ju�s�,q��؅��kn�OcWD�U�Lՙ�{A�x�ƒ����hݝN��y1����a_^zx��p�A��0�N�8)���Iw�D7�k����r���g:�YiPu�z��/���I�:vX�ݾ���E���r.`,@9�M�U�/^�鼽|U�,��Q	UXR�c,M}�l����l�9�}_'{�^�
�=�|�Sj�GÛ`9���t}�dvVw�5�]y���/O���h\�U��Ƽ�J��
�#/�	
�(<GF��$�Cn����;��O{�F��^�։K�IK����|a<���w�MW3FU<�[�g�:�*:��\��jx��*���Ӆ�7`j��x��+�s�^Ÿ�'"��*�da���A<�Ju�)�Ʋic���m"2�F�>�	M(�ʬ�`�:�%V�K
��Ȫ��p�69)U�!ѮC�,��Ѣ\�-�A��p*x/���z(=!4��	�k;��8�����*,��'Sgy�����ص�#|��A(�:��J��"Z�cw����k����*��8�?~���H���=��Љ����?/�!{��	u
z�d�l�͢ Kp�e���G!	q��n�Xv�{��!�j,9O�D���~[�ܞ3�7a�ދщV��HE
ʳ	����N�
�N\B�Va�:�;M��o� T����ZI"���F��h��G �[I��ݶ�;iS	��CԹ��i;v��s(���?���)�e�N]���@9��U��I���Y����s��$��̚�W�\��ʮn�HǃÍ����f� �q�O�S֛^Hq����e��‹����b��eS�_�M��(�ͫ*l�R	&�M��q8Կ4.9���u��|�؉ �8A�	�;�R��vv��H�b�d��1��;��}`�3k\&X:ӄ�g�Di=�X`���$�}���a�*�UZ��/7��? ٤ר��1QA�	��` �����m6����F>!u�n���X���O,T���C����u6�gW��	��]��tt,��X�C��E������I���7Dw��Y�2h6TβCn��s�B�䟵��	�_Q_�NJ��Ϻr	9Q�Z�.�3J���#�Y�
��|6m�Xn��	�2�U�ZUX�v��w�F,�<���O�p�d�I-a5|5�S:�~�wDY��,*�~����/=:�O�
������5�������&]��[ڋ�a�@�\=��!:�B,vh���K bv��a�gYʛ���̓��G-�-	��9X�*K+�)�+b��G�q9�@ZдG=����aIѩi�V���"Li�`=�׸�1~	����~f���˴���z�8cV[¯�

:��C֒b�ɤCh�~�J�C݀u�5�������k=p�L��H���'5��otK?�����b��ҭ�.+�)�K&��O����,��\��M�(�g�>��>��j-�ILh���0-���
�)��YIf�'����s�Y�&�"ܿ���b�3�k�&����X��#��v-C�l�.�El8��dRM!I�>�hd���k�Š��T��E��� v�
̰�.Q�Z2op�3���V�?����Ϟ����p��o.7&�M0z]�E/J�Q�7�h[n/�gPd{zu<`]9nA�Wn+�A"���Y���_0����N�+xCtJ�)a�vPԞ[�2���_ML�'&�\I�8ݴ�+I��U��F��c�k����֌\���~����Ϥl�1�$����auJ��`�g�;r�N(�Y��d��O(���@�a�q�9��V�����
��;b���D�=({��+����߿_ߤt�'�߰�U=�M4�c2پ]`~^'�x߂�����!Կ���\;F'wY�+n�-�]R2\�m��1X3����m��T���Ȼ)쭪���r�hN�̝�Κl^A���z��r!�'!9�-M/�H�G�,i��~�`*M+�z�VÝ���G�x���?�����	�&� ��m��`�_"��p�ڴ刘�$Ȱ'��V,eI)�D{Q/r)t�oe����B��8X����aяY�gf��V(Fg��v�D5ga���/45�?��ƿ�p�!#�W��i,΂̌L|���Vz@X�����F�Y��!�͚�t���+aZ�3����D\�=O�/���,������4k���?�L��j�z��a�z�،��f�,%�_f�G0X(��?����k{~ƺ�{���ۡ�9w%VE9������oެmC�]:ed��lJ��1!��K]9�#ZpCV6hǡ̵������W��]+��ૻ���AB�%�=�`���ێZ=HjOs��A|�u����U�$6��km��V�`Y!V�'����2=��i��jC��4}���B��B�^^1����F���CCV4I�8�c.꺓{���?xY�|jO�E=�����ۍ���(���:����4{#�^1�Uc-$�]Љ.ys�2f9�=Z�`5
kn��ȷ;���/��Dq�4��_�}�.�E'��^�%�Wn����$��4@�JS/���T�7
�T�D�C;Y���5|Q�͑X���С�R���@H������-[�h�Z����v��p�#f�#�Z+Jq��ў7��}|���=~���>#�4�qܐ�
,��k�mz�c����4!Y�x�]�n:]e&z�U��h]����h�x�&F0�C�|���͵�Dg�η����ˣ���P�2�NƠ����i-��.!��W�!��H��밻�-:���ݹ&�!�\��κ�$j��+���i��|]�I�«�LG��I�"e\�rM����8�
,x�R�t�+\��u�L�m����F)�h��y����A���"Z-3�{�$��u#%ļ�p*o�$�"�*(xC.�	�t*��2{C�rPq���b&3���KOӓ�ڷI�Ӄr�GÌX�L�eܛ�E�j��,�'_�D���m����b1�o Z�?�1b=l�OX�Hs�Ȇ�s���
��타0z��*h��-O��h������hf�hQ�o��w�����5C��f�=���j��"p�#��Y��7�i	8~�p�`UeI�D��컲�-���qOϜ;�4O�E8Vp``�'�N2����|�R]�|B]�/����|�lW���1X���h2sI9�����V��A#� �NWᕖ��Qi���^.��coGSU���,Ӆ�0�.Sz{J���u���v��}�gX-\v������wB�:���1�)�R�;�X�J�bdP�x�3�^X��&�0<2�����!ĚJ��κ�%�a�	b�b�6��	�M��I���c�麣����2�-���Uak�,��+x�Z��ξQY����S��[�L��"�u�MvT�w�q��m�PG1�>=Q�(�„Vi���R���O��>�N���~@$�ȂR+���m#VCnx�H�DŽ`��g�tWHp�hi�"9��
���q�X�%R��>��QU}o.���X妛9�*�ùx�2�)T�������̰����+�z�r�L�:���e�\Լ�L��T���UW��Ҭ����(�DPEo��~�Ä��к�ҩ�5DIv��s���Ix����ef���X��bS} �+���W%�j��3X�c}���;��߳>��!0\ɞ؂�Z`'�I�',鎦td/RK�q�败&ibfZ�|����yqQ���Z2��1-�i�h���%�x�h�`b�HV�cy���w'�B�L�6�c���N�����������*�읽�%]�(�!��Q�
oR���Q���|����eHK��kQ���ܫ��8b�Z�a	�DU;�b��@��'s?4t��i�b�����D�,Mx���v�6���E֘51�K�X}�j���x4�_�`B�;�
���3��)Dkw�	�+�)S;���kT��a���B��k+�"#�i�.����D'�U֟gO���.�CuK{9�q&oz��p�aM�(�`�.�:4�j3�g�� 3��ϜN�N�G��5S[T��k
�oj�`�yF��wQ�D�3�+}nQl
w�B�%�t�4S�k�`�uBӅ�}���j��U��l��SX��h��hG�f�C�s�L��>ʟ�Dd�!�Đل%����|��`�+�����U���t`M3�aT��m�����<�5�m��f/�k-g�����:�a��g�?��Ӑ��B����;�пɒ�)�}�e1�z
u�ͩ�ks��~�� ��,�b6�v�k����,=�>�	�ŖO��o��-����i���k[j٢ݭ�~�d���8�I���S�N��Y������qb�eii_֥�U�(�έ���SҗX�H�m�b��"�p&̤$XIb�Ă#D��4yb��G
���i��rF�"K�[�L/-��'�;�G��X��M�3��\e�f���ՆP�_/�W�%�'Nu��ou!��#IO�l0��C��rj�t��W��׆
<��G�w��~z��킣�Fq��S��ɱYĔXM��rG@,�.e���Z�A�ѭ�{x�H�ɩ$����V���t�󅀁FXYBd
M�ͣM�>dm�ϝ��j}�3�[d�U}�2���4N���x��Ž+v��{�*�����Uo�Fm�/��z�k3Zc���2Ԯp}����gB(б�
(�ȗz<.���~�p�d�B��C����{D�R��*h�CC�
�)��m!<x~<L���	g_��W��b� ��C�8�3i�����:��Ğdfu�i��@k��,Ŷ=��^]�J�b�lj"�*-�>_#�|‘������&t��8	��f��P�-+?Vi�dԺ/���P����B�����zZ��I���K��砞�Q `�ʴꕬ7�O��~�˸��(�������}J��(ǰ
S$����GHa\�*[Vi\��9Pu�Xu�Q�3���\��$du>��n=��W��E
U�~���^@����uv�C��#5�%?j,�؆QpN�q��@���/��q�E�h�%���X���G�t�ْ��:�E-��Jw���v�2ĕhv���b�~s�ge�TUwXYA��ju���7'�*¬Zk-�V�.P�3�r�t$��A8k�I����
�L�wr�A�d�E.QD��@���i�)Ӱ"�����;_��3J��uR�
���8m ݋�#2i
�-j=��ֶ%��%Q�{JH�0?ZȂqx=� ���[N��rӴ���Q?��81Tp%w�ߒ-�i
�����:�vN�
�?!��7I
pc����)#t���Z������?�?�D_�J�H�9��^\xB�;�vk�}`�yV���x�U�G��T`��D&�B���<�LQL C�a�*ˡL=Y#�����z��B��q�<��*Fș�)�<�S�Cf_��ń�^pNRj��ṵ��zF	�/�#���
�9\JT�߀Md#Y�|h���Z٨D�Q6jY,��-��?���i����0S�h�U��p��E�v�� eΘ��J�$�����Ӿ�Э���&q:֗BJ<(��@���}��,	a�xp��f��y�k�� ��Ybj|���ň�f��Hl�kɧ%y+����hpf�%�Տ~��+��.������n���!�w�����_\;L+�%������;2�;��������$���W:2�b?0����"��W�fU�z�I��9��C�]���tkp,�f�R��[�tȅ�/i��
���'J�ib�����H�Ճ��۷lf
f}�q���l�VX?��ws`�x͉��X�(1q,D��;f!d�V���s�����ꔂoV,�M�E�
�.N�(X�js,$�:�Y���O�&��v�c����\�G�ZN��	����V0l��~Y�
���
X__��������Jt�&���W�r$�. �a��ѐ����,-L���O��-���	]�j��^��o@J�}�B%kt�L{�t&>V����>->�KƐ��2�?�K)Z��K�V!��˥�����n���H��W-%�Tl�0���w���J�ᤱ�N3�Oޅ����qλBt�=˽��/YF��>�� ��� UsY�B,���9K�0?�j�Ŧ	�K@�qwT�-�5�v�[7��Qø-�L�n�CO����Q"p:*,M'�%�B!v
R>�J�Ǣ���z��>$E5�J��)�D:c�
�`T_�謡G�[����3U!�"řWAk���S�K`��K�BY*b$�n�Z��t:��M��:J))ޥ0�����'���ZN=c�� L�@ts��w�Z�L�c�T����
��f_��gW��}���+~�rA�,x�"C�e$��g?P`a��i�y;�&�}�i����?�=2?�Y�6�P���Q��PCTc�TKa�+k����x��R!\��oآy���7;aM��-�D������R��c3.YJ��&�T��/���3�u5(��d�ʝ�hh��^���gzO���IK�?h��F��)4�V/8��=2oוɋ���͋��5�G��0’&ƨOfж(xc��� ӫ�@�6��X`n=6�3��pFM�H�i���a���2��C�K$�"2��9bִ֙ވsL�c�N�Be�H����>w"����������P\�ө]�'Xi�.º�bֻm�
���RBP"�+�z��8��&����6�4�Z�NTc�q������8m���z�����`-�N�@��&�JTI!QAe*)#��Y��뀬Q��t�"�v�t���������lf��ՐV��G6S�tZR��뼫;��(m��1Pɡc,�+)i���Ƥ�8�Qm����X�#�$���A��� ڵI>��I
VyqF
�	TYC:6@�XթJ��}B﮽K�a<�K!a�.�g�n��#j���	�v�h�q��̥��w`����f~9��(��F�NI�c�G!K���jrz9.�d7�� "hL'D/?*��p�.�����"h��m!ќj��g���/�w�<r+H(��Kl�/FY��"#,|�XHͅ/�C%��a.�qW�Y�ua�*�U�!ZK*2i�N4j/R`�(��^�x����H4#5�`T��u�3���q7%(�n�vI�����	�1�J�1��4P�۟*X!b}}?n޾W�u�e�7
��VP��7`8+�֓���0�X���A ��B����f���j���20K*��14:��y7,�w\a�F��8Yh�4ˠ{5�
�֙}(+��R�1H<��������5���N�'R�.�S�>�|�hÛc�d�|�d&H5��6e�~)	�Q�(�}8�����rm�4�6����
��9^���z�`�P����4����O�u��)��d��Eh��U�ȣ������P����x}���~O�Y0i�~pK�ѵ�C2�>�;�г��;xɊ:��0�,�&�i���v&�j{,��F�E �6�R�dNF͜SK��S�3�q��y���p�w��4F��M'�����Dt.+&"��i��F)�%q��ݍ��,���#H�#-�Ť�|���VXK�ρ�7.	������zG{����������Z��2PgWˬi�F������x�Mg����R��t�T��
T<����D���b6l�����qA�H�q�ܹ
ʼ�3U*��jFK��<�1@Ҋ9�4yn�b[`�&3:��e)�!g#YzUD�eO�f!o���ճ[y��+K�5'f���r+^5W��͏5D*ъѬ}u��HV.��i��y{�,����Kd��=sn$rO�|Dq�+lOJ�¨��y��ņ��zڛ�>���;�g0y}`~5�[J�B�b�vJds�j��Ͻ�#�@�m�_���+�&�v���<��GT@����y��y���Ϛ�ˮ�&C��Oשڵ/53���
���ᔂO\��h ��,/8�H�2��+�?7����lP�8\�A;h廬��8,G7��,��W�L�XB���ڔb���c��k�]V�IA����+�3Pc���zh��5��W���:���_Z�j�%V�=�!���m�J���	j?r��jm*��n���iaf��ye�j�X�%��\���GB˰,�
��>PH�#��ޑv�l�Q�"��/�(��l����[����Lo\��Хw����ey��s�F�L������n^L��w���D(�zto��E��-&����;�y0�1�@A���D�[��ǝ��yQ�Fӽ��q�`�<j�fJ���vw�\U��D�hJW�����g�&j�<'
��QxK� 1IlJ�8T�32�\]ள���P�<un�"zj�)糛�j��ax���r;�+�M�_�����a��"m��7q��6i�9��K�W��Z� ��"5�
k��� }�!*m�d^�VDK�����Zd��V^���(�S^���O�E��"���kJ��v �(1�ɶ�vX��}!�:L	��;^��#U�L���
ЌB�V���ߏ������#��VQ���3@�'�f��v�v�j4��qK+�PA7B(N_H�%����`����a�:��I��ʱ�	P
@�&�Ճ|R��NA჋�+�<Q�t�w<uCSȡ��B�v@1��銦��i��2ct�>��,$7�4L�G�c@�M^i��1��).�$�&���F�H��ՙ���3��T����xװ˿W_��5H
\�e��bw��V.XpO�P���<x�V��׾�@��>��Cu�H�#O�1�EZ��ۘo��4�h��e�&�d;�X��x���x��ݽF@��oOȲ���U�X��ϟW��+�g	ș�os-8�m�}<�#S��r����<唉Rx]���B���E���y%��b�&Bi���]�-���મ}�ðPFF�K����7ψO�����K7�M�ן�!+K7?�Qi�6�:��:�f��XJ��.9PLӐ�d\\A�1<׮����B��h��?"H�o�p2���r��Me����g��7��9�u�)����x�6�m����C�t���rj����2lޞ�́�����Un�Y��qeӠG%']z:�
��>P�P���` �Zcu�~6�s�L{�Y�>K����	����Ȳ�a�M��V�U͚	-]�
�b��pch#X��-8Q@Ab��n|xa?�T��Ƭ�@�^�<�~:����`)�z���ž\�������劦Az���.ϟ�GN���C1GR��+?-V�_�-|�����Wv��}��j��X��~�g��C���ۥ��������A��s�����-K@�
W=���:��g`���;���<���E��P]4���jڦ�rR��PBS]0���O��Y%�B�T9�밴��f�O<+��p�4i�д�L�)��R#��@]�a�/��9�)�V�I�:}��ɒ��k��x1���ճhw�.u>��
M�O�)��mq
טl80�.��7�XFzR`k'tbIi�b��A�ڴ�8���7��v3�.��
2�)�Aw�D/V�6�0�Q�DΨG)L�<��Q�+��Bp�$����d�M�,&$��x��~_�q�x8�|P5�Wꩮ_<^��z���){�͟J?=���z�6�[&7/&��3r�z�\JR-��:7Ώ��A`��c�� ��Cj��)�F÷ǒf��WCž���>t��T#�N��hQ���+
��0mI� ��) ��ϤvYvi%̦������&���!lY�Q�_­�_hy�oa�+,!�F�r��F;^�����'����.G���CbŻ�!pB�1x2�*����lѢ�S��8��I��3�t�yX��X��(�1��\��K��!��ꕐ�ffo+�"���X.C
�Qn'�:��Vb*j{.-�tTwL��K�YYVT�o���[�Ǿ5[�rc`�v7Y_z�%,��!]��rj�|^`�&�fL���l2��
n�`��&��u���ٕ�;�\�F
O,>^��O*`T�jӵ�M�'-	u$��Ȯ�4�}l��ӷ��K<#�����R�9Ѵ�Ԋ�2���$�����7���xr�&�[,��
�~�<�A��q�Ǎ��*A�S�|���)Y0�S���x;���ھ�po4�F�Q��DƖ��^����ޥ`�ֺ��L�l(;�&��~w���
�WN7L-���n�S\�(�b=z�����L��T<C�kpc5�gp�:����J��a��1O��	fԎ�k��N��a�X�E.���r����3�z�7K��a��F�^��~t=�	�Oi��&-e�����0YV���l��2�&v<�ޛB^��&<�m��{�]t�@��,��Ċ�낙��3䷁G��е��OU8�TK��10ʋ���{�/^�Px�MЉ4��`8������P�Ajlu�^�߼$�u|�Q�A���|�>�4U�+��u����^,�A������}��w����b�E�y4�.��B*Y��6Y�"���Y��DEv��_�n�`A��F�3�9��9,�t谸�߼	�C���M�9X�K1}"!ݤk����R�Y$���������K����|�����T5�,� f,�C���OH=~��C�ATBLkNm\b�>�9XZ��}�qs�?g�F�r�0ҫ��Z�\��)n� ��8�y9�w�|�7��s����L�
�
6�aBB#b�8�vr�V��� {Td�a�<
�����\����~���iM���=����d�
p���oT�P��Ql��
&
1AP+�'�ā04X-Ǻ���=��(ݿ�>����X�՚B�N��uW���t=|pu�,����鰜sX=�WDg(?k*����q�ɣ������Z����E�D�z�>�o�p��g�㸮�k<Ϭ�Սw�$4�ZJL�,�4u]P+q4��r�+5�Ae�#�ۘZ -,�/�7�r�`�5��!���H����&�0z�T)��9���c  I �k�x ��r�nS6}L�7/Ai��ijM��6���1�h�o�����ˌO"���{l��z�|�x%&��G���W&"d��<+�z0�|���pY��͜1��!��w�K��Βb�����<� {�V�w��IȢ�壵e���s���+g2�e��Dz����3�lfji�3��^DN�%O�__#�C�x\�|�7������A[��/�aq��&�
ָ>Q$*+�Sٖ|#�++�U)���m�G�	߹�zy�Ua-�T�^x[ȟ���>��z?^�������������%%��P�&R�s�v��k6�V
!MO�
�I��=ɍ�{C�rk8�����3�c�:-)n�Q���y�i*��Z���j��BIVi��J�g�y5�a���u��S��n���p��7m-W���vf͉Y�,�T�@�T�h�Xd��X^�f������k&�~�Պ���V�m�����i�������%�h�/���FB���]w���i^(�j��&��/���i�X����/T�6�<����}g/��E�Yg��Aa��gD��K{��UJFeu*�����Ϳ���Q���%&������V1I���4)͔��R��}����b�h�q�r�����톥;dp��?���qq�^��w̓>5�#2��O��W�Yy����<��O��m���+Ꮣ�(��ߞW��2{�!i_�C��F�J_,��U��+88�.��Ήl��a�V�j.$�sRĂۤZN=�ˬ�$�;����dhH��0�'[oz��ܘ�90-���2����󁌚�g������ӏb��b�pL�V_۝�E�*%)";)��U���k��A��ŚQ�E�_�tΎއi�A~*X.s(�ZE�#PJp��|�N���CˆZ��&+Y�vw�=;�:I��k�Y-/��=����|�${���"sNO>_\ɴ?�ꯜ�U�]�Ac]osa����3�?�X���;B*4W_j��;w�@�p<`\��5,�	�~��l��
�?�R���^�E.U �z>�P{��#`$�����`��o���d�KV��yp���0ن��g��6ۋ�[�EKX�HU9�C,e��r��sWb���e۱���h���
��kU�Zn	T���0��]ҩP�~��Z�lT���-u�Ǩ��'�Xg�aFT���/�2,��$�D�X\	嚒�4Xܔx��`>��M&����iAb��y�1�-� ������t�ƙ/�I���%3d9���LU@�'���[#nH�*���9
0���u9����~�ըgN3��~�Gwv"du:1�� -e���Ϩ��_�m8uI:����4!��N��6XP�Ɛ�<��Ong���O�߷����+7X��p�u�M�,Xߧ�l�4�s�C:_�;C���
J��N:z��0�I�y"<��jDو���5��X��qу�h|�k��Lzf"W��r}j| �I#a�
����ƧJpW��^���LɅ�c�*WT�r��ڇ…㹵%��*���+�7u�g%<H�VVY�=��D�<��U�����4�@�Ki�\�m�s��;˪L��)F_-]�K(b&YN!�.��B�;'*���>f�
J���T������'�^^@���xa�����%f�宩�:���A{A|*$�(�!��m�!�,�I�p�2�n�E��u^�$���U,q�Y ��v�s��Hz��Y�1����i�D�Q����3~;y�j��L]9�����]��5�
����FZ����1�B�:���p�q�a��v��t8��;y����a���=O�@q�7dy
\aF�?֠�S`a���Y���0�q`,��<�$1��
��'L�دǣ�ig2}��0S��Ar%?0��S1�%}'��Q��(�
*��K�"W�r]�J$ӵ���V\��NH
���%�W1*�h��[aWRk�k�bt#�(j���dcG���ɉۓk�!��*�����r��J5ΟVa����oTUG�Ĩ�&�W^���aµfEsd[x��'Щ�Cs�0���0wp�;��\�Cs�y�D�����O�����b�h+LtǷKlj&E�V�S��!wWwQ�Xa`�e����[�����&^^1iߘ2vᬹ�hV-���]5��%r`���q�kG��bD_#Zs�ͅ�ϋn�
V�_r�t���T�??8
����X���w����9�E`�����B�
��;�~r�$�i~\�<�N�`\=��x���͊D���	a����\��h��u�k}JZz�1�E��b4p�(��S�tiil�q˔�Q!�D��>���y�F�l�nh�G@��`1��y���.8CW4�P,�Bݸ�	�L�@A<"���:��k*����G����1�9
�ur��ᆴe4ﳆ��1K,*�0�����5�ǎ�h�F�����7H���k�}rt,�X5sDb�:��WJř����LK��Z,t��K���['� fb��g����*��˅��`���� I	nڞ���k)L	q悥$�Z��v���A�li�5,X�Z9���#�iH75ζ����k,
�f��+гc�Y,�7�fݎ4��R(~n(t��?��8$O��pT���R���@+\/}�D䂅��i�+@�Z��#����!�1�P���qֵ�\�^)������;���|��h������:W�(��
μ���Sp�w+�ѷ:n^4��/X�:�a���b
Ҩ�1���XL��aG��(P�i.'A
̗��+�D��;*M�1���*(x}z����b�^�h`�y4�6�����P�R��M�V�{�TX����@}=�����
J
F�a�8��v�S6K/YwM��V�^�2K	�&~�����p��r��aks�p6�`y)��x��zGO-�Xo0#���`����߸|0��v�Q��d�
�
��dA3Ě~o�[�,6����
��I�Nx�k`��p.B�BX7��c�N��'���*
xz�C<�a|zC
F�΁R��V�Y ���P���Ѹ[�{(���WOE���QtY�5K(�U4vr�'q��g�H(V�W�t�;q�w2�-V�Q�����
���,Uw��_�&�M;o�e&�4L�ߧ	8�A����&/M�>"^!�� ��E
�8�&�g[�D�O��kwj(gL��.��J��.��s�y��!�	��~��\�k[���h�-+2���
���e�q�n�0��yA�hx
��ɑ�E�b�r͕U�_�?8���=�+��-��z��
S{3�3[oz�(
�W�G�	w���d0|�RlU����m�2޿�m6�Ɗ���w�;+�4@ł�����p���F�RH�6�r�B�3�璭�����+x!�k���%�>غ
kEU
?`��?O&�[f��l6�'>��h��ڒ�J����,Ŵb�IFj�K�"�Մ'��ֵS�j�70��aU(�ynW�j�6-z������2�MtK��*��W4��s�9����(�`�dRS'��)Y��O(v1������Ywj�@�D�Ė6*�B����q��:kD���g!���R���w��\��M9dw���P�R�wa
��Lb͗�0WaZ���]���%�S�KQ�N������VS"�^����ݕ1B5�G����)��Tʿ��O�塑�%�`��	�8�4�
�c��؜���<�)�A��Q���O�r����,�ڇ(����+ŨUO��Ja���Z���8�f�e-�eZ]�ף�(���I.X/�nM8�G�u+�ܶ��K�R-c`"�`�����d���-s�����F�ɷ��K`гQ����K�xԍ��o9��;�6�N���i�Jw�w�a1O�x`r5�UGC����i�PV�v�k�G��-�N�#�5"��=�)�����P��%���V�@/����z.�
�|'!�~Q�,+�s�1Y���m����Y��~ $w�jhӳΕ�o,WX�v,�21C�4���z*VZ<Q���D��H{:hۆpݴn��BGa����?o���F�E��R:%�T�*!*���`�
9���D���������^xc31��q#ݺ�s���z/���.;̏�|,�Ц0�@9�Yy�3�A�0΃'l�p$�*������+�Ʈ
�k���#ܕdR�b�s"%	�^Η�T���E��)BmP:
<.)�p�/��v��f�_�vs�@��@�u3H;^����ansb46�*����o٭q�w�#���W>Q7�Z%'��B���r�>��'�*/&�=�Obp�Hl*�'i5$W'Ml\��8�̖�55E��<E�#ՒɃ\J�5^i��t)�|����B57We'�h�I,��{7/����K�/�Gn
��k�/�Q�n�m���4�6P�j����?�bݕ>�aД!	<傎�H
�y��4�I|�Y�}�r�y2���T��~����.ӌ蜃������a>T��m&6N���,X��S�3��y"$�(}H�z%	��+~����	�����JH�z� �+��zl�V8�tt	v9-�D��u������:ǫ�e�҆��v[^���cv��F 櫉
��kmp�
26��/jQ�?���&!��L�2<*�I1���'�Bwe�*�Ej�L�%_�S~9�s�qUv��L�2j�ò\j|x��T�#�����T+<��T�P�K,��w$H��J4�c���W�Aq��4��~dVeA���J��:�*��tt�l�|�zU׎�TĄrh��gΠHf� h0~y�+փW�~��0�,��<�	��/ǟ�]=�lXr�z��썧�j�P�y��u?o�@���S*�{��jdgr"N�֞wX@P���;�M��%���?�b���GW���""�b�b�@�uK����Q�0�g����[�4"%�tޏ��y���w��`��U���W-�����W���F̕6��3�+�)ep���c���n���K��!�&t+]��l�*
��(V��*Var|�?h&&fB�?�յc�ye|.L��	��}f\�����%Q�n!�Lv�������$`�'���f���b��h4�A��D��h���P[��[~��	�B5ۧ��9�5���پ��ȿ9�}i�e+~9%
���߿�`}���{�����љ��Z��~%�
�W����e��c�%�wj���A�Ore�-�1�$��-���$߻�eU��W(�<�tA�B�8�%�(K>�յ�9���GQ���J	�����>�aU�p����v
d��ݲ_�u��_�����XP���/wm{���D����f=5t��	�`5.��$z�K���{��E?����/5��ޗ�>E�`Qg*Z�7��U�����y�̦�
+�.�+�hŘ<��l���{k�b���Ro�F�u� �5�,EF�������Ȭ�T
��[B,ر��'6����d�x�
�drFwT(��܏�X��e���:��^��6�l��(�B�8�4�j9x��]�o��	��QM�}q,�@LL�ϔ��D�B�lY�V0��m\s���T���h�4�7�g��4�[4
��jѩUא�
��{@]�y����|��^kR��\���T���w�2� ��f=�����q���XP����$�S�uo�%t\�ϯ׫�z���z��v���ܼ���'{��n�5��+�rKg//�B55y��Tj>F�܂I���F+��֌�6þ�WC]������$����UѨ8Ts�jz� SQ�+l�1�
r����~7wM&�H��4�M�u*�Jql�U79V�B4�h�,W{�I��r%�S���=x‚-s���z�Z�����}����HԢ'7�����O����
�^�r4�-����@�]<SF�v���c�i�M��\�Kv>.҅�9zpP�o�e-8�Β�\Ro8s�E?�ڱ�:"3�X��X���f@A�D�`�����C�n�|5���4'rW1�_���\�[-W�
�}}�ߟv�)<�K�DX��B���v����=\r�o}OC���!:7}�Җ7zj�lG+s�T���F�|�u����).���]�H?V�=��*�����fj�UNkm�^'b��Ju�N��]������,'q�9*}�,$&.�0�:]W6����@,����2�9�y](
@�#������t
P���|1`^�E-�;mŠ,K��s
@v�3*@��]ˌ���X��.*a>5_0(��Y2m��GU��T�J�?lٿ�E�f{��Lϻ�䑩lya;&G���Mj��o=h�n$��go�yԂ�,,����3���&4(�cV�t����y�=t�S��%�|}����t<.����ǂh�~u߶�eJ��)�Bm|���H�S�a���Ͽ�D��6.�q=UA��N�v5jB�A�n�ͫB�2&��V"�(!��)�U&w�����K���	��	����-jsp5�Y�v�*�7����1DƱ��e����;"g_S��	ܤ��ҔB�����fy:��H�� 2q^TT-��(G_:;�jŠ;4��<!�Yx��񘢋�%o��S�<eU��
vv�@��C0�<?���x,T���Ý����H?�Xo*���c4�6�[����[l��-���+�I� eܕ�p4|���|�KWX
z�)0�^aFB���*j������8n�q
��q�[���	_�3dQ�����?����z�ba-;��㜸���v|�'�:W�>bϧ{�Hڔe�H&@�}�$�󋽖<GK4��8�x�5hGٜWI����W�!�1ҿC�R�T���>�+E2(�,�	��A}
sa#�V���e`�ɩ�h�$^��y
rn�C�g�[�{NW�����d��O&t�'E�~���GU����,�;a�ߏwm$Q����-`�����6OVQ���b�KW;s�^�j�����O����������??�i�`ɍ�6�r(�f�����ˋ��0�k�W���c���oN��p(XZ��+I�ԨPrP�F�4�Cf#�&,�V���\��dAݢ{��j�\�Șs9e���gud���ˤ7B�?x)�����=`�;4>C����`������ݦ�<ܷ��rOCa1:��vC6��bؾ�onf��I���M�`Cu�5��G;�u�E?I+�t��G��+e'�)@-!�@R��^��r|TP�b��-�K5O���P(G:;J�W��jUv�bVEu��B-�<{;��_�M��TP��CU.���j��^��hC1C����Z�L͓q3k
�`wGԘ�K�ir�Zj�� �4��gS�bT�x��s�����{ʲ��L)���}�	��S�XΚ�}�5"FŻzU�ʳ�
����JY>�̓"�g�@���=t��/.��u8�*��%�Q�Z�:��q��p�z���k,Xא�L<�U|43\�Sy1��f#���Ё�긃:4�NK	wT�Ɗ�_�cw�9�?�yI�±`m��u�.����v���<�,2��d�D�
[>Ub+zf���W�B����tV�����9��i�ACٝ��)���i(n�f
F�+�����Q���t'�/��(�^Qw0�r)�#>�<Q&���Wceu5�� i6��
�oW1G���-�b��N[&G��w�� �3E6�*�Q��E��݊�4Q�q0��-qH���\���k�I$��Ummc@�a�Qg���jB2�р߄��o�:�S�n�/Y/@�2 O��s��BjO(���ֈD��n��c�����n��~n6�}�nπ�~��K�e���͟x\��a%`��p�6x�]�s2�	�M_Lb�!�c^�%��m�)�Ҫ�<U�`�q��4i�1��*S	\ZEJ�
b�Ť o�(u�
��pShx%����ʕTU���A�,9�����S}Ԗ�=�R�o�K4dF��%����M�)i7��Y�����Ol�������Y�,����j$,�Ab�ى�d��}j}��i�cݵ�u�!L�����W6H6SU==��ȕ_�V�����!��V��m��W3�4V��v��WU�J?*��+��OД�Ux�u"X����8�X�õj��R�-�2r:a:ֵsf�j[F��k�����$���?F\�WLL��(#V#��.I�T<����
`m7o�ǝ����|t�����q��%߾�3`�;x�'�%צ��8�7�_:ǝ�L��7���Khs��E���k�	`��fX`s5C�@;qWԫ�����*.����m(�3���!`����
�R��(���i4 ������A.�0׫R��q/��N�η�;T^���y3n��!Of���:�\��ɢAa!>��b�\@$��C�8ϧm��L�i�.p ��?�I��zh�F23����^��iaIj�D�vv�6�2��{Y��֦!�HV����`�`�B�Jʛ�W>�!F-B4u����at,�%�NGsS�'o���)�U��W�X�N�Z��%�$$Q�ƪ�U$��eO'@��Aym��~&x�f�qe(2A=xͤ�
~������5&&D���2ǘ
�(~�Qk�C�ͯ��y[����}󱦏u#�����:�N>�}����M�}X�ٷ2B(T�TK�3�թL�3�6�QW9Dk �@f`��_[�^�b41��c��x��%�l��ht������\A7v��g`�?��ZB�fQ}�*M����Kx�="�_�
_M����#T+��S�n�Ydp���tz�΢�u��m`iL�y޶��� ��r�3V�X�f>�ޫ�&Mj�o�Ժ�O2f�)F(�b�	�np�kc+���K'Yc�S�7��)��-ƃ$��֥�G6�UL6N��:j�sT3v�ZFۗ���ˁ��y+D	�u�j~=��D�h`\�F��lV�%R0f�a)��`�D�F��^ẃ��`��W�Zk�C��D��ͦ��a��]�¹�_
��<�0�߽A��yٽ��wt���WX�p-߳~���䐏��(��c�b�p�M!���C*i�]ϑj7*�Y8�}�u��b���{0�Uq欂�O��B4wf�	��U��MC6T���g��l�"\=�fX�<��l�×����'�w	_����k���w���|1ϥ(�'T@�V�k���g��v~����w�"�T��p87�"V�i=ܠ!��s-{6s�$����U�;��,��E�lu�֠K�*L,�����*��|v`�UR�+����q��٪*�T�8��
_GaaQST�:�*<�4!���]s�I���g"�\��>�ޕ�T��,�G,̅�02�b���z�LH�L$$��gzUEءw5N�o��{���Wcͮ���m�'���?H��Za�(`�/_��2V�u�����x���8�8V���ӫ�at�
<y����A�u+U�AB�mk���Ft�s:~7����d��B<��Db�)�PM��Jnx�E�+�U�h@�
��9��\<���z��3��B�bU���"�zw��?���j�,��9ű��X�+Q��ms��l�������h���ٴY��Y:Yݒ�HZ™KB�7O4��uh�3�X9Ih�v{[x�J\	�Y�E�Z,W"�
�f�6ι��G�.�����:�3͌�� �XN����Q<j�p;)�:�k�xA�_����t�AlbH��'cvr1�qZK�/Iňo�O��I����',���=#�"#�
Y� 
^����`G�����:�z��2K!}ٿ,�;\a�7��}X�|m��Ay����7�/�����z{�~���i]W}�%U�	S�Hd�Vj��no��P�m�KS^���X�FA	��S�N�1|pG���ɒ��+��~���Aw��t
j,)�{���'c���
��	�9D�H�90�J�~���b�h��s��䔢r�X�wѪ��_�y�z�	�dB�! �pڌ�/�v��|Ƅtq���`E?OC�%��F�k�Խ[S������/�3����:�*�?lr�RƬ#�kJ.
G���+2��zg���fr
��@��
U0m��������Dry��p����,�� �_q�t��hJjd�*oa��Ñ�̀�I�����F�[��eɂ4�B,GY$����������Cr]�nH5������U��5L�`�?��L��:�tr��������x��ZyJ��L����������T��<f)p��(j\����۳1���$�;[�g�A���������(m�(�k�)�}`	�b]���9�ʹDc�:=H*��w�""�����*֜J,d��`]�o2�-��g��Z<-�Ⱦ �:=�"�C����ox�F�_��=]�%�w�RJ2��
z~Q2�I��n8Q���������/��Fir�ﱄ Gx�{�2�"�>����`�u�'i�K*��Q����`n ��ca�JV!��FH��?�x{U"�.W�k���9�E<��ܮ��6/����vT�{*l[��wO��h�/:�7f��R�J��w�ofX�������nO�췟��&�~���?�m�=��?�8�_�j��7Dx'�Mm1�{Le�f�/�7�^e���$>P���*��$(R��kc�,6��ҷB!.��cu�g.]��5Yʧ%�G�=�M!u��ƨ��A�����~��G���Q�T�r0s#@6�At*8�O��(���	�}@�Z���x�)����o�qM0V
�(�x����ץYC}��&��bS2����D�H(!�i��,%=W3�
�xkH���D�}���X�9�����UU�9ce@k�.�'�2BZ�d�&{u�c&m�y�!/�}UeƬ�`�ppc�b�(R�*�h~!o�K�1����.g,��w%�^sg؜LG2]�$)����&2}e��A��Z21��gT"
C�N��B�B<d@pA�Js>��;Zwi�#rrK~��6n�.����}{�q���e�F#5�#Bӥ�7`|#����ѵ�Y�������N_E�Vr�n��`؀��+P�<3f�:�LHɟ�wk�C������s0q�H�x���偹`O�D��i�4�pѴ�Y���'��>�hB���j�Xk�$��Ij�	�
3v���9;�F�E�B¨��ʚ1)��~��㛸�H���۹4��%aXG>� lA!�U�N��ʬ����_3��}�lf����o�����O*dg�ך�H���!>��.<>�ɻ�	-��f�ԮI6�*o��eQ䖭�->��}!���9�����0�q�Q���Mv�oe�\�q�lc^p���"�C~Ĝ��w���|KR�|A�h���]^��j�4֬�9-�~���j��=��j�l����P���.�=�����P~��g�Q�TR�5��\�!o�(��ĝY(}l1�PIV���1X���D
���z�����r���ڃv������f,�:a�����՝R�h��춀p��)}D#���^^��pM'U�q^�= ڛ�m��6h}q�ht��Ѽ������u@;�����{��?L�q@����D�O��ێݎȡ���c�!h!��8�!I|����=-�<��)O���4�/�|��|���◕�`���:&Zڼ�'�=+�U�P�}*R�~<ݒ�(}k�CRy�Ox�|�gKIP,.Jџ*Nȏ��H�tV׼7QEq�g�J�Lg�"�LƏx�D�W�R��e�Nn��Zx��q��܋
"f���\��ǝ�P���?���,�<�x��S	5[e(��K�l�[�9Ը��n��7l�q�$�q�2���4�ْ�a����M�WC�7�P:n+1���1=�Qfi���KYM�"nA�1l��c�Ba��1`ah��J=�2C
c�=�)�P�)5�X����uB0������DS��=Ճ}*	?���u`��7�և�����?p_x�J0��0|uY�n0���¹K
Gf'/*Y�Rh�$`DH�?�qf�8�)V��lQ�
՗����Wt�e���U#J���m�4�ϳ��nȫ�"s�� ͥ�ÜnL獡0/��L�R�j�Li�Qe����v�be`�<�{Oe�M�;ba�D�L*�6S��3\L��>6r#r��?e�p�?Bk��0+�5�i4r�1�^sTU��7�i�#q�^�9��j3/FM�U
���8`>�[J���]#�tF�m�6E���w���r�j����Xl�ŨRb�"�gt�b��t��N�t\^��9�y\��S}X���k^ٳ��~�v�7ݦ���m VuX�h�2,��S��ilSb���3,hg��ݥ:�W*
��6�hO�q��ø�p�D�H'�b�mKP7�v�F����4^��L��ş���L9��ĕ���":2T��0���T�_nh��\4��sq�ϑ=�?�3�O�8!k������!_eޏQ�{KB,�i6��;� ��xJ�G������b��R;7B�l	���杲�J���tB*
3$D�wB$r曈z�����޸+Dm���� ����AĈ�� *���s��"e;�����늦J�a�R����1\��r<~ے��m�i0;vG:t���(��Y��B�Q�XнZKA��QN�4�:	��ZP��Oc[C�N��O�Tη�y�Y{z4�%W%�V�W�m�ձ��N��;��aj;[�F�{�]#��x:�B�1謭q�Ͷ~s:�oPA���L�(����S	�oN�Tu���.CD
���i�@�5)�����_�!S�躙�|Ӄ�T�}
E��f�;��T�}f|��c�7U��g̃��7}*����D�,��=��gs٥�hŲ�����DX�|��H��d�Gec��p�c!�TcE�P>@�B�.���gp��;�up?,��I�1f�ڌ���&`	l�R��Ė��w؄�*��Xpj���ƪ�cQ���U/f�����
�U����E� Ju��Z����q�9׃Q��:m¼���ƒ�>�����N�0`����{?˜p�AM���������]�kqM/���u�����LS�Mc��f�k<�lj<T��+]w:�P!��8��L����=%d�|i�1RP_|6��!�3�O㕶�U'�����"���w�_M���+�H�̉�D�~3}���t�څX��2O�@lN��8q���cFY�iT�2Ӹ;�W�O�*K���E��
��R8[3�Έ�ǖ'����\!����j���K 7PEp���=R:�h餰>����+s�4�ܹ��`�J5a�`-�g
op�w�x����(bf�\�s�H���ڪľ���=4���)���Hg�:��$�+�S�ֆӫ.>���j��t��Gʲ�3^��w >�S�{↎V�4$���k�������,e�O��ڦ�՜t�.}��>�y�pydkU@,�U=/��&��i��k�W3�m����� �Z�&aJ��S���M?�L��2�qL�*���t���.߿d�M����G��>9��
Ln���B��l��݋�Pv�y��`M25���@z�R��<r���єs���{�e�f��EK��v�+�k:s���q,8��1ǹ�}rð�"v�����~���!;�w�aL9�CȈ�`��c�V���m:;��,E���K F�y�꾤�jJo:
[�	�9�{���]��v��q!U�lV�.�c��?���WI�v<$��蝔3C�1oj^�xk8r�p�|�,�h��~���`�V=�/K�k�G7�b��Au�g�C�ѷwє�M��&E�zy-�2w�o��T
Pn�9���A6�b�6E8Xu7'fs���=���������R�%��l<�������tP��MC.un�r/0+j�ʝ�L��]�N(�˺����y3]W�%��c�Mx����u!�������eQ�����(t��=��(P��O+�
�A���6Fv�u�|>)_�09�R���v1�YՆl'�~��C������sM�!�k"��
G̳�LhK������C�`�����v*���얥�
���4��{�Laeb���*|*��ϑ�(`�r��
�4H�n�	؞R���b}�F�s��!�����tl)�����R��޽P�z���0D�ˤ���
�Q��,l�^4O+��Á��l�m��]����ˢb6S i�%,�Rw�sO1�n*�b�+eY��x�21�-X��PqJk\��?}?��nٜ����ٷ@�Lc��;uo=*����i3B���C��?�4���t�&��حDsG�oh�s�h�'5ç�X��<��������*�(Z]rl�^�ud����
C]\�XY|���3	TN��Lk���Ȑ:9нzG��d2	��ܺ�ƽ�ؖ���w^�?���Sd���6�)v�@�Fw�m�X�JmÌ|���.����R��ք�Y�.��QT�����4��b%9b��]��[�����J�_�[8d������g-C��Z��?��U
I-G'�H��.��m�p��b��.S��Î;�a�x��W �5|!���f��R�ۄ�a�:�{N���S{z��jb�Hl���=��P�}x|7���y����vٜZ�-�M
U�����)q�	�C*��!K�X/\-�P�Y�뙃�u/*��3��Ӎ
��N'g�����vG���g=@v�o��h��3Xә�a?/�b�xx	Y
���n;@�;�����>e��g�+A,8��*dI}ƒw�boo6ߨ�^V�X��@�X�R	4�Ob�kE&-tg�xԦ<�{�!y^tU�$x1U+V1Bv:gmc��F�l�ibm�Ž�S\o����4��F���6,v��nN4�8���"Jt��Q��n��% %��ѻ%"��B�Y	�BH��!><��!Jt	����RYdR��,��C�w�͓��x�y��+%RvG����*�< X}�H��o�Q����q��^�n>���b�/��o��x�,����
�9�B
�j���x��!K�
Wb��%�u���v(	�-�K�v���za]P�g�5�H���ʥ����J�=p�mYT��f	�6���%���}z-g�Ph0�7@��m�6ݞF���5���c[�s'�iͽy*��#&�����C�		�H�3Oūt��(��h�O�BC��f3����c'P�x'9�n)��a{]�i�T�4USiO'�d�il@�l���8ml���h_7�	�!31����csͅ.����K
��������r��0��Z��ڍ�U��rV����UCG˜9M7���k��t�\�2��q�Az��ȤQ�&&Bz�r�Sp��\}\���kq���ǯ�<$[Q���� �Q���_c�w��ljBgH�E�ɕU�4;����6@�YX;g�#e�K�]8]s�x�P��ι��z�c�$�0�Xס��S�5�B��.H�w��WO�f�y�E�w����u�]��޷��ƍG��t�	�E�S`�N����T���n(��-�l���a꾞�N�9!w��"���w��]�)U��v�$��1��q�
�5�BR�п���]��u��P�R<�����6Z�U�L�`�u��W'�B&��8#���>f�+�x��~piGu�ĺ�W%����`R��Ph+]��|��*���	Qf����c�R�lw�W�
�[<.���G�{^Q�G�Y�x���LB�5>8��q���)p��kŽ��9���X.��Aɋ1�s��r���V�rR_�7��A����=�>���/�Y�j�2�E� ���_�?�j�}	�x�*<��J���М�#M]K,�z%�eFx���݃*�$,�6�qCIN�)TR�K�Z�?Xh���+�%�D��U`��U?m�|�G��Y��������Ӭ�#��O�n�Acz���\���6�8#u	u:��@Q%���r���̦���$�>�A�3]��Z�	�1��+�:���>�n�Q�o"���b�`�Ѝ�2P�EuF�Ÿ���L�fZ�A�m�����<�E���X�c�|�Ney3�m��-�.Y�d�Л�OE�*��bf4Ip��2�g����cI!��!�fp�J��Ƒ���J-�r:7y^��Y���D�D�	:ݡ���w^`�e"6:����Y���~"ҿ�+\�/�vk��y�,ط���"z�m��*���"�����S84�ˍ �� ��ǂZA��I��L��S#��KwXbMcw����zt�^�	�z��^�ǡ�dX��[�X�B���̫z��SY��
&�~�|�U_�%H��v����v���>��z�y��{r톟��G\7�<5;]�v|��[ʣ��!Iޣ�**�̔�X�L��S�v�+
XE��h)e�'�)B�-���U��K�jC��L
ًs�ݓYC��>OEZ�v`0e�/Ẑ*�b�� ����'e;���,
��m)��
�hMAz�d�ќ@�
�wҗ̥=W�}"N�N�b�TG�ȫ{b�VNMNM0�x�
q��l�a�H��l�+��<C:�]ܮ�O���?4',�iӐ��h�y@k{�
�:��s���gJ���S*?�7�v-4$��42|{{��A����ˡ�~��3��@eEc����
�n��J"�+"t57��I8�Q�^���^IzX��T�� t�S�,��E��`��n2�z&3АVC��Q��M�CM�2���j?kڽ�[��
ݲ��;|&��nN E;�ש/�f���=n���cT<�9��_���$v[��Pdl�����~��ٿa+�N�DfN���YY�"�Xw�=�B�,^���\[�V��dW������/�ibꘔ���I�Z72�1&Pк$��B��Ր��'�P`�Cx��%�Ip��3\l��(cY���X�vE{�l�����
��7�nB�'�]2+�rRK0��:��h�5J;�(CATn��׃q~}�
�w�%�ׄ���͟c�>�SM�ƒ��C��s)���ν=�	�9'X�s&E�˶��!���C���m�D��`�Y��[8%�UUAňS:\{ �=�Ч�<7=��f!P��	ÐP��7�Owq|� �+�~>�"ە�Z��`=�_ʮ�ұ��K�_��2֧Y��]��M]�õ�g�ں�!`��uj�ٱÞЃ������rQ;�������o�8&�F�-��������+�Vv#V�p�0��J����ǩu즦ƾ�����?����*�_+�{�H��DL^�԰�Ј�V');Ohe=q�/Q�yI�QI�(;E
����"RZ�N̢$��hl���T�l�4|�i�a���D:�_�<R����������^3㱎e3Z�x,a�΍��</N����P�3��"���՟��
��Y�79\�c���?r����!�#iC�XT0�Ă�G/&�h��B�O]�x3mk���t�3�Vm���G=Ru���:�����_%i�^�$m�.9�3��٠�Ԕ�۽W�=����x�]4�"`U��s�/\�Cs���n�-�2s������[ӕmں��z(}a�K5,����ڗY����]�N�G_�{p8�}����a{XO8�{�>|Q"�]����T�`?�b�����#�p(�]pU���������μ$x����u�7�xk��-��5��J��K*�D�
8�f"%$o�>��m��g��O�<��J-�c��Mդ"��m"���B�:'h	S��q�N����H[;J�8��`��B�La٪KY��٥B��8x��~�sO����g�(75k
��
�񪃓z	t9U[Xn�U��<R���Rq*��cx=��¿m�~��4�QP{���k�Q��X��tlA<2/$���x�&B��/C�Q�����=�n���+�@������2��!!�B4}f��m��4����U���C���,��~N������M��L�B��."�ɗeV�Z����^��T�qA"��<`u�;��i����S���c��엿��o	o�e�o]���um�i+HP*=�#E�D9qP�gk�+�����ڹ�/��+؀��������]���S�y��Ԛ�Jq�z�›eY�w���L�`U�r)��dt�!��
q��'&]�SK&��}.A^�Ģ��F1���EpJ���]x�%���]Ե����u��W�tj��D��,�9]��D�B ��>���?]Z�6�tS	1e\b�.B;{��'�ژ��ό%+<b�w����̒�1���-��"B�<1%A��ׁ�Lp�w
�Jl񎍝��F$*}�uX:ęcє�cd�'b_��QnI�5F���c�~�������_-�PP�c�ׯ����W����85��ʭ�Įu���`���X̹J<pP+k�pn��uºI��-6�����R���!b��CS�$t�*ov�c7 ��}7Ng��v:
�]�	��POv�U�G��y�~�/����o�	~����z޿��y�nQ4jAC�]��>��/�a��4��"Σ/3K�W�m�� PC=�b��X?G���L)�ϰw����TS������3�,��}��ݩC�a�
�VG�|�љ煏/�u��(o��2d��'{�z�$"M聯qq'�\�D��D���&1� �ij|w���UF�Mv4����0'̣͡�����a�>+	
zݐ�m(|�d%v
��Ȣ� F��Kt�K!xR#+�s{�]{�l��Z�,~�7�WW��E���'�D�ˋ��������:?�s��ͺw
���T�`�&��><�{����]��ΤϹAߘ���m��&n�!�♃��l~�H��|�Ȁ�J�k|�)!k��R޴,$h"_tya�֞yGCb��H���Tm�oˈ}����1�-�{7v'T�"?�{�>Tөvhɀ���;�Q�z=a+��x�������#1,	z�t�j�^�Q�5�Ƶ~Eq��)�֨-r5챰ZT�f\�‚I١.�]3ϒ1����]֖^Q��B5�4�Az+�����*�2�,苤��(,U,����,1?bG�����U�F�]b�w���6���z'�4{�}skMsYE���vѐܟZ&s�J�'�G��[�I�Өp��s�(7r���5W_dq�93�?�����L%�@ܿ��ގX2^u�B^v䤦����!��e+&€v5�킣�CTH�Pplu(}vφ�<Tnkr���I�*@ܓK�q��G����
7�+|*�.ͺY�G�ώ���t���C��ߚ��EՊ'�<��LC��L3�"X��>��亩z�v�1`5\�k�3��m�l�oϻ�h��H�X�z��R}7I�`�t�=�����7�����X��������=^/����Gl�!�r�x�W��W��ct-917�4�dr�z+I�^
Q��ʏ���܏F�`�k	K�:�z���V����M�u�\������	J#Y���,Ξ��O5�˂�"�R�u�k�/�z�����6�
(����k~k��0Dw�,[[�f��J\-��jC���t�ЛXңl�튡*���p��e�i�s,jX�q=�	��Yt�G��� 8S>���铁+nC��%K>ո�qf�sO�����쭰��X�l���-Cz҃�A�B�����ָ�GbV�p̙uMRەU[��0��S�"/fxA����W�gH�U�h-���2�7���������
��5��"Z�!hU�]�~}8�m��?��m�=u���W=ХW��p���?��l=<�xs+R�O�=,� �HPo=\�L$ =kY�{t�*u��h�2O?M~rϾ�p�p��|�U�⍥DŽ:�X��nԁ��w�xQ*�uA��'�aO�,�bqx��*K>z"gwB���m���T��U��+>n���V��W!�����lM�k��d�;a��BJY(��E'u�:�f�,m=3�2O��#��	9z+��#ɜ;�!�ic�Ёs�xࡉ_�e��L/�����8qN�
�����H����	��J��Rb	�Z���L�q���|e�A��˺�X)s�Б0��>	
{��R�H�\��%��9���+ߎG����5�̿4%��TT�������lB����4_;� ������ T�Bl"���E�Q&^+$q�`���������O�w���#zJL�2�{Ҩ~>L�եG��U�R���Ʊ9o�E�-j�pE�u <�kz��aj�K��#�z����׻������jqATC�TaI��W��~�J3O��8�\��z�m,�� D�C�uҗ
��;c�vW���T歹+�]���nmF�\J/NG�U����Adj��
3c)��`�9��4�Pl�~�lH�'N��o-j�V�ifiju�5l�v��z���m	�����vG�Yr�p�;[X�'�.]�l<rK���F�֥�=za)y���_���o�,�/n���Gl���kR-$셃��p���N V��k�q ��'|u�G�W_�H��<ҁ[�Z�H�H������1��v�o���_�YF�Boway9��w��D�5�eڵg�)y�S4OBH�~8$]W
��*�j�~��bG&�Pӄ0ס �q�m� 	k���n�i�[�4�С�)��U��v��fԽk
]���h��??q�=Z��H�붋
5B�(�Ƞ��4D�j}����$������J�R��rYh�͛4��t�&M%\<�O&2kn|T��^.��>~��!���Z��W%_�9[����2����ĉ��WTQ�]8^�1L�
��Q�i���>!�f���R4�K��R,
^e6�
�pp��n~�J�nN�d�U�D3:�ۊ�Ë6����G���� H���	6Er��—M��r�gE*�MWf�z�24]��劐8]�g3���@L����.lb�2��MS���F|Rd�W�@�'�쳌` ���������Ƌ��b�ڿ�RP;XoXȰ�`����M�����,0+��qy����r�~9`v�B,
��{X7�*`C�;��,���i?����p�� e�4�[�L�O�8��~&�MӎY����axZT܇��!�N�P��*�x�k %eI:�k@�x���9E����}�*�F��D#�S��a!
���\��ս��U0�G�!�@g�8��==љ.��4��JRoY�j���z�6���?8�Z(Gj]ä�-_�"f��t�����J�OC�s��B��g���h��i6�lYĮ ��_T,fx0�y2#{ԃ���<����pj���Y0Hjuj�wA���UOH�#A\��u̸{m�+{��|�L�W��ۗ��ʪy�1+�%���
�YO6�P�i���Br+�vi�/��ݳ�i�`��
n���m����C���U����0F���-�OL�4��Ǝ~o�=5߹�5q'��o�܁r�a�x<�C�
{�?F��v���`v�*ª:�Wz����[���K���­�
�U��D�R'�"�A�D�[���ASZ�`��J�b�
!Bg��uPh𶶨W�`"{����h�ՠT��^���6���4���c�Z����$N�2!�앝,�Jx��J�`���?�y�a�c;Y;��9===�>� ׺��+7ct��aJ;��-2�5A�ƢuF�ZK)Z|�բ�rv���*S�l�j<�f�n��!�)1^�Ҕ?T�<�Jr���m/�2sW�tC��.*X�0<�\>ZZg��w��as���:Xp���I|:������NL��A�C�ܫ`W4$L�����Eb�+P)";c�հq��@V%[F��i��p�����;���e/O��+����/T���	= ����VDX� �B��[k�R��X݄�\D�H�s�~����)����!�q�s,43��Ƃ��Ȉ��]E�4Ɵ��c�뷯
��c{����2���k��?0P�l��	�[$ܛ�i��O5���s��q(Ǫ��r�QY��[q�Ӕ����f�{�T��&V��Fk���\��=�F�*2>+��S�G��#Q"��oV�]8��5�W�e�D��Nvj�`	wB�
/=q�K7���CS"
�E�Hdo��
ʓ�I,%���
�8�%Y�`�D�k*�-.X�2P�#��F��d�=�D�����Z,��u�Z�̉�ӊ�F+սC�!٣Hv
�%-^	�f>C���%dV�F�c�A-i�*b��%K���u*�z�Qݨ�wreH�B��d�VaE���?A_�e�
�����M`l��V��;�E�;��b��]�ֈ�η�[���|>?}ӈ���pJ4�9�_�QV#j�z�>ǻ�c�c���Y�v5v�	+������X�K{��[X<�ԴM���s��Vh?Q��4ӽ��ݏ��x�)���7�_6��ч�S|��y��J7��7R�4&u���d��
��ޖ*���5S@����Y�m(�^%A��t�������w.��e�ۈ�aIe��j<3�)!c��9�fy��pŠ�",8OZXx��H|r<�yG��&adz�v�Jܝ(4K��~g��ҧdViq`��A��u@�*P(uHZD5�G��Ñ������$rI�Ӡ���D�~�#A��osC�n�Dubv��S%�$L�.��'/�0���y  +zh������G���0�-@�_[j�*��?>�׫u�W���	,v���Z�@��Š�^͵'����e�����"�����k�?�W��<�ۮ�4��x�9�x7]&�[X��v�5H��K�rP����R� R;��Q�[�U(l��!���/|��f�Jv:�D� vf��X�`����<D&d$#\��� �:i���Z�����=��tS�f��v�j(���*�g�RY��'�O��x���YBYK��
�]X�ۚ������3�&i��L�6�m��Hb�s����En�e�`
�þ�ITN�u�9Q��m�{(��Eb
hY҅�fE�^���J}��������ey�1l�h�i�g�ў�D����1��I5>�l�2�G��${Gj0"�!�����
??7�#IҀ�?�ҘŪV�M���.@p�V�P�>��
5�Z�HO���kn��,欲e��~�M�X"m����M�zڏ~��~��i��"
(��}_�)~�m^W��o��K�Wӵo�F���~�0k���i���vl��֭�[��Zj�N�����N
����S�+_�PEXyf�R�oL�@?��D-bu�X0/А[��^4xU��-$B�����Rvq+�.8QT��]]Q�t��g2��ei�=
�tO8˲DƦS�`�9��<1��d����i��VǙ�(2����f���6�t�k�r��E�<m�.��A������(�P���h)x��yy���5�&*��"�~����1ʿ�a��4��`�Z6��t,��l!�T��Qn�`���&BXb�\VHZ�}!+��f�`�O�~��V�v����*m�/��`y|�vɱ�j�~OU�r�(�=�B�a�DsBV���պ�X�c�0�>���N���#����a^��X��$X���������6A��#MAmw�??�gM�N���|g�>��&|�2� N��M(�"v�bAY��*ܸ�G�br�g�RS�m�"%�\�+3F��\d�Z��~i�æ��J���E�M�-l�Y�_���r�����@���Ғ���2�@ui��|L*��!��,�>hK���E"�J�<o[X8ۗL��!�(\� ;Ze�c��g���6���jS^2�\�<O�
�u�6��RDZ�B3����n}�H^ႭtP�=�����ՠ��*��-�]3��ZvЩ�¾�u���[�"o�}�+je�����e?�RX�$J�P��#����tV-�be�u�i������j��o���넛L쵵X��2%�ju֒�o�&~������2��.��f�#�/��N�<E�n����Y��#1��;�����3��AF����>J�%�9�H�a���;ϸ	�r����]�~70di��n��y�[*�U}�����g�V}Hjz��V�HVR��C��Ur�)�2q��at0@���e��{�Nb��lê�3wxK��4Sъ�#�f��cU��#|e�+K(�›6�bQԌ�^4IX�AA�\Ȍ?��?7�+,��N��)�U�Y&U؅7�V�>����)|��"e�m:?x5/k쐚�Xlfw�v]~��@"�
�m�p0�7>.5�-w5S\M�R��2�5YI�*�"W��(�r
5�X���a,LP�h=����Y�j���n�U���
�V�=!,i�]Q��+/d��)�Rg��0	�v��Oo� ��5��r�=�������[���ث�2�3�5��b���i��Vx�#��B�\a�p�i	ƅ�!�?]�p�e����.���z�!�yE��Bq��d�/�G��y�R]�6�����ӤuAZˊO�x@e������:�1,���W�
�H̞����yTF+զʞ ����#�k��*g&.��IKvS�R��<P�I.v1>{�m'u�Q" �2����	~Pg���/�$���07�gȲģOv�
sY��=��Aa�E�k!w�w	������W+T/����o֕�W�V��Q��
��j��3QM�� 0���5��#v[��K
+�(���C�x���T)Y�7Ğ	��\U��g�/<�@��q ԫOȔ��%�j׵B])P� 
x��N"�^�5W5�q���[D0�o�ޞ��Q
t�d�H���u�^�ز���};�j�����p�f�x�a3�����T�֡�=J���7t⟷ӄ�Uh4{�թ|Iwjɪ}����0����o��Cx�6q2�Ӓ%f/���<�K��rVI�sf1m({�d��q��ʲ�f*�W�dݕ�x*:�v�s��Ex(B��,T���j�j��X�N���)�<WC�ܴ�ʫeE2ogϦ�]�Q��cQH+���/�0,�d��m�t���2/l%P���OL��iGD�?�F�PntF���8��)�'(�dG<�"a֑5`�����t��KAIq�jL��'4	np�
�AM�ѥ(ф��=�_�����j��D
]���+[J$ۢ'�sS#$�ZR’���J� >���={�I]��j)EQX���Ȩ��%�Q:'�3�r�`z��f��#�%�UZa��3Z�i���(�h�i65~Q�{w�C�+�#��
Uiު�C�)ү�ôr�Wumma$�����x���۾��3َAv��V��9�a��R�ic��x<MWCO����}���(���zX	)�u����߭���tU�|'��eǏS[g���(!�XUe&粒�	��Q��{RK���evN^D7���;��c255���F� V)E,�Ɣ���Wt���?��ϲF��� �`�F����2��@�Z��N�?[~b�)'�b�T`��b�g�t-�Ѩ-N�������$��Un��q�;�+x�K��o��
F�v��6��lg�|(S�})!N��I^����-���zl)�*�LO��-�-/�)83�Sh8���;%
Q�Z��R�C.lQ|d�
���0p��E����
��G���6�S��m�?:�B^���q��4`�>x�F,��Ǫ�2��l��
�`}|I��W���y�B��QQO�M³������
Ґ�G��`:��Œ(��K�;+pJ�nJ��?���q������)K���j����><���jY	�x6�4�t.C�����'����;$Qu4�T\�w;m�Qpʵ��|��h�!HDYڗ%�QQfVxâ�J�;x�ip%�mE.���S�Z��B�l@>�ʃ�h��Ǣ��t\�����]nz����l�	Z��h��7�E}����/j^ap%��;�|͜;џU6�F���%���k���`�x��<B���|`�Js˼V#A:g-rY�	���D;-�tI9����	�WeO}2���R�r[X����H��ӱ�_yp�����������V4R���Vz"�(j qE���c�;Un��+v�l&����Q�)F���$�J�5޺Ց�j��p{����y
X��͋%��@R�j
q3i�L���qs�қ�
R����`���(�Z�w��Q/�x�s���<�<�d�wKp�'�����Y	��O�wF�S
���1RQe��
���I�\��PE�!�3�Q
X"�2�If8�&g��$,,������PU.�X��E��S���ǫ����	=��Lj��.��,q���T?�(���eON7%q$���t�
�<\^IJ�L�V�F[.��0.�ۉ�;�Fw~E;�4��6�\� OSyi�.&�\��W��b�
���N9�"s,����wH�Xۜ�r��}>Tܚ�fF��ėʶ���ڑM�M¹�=���w��P�i$UD�܂t(H�`5Av+x�C	2��r,Q��`��UI��g��Vt'���Y�0Ѡ:��[G{�M(u���1�Wī{6����[w(�
!�
��E��=h�?�:W���.�
&�m�Gr��P�P
IY��~ϐ����A��-���X?~L~����1X��z
T
�8a^���d��h,$�D�E��R�sG���d=�<�A�MϾ<��Q6�]�������-3��ϻR	�R��<Ay���t|AU�2�B�DVtDG>mT��Le�ȉ�RX���u�E��՟#5y���Ƣk�r�s�1K/a�In�JeJ�K�il`Wp�/���G��HG�w���#5�8uE�T�)&�����|�<`QQW˺��
�-�:�7'R�!j�|E+jޗ�
16�����EjSW����zp	Z�qES5��4�ص1WǑV5rV4Z� ���r��Wd�!W��_	���<6�]��,!�Й��.L�4R)^-�`/2KjXA�e�:�Ձ��?�Ӻق������dUC�qՓ�����d���N��'&�@�Yw*�Ow;�S��$��zJ�G�\�C ڞ��X�'�����4�D��P��|�0\BN�v\���*������(c�2T̄�6_o��<�D�}�*T�}�I����v.X#m����s�=��E<�
�)0����fݠr-$p��ϭ[0��[�B��37��6��B��'p`&�[k�n�հe��VpU�\���xP�HKN�+�r���:�_ɖ��h�<wǐwP94c.H%�T}</�%
�)7_+lM�/:���eHL��[-___��[�����8�i<}�J]CCr�q�$�i��G/Y��z�[���.�Ȥ�T\�d�w亻�p5���<��Jl�H?�b�uz�'��.^_�pBњ�M
D��xD��c�_�wO�����bL�Ʉ#��|x�@Qj�Z�G5a�
�y9���1�qS�X���V9�a�Z��T׊*wī��z���g�}��\����G�3�*qAҀPo�`�!��;NZDy|�-aQ�M�
ǜ�=��=X�	���"���e����ة�$)�b���w`�)ڣ��8���7��V&s/]"�0�A�o4�8�>�c�Ō6�kZ6�T`��K��Qw�ܚ��]D�Ƭ�_��j{�M`����^�f2L.�R_����9��7�݃��I,y!�E��b��sd�����/y�-����k$���G����tuu�Yy�g_��AOH8R$�BX�iIq�XV�|Ev���u5]C$=Tq3'��5��ʰJ �^յ�1�Zw�U["R��z��v}}�9,��t�>X��3�~�'_f��P���"l��o�A�>`�Fh-L�eB,4�$|�7�-0��00�x�mAk�U����J�4�(|翡�y<x�k��>� �?n���v;�"�,Cl�v��=!�ӖG7�q��D2:����̄��1�i5�e���⊪Ó��03�v��T$Y�Q�21�P.[�
�59��Q�IO]Oj����V����U�
�-�5�=m�]0E��3t:P&bĶ�c��b��~u\�0�8ЋT�����]��0��@��NՑ�����Q��Sܨ�M?E�J����N/+��t��!����Ӹ�.�gz7Z�X&e��<���;�t�>�ЛiC\�.��1s߳S,�<�tC�7 ��6}(��hU3V����?]���	8t�v��'���R
�����!ܯ�Ӣ]|�?�>TV�/�1-��Y[J.(�׫A���"65.o��o�A}��ጩ~���jb�5�&,=�&+����ˁx��)(~Ћ�y�h��o�V�Lɥ�X ��s›��F�����4+0�{\EYY�h|��ށĂ�B�.=҂���\��\.�C��e�w�I~P��=
|ñ��u�X�K"JQ��}	���jJ��W,p�JN���2��Rz�J|�i	K�OɌ���S�K�M���i
Ǽ���\$
�\`Ω��ݮ���Bub�f��M�F�K.�,ƺHX�W���E.��0=�uƌ���3�J��GUu��F���ħ%���{���;��Ë$�=�E<'����M`�WK���YZ���K��z�3�E9�CT���t����*md�Y@�����ru��P��-7BK}����P�i3`�ˉ"�.�4a��틯����v�>#�܋�`}{��V	� 9�W���Q���a�ڛ��Em�e*Cx!�n%C�*m�����?����/�g?�>d�.R�	����k�u��/$����a�y>n�Ir�;�e��4[*��O�
��^o���=E�l�"^	�]��3,M	�hJz��N"��A�fF�[b� d��3��*��A���j�\�f���0��ہT���s2�v�����n�)Uy���@��6�EUOXQ���)�~�
4e���?�}z1����}�a��
6�67W�xS�G�XګO���p��g
#;]�a��v*U#�8�XU+g��H5>R�+[�Z�{�[���f�K�o�[%�I_�z�~J:+�Ȉ��|�
����iO�[�J
����ۚKc���G����{b��N�i��
���bb�[��KMb��WX\;�tc8�� 1*�`?��������	��%B�=���~?�2��?��z|'�y������L��.�<�j��tF�r5w]��G҇v�u\ `=M�v�D}�7�-oP�1����>�Yd��H-딡J�jf�*���M�ZZ��;#��� f3��&s�A�"+��z7��U�\��"/���\�g<���78r/�C���*^Y]�佾���$��`�q|͝+�6m
�S=C�p9,�H��܆(V�7"�'v8:��,��dԬ52�n�0�U�rA��+s5E�]���KK}sBΙ��\#,j�U":c�����T�ˑ�ji��t�4�`�ȆAL��+�q~�x�-��T��E~[�[�8�(Q?�XR�t!�Ae�ÁV�VOT=B�����bB�%��+$07>U�]�4]1�X����`S$�ܯc9qXTJJH��<`-�+�oWy['�i8��(̀��/�L����ņ�O*i�s���i��OP������q�!��O�{|�İ�� B�m9ܚ�	f)yT+Ga�E0'-xŻ�_[OQ0�}9K�i�ۈc�o��-�Rً�GY#Ή��yz�2���X	�>*��8�o�z��<�0�D"q,�	k�%e=�L�R�ᓚJZ$s!!��� K��Ib<��R3��G��\��kOl!�xڨ[	~�Ep�ܪ�Q��–��W��4i�i):4��8���H�oEv�@�,Q��&,w����a���Q��i]w�6���K�7���oO+�H�=��`
��ަF��<RDT�CK�##����]RG�g�P�x�B�Z0խ�N���o�N� 6df�'��{
�����;&?��p�.��;7T��w/�j�g_
`�^�K�!�g�
jY�Uq�"�#�������39Ȫ�0�����^�w �5&�xZ.�z�ܾC�n889�k��%�������֖�E�g�}�$�~�?��Mz��*;i����p-T�X�!Q3�U��'��tz%(Z1r$F�R�wT=�bǻi/�΀%��)Y�z�Տ>'������ʑ���Ԅ&�$�I�_.Jy��@�a:Cr��oǜ1v��%m��
���o��#��.}���u�&J��3�h�h&)E�YR�x$��F\�N�8\d�%,�A	��w�FR�e�qٵ��U�^ݫ)���|�������mW�~sɁ�j�^��ޡo�k��4|4��م6�9?wa.hQ�6m�,|�3߭׫��
z
�jz\�eG�wm�~��#D��kС��!�^�Nj�����.�:8���V����Xivi�\ս��ݴ�Ϻ3q�;�*dL<�Y�����Z��D}�e��J��p�S�e-�~��BI�ȷ���׀���f��|MJ
�mhLi���+�C,��VD�P�B7�
1K��z6���_AF�����.yBs�(���p<&k��jʋ�+!֎[yRNM���-xG*-�Q;e���*%��v�L�^Jf�D�jIV�2��[�bߨT��(�&�No�Go(��~�!DV�8�V�!h�1����E�=�(Ҋ����9�\�������7r�8���l�5ke�`E��/R��ړ0VR2!ʱ�L��������~s�P\E�3uS呍���HI�)�0g����

��5MͧjYz�y�A�b��}%۸�
fs�����_��Ԉ��R���z��hN����	�D����J�[n݃�Ŏh
M1���t��]lZ��Y��
��BNj��f���BK��8ɫo�ew�|<�p횁|���᪹�0�3���^���q�R�:�ZP�:̏�NU�s�؄�L�V���~�l�q����6���9Q�?���)�5�!�#��[^&��NN��Rv��JBJn�̡�3f���W�ɔ�'M�8�`H�ĺ����Օq�`G{���'�-��ڈr��C���DO^�4�E��֬Z���k'c>�
�H�{_'_�؍��5ܑGGpqIwCP���o0V���bڹ
��h�R����kaŁY9�!jhu��k"QW�yAX��Qo��niA��yX+[l�ۊ�����]7�p	�J�M��	�爰w����lU�V��k�V_ߚ#:9X�؊�	1�d�p��J9~���|��~|K�{�xN��u�n�ž�}��a�>%�Mؓ\`�H��<��~����W��A��mQ,�u����� �:����~�jH�y�Xg��Q�y=_MO./F�;��JGKn�.ߦȃ�zY�N`��n�ZXRR���33�V�";�n�-֪Bb\M9G��P�Qc/���'��wb��t��A`��+����N'��M����G-É�ri�1��DV9F��͒��q���l6����[w/�~�����ư?#��Qr�J�-����lk%�_�.�*�	ja9/U}��6/��c.��!E2���E�oD�Y�f��lH��X������k�7�x����]��kwТ�*�o���(��_�,4�
�hAgm��c�	Y7@_��}rX_�s.n�P+PZ��G2�X�Cj��׹m8š�2I	g�=m+w�/��*����e�L�nj�İ��D5�X9m(/�E{�u{
��t,����x�9�	������	��OORĢ:߅j}�r���(�(3��*3\�g�z{��l������Ϋ{�V`vy�9o��s����C"����|��-��M��+Zg��w0E����<d幪�R� fQr��R_;�5�T,����a^�m"�΅���J��qV�c2����M�zaq�i�˚8
�nG�W������y��e�z��_�*����)=���7��͐�+��jTYw��"�Z_ݶ�7�m��aΥ�`�گ���}���ҷMndq�e�\8��`%�����1��M�w���ү��e���u)3��tل5,>k�t=���`+��ЇE(m�\O�?T�r�3(\�XW�,e�ZwT���I�崳�S��C1%�*�XeX���u��icI�J�5[�e���N�%��I"��>�����ݷ�}��8�e���U\L��︋�-�>��ǏO���mKO�>���O�������������I<-(�kp�_�v��ң։ �l�E뀱!�ڟ�B�.h&]3w��R�G�N|�JPyjß��\"�C��e�1�l-h'��Yw"�l�B<�$hG��Uf����
9>sg�5�x)�3c����8�O�e2�V[SbJ�����w��2c�����DŽ=eT�9Y>�9�#3�dj_
�D���6=I�`m�d ��ѩ������oyb�i"`e��f<�®/u;�g���"L{�	�\�Q,����P�;�~y���Ǝ�_J���0`�B�=W�+�R&tE~��5|=�׻�s���.��c�
�� ��mcj��n�;բ*ܼv+���_�o��.�DI��	`�M�٬ ѹ:\���v;K]�Aj�,��J�RWL`]��՞�����D(�:ƟEU@����#t�g�RJǶ+n�3T�m���5�c��o7u�c�Q��B�$��J���p������oY"���sl	=.�Ik�o�V�\�͝���2�
"��eM&��f�Gc�7U���e�	�O��<
���Fa(�$Zq���EJ���SƜ�?bs�`%rn��7gF{aJ�+R+�-s��=��>�S��@�j�]�3��w�,�Y�9�a�[�w�a`i�iF�s�Ø����8�u�pM*�-a2��P��ىHp�.]¹x&�iO���#���冸���eXYF'^_�����8�W��ft���
F���q����3J~�vOI0��/r�p)@kY�"�B	��TQ�VT��G_a���PK�*�}�
@�qؐ<�^��,!�b.�M&4ww�\|p��r�A��KĆ�Z���*ėE�����S��{�R�0�xy,��}�1��t�oF#��8��虻��1HEq�v�����bS�E���hkՀ4��	��}�Z���cB^(�m��`E�n޾D��D��1�8��Fq��R HV�d?Iwu��9�Ʋ�0)J4s�}/��)#ϲd�1hB�2Љ����H]'VI6�<�sg�M��s<*,!��2�(���I�aZ���W�ut�b�h�9����K�uW���xۂڸU��|�9��g�+��}��q��2�0�+
_����d�0E��<ÌwxȌ�\�p޶�d��LU�,�L��9��C7�i΀Ug�%����d=�������g,�\t�;4p�Mah�X��_ʲ����M�
�{���|)E.U`���.�Y�l�O�Y����-K�ĥ�fC��3^����#-��ݢB츮b�VX�A�K
�^j��-�O<�`h�~`��%��G�6|x��[�~�E���qԣ�ݾ^`9q�D�� �b����F�����!��7O��q��+^}�(s��b��[��:��X��`_�$��8�M=-���J�t'��2�I�g�y��.���/�s�9�B�0c��F����tc�)����d�c^ɜ�9"Ed�BQƎ�g�+�bó���AD`z�%u�y�Ub7u�L�п��&2��r�|U{���$��F|)���h�B�$N	��ц�<�龍�|GU�4Y�`D����/�…���Җ�D'Q�2�v�t]w.�P�ҳ�J�u���"%=�*+��x(��@��J��/�	�uY��jvw!H$ν|�ճ[��w�ۜ�r���6��~q���*,��m$�ف@��y/玍���:qW+�G���T����bELSQ�t�/+��-���:@�(�n�?<��'0z6s���}>�G|����~�A�wN��Y�WZ�m�i
�u�I��(��6]	����ل����t(��
c���}�~K�� tɗ9������K!�}@���
|�\�7h�ϙ�;���X[pr����L��y���,x�7	� ���`��Z�L�w2�A�•#��荴

�+ń{kDz���ۇI�T-3�j��:3��J9T���^[q��<1���gHw�rI��_I��rGmG���^��Y�Ĉb[�Ra9�C��B�2L�h���y��X�
^�CS%���1����yJ��<�W���Z�l���
�1K:��Pa�º��Q�䟰�s�%m1��q��[R�3�D+
	����Y�8��Y
��EDŽ�-|[a��r��AqFxO�m��*nsD[J�u�F8����9@��j=��Lp����N�0���XYF��+lh�J�D�҂J(�W=�*t繡&��j���UPW���N��.���ZB��֪h��d�R5�����V1ael%c��C�Dt�s
���!K���i���P�	���ҤI%���LR��$��^C�C�R2����ͮ�v��+�3���Gv�Lfy�L�E�f7T��4/�E�kꢙ�Uͧ�6BݷF�ӌyѳ�,γU	%}Zw�e�V0C�E�^��7^��'����őq
���������>�~5���'��2~�){�l��m	_V�
j"��Z�Tc��X_m�馒�c�7V�z|�7����3�k	`A�^}B8�]Ȫ!di��un��j����>��VY�X�{���y���,��GJI��F[<v��N6C�N��/[��Ag��ZD�èt�Қ�i>|(���y�)��hxނ��I������Fb��z�����c�!��}���r��Ӓ�s7���ci�(n
�2/��-ѽ�L8,��҂j���Sw:����L���$=.LX�K�����Q�?��9|�P/'�ڍ��Y�����A������F�"�]�}2j���R��E����(b�
�����l��̤��WO���S�F3�9u��?��եJ*�5
�Ua��_7�,ܚ�����qY��9ǽx[���]	`��/���VwM��0ݽ��τ���t/<�d��!`U��='�3`=<<`-�X�L'UbŖ06��i�π�t�������ū���Z����ݭ�;�x�H
R�J���`���jt(��Z[�������o.�#ޞZ��L
E���U���#�BO)b�1.٪�~m���x;M�
+6s�:)ɒI*��屇1V�X
};���_׎����"i<3�/�H�+�7fg��(��Tt�<)6�K�J�O�b,�]�1C?[6{-l&�`��[T������Ի4�]���nF�*b�(j'"�el��C�Q�ED��2���v-�a���	��}�3@ut��C�̓����^��l��G&k�N��%$��	`񻧀؋R����)�%���a���5���P^y� �h��e
5�����	r�\πk�W_K_a1`IKX1FPP�:{�����.�P�����kN�Z����0 ��Dv�s7�
�`�t����L��9�
���0�LOO��f��)�nn
,�R��>����^�Y��������_OP#:{�=@?)ކj�!�Y᪲�p6�yX
yց2xl���Zs�P�,m�r��X����<���8	�P���@�� ��v��ǩ�t�	y6�c9�PL+epU���v�����2<9��!Y��گx���M'��a��/�ʴʲc˓��wURq�aZEdT%ŧ[:�Y���Wf�/�"lEYV���MEcE�O�����^`�D�1����� "wKQ�J�a͸G����A��w�����zP��B�y���\�J����cӌl'`�gK8�������O-�\mr�M���
����UM��&&}b"C�>1W�D����_��N�%�h��"��YI��v��g%�N��I�WX�hY�U��
������GX�7,Ll	�>�j󨀾�ү��L^�Z��$�q�U}��B~��&�Z|jhJh�B����ض�p��*��L��ox`�Ґ
P�ȹӨ�goH\dpɈ�0�=�Ůz"7�=���B���}�~wB�W��x�������p�!+ށv=)]�������5��Lxv�93����ț!�%c���޽��E�.d�sOH}���c�
j]7�/��I�2BJ����uo�?Gl��c�#��<�����y
j<%$��8E�ʱN�@����BguS��A���Y��d-�z���g�O	f���
��D�JW_+h�j�OǶ+
�+__Gj�pї6��� �$�zx��V�)I����4n�;�z,�n�5���h4�]B�5��?Wo���s�S���ת7,���J8���E$`��z��2��:��sX�X�����'��4|�#�Sr��Z��&S]J���PĒs ��TY�~Y�5�瘃_ڦ!�-�uX*lf(��Y��w����=Hv��\0��O+��������9�YSH�c
�81��>n��ȴ/�6��O��V�P���`Y��˘�����8�74�J������눩�ڏ4/c����1�+�U����k
�Bgy�g۶G����S�2���*��C���	`dN�#}��Y/�����q�~Xit���{�d+˩�)�R(�/f=�;�̌�����x!�ӻ7���éZ��5Ž�eN
�l��)ሮ�3՚�4361�˓��`�y��	%�k�����kk�$�8w�$P������Z,��lm�����z�����p�u{Y֡�:�+��b�*�{>*!�;��>m��
K��e���d�W}�7k
�z�v�_�~<1���:�!�l�)h�
�>���9�$��k��:�պ�hy��lV��;�l�e�m�-gE�ʺ�(h�9�F}���˳V
M��U�!��k��d!����Q���E�t~�o��@&�(��V��g/����e�w�2�{薉D?�g�����@���/�+|��1�b!C\Wi�J�d�q@�+KIz�����ιgŕ�"���$O���3,������j�0t��_���j�jl�V����k5��ޠ��d��,�џ���
6��p��]tp���i���%W��V�;�kh7��{�
ڄ�{���a�I�I�T6���U[B���K8R��L��M��i'�tl5��ŏ�����D�á��E�t`U���F+غν�WYC��Gul�4����1)����\���"�ge�|�>N�ĠX9]�;���Y(jM�34�}�
��g�=�Q�wP��J��V��[��`0Cc�P]�����[��SOŽ4TWD�w�ӒKn���t#��K�z����� �WY�Ñ��;���;$;���Z��R��B��;Ҕ=7��(�PbY<^�o:�2�.P:������"V3eYb�lJ\�������x�$�e�@\GI0���"��s�S r#� ���Po��4&��ȫ�j����q��{�<,VXPiGqZ�4Z�M@m���5���U�ž[1^�]�)W�����_�^�56�n���)��NXK��/
������;�r��b�?����]V�5�l�`
tt�n}�7�"\�<[WkL	����Nrݕ;������֊�u3�VdWc�k��|�`��t�9�ej�d5�
��X�aa�([�݅K��N	uuoVWr����؈窭�4�"�����0?%p	?նpg��z�(̑*x2Z��R�|�Y��v3���2��38���3�)+#� �`}�o��؝#f�~���<<�]z�Y�u[��ݶ�oZ������Z��(��,�lCF�g�P��K�^�It+ F̹�c��AyW�K��(�'�֌�,��I|�7¡/�Mg�2�!�� ��N�[T��T�U����X�n5e��`�׸��h=e�E���^��0	���(��E�s���E�Lyf�T7�Ȏ!o�x�v�������dN�����D"tQ���ak62���<W�VT]A4o�6]��(��5���{�{y��z����2aW�z��6݋��OIA��k��ݮ��Q�f'�صXu�;�ںMe
`���Z��m3��+[B�Y�/Xs�7���9��L]<�"?h4Z���ҹ&��7������
�b�9��,�.��3����
���W�ɒ�"��O�К|��x�o&l)��=G^L�ֱ ��т���ۃ`���l�9��.Ml�WN�S���
� �-�^Ȅ�-�x�e��-*,`V�c~��P�Oqn�WsQ��讂�5�_Z"?0�_ǣZ�Z+��!���:;B�U�y`Q�����L?<�ȫ�) }������4)T9���.�Q0-�Y��^������(�d��d
ywX����`'�Z���l��A!�5U*�"`���*�Q5K�屩*QP��ܻ9L;y|L-�����H}������)��<%zS�������g�n���W��u��v[a�X>��D���Qa-��%7"�Ú�=�{�"��XRb�K&0i���.ęb"'�RTf�?'ӷ�F[�!s�T#�,@묙S��e0�_���^�5�"�C�n��1瞼c[���F��H��t���I���s��^�w�N�€�0� M���]	�1����ؔY�6���8bJ�~���qX�ڕ�z9e�9\⣌`��3�H�"$�x&��z�um[��F�	`e.f�5$�?�+
�+}j8�(K���M�^��WYc������sYp���9`�{��{}�'��
RH���-`�h��n��5r����$���W��!����Ug~)�>V/$�c��6��tU���h8X<*ŮW�lj�,���`[��.��e׵�a�Np>�x�&�7O�Jh��*��?w;�������8��������9��{o�1�k6J\CO��,T	�`:�R�E
���_��	:5��'g2��-�fI����w����/�����l]kS��MB*���!	$��X������惷�����^ݽ;��q樃(ѽ��z���W9�H�������Ѯ�����N�f����6�����P�/�
����+7��{�v���r8��
�O1#)O�aB�j�9���� �+t��V�e=aa��UY�$�䵞���˳UKh�aSBgi;�^,�S+��(�niphI���6P))�?�^DV�sU�Fk�y[Q�r.�q.�4�jGy��U+5���E�C���'�P���Oz��M�l6�s�B)����E!�?�6~6y�X��+���V\U��oN�
���e�'GO`M�5M��r:.���?�
ъh�V<��V�����R<���Y�sG���?L�.0`̄�fj��K��?���Ϟ�����a���:���]#�"<�Õ��L�ge!�^��PT�.?�?�k5����XU�KU�>�5�S�/j�֮(���}�!��+����.P��W55�u�EV�j0}��U��) ��2-۝��G�wֲ�YZ�*�1�����?~[Y���1��I�0:|��!�{��|�ȣ~c�b*b��y�ߔ֐[��W�@��o-ejE&��	��,�P��I՚�+ҳ,�5���B�q
-1o�K/�R�޸��
)���X^�&T���S}�����/���m�"�Ր�o]��4u&׷�E����0�$v��DK �Բ�p-�0rj�8�«ʜw�I$��!�eѬ&�P<u`��L��@�rW��ev�tr\Z�A������d�^sb�bE#i;B�1�7TtSNé�<�t���c��͌�jf�B��$xh��U���f	i�DZ� �A]!���X�~-������z��z�fgYw����z���3������q���/�p��q5d��RfX+��MVR~M��,���?]}~Nh�.͆sY�o8�䫌�;_��g���e�Z�z�:샸@O�!�&Y��#�z�L+$9��� kZM+�e��Fy���!�?g��ì+y�<K5�F�Q�9\��&7`)c@���[WJdh��6�eR��
�]Ps;r>U	��Xb��-����`�l�+�VEYZ�l�VѾ;L�S1�k	m�J9��hS�Y˜p���4�$�a��_��vC
􋘐-�h�R��~Z��N��sj�,���T��4�rQ��5���=�<ײy���D0�s#�p�S��;�u:F��;�y[���b�W��!
C�	�b�؟����� [�9�{{�Ƽ��	F��9w�+�A��Z�d8���x�~�7Kp��F��B,Z������Z���x��g�d�v�L*5� �ō!��4K�L��n����h�o.	�“e�T�ˮf�]��ѣ���K�#���� \ތ���fi-��MD�I#5zB�.S�5>]�/�XDs8b��
�2Ph���,��~(��βy�Y�Xa�h�0���ȓ��Dx+#�ۛy�)��߄��J�py7\��{s���ٸ���qu�����9R�iD,X��-z����)�M�irkC���Q��fΰ��4O�^g�xkE�|�搭Cjf�аĊz�4��8e�;�R-���q����r�0���M%��n��ə���)�TX8j��ӊ���1���+;��S`#�,
(����(��)���/�`�	��K��@(�KD�%/N45<�BuE%�+UX��1�@	[5�yG��l�XX�IN������&�qk��費�}|�Y���6����<6���*��ͺ�횊�#u��w�g*k&6Ԣ���PW�Cx�P�E�$ϒ±�3`iH+A׻�{��Rժ����3TLzݨsO�QZ�zl����zJ%/�'��n�o��qDDހX?�����^���z�E�Q�#�����1<�k+�~N�ş���,̹���ix�A~p�RN�x������[N^ׄ{g5Ǥ.��,\$���~}����^�D�P���K]�bj�|�Z���z��̏- ,sT+�s���F�kbv�X0�b��ys�a� �]���{�+�vi�F��L��G�x��9�Z�
`�����v�M~�o�d~��YK�$��B�W��c+Y4��=W��eHA����me�������L
%�r�H��J�ظ
��E�
p�t'�c=�Bg3�tt/�p�Y@��������n�@p04|dž��+F�����0+��[�c��m��E���#~L}'<�����%��S�v�l�=nF{���i4����v��?$�z���5TJt��2�R�	Zd�pm���R�S�RV
�����QUя^���9$���Sw�5�^�BtOM�W��߽=IN��4��ֽͺ�ߐ�c����̃�|f����kg�[�ѥ�$���P_���>J���dt���4�RH��������������4���<�rѶh0���\�ކ��H���� OSd�k���]�mD��԰��M�_�f��v�UX���zrg�jT07>,��J
75���� &u�Չ�l$X��ћ�Z
���xU������z��ʐ��~=���U-h�v����6��Bz%fP�@Գ��l�1_F��th{����g��*p�0��:k�[o�3F�-a��%�,�����bSW��-�ߔ\�\�*����ќk�Hu����l͝*@�ցt��X2{��"Ģ�YMO���R4��Q�J���PdQ��;�!篪DZ�~|'��o���IXA�ķ8
�d8�����d��;��4�jY9�G<YZsѦ���{E[ӗ��-� X���`4�	pr��VB�A��L��dS[��E��-ou�ߐ��f�w�����m�41`�hp��7�q��骒�X{Y�m��e-�>\).$G�8-w�'Yii�t/�$��bb/�;ac�&�K!LV�������4l,�RO�B_hF5d��ZDZ��`
pE���PP�
Hu��4>U��&�����'��{Hi�W�$�~8���?����>���)+�ƕ�v�z}9�W����G.�.��z��
��w���xt[��T἟���#���x5��3ӝj�,�f7q?��'%r�{Ro��mU3�ҥ׎�Y��1���%�ތL��C�u��崴)�#{O?n=�0˔��VR#Bi�F�V��+a����P���y��>P�O6�zӷ�e*Sy������B�f��gM��r���q��T���	pb`�
m
�\�	��)%�a�DQs����<�-�{z��ilPuX��,-&h"Ʉ�$Q�Z5%7��f�/�ɤ]��{�U�,��D0��Tɕ�v�%�De��
��I���0C@T>��Vh4��\Z���bR���/i��
V�
�nɩE*�J���.eU7���R����
�y^�n,{�''j����a\]aD{���!�Y={ו8Ș��u��j¡&�"�B�H���r4�Z����
o�|�'�8܇Rk;�f��:^�6�ƒ�VgC��Y�a��m�6{¼V�?n�;�����H6{I�I���l@�,R��G.����~x��Ĭ��/��GY���ښ�X��|fj�!��p;k �b0)(�����nI�=N-�'@�B�VK���s���Y�C����n6�L移~j��$�����3ܘ�m;e.������f��uB��G���a�WU7��O���<�T9Y8��;Q
�����	S�i��P��L�"���Z�K]Y8$zU�/��J������>���B��GANƌ��6��Zw�\�����Ծ���j�<"`�]�@��}�T��i\#�r���M�JSĻ`P��HY����;�:�ԲM�S!M�\`�"HW�Ԍ��ȃ]9\qvfփ��%�X�A����G�T�σ.�>���1��tg���=���]���^��P�k�^Mzz��CC��ǭ��M�ӓ��GuK�W2�^,m�r�U.ȢCy�������gx�~ىց��[��ye�R��+Y�����m����>�kX:�c�nw���H�thX/
�>��h7<.�҂W''�W1�E�J���z����x/��=|1�Jr'b;�����В;�۳�5.��>RT�V�F�Z�h�1�2��郏:�;��X
���[I݋�oE�.�5΍z���
r�h�_}%W��ܙ�_
]��Ţdr���ۢ�,�g���(R�U2�"[�Lu˕�}U��< /��]�z;�wiuD`h�����L*���%v���
�φ`�WK���Hā�9�'�+��6�0��e#�]"�aI��|8Z݊�?p^)g9����@��4N@�u��2a��'DyG/���B6P>^d;rߏ���zg�_�����x��z�,��}B��ٿ�X��A
�gi#u�2��m��C��'�a}x��nG��ux�Bڲ�/�w:���E]��hx>A���_�ON*������Td�]��ܬ�_��+O/6�]�~f�i�=�W�hG`�z�h�C�5�X��EI��s?c�6�;�4�8`����4N��X���4�G�L��W����"��#z�A|�5j�u�E�ι���Su��-#���={M�*T�W�w�]����'�{m�q�����fsaz$"CQ�߽z�b.�'R��Cc/pU���ϔf�fycW+��i|{�����!�jP�Q�چ�i��'~��j�+wF�ڳ�-W��o>��T(�]v+��,��[���&�O��	��h��C���Ŀ��٣�E��tē�oZ�7c*ּUWY����ڝH���N#6�
���4=Yf$�q�w�r��i�����4J���ž
��}Gq�O�ɴd)UP2�o�f��Q0�/�oX�|���C�[*+�œh5��'��B�#I<dI�Q�k1���4�6���0U�KI��ҷ�����:�Mck��6I魠���z��"��E�ai�P����rA�&e��)p��^�d�F�Cq��HjY�r`nj}L���6����0,{'DQ��bYs�o`Q�P���[u�^:����t��������M
�n%�����e��Ype��fAS�8��1ڇN��Ȯ&H4�����%�%kmh��~�`MOЮ�U��'[\�I�,h�+[~wxzq����q����v����>���N�f/~1Ȭ�r�m��`Q{1�����,�G����^���p�a">�p������+�'Ѱ�*�=��עYa�:b�֭�������s�j��Nl�W�/���T-77*�#ӵ�X2y='M�e�R�Sc� �
����Z Gf}zus�6}���FB^����/ܩw���q�Vy��YQ�]s���f�%�8�s����,���}!.I~^PMǚ�X�|�M�zӪ}s�y}��Bi?���06�!vaK���%��0v�i��d6��e�)R�H�
�)��t]β+��0!Ty�'d#(��kܽp���p\��\m_�y�!l�5��eNveXu���GȀ+��b��Qw-nk�*�V:�XGUGɯ�����i�s�2����=��ek'-�B֧�m�y������n`�5������^�B�xp��M�yXHpK a�u_�=~�)�:�t����W��A������8�Xy�O&�d�L����]ո܊s�������Ya�R����;Rm�e>�Gz��"H�t0��X�辦3����LQ����i*���$�[�^΁b^�e��H��	-]�m"�4���y$`�e�
��D�c��5��K�T�W������EwP�[j��·�~�Ck����!S_.�3Ȱ�Y�>O�#ͷ}v�q��c�V{s`7�����z)��CX�i�zrje��7�9�N�H
��+�b���\9�r��ȠNѯ����u�$�j��ؽ�
V!e�]^����}*�X�4﹜�5����Z/[C�O9�X��t�r��B[R7j�	�
��˔~��j�|��]!�bB��d���8\.��{���������S�w]�T��tg5K�[޾nܟu�;V{d�J�(M	#9=O�tA�G#w7!a�~V�.g�R�*dH���fɊ���q����)���H�*�s��k]�A���ՠQ�d�{��B�H5/ꌴ�֗��.\c
�}ZY}����mf�&���:�%���8�Pk�ʋ�8j�a+�]�%C�����N���
k���Q����j�u{m��7��4��s�Bg
�1��燗�e��~�A�����������z�[@D	�X�,u��v��2���?�Į�k��+`aaxDwU(X�b��L�ھ�4}��t�n�$@���<c//�V/pt�@x����Hyn�EZ��:�����am_�>+�2�eB�"$Y繥bM�{�����m��g�u
�27�u9�9���mJ�Y�z���,����[i�_wϺ�'{,�oJ?��u�Zrc��3h^A�;�p8cnHi;�d�{������J��K�M�)h�*�>C�$�w��j��Z�0.�(&&�:Y���~�VN��q�=*�+�
cA�X�īZ9�J�O�I�cɀap�C�w��`��<:��^v��zd��_�a�]�;u���J��"Zm���o��3�@!�W��Ī\�r��
L��]BkG��B.�`�������t�XxW+`�փ����3�{Nr	U�+!��DŽE.`���E�X��\��
��i�<���p��;o�gͼy�� {M�������f����Z�0I��4Mw6.�{A����8R�8�a9X9ɺ���x#K)�v�o3�z�����'��I�cE����x�X'7w�!�myJ:-��5'�����H�"�E���&J�!F����>�o���L��,R:$����R���H2eHӪ�q��{�F�2�Jʊ�6ds�u#�\^0��޸Z��7
:g���z�� e��D�ۜEW��2���u���g��)V���\�a�Ұ8�db�L�,'��M���W7��u�%Q��g�9�́�+.��x'x��+4�C_�}���	�� �j��Bw]y��a5a��wx�;�����U�.���v��{g��E���B�
��U�"\�bSh3!�,'Yzr4�g2���)�
_�M�0h�
��h�Zc�"#<��П�ݪ�MĜ
K���,�E�zu�f�FkӰܜ!p���Y	Y�!�I��ϊk���lYE���Xއ}4Bđ��έ/_���`�0^�G���I���/�.���f�A����J��/�jW��X���6�j�Y��{��Lμc.��8jW��Mƙlf�}��� ��1j�@�Z=?�r1�Ae�?���-���t����E�Q��E[���_�&�Ir��=���V*c2�����*�*V�T�
�ϵH{�&�~����w�x��0j<��+�' �nV����P�/F���Ws�N-�b[�"g?0��LX���:�A�.�ǒy�K��M���������v%c/_��vk)�ͦ�����2���%X@J��q02���V�~�#���Y~�U$XW�������ZQ�+���=:�t6΅΋�;�ַ��������`l�=da-T�G���5dS��9P�/'wC��4x���l��8�0��yמ=���#^��	�θ;\9}���d�f3��u
�iܹ\�j�2�
��	LX�
`�J�8�	
�(V�*�
��m���+�v�꫐8��5D�&j���֎a=`��'�#Ǟ�zu��	T����r#�ͧ��7v���֓��i۾���壩�b8Ⱥ�h�V�rW��Y��'��6����4=.ތ͂\��м:O;�����J������f,Zi~��ĕW�B����8h�A���ka}�x��J�+l1�_�`�++�<�et>��PrW��$�ek7��LȮbv�#E�~�ꧦU1��x��{���8y�O������fD�t���i
o��^t�,k���
Y�i�RĺC� �n��鄵��]��7�eqš�ԁp�����Y��az>T������.ZT���P�s������	x�IɎX1��\��d9n�*R(ɢ�A6B
Ig���CS)�.3)i�ur�IaN� P��9:�6�g8�Y�&+����%��"tŶ�&K�w�rW�0���6r���>��F�7�~2�y̵�]�߳Q��[�\�h%Ȼg�(��8U*Q����R�j6�Ev�.]��O���"�����ή�Փ�[�����I����u���9t�CB�Jm�?�W�Ԟa�bK/X}��tuW�Ww_[��v" cr�x�C��T:f�����X�m��7'�JQ�ބ��X���T��x��&�LS.{��DŽUh�q��~������4�W��3��0�	k�����2de��Z�5ȡ��.#��8,��ڜ%�u�����݂a���+tT�m0����+I,���_I�j�X��a��Hg���T]��C�CG���Ⱥ�n�]ZS;t���*c@�A�a/)��f|8$ƌ�k�sP�$�F߾u�
��k��C�R��ir�T��0B�
/WG�n�߷�j�����yiF�`�T�Z�ӆ>q�mV�����h��j_���yV���YR�s/
���yL��2�Bo�Bl%�$�,�a��c*��$Hk�{v
�Ij@���~�܂�Y����""Iu�R=��D]��z[�+�o�ȅI��}8M��b����JT��JUo0���uu'0ӕ�~�Jȩ��]JR�ix贋NX�/X�:ͼj�����Q d�k��b����ŋ��Rɬ<eMy)<����)��NC�fԒ?�c�C
0+Yn�u�zU2�Ij���:3X����,�S8cq��5$�E!��'��h*��(��;Ȭ�R��)_�P��%e�g/�aѫrw�e�b
೜�O�$�ư�iچz
��[�mi�����q݆W�T��x���Q�^��y����;����]�|�jڶH�2�����`eIգ�16�X<,���p�n�:Z�勠P�POc�(/�QӼ�@�Ū�F�1�7��?E)0���	WM�U��.�;�Z5��E��W��~7s�Z�


�(bpt�;�����yoËɰ(T���Y���h�H��4s;ۀ�?|�����+!��e8>x@a݃,;P��3����]����N�{aY;#a~/�[m���%'�����X��,���4�,�(��
Im�?T1Ks�F�������Y{}��X����(�Οu�
�P51� ����øm�<�#��֬�ȣ_�OQ^z�"����ըX߰��ӊFި���j�Jה��0H��ʶ\�X��E�b����:�2�Z����4
��V�	-�%;ȫA���>���27��O�V�T���U
�����Q,ΉZv�*-��Y�sFv��Y)q7<��O����l��,!��5�j6{�ۄ�i���2h.��&�3d���fZ�"��\�t�,�1�_�f��Q����i
�a�,�Ap*�W`�M��Q�\Q�/:`	o�H16�&�O��`8`���i�MsfR��.�md7<��.�FW��׏
Άp�B�+ԗ�oB;��p�$V�
��Jt�-�{��6�5�k�2E/�W>�����ȯ)�"�}���X'���f�&g�{��>[�ML0�%:V^�BA,�v��'���{QTU�d�E����ilԒ�2�8~0qx���)���8��`�k���R
�&�o�J�q��G!�],Ǎ�I(�#Qjã�w�q�}��k���F�����$�����R�r��c�O�t�	��J
+������C����ٵid��F�5b��	ͥ�+���m�v�H��	������i&�W���F��m"f�f绂lẘv�3��x"T���`LZ��g��f_��Hu��@g�̣��J+��F�{����Q��7�=�4����x��$��,]���Tue%+�"�"pF�,f���qD�_4ޛށ�h���m?gm�|Y���[�cn�YG�a��o�2��ɭ��*
4^��BRZ� ֒�vkh����<C��F2�c�<���/Y�u�.>o��a�a^+��=4�^r���l8��"HY�S��w>�*��Fs�
[,���az��鰲�.;����>��88�U�lg��e+�VW���{/�@ ֥����hM�1�j���X�ߜ�w���s��nE��IߍRP�jAо�lum�$�(������՟�矠�n����C��O�+Ke�\�`�A��;|��P�ۿȔ��}�,֛}q���hd��hc�E��܁��ņ��J�Y�/WʺYa(�a�Ή6b���]g��x�o�W$�۔�RM��t�j<���kB�4uEk_�o����M�f�����v��l��t���:r5ƒ�J��>�^^���0%�E�/�pM�S��ՠ�!��35�W=�	���5�.�)���惑M�u�oጻ�'� T����	Y�˜\�dS(3X��D`]@����1�dۖ��^T1ȡ�VÚ�"�p��=d1�Q����Qq�Hd����5�T�쉎�PFI���|^;ٮ���B`�=�_��m�S�v��P[�	��磠�>P,��s�D�׬(��j�Mj?��`��)E�of�&��
>^I��hQ�����]�&��y6�>yqH��u�JQc���j�΋ p�EwB���������Y��"��W5�)�I�qt������fQ8�E���=�
`�����vg�c	-i�ľ�.�����O(U�(݉A�\�YV��E�sXt�$��'ȯK̺=�.�8x�f���S�*��U,�N
_F�v*�H��	
��p���q/���?�+z���4�R_Puߴ~�l�����E3zzr�9S!�"�Թ�ڥ�������*wy�.��fK�p��C���0��Nl=�/;=������0K� hw��*��A�~��o't�X��Ce4+v�>.��5��n/���eW�7�O��TT�*f��SP�5��?<t���,^��@2��pe��4_m�Ut��U��>�=1bq�*�ƴ�C�~�X��!�z��Jd����������qNZk�ޛ�Pj�WJ�GmEE1��H$3Ʉ��d���̷�w��M}<0�p8���9�y�J� ��*����L~!˄�/�C��cmL������$ZG&��n��icQ_� Ka՘kCZ(/�<�U>9�HJ���<H�Q
EKh4��C��c#@ŶTy�A�Ve�p�_�Y.X�Nn���ML�о�\N}^^�R��҃�uy�!^p�G
=���\�κ�{��f���H�Ŏ]ڵN9e�ײ�1\���d�K	4xe���ldB�4S-�)M�&�V���t����m���_ Ju�@>\Oɿ��]��ꦨM�������r��;�a�
���4�[�y�X�m^��+�q1��(A��'1�%B�F��Ʒ��D/�0X��z�N�J�Ϧ�aC���+�W�d5�jX�
]���	'������	b�VT$
;�����I��2���ЅP+vX^f��pq�{�,$�Ӓ�G_4���Y9��e6�}��Y>X�%�=7M�2}�`�Z��.����X3MM,+m0�-F���*�bb�3'Қ8��߅��džփ����{����'�{e��*ˇ�kb�a`�)�;-��c*W:���
�X���-������/V�N��y*\OV��Q�5�2�Az�6E�Ҍ�ۻ�–S��8�K�{#%^KǛ6���;�DM2��JIJ�56H[iBԥ�'}:��^;"�����i�9x�Ϲ�Sz��c}�V߿��]��\т��8�2u��Q2|np�i�����޵ڙD�k�+D��&�Kl����۰�o>t<k�
�}��7���
&��`��枡j����l�5�!�Dg
w>��(�WX�&Xv$�I��}m��(!�[5�kk��h�Ƞ�

^=�#|��[�!r0ߍ�w$��G�η�xY�4�]*C��d�p�z6u�`9���2_�$�?`
���E��՘]I#z$�eÿ�v쬡$�Z�E���W�G�l���a#���Km��,�ݴ7U�*o��s���\"��
�A#	�A|���M?������w�8RO�–�G�N���.��"�+UϺd�|���;�beg�ڠ�v���{����R���װ���뱧�bycn]�/�O8�f"T=��8����'l��E��b��N/ئ���?����]��v����4Z���ĭ6�]�%�ڍK�[YtA8H���M��hm�Ȕ��*�^N9kި*�q��iW��՞�K�l?
y�D�rtS��ީ�ED�5����~;\
x�+^����,�E�	�V,J}�*&P���.��*p���eX)]��q%x�b[=I����s�%"kK�54www��E>\N�ΣC2�ȫ k=��!��/%&� ��sD�C�i��W�xVؖ�F�2R�W���]�+�aZ!�፴��Q-��@tK�xL���
�(��1�}SG�'{���t᯿8���>�����mŭ�����~��M�;U.S����{��[��D!�U����Nj�H
�s�F��-��ף���x�O�H¢�Q����i�\��-^�l7<�&��+j7�Yj�M4�5a<\F�\��V��p���;��'����3����W7�l��uƍ��6a�ύ��7Ûy�x�승^F���Nz��6�Q�X���^�s�2�*ߗ�]Sɤ��pW��̪�2�x��L� ���c�����+k1w�bs9]6L��$kp+���TAy(�$P��ƫo�oUJ�����*]���;���G;��P7���q��Xc��1��_�+ka��c��8i1��c���5N�ܬ����,0�s�S����5 2uc�c�g	�q~i�YWJQ�=-�t��0S��W�8�<�6j�ɰ���MI~�]f�"��@η�akmrE囨
���n�}�(��7!;#dX�N#���e�t���/���St$����|��dY�!�i7���a������2mOgv��3�ڪ�7�sN�6�W�z�#G�N8e��+�RM��Z�+��	�Q7�.\�O�]��E��j��M6�xU�ˊ2�eO�Y\&y���l�u^\aN{'y�^�C�=Ѝ8��,�7�h.�ଳS^l��>�"�J;`a�~�k�Mb`�,ZgY<���a�mJx^6�W���&+��'������1�����~G�gxɬ����<�u�%I1�-��w[��cV�4�d������$N��f��a	��Æx�ax�#����:�C剡k^	���6����:F�?fAH��V���f����hi���Êvp���Xp$���#��z�ó/�xD�U��5�nv��n_�*���b6�u�@w�^ -�bA��TM��4K�H'��7�%C���2[��p�7�ΏX����Ok���bYr�~�����gk�w��X�:���	e5NB�pHš���y�g�G=��j�,%C���X6➍�ՠt�9�g�&��(�&�5��!`]0䁖	����ڭ��[���b]��Ŗ$&zCz9u	]�.P����kK�n�˥��yÍ.fU�6okWg��r\��X�o�ʚY�`.���J�Ҵ��ČL��>�QC��c݃m�|:��9-��a	�U��48Ԟw�?1<�g�tRn�xH��ͳSZ�۫�&>���t��cZ�˥�/[�>���#��";��>'��'m��27G��6U�K�y��C����EC���w�.��T��5���Q��^�O9@����s��������ܦQ	;�:A��F��1�����6/u�/܂I}�cMc8H��¹	�o�c�'��pÚ���mVQ9��sv�C8up��� -_��8iPn������>�g`��pX��-<w�x|9�)I�/���d�q�o�1\�����xga���Րd���4�c-8•��v�੥M+#���Y��C��<�;C��RXV��Þ{&bG��r5�KA�igIC��T���;X�R�1�Ȓ"X�L��/��aV���vd����_zSan<vؕ��Vs��ձT�WB|R1`�F��E��E��W�F�tm�e���df-��S�µT��s�R�)��lЖ�*�*v_��
5Y�n*�l�I[':��6�Ŏ�]��

�򍒕��J�=��J"���m�_�N'8���=�]`��*��^��1�nN�ɠ<fe:���6<��t>��������fP���\]�r��B�^�e1;�Ȉ�G�WX�"ETI%��IU��z�,:�q̦N�3g��\sV:���n���>e�>��[p��MtÌ됧á�p�a�2���c[���ӹ���r�/��̂?�^^�c�6��P{���yv��IǴ���!x��G�����2����a��M��JNz�-7�(7".�$`�SP��F�[1,@1��sj��ʂ쿩�F����`u
��Ep������ČN�����
��u~�2V���5?��zQ��j�oN�+�ήq��T��4K��mN��M[wKou�����Q�j��U�@�5U�͙d�4b�Bvf�Y.kBqÀ5F�5!Jƹ�W����"Z����U"�*ϲ�R���ͪ$���4�K�}Gg��R�����Jb���:Z�Fe�t��W�\���I����ԝ4?jڼ�.��1�b��cK��	�躚��rZ��J�@ho=�*$UՒ	˺�+�Q/��uμ����U��{�ѧ��%��
�^�a6�)�Ƨԕڀd_z��^VCrP���d,��Z�%���R�j�<�]?>��qs	�Ek��m����c�e�5HX��}
���(�І�\�F9���h����s�`����{I}�#=r�ʍ��q�(��3/0"�����Y�P��5Vs	�E[�2�؞,~P_	���t�d7N_!r�ы�X,,ŀ�`��q<�N�'��S���ԟ�Nl,�A<;�[�fX,���2R	y��2�*�G���w^�%��+���G�T���'QI��k^�g^��QY��Y����ƀ5c��
��;}�h%j�(*�d�ތ͠��r�[V��5�>��� K�d�t�;+�,�[��X�%��J}�Dh$*���7(�ĬWٸ���C!���g5t�F��tO��LK�����;A�?˾A����Y}0+S?���C��Rs|F�cxH����A~���jK���P�W3{�U��-dS��X��I��a}��rZM�7#BB��)����k4��2@��G���T��}r�P����t�DKڛ5eK��Ȗ�%���:-/|i^Ɓ��.�����Zmw��t�R��O����L�-������f�1`u��xμ��mg�"�K�y�B@���Tk2INn^.��b���o)[b�/Xkbu�hy��Z��91���<??cϋ.�.�5I��k���`X�^V�Y�,��,[�Gt�3`�M�ڻw�u=3`a+�Kqe�;Y�Yu�ua��1���"�XA��e�1���a��y�`X�-1�t6�F�eEo��q�������*�*~Wk+t�,��g*3��w܊c��"�7��"Y����I��߽��𙪵ZR�o��*�sw�b�V�j�J��]5m("�Jj��4�-Y���(X�*Z���{�Q�|�h�,5��8ǬL���U��#T��e�����[�Ѓ�s�b�L
�>���m�,��Oօ���V=UE�J��u���V�>B�������lO��E>�zT�GG����Chz2ʃCg��,��䂵.7<�e�("9�/�?�ҷ7A�k?�Q����x�[6�
|*)�D��l�aa�� �|a�2`���X�n����x���[a��K�g��r97����5���R���o�<�T9���g:�;�X�9������Q�5�!��x��(��s	,��I"��ZY,�!���������V�y�q…BP|Jlg�����G�9.G��P������?{�-��k�o�
�/V��QI3�ל/�x���7p�6�>���j+�w��hҥ�T��A�,-���H]]��Wv`�{�	g�[ՙ��L���XG尦Cn�zW�&��Ki��ډBʺ������[G#6��Y��#]y��Ni.h�
���0�6�r��a�^�M.��U��[s2���Ur���+>!L ]a�����F��:��jў�ʫ��I�����\�b=l�Ua��-�9���)T���Z��@��ub�.�Ų��ƌ�q7zsF8ȅ��~��+c{1w�0��򏮰Kk��K���)�[��t
�5�&����_|o�f���d2�Rkr	/	(����t��6R��5����U�c�f�BZ=u���!+��k�g���C�v�0������4Gi�᚞�E�8$�K��[f�fN�qM^���Ol%|9d~�9�NV�Z�)�f�,
��X&{��ͥ)������&e��E��u�c��SZf4n���Y�d�K;-�Z�^x��<K�A�Ter�SmvZ{��`�Q"Xvw��.��L*�⵮�H��̧kHJgʒ�j�oY��
��YfeZ`X�:�l]�;���LkXм�>���q��^�X���`[�EK��{q`��G�h��P�2��^hn��A�$Y��0P�w�t���J��eI��A�,c�PV��hD��:K���rS�%���"U�&�?��K+�|����+�w��.3�l�Csm�v}5��t��?(�Ěv-��eѮ�C_S^ˬ�K6�յ�d%�)�}]�"׌:�{U���ԩWڂ:&dkW�
���<�1�E(��%��r�r�U� S�(B#�6�
���#=��
ΚU����%�E��Ha���h�{��{s;g�����GK��ǀE�����̀Av_��p�TX:GC��OZx�����3Y�y�n��y<����􅛔q��a�P�B��Z/:�����9��ESOo>�-�܆��t��
����_q4����w;��ۆ��Zt�Kݺ,�0;������9+�3�����qm*�-F�]�m�Ű���ٺ֞��-����]
�R(Z� }�c�����1^=�5������1�kU+A�A�G�k<�!jW���BQ-�^���gQ�g��<?�̦w�(֧�S�w�2���ZLX�f�yfg8�[O�Qˉ�K'wj8�^�sgh����L?�3�a�鵦�k7�2�W)8u�ZNeƂ���C�`�:�q�	�R5�~���i���n/,�5ƫ�����^T�����W��z��S*OLJ���
m�;_
?��~��Pu/6�eF�|��<h��[;V�M��鶿�&Zw�B�'�ʣd���k\cա����.{�<�L�A��}�%�����k�L��U�M��@�4���7�%��
	}�Y]��|��&U��4�C�B�^Ϻs�]!�;�:���H\@���	X)�]{�›>֏������'����4��ΰ
NP2�8�1VF��S��^J@�G��VsI��\=�G�5�b�"�aw�W���]��@�r��j"g��y ?ɝ��^.�ڝMc�j��|3W�Lj#`����3Ԥ1�B3aa�,�vX"��P����ҹ3�aXx<F�B�_�Po��hcq3��`�p�~3mQ~&��%Oi/�k�&��K�<���ޯ�����Ρ�a��KG�tl�@��oZ���U�YZp��]����O+��~=u�jg���f��e[��:u*0�Se�ZlX��3uUMU��U����L�Tۊ���;�lY�(Zox��S
��(�r��I%���,�Yo��W���8X4e���U{�^��4�����m�ho��ϼB�l>�~���4�����c��}lM�K�EW��dbx����04f4���v��M�{�b�
Ĭ=������A|J��#"V�9g�����/;����4X�����\�����'԰�T�=7�fɌ��ب�/E]"ל��,g��}ndL��`�mm�,c���ؼ�,����dݓ���'
7t�
#�}��
�<�|)d�
��u�f��%�Jk=�����,�G��c�9����E�u�5���^C��	��w�	�l�¸��5~2��+�W�׷��:"���y����9 q���~p�+D�j���
�d�e�`l+<�v�!�&�XVp]����?�38]U8�ݕ\{(V7�ڨu�1��Le��u+�up�=��r�ݯ�V���Ľgo`2?�p��w��)=���U���֡ʕ	��nj���^ʎ�������#a���zZH����և:��f�a��f�n���,���Px���Vz^@�cu8;��
/�L#}��gʃ�V�l0��d�E�8��ng-�G�����Yy8�~��)$�e0=�����t���4|��;��a�t��1`���z�4�p-ʰw���R8�ps:�.�j��g©��T��U�#�a�c���
V/$�^?�1���f)l��0Eh��p���b�BHM�U(��N���T�&�7r�զj����jw���^�9/�c�/���j�].�zt�Fo���r�~�=^�w%�^_�U�����]�tU����Ƿ:4��p�s"E�[�{������V�@��8u��~:��]*$�L<�J�@
�`+G�i$10RT���Z�E�q���q�h�۽<*T�����Ԟ�������9�����*pY���][�D���=^��h>o�J93'�ܻ-\^��g����d�1B})
y�3��[�U�Rơ��+Md�>���@+O,�)8az��j3$`�b��ya�cmĕ�,,[
u�/mQ�F5"k0���rѹ����1�|�v�Ol�P�*bH>Et$��l�J��S]�J�*�<���
�>�en[_�7628;_W�g�M���=]�*[��|hydq޶��uXހ`U����@��*!#��Iמ+�T��{d����4C�y��re�ۣ��[�#�"�V��Pu\�4G�<�
��"����W�zs�(�S�ΰ�M2T�4�Ab�QuC�J�ZI�����=u��aW��Jo�"�Ji�S
xd{�8�q(<�p��L�W�<j��"E�k��x��_n����&�Wƣ���r
J�q�'T=vá-	-�.[V���kH�JH"��W�����T�pv��ڎ��Qe��O�*P����Ne��]�\<0)������/
W����S�ǹD�};�Le	�u}{�5.�C
����d��	��ī*Ǒ`Z#���
��:%�Z:���iU�H(��T�� �&�^[��.�ְ��v�{%�Uw��=���U
p����$E���A,{���$�)rg�=7N�&�ș:?,�}�p��TQG���d��)�ЁC�ͥ���
V���Yuʌɍ�����t�%�$Fx<ф+�1���v���hM��Ƭ��aWK�A�)u~�[�+[M�XG��� p�QG�Jkp�<���@�(��V�:h��V�bE��7����Hs��ಢ���R�Y���)��_1��
��lױ�
��3�t�����n����VQ��d�	9��J��V���S��B�sG�E��QvTๆ��֒�����Z�|��í�xhi��x<.�h\��Y���=@Kn�4��E'-��ځ�><q��5�������u0;A�K��:�_�<���M	j�p��C���Zu����u�9���7T{|9���Z[[=;D�Vu�|�A�����(�`��&�3�#����+����^5��N��2�ec�m��k�������G+���du^�
����y+9�s��L۠d����bb��T���,hi�S�%|}d{%�S��U�
x]rzy��k]H�o��h4�[G��(e,p��;pJ��ظ���l�2f
���Si�ҙI�R�c5��b稉�u��"�]L�5��0�zmt�\3�7�{��f<=�b� ���P�w��*Ӓ�r��!o���0�~�b�:�C�w����Uɳ�u�E��|�ᐕzW�;�b�)k������zR����IǾ@�����*v,�{V�:t	��jo=	��I�/u�m u�SGэ�����/�D���^��FD�w�~+=���Wػ�E��2-�_ �a<�2ѾR�)��|�}|y>�8��%�V�%2-}�B��A�a�WE
n��O��:$�/�?�$�Ώo��p��+1V�d�BA�H�\��߶��Ƈ.|do3�$&�v`���xj��"J�zϓA�g�k!�
�?��62Ik��q�D��e�z�.,V?������}=2���y4t-����t�hXG[C����@�T4�/�m~n�s}�t;mr#O��Tѡ�%Ӆe�Vã>PQw3�i�楣E����R]�o�c����ypX�M9`-���de��Z�t*֨��l�x��40v���#���q���"��B�7k;�ƈ�7Z
U�$|N�rI�Y�=������Ӄ�Y,m�V!\���)��vO��t=�	P��.���7R���N�o�Ie"�K��ka�Cic�B\iԱk�/���j!#=A��s�$�)ɫ�Ī����b�o�;�]U�O�����[4��6�‹u��5���8�p�o_����óAv5��˯r<�����~-�|���*���~}J���%oa���-�n1gI�YJ��֏z�~�e�I���^�� �\���ǯ���Z+��FT�B�J'.ث�{���w��(��c���E��I���mo:�D53�(B��l�e��Bɟݑ�"�Xy�5�Zϼ�vb�Q-�4n��L�iʅ
z@�2|)�����k['EG�Pcٯ}�]�^�n� k��:�ʅ��G摾)��a���+�Idۢ��NhP&���n�*���ER��"���?����s��Llj�n{��>k0���3aλ7�p�����}��LF��(��
��w�9�@�ֿ�h�R�ƾ�
�'�Y��gX����e��(��A�t4&�ga���拲d�-��+"XF:
�k�9�ΐ�_X�MXܔS��W/X�����
v1E+�I�ќ+ww�S��{���X�{.��u��T>�T�Ga����TͿ�ǻ���P�;�a��>z���;���ԋ��g��!�'z����:�f�m:�v{y|t�Wg�œN}Ԉ@�_Xİ��!����p��/�2N�Vֱ?�b3*|ۿ/���u�ly�vqo��uk?�V���L�!��Z�z���3�1�à���[�6��I���&ة��z��'�U`��p�V��Y���ڕ�D�sa�i��TnY6���o8��$a:��\aߐU�Sn��:g�<'�ս�%��hE��P��ey%��վf�kB�"��g-q�Uo~P�t��DЭ��8Rf3��`_wށ��W�n��K��r_�3.�>�F�)c�q^w�de������x�Sw�,��z��F�gUb��a�X|L ���Q�-����`�^@M�t�k���J�
*qE,bL�J�B9Yye
���9�d��`�	`9�{���
�s1���Ƒ�:��&�&�~Wc��Xx��U��6��g�We[<*�����6�m����è�8>�@`%���໻ M�~c����E�a-���c{H�/ٜ#I���c��f�]�)��n�Y����|��-w�9sF���8(��hu��P7�%h0^�ǯ�B��_����g
x>�]��h����s�#|��Xx�Q��<�1h���#=�h�',i`�u�������'��J�v�n.��5�X�^��P7��VBNsg.f�sK�H���pTVd%#{��<����֥��s�9K[���y��iZ�e4�7�,1"���!���}��KwD��I�˻������f�;rR!Zx�$�Y�;���qg����� �?N`�o)C���jf�EXVӜ,�2�*��6wژ�=�t2}�E9�c��gbhT�`K����$K��}1`�0���/��S� vO��m���E��`9E�M�Xf���OVɃ�[����Z����X,�P弓_���o�;�]Z�x{��#C��H���a����3�T�p+lz{L�9�� �飷�W��=����h֧�z�
"��8Q<B�����-����;E�+J�*� ��7�*�'�^����"���O�@�??~��d;K´	O~��gZM~D]�-ئM��s�ɩ�>=������z�w�15Lj��<�������P,S�z�ٽ�*���K�xG����t��j��C�
#Ӟ{�����xl;��<X�Z�۠-ך3���5��c�ŅS�[�r�$}8�VL
t֯+��92�57UkME�5i~5����5v'Y3A,%Y���Xe,Ҏb2)')[���G��/y��\�;��eE�snxQ���.���2��-GO�Wi����L���d9[,��"�)o�	S 2��{��0gS�L@)3�3�/r���U�XU�Wm?S�4��[�eUv�A	p���r����hD��.
�����w�-!f��E�Υ�?_ԢZ����Gwζj�+�{�F��*��,L��N�X�Ϩ�:#R�M�30�@��n�3���B���=\��҇���v�y�����D��Ð���x7s�<��<�O�.� `]`��Oa�����;���0ny�]]�I��I�6���>�����V�o*�;�њ������T�]�s���D�'Á���
�+��Z�xV�ӡ����I$񚭅��4�c��dH���f*'��2��F�s�MUϦ_u�qP�S�N��+w���9�RUV%�j
u쌤V�-��D	�CK��o�_}�s�s�>�������X�lGL��,�=s�V/�ᓨ�q?r�OK�f?TA��h�k�Y���Ź�I���mҖ��"��-�˱�u$�f{�����*_�z�+-�-��B'W4�"�0M��^�A3�k�q���3��y���KN}�b䠆���b�����4���MYvTWQ8��FQ��*Ru>_�V�Ҏ]�Vw.T�����`b8�S�/�*V��M�U����N>ï,@�ݮ��0�C�$�;��Ι���C�n�(�z���{:������8* �*�Js��rX�V��Y���`51���'<�wX0`�8bO܀��&jY+<�I���x�.�9|�f���|�*>�;	��$C@}�Z|6��!��dN��L��,I:��M�Yc�*��-�Y�=8�qjbG�&f&�V��0	��ߓ����b�R��(�X[eV��*T�c9@�Θ��֤8�\�G�_�����X�d�"_��?�-����S�*��TJ�������������6�Nβ̆��<���p�b�AZ��&'�U�`C~;��5$��S�����FfB	d�rR=��VJjd��'�`���x��?�gik��9\�M�4�1��|�r��6�216�&��wet
v9�7R�B��Z�����VڸT3V�g��-G*`e k��5�%8�-�Xp�$\$ۡ����2�La�j���^�/�`$���0H�0��H�J�.��/0��2�z
�/	��yr�|�1��<�����:�d��1�C���G���>��U��.�����/���ׂG[Y�E�UYl���1���8��
�Z�jٽ��Yh�]�j���,�����ᕵ���}���;���Go㹙��9K�!m�^���¯�����TЋ���Uޥ�I���Q11��XRo]D����_�DH�2�9�r���đ���*k�QY}��L�r���]	��!
xv#M��'��2;����]�B�9X�bǘ]�T�`@�3��$�7E�b+T%�sM2�L�^��	g���Պ(���jS~�5�� �Ţ���ł�
���YuĐׯ�B��_�q���2H1=?"�z=Qß��*��gg�������E9�M�l@)��ˬlV!ñXe{��}x��c�cw���Vt�FU"N�Нm�`4pC �la�KW��~��z�E�YgۓX�DaPrr#���g�y	��;cr������UkU�}����QO��eU�U�Z��R�s��.X��,��Z��Z�C�%���\.�	���c� X���}�}���Ϗ�G��
5\�!/��g�i��HZ�vh	eP����`��Q������|��{��Z�V�Ы~��_��~��z�*�YNj��
���3����fyP_����(��3`](]h
/6�f�yW�d\�K��JO �d��[�����b���>󉪕��CmH�)�+M)+U�܆eO��,(��=�S��W����$��w)�$��<Ip!���*X�V�!Q̫X��t�Չ(��2����j��$�hM&��[�l�824N��d�Đ�|wehO����KE�z��F�55�x?,�`>uC{�Ŵj�%��v���>�\3H�&������v�J�+����E�_d5$5�Vz�XO��`��b�Ee�ْw���OmA�1ի�I�Na|�f��s�w�́�:��=�==��Н��p[�����{K�N�&�Z�����7 �AW�*�zi��gfr���eY��U��谝.��l�k7j'!���k'���N��;�d J�V�~9o�pk���͜vK��ӏ���_4�+��I<�	���0�Q�/T��hlL��|���}�W/A����E-}��FU^�Q���ZT�2�n�EY�"i�%��ĉ����z�~����p{ڎ��"�:���dRaer�5|��
����H�–'4k���GRau�C���X�,����>Uu�5���N�Ư_l|���~���J,��W��T���߲�ɒ����?�8�`�!�~�h�O���uǂ�\,����g�*�(��Gjx�1l//U����"o.�p����AK�2Cy]ժ�e�Y������J�w��DY�=zw=���%�^�^�3��C�o��Zd\��ܷqr�ͷ�2S`�Y1W*/�,��� J̋�v3IR����X�T}FB�/�
�IRYp޷]4i8wЮ�7��qi�Q���D��Rq��Oϥ��|K�Y�v�����zF�u�j
@<��a���k�n1����.e��p�{��/"�-��S�< �a��J���R_#ܖ��lj��uu'�'Vhm��S��	����/�̒a8�$e��ϕL�Gٍ��`	�!oI�A�p��(et� �~��~�!̯���#�^���A���y��'o6������(Ym��-3�gÆ��yC��[�vy�|5�)�N]#���+#��1W>���I^��
�ܰ��'�(Y
9Cʅ���0zz,�l%���Y��Uꈏ��fܪ���Z�'���	��xB��K�'�&ob7�[�{��~Ӊ�7�U��K�r%kyQ�*��āZ�
�^r��U��l.ׇ�9sO.�I���-�'�����20J�j��s^s-���+`uW�V��e�0�Z���YXq��S��1Z�����l)[H�@��a�P{�$^�l[�p���CC�/ۻ��U�^m�\
�{��g�ej�̬D�$�'��pe�]C�����/�='���s����D�bMۥb%E�9��L-D/Va�`���U��p������5Q4qo�,qf�\��6��Ա�oIU��g�<�`����N�b  ���h�Ժ+E�M�n�&�b���z˰y�*V���ʲM���dw�f
7A��}����*S�:��E��Ջ��j�Ze�&=&�J�W��t��kЮYdx%c�h%((�Z\]���l̩�����Q��n�=A�l6|�.�\�'�S�+a/��}�@jdB�+E��9���+�ǖ�����f>�N��B�Z�W�,�G��$G,�����qmp�hѪ�Spl���R�p��6
�pV-[><��*r����}�g�Ajx!�[.�Կw/��,�N�ݖ~M$(ު�i֓
��^���eW��5�Kҋ8���	$�-�>ŏ�p��ʠ^
'*Z��`<�C����
$c���1��TX6ܡY4ei�E�{>�	W�^���P��1V�j*�i�z�������Tj����}�[����1ԞpbT�g�����z_����/��a�����X	��[�!
+q���r̳�Y�uUq�g7�Q��a��sG�u��D��:���B�u^^g����\�1���k#&k�t�)����u���!�hj�,�7$��uJ���d4�'�Ɏ�ܧ>M
x�p+g;�g�wy^��Ж�O3 ��2Â3~N�SEϷLu�r%zUS������T�f���9I���د��\W�UW�$�6G�UoZ�-�K���@�5� f�F{�r�d,��2k��᳼���NÂ��!Sg�x&��ك��.���A��f��;��X�2��^F%Ny:����C�h�����"1oA���nk<?-�B��q�9F}qI�X��b5m��B��A
?/�b!Z�8�\�Xa�`�N�Y4��d�QVh	עUk�.P�:�U�"�TùJV/.���U��&�#�;
z>�R��N�t\5��*�5�M��8Mɺ�� ��j��	"T��R4ʍ�@c�<����R�aDŁ��8"Lv3����x�aA��ۯ*&Q�B[N����{��������n<?��a�n0%߱�P�1��P����V�xZE\]���?C�����
��0W3��w������S/��GV��k�
�iJ4�4rY��t��Xj
�e`X�)Wx�������*,r���d��{}��ֲ̜p4��
��`Q�Y�^oO��]�s�x�wO�T���ba�p3�]Yz�s.�����j#冡��s�`�L-�q�p�sr�
[I����6���WZ��Fn����b�M�F�)iLK�v�-���d1��x|�m��*��v�A��+K����(Y"S���~4[�u�2�X�5_U,�����ۆ���i�����ͭZ��FRb
m��5����\<,��7�c-_��yDŽ��_�ސ���X����
�I
힬
����rKV�x�[:j��P�+��JSt�x�Q��%P�
S�$ς�Rzc�����>�zt::��
�bee�+�� V@�u��[��RV��e��@i�M�?�~�;�!G3�@&�Iʴ�ZÃJ�K7X\o�1�p�R�)�2�����h���0��w�+�}0Љ��0����RF��oě�K':�uru %�S�
���Y�J_�Ƒ0*Np�:�]실@Z�uR\�)�P�da�
�V�D�jT�.v��ϗۆ	�/&R�[F���Q�·��Rd
S֣|�$�TKNw XJ>�7"�_�	a͒�jVRaIu�D��\�I�>X��4+��Zx�sU����U��Ay��|8tOd�Be"�\�{��"��[��-7����;�Ayou֍3�})�j�"�=�l^��#�a��('�8��y�ũ;~��躖.@G��O��Q���S�u%��F���뒡�b#h�U��7����ы�
�j�װ+��fl�?�Y nU��(�
FIl�\������lP�)!q�!���y��eb@���Zy5E�H�Q��$Ѵޤm`=����,!#v�����/p��&�������
kl��P�.����W��g��h(+e�Y�1+�rq���
��?[W۔F������H@�*��E�HQ�T��gg��e�y��5F#mOOO�#�#!h�"?�F�������x�T��aH�A���B���~ϛ�R]��d9d���~����/���%S���VK����W�0�ԓ�=BK3��d}R�j���{R��s�8���5!fU����3�3��d�+�\�c��	M�YgE�?��)Ȱa��5�� �g�8��*b,\�l�](�z-E?�
�[���Ov�N���A�1F�U�[�|"����z�nQ�ɷ��}�
��Qx�8���5
*Xa�("{C����c�"���|�WJ�f!jeπW�k�������&�5���ˎ���
9`�v5�����+eJUd�[��k)��8O{�⅂�u�au���e)�ݒ������Vø�'Eg(�V� �H:I��(3A���ts���v�q@��9�.���Mm5�g�	�$�j�&{�b'<����}�gi(k] ֏�51��9�s>�ϵ�Pݕd͓���tm[񲬂��9�#z��Չa�̿��-����h�KKT-y�ݪ����z�n��Z�Ώ�B45k��E�j�j4P�ci/Q�0�
���P��q�}�B�.n��]�@؂�*�y8� �V�����w�P��~�+��U���"��V������!{�Y�ջ�mh	\=v�w|W�Y1�+A���ĞĪ��[zhj�Y,襔dv���R�#�*�C+x$�]�����T�c��{�{�0؀n3`�\�U���p���]�خj*Q�%��'zk�j���~m_���8�VN�R%X�t%���� �����Y��ǃ��|�K�J�
]�j���%�;��`Q�Wg��k>�|)H��L�b+g�4�[��~�g�0e \�$8�
^D�:�v��s�0�_�J[���r����Y�m��K��2�G�R��$��&��?����r����z��rA̳�l������Pcqz{���2IXD,ë��no�Ā=����Zޜ

X�\�*ؓ���5cߠ�-�j�W�@S��J�?�b�R!kH[�nn"B����7�k0T��T�C�i���*�Jg�����ؕ>��Q����|�0�J��SXȧRP=Z5T����Խ�tKE,Z�`͐�>;�Sc�)
q*&�*\�R�DOl�:V�r�rS��<�=sc�X�A���pXX'�(�U���	����dﴼ�j,���}�>�bY�J�/G^;�쮖�Z��p	~�u6*�h��e8�B=�1�b��fe���n�v�w��A$�Դ��^��A�C�ͅ�H�$���*�W�dY�΄���㻰�K��+u�7#k�5c�w$ee�W��.zi�޴b�m�Я�
eg��~�X��Y�z�2�vU��Ѝ��O��u�L�t<�e�Zh�TY���AP��l��@����Se��a^r�s��%ݾ�ݸK��p��h�Q;�N�յ�ק���,�J�X�~ט+��D/!u[��.�ܔs�ұ�hX�p��Ӄ|V6@��C��bP�U��i�z�2�`��U��a���Z[�
�
�Z(Of�p��l~J���*W'�7���Q5
	ٻ
:E�����v�K;�,iL��kH�8B̄_����b5,���v9�b�c��T�%�A��YZ�v�@� ��1-VnCfu��F9�=�yJ$˻$�������v&�ů����ڪ�1�D�{d);+@�jN���2�ޭc��GP,�XxZ��LGhm�I�n��	>L&ˈ��&��7�P_O�>د�aiVtC����Q�u?�z[���e,A-\~d�l]�Z_C=Z��_'%�Y��N��Q����8.���l"�ʮ}����4���"�#��
Cq~��}=մ�y,ؤKl�b-��p[X�<fl�z
;���J�{ˢ��:�l����[���X�(���9sv�������$\�i�n^v	�:�pT�:�R��yD���Jy�3���`v�X{Mg��f��
��]��`�|���եҊ�5V{��V�'��9��k�Zh1-�ڪI���[��W�l*�������%|�i6�i�D-2Ԡx��>��W�³���'Gk���[���qJt88�������9�TE���$��g�B��q쫳��j(j��?X	4�b$�G&�U�{���?�J�1S��~�a���*��X�~+�Z�`��Ɗ��^3�4�]����"/��C��i�,2d1�'�2B͜z�C�t�x~n���5��W����^�j�h�2������{[���i��\v��/�"���2�~Q0��Sl��������-�k�t"�ϰ��`��b�Q�8�i�+����k6���VO�]��V��•�U��~hT�Pg{ Te�v�j�^U�D��v~�����	u���g�RM�͗d����E����g	z�4�����X8�c�h�uz�+h�\'���p;�./z��SXZ��Y�"`m�R�
�yG�ێ��%��2��ʻDS�
�n.��wY/�*	�tt/lȚ�^��B�V�DkS��l&�mju�>2k�#2���lU\-a��W+��͗ןyJr��j��[�v
#���X�&��:��c���ɬ��oX{���7��� fm�la�z�E�!iY�T@T`�
��td-$����#
����tZ��%,�,��U�GEϺǿZuP�1�K��.r`Z(ق:�Q�ƹ�_-n��%D�y�.�=�:���}�l	����V���
e*�V�}�ܣ����/t%>v[�D�m�V�%4k�v���n��ҰIp��ϴ�ߕ�+��e�Y�]��l�+�je>��p4��=FBN��q��S�����X}�+u��u$4��-����C�e��A_m5ƅ!�
M0N��L�����%��,��V6.`�$za֨U~}�ʼ�D�5���"uk�{ҵ`��MW���6xۃZ�J~,�P���	�Y��U�R2�<^�ـ��<6�����S=3�<�5J	�TP|���B�"by��<��yt�֯�P��t��oS�sx��7|zk���%f�N�}�jÖ�5y��	<k�CS�Č��w�հ�ւ����Z�y�(��-�m�z�AaW;� ��zͻZ��=$�{%�y|�۟�2װD2iL}z=�nC^nU:�g4����w�c�\<<����z�o1�%�U�_���YW
�zT�Y.?Z�v��+����~6�U�©Њ:���h;�>u��2GP�T�*�H�q�h�\�\?-��e�Q2,����~�x5�(a-�v���>��W"nS�*��ŷCr40�!�X,���~y�P�xżZC#M��w�:���ڸ���;��W,����(m�ax�ڣ�f¢�e�C���D����/z�xam,ڬ?֩�Y�n��2,��3�2�d��Q���ir=E��m��u�^ul&�T�;v��D�}v7|B{�Ԝ��/��B�R���赉(�5�q�Zn�J'��@���X'�b�����U�zjJ�_4{���E\�B�Wa�1���[
o!ʳ��@��\���<^"�4�/F����ߕĞ����W����%\ně�h0S���Y�7���J0T����%%U�/�F˸ԙPU,���NU]��%v�9=Rr���s�����`��ޔ�J����dk��iPe��Β{y��Z�0�V�Q�RM����
��6��$����aPc75�喝�C��̈́u9;�:����Yg�W���}2��	eN7��S�Om�~�6Mj�I~fs�Dxv�eD�f�aЫ�3v�MilK5@p%!�q|p���E�:��g�ݽV���䞺XQ|�E���!�׵�!m
T�u§�M�z^�����BYsI�B|�^t!�MF�
���G�{i�Gn��Q߾�=�/�C��+c��Z5Y*oe�N�U�1��Y�g������N����Z~��A���Y�b�ԇ�lܱzC-
d���s��Q�EY�8�����sZ8���a+� ��K��D
l<��B��T����G~��ٗ��{�~�^B�������sE�:�+��k�h�6�'�0Pˮ+�l�c3\�.���Q�^�e����Ū��3�a�-�g�5���p�I��L~���j��A>��b�R��4;&(����+��S(�j�R�Jِ+f���g���I�N�ꁉ+�<��dNg�Q1��!��<�d�?{� �%��>ߟ����L!Xq҈IP�3:���Z�0��g1�3��}�X��3<zֻ�,
|`-��/簲}㊺�SB�{�X!�T��
"�@y���]��F#ב��~BA�E�P
��a�i�:�PvB���{
�v�;��YwFsz,~�9"h��!m�EJ����u�(c��jN��Wɨ��!V1��'$�s����J���Һ��+KS�7�m��ƴI�ۂNK����w��Ͼ�y܋�ב,���M�_n}��7t�H0h����jiZ�i��fd�����t�P=��X��@
��|��b!�J�#�8F���Y�b(������Q���9�W��z�K��X���:��"��
fn�����
��U�i؇#C݂d�z�:NើL_��`��C:o ]��QUD,3����x��W�m�!ݚ���
3�Q�ŊU(Z�x>l!����1j��c���Eu'DM�����tY�,ץY�u��㜄Vg��X�d���)��-��լ�8�@�4��K�H���J�Ȭ�[�Y��,O;o��jw��
�Y=>�+�B,
��A��$)T?4���T]���n��ߓg��om�;�3���u�H�����X�ɜY�<�M�7�P�%�
}q�p/:����{yLb���_�~��70�A���ؑXu�)'.�[�R�2X��d��|�`�{��ٌX�sC+��5�#0k�Bԫ�U��j#�JF�fá�j�A��#/��A�R
k2I�d�:�xdms���5���qs�D���+�E�xeǃ���
Cx��PϐKT�.f�I/�G�[�+�`9?������'JR���}�����@���g�P��V��Xĕ���8�,,մY��Y&��&�y�H1׳2U���訤��>t�,t��y�����K�����,���IYbJ���l�۰4~b��>�6�R�ƖC�ڿ�n�
�.K!k���ӮZ�ڹi��ue0v�WC�
���"����)5oY`	�.
R�Y-5���n�e�>���!�T\
i4�ζJ�#˔Z.헰2�!]I[�J&�����p(�:���<t��`��8��δU�s����Q#"Z�,b��b�1�����\A��L�X��絩ڕ"��I��:�<u8
�����e}P��A��&�I��Qc��
8��&OX��w��W��	,;Tg��>���ޤZs�y��BX���ґ�!���W�Y��9�#��1<[���u�%�۳�YYM�Cl�o�"ͻf��̶j��r�͢�Z��6Џja���$�AV�.7��@�%��f�\E*+;�V
��Yg6�,�dž�d8�W%��2�P��&��`S����'�`�Nx��M����|�hhjR�wWg���1k���\�/,�g�e��#�n��I�_�rȩ�dM���2�H]�uh�)�z֧3��'�J��G��a̰>����3�c��O2�A�̹�L���E/u!z�u��^�D0O���kg��$VL�K_g���VX��d�-������y�������|�fw�8?Y1��Y4[ 8r�/z����Z�����ڶA:u6OV��O�W��(Ϸ���3�Ǽ��_�qQ��Fx�Z��0e�w�=
X�Bca���80��+�l�:�K'!�����`�qo 3����,�rI(�G�Th�;<B�V��e}c3Mw�k�7����髑{�p��u�Vj��'+��؟������\d���u���j�1��	�X���I�,�O���&m���P	�]��0�I{��ߣD�L����%p�Pj��^/鶗^���zDa��p��K���x�7��PF'}��=�p��3�}

{K0��w~�T4�},*�,�B�h�,��6�h��j�\��_�c���Ty>{�4�}���.�@)ZM]��pU�C¢���
K�v
@H�@U��]3�皌j+_�r��R["��b��\���boDXf�`�!ꀥB-�f7=(Mһut��
;!.�����^g����Йz|�Z��j*��\���r̅��
��-h�$� ��X��R�rH�i��J�٪c���(�.�Lr$krf
	,#�-��`�,��}�,T�6�������X�<�~���c������uۃ,qn�
�����&p�B}��{D]��ZP9��h�O���W�S$��3Rk����<4���s}���R��O.�p�J%��x�Y��J&,��j?d�g�Y�����׻�BT��$#m��-��М�*f�=�
�)!�%�/\Ğ	�0kE-�i��h�ґ(�U_�c�]�eLM� �v�\�`����٢D+��0����O5�����W�+p
5i���G��|M��P�R*��X�6Ӡ�lX5@��Kv�b��:s�MHfj�Ο*?���i���C-�V�_�,,����N�	֨xn�~�̾ܛR�,�x!�C-٣�m���	�]��1i�B,�����!_0�tm�i��W�Y=�MP��:jG��i̠��*�w��H��S�$Xt���^	X����t+9,�Fz{�V���l>p��+f
;��O��=	`���vS��҈����B��LX֯�3��f頵�����U�-�7�i��E��B`	u��o�U%�Xi;D�oxRX�cEB$A��fl�,ӌJ��l<�ʼf�#k��������࿡�ר���߲ba�+/��.�
^�˟~"ȧ��6�0d�1<�9D�
�$$��Z�]�(e�n57U

��{�������ʣ���SL�ze��\�-6@����]S��@���e�v�jB�RYU��ޚ�n����
���WP<, j��r�>������G�4g�GE��q���عrT�����ˣ�6$nYۅ3?	7��Y����aK�³��n����4UN_���$�+��5p�ɚN?Y?��w��xP�1M�%��Bp���X�!b�!�����
���ԙ[L1^_XoX��t��FY�ȏ�ٵ��䧛j&-p踟�c��m�'>;yD��7�n�Z[uE\
o�5���ֻ���X��C5A���(
��G%�`��4b����EA9
s���+�x1��Pv��A,��2-�X���vuM9ĸE�"+n83�d�}�`֪C
\7��R�n�ī��/��e�����ݨve٧�(�S�*�jc�G���*P�е�u���2*�,����{$�ATfI�iˇ�I�hC)�����c�8�1�:�*���.��eM_LgP�?fY^����9��xGm�Ӄ�s+X�vGK��A�6���`-`�(e#��?S�Ы�7�*.���
\\:���[3�X��D���2v�]I�M�� ��Q#- ��y���^�o��y9Z��{����f��ٳ_L�Ŕ�d�i�����H&��k���a5��򦮪�q�uյu�����V8�ֻ<LP�-��k�/\�������\V�1,�X߿šs��]Q.deʪ<�=�t~������`H}�.��)�4���^8h�Kb���� �.�!VB]���B���x[`�U��f��ٵZTq��k���3�v]�y�>K��dz�F񊺉N.�@ _�����W'��Az��_����s��u�똲��`}7��)����|�TP��<H���?��m[��(r	�V��$>���1añ&�}��S�*��Ȑ�j���J����R_��SJd\q��uKp��W��%).���`��9�A��m
KN���
�7�4�Ϥ$�m�J_P�1^�d�W&m�;�����1~˯�)�ao�|�Ή+�Z)v�cdd*?�8a�LSJ�+@,����V�P���]7��ę�T-����B�uK���,{º�(Z��>�X�g+�f�N�R:KF*��~��B�W>�k�f����جO���	y�Q錖"V�
��\�F��ڪ���Ӎ�[G9�3�j�g|V�q�q�Up�2-���o�k����:9�������
����MVo)�?P��<9��+2_)T-��C�%]
W�^���c��Mpek�%�>�%�3�Oi�h�Xk���|%�v�L�:p��Lt�q�E�ߺ�6�ⰘoJ���+P�7�9�̚1�����e�\^�%��)
��0��dG�^�g�^����}
ߜ��B/��	*uOR����Td��"l��#�!GR�j�a�����3}�m�� s��݀�w%��F$�N�Of��A�Q�
d���M7�z����,OX<�rK��(�A���Tx�
i�9��MJ��������ŐeR��	OF���ޕ�'��B��QY�Yj�C��<;2D������b��u� �X9��r�$�?���z4�9��v;�1S͇��6G�qߥSW�~��;�؉���u](��Bk�H5}'����o�V���r�Ͳ��մ� �jc�-�Z�j�v\�y��������x����t��:`UۊE�U6X`H��`#����J�m�JQ�Wmd���	W�˝UA]A7=_3�u^Z7�x�����XR��¿X��=3_�CX^��4&fw�!���Hw������q�W��…�����{]���u;����V�Mۀߵ��d�[��yԧ�*d����Xs��eȚN��Bl%���d�v����G{��ŬC��"ڵ��U�ဵ���g�3�ob;o-��n�0e<>�PK�-׿ۜ�OaTV����~JwC�Y")�Rr�e�����G�yLX���!(QX�sD<:�kFm�gmzF}k���\7��4��-���`K��~T��`���,
�uF�������*&F��V��`��p��`�Dx̘V�jM�p���z
�\�nξ�5�JWE�W�F^F`�'9��ǫ>�iĺU�E�v	��.V:=��
��E��Rߘ.�`�-�u�nblxe�;,NS&���rR�6e!8`AY�Yv�i�ʧ�S�z��g~��@�
Z;��=���j#�"�F��<����d{�w����P����d]s�eʽ'P؝pi&�JYS��S�L�𷉼���b��)e�o�CVyA�CG��%�y.kg|���\�j�:\���B\
�LGJR�|d�`[�fkt;��2C����OYf)<"G��凙t
`�`	ެ�]�%z=����n4l	�D��Q���J�4�����
�=8 2�O\<�7	�&��B��fZ2���~�C�O���.tG0�*!�RN�O�gQ���*A�.Բ_�"�O[��+37�.��OB�WU:
�$��Q�΋G�R��`�_و[+��Z4Y�JH��hdw��*���)k�tuo&�hs�eg4�
������ԇ���q�X�D��E�+�rM_|���ԗ8�h�D��a����ܠ���2H����	��l�jL����:���o�^�l)��r>�aGW-
KE�?����2�U{׸�k��A���25>��̝��?�(���"'�ZZ9=�۸�z�כ�����EW�Zi�$�da��D��V{u�+�N md�=�`Ja4�*y?ܨJ�1Y�+�+���g������kƝ��gѡ$o�>��B�G�x��iY��"�+�Y�.x3��.pmwT7J�Zs���4�!����/,nihm?����c&�b����n�w�J�^1R9b��X��R�)�*G+-7��P͎"T��+��
V4hƕ�WYm�8�,V��3B�2aI��v�ԕ�7w�s��Hz�k��$X>e١P5�p
�g���I��~"`Uj�F
����n�z��ge'�]�|%�dg��[�(L�nұ!2�L~�T˫�
�:�P��ڜ"ˀS�'�곛�vbZC�Dy�>�E�2K��~O����2x!V��Ko�^�j���f�ɲ-�:xO�p҅}�t�pU:�å��xx"��I����d���m(O�[i_cA�����~,B	���4�^�aw&���!7�ߎDT��^l;�|�)�o�Q�{����J�4���O��S���cXgT�	�Ȭ5�tcAcd@x��R�U|QP�����9�T�ͰOW��?E
"�� ��V�ӋZ�v"���`��g]h���?���}�>����U���:r$ĸ`�Z��������֊�]0ސ�ҥO�J'��Ϯ��Ld���W��jR)��$V�s�Y�͎Lm
d\;3o�)����cVA�d�"�&Mͳ�ѩ�����jj|;\ ��rw��n#|Ed��B�~P^��Z-�:R��o�e�/ۜ%�<�<"�xoWBG��VtE��A��hR5�=;@����)��,�x��*y֨{��j�L��i�hn4�m�y�1��(��)�b/N��nT�sY�v���)���.�@��������ܣ��}��&pT�9�ui��6���f-����������g��y?��L�;��lE��[Sy�nB�^�
ʄ~'Ÿt���_�r�w�+��#�~y+���.�I���D�E��ru>�ZU�&��p�3C�c�UV��5���w�����<\5,�稑P�p.Y��7
Vp�p���͹�,�j��AĆ��>��j�\B�)�B�h�[]���+a�_!�5��Q���C�;��SMU�}h��3U��ԆC��\����jg�W���ۭ�ꉆ��vK!�RґM���98쳂B���Fh�擒W*C��'[[V�=��B�����W��ʥ\ɿcD�?d��)ɫ��]�͵�\\L��w��g;x���a��d�@I��������%aW,�稌5�(;���u�JCPY˳Z�?���#� ��GO ��>X悏;�Z1ca[�3��[�gY���F/���>�C��,9��2a͢vB�������0`!YG=>_�W?�?��o4�yhi2چa�$��QL?���N/ˮBd�%��C�D0/�APe�bK��ڶ��ߞ�-�V�"�0>˄�u��3,rV��γ���9�7���'��X������u���U�ENּm�(3���-N��~*^]�Sw:��=��kQ�-fZ�s/p�p��J��2�O���Wx�.�j*z�!p��o��_��7��^VvW�gӕ��(���D�M(��^-#�I�����pp��f,Lm�VC}*���w��u�HC�K0�*ŏR�`��^Q���K�M�XpR�÷���^Z$hL����}��q���T�c&c����r?H�/�+VH���������>�VZ�V�$@x�\]]]5t��ppm��N�䬣o��~dI}O��w�x���]�RC䂬\!�5��b��N]@�>0(���$w1�����,o-����?Ӵ���q�^�Y�/
���5��i�W��>+T$yܙ���3
W	�n	a�f�^ݻ��>R�G���$=����g���X	��ɮB�<r�g�X�:u���իit<Y{C�T���Ы�$`
$]-z���ɺ(��5���*V�-;ib|q����t��n�ȗ���yk1�}uDL��2' �a�GBWl3dA�ҥ4��
�Qj�փ�U^�5�@溥�C��y֡��k�������l�j����.TŦ0�P��X��`��U<VA��-��T����ב�n8J9��)�@�&���<�(�1���Z1��TʨUEJ�uS�S[���[SG��f���i5�s�|�&O��\��:W�c����q���c�'�s��]�Ϙ,*����,�ӧ�h����f��O�\��p�G�۲�~T(�z��Ű>�h�'�!"6�̙�g����$��P�c:�+�P���Ư���&�jg����@����\5���ND�u<��{���8,o��^?W�9�u�\�N�X��lE��S��]9Ne	K;A��{� "���w�|g05�@8�@в'I�UHu�E�d�NG���F�҅��Q�0�E����+G��
�<"�U4�17�j���CS� 
�2:��O��U�)�-�U�(Uc\md��Y�s�f[�;��%�El:��$�uj���)�p�L-J���Nu�}��{�%��VN���Q��A�g���'Lmatһ��	k!�x�����|v/6�� ��93��X��B:�V��5&�
IE����b�d��s��Ww��9`!?*�_0�v��0\Yb�p�����`X���0U�mr
�g�X���9�Z���{+%�c�e��	�"bXW�����P�n�W՗���b�5~4�h!�4d������8�13���9����ޚ�~�,�U��nooH���Cu� ��+75�~K�V}�[����XZJg7�.r&���f~r��>ƻR�wG�F-��{��Q#5��l�T���U7�Z!U!�9㖆����x�
� �}8��M�a1ta��,��'���T�#�h�Q�&���2-�r>D���p*��[��D�.�[Y2%��<�N64�.ǀ���>$5��/����Q�\��8�����P�{�Y��:�Y�	��#jU�@��
�53�a��|s��D�C���s_.� "�P|��0�a�aM�� k~f#U|:�aF��w�cn�%���J� \�t�`�C��CV�S��y7�'��y DsE�ߗvd8%fU��P嗣��Ѩ����\���Q�2J��e)~	�z�n�v�3��b��#d!�&}x��_����2�}B�K�|����f��K?��N�{m���v�
�4�o��\�br�Z����y��~�]�,H���0l�~����|�V��8ű��	<G�^�Iߚ��E,{Yf��v9T�(K��b��,dV2,q#����|�c@h��Tw�nd�ZF�U8E	ZT�&:�'�
؛��U��U�<�����FB#K5B���ji0���M�W�ƧEK#�^��Ru�9��fc��WN�=#�s��օ[Ec��+5}�/����}�g/�*�D
��!K�Ǧ��n�8���<n���'�@V�d��o
�T��)�Aڀ�߳p�ۼ/;���)�D�����zؾ�pť+Çe{$�%�͋�Ȱ"��?l�V�fuhKY�s��z�Ku��מ�{������a0,�n}�M���!�Q,<��
�ʮ�wy0
�J,�EF���(<-��s$
�%���c�s Z��7����S�
V��à�{��|�@Q�툒Y�\j/G���\����A�۹h��Kߤn�����~Rs&ba���Ln(^-�A�J�X�A�N2,����w�Jm�,)�����/ �d�����)0s���Jе雷��M�Z�9J����-�K����%�I�w���!a���%a�&ݪ8GņuQ=�i���U�j��Lo_�V�u$q����T�>�@�^e�dw<�$�u?��8"JN��/搴�eC�
Ϝ��	��.�8R�,���fU>��@��"�t�I���ióq?V�o�l��C��![J���m���mE����k	3h�(g�bDC���=#E��X֞���*`(C�w����߇(oe��:���I�j��[{?)��fY�nc�k����e��^���#�eMӧ�U�'ڑ�kn+��{���[9.4b�D���۷�^�z����#}��߄WK�w�_����d���OZ�l|�<��ӽݥ$�j�v��r��L�g��l�*bG�Ml��G��~+]��N��ݰ�]�,�e��9�Os�����maq��^��:b�2��5����;9ΐ��7���v7�I\��&�)4V@�>唝3��y��r]8
�]���X�s��Ҕ|k�bg����Q�s�J,�\f����4~*j�����Ă1J_���gy���t�}4�6
���L��8l����^�P�r�"Z�6�İ�b9��X�j}ъ>��a\��үv����̑�=��Z0����^�C���f��S���Jt�cu�Ua��� p��C��U��,�l�0
�_��.Ģ�����_�*����i�$���,yݙ+��$m�Ci�;�&���P����}.V����������syKð"��xx?�� xJT�VZV�-�}�|�߉}|*XX+�Nf�8E����c�
�t	
9*���]���
�����׈���:�J���g�O����D,l�.��"N�q���P])���S��*h�gV|R� O����,�X����l4f�sč
���X�=�E�:�V��j�#���3!*0�X�)}��Zmb政�-!��:���>�����6��4��rbd {����P���5�m�pG�~|�X3��

"X*�a=��/��A�_��_�
�?
�F�:(6��>�3�4�z��E�޻%I:��3N�l�z>�8�9�E�]�@-�����(��������з�j�:��o����{��h��dH}��F�6�HXcՉ�e�<`��nLƞ�2��,I�!�
=ﳆ�J�N�����y��ڻ�&kW+��\(�ȭ�i�z�4�75�W�Y|GPH[êB�����V*��Ƽ�P��md7�ֆ������>Q;���,+d]�g�P�){/ a���vV6m�������OG����Lߧ;+�.ԋ��2��H���v��{X��hrz+c�uys��l����f$PdZ'��z�|/W�0Z�r�}�段�!S38���U�b/����jM��|���FB�a�3��<hJ����J�ɾ-���9t�-�Ica��G�s���;�v��>t�S7'��G�Ξ^��ʟ����>�E�͞�7@+�n�n`5�6���yj��/Qtr�-�A�ʫcɰ�$�J+w�?����%�0�T$l}
W~��k��;[�]�+"A�f�(�Čr�]�W̠y�$�����+��ƹ��i�m��!��:�֓%�a���gs�SQ�����4<��-
=����3����f����4�$�Od,
��;^��L�
F�ED��[)������
&ҝ"��Mlg�N6�����h��I�b�j��ZZU�e5j�h�1�$�^U Kt�%]�+C*�2,.D���E��,��2��l���w�l>19��t����%�a��zjKz#JzSjrTȖ���	:�X��&AU�T`/
|��%Nz�,�
�\d�R�'~�[�t��Z�˰���kŷ�j��ϐW�k6��HX2
�M�f�1B	�� ���/��͑���c���k,���h.�T��֕�K��Hݟ)`qN$%e�p��R[����������`��R	nu���"�B���u�kA���?�-�N�3!��(���5|d��Hjx��[�~�d0��W��V���W��G쌳Q[�:�W�HT��#���{����7�5(��A������Lk��+)C�d�9�]Ӑ��M��ރa�<��.�i�
k�'�[��&ؑq�q�#L��'��
Wªa���8�"̒JS�"��Q<�]ֱ�A�v�7G,�4鹩�2�\�g:��"���@�ʴ~
m�oi��Z�d��Rr�׫B�FQư2��i,Ѳ�r��e3'D���N���8�'��E��(�~�p�g=H��	�
�Uwǯy����]KF_+1��⊯�M���E���¯�g�"�ǂ�ί_۳^o?_
͚ޥ\;O��T���.ǣ՚�;=6�hH�Àu��qB��'m��*J-���y�:��j����[�8�p�ϖ4
^5V�A�dٱ����5�IC	���5)�a	��4x%I�R�Jg��oX���{W��E��v�v���M2Oas�]Ю%
����qٸ�-�$�5���
k�l�r��ٰ
*W�,Ҳ�d�^v��M:L��fh鹠\6V@Ltﬗ@5O�L�r^`:�\F”v.'�}c
�p7ֈ�sX?,���,��c!���-|Q��Β;ڊ�Á������"��U	�i1�Y�y��^��>Yܝd�P���f"FK;��*�suodx�=��4�t���~�`/)P1B�:�9�u��?��VG�]*�k��cӧz)��=Bz�jAq�d���X��n��+��N�O���ne9;�C��YJV���zl�n��ч3a#��2&�Pi,���8_�뭷��]Y��;3��gK�Dĕ㟚U埕u��iZ�_���Iӌd`�]5�����
�j�t�5��7s`�Q�_�	Q�Q�ȉ`��z��WZrf��R�`�D@9�	�H��aͱ���W�����@�}�)ğݐ��Ɨ�ݍ�iW��@A��@�l;�+�FȇȎ�2wL��p@q��l֛ʹ�IM�ݨi�{���9�N|$Q]�m�H�%��l	����D�RȲT��fiN�Io��Z�2�k��Ć��C��*ֈ\��)�����#����B/�%��^	�5?o5l��̏mWJ�F\�Cb|5��8��P�$	W�����C�B,_q�2肰�X��.�V�|s�s�\c�#`m��)�
�Ks�����ʔ�0,\{T�uKv���Fw������M���`�G�6��ǜDGs`#�W������fe;JS�sR�m���?_�{�C8
��`IZ�fx�O��+	�`��B �?I�8	X�X�F��S�;Q��;G���(w4	�9K�/9L$]��I������ 8�
�!��kTn�o���άC6^��	�V��68��]�]�fK��t#%�ܗ�<�{����җ���"C��"WrԄ#���f�x��R�>G6ң��Ȫw��9�X��A42]YP���&��*��F�J��邰ҠQz����5�����K�[%��h$V�]�zW���?_Sqg=�@Ϻ�Z���i}���5���y��O�+�Z~��۠�eTXh�Oap-�UK��M�*�8��&����f�T��<cp^��p�r�W���%G�,�$PN���W-�Be�!�`�&��E� ��煜�r�25?+�J��U	w:�����r!C���5c@*	��b���²�Wj��E3!���C���Y�F��|{{�Q#���;�9�4w�}�b��cQ�����5�9s$2��g-8Wlz����!��X��ռ���}�E�X
�wc����A/%��@�c,>�]ʰ
��6g�$��r�d"A��՛3�>�3O3��/���#!�D��#�iz-�x����T=�H]T�„���Ȅ(���	���Ov�<���������
SyYZڟ�ϴ���+va����Vic�b12Z	×�b����U8=�����z�%&�/c.�Zƚ��+"`�"Yb�bV�p���,J����P�V�q
�����}��P!�I/�������4^�d(���������07���p���)+;,�%
�xޮ�Q4�>��x6��"Z6�tm%_]P,x��ayd���=�q|��5������M#'PG���C���͍�W��K�1P����uEG�$�W�yB��Ԫ'�U��o-������-��D�'�3����;�=y�O��ɻ��U�~%��)
.�0'�9ťh��9>���NN�d`"MK"�k�'�}u�r��*ݺ�ý^�3�����A�i������ԋ���.8U�dʨ�B�
]�t��(�D��Nҕ9?.���x弗�mv�	��A}L4�4,:^�{u��0Ăl~�t�w�M��I�-��[�y�_��۾��ͪ��h������p��.Җ+��#���F�(��V-�E�%@���Cv��*
�xҖ7�6���w������i�g��T��`y���b���e��f���S)��O*Y����VQ�DT(�sc(W��

43{_��|��V�
��IT��>�J�9�F�
��l-��zWO��{���[K�7�l��
{����z��)}�NX�6��Pڔ�b�9�\BޛP`
�|KM�.��DR�3Ӧ�"�jх;i�o�F�Sl��Ѡ�����>E��33�,�XQ�@+��TC=������S9�`�h���"�?��#@C�m���K��u�:Z�q�2!^/JlHx.L��)��u��r�p�9-� #��ʴ��#��*\�4
(���7a,<,W�0$�ZRR��z��ƨt�1�ً�
�3MM����,j���Κ��7��Ų�B��J):�|�(����-�J��2��$��^1Y���
�V�(�SD�*�q����Z�
FQ�EeM(���X�����?�����Ǐ�S�漢����'X�'T��ο}�~��=��۷�ϟ�c$�p݄�
J'1!�����RRn�a9���b'겫 �@Z�R4��5e�E��y��s�]!��Uwe��ˣR�<J�ӂ�lu+�F��K�Z�2pJ�R��O4�KP��bf��T�֗�^�0^��]D��
ux[x���q�)���X	/��jJJ�u|��`��,bɦ���Zqo,�%��b��	C��x��>�ey�!��X��=�1x�a��f�r��Z]��BH��q��?�.�0`=>�1�����a����ò�ϐ��Ztbg{����Ia�0�V�'��\��+G���t�c����eg��^��E�-�ggs��}W�꬜��t�m�=	X?�����G�A'y�����8?�7/��\͘`��a���ϗ������/ʮ�)�l
��1��A�l00�+x�7��*j
�
��*�������3�X�ĀYI6t���O�}���zk����oN	���b����"L��������`���8�`�('������hK2�kl��Z��H�$�93L��'uE~P8Asaj�|�h�*�f�A�~�"��{�פ#afMm�z;��Ux����b��_u�K��X�Dž��_�T11��^}t�1����,̋4wc�l�(��{C���]�HxKbB�75�3��%��9*��+NJ~,�๪���d-�sΆK���f��&x7c��j�.�߁����>�T���P����a��������TX�-r��	Êօ���u{>Ԅ+�o��Ci�SA�d��6˩�����HV���1����;�u�Ӱ��8���4c8{�0`F��|EB57^�l-�Y��@�V�u�|��hE�����r�/`����j�Z�uX��
(U͗�c��i@Py����|}�OY0�*��<����Gx��E�x���YyZ��cf�
�(nӲ��yՠ.���h$w)�*�P�l���B�Bm�Z�S��S6�����ia SI��� �i����+���:XW#��i�
��OA��I��>��%�z�}��\'^�'m�8�Y-%����"�4��9��7!���sk���^�8L3���0,;>�O�WWqO'��I*��Hw�x���A�b��M}���~\H֟BFC�ThuT}f(��5K�I��4��ˡ	X����v�w�+��{bbA�:o� ؞�O���qE�i�ƴ��hl�Y����[�����p�yC�jr�f�(��}�U�X˷�Z~�Z����;�	��n�
n"�|/`����	���fo�?�Z�n͗�5�I���o����!�"Sk}<���r�dr�u���y��
�`Լ9I���^��F�
/I���
�)܌�B�$���c��E�:{K���� z
�$���}�һ�'��\�17;.���̖S�
xX�\�
Ԯ�7v;b}��3�ߠ���Z��O��W����u����~q.H�(����0;��$�֭���p�óX3@��,�W?��~�k�Wu�E��,�����˲��pz��Y��ucƭ�8*�R��n�φh|R}�E��0���?���73N���k�IJ��#T[��1	�?a|$���������ދ�f+�J�T��J%6+�����K�!k��˳��ְ��[5U��R��j6�
PR-f$Y�j
�\�tx��(�^�B�/ۻ�zf�	8�<l�8�o��оx�~��#!W�|>Z�@�p��^~pJh,�!p��
L[�X9N��IH��������E�Z�5��140�@��\OM��W�±��E��I�r藸�K�5����Ԃ�hb(csk�����9����$X�pD�aJ.�?����P��sq�~��'Š]��QGVmNc~C�:T4h����}��r�H�S�*y���de�b���°�,^�h�."V��,	�IV�]�g���1ӯv�J*$�u7Akk�0޽>�>��EԺ�ϐ9�[�hM�?����xu�����tX<3�}k��򆾊�r���'T�� W�����7�\y�h/�^%����N�^Ҵ�:��ޖ�
ҹ�5�aX�Y5}�Va�
cشZ����V�z�O��o�f��Mx�&]�a���CC�N�jE�
��-�a-	G��M��C,<^�pQ�"�
/X��,��2�I�N�ޯ�Q�l4�&YKW��� &�0��<5��8��W�$���֭�/�w�囄D&�'��r�f(k�C*�E�H��/���t%��4K����
?��Nt��3�t���<���J%�RX��X/�#�'G�%Z�dt&K�=u�Մ�٨d���GIR�α����#�Y���+�X}&o���@x���?�L��V���ŀH)Q�\��b���vt���tS��87$/=�,v�z1�����Ģ/�K�$�ۘ!Z�7'`��!�W1ZF�n�$��	J')���Vg���Y��0�12���Mβ:hxu�j�X��`��khĊ�Z�s�=����!`Q(��.�j�Ap'�ˀe��b���>̈́aU�=�虢;�w���w�鯷��Fy|�t���6��¥ңD\����0��ɤIH����>�#Œ�ql�P������OD��d8�mT�!�^y�Q�Gr%�V�z�|f1Uјe��~L�mj>�7���� D���7���aVD�=��v��:���X8"����g��B1��tp�']_�dm�+D�M�2\1��Hؑ�c��K;��H�:#�/�[5���2K�
��d}�,
��;���	�obǘ�NP�q�0?A&�6c�Hu:�r�����0r8������g<;���h��!�
��~���0)="��c�����u����F�+�r+�C��ͫ,��a�)�y���ns?�M�A���%�RBϭ�
��j��Rʡi�j��[���`/`a�ø��7�jXa�Zs$l-v����3����m�W�4�	#�t-���P+�B}\ng)��~U�5|�c�i��U�M�{�jdR2Y`5�rd�Y�2�	�b���J���]
6�$�U�}Nt�}���$���2
*���D+%�J�|�m.�3��\Ñ�A����d������ʙ��e:D,�?�b�s
�t4�9b���BT�9b��zG�����;$,+]rF�O����Ԇ��K�Xϴ5\;�R���0*�Z�l���(	qH�(b-��R�
2�r�Jb14;(���R-d��NV���n�U��6��7�q�kvYV��݇���C;�����»�1�Ao�9��$p�~
S'I4_oK�
�d�aO�E-QFɕHX�a�U�A��>�L�ցs�O�������>�c�`}pJH�b	�>ǻٲ��0޽'��!�%�p4����E�G�m��gY�{yԆ��^J#�d�#+Ԧ�c��䉗]�T�2}�zx'�*�ªX4��[�p8�]hag渲�Ѽ�QIJ�w倥C��\񶿥��b�]���A]&����Y"�)|�E�Ya�=G��Ln��"G&�Dz�B,�u5,�	�X��o��Ù��z�h�7 Y*�g����B���w�	�ZHĂZ����ىҳv�Z������.9@���u��(f��F�$�ʻ�Y[�e5<I|�E����
BX"Z!N�s7����IVR!��+��/� ��s"�7}�W���.kA��y�
֥�r��°�/&B\
�^�MB{36T���``�f��h\���'��ݼ��aΟ���Ň�âj^q�i����'���*>Nik��t���6�͝�|���3P����ǝc�Ψ=��:Vf�8��@��E 2)+��tB�%6x���ݸ���Se�a6��Ą�
�W�헥���.%X���ש!�_󏃱�z��/�ݢ��ex��@9�ۜ
�T[�n ��S��G�e�,��.�%G��L�[�7�/n�^�\
d
1k�B�…~��/�wvH�r{��@��Go���a���g�2oF�j#�p,,���F]0,
(���v�ֆ�Z"c�C3�Xu�߀Fz��!�BA�7�<\Cx�?qW۔F��ǚ��
�͒�$���ʲ�*��g=���{��Y��h6���s������,���C�
����c큤����W��J/b�|n�J���7,l�h0��ք�%�}�\�+X,����NX�7B�S�PX��(�pS<��	Y�΍�Rڤ�`��Y�e���W���I�h#[�㮓�t�X��<�6�����GvF��J�h���Dۈ:MnA��zê�j̀�5 `��w�pw��MГ@�X���҆,��r�c!�П
�6��:���U �F2OQX|X�ո��'��H�#OnX.�.��$�� ˌ+N�}��~=ݨ�|�h�����A
`=�G�wae����t�_��d�N�ѷ�6��EC�ձ��6��-Y����YU�}:(Z��'F>��@`Y덊o��j?U`�aPU3�*��T���fr5�L4hu"�<����ߙ"C�;
��
���j\$��Na������\�n�ï��tصi�b�q�(�:S�3Uo�:��`�,��uP�����E��lc'C�����U��0��U��}�L�𩮢�F��-d3W7�R��R�����TM�
�c�LӗΛ�N��87����"#�ҥ0���Z�}7�U.q���b���u�@�eb���l��B�%8�=n�֋�T7�/��o}�O�nԴU�ZH��XSkw���X��#�;e
�x�Ű{k����%�ב��[6�o8���gC����H���:����!�L������e�e��1�k>�Eyk����vSE��
pz�9+k�h,�=�s�^�x6���Q��+2�eT;�J�:�{�_�{�
��	��s��\�fJ���7:�gF>�h	�B�i`Q
�.��',Ê��>a�)�*���(���qK�3NN�8.��!S�B���ۨ~��E�W���=N�vx5,^1|vHh'�b�ִ��>c��p'�U�Xƺ��f�t��W�p5\�w(`z@��?c�-a�2Ⱥ��{!ژ���e��wG����:�5����,8�a��r,jH�B����>����0����߅�f	�\����{Y4Y��c��-�a�{7a�<�)���@c^	)�~afѡe�z,q(2�)�����4[�A��v�Ā�4�r_ϛ��ޡ�8�y�H(#!�	�ௌmg�7����5��p|�?v�[KͼL__��K;SCj��>
�ek53)��e�aೀLJ�ǵ�_������!�^���0s�=㡛w��U�����b��9}U�ʋ�^�9_a���c���5RxL�A��ؙ��LZy�/�O�q]���X\"�ޕ�d����|鞌{�!���$JD���-2���p9��*/��8_(�� ��P(�n����&�Xž�'�zw%i��"i����;�
[9!��j�x����1>+5��.E��eBy��h$d���o���ͦӍY��M������a�f�Վ�fE��°=���a�t�M$�t�y,�󨗐�}n#V3��>KgБp�ac��H��׊�u68	���!d
��D�������u��և��ܓB�F�ז	1Vf��F��.�z%Y:�",,x[8��8�%�fR��G�&�t+�Q���#N.[�@#e�ߜ"��T��|�G�٠�?��h!�q�T���h�>c)6=�`�ڜ�ci֣g�ъ�z�X����c矞��U��s���@�ţV*|�[�@LP�Q1�H����I��?�;Ĝ����ɬ6w��@���zm�J�n4և�ѣ�j�`?rdY��I?��nSM_V��݇�R����w��[��g��mt#����ї�-��,ײ+5�����V{C)A	V`h~A��d�Y�hPXa��l�҂7:84�H�Q���-k����*o�p2k�[������}���r�:@�U�\0�bUZq`e)��_����;�Tdr��bx4aeʬ�e�� �3��8-@�*�u*�9����ծ��O��Sk!�T�j�+��
�1�
�;�+%��+�C+"��
q+t�� �|d�h�4dIJeݨi#���9`u��S/��UV�z͔�;�U(%�8��R�^r%�$k����ē9�p��2τ�,J�Qe���Aeq{_˱2U�uE�Uz#���h�����)Fõ�;G�t�9�_MX_YN�G1�|��_:���A�w��`E/�z�UV(0�(���Vy�h]��ʚp�i^fS��Z�@o�w˫{�>B�Z3b�-H\pμ��Ql'���X'���d��8'LYl�
r܂�p�?����[{�f�6�_����˨�6�]�-YQHS����f�a��DL�j	W�<p���e��i�¯���oX�'����n�;W|g*x���ʣ�‘��	53("�X�������E.	,�h�+���4dWX��q��VB>�隮l���ac�
nY��n��_-�
�.-��*��dC�4`aa�C
n�����f2|���Bi�|;�����v��`�g�py�^}�)뮟�/?d����۬۞�����Y���O�J��(�&���\�Vi��š�*	�/��qФ�t�3sc�@Uv��l���Bo�3�G���])���Ft�a�H�%g�'�8aMO7a���XrLYe6l0�ߏ���B ��謬�&�6��\`.��p*u��Ka(b2��Hk�y���{	=T++i�F6�����U�f�+�W%�p
[
�<?ץ&���Y��qH��ަ�]M7	��XZ�`5�� �Нsͧ%<=F{5�t��&�,t�c���te�Lj:R�D���{aj�?���y�6X`������H��ȱyPd�BNY��A���3V�-��;�.QX��p(di���l�[����ң`�=|/[�ZJv�6�w�x���T!�t8u��v�t��[k����i	�j�VB�%G���.�s�2�]��qc�`Q��dDq��k$�i�b�5�'��^m%��5��M9Šu��ᰪ��#)ϐ\�60g��/�m���K�J����ey�
�.u�;e��Y��gK\|k�VqT����B��X��X��$�$Z��o�,���Qx�j�Vԣ��I�t�U�����X��C��� �{	TXs���}O-0&�3Kˈ��P�
��c���)��V>	�F�0D,�՝�⹐�ʢp�	������Q�B.NX_(c��V"���/���8N��,�ϙ+��m�4n���ܬ�u���:Ȓ�`�	U�UR��׿���C8�U!w��2��­��co�G@1��j8����|La��N���	jݢa��-9�]{0_U,��[5&)�,���@>�R�S��t朊tw����A-�o�Uyv.<Dž���JV���6i�v��Ё�|#��Tp��&vQ��=���?l�W����1��x2���@h�����v��oN8�,.��>��*�.�єed���B[S�
v+Z�8��M��?��X������7y��7a��B���OO7V�*�]׮|v_m��$Wwxeo�I[?�6�ѐ�mL�9*����X��v�(��ɫ��a�����O{=��T��~�]��wW���ns�V7f��h��6}�K8S,�V��� J$����٭8��gW�p9Ͻj��M��Ӝ%�jmĕA��+��#Bd�`8�!�����s3������9�r��T����>Q��=G�|�k�wR����3��%��wZf.v�h�]�����y�U�j�ҫ@��^�%�$�}\��k���Evi(l�/�Z�8h��1�����m&AI%�@��*J)˪���Yu��=�8��t/����3��}�s�1� im7���������N�@�b���m���k `����G[�2?�ia8�T-�Vw�S�ov�����}pc��S����X��
G?�E�#��
�#��M8"��������>|z��/�K�pvZ�dg�\�N����1�ǯ�0D
Jwhb=8�y�Z8��5�J���0¿�_���z��\��Wg��%4���	?n�e�q����m�C��e
�U��.�cS��O�P�8`�lEàB�O����^����_����W������"d�%�ߢ�k��J��EyH�P�YuȓV�t�*5'���,�K�z>"V���U��~�W�=��W�[��$�BHe<��5�nqJ3��U�0�߹Q�\X:`14�ڵ[<���޾w�.v/U��,k���̑���H�$�8�:
����j.����Z�'1�����ҟ�L�ց>���Z��O�4��!Ҟ-���8v���%�qcv���1�Y>�n2u�2fEC<������~jx!��U�z{t~����&�;��<%���΂Ѝ�|!�0��C��ioP�J�
��iN�ZT��j'X���5xG�2��`C����"6�,g�U,��[L��#;2����a>�w}�K�2,C,y9�f�5�MJ��ZJu?\3kS���s�k0%��p)�X	�xƳ�^�{;�!��C��6��rx�3�k���,��x�n҄*��#��ZN�2,�Rް;_�V$���?�F��e���n�T(��`)m�ߍ���fh%���"Y��{e��WV��U�0Rѡ!�e�{{L��|*M���,�i�/�:�99�O'�h��h �l ��Q���4/Ҝ��uLU6Q�Yq�w�;¨Yӽ[He�Og�?�hH�2�y�AU���o�
Nlوz��P�{��f�-_����2�ޭ������+��`0+�n�^1%dY}�j'��w�ĉ֝F�m��
O��,F#�&�st�rQ�k}K��ʧ�޸�5�ɐ7����a;(�He-�a��tm9�60�X��u���}���F��J:�oi)xp���!�'\�V"/�'fQyB�_�K�K�X!���;Y5ا<�4�fL�J���y>J�
;�H.dgX{���Z!�q���Ǖ\L_|w���^�
�
���RH�ۭ\Co7�0a�t�Z��&�썔����K�9`�)�e���{6HY-B7�+��j?H(�	��+��q�>
E8sbY-J���T`ϊ�W4�~�
ί,*�k;��2�Z�v@�1"�E��Kü<:O���4�r��WN�z��&v��y�"��j�ir��I�v�0���G9"W����9]��V�e�1����)��ҭ��R��jqZ����;2��C���	��h���|G���κF�<�͵'A�6�N��C�#�b�#^�l�m�I82�$��0f��c��f��	l��l�̇�Ȯ��VK���8���*���:E�UN��'2<ȯ([�F�>�F���z�Aa�)��E�\�L�	���� 	�bA��ޕ��+= ^-y���oJ8/�f�b��У����eH�
O��"�
�z`����aYA��,�6�"�L���W%��ѲG��/��¬�=������I�2����oLɲ�B���Փz�)����/�,e'��y�!�˗����h��t�.C��;�Yh�>�����X��~���]Z��s������L�:��s���:�:�guM]�M�\����!L�$���z����2�A�`�n�3D��é�j������EV?�C�q ۚ� 1,5��pe�:\��2�2a�=lG���l�i�z���e��.f�W}�M1X���)�
�-N5���
�O����8�ȯ&�=�om�z'��
 tz�ۓ��h]{rZ���VZ&zF�RU�'\N�o��;݋��$�3Ē�.��?_�:S�y�~���^�M�,DK��K�%������8��H,�|ʼnWE�=�f(ش�-D�z����$7�t��R��{�K��F�DO5�e�M�ɞ�e����;�'�-�; ND,�5�4��-�A������P�Վ���o
�6Z���m��t�>����Z�A��C��m�>:~<��侇1.
�k�#�݃a��ޜm*aN
�{|R��(��]=��������,��D��בq����� 7ue]l����EK��h}�]��t��Z1���)�����"6� ^�X+�j�EL�^�k�#VAѬ��Lp�Bo�8�(�"�/u}�y����)V5{
l������p:ѫ
_��3rK�EE7u�y���ᕝr�dxU��mE��}f$���إ� �9���p��gs�.���ihe�{�EI�J�hc*V��+���X\�x�pU�ٓ��*�8��k�y��Ɏ������Y�\�*�ᠩ/��eL|�ܠ.B�Â�'
9�ej�ߞ7��O��d@��a��d)�V6Q38D���++ԉ2z�<6C�Gɖl���	��H��'^�Bdz9��u��8�L�@��_ůhq7�诸.����	�޶,1,e���,�չš=�D��G'��3ߖ

Y��hRְ��"�w������`*�b�>|2+DR��T4�Э,�*e�h<שd0���r���l��ٲgĨI�ž��V2�k4��C��퇓������n�q�r{�<�E�o��c�Q1΂�7��ݴ�C�-�<� �'��|k��F
�.j������
���1���6�6��$���5�v�f�
U6}����攛��,R�ee��a�Œ��e\^*�!��C%n�3�*�)I�JQ1Q�gnr7��u�pU�LnQ�~ʇˆ�:D��D<���5Dv|eU�<J{K	Ye�_2]F����!�������Ȩ���<�y��LB�'j�7}π����t��>�(����H����/�v�,��?•e	�:0�G�����b8܍e馗�֑nE��N��Ɂ��Q���۶��8I���5;��t��Oqm�na��0�ZOsa>.��$�ض��{D�{Ugu�g8���J�U�2E��Z!*��7�}�7���5w�5`4(���,��Z�;9#�R���P�*�ű
�Ycd��Id�$�q���=}Mv+i�<��	\f�U���o~g�5N�� Fm������C/]v�@��įh��L8l3[K+~�Izz�i����Q�U�:v�@���3��-}���ڕK��=�ܞY�q���"�a4Ҫ�w�����^�J��)Gh���U�CUe�V1�٠k������YQ�CW�����O�����@2��1�AÚ�{,~n���2���ȑP�N��F��s��bg��g��d�u�܋�xH�)sQt��0�g��WЪ_#��j�B�B5�[�İ&����w��e
�B&�N�!ׂm;gNRR�vlg�C߻�V@��<�"����[f�Ig=a�Z�]g��u��7^���U?��S������TZn�R+�����B�
����wt�C3:�U2逅c9i�����
(�&^�T�`Q�Pm�m���E���:a�������t��&Aۣ�����-�a3V�\�����g������a�
�v^6!b�ruuui���n�_�#�M�g�A7�h&^�#^Qoo��W^Rb���xs��I�OOv�Mi�	�U�
�&-��)��WS�Eq��P�$bMX_�3bYSD{��E��\���&D����F=���/��kY�c��UV�������������zd_g<��F��Aj�kz�P.2>��b���Z9+�'������AI����
G�03���X�a�ܣx��z�7��Nx�ez�=﷮P��
�w�Xz��2���#��a/�ÂZ�C#��_x��R4��Q�˺�z��L���hr�E�^��,x)X��~R\�'�
�dщ�DZ�W�w��=z���9>�4x..�"�S�Z.5�n�"��'
��v.{�F���f�r1ڷ�;���:��2���jb��<�zd��	V���fhϫ���?�������SC��pQq�tj��.��9��ۛB��WC�_0�2����uT����hԄ��\�Y{�) -�7���;�sb��r�r7zu��k��73X�Y��M��O
�W�"����d��^p�
��v%[C���,��Y��n�Z�{«w_�N��nl�J��fj��R�L `�ab���ot�¾0@�/�V���5�c���˾~8߻bʒN�@R��?���gsaIT41~zF!`=�-�<?K%�i[ŵ����w�pw��q̉Y�q�i].ų�£g�ê�a���,��<�:9Jo�]�C�jԭJׇ��yu*&"��ȰpJ�i��d��B����KG9�Wgy��V��)�Yp�i�v�g���HhU"x�-(��B��X!d�q�MEE�J�
9d�'��V��e?Q��tEt��И��0д+t��J%0Z�P�2]�N`�bz���>ev��/��h�M7�W`�ڤ2A���m]c�]s���P�U��sOB�L�Gw	�Q߼7�\h<���.3?g8vh�+��j��3��q#Cu��������V�u����U��O�
���ogX��|�PtW
9V�ì��zĕ�t����oe��
�q4c�ՂaYx�p	X�}����;�Ne`x��Ⴒz�l��;
s�>����OJ<���u�J���1
�����J��̚W���Z,�=���p!aUiw�`�L~����>c�.G�M�ܮ�
�s��fv׮�2j'K�1�^݂e$T�|_�WJ���2&��Aa��������x��3��F���X��!Y	�h���a�\u��\]�d��+[�ق0:�eyv%�nKζߜ�6��Q�Z�q���Emؓjf�L���>�~��F�
�-��oOvpv���uz��
_�#�gY���Y.ܾ	��8"��	]
,k</�O�^�wй�&�"6��n�qׄ� 7�h�ŀ���:z��S��?U�*B����M������4|��������o�:�-�~ڼ�t�c瀅��+���XQ�?�j����h���V��,�M"���׷��ǯ�Z~�@�+o_�2�E��V�a���9`��oØ�V��a��n�<���}I�z���9~��Y!4�����a�f%��y�D��7]�Z�me.�if��7�Dp`������}B�!��"Q
��V�i$|��a�x)��T˼���X��dd�
������NMG�e�Pu��ɘGg���!X�
�j+����G-�F�

����3��?���3�2���[0,�"�<��>H��ȱ���@�ށY���zr}�LX���*�]Ѫ}1G�cI���-��P��}p�_���nF�e74q��á�D*Ya6�����ƚ���<�El��['�zx��	�" ��];���o",]ݻ�M�b�Ƙi��b��矻ݹ#`�ʯ]ϝXn�6�r���X�:!�D��*��%rI�u5װ��8b��r�\���>����p�@�ݺk�J3�^��7�#;Xmc�{݈fE�Cʠ�(	��:|�\^8��(5└�li製�[��>��pV��\�l���^Z��NE���#aw6�RhD�r�b��P�Ua�(P�7j�\�^��e��p�VD��zY��5�yYJ7,�W��������E��� x)�'�:�jzQ����Q�ap7�!�0{�v	��g��rɚCb�L�a �u8Д��N=]X�1��Is_��N�j��-
��$P���(L�Ik��p���1�B��T���yUM���m�U��/Z��r�
�]��N��cx���
}]P�nP�c�hDž`B,�NCaG���"�~'��v��b��	X	���!�}��:N<���</��_~�4jt�غ�y�N�7�^
.:jKǕ��Q�b�g�`fP����O�M���p����jg�J���Z�����"5��aMV�8�� 7tQfP��?q
2;��ϐ��ū
z�����
��U�X>.'���w�~�]����eY���qq{+�W[YL�l���6�e�?m�-a#�h��DL�NA�,������2:���.d_�8^ل
r�I�2��r�Q<���{+���e3�q,C,@��V.@sy��SI$j<��W��O��&��Uav���)V8?�T#>�.Kc�uT�
�L�o�$X%M=bJL_֮�u��6�Dk�!���W,��oY;π�а8��ː�^�а:�.dEr2�5����^S�q�'����(���59�ޕ�ށX_:��Op���o�<A�X�B�V��Z�����]Sm��a��?׶<��oLj~�{h��s��aIκO94��Ji/����i#�P�W
jk��A�$�X�LXl?UB{_�Y�#��"`�ٕ#�O"����g���>m
�;ކ�nQx�Q����Vg�����k�X�l������9�Sg����9S:���:�v���wݟX����ԴV�Z�)��{�wl
�a=��b=d�o�L$�X.h׎2<�j]3���^6��)֨���~�������U�4��y��5�%��3Nvf=�n��r���sv��B�#����ԣ����`ݽb��h�^�԰��X�ȏ�T�p���h���3��u,�,����a]G�����c(Y^��rX�ʒcԯ	`�v�����|����O_.9f�e@������j,?"�"^y�^��ᤢY�WWdG���%a�s�3�����.�{�q���w��"Z�k�X~zfK'ΪC
�Z����o��W��:`����kB��EC��vz5�jPw��2�ͳ]�V��k/���ws�k�a�,�q�'�:�A��z7�N�	�{�+۰a��"m�Xhx��h|���XƯ��m�m�X|Qf�e�U�"V�6�5�
�M�ϒ�P��u�#ٺ��A�Q�CIp8|4�6av�<弪��P�(<��!���J:�R/~�|��	��!�@,�,Ӱ,j�C�-k�U�b�T�bz{���ݞMC[>��Q��"/Zn�Ȱ��pX229v,��vl{�{r��(hc����n�`-�ꈹp���
9֭C�ֱȋ
}G��'��X�L���}w�PR�Yp9X
�wn�
oo�iK�J�U�׺S�(�γڇ2*%�-4	Bh����ʰ/K������/f{��m��&����{��ݗ��-��8�e�U�e�j<j�w&O����(��8�ꇳl%���G�<ܗ�a&bM��`e��W Oxa
�1���&�H�7Zܘq�t���i&4���u&e�
.�A�iI����uu�icIGȒ1Bb���o�8���?�֪���^���L�{��$���j(�:N=S^y"ָГ,�w������k.l������-#�N�#�3��ʐ�q�.��q�����#`a�c��-���ʆ�@,)]t߉a�9�=-��Y��_#��[·�RguJ�
m���z��+Yy�#��>P�彦��6�H`qcuIv ��{��n���E{����a�n���-�&E��͗�ư�z0�j8�H��2/u�?^�a�zq��û�`O�T"�8s��� Pɋյ}���i�J���<Ne\�2�*�'��!h�@f�p���#��p�QPx5�]=����q'ǧ��v�wq�������>ֽ����p)w;�h��*���R�X�U�p%��
������9;��g_�b����:\}"�H�}����c���x}�d��A��@�$�ﴅc�����+G�]������U,Ɩ�]�D�U�T3M�J3.�D�<�@VZ0W�#�8<O.Ԭ��_iT�^��px]>��mU��t��{��ޫ�1`���t̞�=��aٳq�ι�gC���B��d�q�ݗOq��B
lĬ71���\��;���r�i�����ukX�^��!P*�:�8bx��ݩ��M�f=�Ԭ�+i��4������D��n�ɞ��z�Q�WX���3��a0BH9-�7�����*��qap6�X'T&�r��=�)Փ��L��ʂA
;clp��(tR�d5���h8(ms�-��v�p�+X��/Viy��
�g׋`u6�8�%��ز�VYU�� �zOK�V9�B/Ű�n"�M�__�b���*֯
<@�7!���oٵ�O��7<���yU��|E�л��"��+ƒ�u_��?xI'����s	�F��b4
�Ob
+��ܓ:T]į�+���>����Y��ʕw&���w�B�	���HB�9������
�o��:��+X����7�}��㰅e���60k#��/�}�T�Č~�_k�\�r���'����<6<�Ռl��q8��<g=�<cx㖰aٟ��֬+���<g��������p̶���w�r>9��X*o�^�%�gϲQw�Jq�h>	�=T�X��O�t����:4,��8F}9H��
^����m��A[^U����0Z�����,tG
#a�Kt�b	���ɚE�!�s+ �Z�I�w2�V��VnHP���g��� $	�g�
�l��Y��8jfw��{
Y#�~G��XE�an�D�H�In��䇮��?V�K�Y�)�����?��NJN�F��Y�P�
/��a���U��*2�X��R�bmjo<���ʯR5����#�U�]�Wq��?��aթ�&b�7,uiBt�
�Y>���V����8����z�O��ۣ�/ĉz9I??	X�aQ�? s9ѫp��Y�]"r�a�3E��	X�����I��i~<Kx�X(�e?m�P�!��A���ij��l
άʠW����;�>�xa5�<$�S-���A�U�udW?2'�ħ�l"�VD�;Â��B
Ӹs+HXVPv�����$��-�hp�j���ʻ�N�a��!;,���ee��K���r�%��;��������'�d�G��e��ȁWq��c����؋a�D��-�W_��4&w�(�̈́<�FLZx�Tٶ��~���=�H��/>yp0L\�(A���<X�F���
.Bw��0���j�j�5�����t�o��ao8ꐰ���f�AJ|�XUK��B�U?	�-�}W�к��aE�-�F�0-��������׀�"��.���	O�4�l0��֎�K
�#�3_,�������inͰkʵY����,j `�W4�<��s �?o�cI�G�I+CS��
(��s;���=�m*)ݎ�^�e����Z�:�ND2>��mY42��S���uU�̾�3Ѽ^4@,�
XY�F��j:R;�M���!�c$\{ĸ.t�����5�2���&��MN�\rW"��D�i!��V��e_r�3�b�[�LC�B��?�;� ��U�:˃�FO�l�Yo�ӝx5��ȯ`%���N�5�N��f@������L���3��ya&zh5�F�����W��8c\�_`t_�
��#V���R+���6�a²W8��ݘ_]3��kx���^�����_흋���Qq�O�۷������7S���8֚����j ƈ|���-NOO-�z�#�ó2�v��)K�
�|x�!
�T���f�jq�U�Z��E,�0��p@4�7%`�,�!ٍguI[�
���?�|mt�'Ci����%`�yxE��A�VXU��v;y��%Y��9]�C8<�c2^�X��t��D�P�ʋ�s���^�G��2z%C�%v�x�r�Al��F���L�	^
�S3�y�˞">hR~5��T��G"!(�l��ÖO��c��s(�a6Mb?ȧ5bD,����N���}��%܊`}�5_�T�$b�����2���x��t9�I!7�;�/"^�bJ�P�;����+k�2��?]2�먋�X����}3�:�4Kb�;��H���"̚[˺�L�X!a]���y��b=Ո\����/[?�Jb�{�'ܝ���oE�rq���%`�Y��K�����1Tm.�g�P��v�O�2x�
���&�y�M>��ҽ�&;��������	�+\����F�j`]o��n��]7�o�f����%ֻ�R�v.ay!r�P;�Z��-�`�2�Y���9��N�wJ�
kx&3W��Q�d�Ǐ�7a�F��7(��@�P܇s�h�el�9p/�Zs�wK6�Nt��I+nd�b�
	+
�d�U�_֞�A%8��$`�����5��Tҗ[	���lxE�cǯ�wp���̳�f���uT���(����r�Jnw��b��/l��V�/
_���s��"���,u_�>����ݣ~g,��ȫ�t9뼺kk�w�herX�l=���U��\;����~�~��۰İ�e����m(�>@M�$be�{�ϝa*i���>�����hk(K�[X�X\.Ea��F��~���eظ�R��C��V�K�YAZB'(+��Ƨ*�����k&V�Z�V4��
4�a̦yc�|
[D5���qؐb�|0dl'�v�w�Yj�y�T���]����������pe�OЫO.ŭ*	F��)8��Fք�?�b?f0����u�.2W�9$L�~�8�'2o�J琀=UO�ɔ���TX<����F�)���xB�;ǎ]�ք �Ao}Z�g���N����,�%�xު@d�qyd X�v�������2���Ӏ5�߯і�\GU�׆ݢ���L�������S�T:ʊ-��E����^���a�$,��{��J��o{e&|��
���ێ�7P��g��ov׎Pـ̂u�5fW&�St�3:�>Uק�^@���Y��1�Ժ�:y�N�*��T�Lo}���'¹�s�N��W�t���Zʼn����`�����HK.A�0lIx�xK�T.6���i�k�s^q�.JIu���ֹ��N��)��Ҳs\�Q
#�:��,��, =|������at��1�S�v�O^
���ׄU���f�qz_������U�#���W�MR�f�sQՕ�L�,�����)��3�W�c�`�����B�����U̶O���uu�iKО}X���K��R�y���g���Y�Ȳ"�X���tWWW5��a9����'�H.�SO7ĭX��j]�{�7m<\p�د��	IM����u���}胿����l�`$�?�j0�`�O�\a�j2��]�'���F��V��i��6�NYJ�p3�`��X]��B3zZ: 6?��4� �e��u`F$�&oB�>Թg�JU:��a-�{NO��w�^�k,l�-"�p�$�X#t�i�i�O�9O-��Ξ��X��_M�rn�����/���Od����<���k���5f����,B����Ѝ�}J8��Ϝ����$��<��ᅟ�)D;�&���Y8@�nĻ�0A���\�Ace�(���,+����s�EaeL���#LP�˪��a|O�':���]�(�����5��}��Q�'�IJ��n>o�\���,u��d@G���ĸ,gVky�I�e%����V6}�`u[#ө�R��B7-�ۙ�����x��{�+�^�;�W�kX
d���
�G�^�~�V~4���)��B��_H�>��#�^�s|�]��њʍ�X`Y �ѷ���L�
�=�y���R��o�l�Ђ>�s�OM-Ld������}`U豦�#����'NVQbE�5�X��>�����6��P��kmB�Օ��R$dLi�m���p{2����@:���T	m
k[��� �������;��}̈́
�G���&�r�B�_N��)7v,��o8N�Zf�����UL	),UV!*.K�y�h���h����(ͺ�,�Y��5��Z�6�4�M_���(���k��gӏ���1�ޙ+��T9v��\AJ��Tn�n�D��`m�a�����η�-�s��56	���`�o��S�_��޲��r/MUa���3-;B-�q�9��dP�P���q�
�N�=��þv��ZB���EQ��%<�N3��qq����ó���L#��Ř��F�t������g���q7��Ƣ�ȟ�O�(T5~lbRL��M]�"��{��hŹ�Na�5��a�<Vr�Xr��VX�(�叕��o�#,�{�+����ҁ�˝���\�C���cB�*�<���^:� ����G��q�S#�Q�,
��`��gs	�^��hp죱���q˽����,��q�p�}vCǸV�u�N3�\�)�'�eM#2u���t#��;�$�;��j�f��N��&�巷���C�uƵ$k���U�Xܰ��}���8���5.�
�e�=�,�r�N�zh�P�^VX�����%�r/�ǭ�Ǎ�T�`��u��kɥ7��A,C"�J�X8��X��+�֝��C���J�݌�~�/Bᙉ��=fO暊A_o
e�-��Z�WC�3�>(���Y���G*S!���s�䜿�D��Q�}��H��&�s�g�.v�:�~	�8�;r����(���&�ɸ�bZd��7��`�?�B���m���5�˴���@�L�����^��.-�t�7�2�B��v�\�/��(�NUu�S͇r�^�[Fa��o�����Ð��+8�/!��n�A�"�҃�j\r�䷬�܉�{^�)r��VHV��֋�xSO�;�loƶ�#��l^Y�����*�����Lڪ�����mdM�Μ����AuV,7CO-6�M�eX!=L2��K�\0%���_�Zp�*rk��E}����H0l�n�?ؤ�����3b�жOX3w�S�+Hg�@���ҕyX8���7�+��J��c�8A�)��x�਄������V��^2`����ʵ�7D�F�^�hFYñH�|�Y��„!��(�����7Rwi�oz��g�z�QC�h�Zga�T�	�o��T
dݯeW8,��5���7�"K�݌�����(��n�K��%��8�i�%��)]Y;A[J��i ���c:^�x��o���s��?<;�֡��%�|`Q�
{@-<��pn�r���f��\��l��r��H�H���h�M�����;I!xG_H��q!��y��|l�u"U����^���(y`�{���Ο��l;׎��Wp1��/���5Xd���Ü��.�k��˨g{0?\dyu�R�y��*M�ʟ��v��Q�m���:`yC8��W��d�b���ւXbٜ�� 3�P&^qay�3�[?A��\���ӔW�e_ɣ<u�w�W2â�&�W��r��-a�g'�B���=�Xdk�GZ�0� ���%D�ń����55u��2y(ܿ�SMi6�y����^�7<���*�o.γ�� 
���7�<n8}���:��h	
��3�ҫd�%�Gm/3��Cyj��&b�"�,/�%�2�)#~�_��q��O΁�[)}������7��O|Z���l�˲���m�`1��`�|5V��F�_ζ���3L�A��l�",q�PhigMΝ��7�B�������:4�,��֞}�ΎކBb֨i�y\Hu�X�ms�ew��5L��=�.�9?b���&j�,+��!�F�V�b�P��خM���zB�]�G���jø�8�l�爅���q
�1���oS�oEa�bv�[ɼ�e�ە;f���w��F�����c�/g�����ʇE�W˹/���x�6�5I�)�-!�G���p�9�۝Ì<����~�r���*k��F�hSB&ү���[V�*?�`5�4���i@S��ǁǨ�]ΰ����n�pVm�vorXŧ���4�5�*�%X�T&�-˖�A@NKtѕQC����]DStyY�A�����"�,{>Yc-�z�ƠP��X�?����~�~`��Ae�v��*T0]+4N�u�d,#5�r�'���3��+�79t.���+ڼ�ma�r���jRl^׌�Y#��!)�Bi߯J�0�$�G���;�����{GnBh���Qa�e��.�A9Z�'T�����ä,�
��2���
��mA::�Ȕᐷ��˜
y]��ҝ�N�i��%��}��Ar�4�s���!�tA*J�ژQ0q��/�W���W���&������d˛��Y��^g���G;0��e�}�J��
�[�/���+�*<Y��F�
�&l<!s7U����i�����C��]PN^|>��w���Bz,i��Zb����K�e��&�n�Nw��,����T
��>��0�Cv�[b��!�Ɍ��7��S�dk{���WY�g�z�㹝
�z|�pJ�M�<�#|����u�ua���jGBe����N��^A�
B���ؽ���5�aa��	K`����-�:�)��Z�ڎ̒�*[�J!
�<Pe��Sʹ_ΗE�N$��`�x����Z���/��
�p9ٵf�1�тCиR��B��a���!���Aj_M�bJ��f��A^���"����^S��-�B�j�,���9G��
��K;s%��b�)��H,4w��'�0��������׾%��r��g<#�Xī=��;7,�˼����V�B��*�
����ׯߟ�l��@�K���`�����Wr�gi���Ι��R���X.�� �
>���b�fh�`��H~݄����[��~��Y���N��3	K�0�5l�g^`a$�y�f���N00k6�:~ہ��t���S��i��sT��&UX������tA�Y�!^	���TK�Lz���2J
Z�̾��~��pK�uR�3?[��.���ټK�����9m4	
��a�"@H�K�X^���\�*���N��3���j+�M�53=�bU�a�6���u4O�-o�V��	��!��А�!q O��G)[	9Tu⃧4��n���
��tsQ8��HAU�t5-T<�'�@#��S�hVF�����+a:���~�M�0s�3�v��>�}/����V=�w��1Y#�SĂ�W^5�0I�0D�H�k�b\CC�����(%��X�;
�̰�N/�ˢ�^S�-�ϯaADc��BC8*c�1t�!uϯ�,��	�Fޖ� ��(:,��a�5�G�:��/�U�fl�I)�RqEU-�ұTJ��
S@�~��Q�\*���w�T%�M�+�3�%�}��H������:����0�X��A
'	����
ߙ��f��2[��,�n-O�
u/���y�9\��Ȼ��X�
1g}3���0�9P���ޝ�^]��,3�R�J�d�X�M��pNB�A����7?p1 �Z.���ϰj4.���b��h�]	���)#�BGz�ǔ��,�t�=p�E�Zb�ܕ��e�b��ηcMeU�W�v����	?~�����&3��C���C��Z���u%��M+��D
�a����	t�t{��>Ϟ�(de�y�HG�k����?�`(�U�(}����9D�V�ˬX�����=8vc>og�����WBO���������Qd�c*��0MY�)��V���t�:�r��h
��]M��yV�y��:�H��R�W�=��N�;����ч�YR��,�';^������_	�s�y�?��Vh�ql{�l�*'S�M�>RaH�z4a!�vm�g|:����6���+��
�������0a==���A�u�8<����̩wJ��eTL�۳y�C����X���x��z*��6}�]�9l	X[
D$��[�a�s!���AT^�m.�\]�2l��p�"�-�&��HX���\5�ݒ	���t�Ѫ�)�c���M�Nflƿ2�,�a���|��,��!�!��X�x��8��`=�,��;qXU����E����p���E�ۓ��=[���2�/w3O|����:��{ڦ��p�p%~	%#�e�
!~�o��_|M�Q��p��W‹'���=u�J%Y�9�v��Gu���M��D�:C�*꿋�j�Zʴ]=W�8�T,3��Dq|��h���g^7���*DX�J�τ�j�k%`�~#y��u�_!�b���bZ��2+�B�T���k|P/��ˮ�nG� K��O���w&k0-Ïo�Bܰ��I)&ʊ@��'X���k4,a�,��q\�T7\=���<�~\���}|h�0h�n,���<ҭ(�6�Y���F
섩F�X6�ͩ|�������J�n��rء�h>B�k߰f0�e8u��q(�C��59�"\%�=�>>u�����`?�VxPڋ"�v*>/,�kֹ%��
�zǫ���¹%�[�b�
+aa�"�dm�{<�K)�T�*�)1i�Žgl��x�{�����o���恣r�_'$_Rz�~����R0zYJ_�3��bؽ�Ih��.��ܛS2�/�T\UL�Y"�=S�.��z��k�蛋��*Wԇ�Y��(2��f����E����=���V�k���u���s�^��:2RIzxc7
�q��
���ojT�?�L��Wp?�f���?_
)t`b��*j��o�; V��dk�,�i�Sx	)�z�:Uu����F,J������&,�H48���<���}9��73tCY���RIZZs�sL���`�Є�,{���
/s&�Nj���bX2��`�m�^o�~�+��T%Cs1�M1kJ���F'����~��^��E�Z0u�',��'^_xXP_��n��hH��廪;�`�����e:�nRT�j�݄W¾aP
ϯ���H���6B�\�h%*���J�a���5�j��H�jT#n��97��I�E"�3���f����o�<[�|:0�X��f���"��e�U]��t���_6S�nЫ�|�>n	A#H�UV/��H,
X7V~$�T��7j	�^&<^�Ăp�TD؉ԕ�j��wڳ��g!LfL-0���
"�xa��gϮ��p$^�9�%�>N'w�b�is^B��H��y�n�^
��?E�P0�Ԧ�s�A�X
�Z���c�tX�9�ܗ�*{�,U۲����:
~��+%�s�·�H,�:��4�*���Q4�
��EE�RD6<�C�p�8\�����'���ώ\4
�]�ň�"�~R��J��S���霽��I�ܚB3�j�IJ�\duX�h�v���mW�c�߷N����&,�o��Ba9�P)8���&,��ۻÆ��+��<�#S��0l)��Αԙs|`���l%�U
��2fb$��9��C��Q��|s
K�������oY9�d�:�ԕ�t���v�\��Fj�š���"��r���&U�iU�G�V�W^r����D�/�;�$�VE�bm��)!����I�IBڢ�+s�>�Vg�~��0�v��c>c圽��W�U�T��f5@����7��W����z�뢦"�� �Ь3Y�s',<SV�����X6���J���'3��Rv��91�W֖�g.Đ"?��:
�Wĭy���`e�L��#N{�t>au48��t�a
Ru�1(Q�֚L��Ž�7m���ۡ�:u|e�Ƅ5<��T�h)�L=+�
Q���(Y��Q�Lj�&u���Bj�^#�*�Ϩ��]�W��a�5��E�Yo�K1r�-uU*��4a�ύWN��S�Ք��^js%xu�Ѐ~f�IⰎ�<�������Eֻ
��z*E4)��X~#Ԛ��&��/kKoJ�� ��7�H��P%:��r�_%��%�C�=U\%SJ;fB�L*#kf~j�RR�yV�x����?l)��5�����w�a�h�+m������fR+�x�C%�4�ګ�9
Yi-栗Ov��j{��=��P�zt�N(&��a=d���4�����P����C/�Q�WWk��>>?�����u>o�)�7���!	z�H,�ϐh�EԂν�{K�G�p-l�V!I��[?����NST���p����Ac��Q�5��DQ%Uh�6�<�թ�qfˉ�/�MpXJ���H�Y��ɛ3�kw����HL^������ʢ�0c�W'~tO��B�GvM^͛��i}�U+�������8�̅!�V?
�]<���!EKw�E�]õa�~��k8	9a9`]�ˈv�C�Ε���]�kw� yGoM����`��׀Yl��"��CU4�.=��
{��[�.k%/o�U�J(��Y>/�u(�+Ol�l�^�9�I��?�P'V�����@*�>�@�e�a�t7`!�c
�I1�b�R�`Ҳ �G�"��uU���J`���i<���!��N#������8_R��Y����90MY�������+䙓�k�b��>u#��?^�u�m6��׿;3�0�N�,NX-e��VJ���B�����_a���[�u�Fz�G�Z��S�3k&����;����4�b��1bݠP0�I�^d�U�=��1#��3v�$�J�����
�>��M��f�(���:�ܷ"`��e��f�9�6g7����E�`��Hwwb�r��ěFԫC�q.̍�{�0H����+�?�v���u�m+¢M�d*�Дh�jRS���dEk@�X=;3��Pi��I�$Nbk���o���D�w�T���%K�%�Н!C�P�g��6�����ϟ��L
�D���h?��{�������L�#��4S��dҘO��OGhu�r�k�E��X6���{�R�ݓ`���0�q��~�$����2m��5�UW�bY�ܐe_��"�{Qs�G��]E�F�;dא��J�>u�IϬ�����¯[:!^oo�t��9ĕօ���;�Y@��J}n��O�iK��c�$_����Ӛ��+���#�އ���z�.W+�����V����*����aZ�4/����Hy��QX?��Yq�C�N�-���⪚MM��l���`1l��F6���l��t@KX7$�'�qg|К0���-�:UW����^qɃ:�NhG��k��:�k�W��W/�jW���z�l,���^���_�y�Huaa�~{
���Ns��R�Ċ�>o�{�#�����Ҹ��˪'��	&C�(�𞋺jN�t��V�
�3t��\��2��]������K�5�gs/xX&X�n)X�1�7J"��X�}���6�JOJ(�+�
y5��*���y�1�P�9�s��6d�{Yx.d�!�S1uooY_]p�n���b�-nXw�L<)��L��l&|&d��zV�2���"�bqZM`�ϩ�J��usG��Y�*�ma1�װj'tr������¤E�S�q���{6�b����R?
jN֘CP} ���s���}U�A=a��03̦�\��?ϙ�I�Z��y����0��g�Aآv��9{��*+)�)ӸQ_=~�_y�+HV��/�g��m��`}�^�!'�e����SV�Փ#�
*$���+ܯu&�+
X��'�]�x�Q�ˡ���iX��
�̱�a
���q�K�ly�`L��W?�����7w9~���'„.͛Uv�:taN��VE�j6�J��WY��7�n�qϗ��q��K��߻O�2��-X���|X�a�u�=&�,�-�ˏt�����7F���4��c̰(X /��iWeX�ɡ|���r3��nҟ�ytN�N�f]\ѝcح����re��A�Ot�q�e�&�b��x������^�6������+���2X���W�lQ�pD�jJs+�Q�|��K��Ϋ/YGO���	�)�ȭ�E���X�曞7MҜ��h�&�]g9�:
�r�N1�⌯����Y��ñu�XB̕�WEC�ոf��IT-��O���n��j�3�l�-�
L��@�4�p���]�jGk;���Ϯ��_����L�Ĉl���^qx;����|��_*��!����6Ժ�穙�`�O� [�[ఢ�R�UP�p(˯����CF�U-Qy�k�'��~�j���	gg�LP��	�lQ�a����vx:1�>EЎC���ҫ9{U�fet��!���z��+�������5��|�ޥ�e�t�[E< g^�J�ȡ,��õ��������{,	uQ��euƜ��p����`M��c��"�zE��m��H��B��Ƶ,e���)��J��w�=�[|!X��x��2���������"�,�Owі����dL�{�rr����G\�`A^`Q���©�l����#�kN�5&fjL�ٹ�WU)S���,"Ϊ�̮j�4�>�l�$�[�)B��j��7����:0P�LP�6��ӫ�LN��!��RO�G?إ���rm]�:RCNʫB����1��*���[�:�Q	b^`]f#|n��5��ا/v�\�C����>S����*]�0NrKȡ�}8�>��\��]0R�ϟ?�.3w�L݄�DU%:�J'�����p���+޹��Cm�Z��~�S;\����_�7Mv�՘����������"9"�S��b�_�c��,ˑ�v/(�j6�� ��6�B�!X9��P,���)��	���nzu�7P,T.�~�|~
��_C[���f�]TB58~4��DP�=7k#3"n�ӏ߭�z�`%�J=�	}�}3���rp�̍pɝZB�{{����"��D���G��c�v��JV�dғj?(�	�-���b�8�ں�Y\WUd���jQ^<bU�_%S:/
g9^��C�ԫL�p+��lcC����E�y��9�_�-aG����� ���_^�HAQ����(X�
���߸^)lzD8��"
�b��w��B��D����9��}t��X��4��Br�Eh��*��#+�q��o(%?8��l�|���U݄s*a�6�ͳb�%i�F��+�g_���x�}��}�U앩~���o�7��ܞVX//��W!X��r�eU5�|!T�۱�=�i��i�2e���7b��ak�˔�x�V�Zǖ&���斿=d��0u�۶n{u妆��b�,3������(��Er�	�YVd�q�UœBd�ٝZ��s�)���nL���L��JB��(�x�5������!��t���(�:�w쎼1����ʊ�m�UX���@x�x�x���ҞM�\�f
���B�"���VQ��3���	�E�j�iU��'�թS�c��/�m
k��|�1#��*�Q����{��?�v�aQd���xK��1z�fv�_q�:��E�C�5�@�Ud��+�=E��X�{O&�U�e׹�t-S�r.�f,��
a�2�X'1,}��-��D��7��&�E�W�R��HWm�"X�2F5�O�g4�	�!^փ��Aڔ�������a鰆�_�},�"��*�RNK�]R";?�4�X({���c\-[�*_e
��-!��9h+Z���µåt;�S���e�Ĉ���wY�ޑ�%���R�5Oja��b_ȑ�*,L����M�6����+���'����	���0���+���3Œ=K�c(���̪W�*y�GT]FM�T�^?Nu�r��cUxDK��b�����m4�9�Ԋ4Q`Z�}�'O�Qf�k`�Eۇ2;jGHO�s�h�v�J��*�9�=䊥:�X��i��۾O���(5��V�Q���b�G�R\�bߤ*KwF�_{;�&��U'���_;
k�9�����!�*X�Iz���`A��dÚ��c��'X�5,6gl	퓑�����F�����p��Ks���nn����������HT}R�W�V���z7��"$��<�0�6L��ϱ������	_JXC)XQoE̗K�bp�k�\.ZDûb�����lj�T��_�������{X�s��n4k��Z���Ͻ�-�m�dY�F`��0�(��F��+,�+VY�/�w�$���}��Xo�휻a�,ZC��>�Dsh���z����gVWt)�G�
 ��F,#�� �)I��v������P{��0w��/����%�N�A��чW��.yc���+���L���`���cBU�DO���l�;����~����\�5�1��,�h�j�.!�v��(�bN(�]p��e$u�C�������a`i'�s԰�m	���l�'N̝��d�:u�mt�����ɫeVZz�i,�~���Q�܃5����Q���?'z5A5/�A	8��P�y��i���+�?JT�_6�h�<J�p0���cG(��d�����º��{z�?D)���J֜6wg��=��4
/
���Y�^���$Xw�Q�D����e�X����k[N�l�,�ڋE��aˠpJ�@��%_��t��!9>%r,%�������&���u��H�ʏ��
Q?�`׃�&���:G,�g�ZJw6��o���BC-�M �Wn�b���ФX�s�w�\�Ҫԯ��Ub%�<�1ŊB�Lif�)�3��-R����Z����((IJ�:RT`��0�����*�g��K�l��_�-�2p�m<��KnIeA�V�ؕI�Af�TGv�S�3���L[ҋ�\�I�~O���S%�_]VY����"#=�����(F��&�xV
�49�C��/��p����s��kCS�Z[�탬[4���(zp���a0�pZ�F��F��/+3=�±~P���J	M6�+Ұ�nKs�>=s�i�,_��w�r~��W���&�D��t��@?�5�j���9�M����J�1LA���*�\�9��%�n�Nk�WT���0�X�O�=b�x�M]p��v�]��
�ˡV�~�V�X�,8���\�y�̪dl�kI�:9bAu�I���T��hu�)눂��9����<���{!q��i5r��.hv����6H�z�O�f���v�)��qN|:��?�)�BJ��
HFn����W����C��L��dm�.�4a-"��٨�s�Ȳ�g���W����2�C���6�X��H/RU�0˚K��Ü�*�/ap�+d���U��U~U~�Uξu�]�JH���'��7ӌ���e�UD���2,�g��pV��,
X|m�g�W�V}�A�3�-�j��3��=���:d��2��J�	�7Jk5�2�;a���xb_	��x��k%�G�A�v�A	K}�>�e����`�;a��R�+rX�L�/+!RH��_x3{���_Ӛ�2��4��gQÕֻ
X�.:�a�ӫ���ɷo	�[	�SMX����W/	�LU�ܰaċ��l�����'�W��"��LQ�Ѵ��;a���	�kk7/�Ф|!�P�� ��[
�B 3�Q�CC���
df����I%�F�tFk�E��A�/'�]�8"dzx��N�WB/��(/L�5U9yE㵬9�����j�\��yU��n`i���f�,��٬U��"�
=9,��t�
�Xˬk�KJQS��:��Z�\�E^�T��BiXv��N�+�q�Se3���s�`��������Q� �j���p>/�H�c��8v<��}K���Հ����^��Yd��YE
H����e4�"�!E'|~ȹ���k�
*�KU��r�*f1u�����?�}��A���D@��=V&Ⱚ"t����4��UX�	�?��>�w�u_�>,��.��'>�5�Dc!���.�}m?5�:U/^C�̦.S���<o����"`��V�L�L7��>u�[s^^�N�RY���<»�+x:4�����fk�����3Y��;��5툲�VQ�j�����S0\�Fp��y�z}:��^�*|�
��U[��8,��K������Vһ_{�rI�rdH]1�VR���"��
�-�i���3���E�!Y���)_5�(��ȹ�,��|�g�mƢ�օiXȧ�4<Z�{"\��m���*��WM����α�>x�%e����i�W�3TA9*Ft
ܭw~۹�t�wx�~��������F�u>`ل_��F��-�R�Q6M�%!6B/�A.��*���q%��c��m�S9��9����澿f2�W���e�nn\e4{
MRw豊)���S���gKg��aߎ���w�L-��P���������C�LO��X�55���۽\����w�Ȕj�˖��y�3��A܍�%s�,u�XIn�, �Y����Oq�
��i=���Aw���4�X�&�U&���dNH��'+�6�@dٲhF�wڠ���ϟ�����LH�LmsȂ��i+oԡ�!'�߲qkк-w�mTc�xƘPy�8��"�{��|:�u�jP�S���{'xB\)������A	'��*�f���e�B;\
!u��|��%R�7���8&��0l.eĉ��������ˆt���QE�l�/Z���#a�W�G'��]��=D��ܶ�c7]�Ch��tXJ���SQ}��:��p��0��U����a}Gө'�J9m\m���D�<���΃"��X
�`U��y��c��WF�|!��ޡ���J�c���[	w��sw������s:���f�$��h�i)��Xm����!RPH��@</�FB���s��j���tӤk���w�ǧlD�d-�y��A�mю,�oL&2�d�Cb���Z�5�,�[��%VC�K�M��t�@���c���m��B�L$W�7�����+W�&S�;<�3YP��[�Z�&:�$��t!!e�U�TUÚJ��a
?M��+A�yvk�0��21�nw�XVx�j%�j�rI��Z�^+{_I�+!EƆar����z&�Ŷk�K����kyXTMt*�Z��	Ono���h��|��/v(I�e5�̥��U��E���O��_	C�~K��e|��)��p�z�!�_Cr������,S��#�g����ߨ�c�F
�m�L� b8ˌ�e�o�F�ҥ�u�[U8�S����ǵV��㰒�a��#a\	��``��\
1�3"�io^#xJY�<"��RO�'9z"V���&V����fSF�D�$?њ3�'V��	:�ʁ�����ℍ���Eb�
��֞+cxu)/�q7>�(�z��-0�dxu}���'����v:��7���3�W�O�����^�޶�a�<��&�V}]�����s��`%��51%t(�4O�ldB��
Tu��.ME�����b�u��6r�yT�
�mgŨ���^��qtB�Z�ȺO6�W����]\�
`�ɚ�O�Z<*i�,�ɾ7����R�?O�}���7B�2��]�V�jx��և�0Ke������=F�{ 	5
?�bި`�����꼲�J�*r�#z��JS��5+{����^V]��jP�j%��X6[�(6���KY
���3��lX� ޱb��_�f��
�Ļ=*XYZ'�n�k�e^��T���$�[�Z�u�A��\��0%� �~�'�qá�&,�;��G�\��j�M�W������ك��ڄuzIܕ�W�N���&�~#�	�����ا~�<���RvӘ��t;��~��X2A����Q鯶T�ˊBLX��O֏.N{�*ߨ@`ED����H`�̃,��˫�\.�Rԋ�<���K�Ql|��ep+M�^�+
�!`����.I�@��(��Z�G��(�arv��� �d"�4H���+o���R�\�+��6؏X��\�w5A�{�"��A��BhVB�E~�|��;D��̈́��T��Y���J8(�EU��l�
m��_?�I�+�O9�����n��"���C�^e5����i��JB��ґ��{EV����V$��n����pt�?ɁX"����3�f��=:�,7�gv��[�J�
mX2FG���,>�l�ٿ
N��~����%C��vILXPX;s��h>�'��z4GR��#�b,N\eM6u�wJ.x֎����o�e
/Z�w�a`Q�m��s?h��u�Ĺ~��71e������,D
ްzݳE��d����r�P�MXR���t]kS�4��~X�H��z"�
S%)�R�U���uw�{�	�8	N�@�h���ð�(wC��aD9���2�|ID��7'�H��9˕�W|Hyڰ(btŗab�t�vF2��	�Ź��=�-�q�F�c&=�d%<���m�cHG[6M 9ɯ4^eV&��Hw��#ީn���9m/�\�*�k%F�2C�"�V�a"'��nz��p��UX��뚝tJ�,r9���h‘p@,XU�j�^�[೤�s�bQ�
�eb�>Ŏ�Nk���+��^�����"Xi��ҭ��y����y ��8O�����d�}��#��٫�.������,�5��v~9YG\{�6B��s�{�x�fR��]��Z�ȱFLV�Ԋ�s˄&���Um�`/ߒ{�pI����M��*���h��=vBzs��h�`X2�Ly�<��"���u�<��]@łU~��>��<V��g��{�\>�N�N(7t?�H�P:�vz�σɍ���4}�̺Zm�!/�����U��|ž뉲�Wum`r^Z#�,-���8����Q� �$eÔbԅ�
��]�W���F��n��泙�x%��=Wo�\9L��	����FJ��W���xŅp��O��a�7#����g��YE�T���.�x���K��?B�U���_9��H3+���4o��V�p�cUU��?�az^erw���H��!k��k,��J��V�X.kx�����i��Ec�1_�ŷ���u��q���'��om?��,V��� d�,@��-`�a�WU�}�{0K03o4^��vnQD��a-9�;�d ���myK�GCv/ڱ����n)��#^�8�5�N��z��`�ݱ�}�8�X�W�M���c��Ѡ�B��xdf�\PWo��1�YyD�k�!=��)Mn�pe�Sx�3�S֢��
!���Na��l��2S
M�QG�� �p*�r��.2?SQ���ε�SAsVx�
�N�aپ�	3�dT�s�W�z���*��X^��&�^�үP�	�$�ď˺��'ް�D��A7[X("�B8|io���,�G��/	G1��T϶�-�)�?����e~�G����b�4��`lw�Tu�s9��8\]P�ʢ�d�*TD�c֖S^�
������a�26a��?�4b9`
�Ms��E4�cא�L�Ӌ}����s4��x�K���„���2����D�Z4k�T�`�5e��?���
k8dz~~���Zч,���	���#@.���Bg�a%\Ƅ���td�t^���$
�o�c�wI��{z�w�ޢ&��f	NB%
����a���@*�Z�W,Ki/�R�/�"��#M:�w�(�"���Nh`_s�����u�~��*� ֆ��?��/0�%\��^@W�W��BY��.3���X��>^1k�$�X�ZL��*G�X%�a��D�"����w 	!�^��ja��Ȕ��s�b��0`��b���X�+$��g��S�GXC3R�Qx/����߰���7��f�{�ddO�~�zv��rw}H�Š�%�H9X���Iw�'˞-���/�
c�w_��>_	OY�_	K���<Ǯ�0�&�L���%
��y9I��A��B��w>�����&:�jg�o�T���>�؈ń��WV,c�
��y�\��"�i:����n�[x_�,������>�#f�GJLiŊؖ}��ޣ)c���h�Ș��w�
����S烡3���!	�hw<�ez,����@%"
Y�����n��5mа]��\�<����B�,¾�����Kx��3�ؘ��u��l��H�p&��u0�E|�J���sX��tMZp�Nma����ǽ�Ѫ�,����A�!O�ގ�_Uc���z�z�[h!|a�s�Jn"�L�PDz�^��C�;��MX�$\8�q:�Ɯ��N�-iZW����'�@����:7�J¬��i��d��LL�	g����&gNR)�誨B��]�;d͌wO$V9��H����9������H}LJ�B(��~�!�M��.��~U�3d���AL�2��ᗎ(�a} '��S7�e���BIV�����i)�=���;����a�{���',���Ƨ"A
;���*āD�Q��G(�s�}�����1���`xa�.�j��-s�X���[����j-���wyJC�`�¨��&�@�x��c��vc�x�t�O���R������M��:�6�@{]�Έ�<�o�S�`y!�(q[�bħ,��h@q��Q������jjkv;w
V�kp����B��\(�΅盛��
ry�fT�D���/�L7�W"�� �ĸ��SX�V��i
�'DQ��#�wE�W2��F�BV��e�G����勈v����d5K��(���DX�A��UUEr��,��"��C��97�>�f�uXu}Na]&6�M���e0o������/{���o�����4��1MC�
��
Z�l+3��J��j�8`Y��DY��T��(��,PX�$�FX���������W��
4{���­�h�f���1B�k�W�	]�`�g�7�2�I�,.	Z�L��u8�\��#d�2i��,�w��5���m�p�f6��{��3m�^����Y:�oeV�y�Q�3<*���U�Ezʗ�#V�
��!��M:��;�_�BBJ�N�i%�_�jK�P�=��ɂ�-����֗hUg�D��!�
���h�h�~����d��R�ۚ.$������(z���s���R�{p�)�a��BMXX�9Ɍ���*r���2[�}4*Q�x=��_��r�P���3]j��j�%\���8_�qЧ��))ͺ�a;.��梆���9j+a�P�Q&sz
��2���a7���O��3WD=f^�+$��`&F=d
�� 7
v\��買���k�1
��żG�T�5�X���kY\���/�������.��u`�*j��J��#B��p��Ԇ��k	��RZ{o����zҞ�9.k�\�S6ZY]h�ݙ��5�俨2c9w(�˳a��#���}��K^��uuţ+�`�d��p�����aB'��	��^�r���D7VmE\G/�l�0���z��h%����l���!��,M��u�τ|'�R`���
��FVRlY�
C��w�p7�"�y�7#�OgBw�c#��	?��R�^�����i�"��T6˙j'�`�g�J$eU�������TQ`e��TExf�_�*�3��t4���@ݷe����?�9��	o�M�yTk�zp�5�tn��#+i&m�W�aY��μ+_YA�҄u��?�Y���G�n��S�V�6B02`=����Yz%w�/�!d5�/�e��˲�)��FG�wu���l�n15=p����j/�÷�i������ß?��=U�o>�Ww>~j}‚�YC�4�e�	�2�ڛ��fԯ�k�:e9Ѷ�#���s]%�����x��%�{�^��g����Y�HE�{d [���JQT��8o���=1�-\	�~a%�˞J�j
C,V�	���u.����oT?H;�����u�[W���8*���l����Q��6�p��4_a�Z`��.t$4~���+�X�����n&�/*(*���Ԅ�������f���%8�U�pU�L��B�H�Y� *�aپ����]j[�$Q釄�mɲ�@��𕺆�Jݤ���{���#Cv7,�&!v�����?_����X�ޮ,�υ�n��ď�� �}sM��j	�b�̅5�́�>�v�X��Nbc10F���Ա�ye�x“�X	�p2M鵇�,������D�h��F��HC,+{V]N�m8�(���nj���6vdX�zSDw���wcVњ�8���uּ��?�Ȏ;fU`�z�2�������@��iV���Ck2�(�#w�V
�ů[C`�S�u�+W�"S�>Ƴ>,+�S�s�{���O�g}��]�������t�/���KE+æcJ�9� j��K��L��4�Q���Qs�����1u�=�L��<@L����l��ɇf�Z3�}*̪G�
q;���#�Z2���]�ZSp�Jz�x&���u��{�����Ǧ�F
�+��0�a�s�8j�9�$%���9Ӿ�;󀠢�	���6˙�	����e*��H�5�ʏ�+EaY,�5
a*�&��{�V�ȣ�+�N����t���9��O�'B^��._l"t���sf$�֜OjT#`=6�]i��(F\G����53�&]�t,!Z��Q'L�Xq*܅٠�+��"r�e*��{�ن�
�bb������xf>ë��)����.� Y�$��b�]\DI�b���N���<�ź���^�;e5|�ĥt���f݇��;�n8t�n7�N�X��&����,�ܻ`�@H�	g��<��ֈ�ؔs��?��oxRw�Y���C�D�W%u�(Z5���=M�p4ٞtRǫ�l&L�*,�X�Zv]�`�Z�v�qT5���h2s�ktL���=�/�iC���xj��5,�^�.�K=0u3ݱ7u9��	��d!_�E�E
+�X#���жf�b��kV��6�|*ܫ�$�},�VQgS�0#�	���h�d��N�����
�W�⺰��X�FA9ڕ��^V˖��
�L��2��;��&qU��y�bՠ���o�,�
�(w?�x��Պn���d@ V_;`1���n����kx��=�5#NJO8O�zBu�v�F	����!�	7EA�4fN
s.eE
kI��IY�>|{͇e3�V@*[�Hg�ձ5���-���_���t���hr�Y0�)����P���X�`-\|o	X�\vG"K^�^E�>Z[�9�W�g��ӕ+�怜wP-�
�h��W�|�{hx��LQj<=��XTen����Qw��>�`����i�zH����'
��~M�ETr�OG��J�M�EB� ��_=���JV�g)�a�Q	XJo=dױ�9���WR�nNOs���$�Ok������K��&w��B�L����"v����[�3;	�<8�Y5��*����Q���ګ:���~AMɽZ�\������ae=_�q
#�`�6�ц���:�bN��c�c�C����چ~���*Zg@J|�AZ��J�`YZÎ����L�8-��l9I֕2�Ԛ���Nax��l���5e�i!�O郡�u�e�z��3EɈ����1B9ᑈ1,cp�C+NGN��J�͌�NY345�ЪbY;X�,K+C�Xf�J�Ս�
��Lo�_�����G����u>�͐���d�sŸ���$m�+*��
�JƵ7�h�ނl������
���ek���e2�����Xk�62+�;�gm'>����ahIr����.3�}o������*V�5����F@X�<�w̓��F-yѳ뒣��;{�o�%T-�ٰ2
++Q��2�ӽ6����~_�R�1
�)�{�D��i����"k1��3�h��U���V���� �L��(��ZE�������"���!Ú�)�?|X?2����$�Z,�@�u�<b�ח
.x2��v����ҋXy�3X6w����~­\�5De��I���@��y��IX�[xڼ2(�4c�����)��0��j� +N��"\�8�����'f��чϝ���5	&Q��ᙌ��e�vV�n����`\�L��R����j��2�Z�ξf��X۳�A� Yx��
��W�4*�`�p�F�����.gkp���V6H��ۯQ,�[���J���Z�|����)��k{Ti�!>�7���u��es^�}��	3���Đ�p��`�f1Z]�X���ۿ��~C��pw���a
LEv���hx���g�۸�����\�.ԙ�U֦�H�����>3c�B�i�j��Q�"�R%�޳Gu�k�U.���.�*Δ�p�G�M21�`�x�Җ;���0V����ꆀ�N��7�޽�+�^��v�m�&���M]���[S���^t~ݬ��t�ur�5Y�qM�����5���}��xy��.��ph��C
K�`x�'��'B1,$��Û$�N��n���WѰ8�J��U���{ܵ�u�]�ȪA��C�VV
=���ي�N��Zx�ȵ��7�F-�	�R��} @�w~�,����7�����=ݏ��s�2a����۳�1ͽa�%`�}��Hhx�.��e��t��3�I�:`���Րebź/��^��㠇?Ȝޱ�u���|���I��I����31,�\�c�2�bXhEU"����r����g-���ʔ�Ak�o7�V�ku�tkp���dI�c���K	�8��Ou���՗'��w����?q������5G��^�l�X�d�*
�F�Ĺ�ӝNU��25�@j�Fk��7������^�V��8V��y�l�~�c5�F�vU���L��ej�h&7:���R�N?jףf���a��G�ax��%L:VZ'Qzb�`�Ӵ7�z~�\{��Ŕ��?�:�`��6�fB�M�i��W�f�TH�c
q@�L��Ah倪���k�tN���+@J��|���JMo�r����H{��Z ��o]�4~C�Zs�}^��*��B+�0��Bx��{�bǫ��ă'7*�R"��$\���N�4
nl��V*��!i��G���Ԟ��g6��ͱ ���j�n�m
�%�1,+��\���a�P�����ԏ�^��倵�����j�c-8ܧ�+�:w襷Gd�_�w�!��+U�ac6,	/N��)Ts�����^��rE�e^��*���u�.:�����H�dQ����*�^��u�[BG���p�� �Z���۞L�
��_c<4|[f+_��ǩ�o���>�m��R���=������e�0:2HW��W����AcG�޹s���4#���m
I�=9-d��)�R����h&�s"l�� �`a"���x�,�8YP6K��fb�{���x�U�����LR�bv�4#��[�����a��`�u`�}c�,�+y��Q_�l�w��L��t�s�>���x�������H����s�h��a���6O6��#��b��%;�+?��]�v[
�\s��k����D��f���q�2�B����_`1vj��.sN��`X�z��W��Qh���=�H�� 3���X:����!�Jijp �*-�	/`����2V:%|K�;Hcq��+-�����N��"4Oï_�%T�����$�˰�Uzj��͔�
p�|�zSEV�U�D*>��+ݤ�����Z����?��GT�3
�=
���4g�>������9�1�}���
�x�d/�%��i]��	�\�4ĺ�Ha3|��=��>��w6�j&d~C�E�����֦��%�.}��pl!"s�y8<����J\�������gΑC�<���Fn���G�&,������QB_�S��9�w>Z��.6P����o:}������`����j�#��bv4Q���Zĥm�\
�h����U���"l�sJ��4i/�)��֨G�L����Q�rd����T���&g�ޛJ�?b�����ݎ��k��x��v�h�gH�d�
�i�eC`=͙�oj0m���Ar�w�5|D`�Ɲ�g���D�J��DŽB�5S9
<Ȃ����|^���PEO��.qf�
Ekm�&���ʛ	]��밲�>݇/f>��7��^��t��΅��i�Zf�68J!��#�Է�r�$|Wn�4�C�W�c�D8�$�T�҈I���I�%˔�e�������&�J����Ne
���Q�־t����Ww`�����K_�4oEe�HA�f��\�CLE��l�x��.�ݺ��誌n�p�}����F�m�[�J�l�"`���}��e�A��g�_%�%����Z�:�-��rA�U
���=�+�o�4i��[�㣁��~�νDG�{W9��W��O�F�`�I<jw3dYu��W�a��T�@y?^�Nz"�T�4�C��ǞέR��p������v�S�:f(3}�}�>��n ��w�%��p���j�AS����w��H�ɰ�|\�9��O<.����&*��9��$ǵ�y�$K\��췳�;���(ǥ��ҍ~�Y�̭6›��>�a];����)��ϊhO�{Y��w���޽fVBƂR�^x�L��]��f�#�ۣ�:%��/�1<BV(
�'Q7�5S��	��i(��̷5�F��S�XE�b	��Ĝ1������{�"C{��`�wWQ���%�Uu�i����@6lmT`�Ia&'��.���.=C���b��'���e�9� �pQ���4�GJn??cP���.⓭�Pmѐ=>n[��`�P.ڈnzi��2��B����j{��7�ZG�6�5&�x�
i_��>eI8ڶԌ��K:,���(�(l�)��`ÒzBqV���E��c(_@����U�G����g���T�үN�C�ʌ���8��b��%@+�"��^�4�o���Y[�2y×55�αޭ�B���uva����̊Z�>��x��BX����w�߽G�Bw�|�~��W�y	�B��^�]:�Ο��z���%�%��^)-9
-�d5�-�y�ӵ�(`]N���9�b�Jꍁ/'���,Sb�o�%��:�	#+ģ�F��XXÌel6�LK܊�2�H��.���F��
��&7Gp;㱮r=��ޜ�2�����+�B���H�S_u
���~�U�4Yۀ,MW�qo7\�?{ġ
�s륱
�ֆk�*+�~�N�����a�?�P�:^�,�颮:
X�P��rHY���	���-KG�<�"R��
p�J�hq�c�	�8��B����We����5��t���6�2=C�x�z{�S�Q����31��W+�2ZG<q�:���)�J0s�����.��H��w���\�J��aS�h�H�U���.���M+W��	G����o��y���p���
\,�c����^�iXygDT�3F��i�=���A�U�K�9�����۳Ǹ�gsP���[��_�վ\�e�"G��\Ba�������e������
���Z>U��+����B#4OL���5��Y_�Δv��M�+a�.�,P�*���_l�޼����~� ����Xd��l�^�����$`��C����}�(�2��q[`���%~�/�#��G(Y�@8^��m�z�t��,,�����p4T��j�������z4䊚����V���@������Am���k��؏V�Ӽ�r$���Z,+\)c��Xg4;CM��P!2��q�s��;����:zg�rP��,���)uMv{W`9��V�^��1��{��;��~R�p3��O�}����
���	�%'�떍�:����"5ID&r"�|���c�����=w���Q"�|����/�vz/G��+yY�3�]�|����6S�F���DŽ�2����nGwk�+?*�nW�h���^�8��U�Y��
X�m7O)�\�[	7C[L�.�4iH�kf��X�9(,��á��2H	�}F^�lFS���ٮĵS�j��aO*�թj%�	˖�9$���(]0���G��c��V���H6���ޏ�Wƾ^�.�*�	����n��v��Y!���D��B<ax�|�2+!�1G�@4��)Z����O���ƫ���÷�#�b�AW,�3�*�d72�����,�z?߳+��F�A^������+*�2�%���F��:�4�*}��l����6�몉�'H</�',�tJ�+�"�!sv&7]��1�X�d�rԠ�T���\F�4�
�Ɵ�Z1-e��)	����A5)�ݲ��0��X奪�8䄅?�Fc��O��������@�~�&�[�˱~S!UT�Е��T�ɀ��"!��mF��_v *d��z���`������Z�Sc!��;}.���_W�bt����6����,��}��H��}��v���W�

5�
��x����v�
������|y�#�K5
�ϋgkQ.d��8z
xu\�l�2�z��i����{���֠�fN	+��M:�H�C��5ۼ�I�A�H�L�M�
Y��w=���G=/�k:���M�`�����O�
�4��j�۪���2�* �
�
��>]
�y�x�I���S�2#��E��UR򝝜�8A]�|���K��F�b�f�ncºdS���{V��
�F���V�7��{�k�7��}�e��Q��N˨�a,��D�S&�9k—��9y�_8'K�īy	V}�*O�J4Y��]�te?�*0�i
�jx��,�s�>�l�>Ѫ�P&��U
��k���MR�����7L�r��x[�XsX���Ǫl��k�}��ڜ�#�
���9:��iA���50�qP��+�JQ��v
kgs���_^���'�o��,��M�H+!.c����3��눣B�A|�����\��~B8��+G�&����tn��3XL"�2�����bf��r���P4���6g���c
�S�Kt�ƀ�v����'n���'�Cc�2=���ed���d�A/d��HzA��o�l�x�i�Q��&$m�r���p��eB�(��vvu��/���1uH��*���c�o�)!n	���}�sj��R��Wd��R����T��L:(�5���5��>��FC�C�,���7?���X%�h�X���9�d��
�j�:խFΜ��(�_#����������Xg���Vj�l��<Sa���h�:U��x,�-�U,����W�Z���}:�j6��Yxi�|_��ب��j�`eU閚<���:Z:n�ڡ�3�Ff�k�|*u��~g�VT���~�adj������X��������Z{n=Z���j�9,g�uN�*U�g��x9sJ_���'�`�,��K7�M�n��A��D�0���KF9�'���k��dЖ��OX6�J�h�O׵6'�mA�S�2^wHB��$�G�Z�Yww�Zk�+��#=k�v��^=��f����<5_�t�j��5�;p+�^Y&�>^v�mG�-�م
��W.�1�B�c-���ҕۆ�gǫ�<�,�'�`d:��ys���UV5<>};�v��%!�+{{߽�J��X+���bd\�j+�a�{�`y8�'kX�/ѻYEgu^E�����eE`uN}i#�Z�V����u֠S��x}���������6��'�X��/�ϳ���㐐���K�\�X=x�}��Dx��Ҭ8s1��&L�m��.Ć���M��n��.]�d�CE}C�'�?�T�f��X���F�3��y>s�bË/��h�y&Da�w��2�	��q����'�s���a���*Ͱ��uXh93�A�@a���2��t��:W�X	��-��"1��F]�1/<
tՕ2�~6X��P0���~�r�	X����Q=�pb�u%:�Eb�W��TŶM�R�Sœ�-��J�*�j�l��k���?�0��~U+���<�vx^��b����W�+�%��0˰��"�M�/S��W��jH�1��u<����X	!�z�Q�H4�ү���#e���ra�r�m^ǝl9�,̒h_�H���~	�����ެ8·.OZ���������l�1�s/�����3�Iؒk�6l�xF��
D̂@�{-���t���"�t���ri�ٽ`��a.���-?���>�ӽ[t�ʎu"���;k	��R�I�olǝ~J���	B�Z5Å�tO���yy3����
��W��҂���k!�-��gh��	+턘��Ϭ1�?��	z�\�n�wLX����gF��qY�K����GBܧ�]���j̜�v�9s���S�jh�s"��&�1~�v�Y�|�H���Ö�7�DōV3�Q	^�U��q���>_iJ�I��ݜ�R2��	�����ƙI��Rij���]"߮擜*���Y���d����S¢��s�%l�$L/	n�_��F܂'kp�T �'��]����8�sd�#��\�),φ�#e$K���h��c.E�UV�:�eG�&�׍g�ߌ��O,�1�
7?��u�%�Jh���+�`��V�*/��}�N�7c܇�Xt��y`��b�7��S(潇X6c�/��z����)"��k>U��i��xE%��mn��>;4zh-g~dd�$�������ۛ���1���W��*����-p��E�#~��U��هI���TNplC$��9zCӈ�	;�y:P��O���rc��$�Wm]y�rT�yy*G�������a��>�썼��JI� �nd�̾�����.����(�x
����~�b�g+����Z�zuS��ID����2� X����*��Cr��Iy��W�u0�,*��2T��Ђ8�qpfi
�P�›�S��lT��4a햙ʮ����̔��eG��n�y�WȰ4I�]E��n=T:xs��d���2wD�V^i����/��l�U�ƫq�U6�mfV��'�yy꯲�"G�ޑ��A�
����^/h���
|�$;�g�ʨ�姍��O@sD�1^<��;?Pi>��� +Nd��eo�u�k�^؆<���0p�J,[	�n�+���+�
�P�{��AC��
�Y��#C���1^Y��y����~�F��XlS�;��4ba6��p��b���L@S�E6LqJo�SZӨQՖ�l��ip*^�`�*�@
���Q��s\��̓�qw��T����Pj�r�������?`u%k�6�x�����̣��xw�����~���)?�bw3�Z3�H�/ �탭�c��q�r㱇N�Q���R��5�J'��U70�j��!�������J�p:��e@"��fˆ��a��ϗݲ�J���#��s�y�%��{�\^L�F>�	��&+�}�E�k���F�hfɩ�Q�UW#_�O�����Xn$�Z7�/����b������`�I�r�mĺڤ�,[�H��2b=:�naVX	Wm�
� ݥ��{��t;W�?���F�{����؄���ĐK²���k�|S�C��J_BL�<y��R�=�C�s�He|8���=��JC��ă2�x�8y���Z�/�Y��4cY^n�\r�`�Z8�G�3+�W�WE��H��V��뇽Rrf�|X�2gՍ�}�%���D�Q���E���W�R�W��aVķk��S�H�u�@Ω����k�RH�r"b�,�
�Z�����A#�z�=����ѲȾt��sDTz�I�`b�J���K3���P�e������!�UTO8�N���.+����UȮ�*8����M9G�.ǤV���:KE%�C��ی,RV�w�|���t���2����������@��w7=���XNX�6xX���\[A�@Q
й�[�!��]���y�m�m�K��o��Y�?��J���y;֏�	+,�����U��Y��4c)(k�Q3w$�p,}G9)Bެr�󲁾��r"�Ϩ,LX���XҖ^p�ϾPš)�ҧ&���������L9aEB2~ʕ�1H�P��A`�ے3d�1��Sl����̼�mP@���P�y�`���4��]�{v���$M}�+r���m	��Z諒�6ayij�_	�6�D�XS�:��`��Ʒ��#B,�ٓ������v�&D��^�z��2:�'�ƫ���{B�}�Z�W���*�Uv�`���v�ەR����#
Y^�:'�{f����펅��}�Ѩ�j7���.�d
V���UGT���b�Z{|e��?b�~�{�˝�����:(���{t�հ>r�	�U�2NuTzvM�G�jC���^m�)��[=roA�ǐu�۩���ѣ���˸���f�58��P���vI�Ņ.���"Yb�X�r'�=!�V�ʝ���O�R�cI��Y>A���(�g�x��L��Q�
�y>G�	^B��s]��B�@�1�2a
�S]��o���LӲGݒd�%���V\��~N�Պ�8`Ϳi-;r��b�^I|�:����ϗ?3#ψ��M�<U�Wc�lwv���x��	�.¬��Q?ŜµC�f#}����^�3�=�b�)�?���QX��>aml#�����.��xA^�	6��E�qE�"��f{!��J��I�G�j��J8��SIF��+�j�Ų@�ݞr���|��F.
�I�!�%�κ�7t
M��g����@,���(�8���k� i���n	XxB4a��ә�x<2��O,��m]k��'������[h]׷�2���v���3��x�%,+��yzqJ��ź��!�� ���NNY���8QY�NK��A���хV�L`��2f�E���P�k�s—�9�Պ��o^�Ws�y���`N��U��W���?qH(Y�W[�P�5��&4
CK� �{>=[Q��;L��,:,�G��ʫ4�9jkE�}ۗk�3]f�{��z}S��Q�����q'6&S�to쐇x���ir��[EqI�h�d�h4#^���n"���b��ʖ.�����y\��!
��K	��нך��ڼ�L��=`��J<X��WI�c�+!�e���\�
5�9G*R�-=���7aUv=�h�a;;�T�*ଊ��h�tN(��麶��� hjUz��Y���)$���!E%��?k�t��9„�$�M8�����=���ҌR���4,�~n�`�k���E_԰�x����+N�-o�?������Ü��~U�؄alX��s(h�+9��%�;n3���|"F��U��F5JM�Zp,��o	u��Ɗ�?~���|��b�ri��)bA1��ܰ��	����������:t-��˄��)���Ȳ�B�߽�����0�?�D�n'�2����	Q2_�(����K����:FXjg(�:��?b�6w�Z��?��I/�!��q��K�x�k�9��0��82�/�2��2,u��NXX0�L⇙��q}8���d��ʯ���A]`2�jê��+9\�+fx�R@k�X*<\^�ǖ���N^ zR�}N�����a�Ê]�O�aE�h;��!�\��QWP�z�L(C!�Qb���WU(�\�������G�W�����9�
���*��W���p+��&G֛{�?�gV�XS�xx+ Sx�U0�D���M���/������W��]u�ّ��R��/L8dVw�b��*�<���-,^	W0O�l&���>Y�Yk��~_�qTT�X{�1d��x�d\*e�|
�$�t����"_�_s�&��J��J�u���K�0�b�?����MGy&Ѝ��c'wk����2*�&���hY��]�t,!y�j܎���fqgҞ���9�9�{V�5�5�=^ڇS�n�r{�+��_UGc���_���j5X6��N���m�6U�#r�^��qX�jQ�<hB�r<I�`��F+΃�'�+,�!�vi�c1�9��*���k~��g��;��L��U�,OT���z(2�JE�;Kj�
�ֆ�a͍��I����b�{ˍB!�]�^˪��Y˦�3��y�
.p�����$`󍽽+`�y
o�]�<�q4P,��;|!��-1��=�煡�[B?�7�~9]P	��Ao�����C�E�X�~���Ŗ1��W�W�u�n�K��*��Nw5j��4�Y"VE)&�t�ICs�8�P|�4��F��;T�b9^"k�'`R����v���
����N�f��M�f���^aX�
�~�;\,�s�Ma;q�NU,= ��S��k@�|![qSHвƮIZ�bNS��VP�si��l$Us��>j�u3�IU�ZN^|򵮰xhX5ז���(�ۛ�a	�������A�zk^���w��Wu�Z��	�R�ý#
XcT(rhh�Կ����e-l ��hFwK���D,�Ӳ$�H��p����Z[��(��:�"�]Ҥ���"��J��ӑ�8�=�}�Ph�y�L���F�\�,�AI~$���Ө!?��"�k���͚���aqow{����K�8�‹;�r7�K�:�S�=�O40����Hˤ#���.A2q�}q������]\&����qDZp�8V��/eͳ�V�]��2��Oī�q$ef{���"\��^��Pg�H�Й����#iWs�� :Zs�=(V/��Lu��]����L�[þY�����Q�`u™�}3�{@�j8����ь�vm\��-�[T����z�+����,�kԉuA��
f�Ҩ$1�aq�.�X3��u��Rߔ����G؅̄�^�,���J�l|K��z���GB�E�aug!4@m:�cyd)B�dߞ��҈KM
�wë;�\��k`�:����˼%w�K����aC�iM\�V�{���|��2A�{�R�#���r�bсE��E�Ȋ(`ūf��y3�?�GS�p.��01]������j�Us.���A�έ��v��W�g��?jG�
�]7��t0m�=�”n�b�Gy�eҊ,�8�z�6���
�H�^�Y�&rEs�B���c9Vm��\��;]p't!�/�d�ȹV��,]��4��P K�%�]=�B�`�B"����\��3L\���`Y߶2�T�hhp�-aŖ/	�t�O�aY��O� 9_|�Ț�3E{�8~�l}�j��R�V5�R�n����+��?Wݍ�"�Ć�5�ʯ��D�σ��<��{�KN��a�&����hX2^�p����gړ(b�`����y�襮0��,�n��5�[
�:���:;�I�퓫�]"��3��njЦz5��ư���Qm�A>2.s����$���#Æ�@w�3��x'��=4�fI�V�Y�i���h��^X��:V={TV4�j�s�?��u=#^	Ϛ�:����8>}�/���n�M����(RJ��ۀ������Y�+�L�љkf�Zw��Z�w�jC�Tǒ���7+���U#("C�v���j玬�G';�P�����)u,�h*�e�|u�[q9����1��˧����F�s��kN���3��0����נ�;���K�;o�����D˒y�������o]V�k�4,�_yV�~e�4Q����˷_���G'B��Qr��]�"�FfK��AzU5>���[
H�l$����Rk"h7^�K�����B�Fc��l��Y-��#`1P��j^���W�W(��햒�"�Df�m���Q-��6����pyLh���?�)��?�_��&�C����ˋ���_�L}X�D�B�ugi��N�=!�e�����`��M���9Z��>���ߧ,*�y6�S>sa%_sOK`�Y.��^{k�m
	�l�K�N�CC�W��|~l�m%1��7�Ŕ�X���Zi�H��*ql�V}E�*U>��:̌�bMm�}��D3��r�����}���ᩲ׷�/3<��\X�H�|m��bb̷ǀa@����fnh�qMa*=0B���{I��h�h�[�?�8��&A�c�LC|�Bi����-ב����P�fY���1�/�-aL�<�I�݂Ek/�ӯ�^�{~�汗��ԍ�%U�w���HH�D�S°��R���;��%�ʳ�J=��Rt��SP,�4��q�5 �քY�S�������W`���@��� �E�au�G��5յ���������֜�M�in��i
�`�
��2��`�ɱb�=`AwגzD�?\o-q4����g/������N~��Z��w򤚋h�J�t�l�{/}p!�Yքnx�.��>I�PN��?�Uw�k���
�b�V�7�:�)qc^��7��l	M�r
�n���̒3����U�R
=���m��`�V�y
$Sb��{�1��o	݇h����x� ��c����%k��1�f����E/��F��Kn�o�p��#���^K
��r���7?����̠�X"C��G9�5�$���K2\Y�:�����������U9�V�YȪ,S���=�� x嵉��wA�.��f��:6M�}I+>��x��ʽn�5����Z��O^�Ec\�O�Q��!Ii���+����A�j@���$O	}炰�U��R	�h\x9������"9%v�O3!��7.���g��_mXo��aX��q�!�,�	����u�A�"ئ�'5��L��D9�"B��;)�g����XM�Q��?�}�~����pew9���wS뿚NkO2K���݇�2�t6�Xj=�Վ`���*�����g�$��-���e�?+\��#�=�y�Sd=��9��`W�8�,�׮а�.^��f��u��icK�IT�!,a���a_�_�qmU�*�X�L�̜#�K6�w�x1A��>=݊X�TB3�0�x$�qXi�*���e;�5@�����H�(�JuxQ�3��I�nx��q�֑��'�� Ls bjf}{�jzxi{��t,�\�Ӡ-
`��7'Z9)H�r�WLf�U�w
�<�OQ�����C[X��?N~�0,���2V�7}����=Z��v��?�6��]3�� &�^+(f��w4
���U��$R�P�eI����ΑpE�C�h�^��Kxjr=�w�"��q�Y
;%\��p�0,�%���y�L�S���L�x�"i�-?_^\(O"Bɥ����l��Ko�вd�d���ש��1W�)�η2K�ϒ�h5ҧ�i�_���e�sBh��nF���Nw_�i~s��T�Z��B�[�U<��Br��X�1���8��#V�����0/�F����%���3���^lo�A���L�s,���Af4h��Ն�"�ض�UV�{�\բxͮ�ϑR�m/�5�jd���:Z��(���H爛�a ��,/f��P�AF>�]���0�N�����"i)��O|����yXC저�}[Z�������V�=��5�R�Z��CG��>��?NYv�Hػf��8,;<X�!�˃1�kb]Z)O���H��/�D���j�e8(^!>�Y�H���Z�n�R)K{�Sm�g�����+��$)^Y̨~�8�D���j��cb����V5����~
Wh�� ��?���Jy�U��`�Å�LIV�'^%M�*�˸qt�D���h�Zz��kd��e�c���4pQi��%��G�[gC�2,�DMoCg
2v��£���21�u<ohǒj���,
뉜���A����Ę�����:y�~��U��Ʊ bqI�'9S�+"V�&[C�ѝ��8�	�ΓâF�mTg(Y�&.D��45 ������X�>�)W�fP(��z��B-�?���[w�I~o��8��b���ˍ��C����7:`UlU6f��8P�h`y��:S���`ԫ���NO���!�C:���^Yr����J����pŕ.�:�[h����ђ�QV�OS�>��R�ǚ���E�Z�~�vIc\1��J���w!f�X�fcG�srTu��	[�:^	�"b	d=��p� �ŵ��+�&��W�a]l�P����kjk`��%���i)��s���>��!}���>͗%?�%����Xv���LN��/,�zl�7#|
�Q1a��(��o��!h|p*w�5��T��.qUK�
����3�y�8+�%>y͋�`A���!k��8�}�H���֭�)"p�uh��
�O�UB�2+>R�'����ܨ.�]�
�ߙ�>�|�X�d���ߋ�YO�b���cIPFF�ҽ"���0#�)VY���
`a�aSa����or����^�X_����3���!Z�����2�=�o�� �ii�T����IZ�*�VK�|?n��e���~�s�C�{�;�31��X�}N�PkiK�$v�+�g��㠝(2E��r`!

�s��O^��'���1�W|���a\"<���/�*\�|Ԅd˧#^Ͱ�(�}=$|^|^�ld�L�45\hv��~y}�ɌF�aU�˝��RVv
�W#�q+�H��e���e����'K-IB�m����k���|���}X��n���ݖ	���tc�7�d�٣��wV�cw�J��"فX;����{���ɰ
Ą�B�u��2H�#!��tE�c�S�-�X��cøO6��ц��!,$	�B�(���8F^�x�!�b��KaSO�r����݋ua �^�O��b1FK����P�����4𺗳w��n�Xww�b���ư�J-����1��i<�� ��u��N&"�!�uiqZe4�Ե�e�J���P�z_ST�`�j��&pt<Tfu�S–;�k;����[�!�f�l���E+:>������4>���������,�U�`� �/��c';�Y�k��o�8wƍ�7��"���L�oE�pŕ���)��@~
����*a]��g��^L�R�R�;&F�07���2�#Tĺ�Ͻ�YZ1Rt����Bu�Z&T�1Z���%��uf��Yʕm6&�7㙰�u����Q���i�b->Pŕ�����b����ו~�nѵ�U(��L��\�gB��H�p4��{aJo��E� �������
�T
x5N8���k��G�&!��g'X;���d��^i�3���Uh��p&6���d�c����{��ޟ�7HlÀ<,u=j_�ȥ���ѻ����j�ڥ0,:ŕ�x"Ck ��?E���jr��E�ES(���_ᛐ���V�	��$`���oѣ��VA��"�41�Z�����yG��w���p`pz��0����1Ê��rS�b�;�U�m��d.��B�m|�	���LJũ̵�G�"ɂ~k7�Y
S��N�Vր'<����\e~]�V		)h������i+�n�`�brR�ź��V�J�~��.��+��Ǖ���(�-s��Ȱ��V�@X?�>�q;��
u�5�%l�a)`YT�Ζ?����O)��m���{(���ޚ��P�
�v��
.��K��s�e�7��9��Ž���*,�V\��@O	W4��bͽ;}b�S���P6ƙ�� �B��P��<��3��#���c�|?��V��#d��
+t|��T�g�X�º�q���X��)�8r�R&4ZB*r!�;I?���c���59�Qj�9��cx(�x̃' �w��O���H��w�1,d3�-j�E�
��E�
��Ǝ��5��K�Vx��zHw�r;'B�+��1E��\+��W��)^�J�U4�c�{i��;}C�9sX�W;,����f<.=��U�t"�-�#`-���x�J�w��Ð�(13�Z.sk~�[�����7J�zl[Q�ʢ��T	�F��/N�t�,4�!,-{%���)&E��Rd��i2���scq
�ύa!X�U8��栐�2ư�Œ��UA?̇m~��2�X3�A�%9�#���KnN}u�xqy�u#�����4�l™���t,_�)&���K���T����ot=��Re/���xv�f�?��MRͼ�Z��:��7!���E)K�G$u	��n펃��B�D(������
`	��u`jI�Ґ]��PU&1�ʱ*����ec�NJ�6���A������t��D�!PK&Bp+2+��!�
`
~s3j2�I�F�"��21�2���9s
$�V��(�΃��\��}B���W���/4C7�`�b�'��<<ɡ¯H7���59j��F��2�"�Kk	�?o�lD@2r.ڍ���W�،Zs8�]XF���&�'-_*fyA�+Ji��/._����=/]�*|áH>ӗ�~�5K�Y:*jy����8���'�	qD�����o��W��?}$\pC�9z�ʿ�Ԅ�Pe�,�T.`�Ԋb�X�*D��Wrj�ʰt
�m��ڲ[0e���t/<_Ɲ���*����?�;~�~�.IEȭ�Vsx�\�.���L�;�?X�c���Q��ް1'��n��3,�@ᙦ,>��BtLO�ڞ��>��&N����4,3����+[n�Z��/
����ͲM��D9!m?ĩ���t��9��J�N�X!��L�^�tw��Ǯ�Y���ro��a;�c�茘a:B�o2�v�n��%W6e��'�R��	XxvjI��tb�A���M�#e3l�Zў�WZc.m�./��a�b���Qo��#��R!=�.$�3��Z�h���>��_�cšD��
X��8�NVՠ�w~��m!W<�+S�^���o�~	���O�P�h�*S0Y;�Du`O�g�h��e��htըeJe��Y�'Ve�UJK��}�8g��?��
p�/�Pw�X��x���j`�Q3{�tS�Oo]n��6�_�~U���X<��`�^[u�sK�9�XKo~k{��WGߘc�-�W��!gki�,Pm�,��<3��VE�4�hb��e������fx:���#@y����-;�G�-/6W}�jQ�U$���I�κwfA�ݿ�M�TU�eO���t�q!'���ua����kV=&��c+O�bx�W��S�}
`�+�����m���פh��F���ծc?�>KS�:��v��JW�Ƈ�d��6�4���'}�;/�X�4_�
F3����G}������%A�P�����l��s6`Ũ��U���],�W6`M���=K�`�k+���&z�NyI�)�=Qp5�%0�TB(�H�]5I<f�a,(�r�"�BŮ�Q��W����"�h�&����ķ���3X�j�D�7T
��
و�]�mX]J!�`Pm�.e�����SlcR�xm�529p>n�e:���Y᳒�'qV3��;�Iv�LVwU^�[�e7ۚk��@�����+!Vĉ�=G$V�^�%�b��~�/�*�.g�,�<dݥ<R�L4J����:��*Pئš�v��+��E��ۄ��&,� �j#�)ʢf�h
�s�"~�K"���F���i���|��%�D,T2)y4�����:��+?DCl+� �d4M<��p�(�P��,�b���Zǫ6v������*�O��W�+8����+bř��t?Z�]�i!DgZ�
�X�ڣ�����|%\giX�R�[�A����tS�&
I��P�l#�
K!�-�bYe���Xi�
hJF�X����i�Q�S�jtv%�C�S�g�RAqX_��)�:�}2���X�kaUֿ����BLX�Y1��>V=;/"�w�������e�-�l�*�p%`��V>��n�^�Y���K�a��U������X�lw�FA[ˀ+lmU���ܶu��
�(�+�X��S��:�q>ci3��4�
;��G)���t��j7���V�;��H��ଝA#�b7���h�����}
V!woX��笸��c�@��*5'x*[ear�׊�
��ela�D��-�3>�8��e�
%�C�tG�{7sB\Y�z�1�{��8J�udT��C�y�������b/��e�g!9�/J/>$��5
��Gk�W&4����6�G��p ^-��N�^.H�X������K�TÎW�F��?%����
'���`u���$�',�X�*Y���)l�>j�6/S��F%F:Ě����/l9<��O�}IʞJT�2_��
�f�kXy��ˬ8�
Ẍ́!�z�K��2��\�>]���	��\,�[��Co��;�p�Z�L8nVp�7;��pX6�i�k��yOg���uOŭ�a�j�9îv��

�YJtMX�b�G�*�k��Y@�^�J�TTd��96�(㬼I���B��C� �2�w�2�����WP����ys� �X�����Vt�	�2Ț�F!8�"�\Ӭr�b<ٳ"�a;���wUX!n�~�b/�:|B�(���96aͽr:�+�$�R�a��C���WoK�{�սR���N�\n�G�>��Mc�W#��)7��ۓ�2�,���s�x���.��‵�Ӌ#Erͼ�(�4`�8��`͑����X_������~�O�Xo:.t!�'R5W�+�b�)S�|�OJ�X>%5 U���m���V&#�#��l����E=���]F���Rͽ�H��!a6a%���E _(���e�,0yɤ�[�.����X�-�-c�9s#|>6����å�̜��#�d
�*��Ha
4%�#��1�������vK��%���K���벆� ���X��?Ȃ(����QH�)�7���ǃ��Dae�u�����I�ޢ	le�*�9�M�]���0��w��{�D����R�����l��l\*��]��i��0��Y����X�d|��g��C�EqLx�DS�<}#�k�UmI���r4���Je^(@]��yp`���mC�=��f����+�%C�읋R��] ��"g;��+�,�%8\M�F�C—���,Q��v��	��OOR���L��t>w��[�\*����,���dTE�^���ua$��MO��/��A�/�i�r�ۊ�kl��2	?O�6w>@8�W?�13P�	�&�
�4b�.�'�c�7�i��L�V�����^r3��B��.^{��J(��#V�
��YaJws����
�Tu3�nEܚ�+����@�p�J߀�Ȱ�\3�b)]��͐���%���L���*�c���e����1&h��ַ�����+1��; �[S�7��d��+O�/E��H�W�VQ�C�
c�B�����I�.���"c��D�	�w�~�g����>
�,��\H��}�Z4�˫�!�l��зAuZ2v�Ị��,�=�r*mtAjԉٗ�/�j���=ư�����-�ڍ0�������I�Ƅ�H���[�=��YL`! �V=u�p���[���
�*:�#�*��]*�/���OT�V:#��,�LU��>�5X��e�yeA/��ЅX?�{f���Y[����l�#��p!{Ό����b�*:�t�g�~�k $H��Ԛ�*���2^���`��
*� �@��s'�e��o,]"`�H��wͳ�4�H����S/A�_ź�|�Z���ʝ�Bg�X4��߆�K��T仹��>���Hhm`4P���V7_���}��X33�g��6���r��S�<���<�9�˛_�hE�}�0T�Z��p�h5��~Jhw`[��-������e��`�
�v�)�����6�c�R;�_sq�#B
X�`�T*�����sw��WcE!��Mz����r�zP���Zɍ�oAˉ�UH������^��o�V��,���4a��2(�w`!(TM7A{2�xw�S�\�Ιg�L��f~�T}���O��3�ze��E�;�Ep�)UmF�z�F�}�V����q�a�|�����w갰�"�c�$`A�^bO0!��,;ī�f2,,�a���X��^�;�f1a���=Х��I=��¾��ۃ�RK�*��7X>���e�x\wwu`�8Qɶ�Ɉ3qք�C��d]�S�
����O�A�MЀ�w�9xl�e!f91�~�����r���F�n4IQ��v����5
��|e�u@�઱P�_M7[5>_yF��dHa��2�A�T���f���}��P��;��X	�7�(���\���߫t&�������$V;���n!��9���F��,b�"�f�T�>z
�Xf��Tw�*�2�J����\'�FhF�e��$�J2���0��+��������O��6��5Q�N��A`�a �Q|yd+S�Y��s���!&n��l�*����%zs>ެ4Ǻ��(C��*x��u�x�Oh��'����N���:ՈV�b�ū
3rVz���[E�����_ZU�6��/�y1���V�u���뮿q*��m]i����Z|׵�#�L�u���=�@���d=pa~��^@�p=H���:~oO6�W�U�?�-��9��0-�������T���вt�~���#�jj������#VY�ꘛ]�ƋX'�Nء��^��䙳�F�Yi!'0��*&�*�+��#B�9�z��,8{V�>l(��D��
�|^��ȓH�F�g�[�W���4h4eY����mP�:�!���·
Yhà,,�+`��ƻw���k�3W5}�X�̢��h�5�yP��/�b���&�P�y�ʏG`n�m
b��!fάT*��k�]���8Y-�:��>��٬�ư�KcX�2�*x��ۇ���%�_�kv^�ŕ��q,f}p�R��؂��$+�#��q���z׬n(i@,���y,<�O��Q�T�
����F�M*�R�+)�v%��g�!V�K!�5\��c5/?�_14V;)=9-����[!k�4}�3��|^��Xb�E8!�����T?��Z yV�s�S���stT�b͉=��������b鳬�h�^[CQ�����Ak,6��_���lwdV��"Z\�X�/"���}=�o(���A�ϒ�P�40�m��q�V����s���[�`%�!~9#��l4�2�o��(����[�I��,��h��E�=����7d�jo��sAo�m\�5�X�m2�_N���	
��9����'&Ke[l�S���*��m2���NK�b�D�܊�};�a](�W�/#�5i
�°����9ُ��8�!C��9�'�cW��5�{1bK�w���J�JSP��ca�ԏ���쌋>/#=�ȱ�:j�&�V}
#G���P���d{dȵ���K�b,�%�幱���h��޽D=][��pCޫ�=l*VXO����r�"���I7�c�q��V�4�����.#�F�%<M�g��?%`"�NI���s�-,G��>"��\�5�IA��
�_Ǘ�n�L��Y7��~8�H���`!�9���[M�i	_,&Yb�~PV"J���v�u���'W�7Ȯ]~�������.%�0*�=�H�w�����-���&0[^�ʰꘫm/��O3�X�<60�
ހǫ5��6r]�q�^�=�i+�e�uFUe��5٫~^�
�j�Y�Z���
��K���V�Ӹ4>ەpkk�WŸ��k��YwgX�`�}Io���X��;�ɱne�0cw�1Jϰ�g�*?^{Y_��'�@8N
8Y4RGSb$Tz\�;��k|,���c�t�9q
�ˬ�a"��d��y�WL=�FWJ��wݑ��\��g�6Y�"ٱ-�Mԃr���er,;)m<�j���d�.%X3
k�Ͱ�y���9�$� <�s����b�?����M_�F�g�D�Y���d�@H�%�u�<���S-?���4R�[5�%�u�I�7y�r�^��'�[����y�u�����\	I�(�sz��?[���x'<4.noLK0�q����`%K)}S{3���o��(�T��`5�O������K�^���ħݨۜX����m�C�t��{\�ʡ��t��A`)^
.��XC5��5_�xYt�/ѹ��,|��X���4�i�dX��tJ��K�գ�[���.G±�s3�K#^u D^�����25]���30N�L�y���Ӕu��1�YlQMg�T�*��	�y�}HEJX�⦵r��~����ΜϓR����j�#1ڎ�|7kE��n{��p�B��K�vĺ`�	X]9��֫O1�E)�Kl��g!X�'�~��2�*��d��@���a,K�`�$6@#���\���ܢ9�R�W���/L5@V�����V���9úѶ
�VgYV=�Ux~���w��6�h�v�v�����5�ݛ�� 9��F����ܫ�ӹ�Ҍ>�b���Z�͢V�g�T#/���&ݳː�x���b�ʰ�U��2m;�ʲ���K�D�9r%��i%�NVO���5��F[㿞gy1ڤ7EY&�������YU �W��R�*oBݷ�K�q�4LX�1�}�5@�?�)b�K8W�(j�{�<>��#n��#D�h��w��.]ay��2e?Y�$�_��7��K�zy2&m;�����C_<�k^B'*�~i.̾&�*�����	���#����Zy�N<�U󌲆�~=��ʦe��6��f8j7�U1w4��b�0�[+��
��+b1�6p,J�A��|'�%�Cf'.�(坬��j��B}9i��wv*܀�������߰Dm��VK k�9O"s �C�w�ɒ?��Xv�����b��%��5r�Z%[8Z�ai�L�_��bJ�H����j7G7J���`�^4-0oz'V
3���b�����݆gK�W.�41C�E?zI���զn4a�q�<k�)�~Y��u ���j�Tq���2h�xu��|nw��pH�sؽ�����e@�s��[̨�`�].�J>�������	}&�Bw]a	���#�E��=��ڵ�>Ա�����!�^��{��2�F�۲�h{��P+��a�K73�qb��~�9~J,RI��e!�=�ʰ�0�k�PְJ�,C�d��x0[f�-��I��V\�g��°�H�{��E2hP�0,VN^�S@P���q$\�Vi8�X
9�‚D�l�-�k�aiy$,Qz�1�[�g��u��Ҕc1>E��ٝJ_t��{�+ �u0���)I�
��.s�f�T��Qe�P��O��Zբg�$"g���j���Z�r�)`�+�r��F�I��`F�umB S��@�2(_uo��\�[�57YW���/xv��HC�FJ�X�}K��<���D��:�'+�����W�H(,q�!'��XbH�m|��AŃ�'e�^y�(ʺ�.U=���n=r4XKvMWk_��d���/����IX�!d�ǁ�Z����5~E�q3��`&��a�3G�����;U�`1]��u��~o*Ȱ�X�6��p��(�h��%�6��̣E�D�H2?Dfy��K�}��W"{���Lwb-��…X%�����G�e�4^�ŠM��Cau|��Htp�T_��q�^��ux�:}+��N�m
��2,l3&�Zzp��-~<C��Ր#p%�2-��T �:T�X�l�ɧ�ȢzC엎���ew��}�u?�1�xX�\�\��d�����h���B|J�s�8�����Xw�b9��ޜZ^��so�U�!CM�Q7�]^�en#�5�1���k�S)$��7R��ҕ��#�7�	#��H�A�T\��s��Γ΃��H�f X�G��6���C��������F��A��:���o�W3<��R�����)KQa��e�Hd��uޘN5���#l��E
��;�R�3��6�2�G�a�:��J����Z9��������W떷�0��`�%���/	o>Y>(\Q癥ɡ�5���!����%k���%Dx�[�$�k(�	Km~�����8��Oz	O��?��ֵ6�q-A��a��V�JY.�2K��eS��Y�t�̜�8$�Hb�<v{{��t�R����n�x�*�lU�e�"Ģ����)��/ՙ���`X�4,�������]�E�]M�[R,�R$�r��Av,��m�N���M���pZ�I[��?�Ҿ
��{f�݅KȤ	1A��_�a Y���q>8�=�8?LC�]Þ
Z,/
��ܩ(�
f`U��gP�yJ���4�
'�
�k7Z^a|�2!o+�2�-�ed�1"繃#s*�C����3 b���/�����Zu�4�M����o[T�KCE^s�6�svE/X%T2�ϻ��x�����L��<b�����/Mث�E�B��dXa=x4���Dhh�U0?���{�?��,�)��`��7��)ֿ��ѡ�ۤQ���TX�P�#BV~��n���x�{��OY�r_0��6�
���8*'D��a&�~I��̰~`���^M�a�}��f�Z�Qag�3�l,�~�?]�xxiwsk�7�4u�	2�/ƫ����nx_�8�ؚg'p��%w�#x��#�X��tS*X&����
����"���"X�z�5��D�9�}�l�{_�O�>Q,ҫ�+�#%�[�v����c6b�,��|i�F��*�X�W����r�hl�d]8��^աq�&�$��/�x~xP�zhza8(�&�q��q�w���,ayI��/��*XW�
�Ԯ���W�ɤX�.�97i8dY�`��jyAG�0��-F�����	'�^���w�|;"���o��!���	�60�챠n]w����6��X�P�K}gD��m66|eTn��_��^�s7Y�ꍶMgl�0Ե�U:�����ªʤ��.eg{�U�+c>.3K�@h�/JPi�<��QY���2�=K�ӑB�|�?o{�+G•-�zń����%�?��b�|ATxɝ�4�W#VÊ���֋�-�be�i��&d,Ճ)t�(8)K죯P�K�N�.��Ν.볹�y���6�?�X@�F1��.d��kXX�y���ЪP��Kfv?��k�{:�v�3�U���B��ߠ��41k���W����a�)dս�y����H��~��S�&FB2�C�ӄQ?��Ϡ%L\�Jp���"�J���X�3����/V�ڷ����:ΡYE�KX@�t���3ʼnrk\�^���а�,����$,�Qk�yy~s& ��QmH��WN��vM��a�6RF-C��?��Ɯqj�9tt����3B�
��Hk�fn+�5x��>m��|���‡�|u;�U��W��k�0���<��aY�˼zv��)� R�ݝaЫ������U2��yg��!"�sNrK����.����B7���!1�,��ߟ�~�Ò�%����$w���b��p�Ήc��k�~,7�3��+z�Ȫ�7bݨ.�}9{\�c��P)Ǐăw�+�
�7��!d!I�	e�۷�"U4����=��b����<����c�S��v�gns�5��)P)A�|
����<%|�t:$5���~o~H�z+��Qh��fdAu���|6�k�z!��/2�&�m`�^Q0,[�i�n��`�^��jr�'��:�Tp�S�0�X<�M>��g�ݺ$�
�U�4��H#��w��3���V]x�X�b�j�RF����>��{��
/�,&�?�5�[�*���/�5�&��Z�B��B��⫌-S`�t�ʲ�Y�Z<g��C��3���凹�믅������FӃ�z�4
��++'��s��gkG,�X@�]NL��W���+��H�,oC"�Z.�1���t�A���V!aYc0l�D�#֢�Q��h���&�YQ���9��V�����'�tL������5j����@�q���-���#�e�����Q€��e�-:aVЈW?�����;���a#'��-��KV!�阙�VJ���+E,|�cJ��^_����!/�3z5��U���؞��J�F�C3�/K��/�+zv��+��-��C[̃[��jH5�c:	Nܓp�~�}��,	Kač���X�C!�JjO^^!5�ۚ���5��0�
������ˢ�Zn�g�+}��p��&£D�H�ZZ���߿{�}vJhɱJ�K��˗G,��iP“�T�D��t�N~ԓڍU暗���KfO(E��x8�+콂��M61�dt]��H
���s���}�Y�2͝:�GNjp���XL0+)�-��~���!`���),��Xl����.N�hr��vV#���{�t�F�vn�Pfou
[�j���FU��}H������|�]G:G��Xd �L��yJ��k2���0�RNlkf��i�U����Y�BK�?*�o�^G�t��i⍶���O�5�"`�%�R
|��\=7u�BgO�n_vȚcC�U�����o��+��g��
~��Ei}�o� d˾�Pr��ӫi�])M��Y�.���1
���=�9�`�7�٠���bD#�ZM�ޢ^�	�ެ��.����	���z!�A&�+:���q��8�DŽX��ZT!k�{T�q�#�����J�sߤ����g�Q�`�9�{F!����rM�P�� X�Y��k�,�=;�#^���K�Ł��P\1TM�Wo���!��ae�z}h�|���p�(���	c-Yfm�e��h��1O-��i<{�c�����]�Mg�ce
r�;3�K�h<{�6O��T�̉���k��tas�΢Xi8�l�B���1mkfG��� z��cE����?e�]]\\���:�;dE�����,�ٜ�`w2��az�-~gF�v(��Z�٥J��L�bC��F5��fuo�a1�~k|i�m�k/[-ެB[`<��3~i�lU�t�2���ݨKtr�} (��a_<^-��^�|�
�O	sr�6�O	'+�qO���&E�j�c�Y?-y�2��������>d�������pV��U=���=�Q0W�k9���W�ܦ��q����Q
�e�׃E$w�7����#�m1�z.�G�	�t�׋j�����XU�I��K�^�4L��a��h�/D�a?�X,ޏ��]j�\���ٿ��A�;��T�Ič2r�U�����sOoX�HxY�U,���=]�<�({�늰�lj�axG^\=�O�C1,��j���O�X��_�"�m��b_�(,X�#�~q�F�Np,;IĢ��W=ڦb��1!>������W8�n4�%�x�}.�@��c!
�n���Y+]�H^=�-h����&�zB��	_	���%]�#V��	s����Ye«����9ʇ�nO$O�p�9(��x)���M�i�$��`�11���Ո��^�.^9�
��L�&X�Ew�p=�^��Q��1}Tj�����0+����vǭ�����֕��Ky�z֝ZfJΏ^M�sʧ��X��o�"��Btr����"�쀯�J2Â�5+{��h���W	^�����.���\����V)�#K�c�B_��3w	=d�S����a/�j,+�4��睿fs�K:.�W&r�����66	���8�x��b���X,ƍ~$v�UB���H�r�T�������<���;U$C��͞�E�ɸ�����?S[�j�E���b�X�p7����]]VJG��E���t]ks����J���$�Laclb��Tn����=�=3�`g��Tn�{�i������0�4,n���@O'd��_WO&��.��V���ݜ���0`��7�p#Sc%ٿ�&��P�_|�V���
�8Z�ī#
��$H��Y9{�Y;�$�F��;&5H��H��n�;�T��D���;f�f����{�>%�"�y�Gr{nxe	�Vd0��K�ę�yy�[$�j2�
W�D!��1I�m-S��7�J,K�/7<���+�ԯ����W���t��^T�s�3<���▷�Y��x�!������i5i���3pF�
+2����=`�+p������g��眩ܕ�:;��9/ho��~�j�mʅ�����1�>o-�]UX[5?�'�˶�S��ny �N�;sF�(5��d-,���,��h|�3���Cm6�=�p�F�oZYS�eZ����.������ī�7_	� ���3��Xe��W4J3%�n�xJ�m����%�p�:��@Vɴ���
��s�����|��{�+�����P� ��k.7#�5z<֔�;�	�sBiw\�.#��{9����LG�g���Y���f���/h����v%�����&n.ԓ�V��e�����
�:VN����|d8\ɺ���a�|�+i�a�| 
�H��T\��-��
I�AVxVW�{�d��b��b�$b�˙��Tg4aoڥ�	rB���k�Ju��������8m�^a<��P�6��K�j���P�I�����TR_�妷>�7pBfD��D�VjZW�,( p4��?���J�!�j�^����y����<Y
5���QM�QґlV��D�oH.�Ř{!ö�,q̔����N��+��q%�񜮆�v�H`����q�yX�?`��N�e<��	�8�x��R��b�JHȲ����Lۤ5�LuV�%�jt:��gz@,k`�6��+a>Ҿ�r�i1�z��wB�ͳt>���N�Fu?�7�f��X��u娰�Mͣ#z,9@�u���w1�g��πWd�#bIV�9?c�\��y�j	�WV�<�4�I:b1��{y��^x��%�a,pժ��Q<�g��LX��k���=.��)w݇�g]�'$OI������`<n'���ǚr�� [��ճ�m��D��[��mP�Yħ���9b�j��s��:����-Vc��+jh�m�\3��Zj�@HNxu��!q<���A��$�>9�N�`��~6^��e�q���╰���o ��e�Bިn���;�e��(���>�fg���]��(rg�s�4iy�K�<#�K�8Y����
��2n���hN��CY�n�g�?�~��H�v?{=��6÷�d
.���/@77�G�Q�O�f���|�1�S�W�X��`��:�l��g�����GX|���S�f	�ߏ�X"�d9�Kry��Z��/�4�O��y��K��<E0a=�8�l&�����:�>f��Cj����d�9�T���`5`�M{�߈k�G&��
��=O�J�tT�58V���o�d����Н4��6@���(S�W������KJ��Xi�������lYy��VM����+���/�^�LWBh�6bPZJ;��Z����U;��;!�+�֕���B��{���@�ez���u�C�a�麧�"��A!
���Sbo��Z*��ze��ԹOjʙ2�!���٫(k�3��}�T�Ziӫ\<E+�-�YL�YF�B�ԃ�巪�	3!ZS�[o�?�Y�s�$y􎯡��4�H�e��t��}�ܪ{��9�Hb=^�}}X��DK%�+��L|��W�(P֨�h���J��@��m�Ox�Y6��_���6C=�*?�u�p�,+^=�b��g��b�vBbA�vG6CS�`Vhʲ&uՆ'��Pj��J�?(�
�8%�Jb���E���Ks���K���.H�r=q��&�'GR�*�[��KoE��UEo�����_�����F]ҭ���.j4-�}���'�%��o8&S��[��+=f��>����qCT�
X;�&CUQ��Ÿ[U��V�J^5�D��P:��KxE�Rﳩ����O:7aCf��]+E�F�!��؆;b�X�����2"�h�KgN�Q�E9�)���i\��A	�����r'4Y+X�X��jnU#T۰^'V�SR�v���:�����������)���Y����1<��K�EphJ�u�0U����u�vPj�?�
�O�8��P8���M����zu�.=CF�Ί�D',$��ެaϹ�����}�:c�L���Gt�
V'J�N�ᕜ��v3��K�GoD��d/$\d��g3A�0`��=
d�k(c�*���`p�m:
X���7�ǝl���v�E��T���,#��
X�`_�L8𱫉F�����td��%ej����\���
;a��r�Nd����ٰh�c�e\w2մ��E�ǐ^;+���Y��E>�L}nQ���;K��l�<��97X��&,�fNj�R�
I�0bq�"�g4w���!UyK�+Kq���&,W�!UuN	�ǝ,�\2�H�>.�r�r�j��/���[���',��-�e����e���q<�=���$�X�cI��`
m���tx�r��v.�Ϝ4���lEL�"}��"����"���h��Xw�6���{iw��5���/=W2a��b?μ?�#�y�� �����/��d�o͚S�W��t؉�O�)r&3�]B� _>?��n�'����b����U'}�69*I�N��0Õ�/��#4WB��6 �Y�j�����ㄬ�F��o�z!�f���j���w���XD�J��i*K4Mj�Q��'�ʻ!�X����QN(
�&��6~��UL]�Zyf����i<֔qZ��'E�V�w�Re���[2'����P�"豎xU�%AB,6zP�
X�}��
����N~s��]�u�G�S������u�=���*$ᄵ�&"�z�	�S-���.��둵�msm���߿4�r����
��xM}nxuK��&i�*<���
;8�e!XN~�R�ʌЙ��ڐ���P�2���l۷�˵��~,����ݖ�F���D�n���`��""V��^H�Bv��_�/<�b�<�Fq�j���/�/z)U�?�URG/�6��)`%�+���Wxr�6k���"rȊ�O�LX�	�lqʈX��:������@����b��LX��z.MOI��
����G�
b��i^�]{(�xtG���ut1|��"�T>s%��[Nud�;��I���@#fQ��>��8�����wB[���<a���t�}����+ūd�*��#|��K�+���汾��a��"���d�`� 8_���O<�J��E���wU��
����Ɗ$DX%�������G�K�c*��S�z��X�ǦFVL�-a�E
3��Y�Ğ��O����(��K�J��m;[�������nA�K e"�����btV�,bS������xP�Z{¬",9�e	�1�H��5̒ �,��'`�(�3�B�JGu3�/H�G�8�%���)�m���J��H��䝘��tX�#NqH�P�s��g��̪�����
6�(�U���4!�m�6	��Ph�������lRw�nA]�)��]N�,�&Չw��}�Mo�zQM���RX��"�C�L��x���p��z�
V<����Nl��������A��,�4�m��T�[[�Xa��~W�{�:�	�'T�v=eξU�V��Eƴ�
�a$�RrΏ�6˘�܋c˹��$6Ck@w�w�i(�(Ք�b���!�'��6���������C#�*q�7�v<�H�X~���l���/x\�^�k�Hu0����w�
�Xؔ�c��=����k(F]�.!4��;6������
$�>㕌���e�S;$�3��D�r��<�^e%�Wplj`����^V�V�՚�w��⪼�Tz�(��l�jτ�ؾ���}И�l7����Jp��$Ⴍ�f#5�w�{���8r��Y֧��
0�,W&Fd�I3�=���S��Y���I��b�w��pD����w�Mt^l��JV�4sf�FK�2��c�q읟wZE��r�&e,�X�b$|�X���?�UF�C�G�$A���,�Sʥ��,���|B���=h�!�,�C�T�;w�rR-?��G�sE�|&|��/"Y$X֜21�(HG[�sϳ���f��e�=ޥCӽW�Gv��"�π�ǰ��n�G�s4B�-b��W�c�p���[R�w��k�@�~m�Ak�������GT5hz=���Q7���G�b0FI�кޛ2���ɾ��.�02뿈}2C��x�����*�m����`�#1��l�:O�gC)��讎G-{_���z&���L=e{'�r
��ћX���
%`��rS��v���^)�����Ma�(/Ֆ����L��)L��0q�l���+�q��01U\�ǽ;0��>�`6��*ڗف��JS��
'`�=C���B\;���Oh��Y�CGn���&'Ī�v�U7��Zm�LX0���9[h,��w�#��M4��g���w|�:�0�!4ܢxt$��#n#�rpdžGΈ@�iq�g�k8'IY�DžbvF��@K�.���L}J;�â�{��3x�'V��;71�k��m�����D/����ܭ�䆶3�^%m@�P��o3y;txyo|��*�Xkk�PW3��?(��Hٵ�}:�tU�b��U����hI��`��!�X�5�*��
�$��P]��{�՝��xَV]��;�V8��n��)co�8�g2���t:��ޞc�3X֢J'���ڷǙ�HR��Iy9WZK�<�lʩL�P��P�/?�X�Y2_65��
�!E5� ��}��3�B�=<F�'PO
?7�5�cAz�9t��9��e�U��3�&����\Tī_�0.vypu-�Xg;�N|�F,��&_l����P����I�X�̓���v&HA�*[O^Q���lIKQ���	.���֑޴�
lx�t�}�?���qO��;�&����"<�����?ʒ�S�?��X�I=��>2���m��L�g����	��I1t�s�K�*�V�o;��2͝a�^���Ě;��T5�֝-^<"��6/K�`��`Ի����(��(VO9|�y���1��ne�*O*y��3zR�
ac�Ou �_�Kx�0�%<���j5�+��L՝�l�#������*�,�S�������N���Ջf3�f�xԨꝗX$�lC�lG�"i��<`�YU'[n	���n^I��n�ӟ?�/�#:
����6,��M�����͟>F4k�]��L�Շ*�Xs�U���}���n�9�|�`Q����S�����V-q�>�eᶮ֦n0�8V����t��
�����E��Z�)��{<��QW�ܸ�CJ�5��D�c������,�;mD{3��lx	��#���p��T�y�`�z�Xa$��p�I�@�.��<�3�������Y�(���HQ~-Of�Ǐ��:t@G�[?�99�eWv)���t;�.-z�,�2H�g^
�̮ñ4
�Bޘ�/���S.#`u�KxŴ��9��Zz��
tjn�ޥ�HZ�������߂�V����76�)�T�E�՛��Xd���=�'��<<�̈́_5�&B���N4�
:��V���7�KK�����)�,���g�Y��K
��K�,.��*	�RH�^��	�ER5Hߕ���oQzwVoR�����
]G�UV���OZ����{fR;|>\OW�by�L2�HS G�|і��S�`�K�A��4,#���_f�[<�Ҷ��Ǟ��sOa�.;U�%��9x�-�XR/�*�X�?�5�z�0U!�e�酆t�m��
�:?�|�O,��՗7B�e�E��)FF6q\�`�~��'�U��5��-&U`�w�s�fy+1�RQ�~�B��;�ճ�8���ep6�C{
��Q�-��j�+�(Y��Qi�b�,��s�6X�H��U��,��M��9	������طdd��3���I�ս;�Xq����x>(���+7\C �>�Tqww6J�����pm�iڸO�X��*P��ﰒ���=�6i[���f���ʉ0�����鶺̫]��Xޛ�"��2`L[Pj�T�:�`]z���ܙa�:'bCV�Z�w5�	]_d��vl\��?*,�W�.ge9�X
IJ�0�.��������R5(��“�T$a��q�E�g��^VLO��ǂ2�;\�
�m���gbm4�Q��ź�;����#�*�	�B,p�.(ܟGBĩr&d�E+�m�
��)����h���+B��\aʓq�x�?	�q�e��*�%�bb���=�EBW0�9F��2�-v�X�����lN�5q�Uǥ;�:��Z�v��j��t�$�J��gK,�MLk��Ia*?O�5N�OQ�0��Nb�7ҧv���wK,���
@C��
M~�`�� ��
+�.���>�h�x;JӮ�C��׋�	6�	�^"��!�
�����G`��D������+,��3i{�+ɰ��������ۭ	�R^�0�kWm�ќ5	���ɐ�-�&~=P)��oozi�|�L�I���Kqj�����m$K�ʒ=|y�$�*��u�%VƩb�و֣bC?.�8
9�I�3(Vomq?t,p-~��5VGQ
�0,E����yk�?��u�ir٥.۫�QߖG[�j���D(�u��۝T5�M���k*=4QD��Y�v�`F�$Ϥ�Ă�}�7���)y�V�M�U�^&h�ℷ���'{�FBb�@?@���&�ȧxV�{k��}�.��#��W9fQ�(l�l�v"��QLv���#�]J��W�U+鮈Z3^���	��u��B�t�&�i���K?ò3���@d��P�@����[��뾆H&��FN�z%
I2-��,�ٛ�2~� ���e�^M��},�x�G�X_���Dxr����
^q�s���V'����Ҷ�
����c���^<ee��䓋�h��4K��%�,��3!����V��/�����z?�JWY���#�Ok�wF�u&Oc�s6�m8����Ѕ��p�
7Z�3�!��	���)i�#���r�on�d�;[��$%ĪK����n���l�걛���ތ#��M�EW�VZq�Xk�)V�(-.0,h8�& X��8C䲘�R���t]ks���n�0��zay�I�Y�us���I�3vl'����V���b����R�ĺ�5޻�}n.7R
m�s0�KX5���Z�BURX㎳W��0�s�.Q���Jp���2�c�j:�蔲d��w�R�f����L�L��@�L}����,�a�sf����T'��,��]c����]��e�0��hSK�2�z0\���U,}Z�pwÆ�lr/��Z�9tq:�>� f���JQ9��X�gd2�%H��F���!\�z�R���ϮqW���|����2[p.<�j믜v�b�xф���V
�NYF5���[�)�����;n���tZm��
���L���9_��Ta����sf��sܓr��}�7�;��c�ez�E����v1:�m����*��j��V7��H{��.�y�6����C�:����=�J�%�ai���dt���ڰ(z�"k<+�a�a�V�ń�f}��㞾*/\��"��$����r
� �G3�[�+���w���I&(B\�/�	�^�R5���^ٞ��:�2,�i�9���K�#l��T�f�� �����dy��=�v%y	��C���%�2q\��H�n6�(S�W]5����Y!����~�+c�ʒh���%_m`0	,�9���t�����?S���2_m�� �x	�	X`��=�*��
��5�N|^��������=�K�8��Y"�>��s7*ӭP*�)cމ��F�_A�{zy�
2,R�̊�e�X�}�m;�1�Ҫ�%��KPXO���f������b}6�]��E�>�������fdƷǷ�&�k^h|�a�b�X"�@e��p�_:�݆:	�v?L��׾��\g���w4�U����>A�Ǭ���y�E��2���"�EĂ"�H%��*7���;T0��jq�U�	/��zbOHݨkq�ڶ��asX�)Ć:FH`�7Ю�w0�Wb�e�k���ɅtM]�����X��nݒ|����n,=���w4�ך��(y[�Y�$YVw��	>���+�d�[�X���z29�t�X�"^�{�%#����,�K��CEw�
	t��B����˓UX��N.���f�Yv�Q�/������R]��C��+��%�n(wX~ވ��]�$4��l
YaM�
�̹/�4�.nK�ͼ?�"�y����+'8j|��x�*��Z�s,Ζr�)��ؽ���a���������։&~�Ĕ�PaU�G��'\�>�@�qj��	?��z��=3�� ��W���Ok=)᷆qs5O@D��ĂL���
����M@:�1���.k1Z��*C,5T�3]��%w�;��K
�(���Z
���g����P{�څ޸�삒2ɞ������
3�m(�ڊ�X0#=�*í��+l����@y�$u�*q̨ut6k�n臭Ѝ/.��`�$���9�W�qi���J��
L�C��M��Q�(��뢬NO�cN�^�AG,a�|����i�V4�̗��h�kvU�ɬ������jdDk\7
�|�L����&OF����A�UޏN��d����J{w��fU�?��x�C��	�P�}�V�����G}QXZ����dm��L�Wo���眾�3g�X��@��&��%���tM�*���)1�I�Y��(�B��lBx+�2�wp�]����w~����/��c$�W�[oXMs#��؆�W�,�	���XwW��1Y���f��Z'3B��+ȁ;�ݰ
�C�1m��:~��A�y�-!+ ���ZƒM+���R��:�W���>�4��:�Y�C�rQ �}�x,z���ᖟ�Oф�䀵��s�rd
�ha:�#˰J��3LW���,z��$8l"���P���FW1F��[,�XL"mr����ˇ���'�Y˴{��Y�c���f.2ɩ/���q{��|A��X����!�ŋr��C�I�y9��?	5�Dy������V������0,��9=N{`�_(ɚ�:<EN�Mo�}YA�$R�7����T�}��l&j�)1,)���#B�~�Z��`s��$�����a��w�
�\9J��K���P$]>�a���c^f.����
��/ZX2^Xf/��"E�-r����p�WbV�/�S*�;�|��*�a�
���Ɋ8Z��+�c��01/�:�euӮ1$\�֧�+6���NyTaA��R|gٔ!V��Mw����M�˖��Y�Y*�=��ۊ� ��F����c&�\p�V"����� �H��$+7�a��{��RX�� ��Y>�[*+�V���V��mjf�C�_�%%��|��4IRmi�㎛^--�ѩ�e���uX>'4���ٻR�+S,R
�١�:�Fy旘	\c�"�+�!g�{h{{w�>k,YI�?6��^���.�a!ah,�\,�"s�<��ũ����/��[� �@����^�i|oY��)��99~5}L�U�ۏ�&��\e"�{͸K�;��&!֕�����++,X��i��J�^��
�_LG���4�K2wۋu�:��&����r�YZe���<c���8��8 $ee�,�
���X�8}�|�k��k|���탉�o���L|j
��HaSBI�lz˕�_�+��l��R�25V���2�(��O-g�3vC	����
�C<�%L�w���u��;��k#�(u��H�B���,n�E����2$�[�K�KTn����nOʢ�dAH��E��M^��՚5�����P���2;�}�N5�\��K;f(�sF}Y��++��k�������6����8A����j,��j��u��^+�+�=K��}T:p���};z@ p�}?1�受%A�Ϧ�!b�gm5��V[����p�Y��W��nweAgmܗ�mnb���&&ױ�j5�����Hw;Q��ke9������q��O:��ƛ�	^B���X��$U�ī-,q�H�����:�E>�s�Q�W��~����UX���>\FeVa�V�i���c(�p9�Ir�8j�N#7}}��e��Pa
<H�����˷l�yhZy��Zo�*���I�����1��5{�ܥv�G��9��q�]�Cn	�}����Li���Xkv�����jVx�b!�t,v�𗙩)�p4�!4���}�Ƅ���@aRo�B��;^�V`���?���Zl��(�>�MP���q�~��^L�w�R�~8��:��B+�ZQ��0>��ɴ
���0�5ЋO��4��<����<�)׹Nx5�
��=���QG���*��s�R܄�����yj�\,#�u6��J�g�����NK�ru;����u<Y`�F��|��S�l3-E+��<F��R��`m�a�|W��K���+j�R}��혡��7t�X����?7qGq�eC�P�+c=��H�\��Y�g�ݡ��g�E6m¹�Z8,ĄuS�sTauS�[w�T�A��v�k��_�<\E�j��!7�K��-�ƶ)��h�7�fY��l����/����U�K�θߏ�G
��ñ��
��!@�X,��?!�ٽ�NL)=�	�,�+W7�J�k��9&����A��l�i^���S���v9ml	��J?$K�X`��k��@ �\��*�XW�=3���z7����f���|?��J,v�Ok��$��s�R�|v�d���N΢��D�-Ř�z�:�S��;��%�!¬����`P'��2���x�F2%���2�W�
M����?������H�6�&�^�0�i3�	�F���}i��N"-s������C�E�<ϿZ��6LЈu��n��.�&��F����0ƫ���.�^�5����i��Zp��W0�ס�K�ݹ���H��5�����+��.���cB�ʲ��J(�O���=vA�`*�� G�!`�qς�*�
ڠ�[b�5����-�`Tk�%��{�A��@�ŅQ��8��b�ݹ��N�����DZ��0a9���}��K�< �AWB��9au����>&�pR��8�=�+��\]Ф��WA*/�;��S��{y�x�+�`���5Me^����?�Xc��L�SB
�ސ�$o�QH�h޼�]���HހsCA�W��>�f���:��P��81���byF`������LL����ћ����$�.��'zke_�<���#XzLO2r���~2�T�52���:�g��ß�~z��?�T���LX�"��P�Ya�U��BC�d��?����j<��[��
�A�l��� ^�n�9���e�vT�7]_�c�����g�WL�@�k]�NX��p��b�����Ȕ�
���E�e
��J�Bv���+\�2Z���Z�%
nrn5�*M�+�Ӆ5�Oz��`e륏���bK�Zi\6�թ��V�����?F߶�#k����ߢ�7u���X.�2oN�t,)dN��2L7��Fd�s���kU����q���m2�ڗ�@�.xc��Y�Q���1o�����>���m3�Q���3՗┐�ѽ��0����@nI�"8pM��N�Xr��'�G�T�D���!�Vӄ���Ǩu�b�v�_Տ`Z��5b�������c�,�kT�϶�����],��m`jlq
�b��Xr
����;2��sd$���S��z�~R5yJ����V�FjΉ�հ�"�+pF�냋z��P��	湷/�K�D���hqagx�Z�E��J���C۩�aӑDs���)�����JU����ɀ5O��>��%h��}�i��-�i�tz)
`�O��8�01��
W�b!$�C��S�p'����ƫ1*
��,�f��O8��o����g\°��o�X5}j0H�m��1��,��?d.z��T���o�G˛��8����
��/(��$��ѣ���@t*��d����H�.@r��;K���K�!d
����j�4r,$+#��XGB!���X�&���I/!u���UcIKi%�՘��[�({��m���{�x�]eG������@Z%rw����UP��f����d�.��'��X�̚��mܰ�Y�t��lT�ݓ�Y��ӛ��/H<�*��Wj?�
�	��	~ddAܘ�2���'�ɚ=Wu�ķ�u+��Px�69��jXn����X�
�v�A#�YOZ�M`+�d	XzH���jme����U�E<�%���le��ؐ���&��)�7}�(Q^��M4f��6�t#��+�7�~A�`�$*Чw:	?��+��mͰ<��4���ݵ<�0�=9zB��-��$�,�XYp;��&KM�c}��\��.	�Tb%m�b��u���E�V�U�sw:k�i,���nߌX����^�ˌ��i�@�S�l����I�s�;����V)��!�T@g/��헕����c%�"@��a�X��2c��U5`Q��k��t�2�������v�{��>U���|>H��$��x?3A��|���g��l5Ȓ�t�ۭ
-����H�����|Euô�j(u�i��\i�Ĉ�;Ն�Y��E�FX�j��j���Ɛn���;x
�NC,_�� S��ŎV�<Z
���i�q04�o�V����]a����_�ըᠢ�g��Z�,�T�arJ8�`aA!M�.=��w���~2轚{X��Nk�<ǝ����
��Q�hXŷ� 4%�X�4j��O�"�=48R�_���L��4�dl�Q�[�;.e<��
�p.�����e�V@�?b�Б�����!�>J2���:�iR�*�����Ã	9�qu֟����|X&�bО�����b��I�Q�	XM&����Fî�ߟP��"K�#��y-�Jc�_O	{�:�	\��ޥ�K(r9�`�q-$2B���R�[�{$^��$�t���������Y\�*��W���b�k�
5~/��V��ݙ~ݭ�EG�����*��c��ƫ%���ۈ�2��	K�v���o=h�n��A3��DuV-��8R 肝�������e`�"G㶚������>�sM�\���
-� T�uP�Յ��n��x�ݘ8�~U8�u�*��%��(F�W'��5z�#L�)������"�*>�O�1`�;����J�]P�IeL��h�b�
�K�}�tS��N�Q���t�{T��E7m�����%
�x#6���w����7��<�&�V�����[���$~
�-A�-�eɥ��Z�چŠf�Sm!���6-�0����j��;K��$�z2���s��Nq~%��Q`Up�!
9/*k�R�#X��l^�a	\�t²���A�;^(2\Bd�p�>�DV��帠_l����q@�Ǡ��Izgf�X[�\�o0�˒������{T'߉X�pu��M�W=X�.�U苞S�7T�����ii�ZQ�Uj=9ëZ�)K	�{��Dw튠�V,o����U����$�Gs����~���,r��N
�k�_ij����˥�	�Y޿c�b�LU�'��E�<{��^�@	���g@J�Dϡ>xӷ�a�	AXqP�p�Xŀ%g���$aQ��;!�OG���E�j�\4���bhSMq���b�I#e���A���ʧ�t����'"��gʌƬ������\�/Y)6�0�/���{��a�����p0b9`����*I_�����)�����*Rd]5惦��X�����AU�W����#��2H��MXw� mЕ����j���Fi>�+E,�>�I'������v�����q{��3�fm)�Ą�����6�UhhQօ!]SW�O��:[���c�Ŏ���w<���I'R�S��d�	������Ҋ����N�e�f`���R�f���TX��Ȓ��,dy�w��B�߼bc���+dA0j	
Y���a�)�2��Z�EXI?`��}6`��*pW&�Z�+o��gcĮ;	u#�uc8pX������2�݃·������ܪ�ƅ�K�p���)�DNT�7|���4��-h&��"c�R�����xH=^�—Z�e����0s����z�gO)�6Ho4���tX����P���4?3�m��y�2n�Z�ѥPf,|��^�;��V��zt"B�yu��d�AE�.r���t<��Ў�[,������IB�e���"o�j��w=-|��l/a��+�_������'���ٖ�-�*��ȉ�~+���ɢb��k!��D���ٻ��� ���u�ɗc�$&�	4	�MB���uogv�{��I~\��R
�����h����z
�2�e��⚆�X���g��(��2YA�7�������^�‚�h���VqY����O�Dܯ�mfј�fƃ�2�)hw
�M����h�4t+K�W[���F���HݮŠ�Њ9Ͷ���+T�	��^v����q�XB�n���?�o�
�n�Ľm������{��7��K�s_�hz/,��f�ve�(v?iC�n0�D�a���g��@�2�(�P�
c�c/SH���4I[�y��%����v�E�Bأ����k��/V3��e�v�{��ϫ�7uo/[���<z9���V����ñ�����DDR�o��EwGY�9ˎ�,+
�^����TX�V�9��Q�&�2����J��Q��.SwM�
ìp3!dM�Ow3[ͩ���(����0�����b�2*��!�
5�+�O�2%����{"v+�T���,��U�B�h#/3���n,%V�4��h��7�l-��"miK�~�m��%B)hXx����Zǁ�Z�*s�s`gU�9+�ć���M�����7Ce%d��X�Q��q;�-�;B���Um�;�����NvU5��}f���XH���}�6���X�~�1/��o'nOX�r�y�
a����;�Z`�K#�_?�խ���X�[��
�k���^ bxcH=�ApUf�w�=�#����"��jv�.1���
��;�I&
N�*OHn�L�$���EGyK�+��wrW����DJ�yo��MaX�\0YC�YZ�\\�l�p[%O�Z�|G��������՛�ީcU��}�,��
��Ҽ8{�j�ȗ�r�T�)�K}�������\���%����b6:�{��U�{�(k[�֨S|xA�3M�˿°G8<DU�,�(�'�Wz;73��B8��x��V�j�Դ��<'��-��K��0�0�ir����*��q(�g�U�zB��R-#��-��#g�++K�/�BQb��)`�����
.x�P$`�#�e�Vׅ��K�{��W�_�F�|	F�
BëUsn��{q7t��`q�W�I:����g��6��M��"�q�u�p��ݧ-�����^[_�s?I��֛E9/h����C��r�X*�f�v�)�ea�}7���qa��$�h ��=��̓�䚆ȉ~|�Uk�6dΏ�GЗ�™��a:�W�O�	�E���'����"_Q��6�����@�N�E��N᫕X󟅬>7��'!l�#�OA�����uﷇo�R��[v����y��*�b�%�P�
�!ּ�+����5.+�Q'<����: M
�ar�Ћ�8�M��t�����S�C�p�z�����w�?�{2��s~5�x��v�<�j��E���&n��`%T5x1����<^��
+��#+���[�q�>m�R�5��J,Q3`�^�7żX��⫉_�^�xU���&U"��w��*�wj�D87�>�b����5�A��0�?6�x+�n��BǓ����h�u��^�aL�s<J�;)���g��
��ep�7�!�@��#�S���?�/!'�9`��/.8ݓvN��(3�υ>�9
����W�1�նM�@K96GFj�&-�|e彳��Zx5+��V�{Rs�>�xtR,���נ��e�[���7�����~��!��l�ټ���S����C��	n΃�6�@��oA,��ϡ��D^E�(^�x���X05_�2��a60�ʴ�g�g��id��2�_ZTn/�p]_-��+�%
�zw��*������<�!b�$Kg�tG�
\��O��E�Z��ҭ�v�r�Qu��m[9��J�����,�����ZE�%`�R�*:�A����Zd��fPƪTͨ?U��~�pÛ&iJI;s��x7����J�M}����Ä�,Zڄ��K<��"�e��f���n����F�/��IX�<�鞞�àG4���Ζ�f�}s[z�*��O��e��`�#]�i
�!���(��B�bM$�x
���5�sD��:�o�h�C#*�δ��z�fIl�qB�}l/�-�$镯����R.4�rV�+JY��5]<\����K��r��ֲm��o�gƥ�����|�D��D�����`���KlںK���E���A?ja��ۣVKx��:B�V��`)E��y�>E"��=�(�O{i��=��M����>
�`���zV�+��ff�����s�V����[j�uDD��2-!����#�PZŒ��(pc�ZC�c��^�{�c�݃ͯFYQ&k�X~��r��{�<&��h�P\�S��S
��zӬXђs6n��)�j�E�$�_�w*�b��m��`4d�!�iیK�^l��a��&���X��(�}�5Xf5*Cjڗ���[����1��>UX���˧�_c�Q�Y��o��:��L��
�8�����p�u=�J�uh�� �4F����#Y������+�K���&/�_ŭ��ڟ�,�_x��^^����m	'�b<~��9e�WYO�t�E3���+���%��囻�a��vt����ֿO��y���x
bYB�X�2��Q��DD^�/\Se�%�u�NJ1�U{��t���:��'���J�@Qb�iF�ud�T`eP�����D6�7��-�e�X�w�IR�X�\���/��e�e�ܻ�okߓR_�)t�i	�Q�X�W���ߞ�B̗� Gn~YX+�"����u��X����+R�e��"v��(��@���q���W���*����L�#7 �F	f���Zׇ@s�6�
.��t
�U�̮U�EF��Z]����.&͍'��6�۸�l����e�{�('"n���O/��4`Ǫo��av���=-L��%���"ۃ�_��4�"(�c�,__�lP"(ȶ[x!�jԧ�}��CJ-�:�kp��=�D/N冪5��#���Gw�Vq7�(����Zmfdg}V�b�n��焷r%wJ����g;_b!��U�+%-!l���t�>���� k8��K��'�>_�F��Yr7�c��ԹO�
fwi���_� ��O�(�����Ck&%���Tb��_���H��r�գé0XX��,Æ��D�=��TU�m	?L�a�n0����_!��p�`
���Kd�
��a�0��紶b���AnI��'}�ϊ��|
���p�$X_ɑ�J�/��I�%���]$��(��Xg��4�H,k?XC��h��!��؉�����[{ƞlej�21/wn�!��T
qKx�~g.�.���a����TqI��t�!ʓ�nZ��ō�1����9�S)��>��]b�ڭEy��)��j�liT1(`b��X�a�v\x�� h�>]�ާ)@g�e(�n?ӡ��򣸖Ӊ�:�A�~p#�&����{\���nABd{�/J[~��HLS�`�m�T�@���`me�ur'&H��*���z��G"(�膥�����]z�pw}�����pk�$幪X2&�ލk�p�TT�;b������y�ej�:�B�F��j
�Ey`�U�q�E��Ow�ӝ�ONX��Nw:��Nw�ӝ��ӝ�t�՝�t�;`u�;��NX��Nw:����Mo�HF�M��u4�x�"�,�E�%(4��l�e�D ���3�U6����[��t��&�s��e���a ,�a ,@Xa�@X�@X������a��@X������ ,���a ,x�x�@X𷽓
�F�G�\�½�R�g<����S�j￧��>�O�(������5~%_�lP�$�4����o�D��
�Ԁq��T���*3���3��5�j�U��MX���(��v�J�s��Uu��b�j@'�
Y﫸bUI�*jYf�6�C2�dqY��a���UJ�	k�3�c�2R��l�T��d�W�%�J�XU���t��̻PC��U�",@XpΒ���)k;R�L��F#WX�+��Qn'�]1X�(,JB@XpVa�T�h��I2���>&(Hk>�r��Y��*ڒ0+�6����L���r4^�����*,��r���[UKH�s��:��]��Uu.��U��KX.]9�uaX��;��<4�Wa�2 ,8Nb�~�y����ki���U�w�d��q���Mo�{뤈��݇���v���� ,���a ,������3Ι��Ϲ�|���N�m��q��qc��]g�"�_��V�1E:z��f���H�Ŏ_X�(�
�H�+ª�L�I��BX�_\��X;�6�rA�y\���6V�!�v�v������~�2DX�[���qY�U�d��T�1�7�36
k��y*nc�	��f�Aw+l&
���BX<}�z���Ĥe'��7y��V���xƄixM��x#���CMX��aͳ�����э֙�;*�����ԝ�L�K��{��R��9�n����_��sד��d�:���N_�M��cb�d�j"o>ɍy�5/֮��1D!��nu�t�'�	K�L��2���qY&�EW�Iy� ���/�^��yX�ʾĮ�g�<~�?‚b*;ٻ1[�	k�V!�k���究�>�T�Fm�5��������d�KX��O���j�ZW�;�=؉&�j({�^���F��e��!,�g���,E
'V�L�6+�w��>��s~���AXɾ�Dg�ڙPa��5�����ъ���L�W3ń5�J�Y���^$U��
���,=/�������� 
W_�ɄU%�kU����w>LN$,q[8��nyؔ5M3z�eV1���y��(��*��C��ֽD���6a�t��oa
;;7h~9��gk}�g�%�I�	QG	K���0%q�q7�Sғ}��/8*
�Kw��lڒ0�PӍ_�V]���	a‚����:����4�6�V_nWE�ㄥ]�����%��]�Z�iZ~
-� ��q��m��S��U����,�~��
3k����sF��a’��t�Lg��%���{�Yq�iaխF7~�,�@�J��(�)�Q�IX�U�R�7�2տ�(�Oۄ��G��“�#�ޥ�b��.	"1;a�J�c|�`��4��%�S<���Bw�ҋ�Y
�Kƈ�bk{U���K���!����Vg!v3ݵzUb���6q:�X#t��zP3�
K$21��^��σ�tđ��n�r)@�]����	K�9�{�b�5FXz[���yӔ��1�*L~����������2-��w�d�QY6r���Zf�-+G�~^��|�1��^�fc�e�Z�"\Ř6��룄�y-�哝����n��@X�ˢP��0�|�����j�|+,�Dz~#�t��,�;�
Y��;���N�nA#��}1;a��D�M�yX�ϒ����	kP��0�aO;a�c��MH��SV9��������Ǜq�J�����"%������h\��F�����ʹ��aX_�؛nl[x�����4��eDzͲ�FbF_��j$�7w7�_N���L��5#.�AX�k�D�*��6�8���ė&�.����v���vf����(1r�n���\X����Ƶ�	�Ü|����1V�B	?^M�����	�$��B�g���‚?l���� ,� ,�a��\�{&�@X������ ,�a�����:,�O���G]
��a�@X�� ,���a ,��
ӏO@Xp՞�=�u�‚��U��z�ǿ9 ,���ѫ|ez(��le�����NU��\�����{�Aa�5Go�����w�W��1�?5�Am��\O5��*���o���‚+�UO�t!‚+�;�~��C?w�"b!����9�����s2bq� ,�ua�aX��M|^G�;3��ջ;C�껰�9q��#a!��:�IH�TMȡ��	�B�u���HAX��zX$�(�n�;
��WyƊА�HXa]�YB��&�r���BXzvS�	����.�$l{�a���
a�+�Ek@IHI��.�,!	�d��P!a!�K:w�Ҁ��9�bq� ,�ua�aT��,Ñ���e��4,�E¢�����鎰�¢�N��W�����z{��Ca!�K.	IXۄux��#��a]^IH�:o���}��
aa�s��k�#,s��K��b�a)�Z|��|EX_��.y��_�֖��FD,��W��b��r���=',zX罖�-v%a!��!,�X.����r��s�BX��~��{&�a!�?.,�8>�ߗ��O~[Xb�}�\K�&P�*���\�DX�/˝���;�%q 
_M��U(H�t$�R5�0�?	���3�,�qw�Y�r��t�ᶩ��=�Og����p��Ĩ�v"�)��N�zQ%M�ES���ύ8��
��i�����ϳ�G�*��������:^e�i�4(K��6`��),���;I-�.a���`�H,�
F�z1���յ�*!+DZ��ʳ�o+~VD��������8),w�^���W+�SY\��������ܸ�����dgieM��{�
�z���~��7��w�GSW�㶠��n<19�c�(!��j���@Ʌu�.?��F^v_@a
|�r+��B�p�릑QX�ĺz��bhi���â��G,�\B��wgS���U������g}X�}u	}���urk���w%�N-�Ca��5 |���}��E7h�>6(,�u��G@�
ݖkk
k�'w5
���u�|��5L��,r��|q8	c3���RXW�����>�3īaC�����֐�
k�
�=r�k�꠰6��.ӷ܄Ok�����례��pK���@a=n�.��X�.XaŁ�ŋ��4��F	'V1_a���,(,����c�CamXs&?�UX���>,��4i����\X|X�.�Xi�0�Ԍ�u>>F	���n5D��!��(�b��z}Vȭ�Xa�g���9��2�r"�A�i�ttXA�Zk��*��ݵ��浀k������P��`�X�z��9񁹄p�O����%��`�n�0L(��d)���sxu�w�e���RX�N(��:�$?��B>���oIV�,�O���1��>�u$�{z������� J}X:9:�K`�X�AAw�`c
�>.�A�5
ϻ��}�"�t���Xكz��
�Y��I��*0����f
�#�W�!�fX۪9��y�cj�#�W9ᢘ���,(�YWX��ѕ�K�.�� ���l��Ϸ����]\x���=&�hR��`�=����g��ϻ����n���Jy�d�с�瑋��`��H
>F`X@�U�%��g*��.!����7��)`�@a��$�d`���ʇ�A��KS�X�Us,�OG	7���ߙ���&?X�_N~���]Szt	,��V�0�,��w��ba�p�e�y�֪�,�

k�Ss`*�X�a-z�p�%��@aX%\{���@,(,t	,(,����~����,�.(���`AaAaX�|X ��QB(,X
�bAa��`X����
!��'[w7�{�j�aI?��y���R}��9Jص�-*��]�O8����a�K/��&v�q҈�Z?�PV���k`Q��y�6%*�m���^�Ւ\F���o��I��{�+�zϟ[y��:�,��:��r��DD��vxS�U.�l��-?��ؠ~;��>��b	�ۢ����
������bT`��r��h�$�ʴ��<�Nz�>��jm)
k�~�N1r����Gm�v�D:�Z���'�\G+�++Sk�UL�X�3<�*LG�CYJ)�RX�ʲ死�I��鑘!5r�ܕ�^�(���}&��3�ȍ$�Fx�VIK�j(�X][Hy�ԫv�rm
kN�P;}T�M�fb��F��YV�G�Sr<�bN��)-.��cE�`��?B�1r؂���"�92��^Xުc�Lܪ�O;�߽�QBf�;�zj��_���>� +��zj�$և8�Z���S�w5a���5�y��K�k��(��Y���Z��T�Cv(4jlTu]��N%�S��«\����,i��ʌ�%W���r9�#��Dj����X���:�O,��]c��<̡`"
�)�L�{a�,ķ��&�c,m�o�%J�'3���j��p���X��֍��N���V��!��U���Ğ���!����Úp����SU�FbB	�JaЉ'Y�P	U~��?��Kv\�~pg��_������OL.��`(H:|v�X� ��Ye7���9ݛZ^���Cg�pPX��,9ڳ=$���$��*�}]bXs�P��
��r��e�4��r���$�.�&�݀5g�gq�3�X[E/>s�8�s̬���*�!��
W4,Ɗ�&
k��85
n�J�]���`��*ˋ��]��.��+����W�,�%�rb��5`��guO�K�J+u
ɜ�$�
��0`5��7֬QBqP����&	$O��g‡E#_�+���>��}XWGwwF	��N2@�Z��o]B���}E�$�.
k�K;��<rgR(X‡`�%���ʴU`1��G��s9�I�J#e�����f���qX]+2{�:qge_��t��<6/��(>�ݥ��Nw��*�Y@�2���[}If �\:�$n���8�Oه��Ѡ;�Hr��rX�6�-�X���\�lWG��fP��Ku�[%�\k����w�d���t����S٤��lSsX4/�qV]��}�,�'���:�EƒNu	���[���6c��)���D����t���#�J������,�+k��J��~�ǁ�_�|���O��νO��3s	���h���;L��w-sz���b+���.����bX�<��7
`-X�<5J��l
�Le�-K��wQXȇS�@�7�am9�(x�^��(!,�����܇bX|X��8
^XF	�<�(,������@,��8
K���0J�p�U�T,
�=�����a
 �ba��I/^X��Ҧ�T�E�[v����D��}�ѽ�x��ꩪ�����aN���0��Y�b�6���E	%}���X�ϩzP��ᙿjz�p�%�k)�'W�{k�������+G�pM�j�jӡ�kH��El3��՜����X�QB_97Ji|�����������L�=��K(kO�3���w�K����v�feP�r�M��2`dY��o�d��*�*��,�ZN�fI�dc)ܬ�(U���q�&��q�?��f�I��"�(׬���ZGN!Hv�,���QXm���4�>Dgu�W_)I_�烮Y�ⴧ��_�|��6Y2ڎB/���`5�ҭ,�s�R�_Ow�G���ב��0�?�5]¦t�b4't$V2����.�dG����v�lc�:)do)�p`��
�Z�U��|J~Of��
��z2t%g[-UxSV�>����Mg�R[����*���ZYf�j����6���Q���֗��S>j�\"]K����ʓ�¡��q�_�3��{����ªT^u����U.:[Zb'ɒ�Zjt�z]��%�����5�m\q�:p��Z�WWr�uU�m�!G_YN1�H/���QyG)!�����\�?Z����QN�X�~.k���{.<��f�5�"��^�-�#�^8�Y]��t���H�
W�����S-)���5��]�:���&I}'�g��>�\��&����cF��.�:J5��Za]>�*9��`b5B~���I+�/{g��8�C�_�pE�e�N̐/�f����t��Rx��@�vJ�a�DR�2V0��$E"K`���T���yH�6��lJ��%#�*�h��)v�փ�N^m`�lOWj+�*7S���	���
�wzJ(��=$�ů@�=̀uHG�6�GQ��%J��#��PFG�1@����+���gףuX���(�#�َ������:!^k���F���Ҵ���9�v� ��w>�ԅ%Q�}�ӄbb	�����#�\a6��I2�cN�
��o�D����!L��R��Kiʹ2߃����[��{X��!��\�TsXg�ҊZ�N8�H��]���_+V�B�ω�BVs��(E-I���]����}
3y7�b�r�`�[��}<,��.GD#B�}M[��RX�,ԣ@�WXsU�%l���^���O�́��#~�P1j�eAàD<~(�>X�v���e�p讻��E�ʊ����cv�;��4Xʖ�B�2���ɀ%>YNs��F-s����a�`шH`���\̓�
Nޡz��WVT�j�GSs���E`��|�,�hdۭ�,�>+��$���X�P�x��|�t�,==,�X�����:�6���YBU�
~V4`��v���a��us䧴���;b��auݎ�>�e'Vi[&�X�a���1X�G��
>{d�d���>9,�.���?���E���^Y1�kv,A�9�P۾�����	X�"��<Xbr��@O9������P/�V���z1ɒAt��BZ�Y�5Žr�h����B�T=6�������
����K�:�A|1�q�u�����hG!�x/̔�Vm�tc���
�*��7ڱ��ޖ1eB�
,�=�|q���1�^�x	e��I2�a�=�"Om�O|�)\��`�8M��a3���v��0�o�|��g�z	q��	����
�=�F��/�82�@�)^�6�	��`�اOO�=����B�w��֕[g�����5鞙�d�ƌӂ��td��u<�k�=SdSD�3�r�{�߶�'JY�ȯ)���r��(��G�)�������F�!�G�H 
;q�ԋ9�v�z��yԐp�	��>�Z���K�6����-n��,)(t£�he�m��AVb��$8�a�����)�e�yPS@�g~��}hҽ� �}%��K�7z�ȴ	�-�	��2���G�lF���X��O��f8�X��5����+��ֲ'��Ǖ;�j����3·v�p�ÿ��ޝ�ɜ�[�au_g�~ ����.�{���n�����o�a�+忿��j�Kֲ��7l?��ZKx(ݕ�EVy�Uqt��9��ʕ�!�g4ßYKx�2G��vO������)���簞�X/�����)�6n),�բBBWkp�Q��=,��rb9�X��a���ʁ�z������r`='��s��c<��{&�A��ˁ���+{�
�[&C�_��?�
=X/}��f�͸K���{ޥ�r&�4",�RXK�U�<�*x|������0���4���O7e7�g�"k�V�4Խ��yJ�U�d��q�i흘��o�����(�ŀu�y=�P����+�.��ؚ����{8	)6a.7zn)M�|MMUO��&�����f�a:\sK	��V����%[bj�B+L�gX�B�

�Z.�Q��Z�
[�:����FQ
X5�{mؘH T�,b�*���>O,���/��ol�2�X�<�u~;�t��V�����Q���!�D=LF�A��3�=�q���F�h�ne�=v씆X���W�~UmQW�ͦ����X��u�y��X5H��M�_�2A�$��x��CXQ��PdtZ`�"|'T���zW`A�X־	�ڠ�3T���	U���"n��Z��U_���Mp�
T؂��č��Go(E�6r�������0
�RC9H���6��H��n�^�u����T;9
$��Guq/�;��ᇮ
j���
��><b�Mj
����,&6:$��
7���fE�T8t�fj?@V�C�ac����pbuQU�A� ��.֛�V�>d:is`�!G�s��\h���]��ȶ�!��UJ{4�����k�Wy���I��m�KyJH}�ت&�g`�[�qP}�ȓ�J`��d��Ȍj����!�
2;�ΐ�
<7B��.ַ�5(R(Wլ�NG��eU��g��h*��pou&���
,�����UmФ�JH:���â
���
��)�&��+̀�y����5�Y"�$�,*���dE�l�j�s��Àu��EUdB��	X���	X��1`} �۟��1�W�XX�M��"|iZ��h��v,���U��j�&�Uӽ&z�a���V�MXj�,���A�-kHXE&4/6�OV���P+�䤺zXe@ȧߦ�Ր�����1�2
 +��Àu�����ލ	;������BB�� �n"z�|��!�V݉�r�P�#����P��$��ϵ�����֜�+��![�X	#�X	��a�d�z����z
	���$�F�����1�].8���#�&��{��
B��k^��F��33W�ŋ�c��6ecE
T%� �`a�'�Y
��b��a5�zX�(�6AJ�wI��FB–��ܠ6j�)�Q��c��u�T�@£dҘ��t��V����B=,h���4dZ�!�>���`����k�I\lzX҉��g��-�f�z�kpK�KFOYm2�k��ayk�Īuc�(��j/mvV,��)�lb
2]v �2jk֒�:,��H��^��q�hC�a9�FZ��ź�� �j��m�ek%�w(X':t#+���vE�ivDm�^|�G��b
]FkY�p*sX�.eiN�ځ��Q�@�5�%������54���رa���IMS�E�%6�ܴ�5WO6j�J��t�׶����t�������ۿ�a���9y�a	��zK`����%\
����U�oZ�CB�M[tk�k
^q��,Ł���jw�t��k��n*,֒��G]q�CB'�{X���r`9�^5�劣,��i����ˁ�rkɊ�N,��sX?�8�r�y�O	=$t`9�X�ayH��r`y��a����X����5��8�X�a����r`9�<��9,�{X/m��`�X�ʁ�r`=���8��Ƅn),��̰q`�=,���9,'֒CB#���RXn)�a9��f��`���4>�݁�Z��~9���`y�CBֲ=���CB��XO��=,k�!�ˁ����=�)$tS�Љ���p��a9���r^-��9}w`5�a9��X�+�Ib��ۅI
n),'���`�WU��m�K��T^����R�[�׻�;��|m�o,ߖ���[;��*�oO@����ڼ#�V�_����Y���[/�U)5{��r`��<��}z߅W3j9�X�=#�����_��ѩ�Ds��}s`��,���k�j��rH9�|{NZ53oㅉur+�_��r`���ֹ*�K�G���{Z,ߞ<*|m�ʽ*�o��\���7�o�o���[�DA����a@X����X琠�.��IEND�B`�PK�uKXl��spiko/search.php<?php
/**
 * The main template file
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package spiko
 */
get_header();?> 
<section class="section-space blog">
    <div class="container<?php echo esc_html(spiko_container());?>">
        <div class="row">
            <?php
            if ( is_active_sidebar( 'sidebar-1' ) ):        
                echo '<div class="col-lg-8 col-md-7 col-sm-12 standard-view">';
            else:
                echo '<div class="col-lg-12 col-md-12 col-sm-12 standard-view">';   
            endif; 

            if (have_posts()): 
                    while (have_posts()): the_post();
                        if(! function_exists( 'spiko_plus_activate' ) ){
                            get_template_part( 'template-parts/content','search');
                        }
                        else{
                            include(SPIKOP_PLUGIN_DIR.'/inc/template-parts/content-search.php' );                            
                        }
                    endwhile;
                else:
                    get_template_part('template-parts/content', 'none');
                endif;

                // pagination
                    do_action('spiko_post_navigation');                
                // pagination
                ?>      
            </div>  
            <?php get_sidebar();?>
        </div>
    </div>
</section>   
<?php get_footer(); ?>PK�uKX��;�IIspiko/searchform.php<form class="input-group" method="get" id="searchform" action="<?php echo esc_url(home_url('/')); ?>">
    <input type="search" class="form-control" placeholder="<?php echo esc_attr_x('Search', 'placeholder', 'spiko' ); ?>" value="" name="s" id="s"/>
    <button class="search-submit fa fa-search" type="submit"></button>
</form>PK�uKX{��!!spiko/sidebar-footer.php<?php
/**
 * Footer Widget Area
 *
 * @package spiko
 */
?>
<div class="row footer-sidebar footer-typo">
    <?php
     $spiko_footer_widget=get_theme_mod('footer_widgets_section',3);
        switch ( $spiko_footer_widget )
        {   
          case 2:
          get_template_part('inc/footer-widget/layout-1');
          break;

          case 3:
          get_template_part('inc/footer-widget/layout-2');
          break;

          case 4:
          get_template_part('inc/footer-widget/layout-3');
          break;

        }
    ?>
</div>PK�uKX�Fd�spiko/sidebar-woocommerce.php<?php
/**
 * side bar template
 *
 * @subpackage spiko
 */
?>
<div class="col-lg-4 col-md-4 col-sm-12">
    <div class="sidebar">
        <?php if (is_active_sidebar('woocommerce')) : ?>

            <?php dynamic_sidebar('woocommerce'); ?>

        <?php endif; ?>
    </div>
</div>	PK�uKXZ�#|spiko/sidebar.php<?php
/**
 * Template file for sidebar
 */
if (is_active_sidebar('sidebar-1')) :
    ?>
    <div class="col-lg-4 col-md-5 col-sm-12">
        <div class="sidebar s-l-space">
            <?php dynamic_sidebar('sidebar-1'); ?>								
        </div>
    </div>
<?php endif; ?>PK�uKXw�Z,,spiko/single.php<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package spiko
 */
get_header();?>
<section class="section-space blog bg-default">
    <div class="container<?php echo esc_html(spiko_single_post_container());?>">
        <div class="row">           
            <div class="col-lg-8 col-md-7 col-sm-12 standard-view blog-single">
                <?php
                while (have_posts()): the_post();
                    if ( ! function_exists( 'spiko_plus_activate' ) ){
                        get_template_part('template-parts/content', 'single');
                    }
                    else{
                        include(SPIKOP_PLUGIN_DIR.'/inc/template-parts/content-single.php');
                    }
                endwhile;
                if(function_exists( 'spiko_plus_activate' )):
                    if(get_theme_mod('spiko_enable_related_post',true ) ===true ):
                        include(SPIKOP_PLUGIN_DIR.'/inc/template-parts/related-posts.php');
                    endif;
                endif;
                if (get_theme_mod('spiko_enable_single_post_admin_details', true) === true):
                    get_template_part('template-parts/auth-details');
                endif;

                // If comments are open or we have at least one comment, load up the comment template.
                if (comments_open() || get_comments_number()) : comments_template();
                endif;
                ?>
            </div>  

            <div class="col-lg-4 col-md-5 col-sm-12">
                <div class="sidebar s-l-space">
                    <?php dynamic_sidebar('sidebar-1'); ?>  
                </div>
            </div>
        </div>
    </div>
</section>
<?php get_footer(); ?>PK�uKX$M��k�k�spiko/style-rtl.css/*
Theme Name: Spiko
Theme URI: https://spicethemes.com/spiko-wordpress-theme/
Author: spicethemes
Author URI: https://spicethemes.com
Description: Spiko WordPress Theme is a lightweight, elegant, fully responsive, and translation-ready theme that allows you to create stunning blogs and websites. The theme is well suited for companies, law firms, eCommerce, finance, agency, travel, photography, design, arts, personal, and any other creative websites and blogs. The theme is developed using the Bootstrap 4 framework. It comes with a predesigned home page, good-looking header designs, and a number of content sections that you can easily customize. It also has lots of customization options (banner, services, testimonial, etc) that will help you create a beautiful, unique website in a short time. Spiko is compatible with popular plugins like Polylang, WooCommerce and Contact Form 7. The theme provides custom breadcrumb trail options for popular plugins - Breadcrumb NavXT, Yoast SEO, and Rank Math SEO plugin .This  theme is fully GDPR-compliant and doesn’t use any external Google Fonts. All fonts are locally hosted. Spiko theme is available in several locales. (DEMO: https://spiko.spicethemes.com/) 
Tags: one-column, two-columns, right-sidebar, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, sticky-post, threaded-comments, translation-ready, rtl-language-support
Version: 1.1.5
Requires at least: 4.5
Tested up to:6.2
Requires PHP: 5.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spiko
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Common
2.0 Forms
3.0 Buttons
4.0 Lists
5.0 Tables
6.0 Links
7.0 Header Contact Details
8.0 Social Icons
9.0 Woocommerce Header Cart
10.0 Main Slider
11.0 Next Preview Button
12.0  SECTION HEADER
13.0  MIXED CLASS
14.0  SERVICE SECTION
15.0  CTA SECTION 
16.0 TESTIMONIAL SECTION
17.0 FUNFACT SECTION
18.0 Blog 
  18.1 Blog Post Content
  18.2 BLOG PAGINATION
  18.3 BLOG SIDEBAR
19.0 Gallery
20.0 TEAM SECTION
21.0  SHOP AND PRODUCT SECTION
22.0  Sponsors Section
22.0  CONTACT DEATIL SECTION
23.0  FOOTER SECTION Site Info
24.0  Breadcrumb
25.0  ABOUT PAGE
26.0  PORTFOLIO PAGE
27.0  Error 404 PAGE
28.0  Footer Sidebar Section
29.0 Page Scroll Up
30.0 Blog Single 
31.0 Common classes
32.0  Sticky Menu Classes
33.0  Footer Layout
34.0 Slider Video Button , Background Video And Images
  34.1  New Widget Slider
35.0 Pre Loaders
  35.1 PRE LOADERS 2
  35.2 PRE LOADERS 3
  35.3 PRE LOADERS 4
  35.4 PRE LOADERS 5
  35.5 PRE LOADERS 6  
36 Others
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Common
--------------------------------------------------------------*/
html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}
html { font-size: 1rem; }
@media (min-width: 768px) and (max-width: 991px) {
  html { font-size: 0.875rem; }
}
@media (min-width: 200px) and (max-width: 768px) {
  html { font-size: 0.75rem; }
}
body,
button,
input,
select,
textarea {
  font-family: "Poppins", "Work Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3,
h4, h5, h6 {
  clear: both;
  line-height: 1.5;
  margin: 0 0 1.875rem;
  color: #0a0a0a;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

h1 { font-size: 2.250rem; /* 36px */ }
h2 { font-size: 1.875rem; /* 30px */ }
h3 { font-size: 1.500rem; /* 24px */ }
h4 { font-size: 1.250rem; /* 20px */ }
h5 { font-size: 1.000rem; /* 16px */ }
h6 { font-size: 0.875rem; /* 14px */ }

p {transition: 0.3s;margin: 0 0 1.6rem; padding: 0;font-size: 0.938rem; color:#888888;font-family: 'Poppins', sans-serif;}
p:last-child { margin-bottom: 0rem; padding: 0; }

dfn, cite, em, i { font-style: italic; }

blockquote {
  font-size: 1.500rem;
  font-style: normal;
  margin: 0 0 1.563rem;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  quotes: "" "";
  font-weight: 400;
  position: relative;
  background-color: #f5f6fa;
}
#testimonial-carousel3 blockquote{border-left:unset;background-color: unset;font-size: unset;}
#testimonial-carousel4 blockquote{border-left:unset;background-color: unset;font-size: unset;}
.testi-4 .item {margin: 0 2px;}
blockquote cite { color: #061018; font-size: 1.000rem; display: block; font-style: normal; font-weight: 400; margin-top: 0.5em; }

q { quotes: "“" "”" "‘" "’"; }

blockquote:before, blockquote:after { content: ""; }

#content :focus {
  outline: 1px solid #000;
}
dl dd a, dl dd a:hover, dl dd a:focus, ul li a:focus { color: #727272; }
.bg-default, .section-space.blog.bg-default{background-color:#f5f6fa;}
.bg-default-color{background-color:#ffffff;}

.entry-meta .tag-links a {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    color: #727272;
    font-size: 0.875rem;
    display: inline-block;
    padding: 0.188rem 1.25rem;
    margin: 0 0 0.625rem 0.500rem;
}
.entry-meta .tag-links a:hover, .entry-meta .tag-links a:focus {
    color: #ffffff;
}
.entry-meta > span {
    color: #727272;
   margin: 0px 0px 0px -5px;
}
.entry-meta a {
    color: #727272;
    padding: 0;
}

.blog-author {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    margin: 0 0 5rem;
    padding: 2.188rem 1.875rem 1.875rem;
}

.blog-author.media .avatar img {
    border-radius: 50%;
}
.blog-author .avatar {
    margin: 0 0 0px 2.5rem;
    height: 12.5rem;
    width: 12.5rem;
}
.blog-author .post-by {
    color: #727272;
    font-size: 0.938rem;
    font-weight: 400;
    margin-bottom: 0.625rem;
}
.blog-author .name {
    margin: 0 0 0.625rem;
}

p:last-child {
    margin-bottom: 0rem;
    padding: 0;
}

.blog .standard-view .entry-content img {
    max-width: 100%;
    height: auto;
}
.wp-caption.alignnone img, .wp-caption.aligncenter img, .wp-image-907 {
    width: 100%;
    height: auto;
}
.aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.wp-block-latest-comments__comment-meta{background-color: #ffffff;}

.has-media-on-the-right.is-stacked-on-mobile {
    margin-top: calc(2 * 1rem);
    margin-bottom: calc(2 * 1rem);
    right: calc( -12.5% - 75px);
    max-width: calc( 125% + 150px);
}
.post .entry-content {
    display: block;
    overflow: hidden;
    margin: 0px;
}
.wp-block-cover-image .wp-block-subhead:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color), .wp-block-cover .wp-block-subhead:not(.has-text-color), .wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color) {
    color: #ffffff;
}

.wp-block-cover-image-text a, .wp-block-cover-image-text a:active, .wp-block-cover-image-text a:focus, .wp-block-cover-image-text a:hover, .wp-block-cover-text a, .wp-block-cover-text a:active, .wp-block-cover-text a:focus, .wp-block-cover-text a:hover, section.wp-block-cover-image h2 a, section.wp-block-cover-image h2 a:active, section.wp-block-cover-image h2 a:focus, section.wp-block-cover-image h2 a:hover {
    color: #fff; 
}
.alignwide, .aligncenter {
    margin-bottom: 1.87rem;
   
}
.funfact-icon {color:#ffffff;} 
address { margin: 0 0 1.5em;color: #888888; }

pre {
  background: #eee;
  font-size: 1.000rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

hr { background-color: #bbb; border: 0; height: 1px; margin-bottom: 1.5em; }

code, kbd, tt, var { font-size: 1.000rem; }

abbr, acronym { border-bottom: 1px dotted #666; cursor: help; }

mark, ins { background: #eee; text-decoration: none; }
.business-shop mark, .business-shop ins { background: transparent;}
big { font-size: 125%; }

iframe { border: 0; }

#wrapper { background-color: #f8f8f8; margin: 0px auto; }

.sticky{}
cite{ font-style: italic !important; }
.bypostauthor{}
#attachment_907 { width: 100% !important; }
.alignnone img{ display: block; height: auto; width: 99%; }
img.alignleft, .wp-caption.alignleft{ margin-left: 30px; }
img.alignright, .wp-caption.alignright{ margin-right: 30px; float: left;}
img.wp-caption .alignnone { display: block; margin: 0 auto; height: auto; width: 100%; }
.wp-caption .wp-caption-text, .gallery-caption, .entry-caption{
  clear: right;
    font-style: italic;
    line-height: 1.5em;
    margin: 0.75em 0;
    text-align: center;
}
.wp-caption.alignright { margin: 5px 20px 20px 0;}
.wp-caption p.wp-caption-text { 
  font-size: 14px;
  margin: 12px 0;
  text-align: center;
  font-style: italic;
  line-height: 1.5em;
}
.wp-caption.alignleft { margin: 5px 0 20px 20px;}
.gallery .gallery-icon img { 
  height: auto;
  max-width: 90%;
  padding: 0;
  border: 1px solid #fff !important;
  -moz-box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
  -webkit-box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
  box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
}

.gallery-item .gallery-caption, .hc_service_column .gallery-item .gallery-caption {
  font-size: 14px;
  margin: 12px 0;
  text-align: center;
  font-style: italic;
  line-height: 1.5em;
}
a img.alignright { float: left; }
a img.alignnone { margin: 5px 0 20px 20px; }
a img.alignleft { float: right; }
a img.aligncenter { display: block; margin-right: auto; margin-left: auto; }
@media screen and (min-width: 30rem){
  img.alignleft { float: right; margin-left: 20px; }
}
.alignleft { display: inline; float: right; margin-left: 20px; }
.aligncenter { clear: both; display: block; margin-right: auto; margin-left: auto; }
fieldset {
    margin-bottom: 1rem;
    border: 1px solid #e9e9e9;
    margin: 0 2px;
    padding: 0.35rem 0.950rem 0.75rem;
}
fieldset p { margin: 0px 0 20px; }
legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.500rem;
  color: #0f0f16;
  font-weight: 600;
  display: table;
  max-width: 100%;
  border-bottom: none;
  width: auto;
  padding: 0;
  white-space: normal;
}
/*--------------------------------------------------------------
2.0 Forms
--------------------------------------------------------------*/

label { color: #21202e;display: block;font-weight: 500;margin-bottom: 0.5em;font-size: 1rem; }
fieldset { margin-bottom: 1em; }
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #0a0a0a;
  background: transparent;
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  display: block;
  padding: 1em;
  width: 100%;
}
.slider-caption.yes .wpcf7 input[type="text"],
.slider-caption.yes .wpcf7 input[type="email"],
.slider-caption.yes .wpcf7 input[type="url"],
.slider-caption.yes .wpcf7 input[type="password"],
.slider-caption.yes .wpcf7 input[type="search"],
.slider-caption.yes .wpcf7 input[type="number"],
.slider-caption.yes .wpcf7 input[type="tel"],
.slider-caption.yes .wpcf7 input[type="range"],
.slider-caption.yes .wpcf7 input[type="date"],
.slider-caption.yes .wpcf7 input[type="month"],
.slider-caption.yes .wpcf7 input[type="week"],
.slider-caption.yes .wpcf7 input[type="time"],
.slider-caption.yes .wpcf7 input[type="datetime"],
.slider-caption.yes .wpcf7 input[type="datetime-local"],
.slider-caption.yes .wpcf7 input[type="color"],
.slider-caption.yes .wpcf7 textarea {
border: 1px solid #707070;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #0a0a0a;
  outline: unset;
}
select {
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  height: 3em;
  max-width: 100%;
}
input[type="radio"],
input[type="checkbox"] {
  margin-left: 0.5em;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
  font-weight: 400;
}
button,
input[type="button"],
input[type="submit"] {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 2.188rem;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
input + button,
input + input[type="button"],
input + input[type="submit"] {
  padding: 0.75em 2em;
}
button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
  background-color: #ffff;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #ffffff;
}
button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
  background-color: #ffff
}
form#commentform label {display: inline!important;}
/* Placeholder contact page text color */
.contact-info::-webkit-input-placeholder { color: #0a0a0a; }
.contact-info:-moz-placeholder { color: #0a0a0a; }
.contact-info::-moz-placeholder { color: #0a0a0a; }
.contact-info:-ms-input-placeholder { color: #0a0a0a; }
/* Placeholder comment form text color */
.comment-form::-webkit-input-placeholder { color: #0a0a0a; }
.comment-form:-moz-placeholder { color: #0a0a0a; }
.comment-form::-moz-placeholder { color: #0a0a0a; }
.comment-form:-ms-input-placeholder { color: #0a0a0a; }
/*===================================================================================
3.0 BUTTONS
===================================================================================*/

.btn-small {
    font-size: 1rem;
    padding: 0.688rem 1.75rem;
}
.btn-ex-small { min-width: 9rem; font-size: 1.000rem; padding: 0.563rem 2.188rem; }
.btn-small, .btn-ex-small {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    position: relative;
    letter-spacing: 0;
    border-radius: 0;
    text-align: center;
    transition: .3s;
    font-weight: 600;
}
.btn-default:focus,.btn-light:focus,.btn-border:focus{outline: 1px solid;box-shadow: unset;}
.btn-default { color: #fefefe; border-radius: 3px; }
.btn-default:hover,.btn-default:focus, .btn-default:active { background: #fefefe;  }

.btn-light { background: #ffffff;border-radius: 3px; }
.btn-light:hover,.btn-light:focus, .btn-light:active {color: #fefefe;}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    color: #ffffff;
    box-shadow: unset;
}
.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show>.btn-light.dropdown-toggle:focus {
    color: #ffffff;
    box-shadow: unset;
    }

.btn-default-dark {color: #fefefe; }
.btn-default-dark:hover,.btn-default-dark:focus, .btn-default-dark:active {background: #333333; color: #fff;}

.btn-border { background: #fefefe; color: #333333; border: 2px solid #22a2c4; }
.btn-border:hover, .btn-border:active {  border: 2px solid #22a2c4; }
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background: transparent;
  -webkit-text-fill-color: #0a0a0a;
  transition: background-color 5000s ease-in-out 0s;
}
/*--------------------------------------------------------------
4.0 Lists
--------------------------------------------------------------*/

ul, ol { margin: 0 1.125em 1.5em 0; padding: 0; }
ul { list-style: disc; }
ol { list-style: decimal; }
li > ul, li > ol { margin-bottom: 0; margin-right: 1.5em; }
dt { font-weight: 700; }
dd { margin: 0 1.5em 1.5em; }
/*ul, ol { font-weight: normal; margin: 20px 0 0; }
ul > li, ol > li { margin: 0; padding: 4px 0; }
ul, ol { padding: 0 0 0 20px; }*/

/*--------------------------------------------------------------
5.0 Tables
--------------------------------------------------------------*/

table { border-collapse: collapse; margin: 0 0 1.5em; width: 100%; word-wrap: break-word; }
thead th { border-bottom: 2px solid #bbb; padding-bottom: 0.5em; }
th { padding: 0.4em; text-align: right; }
tr { border-bottom: 1px solid #eee; }
td { padding: 0.4em; }
th:first-child, td:first-child { padding-right: 0; }
th:last-child, td:last-child { padding-left: 0; }

/*--------------------------------------------------------------
6.0 Links
--------------------------------------------------------------*/

a { color: #0a0a0a; text-decoration: none !important; transition: 0.3s;cursor: pointer; }


/*==================================================================================
7.0 HEADER CONTACT DETAILS
===================================================================================*/
.navbar-light h2{margin: 0; padding-bottom: 0;font-size: 2.250rem;}
.header-sidebar {
  padding: 0;
  min-height: 2.813rem;
}
.head-contact-info {
  padding: 0.438rem 0 0.438rem;
  margin: 0px;
  display: block;
  float: left;
}
.head-contact-info li {
  display: inline-block;
  margin: 0rem;
  /*padding-left: 0.625rem;*/
  color: #ffffff;
  font-size: 0.938rem;
  position: relative;
}
.header-sidebar .head-contact-info {padding-top: 6px;}
.header-sidebar .widget li:before{content: "";}
.header-sidebar .widget .head-contact-info li.phone::after
{
  content: "|";
  font-family: FontAwesome;
  color: #fff;
  position: relative;
  left: 0;
  margin-right: 10px;
  margin-left: 5px;
}
.header-sidebar .widget li .fa-phone{
  padding-right: 0;
}
.head-contact-info li:last-child { padding-left: 0; }
.head-contact-info li a { color: #ffffff; }
.head-contact-info li a:hover, .head-contact-info li a:focus { color: #0a0a0a;}
.head-contact-info i { padding-left: 0.625rem; padding-right: 0.063rem; }

@media (max-width: 991px) { 
  .header-sidebar { padding: 0.875rem 0; }
  .head-contact-info li { margin: 0 0 0.625rem; }
  .address-info { text-align: center; }
  .custom-social-icons li { padding: 0; }
  .head-contact-info { float: none; }
}
@media (max-width: 991px) { 
.header-sidebar .widget{text-align: center;}
.dropdown-menu {border:unset;}
.navbar .navbar-collapse  ul, .navbar.navbar-collapse  ol{
    margin: 1.5em 1.125em 1.5em 0em;
 }
}
.footer-sidebar ul {
    list-style: none;
    margin: 0;
}
@media (max-width: 500px) { 
  .head-contact-info li { display: block; padding-left: 0; }
  /*.head-contact-info li::after { display: none; }*/
  
}
/*===================================================================================
8.0 SOCIAL ICONS
/*===================================================================================*/

.custom-social-icons { margin: 0; padding: 0; }
@media (min-width: 991px){
.header-sidebar .widget .custom-social-icons{
    float: right;
    padding-left: 1.188rem;
}}
.widget .address-info i {
    padding-left: 0.625rem;
    padding-right: 0.063rem;
}
.custom-social-icons li { display: inline-block;padding: 0.438rem 0.1rem;}
.header-sidebar .custom-social-icons li{padding-right: 0;}
/*.custom-social-icons li > a:hover, 
.custom-social-icons li > a:before { display: none; }*/
.custom-social-icons li > a:hover, .custom-social-icons li > a:focus {
    background-color: #fff;
}
.custom-social-icons li > a {
    font-size: 0.838rem;
    line-height: 2.3;
    transition: all 0.3s;
    display: inline-block;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: none;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    height: 1.75rem;
    width: 1.75rem;
}

.contact .custom-social-icons li > a {
    background-color: #eeeeee;
    }

@media (max-width: 1200px){
.contact-form-map .row{
  margin-left: 0;
   margin-right: 0; 
}}
.custom-social-icons li a i { padding: 0; }
.widget em {
    font-style: normal;
    display: inline-block;
    margin: 0;
    color: #ffffff;
    font-size: 0.938rem;
    position: relative;
    padding: 0.413rem 0 0.313rem;
}
@media (min-width: 991px){
.widget em {
    float: left;
 }
}

/*===================================================================================*/
/*  Search Box Style
/*===================================================================================*/

/* 1. Search bar Fullwidth - hidden search field */
#searchbar_fullwidth {
  display: none;
  /* float: left; */
  float: none;
  width: 100%;
  height: 3.875rem;
  border-top: 1px solid #d8d8d8;
  padding-right: 9.375rem;
  padding-left: 9.375rem;
  z-index: 1;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 1px 3px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 3px 2px rgba(0,0,0,0.3);
  box-shadow: 1px 3px 2px rgba(0,0,0,0.3);
}
#search_box_fullwidth {
    display: block;
    width: 88%;
    border: 0;
    outline: none;
    padding: 0;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #64646d;
}
#search_submit_fullwidth {
    display: block;
    float: left;
    margin: 0.563rem 0 0.563rem;
    font-size: 1.750rem;
    background: none;
    color: #202020;
    border: 0;
    outline: none;
    line-height: 1.5;
    cursor: pointer;
    padding: 0;
}


/* 2. Search Bar Fullscreen - hidden search field */

#searchbar_fullscreen {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0,0.95);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 1000;
}
#searchbar_fullscreen input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #64646d;
  background: rgba(0, 0, 0, 0);
  font-size: 3.125rem;
  font-weight: 400;
  text-align: center;
  border: 0px;
  margin: 0rem auto;
  margin-top: -3.188rem;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  outline: none;
}
@media (max-width: 991px){
#searchbar_fullscreen input[type="search"] {
    font-size: 2.125rem;
    margin-top: -1.25rem;
    }
}
#searchbar_fullscreen .btn {
  position: absolute;
  top: 50%;
  right: 50%;
  left: auto;
  margin-top: 5.813rem;
  margin-right: -2.813rem;
  border-radius: 2px;
  border: black;
  color: #ffffff;
  padding: 0.563rem 1.563rem;
  font-size: 0.938rem;
  font-weight: 400;
}
#searchbar_fullscreen .close {
  position: fixed;
  top: 0.938rem;
  left: 0.938rem;
  color: #fff;
  opacity: 1;
  padding: 0.625rem 1.063rem;
  font-size: 1.688rem;
}
#searchbar_fullscreen.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}
/*===================================================================================*/
/*  Search Box
/*===================================================================================*/
.nav-search{
    margin-left: 25px;
    display: inline-block;
    line-height: 16px;
    position: relative;
    top: 0px;
}
.nav .open> .search-icon, .nav .open> .search-icon:focus{
background-color: unset; 
    border-color: unset;
}    
.search-box-outer .dropdown-menu {
    top: 50px !important;
    right: auto !important;
    left: 0px;
    padding: 0px;
    width: 324px !important;
    margin: 0px !important;
    background-color: #fff !important;
    position: absolute;
}
@media (max-width:768px){
.search-box-outer .dropdown-menu {
    position: absolute;
    right: 0 !important;
    width:280px !important;}
  }
.search-box-outer .dropdown-menu > li {
    padding: 0.25rem 0.5rem;
    border: none;
    background: none;
}
.search-form {
    width: 100%;
}
.search-form label {
    width: 98%;
}
.search-form .screen-reader-text {
    display: none;
}
.search-panel .form-container {
   padding: 10px 0 2px 0;
}
.search-panel input[type="search"]{
  display: block;
  width: 100%;
  height: 40px;
  color: #0a0a0a;
  line-height: 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 7px 7px 7px 90px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: large;
}
.search-form input[type="submit"] {
  cursor: pointer;
  position: absolute;
  width: auto;
  transition: all .3s ease-in-out;
  color: #fff;
  font-weight: 600;
   height: 40px;
  right: auto;
  left: 8px;
  font-size: 15px;
  top: 13px;
  padding: 12px 25px;
}
.search-box-outer .dropdown-toggle::after {
  display:none;
}
.navbar-nav.sm-collapsible .search-box-outer .has-submenu {
  padding-left: 0;
}
.navbar.navbar-light .navbar-toggler {
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,.1);
}
 .search-box-outer a{  
    font-size: 16px;
    font-weight: 400;
    font-family: Montserrat;
    color:#fff;
     padding-left: 0 !important;
 }

.search-box-outer .bg-light { background-color:transparent !important;}
.search-box-outer .search-form input[type="submit"] {padding: 12px 20px;}
.search-box-outer .search-form input[type="submit"]:focus {outline: 1px solid black;}
.search-box-outer a i{ 
     padding-left: 3px;
  }

@media (min-width: 768px) and (max-width: 992px){
.search-box-outer .dropdown-menu {
    top: 35px;
 }
}
.search-box-outer .sub-arrow{display: none !important;}

/*===================================================================================
9.0 Woocommerce Header Cart
===================================================================================*/
.nav-search {
    margin-left: 0rem;
    display: inline-block;
    line-height: 1rem;
    position: relative;
    top: 0px;
    padding: 0 0 0 0.5rem;
}

.cart-header {
    position: relative;
    /*border-right: 1px dotted #ffffff;*/
    padding: 0 0.5rem 0 0;
    display: inline-block;
    margin-left: 1.5rem;
}
.five .cart-header{border-right: unset;}
.shop_exists .cart-header {border-right:unset;}
.cart-header > a.cart-icon {
    -wekbit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.3;
    color: #ffffff;
    padding: 0;
}
/*.navbar .nav .nav-item .cart-header > a:focus {color:#21202e;}*/
.cart-header > a.cart-total {
    font-size: 0.75rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    position: absolute;
    left: auto;
    top: -5px;
    padding: 1px;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -wekbit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width: 991px) {
  .cart-header {
    margin-top: 0.938rem;
    margin-bottom: 0.938rem;
  }
}
.woocommerce img.custom-logo, .woocommerce-page img.custom-logo {
    max-width: unset;
}
/*===================================================================================
10.0  Main Slider - Owl Carousel
===================================================================================*/

.main-slider { position: relative; }
.bcslider-section .overlay,.video-slider .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.bcslider-section .owl-theme .owl-dots {
    position: absolute;
    top: 87%;
    right: 0;
    left: 0;
    z-index: 1000;
}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}
#slider-carousel { margin: 0px; }
#slider-carousel .item {
    position: relative;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    z-index: 0;
    background-size: cover;
  height: 56rem !important;
}
.home-section {
    position: relative;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    z-index: 0;
    background-size: cover;
    height: 56rem !important;
}
.video-slider.home-section{overflow: hidden;height: 56rem!important;}
.video-slider #video_slider {
    position: absolute;
    bottom: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
}
.video-slider .hero-section {
    overflow: hidden;
}
.video-slider #slider-carousel {
    margin: 0px;
    position: relative;
    top: 0;
    background: transparent;
}
.video-slider #slider-carousel .item {background-color: transparent;}
.slider-caption { position: relative; display: table; height: 100%; z-index: 1; }
.slider-caption.yes { height: auto;right: 0;position: absolute;left: 0;z-index: 1;top: 55%;-webkit-transform: translateY(-50%); }
.caption-content { display: table-cell; vertical-align: middle;width: 60%;}
.caption-content .heading{margin-bottom:2.6rem;}
.slider-caption.yes .wpcf7-form label{color: #ffffff;}
.slider-caption .title {
    font-size: 3.125rem;
    line-height: 1.1;
    color: #fefefe;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, .4);
    margin: 0 0 1.500rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
}
.slider-caption .inner-title{
    display: block;
    width: 62%;
    color: #fff;
    position: relative;
    padding: 0 50px 0 0;
}
.slider-caption .btn-combo i{padding-right: 0.5rem;font-size: 0.813rem;}

.slider-caption .text-center .inner-title{margin: 0 auto;}
.slider-caption .text-right .inner-title{margin-right: auto;}
.slider-caption .inner-title:before {
    content: '';
    position: absolute;
    width: 10px;
    right: 0;
    bottom: 0;
    top:5px;
}  
.slider-caption .btn-default {
    margin-left: 0.938rem;
}
.slider-caption .description {color: #ffffff;margin: 0 0 2rem; text-shadow: 0px 4px 3px rgba(0, 0, 0, .4);}
.slider-caption .heading span{ 
    font-size: 1rem;
    font-weight: 600;
    color: #fefefe;
    border-radius: 10px;
    text-align: center;
    padding: 0.5rem 1.125rem;
    margin-bottom: 0.938rem; }   
.slider-caption .ptop-15 .btn-small { margin-right: 0.313rem; margin-left: 0.313rem; } 
@media only screen and (max-width: 600px) { 
  .slider-caption .title { font-size: 2.5rem; margin: 0 0 1.000rem; } 
  .slider-caption .inner-title{width: 75%;padding: 0 20px 0 0;}
  .slider-caption .ptop-15 { padding-top: 1.563rem; }
}
/*Slider Pointer*/
.pointer-scroll {
  background: #22a2c4;
  position: absolute;
  font-family: 'fontAwesome';
  content: '\f103';
  bottom: -33px;
  right: 0;
  left: 0;
  border: 2px solid #ffffff;
  color: #fff;
  z-index: 2;
  text-align: center;
  font-size: 1.700rem;
  line-height: 2;
  display: block;
  width: 4.125rem;
  height: 4.125rem;
  margin: 0px auto;
  border-radius: 50%;
  -webkit-animation: intro 2s;
  animation: intro 2s;
}
.pointer-scroll:hover, .pointer-scroll:focus { color: #fff; }
@media (max-width: 767px) {
  .pointer-scroll { bottom: -1.563rem; width: 3.125rem; height: 3.125rem; font-size: 1.350rem; }
}
.pointer-scroll .scroll { 
  -webkit-animation: finger 1s infinite;
  animation: finger 1s infinite;
}
@-webkit-keyframes intro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes intro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}


/*===================================================================================
11.0  OWL SLIDER NEXT - PREV BUTTONS
===================================================================================*/
.owl-carousel .owl-prev, .owl-carousel .owl-next{ 
  display: inline-block;
  background-color: rgba(33, 32, 46, 0.5);
  opacity: 0;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.3;
  padding: 0 !important;
  margin: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  border: none;
}
.owl-carousel .owl-prev { right: 1.875rem; }
.owl-carousel .owl-next { left: 1.875rem; }
.owl-carousel:hover .owl-prev { right: 10rem;opacity: 1; }
.owl-carousel:hover .owl-next { left: 10rem;opacity: 1; }
.owl-carousel .owl-next:focus { opacity: 1; }
.owl-carousel .owl-prev:focus { opacity: 1; }
@media (max-width:768px){
.owl-carousel:hover .owl-prev { right: 3rem;}
.owl-carousel:hover .owl-next { left: 3rem; }
}
.owl-carousel .owl-prev:hover, 
.owl-carousel .owl-prev:focus { 
  color: #fff;
}
.owl-carousel .owl-next:hover, 
.owl-carousel .owl-next:focus { 
  color: #fff;
}

/*===================================================================================
12.0  SECTION HEADER
===================================================================================*/
body.remove-banner .navbar{position: relative;} 
body.remove-banner.page-template-template-business .navbar{position: absolute;} 
body.remove-banner .navbar.stickymenu, body.remove-banner .navbar.shrink1,.seven.navbar.shrink1{position: fixed;} 
body.remove-banner.page-template-template-business-php #content {padding: 0;}
.navbar.navbar4 .nav .nav-item .nav-link {color: #000000;}
.navbar.seven .nav .nav-item.html , .navbar.seven .nav .nav-item.html a{color: #000000;}
.navbar4 .search-box-outer a, .navbar4 .cart-header > a.cart-icon {color: #000;}
.navbar4 .cart-header {border-right: 1px dotted #000000;}
.section-header { padding: 0; position: relative; text-align: center; }
.section-separator.border-center, .section-separator.border-center-two {
    margin-right: calc(50% - 50px);
}
.section-separator {
  position: relative;
    height: 4px;
    width: 50px;
    border-radius: 0;
    margin-bottom: 2rem;
}
.section-separator::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 20%;
    border-radius: 0;
    left: -28%;
    top: 0;
}
.section-separator::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 22%;
    border-radius: 0;
    left: -60%;
    top: 0;
}
.section-header {margin: 0 0 4.375rem;padding: 0;position: relative;}
.section-header .section-title {margin-bottom: 1rem;font-size: 2rem;}
.section-header .section-subtitle {font-size: 1.000rem;font-weight: 400;margin: 0 0 0.500rem; }
hr.divider { border-top: none; width: 4.375rem; height: 0.125rem; margin: 0.938rem auto 21px; }
.right-header .navbar-brand {
    margin-right: 1rem !important;
}
@media (min-width: 768px){
.full-header .navbar-nav {
    float: left;
 }
}
@media (max-width: 768px){
/*Toggle Button*/
.navbar-toggler:hover,
.navbar-toggler:focus {
  background-color: transparent;
}
.navbar-toggler {
    border-color: rgba(0,0,0,.1);
  }
}
/*Right header*/
.header-rgt {
    width: 100%;
    position: relative;
    vertical-align: middle;
}
.navbar .rgt .search-box-outer .dropdown-menu {right: 0px !important;}
.custom-logo-link-url{ margin-left: 1rem;}
.header-rgt .custom-logo-link-url, .header-rgt .navbar-brand {
    float: left;
    margin-right: 1rem;
    margin-left: 0rem; 
    padding: 0;
}
@media (min-width: 992px){
.navbar.nav-rgt .container {
    display: block;
}}
.custom-logo-link-url .site-title{
  margin: 0;
}
.header-rgt .navbar-toggler,.content-center .navbar-toggler{ 
margin-top: 15px;
}
.navbar .header-rgt .search-box-outer .dropdown-menu {
    right: 0 !important;
    left: auto;
  }
 /*Center header*/ 
  .content-center{
  text-align: center;
    width: 100%;
}
.auto{margin:0 auto;} 
.content-center .navbar-brand {
    text-align: center;
    float: none;
}
@media (max-width: 768px){
.content-center .header-module {
    text-align: right;
}}
/*===================================================================================
13.0  MIXED CLASS
===================================================================================*/
.section-space{padding: 6.5rem 0 4.938rem;position: relative;}

/*===================================================================================
14.0  SERVICE SECTION
===================================================================================*/
.services .card {    
    border-radius: 0;
    margin: 0;
    margin: 0 0 1.875rem;
    transition: 0.3s;
    background-color: #f5f5f5;
    border: 0;
}
.services .card-body {
    padding: 2.313rem 2rem 2rem;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);}
.services .service-icon i.fa { 
    font-size: 3.5rem;
    color: #777777;
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;}
.services .service-icon {
    margin:0 0 1.688rem; 
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    display: inline-block;
}
.services h4 a{margin:0 0 1.313rem;font-size:1.125rem; color:#0a0a0a;}
.services .description{
     margin: 0 0 1.313rem;
     transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;}
.services .btn-small{   
     transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding: 0;
    text-align: right;
    font-size: 0.75rem;
    font-weight: bold;}
.services .btn-small i {color:#0a0a0a;padding-right: 0.5rem;font-size: 0.875rem;font-weight: bold}
.services .card:hover{ color: #fff;-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1); }
.services .card:hover .service-icon i.fa,
.services .card:hover h4 a,.services .card:hover .description,
.services .card:hover .btn-small,.services .card:hover .btn-small i{color: #ffffff}

.services .col-md-4:nth-child(3n+1){ clear:right; }
@media (min-width: 768px) and (max-width: 992px) {
  .services .col-md-4:nth-child(3n+1) { clear: none; }
  .services .col-sm-6:nth-child(2n+1) { clear:right; } 
}

.services .post:hover .entry-header .entry-title a, .services .post:hover .entry-content p {
  color: #ffffff;
}
.services .btn-default-dark,.blog .btn-default-dark{
  padding: 0.688rem 2.5rem;
  border-radius: 3px;
}
.services .service-icon img {
  width: 4rem;
  height: 4rem;
}

/*===================================================================================
15.0  CTA SECTION 
===================================================================================*/
.cta{
    background-image: url(assets/images/cta.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    background-size: cover;
    padding: /*7.5rem*/ 0;
}
.cta .overlay{
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 15px;
}
.cta .cta-btn i {
    padding-right: 0.5rem;
    font-size: 0.813rem;
}
@media (min-width:768px){.cta .overlay{padding: 5.313rem 6.25rem 6.25rem;}}
.cta p{margin-bottom: 2.5rem;}
.cta-btn{margin-top:1.313rem}
.cta .btn-default{margin-left:1.25rem;}
.cta .title{font-size: 2rem;margin-bottom: 1.75rem;}
@media (min-width:768px){.cta-block{padding:0 5rem}.cta .btn-default{margin-bottom:1.25rem;}}
@media (max-width:600px){.cta .btn-default{margin-bottom:1.25rem;margin-left: 0;}}

/*===================================================================================
16.0 TESTIMONIAL SECTION
===================================================================================*/
 .testimonial{
     height: 100%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    position: relative;}
/* .testimonial { 
        background: url(../images/bg/testimonial-bg.png) 0% 5% no-repeat;
    }*/
#testimonial-carousel1 .testmonial-block {
    background-color: transparent;
    position: relative;
    margin: 0;
    padding: 0 0.938rem 0rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;  
}

#testimonial-carousel1 .avatar {
    position: relative;
    margin-left: 100px;
}
.slideitem-1 #testimonial-carousel1 .avatar {flex: 0 0 350px;}
.slideitem-1 #testimonial-carousel1 .avatar {flex: 0 0 350px;}
.page-template-template-testimonial-1 .slideitem-2 #testimonial-carousel1 .avatar, .page-template-template-testimonial-1 .slideitem-3 #testimonial-carousel1 .avatar {flex: 0 0 350px;} 
#testimonial-carousel1 .testi-grid .avatar {
    flex: 0 0 350px;
    }    
#testimonial-carousel1 .avatar:before {
    content: "";
    width: 1px;
    height: 40%;
    display: block;
    position: absolute;
    left: -48px;
    top: 0;
  }
  #testimonial-carousel1 .quotes-seprator:before {
    content: "";
    width: 1px;
    height: 40%;
    display: block;
    position: absolute;
    left: -48px;
    bottom: 0;
  }
  #testimonial-carousel1 .avatar:after {
    content: "\f10e";
    font-family: 'fontAwesome';
    font-size: 40px;
    line-height: 50px;
    position: absolute;
    left: -85px;
    top: 50%;
    transform: translate(50%,-50%);
}
#testimonial-carousel1 .avatar img {margin: 0.125rem; }

#testimonial-carousel .testmonial-block .entry-content,#testimonial-carousel1 .testmonial-block .entry-content {
    line-height: 26px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 60px;
    margin: auto 0;
}
#testimonial-carousel .testmonial-block .entry-content:before, #testimonial-carousel2 .testmonial-block .entry-content.quote:before {
    top: 0;
}
.testimonial:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 0;
    /*background-color: rgba(255, 255, 255, 0.85);*/
}
.testimonial .testmonial-block .name {
    margin-bottom: 1.5rem;
    display: inline-block;
}
@media (min-width: 600px){
.testimonial #testimonial-carousel .owl-dots {
    position: absolute;
    bottom: 60px;
    right: 475px;
   }
}
@media (max-width:600px){#testimonial-carousel1 .testmonial-block {display: block;}
 #testimonial-carousel1 .testmonial-block .entry-content{padding-bottom:0;}
}
/*===================================================================================*/
/* 17.0 FUNFACT SECTION
/*===================================================================================*/

.funfact {
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    background-size: cover;
    padding: /*7.5rem*/ 0;
}
.funfact .overlay{
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 15px;
}
@media (min-width:768px){.funfact .overlay{padding: 9rem 6.25rem 8rem;}}
.funfact-inner { 
    cursor: pointer;
    padding: 0rem 3rem 0.625rem 0rem;
    border-right: 1px solid #ffffff;
    margin-bottom: 1rem; 
}
 .funfact-inner .count-up::after {
  content:"+";
}    
.funfact-title { margin-bottom: 7px; color: #ffffff; font-size: 3.75rem;}   
.funfact-inner .description { color: #fff; font-size: 1.125rem; margin: 0; }

/*--------------------------------------------------------------
18 Blog 
--------------------------------------------------------------*/
.blog .post {
    background: #fff;
    position: relative;
    transition: all 0.3s;
    margin-bottom: 3.125rem;
    border-radius: 0;
    background: #f5f5f5;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
  }
.blog .post .post-thumbnail {
    position: relative;
    overflow: hidden;
    margin: 0;
    text-align: center;
    background-color: #000;
    z-index: 1;
    border-radius: 0;
}
.blog .list-view .post-thumbnail {
    width: 22.25rem;
    height: auto;
    float: right;
} 
.blog .list-view .post {
    margin-bottom: 2rem;
  }
.blog .post-thumbnail img {
    -webkit-transition: all 0.30s linear;
    transition: all 0.30s linear;
    width: 100%;
    height: auto;
}
.blog-btn {
    margin-top: 1.313rem;
}
.blog .blog-btn .btn-small{min-width: 8.5rem;font-size: 1rem;padding: 0.688rem 1.75rem;color: #fff;}
.blog .blog-btn .btn-small i{color:#fff;}
.blog .post:hover{   -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);}

.blog .post:hover .post-thumbnail img {
    zoom: 1;
    filter: alpha(opacity=30);
    -webkit-opacity: 0.3;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    transform: scale(1.15,1.15);
    -webkit-transform: scale(1.15,1.15);
    -moz-transform: scale(1.15,1.15);
    -ms-transform: scale(1.15,1.15);
    -o-transform: scale(1.15,1.15);
}
/*--------------------------------------------------------------
18.1 Blog Post Content
--------------------------------------------------------------*/
  
  .post-content, .page .home-blog .post-content, .blog .page .post-content, .section-space.blog .post-content{
    padding: 1.25rem 1.5rem;
  }  
  .page .post-content {
    padding: 0;
  } 
  .entry-date {
 /*   height: 4rem;
    width: 4rem;
    padding-top: 0px;
    border-radius: 0;
    line-height: normal;
    position: absolute;
    margin-top: -5.25rem;
    z-index: 1;
    right: 0;
    margin-right: 0rem;*/
    padding-top: 0px;
    border-radius: 4px;
    line-height: normal;
    position: absolute;
    margin-top: -96px;
    z-index: 1;
    left: 0;
    margin-left: 0.625rem;
    padding: 10px 15px;
    width: fit-content;
  }
  .entry-date .date,.remove-image .date
  {
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.3;
  }
  .day {
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 1.375rem;
    font-weight: bold;
    padding-top: 0.75rem;
    line-height: 1;
    border-bottom: 1px dotted #fff;
    margin: 0 1rem;
    }
  .month {
    display: block;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    font-size: 0.875rem;
  }
  .remove-image{
/*    margin-bottom: 1.25rem;
    margin-top: 0;
    position: relative;*/
    width: fit-content;
    border-radius: 4px;
    line-height: normal;
    margin-bottom: 1.25rem;
    padding: 10px 15px;
  }
  .blog .list-view .entry-date {
    margin-top: -1.3rem;
    right: 0;
    margin-right: 0rem;
  }
  .entry-header h4{margin-bottom: 0;padding-bottom:1rem;font-size: 1.125rem;}
  .entry-content p{margin-bottom: 0;padding-bottom: 1rem;}
  .entry-meta{margin-bottom: 0.75rem;}
  .entry-meta a{display: inline-block;}
  .home-blog .entry-meta a:hover, .home-blog .entry-meta a:focus, .home-blog .entry-meta span:hover {color: #000;}
  .blog .entry-meta a:hover, .blog .entry-meta a:focus, .blog .entry-meta span:hover {color: #000;}
  .entry-content p a {margin-bottom: 0;padding-bottom: 0;color: #727272;font-weight: bold;}
  
  .blog .btn-small{transition: 0.3s;padding: 0;text-align: right; font-size: 0.75rem;font-weight: bold;}
  .blog .btn-small i {color: #0a0a0a;padding-right: 0.5rem;font-size: 0.875rem;font-weight: bold;transition: 0.3s;}
  .entry-meta i {padding-left: 8px;color: #333333;transition: 0.3s;} 
  .entry-meta span{font-size: 0.875rem;padding-left: 0.5rem;color: #888888;transition: 0.3s;}
  .blog .content a:hover i , .blog .content a:hover span , .blog .content  a:focus i , .blog .content a:focus span {color: #0a0a0a;}
  .entry-meta a:last-child span{padding-left:0px;}
  @media (max-width: 768px) {
 .blog .list-view .post-thumbnail {
  width: 100%;
  float: none;
  }
  .blog .list-view .media {
  display: block;
  }
  .blog .list-view .entry-date {
  margin-top: 0.5rem;
  top: 0;
  right: unset;
  }
}

/*--------------------------------------------------------------
18.2 BLOG PAGINATION
--------------------------------------------------------------*/
.nav-pagination{padding: 3.125rem 0 0;}
.blog .nav-pagination {padding: 1.5rem 0 0;}
ul.pagination{padding: 0;margin: 0;}
.pagination .dots{padding: 0.87rem 0.3rem;
    font-weight: 600;color: #888888;}
.pagination .page-link {
    text-align: center;
    color: #888888;
    padding: 0.9rem 1rem;
    background-color: transparent;
    border-radius: 50%;
    border-color: #888888;
    margin: 5px;
    font-weight: 600;
    height: 50px;
    width: 50px;}
.pagination .page-link:active,.pagination .page-link:hover,.pagination .page-link:focus{color: #ffffff;}
.pagination li:first-child .page-link , .pagination li:last-child .page-link {border-radius: 50%;padding: 0.87rem 1.3rem;}
.pagination li .page-link .fa, .pagination li .page-link .fa{font-weight: 600; }
.page-item.disabled .page-link {color: #ffffff;}
 @media (max-width: 768px) {.pagination .page-link {height: 40px;width: 40px;}}
/*--------------------------------------------------------------
18.3 BLOG SIDEBAR
--------------------------------------------------------------*/

.sidebar .custom-social-icons li > a:hover ,.sidebar .custom-social-icons li > a:hover i{color: #fff;}
.sidebar .head-contact-info , .sidebar .widget em , .footer-sidebar .widget em{
    padding: 0;
    margin: 0px;
    float: none;
}
.sidebar .widget address i , .footer-sidebar .widget address i {padding-left: 0.625rem; padding-right: 0.063rem;}
.sidebar table , .sidebar address{margin: 0;}
.sidebar .right-sidebar {
    padding-right: 20px;
  }
  .sidebar .left-sidebar {
    padding-left : 20px;
  }
@media only screen and (max-width: 768px) {
  .sidebar .right-sidebar {
    padding-right: 0px;
  }
  .sidebar .left-sidebar {
    padding-left : 0px;
  }
}
.sidebar .widget {
  color: #333333;
  margin: 0 0 2.125rem;
}
.sidebar .widget:last-child {
    margin-bottom: 0.625rem;
}

.widget .widget-title {
  padding: 0rem 0rem 0.625rem;
  font-size: 1.25rem;
  font-weight:600;
  z-index: 1;
  position: relative;
  margin: 0;
}
.widget .input-group .form-control , .widget .search-field {
  font-size: 0.875rem;
  padding-right: 1.25rem; 
  padding-left: 1.875rem;
 background-color: #fff;
 color: #0a0a0a;
}
.widget .search-submit , .widget .search-field [type=submit] {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #0a0a0a;
  background: transparent;
  z-index: 3;
  display: block;
  transition: all 0.3s; 
  padding: 0;
  cursor: pointer;
  border: 0;
}
.woocommerce-widget-layered-nav li:first-child ,
.widget_recent_reviews li:first-child ,
.widget_top_rated_products li:first-child ,
.widget_products li:first-child ,
.widget_nav_menu li:first-child , 
.widget_pages li:first-child ,
.widget_product_categories li:first-child ,
.widget_links li:first-child ,
.widget_categories li:first-child ,
.widget_archive li:first-child ,
.widget_recent_entries li:first-child ,
.widget_meta li:first-child ,
.widget_recent_comments li:first-child {
  position: relative;   
  margin-top: 0;
  padding-top: 0 !important;
}
.woocommerce-widget-layered-nav ul ,
.widget_recent_reviews ul ,
.widget_top_rated_products ul ,
.widget_products ul ,
.widget_nav_menu ul , 
.widget_pages ul ,
.widget_product_categories ul ,
.widget_links ul ,
.widget_categories ul ,  
.widget_archive ul ,
.widget_recent_entries ul ,
.widget_meta ul ,
.widget_recent_comments ul {
  list-style: none;
  margin-right: 0;
  padding-top: 0;
  margin: 0;
}
.woocommerce-widget-layered-nav li ,
.widget_recent_reviews li ,
.widget_top_rated_products li ,
.widget_products  li ,
.widget_nav_menu li , 
.widget_pages li ,
.widget_product_categories li ,
.widget_categories li , 
.widget_archive li ,
.widget_recent_entries li ,
.widget_meta li ,
.widget_recent_comments li {
  padding-bottom: 0.5rem;
  margin: 0; 
  position: relative;
  padding-right: 0.938rem;
}
.woocommerce-widget-layered-nav li:last-child ,
.widget_recent_reviews li:last-child ,
.widget_top_rated_products li:last-child ,
.widget_products li:last-child ,
.widget_nav_menu li:last-child , 
.widget_pages li:last-child ,
.widget_product_categories li:last-child ,
.widget_links li:last-child ,
.widget_categories li:last-child ,
.widget_archive li:last-child ,
.widget_recent_entries li:last-child ,
.widget_meta li:last-child,
.widget_recent_comments li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar em ,.sidebar .head-contact-info li 
{color: #333333;font-size:0.875rem;display: inherit;}
.sidebar ul li a {font-size: 0.875rem;color: #0a0a0a;}

.widget .tagcloud a {
    background-color: transparent;
    font-size: 1rem !important;
    display: inline-block;
    padding: 5px 10px;
    color: #0a0a0a;
    margin: 0 0.125rem 0.625rem;
}
.widget .tagcloud a:hover{color: #fff !important;}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img, .woocommerce-page ul.product_list_widget li img {
    width: 60px !important;
    float: right;
    margin-right: 0;
    padding-right: 0px;
  }
  .widget select{
    margin: 0px 0px;
    width: 100%;
    padding: 6px 12px;
    height: 45px;
    border-radius: 2px;
    font-size: 0.875rem;
    border: 1px solid #e9e9e9;
    letter-spacing: 1px;
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333333;
    background: #fff;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 1px solid #e9e9e9;
    display: block;
  }
 .widget .post {
  position: relative;
  margin-bottom: 1.875rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.widget .post .post-thumbnail {
  margin: 0 0 0 10px;
  overflow: hidden;
  float: right;
  display: block;
  width: 4.5rem;
  height: 4.75rem;
  border-radius: 0;
  background-color: unset;
}
.widget .post .post-thumbnail .img-fluid{width:72px;height: 76px;}
.widget .post:hover {
  box-shadow: unset;
}
.widget .post .entry-date {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-left: 0.5rem;
  font-weight: 400;
  height: 0;
  width: 0;
  background: unset;
  padding-top: 0px;
  border-radius:0;
  line-height: normal;
  position: relative;
  margin-top: 0;
  left:0;
}
.widget .entry-title{margin: 0; font-size: 0.938rem;}
.widget .post:last-child{margin-bottom: 0;}
.widget .post:hover .post-thumbnail img {
    opacity: unset;
    transform:unset;
    -webkit-transform: unset;
}
.sidebar .tab-content{margin-top: 0; padding-top: 0;}
.widget_nav_menu li::before, .widget_pages li::before, .widget_product_categories li::before, .widget_links li::before, .widget_categories li::before, .widget_archive li::before, .widget_recent_entries li::before, .widget_meta li::before, .widget_recent_comments li::before {
    content: "\f101";
    font-family: FontAwesome;
    color: #0a0a0a;
   position: absolute;
   right: 0;
}
.footer-sidebar li::before{content: unset;}
.footer-sidebar #text-1{
  background-color: #ffffff;
    padding: 2.5rem 1.75rem;
    margin-top: -120px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
  }
  @media (max-width: 576px){
  .footer-sidebar #text-1 {
    margin-top: 0px;
   }}
 .footer-sidebar .widget_text p.description{color: #888888;margin-bottom: 2rem;} 
 .light .footer-sidebar blockquote p{color: #888888;}
 .footer-sidebar .widget_text address a, .footer-sidebar .widget_text address p{color: #888888;}
 /*--------------------------------------------------------------
19 Gallery
--------------------------------------------------------------*/
.widget.widget_media_gallery img
{
max-width: 100%;
height: auto; 
}
.gallery { display: flex; flex-flow: row wrap; justify-content: center; margin-bottom: 0; }
.gallery-item { display: inline-block; margin-left: 10px; margin-bottom: 10px; text-align: center; vertical-align: top; width: 100%; }
.gallery-columns-2 .gallery-item { max-width: calc((100% - 16px * 1) / 2) !important; }
.gallery-columns-2 .gallery-item:nth-of-type(2n+2) { margin-left: 0 !important; }
.gallery-columns-3 .gallery-item { max-width: calc((100% - 16px * 2) / 3) !important; }
.gallery-columns-3 .gallery-item:nth-of-type(3n+3) { margin-left: 0 !important; }
.gallery-columns-4 .gallery-item { max-width: calc((100% - 16px * 3) / 4) !important; }
.gallery-columns-4 .gallery-item:nth-of-type(4n+4) { margin-left: 0 !important; }
.gallery-columns-5 .gallery-item { max-width: calc((100% - 16px * 4) / 5) !important; }
.gallery-columns-5 .gallery-item:nth-of-type(5n+5) { margin-left: 0 !important; }
.gallery-columns-6 .gallery-item { max-width: calc((100% - 16px * 5) / 6) !important; }
.gallery-columns-6 .gallery-item:nth-of-type(6n+6) { margin-left: 0 !important; }
.gallery-columns-7 .gallery-item { max-width: calc((100% - 16px * 6) / 7) !important; }
.gallery-columns-7 .gallery-item:nth-of-type(7n+7) { margin-left: 0 !important; }
.gallery-columns-8 .gallery-item { max-width: calc((100% - 16px * 7) / 8) !important; }
.gallery-columns-8 .gallery-item:nth-of-type(8n+8) { margin-left: 0 !important; }
.gallery-columns-9 .gallery-item { max-width: calc((100% - 16px * 8) / 9) !important; }
.gallery-columns-9 .gallery-item:nth-of-type(9n+9) { margin-left: 0 !important; }
.gallery-item:last-of-type { padding-left: 0; }
.gallery-caption {
  display: block;
  font-size: 0.71111em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Poppins", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
}
.gallery-item > div > a {
  display: block;
  line-height: 1.5;
  box-shadow: 0 0 0 0 transparent;
}
.gallery-item > div > a:focus {
  box-shadow: 0 0 0 2px #0073aa;
}
.standard-view.blog-single .gallery-item > div > a:focus {
    box-shadow: none;
    outline: none;
}
.sidebar a span{transition: 0.3s;}
.sidebar a:hover span {color: #ffffff;}
/*===================================================================================*/
/* 20.0 TEAM SECTION
/*===================================================================================*/
.team .card {
    font-weight: 400;
    border: 0;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    min-height: 400px;
}
.team .card-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    -webkit-perspective: 800px;
    perspective: 800px;
    padding: 3px;
}
/*.rotate-btn {cursor: pointer;}*/
.team .card-wrapper .avatar {
    display: block;
    width: 120px;
    margin-top: -60px;
    overflow: hidden;
}
.team .team-grid .card-body .list-inline li > a {
    color: #888888;
    font-size:0.875rem;
}

 .team .team-grid .card-body .list-inline li > a:hover {
    background-color: unset;
}
.team .team-grid .card-body p {
    color: #878e94;
}
.team .team-grid .card-body .list-inline {
    position: relative;
    margin-top: 20px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.team .team-grid .card-body .list-inline {
    position: absolute;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    width: 100%;
    visibility: hidden;
}

.team .team-grid:hover .card-body .list-inline , .team .team-grid:focus-within .card-body .list-inline {
    margin-top: 0px;
    padding-bottom: 1.563rem;
}
.team .team-grid:hover .card-body .list-inline , .team .team-grid:focus-within .card-body .list-inline {
    opacity: 1;
    visibility: visible;
}
.abc{
    opacity: 1 !important;
    visibility: visible !important;
}
.team .team-grid .card-body { padding-bottom: 4rem;}
/*===================================================================================
21.0  SHOP AND PRODUCT SECTION
===================================================================================*/
.shop .container { overflow: hidden; }
.shop .owl-carousel .owl-stage-outer { overflow: visible; }
.products {
   background-color: transparent;
   padding: 0;
   margin-bottom: 0.313rem;
   transition: 0.3s;
   position: initial;
   text-align: center;
}
.woocommerce-result-count{color: #0a0a0a;}
.section-module.blog.woocommerce .page-title
{
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 1px solid #e9e9e9;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    border: 1px solid #e9e9e9;
}
.woocommerce a:focus{
  outline: none;
}
.woocommerce .comment-reply-title {
    border-bottom: none; 
}
.woocommerce  .form-row {
    display: block;
    }
.woocommerce ul.products li.product .onsale, .products span.onsale, .woocommerce span.onsale{
  min-width: auto;
    min-height: auto;
  left: inherit;
    color: #ffffff;
    border-radius: 0;
    font-size: 0.938rem;
    line-height: 1;
    font-weight: 500;
    padding: 3px 7px;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: all 0.3s;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10); 
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    transition: all 0.6s;
    text-align: center;
    padding: 0.4rem 0.4rem 1.5rem;
    margin-bottom: 2rem;
}
.woocommerce ul.products li.product .button, .owl-item .item .cart .add_to_cart_button {
        color: #fff;
}
.woocommerce a.remove, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce ul.products li.product:hover .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce .return-to-shop a.button {
    color: #ffffff !important;
}
.woocommerce-page ul.products li.product:hover {
    box-shadow: 0 14px 25px 0 rgba(0,0,0,0.2);
}
.woocommerce ul.products li.product .price {
    display: block;
    color: #333333;
    font-size: 1.000rem;
    font-weight: 600;
    margin-bottom: .5em;
}
.woocommerce nav.woocommerce-pagination ul li {
    background: transparent;
    color: #333333;
    border-radius: 50%;
}
.woocommerce nav.woocommerce-pagination ul li a{
  color:#888888;
  border:1px solid #888888;
} 
.woocommerce nav.woocommerce-pagination ul li a.next{padding: 13px;}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    color: #ffffff;
}
.woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin:3px;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    cursor: pointer;
    display: inline-block;
    font-family: 'Open Sans', Sans-serif;
    font-weight: 600;
    transition: all 0.3s ease 0s;
    font-size: 1.125rem;
    border-radius: 50%;
    margin: 0px;
    padding: 15px;
    vertical-align: baseline;
    white-space: nowrap;
    width: 50px;
    height: 50px;
}
.woocommerce-loop-product__title {
    font-size: 1.125rem !important;
    text-transform: capitalize;
}

.woocommerce div.product form.cart .button, .woocommerce a.button, .woocommerce a.button:hover, .woocommerce a.button, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    border: 1px solid transparent !important;
}
.woocommerce-page .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus {
    box-shadow: none;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.woocommerce a.button,.woocommerce a.button:hover  {
    color: #fff;
}
.woocommerce-page .services .post{
    background-color: #ffffff;
    box-shadow: 0px 0px 0px 2px #e9e9e9;
    border-radius: 0;
    margin-bottom: 40px;
    padding: 30px 15px 25px;
    transition: all 0.4s ease 0s;
}
.woocommerce-page .services .post .entry-content {
    display: block;
    overflow: hidden;
    margin: 0px;
}
.woocommerce table.shop_table {
    border-radius: 0;
    margin: 0 0 40px -1px;
    padding: 0;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 200px;
    padding: 6px 12px;
    border-radius: 0;
    height: 44px;
}
.woocommerce-cart .cart-collaterals .cart_totals tr th, .woocommerce-cart .cart-collaterals .cart_totals tr td {
    border-top: none;
}
.woocommerce #review_form #respond textarea, .woocommerce-cart table.cart td.actions .coupon .input-text {
    border: 1px solid #e9e9e9;
}

.woocommerce ul.products li.product .price del, .woocommerce ul.products li.product .price ins, .woocommerce div.product p.price ins, .woocommerce ul.products li.product .price, .woocommerce .variations td.label, .woocommerce table.shop_table td, .woocommerce-cart .cart-collaterals .cart_totals table td, .woocommerce .woocommerce-ordering select, .woocommerce-cart table.cart td.actions .coupon .input-text, .select2-container .select2-choice {
    color: #64646d;
}
.woocommerce .wc-bacs-bank-details-heading, .woocommerce .title h3 {
    font-size: 1.125rem !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    padding: .750rem 1.2rem;
    margin-bottom: 0;
    box-shadow: none;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 0.675rem 3rem 0.675rem 1.250rem;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background-color: #fbfbfb;
    box-shadow: 0 7px 3px -5px #e0e0e0;
}

.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce .posted_in a, .woocommerce-product-rating a, .woocommerce .tagged_as a, .woocommerce div.product form.cart .variations td.label label, .woocommerce #reviews #comments ol.commentlist li .meta strong, .woocommerce table.shop_table th, .woocommerce-cart table.cart td a, .owl-item .item .cart .add_to_cart_button, .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a, .woocommerce-error, .woocommerce-info, .woocommerce-message {
    color: #333333;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    right: 1rem;
}

.woocommerce {
    text-align: right;
}
.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 15px;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label, .wc_payment_method label, .woocommerce #review_form #respond p label {
    font-weight: 600;
    font-size: 0.938rem;
}
.woocommerce form .form-row .required {
    text-decoration: none;
}
.woocommerce form .form-row input.input-text {
    border-radius: 0;
    height: 45px;
    padding: 6px 12px;
}
.dark .woocommerce form .form-row input.input-text, .dark .woocommerce form .form-row textarea{background: #000000;}
.woocommerce .col-1,.woocommerce .col-2 {
      max-width: 100% !important;
}
.woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text {
    padding: 6px 12px;
}
.woocommerce ul.products li.product .button, .woocommerce a.added_to_cart, .woocommerce div.product form.cart .button  {
    box-shadow: none;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 0px;
    padding: .600rem 0.7rem;
    transition: all 0.5s;
    margin-top: 0.7rem;
    height: auto;
    font-size: 0.9375rem;
}
.woocommerce div.product form.cart .single_add_to_cart_button.button:hover{color: #ffffff !important;}
.woocommerce a.added_to_cart {
    background: #333333;
    border: 1px solid #ffffff;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    border-radius: 0;
    padding: 6px 12px;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #e9e9e9;
}
.select2-container .select2-selection--single, .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

.woocommerce div.product p.price {
    text-align: right;
    font-weight: 600;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    font-size: 1.25rem;
}
.woocommerce div.product form.cart {
    margin-top: 2rem;
    padding: 0;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.woocommerce .quantity .qty {
    width: 3.5rem;
    text-align: right;
    height: 44px;
    padding: .500rem 0.7rem;
    border-radius: 0;
}
.woocommerce div.product form.cart .button {
    padding: .700rem 1.2rem;
    margin-top: 0;
}
.woocommerce .posted_in a, .woocommerce-product-rating a, .woocommerce .tagged_as a {
    transition: all 0.5s;
    font-weight: 600;
}
.woocommerce div.product .woocommerce-tabs .panel {
    box-shadow: none;
    padding: 1rem 1rem 1rem;
    border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs .panel {
    background: #fff;
    border: 1px solid #e9e9e9;
}
.woocommerce .related h2 {
    margin: 0 0 20px;
}
.woocommerce div.product div.summary {
    margin-bottom: 2em;
    padding: 0.4rem 0.9rem 1.5rem;
    background-color: #fff;
    border: 1px solid #e9e9e9;
}

.item-img { width: 100%; position: relative; }
.add-to-cart {
  position: absolute;
  bottom: 45%;
  right: 0;
  width: 100%;
  background: transparent padding-box content-box;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
  z-index: 0;

}
.products:hover .add-to-cart { opacity: 1; visibility: visible; transform: translateY(0); }
.add-to-cart a {
    background: #ffffff;
    display: inline-block;
    font-size: 1.125rem;
    padding: 8px 8px;
    color: #0a0a0a;
    font-weight: 600;
    border-radius: 0;
    width: 45px;
    height: 45px;
    margin: 3px;
    border:1px solid #ffffff;
}
@media (max-width:992px){
.add-to-cart a {
    padding: 15px 15px;
    }}
.added_to_cart.wc-forward
{
color: #fff;
}
.add-to-cart a:hover { background: transparent; }
.product-price { padding: 1.25rem 0 1.125rem; }
.product-price  .woocommerce-loop-product__title { font-size: 1.125rem; text-transform: capitalize; margin-bottom: 5px; }

.product-price .woocommerce-Price-amount { font-size: 1.000rem; font-weight: 600; }
.product-price del { padding-left: 5px; }
.product-price del, .product-price del > span { color: #c0c0c0 !important; }

.products .item-img {
    background-color: #000000;
}
.products:hover .item-img img {
    zoom: 1;
    filter: alpha(opacity=30);
    -webkit-opacity: 0.3;
    opacity: 0.3;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
/*===================================================================================
22.0  Sponsors Section
===================================================================================*/
 .logo-scroll {
    margin: 0px auto;
    display: block;
    border: 1px solid #cacaca;
}
.logo-scroll img {display: block;margin: 0 auto;padding: 1.5rem;}
.logo-scroll a {display: block;}

/*===================================================================================
22.0  CONTACT DEATIL SECTION
===================================================================================*/
.contact-detail {
    width: 100%;
}
.contact-area { margin: 0px; padding: 30px 0px; }
.contact-info .contact-icon { float: right; margin: 4px 0 25px 25px; padding: 0; }
.contact-icon i {
  font-size: 24px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.contact-info .section-header {
    margin: 0 0 2rem;}
.contact-icon address {
    margin: 0 0 1.5em;
    font-size: 0.938rem;
}
.cont-info address > i { margin-left: 7px;}
.contact-info .title{color:#0a0a0a;margin: 0 0 0.5rem;font-weight: 600;}
  .contant-form .wpcf7-form-control-wrap:after {
    font-family: 'FontAwesome';
    left: 30px;
    position: absolute;
    top: 12px;
  }
.contant-form .your-name:after , .comment-form .your-name:after{ content: "\f007";}
.contant-form .your-email:after , .comment-form .your-email:after{ content: "\f0e0";}
.contant-form .your-subject:after , .comment-form .your-subject:after{ content: "\f078";}
.contant-form .your-message:after , .comment-form .your-message:after{ content: "\f040";}
.contant-form .your-phone:after , .comment-form .your-phone:after{ content: "\f098";}
.contant-form input::placeholder,.contant-form textarea::placeholder{color:#888888;font-size:14px;}
.contant-form .wpcf7-form input,.contant-form .wpcf7-form textarea ,
.comment-form .comments-form input
{margin-bottom:2rem;padding-left: 2.5em; }
.contant-form .button-holder{margin:0 auto;}


/*===================================================================================
23.0  FOOTER SECTION site info
===================================================================================*/
.site-title-name{color: #ffffff;}
.layout5 .site-title-name,.index6 .site-title-name{color: #0a0a0a;}

p.site-description{color: #acacac;}
.site-info {
    background-color: rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 0.938rem;
    padding: 1.25rem 0;
}
/*.site-info .site-branding p{color:#fff;}*/
.site-privacy{text-align: left;}
@media (max-width:600px){
.site-info {text-align: center;}
.site-privacy {text-align: center;}
}
.section-space .owl-carousel:hover .owl-next{
    left: 2rem;
  }
.section-space .owl-carousel:hover .owl-prev {
   right:2rem;
  }
.section-space .owl-carousel .owl-prev,.section-space .owl-carousel .owl-next {
  top:30%;
}
.section-space.testimonial .owl-carousel .owl-prev,.section-space.testimonial .owl-carousel .owl-next {
  top:45%;
}
.section-space.shop .owl-carousel .owl-prev,.section-space.shop .owl-carousel .owl-next {
  top:30%;
}
.section-space.sponsors .owl-carousel .owl-prev,.section-space.sponsors .owl-carousel .owl-next {
  top:33%;
}

/*--------------------------------------------------------------
24 Breadcrumb
--------------------------------------------------------------*/
.page-title-section
{
    background: #17212c url('assets/images/breadcrumb/breadcrumb.jpg');
    background-attachment: scroll;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.page-title-section .page-title h1 
{ 
  text-align: center; 
  font-weight: bold;
  line-height: 1.3;
  font-size: 2rem;
   color: #fefefe;
   margin: 0 0 10px;
   word-break: break-word;
}
.page-breadcrumb li { display: inline-block; }
.page-breadcrumb 
{ 
  margin: 0; 
  padding: 0; 
  color: white;
  text-align:center;
  font-size: 1rem;
}
.page-breadcrumb li a, .page-breadcrumb a
{
  color: #fff;
  word-break: break-word;
}
.page-breadcrumb .icon::before
{ 
  font-size: 0.938rem;
  content: "/";
  font-family: FontAwesome;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  color: #fff;
}
.breadcrumb-overlay {
    height: 100%;
    position: relative;
    width: 100%;
    padding: 12.5rem 0 6.25rem;
    background-color: rgba(0,0,0,0.5);
  }
/*===================================================================================
25.0  ABOUT PAGE
===================================================================================*/
.page-section-space {
    padding: 6.25rem 0 4.375rem;
} 
.about-section .section-header {margin: 0px 0 2.375rem;}
.about-section  .about-block{padding:0 0 0 40px;}
  @media (max-width: 600px){
.about-section .about-block {
    padding-bottom:50px;
  }
}
  
.about-section .image-box .left-image {padding: 0 0 0 11.25rem;margin-top: -12.5rem;}
.about-section .image-box .right-image{padding: 0 11.25rem 0 0 ;}
@media (max-width: 1200px){ 
  .about-section .image-box .left-image {
    padding: 0 0 0 9.25rem;
    margin-top: -9.5rem;
}
.about-section .image-box .right-image{padding: 0 9.25rem 0 0 ;}
}  
.about-header{padding-right: 1.125rem;
    padding-bottom: 0.75rem;}

.about-title {
    margin-bottom: 1rem;
  }
.about-subtitle{margin-bottom: 0.75rem;}
.about-header .btn-small{ padding: 0.688rem 2.3rem;margin-top: 0.5rem;}
.about-header p{margin-bottom: 1rem;}
.about-header .btn-default:hover,.about-header  .btn-default:focus {
    background: #ffffff;
    color: #333333;
}
@media (min-width: 768px){
.about-page .cta-block {padding: 0 12rem;}
.about-page .cta .overlay {padding: 6.313rem 6.25rem 3.75rem;}
}
/*Slider Lightbox CSS*/
 .lightbox-cta {
  background-color: rgba(0, 0, 0, 0.8);
  overflow: scroll;
  position: fixed;
  display: none;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000;
}
.lightbox-container {
  position: relative;
  max-width: 960px;
  margin: 7% auto;
  display: block;
  padding: 0 3%;
  height: auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .lightbox-container {
    margin-top: 10%;
  }
}
@media screen and (max-width: 414px) {
  .lightbox-container {
    margin-top: 13%;
  }
}
.lightbox-content {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  text-transform: uppercase;
  background: transparent;
  position: absolute;
  font-weight: 300;
  font-size: 12px;
  display: block;
  border: none;
  color: white;
  top: -30px;
  left: 3%;
  z-index: 10;
}
.lightbox-close:hover{
  background: none;
}
.video-container {
  padding-bottom: 56.25%;
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  height: 0;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
}
#cta-video {
    text-transform: uppercase;
    font-weight: 300;
    padding: 20px 25px;
    display: inline-block;
    font-size: 14px;
    margin: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.video-btn a:after {
    position: relative;
    top: 25%;
    right: 25%;
    margin: 0px 0px 0 0;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    content: '';
    display: block;
}
.video-btn{margin-bottom: 1rem;}

/*===================================================================================
26.0  PORTFOLIO PAGE
===================================================================================*/
.md-pills .nav-link.active,.md-pills .nav-link:hover,.md-pills .nav-link:focus {
  color: #fff;
}
button.close {
    position: absolute;
    left: 0;
    z-index: 2;
    padding-left: 1rem;
    padding-top: .6rem;
  }
   .flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.tab-content {
   padding-top: 2.3rem;
}
.portfolio .md-pills .nav-link {
    padding: 0.625rem 2rem;
    border-radius: 3px;
    border:1px solid #e1e1e1;
  }
  .portfolio .md-pills .nav-item{margin: 0 0.813rem 0.813rem;}

.portfolio .tab-content .portfolio-thumbnail {
    background-color: #000000;
}

.portfolio .tab-content .portfolio-thumbnail {
    position: relative;
    overflow: hidden;
    margin: 0px 0 30px;
    width: 100%;
    text-align: right;
    border-radius: 3px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
} 
.portfolio .tab-content .portfolio-thumbnail:hover {  
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);}
/*.portfolio .tab-content .portfolio-thumbnail .entry-title a {
    color: #0a0a0a;
}*/
.portfolio .tab-content .portfolio-thumbnail:hover .entry-title a {color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail:hover h4 {color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail .entry-title{
   margin-bottom:0.313rem;
   padding-bottom: 0rem;
}
.portfolio .tab-content .portfolio-thumbnail::before, .portfolio .tab-content .portfolio-thumbnail::after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: '';
    opacity: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    }
.portfolio .tab-content .portfolio-thumbnail figcaption {
   padding: 25px 30px;
   text-align: center;
   background-color:#ffffff;
   transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
   -ms-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
 }

.portfolio .tab-content .portfolio-thumbnail:hover figcaption p{color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail:hover figcaption p a{color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail:hover img, 
.portfolio .tab-content .portfolio-thumbnail:focus-within img {
    zoom: 1;
    filter: alpha(opacity=20);
    -webkit-opacity: 0.5;
    opacity: 0.5;
    -webkit-transition: opacity 0.60s, -webkit-transform 0.60s;
    transition: opacity 0.60s, transform 0.60s;
}
.portfolio .tab-content .portfolio-thumbnail:hover figcaption,
.portfolio .tab-content .portfolio-thumbnail:hover .entry-title,
.portfolio .tab-content .portfolio-thumbnail:hover p,
.portfolio .tab-content .portfolio-thumbnail:hover i,
.portfolio .tab-content .portfolio-thumbnail a:focus i {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    opacity: 1;
}
.portfolio .tab-content .portfolio-thumbnail i {
    background-color: transparent;
    border-radius: 5%;
    position: absolute;
    font-size: 2rem;
    line-height: 1.2;
    width: 2.5rem;
    height: 2.5rem;
    top: 34%;
    left: 44%;
    text-align: center;
    -webkit-transform: translateY(-55px);
    transform: translateY(-55px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-style: normal;
    z-index: 1;
    opacity: 0;
}
.page-template-template-portfolio-4-col-left-sidebar .portfolio .tab-content .portfolio-thumbnail i{top: 20%; left: 38%;}
.page-template-template-portfolio-4-col-right-sidebar .portfolio .tab-content .portfolio-thumbnail i{top: 20%; left: 38%;}
.portfolio .tab-content .portfolio-thumbnail:hover::before, .portfolio .tab-content .portfolio-thumbnail:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.portfolio-btn {
    margin-top: 1.313rem;
}
.portfolio .portfolio-btn i {
    padding-right: 0.5rem;
    font-size: 0.813rem;
}
.portfolio button:hover{background:transparent;}
@media (min-width:600px){.portfolio .view img{height: 100%}}



@media (min-width: 600px) and (max-width: 1024px){
  .portfolio3 .tab-content .portfolio-thumbnail figcaption {padding: 0.75rem 1rem;}
  .portfolio3 .entry-header h4 {font-size: 0.875rem;}
  .portfolio3 p { font-size: 0.75rem;}
}
@media (max-width:600px){
  .portfolio4.right-col .sidebar, .portfolio3 .sidebar .right-sidebar{margin-top: 2rem;}
 .portfolio3 .sidebar .left-sidebar, .portfolio4 .sidebar .left-sidebar{margin-bottom: 2rem;}
}
@media (min-width:768px){
  .portfolio4 .tab-content .portfolio-thumbnail figcaption {padding: 0.75rem 0.625rem;}
  .portfolio4 .entry-header h4 {font-size: 0.75rem;}
  .portfolio4 p { font-size: 0.625rem;}
}
@media (min-width:1024px){
  .portfolio4 .tab-content .portfolio-thumbnail figcaption {padding: 0.75rem 1rem;}
  .portfolio4 .entry-header h4 {font-size: 0.875rem;}
  .portfolio4 p { font-size: 0.75rem;}
}
@media (min-width: 1200px) {
  .portfolio4 .tab-content .portfolio-thumbnail figcaption {padding: 1rem 1rem;}
  .portfolio4 .entry-header h4 {font-size: 1rem;}
  .portfolio4 p { font-size: 0.875rem;}
}
/*===================================================================================
27.0  Error 404 PAGE
===================================================================================*/
.error-page .title {font-size: 25rem; line-height:0.75; letter-spacing: 0.938rem; font-weight: 600; margin-bottom: 1.25rem; }
.error-page .sub-title {font-size: 2.25rem; letter-spacing: 0.2rem; margin-bottom: 0.938rem; }
.error-page p {font-size: 1.875rem;}
.error-page .btn-small { font-weight: 700; }
@media (max-width: 768px) { 
  .error-page { padding: 9rem 0 11.5rem; }
  .error-page .title { font-size: 15rem; }
}
@media (max-width: 600px){
.error-page .title {
    font-size: 10rem;
 }
}

/*===================================================================================
28.0  footer Sidebar SECTION 
===================================================================================*/
@media (min-width: 768px){
.s-l-space {
  padding-right: 0.625rem;
}
}
.footer-sidebar{padding: 4.5rem 0 2rem;}
.footer-sidebar .widget {
  color: #ffffff;
  padding: 0 0 1.25rem;
  margin: 0 0 1.875rem;
}
@media (max-width: 576px){
.footer-sidebar .widget {
  padding: 1.625rem 0 1.125rem;
}
  .blog .right-sidebar {
  padding-top: 1.875rem;
  }
}
footer{
position: relative;
z-index: 1;
}
.footer-sidebar .woocommerce div.product p.price, 
.footer-sidebar .woocommerce div.product span.price, 
.footer-sidebar .woocommerce .posted_in a, 
.footer-sidebar .woocommerce-product-rating a, 
.footer-sidebar .woocommerce .tagged_as a, 
.footer-sidebar .woocommerce div.product form.cart .variations td.label label, 
.footer-sidebar .woocommerce #reviews #comments ol.commentlist li .meta strong, 
.footer-sidebar .woocommerce table.shop_table th, 
.footer-sidebar .woocommerce-cart table.cart td a, 
.footer-sidebar .owl-item .item .cart .add_to_cart_button, 
.footer-sidebar .woocommerce ul.cart_list li a, 
.footer-sidebar .woocommerce ul.product_list_widget li a, 
.footer-sidebar .woocommerce-error, 
.footer-sidebar .woocommerce-info, 
.footer-sidebar .woocommerce-message {
    color: #ffffff;
}


.footer-sidebar .widget_text.site-info .custom-social-icons li > a{background-color: #eaeaea;}
.footer-sidebar .widget_text.site-info .custom-social-icons li > a:hover{color: #ffffff;}
.footer-sidebar a{color:#ffffff;transition: padding .5s;font-size: 0.938rem;}
.footer-sidebar a:hover,.footer-sidebar a:focus{color:#ffffff;font-weight: 600;}
.footer-sidebar .woocommerce-widget-layered-nav ul a:before,.footer-sidebar .widget_recent_reviews ul a:before,.footer-sidebar .widget_top_rated_products ul a:before,.footer-sidebar .widget_products ul a:before,.footer-sidebar .widget_nav_menu ul a:before,.footer-sidebar .widget_pages ul a:before,.footer-sidebar .widget_product_categories ul a:before,.footer-sidebar .widget_links ul a:before,.footer-sidebar .widget_categories ul a:before,.footer-sidebar .widget_archive ul a:before,.footer-sidebar .widget_recent_entries ul a:before,.footer-sidebar .widget_meta ul a:before,.footer-sidebar .widget_recent_comments ul a:before {
   content: "\f178"; 
   font-family: 'FontAwesome';
   font-size: 0.75rem;
   opacity: 0;
   position: relative;
   top: 0px;
   -webkit-transition: all .5s;
   -o-transition: all .5s;
   transition: all .5s;
   margin-left: -0.75rem;
}
.footer-sidebar .woocommerce-widget-layered-nav ul a:hover::before,.footer-sidebar .widget_recent_reviews ul a:hover::before,.footer-sidebar .widget_top_rated_products ul a:hover::before,.footer-sidebar .widget_products ul a:hover::before,.footer-sidebar .widget_nav_menu ul a:hover::before,.footer-sidebar .widget_pages ul a:hover::before,.footer-sidebar .widget_product_categories ul a:hover::before,.footer-sidebar .widget_links ul a:hover::before,.footer-sidebar .widget_categories ul a:hover::before,.footer-sidebar .widget_archive ul a:hover::before,.footer-sidebar .widget_recent_entries ul a:hover::before,.footer-sidebar .widget_meta ul a:hover::before,.footer-sidebar .widget_recent_comments ul a:hover::before {
   margin-left: 8px;
   opacity: 1;

}
.footer-sidebar address {
   margin: 0 0 2rem;
}
.footer-sidebar .footer-logo{margin-bottom: 1rem}
.footer-sidebar #text-1 .textwidget{margin-bottom: 1rem}
.footer-sidebar .widget .widget-title {
  padding-bottom: 0.5rem;
  margin: 0 0rem 1rem;
  color: #ffffff;
}

.header-sidebar .widget:last-child {
  margin: 0;
}
.head-contact-info li:first-child {    
  padding: 0;
}
.header-sidebar .widget {
  color: #ffffff;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.footer-sidebar .widget_text{
    font-size: 0.938rem;
    line-height: 2.35;
}
.footer-sidebar .widget_text.site-info{
  background-color: #ffffff;
  padding: 2.5rem 1.75rem;
  margin-top: -120px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.footer-sidebar .widget_text.site-info p{color:#888888;}
.footer-sidebar .widget_text.site-info.site-detail{
  background-color: unset;
  padding: unset;
  margin-top: unset;
  -webkit-box-shadow: unset;
}
.footer-sidebar .site-info.site-detail .footer-logo {
    margin-bottom: 1rem;
}
 .footer-sidebar .widget_text.site-info.site-detail .description {
    margin-bottom: 1rem;
}
.footer-sidebar .widget_text.site-info.site-detail p {
    margin-bottom: 0.5rem;
}
.site-info .text-center .subscribe-form {
    width: 250px;
    margin: auto;
}
.site-info .copyright-section{margin:0 0 2rem;color: #fff;}
.footer-sidebar address {
    margin: 0 0 1rem;
}
  .site-info.footer-sidebar {
    padding: 2rem 0 2rem;
    background-color: unset;
}

.footer-sidebar .widget_text p{
margin: 0;
color: #ffffff;
line-height: 1.6;
margin-bottom: 0.625rem;
}
@media (max-width: 576px){
.footer-sidebar .widget_archive li:before,.footer-sidebar  .widget_categories li:before,.footer-sidebar  .widget_links li:before,.footer-sidebar .widget_meta li:before,.footer-sidebar .widget_nav_menu li:before,.footer-sidebar .widget_pages li:before,.footer-sidebar .widget_recent_comments li:before,.footer-sidebar .widget_recent_entries li:before {
    padding-right: 7px;
} 
.footer-sidebar .widget_text.site-info {
   margin-top: 0px; 
}}
.footer-sidebar .widget li{
  border-bottom: none;
    padding-top: 0.313rem;
    padding-bottom: 0.313rem;
    position: relative;
}
/*.footer-sidebar .widget li:before{content: none;}*/
.footer-sidebar .widget .widget-title:after img{content: none;padding: 0}
.footer-sidebar .wp-block-calendar table {
    margin-bottom: 0;
}
.widget .wp-block-social-links li,.footer-sidebar .widget .wp-block-social-links li{padding:0;}
 .widget .wp-block-social-links li:before,.footer-sidebar .widget .wp-block-social-links li a:before{
    display:none;
}
.wp-block-social-links .wp-social-link a {font-size: 1.875rem;}

/*===================================================================================*/
/* 29.0 Page Scroll Up
/*===================================================================================*/
.scroll-up {
  position: fixed;
  display: none;
  bottom: 12px;
  z-index: 999;
  left: 30px;
}
.scroll-up a {
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  text-align: center;
  line-height: 2;
  border-radius: 3px;
  font-size: 1.25rem;
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}
/*===================================================================================*/
/*  30.0 Blog Single 
/*===================================================================================*/

/* Related Post */
.related-posts {margin:6rem 0 5rem;}
.related-posts .post-thumbnail{
    margin: 0 0 0 10px;
    overflow: hidden;
    float: right;
    display: block;
    border-radius: 0;
  }
.related-posts .post-thumbnail img{ width: 85px;height: 85px;}
.related-posts a:hover{color:#0a0a0a;}
.related-posts a:hover i{color:#0a0a0a;}
.related-posts .preview .post-thumbnail {margin: 0 0 20px 20px;}
.related-posts .next .post-thumbnail {margin: 0 20px 20px 0;}
.related-posts .entry-title a{color: #0a0a0a;font-size: 1rem;}
.related-posts .pre-post a{font-size: 0.875rem; }
.related-posts .next-post a{color:#.related-posts;font-size: 0.875rem; }
.related-posts .single-post .post-content{padding: 0;}
.related-posts .next{text-align: left;}
.related-posts .title{margin-bottom: 0; padding-top: 0.625rem;}

.related-posts .next .fa{margin-right: 0.625rem;}
.related-posts .preview .fa{margin-left: 0.625rem}  
@media (max-width: 768px) {
  .related-post .next{text-align: right;}
}
/* comment form */
.comment-form .comment-reply-title{padding-bottom: 0.938rem}
.comment-form .button-holder input{margin-top: 25px;margin-bottom:20px}
.comment-form .blog-form-group:after {
  font-family: 'FontAwesome';
  left: 50px;
  margin-top: -45px;
  position: absolute;
}
.comment-form  input::placeholder,.comment-form  textarea::placeholder{color:#888888;font-size:14px;}
.comment-form .blog-form-group-textarea:after {
  font-family: 'FontAwesome';
  left: 50px;
  margin-top: -115px;
  position: absolute;
}
@media (max-width: 768px) {
  .comment-form .blog-form-group:after {
  margin-top: -50px;
  }
  .comment-form .blog-form-group-textarea:after {
  margin-top: -85px;
  }
}

.site-info ul li:first-child {
    margin-right: 0px;
}
.footer-sidebar .widget_text p{padding-top: 0.25rem;}
.footer-sidebar .widget_text.site-info p{margin-bottom: 1rem;}
.footer-sidebar .widget_text.site-info .description{margin-bottom: 2rem;}
 .footer-sidebar .widget_text.site-info address i {
    color:#888888;
    font-size: 16px;
    padding-left: 1rem;
}
.footer-sidebar .widget_text.site-info a {color:#888888;}
.footer-sidebar .widget_text.site-info a:hover {font-weight: 400;}
/*===================================================================================*/
/*  31.0 Common classes
/*===================================================================================*/
.testimonial.testi .testmonial-block {
    background-color: transparent;
    border-right: none;
    position: relative;
    margin: 0;
    padding: 0 2.5rem 0rem;
    font-size: unset;
    border-right: none;
}
.testimonial.testi .testmonial-block .avatar, #testimonial-carousel3 .testmonial-block .avatar {
    margin: 0px auto 1.3rem;
    width: 9.4rem;
    height: 9.2rem;
}
.testimonial #testimonial-carousel3 .testmonial-block .name{
  font-size: 1.25rem;
    font-weight: 600;
    font-style: normal !important;
    margin: 0px 0 -0.188rem;
    display: block;
}
.testimonial #testimonial-carousel3 .testmonial-block .designation{
  font-size: 1.000rem;
    padding-top: 5px;} 
.testimonial.testi .testmonial-block .name {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: normal !important;
    margin: 0px 0 -0.188rem;
    display: block;
}
.testimonial.testi .testmonial-block .designation {
    font-size: 1.000rem;
    padding-top: 5px;
}
.testimonial.testi .rating {
  margin: 10px 0px;
  text-align: center;
}
.testimonial.testi-4 .testi-grid .rating{text-align: right;}
/*Team common classes*/
.team.team-common .team-grid .card-body .list-inline {
  visibility: unset;
  position: relative;
  opacity: 1;
}
.team.team-common .team-grid .card-body {
  padding-bottom: 0rem;
}
.team.team-common .team-grid:hover .card-body .list-inline { 
  border-bottom: unset;
  padding-bottom: 0;
}
.portfolio.right-col .tab-content .portfolio-thumbnail i,.portfolio.left-col .tab-content .portfolio-thumbnail i {
  top: 20%;
  left: 38%;
}
.portfolio.two-column .tab-content .portfolio-thumbnail i {
  top: 39%;
  left: 46%;
}
.portfolio.four-column .tab-content .portfolio-thumbnail i {
    top: 30%;
    left: 42%;  
}
/*/Variations common classes*/
/*===================================================================================*/
/*  SERVICE SECTION 2
/*===================================================================================*/
.services2 .post {
    position: relative;
    background:#fff;
    margin-bottom: 2rem;  
    padding:1.25rem 1.563rem;
    transition: 0.25s; 
   -webkit-transition: all 0.25s ease-in;
   -moz-transition: all 0.25s ease-in;
   transition: all 0.25s ease-in;  
}
.services2 .post::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    transition: .5s;
    z-index: 0;
}
.services2 .post:hover::before {
    width: 100%;
}
.services2 .post:hover .entry-content p {
    color: #fff;
  position:relative;
}

.services2 .post-thumbnail { 
    position: relative;
    text-align: right;
}
.services2 .post-thumbnail i.fa {  
    font-size: 2.25rem;  
    text-align: center;
}
.services2 .post:hover .post-thumbnail i.fa { 
    color: #fff;  
}
.services2 .post:hover{ 
    color: #fff; 
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}
.services2 .post:hover h4{color: #ffffff;}
.services2 .post .entry-header .entry-title a {transition: 0s; }
.services2 .entry-header .entry-title a:hover { color:#fff !important;}
.services2 .post:hover .entry-header .entry-title a {color:#fff; position: relative;}
.services2 .post-thumbnail img {
    width: 3rem;
    height: 3rem;
}
.services2 .entry-header{position: relative;}
/*===================================================================================*/
/*  SERVICE SECTION 3
/*===================================================================================*/
.services3 .post { margin: 0; padding: 0 1.25rem 3.438rem; transition: 0.3s;  }
.services3 .post-thumbnail { 
    position: relative;
    text-align: center;
    margin: 0 auto 1.550rem;
}
.services3 .post-thumbnail i.fa { 
  border-radius: 50%;
  color: #fff;
  width: 5rem;
  height: 5rem; 
  font-size: 2.25rem;
  line-height: 1.8;
  padding: 5px; 
  border: 4px solid #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.services3 .post:hover .post-thumbnail i.fa { 
  background: #f5f6fa;
  border: 4px solid #fff;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
.services3 .post-thumbnail img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 4px solid #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.services3 .post:hover .post-thumbnail img {
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
/*===================================================================================*/
/*  Testimonial SECTION 2
/*===================================================================================*/
#testimonial-carousel2 .avatar {
    display: inline-block;
    position: absolute;
    right: 20px;
}
#testimonial-carousel2 .testmonial-block {
    box-shadow: -5px 5px 6px rgba(255, 255, 255, 0.05);
    padding: 30px 190px 30px 30px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    position: relative;
}
#testimonial-carousel2 .testmonial-block .entry-content {
    margin: 0px 0 0.25rem;
}
#testimonial-carousel2 .testmonial-block .entry-content:before, #testimonial-carousel2 .testmonial-block .entry-content.quote:before {
    top: 0;
}

    .testimonial.testi-2 { 
        background: url(../images/bg/bg-img.jpg) 0% 50% no-repeat;
    }
   #testimonial-carousel2 .testmonial-block:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    transform: rotate(-45deg);
    transform-origin: 80% -30% 0;
}
@media (max-width:768px){
#testimonial-carousel2 .testmonial-block {
    padding: 15px;
    margin: 0 15px 15px;
}
#testimonial-carousel2 .avatar {
     position: relative;
}
#testimonial-carousel2 .avatar {
    right: 0px;
}

#testimonial-carousel2  .testmonial-block .avatar {
    margin: 0 0px 1.75rem;
}
}
/*===================================================================================*/
/*  Team SECTION 2
/*===================================================================================*/

}
.team2 .team-grid .card-body p {
    color: #878e94;
}
.team2 .team-grid .img-holder img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.team2 .team-grid .img-holder::before {position:unset;}
.team2 .team-grid:hover .img-holder img{
transform: scale3d(0.9, 0.9, 1);
}
/*===================================================================================*/
/* Testimonial SECTION 3
/*===================================================================================*/
.testimonial.testi-3 { 
         background: url(../images/bg/bg-img.jpg) 0% 50% no-repeat;
}
#testimonial-carousel3 .testmonial-block {
    padding: 0 1rem 3.125rem 1rem;
    text-align: center;
}
.testi-3 .owl-theme .owl-dots {
    margin: 0rem 0rem 0rem;
}
#testimonial-carousel3 figcaption{padding-bottom: 0.5rem;}
#testimonial-carousel3 .testmonial-block .avatar {
    margin: 0px auto 1.75rem;
}
.testi-3:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 0;
    background-color: rgba(1, 7, 12, 0.8);
}
.testi-3 .entry-content:before, .testi-3 .entry-content.quote:before {
    opacity: 1;
    font-size: 1rem;
    top: 7px;
    right: -11px;
    left: auto;
}
#testimonial-carousel3 .testmonial-block .entry-content {
    margin: 0px 0 0.5rem;
}
@media (min-width: 992px){.testi-3 .entry-content:before, .testi-3 .entry-content.quote:before {right: -15px;}}
/*===================================================================================*/
/* Team SECTION 3
/*===================================================================================*/
.team3 .team-grid .img-holder img {
    max-width: 100%;
    border-radius: 50%;
    color: #fff;
    width: 12rem;
    height: 12rem;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.team3 .team-grid .card-body .list-inline li > a {
    color: #878e94;
}

.team3 .team-grid .position {
    color: #878e94;
}
.team3 .owl-carousel.owl-drag .owl-item{
background: #ffffff !important;
}
.team3 .team-grid {
    margin: 1px;
    padding-bottom: 0.75rem;
    padding-top: 2.25rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.team3 .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 3.25rem;
}
.team3 .team-grid .img-holder::before {position:unset;}
.team3 .team-grid:hover .img-holder img{
transform: scale3d(0.9, 0.9, 1);
}
.team3.team-common .team-grid .card-body {
    padding-bottom: 1.25rem;
}
/*===================================================================================*/
/*  SERVICE SECTION 4
/*===================================================================================*/
.services4 .post {
    margin-bottom: 3rem;
    padding: 1rem 4.25rem 1rem 1.125rem;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
    position: relative; 
}
.services4 .post:hover {
-webkit-box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
}
.services4 .post-thumbnail { 
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    padding: 1rem 0;
}
.services4 .post-thumbnail i.fa { 
    font-size: 2.5rem; 
    text-align: center;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}
.services4 .post:hover .post-thumbnail i.fa , .services4 .post:hover .post-thumbnail img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}
.services4.service_wrapper .entry-header {margin: 0 0 0.938rem;}
.services4 .post-thumbnail img {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}
/*===================================================================================*/
/* Testimonial SECTION 4
/*===================================================================================*/
.testimonial.testi-4 { 
         background: url(../images/bg/bg-img.jpg) 0% 50% no-repeat;
}
#testimonial-carousel4 .testmonial-block {
    box-shadow: 0px 0px 6px 2px rgba(255, 255, 255, 0.1);
    margin-bottom: 2px;
}
#testimonial-carousel4 .testmonial-block .entry-content:before,#testimonial-carousel4 .testmonial-block .entry-content.quote:before {
    font-size: 3.875rem;
    top: -18px;
}
#testimonial-carousel4 .testmonial-block .avatar {
    margin: 0px auto 0.75rem 0.987rem;
    display: inline-block;
    width: 4.563rem;
    height: 5.563rem;
}
#testimonial-carousel4 .testmonial-block .entry-content {
    margin: 0px 0 0.5rem;
}
#testimonial-carousel4 .testmonial-block figcaption{
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}
#testimonial-carousel4.owl-theme .owl-nav.disabled+.owl-dots {
    margin-bottom: 1.75rem;
    margin-top: 2rem;
}
/*===================================================================================*/
/*  Team SECTION 4
/*===================================================================================*/
.team4 .team-grid {
  background-color: #fff;
    margin: 2px auto;
    padding-bottom: 0px;
    margin: 0.125rem 0.125rem 1.75rem;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
}
.team4 .list-inline  > a {
    cursor: pointer;
}

@media (min-width: 768px){
 .team4 .avatar{width: 222px;
    height: auto;}
}
.team4 .overlay {
    position: relative;
    overflow: hidden;
}
.team4 .team-grid:hover .overlay::before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}
.team4 .overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    opacity: 0;
    z-index: 6;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team4 .team-grid .img-holder::before {position:unset;}
.team4 .team-grid:hover .list-inline  {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: .2s;
}
.team4 .list-inline  li a {
    color: #061018;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team4 .list-inline {
    background: #ffffff;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 0;
    padding: 8px 20px;
    border-radius: 300px;
    z-index: 44;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.team4 .team-grid .list-inline .list-inline-item{
    margin-left: 0rem;
  }

 .team4.team-common .team-grid .card-body {
    padding-bottom: 1.25rem;
}
/*--------------------------------------------------------------
  Portfolio Gallery
--------------------------------------------------------------*/
.portfolio.portfolio-gallery .col-2,.portfolio.portfolio-gallery .col-3,
.portfolio.portfolio-gallery .col-4,.portfolio.portfolio-gallery .col-6,
.portfolio.portfolio-gallery .col-lg-2,.portfolio.portfolio-gallery .col-lg-3,
.portfolio.portfolio-gallery .col-lg-4:not(.portfolio.portfolio-gallery .sidebar),.portfolio.portfolio-gallery .col-lg-6,
.portfolio.portfolio-gallery .col-md-2,.portfolio.portfolio-gallery .col-md-3,
.portfolio.portfolio-gallery .col-md-4,.portfolio.portfolio-gallery .col-md-6,
.portfolio.portfolio-gallery .col-sm-2,.portfolio.portfolio-gallery .col-sm-3,
.portfolio.portfolio-gallery .col-sm-4,.portfolio.portfolio-gallery .col-sm-6{
    padding: 3px;
  }
  .portfolio.portfolio-gallery .modal-body .col-md-6, .portfolio.portfolio-gallery .modal-body .col-md-4,
.portfolio.portfolio-gallery .modal-body .col-md-3{
 padding-left: 1.25rem;  padding-right:1.25rem;
}

.portfolio.portfolio-gallery .tab-content .portfolio-thumbnail {
    margin: 0px;
    border-radius: 0;
  }
  .portfolio.portfolio-gallery .tab-content .portfolio-thumbnail i {
    left: 46%;
  }
/*--------------------------------------------------------------
32.0  Sticky Menu Classes
--------------------------------------------------------------*/
body .stickymenu{
 position: fixed;
 width: 100%;
 box-shadow: 0 1px 3px rgba(255,255,255,0.1);
 z-index: 999;
 transition: 0.3s;
 top: 0;
}
body .seven.stickymenu{
 transition: unset;
}
.stickymenu1{
 display: none;
 position: fixed !important;
 width: 100%;
 box-shadow: 0 1px 3px rgba(255,255,255,0.1);
 z-index: 999;
  top: 0;
}
@media (max-width: 600px){
body.admin-bar .navbar.stickymenu,body.admin-bar .navbar.stickymenu1, body.admin-bar .five.stickymenu, body.admin-bar .five.stickymenu1,body.admin-bar .six.stickymenu ,body.admin-bar .six.stickymenu1{
    top: 0;
}}
body.admin-bar .stickymenu,body.admin-bar .stickymenu1 {
    top: 32px;
}
.navbar.shrink{transition: 0.3s;}

.navbar.shrink1  {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: 100%;
  box-shadow: 0 1px 3px rgba(255,255,255,0.1);
  z-index: 999; 
  position: fixed;
  top: 0;
  transition: 0.3s;
}
.shrink1.five,.shrink1.six{
  width: 100%;
  box-shadow: 0 1px 3px rgba(255,255,255,0.1);
  z-index: 999; 
  position: fixed;
  top: 0;
  transition: 0.3s;
}

/*--------------------------------------------------------------
33.0  Footer Layout
--------------------------------------------------------------*/
.main-footer {
  background-color: #061018;
  margin: 0;
  padding: 0;
  position: relative;
  border-top: 0px solid #828282;
  background-image: url(../images/bg/bg-img.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
.main-footer .footer-overlay{   
  display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top:0;
    width: 100%;
    z-index: 0;
    background-color: rgba(1, 7, 12, 0.50);
}
.site-info .footer-sidebar{
  padding: 0rem;
}
.site-info .footer-sidebar.text-center .widget .widget-title:after {
    margin: 0 auto;
}
@media (min-width: 1200px){
.site-info .footer-sidebar .right-info .widget .widget-title:after {
        left: 0;
        position: absolute;
    }
    .site-info .right-info .widget.wpblack_social_icon_widget,
    .site-info .right-info .nav-menu {
        text-align: left;
    }
    .site-info .right-info .widget .wp-block-social-links{
        float: left;
    }
    .site-info .right-info .widget.widget_block{
        text-align: initial;
    }
}

.site-info .copyright{padding-bottom: 1rem;} 

.site-info span a {font-weight: 600;color: #fff ;}
.site-info span a:hover , .site-info span a:focus {color: #0a0a0a}
.site-info span a:before{content: "\f004";font-family: FontAwesome;color: #cc0619;margin-left: 5px;font-size: medium;}
@media (max-width: 600px){
.site-info .footer-sidebar{
     text-align: unset; 
}
.site-info .footer-sidebar .widget .widget-title:after {
    margin: 0 auto;
}}
.site-info .footer-sidebar.text-center .widget .widget-title:after {
    margin: 0 auto;
}
.site-info .footer-sidebar .nav-menu li {
    display: inline-block;
    margin-left: 15px;
}

.subscribe-form{margin-bottom: 1rem;}
.subscribe-form p{color:#fff;}
.subscribe-form .btn-default {border-radius: 0px;}
.subscribe-form .input-group .form-control{padding: 1em 0.5em 0.75em 4em;z-index: 0;}
.subscribe-form  .btn-default:hover,.subscribe-form .btn-default:focus {color: #fff;}
.subscribe-form .input-group .input-group-btn{position: absolute;left: 0.26rem;top: 0.26rem;z-index: 1;}
/*===================================================================================
  CONTACT PAGE 1
===================================================================================*/
.contact.contact-1{position: relative;padding-bottom: 0rem;}
.contact .contact-form-map{margin: 0rem 0rem 4.375rem;}
.contact .contact-widget{
    text-align: center;
    transition: all .4s ease 0s;
    box-shadow: 0 0 0px 1px rgb(163, 163, 163,0.5);
    padding: 3.25rem 1.5rem 2.625rem;
    margin-bottom: 2rem;
  }
 .contact .contact-widget address, .contact-widget a {
    color: #727272;
}
.contact .contact-widget i {
    border-radius: 10%;
    display: block;
    font-size: 2.5rem;
    line-height: 1.7;
    height: 70px;
    box-shadow: 0 0 0px 1px rgba(163, 163, 163,0.5);
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    transition: all .4s ease 0s;
    width: 70px;
    background: #fff;
  }
 .contact .contact-widget h4 {
    font-size: 1.25rem;
    margin: 1.563rem 0;
    text-align: center;
  }
   .contact .contact-widget address {
    font-size: 1rem;
    margin-bottom: 5px;
    text-align: center
  }
  .contact .contact-widget:hover{
    box-shadow: 0 0 10px 1px rgba(163, 163, 163,0.5);
  }
  @media (min-width: 768px){
    .contact1 .section-header,.contact2 .section-header,.contact3 .section-header {
      margin: 0rem 0rem 0.8rem;
    }
  }
.contact.contact-2{position: relative;padding-top: 0rem;}
.contact2 .contact-detail-area {
    padding: 3.25rem 0.5rem 2.625rem;
    margin-top: 2rem;
  }
.contact.contact-3{position: relative;padding-bottom: 0rem;}
.navbar-dark .navbar-nav .active>.nav-link{color:#000;}

/* new css */
.footer-sidebar .head-contact-info li a:hover, .footer-sidebar .head-contact-info li a:focus { color: #ffffff;}
.footer-sidebar .widget .tagcloud a {border-color: #ffffff;color: #ffffff;}
.footer-sidebar .widget .tagcloud a:hover {
    background-color: #fff;
    border-color: #ffffff;
}
.footer-layout2 .footer-sidebar .widget_text.site-info a ,
.footer-layout2 .footer-sidebar .widget_text.site-info p ,
.footer-layout3 .footer-sidebar .widget_text.site-info a ,
.footer-layout3 .footer-sidebar .widget_text.site-info p ,
.footer-layout3 .footer-sidebar .widget_text.site-info address i ,
.footer-layout2 .footer-sidebar .widget_text.site-info address i ,
.footer-layout4 .footer-sidebar .widget_text.site-info a ,
.footer-layout4 .footer-sidebar .widget_text.site-info p ,
.footer-layout4 .footer-sidebar .widget_text.site-info address i {
    color: #ffffff;
}
.footer-sidebar .widget .post .entry-date {color: #ffffff;}

.portfolio.portfolio-gallery .modal-body .col-md-6.py-5.pl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    padding-top: 3rem !important;
}
.portfolio.portfolio-gallery .modal-body .col-md-6 {padding: unset !important;}

@media (min-width: 1200px) {
body.boxed .custom.header-sticky {
   width: 1210px;
  }
}

.btn-style-one {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  padding: 0.96rem 1rem 0.9rem;
  background-color: transparent;
  display: inline;
}
.btn-box {
  position: relative;
  display: inline-block;
  margin-left: 30px;
}
.btn-style-one:hover, .btn-style-one:focus {
  color: #ffffff;
}

.footer-layout4 .site-info {background-color: #21202e;}
.footer-layout4 .footer-sidebar .widget_text.site-info a:hover , 
.footer-layout4 .footer-sidebar .widget_text.site-info a:hover {
    color: #ffffff;
    font-weight: 600;
}
@media (max-width: 600px) {
  .footer-layout4 .site-info ,.footer-layout3 .site-info , .footer-layout2 .site-info{
    text-align: right;
  }
}


/*===================================================================================*/
/* 34.0 Slider Video Button , Background Video And Images
/*===================================================================================*/
.slider-image img {padding: 3px; background-color: #fff;}
.video-frame {   
  width: 100%;
  height: 100%;
}
.video-frame iframe {
  border: 0 none;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#slider-video { border: 0.3rem solid #FFFFFF;}
#slider-video {
    text-transform: uppercase;
    font-weight: 300;
    padding: 0.813rem 1.125rem;
    display: inline-block;
    font-size: 0.813rem;
    margin: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.section-video .video-btn a:after {
    position: relative;
    top: 25%;
    right: 25%;
    margin: 0px 0px 0 0;
    width: 0;
    height: 0;
    border-top: 0.938rem solid transparent;
    border-bottom: 0.938rem solid transparent;
    content: '';
    display: block;
}
.section-video .video-btn a:after {border-right: 1.563rem solid #FFFFFF;}

.section-video {
  position: relative;
  width: 100%;
  height: 43rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-video .caption-content {
  z-index: 10;
  position: absolute;
  height: 40%;
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 1200px) {
  .section-video .caption-content {width: 72%;}
}

.video-slider-caption1 {
  position: absolute;
  display: contents;
  z-index: 1;
  width: 100%;
}
.video-slider-caption1 .video-btn {
  margin: 30px 0;
}
.slider-caption .image-slider-caption .inner-title ,
.slider-caption .video-slider-caption .inner-title {
  width: 100%;
}
.slider-video-btn {
  top: 50%;
  left: 15%;
  position: absolute;
}
.slider-video-btn a {
  font-size: 6rem;
  color: #fff !important;
}
.circle {
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 7.5rem;
  height: 7.5rem;
  left: -1.188rem;
  top: 1rem;
  position: absolute;
  opacity: 0;
  animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}
@keyframes scaleIn {
  from {
    transform: scale(.5, .5);
    opacity: .5;
  }
  to {
    transform: scale(2.5, 2.5);
    opacity: 0;
  }
}
.slider1 .caption-content {width: 100%;}

.slider-caption .text-right .inner-title {
  padding: 0 0 0 50px;
}
.slider-caption .text-right .inner-title:before {
  left: 0;
  right: auto;
}
a:hover .circle {animation-play-state: paused;}

/*--------------------------------------------------------------
header variation Layout3
--------------------------------------------------------------*/
.layout3.header-sidebar .bottom-header {
    padding: 1.35rem 0 0rem;
}
.layout3 .head-contact-info {
    padding: 0.438rem 0 0.438rem;
    margin: 0px;
    display: block;
    width: 100%;
}
.layout3 .contact-icon {
    margin: 0.2rem 0 0.625rem 0.625rem;
    padding: 0;
}
.layout3 .contact-icon i {
    font-size: 2.25rem;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.layout3 .head-contact-info i {
    padding-left: 0.625rem;
    padding-right: 0.063rem;
}
.layout3.header-sidebar address { margin: 0 0 1.5em; color: #333333;font-size:0.938rem;}
.layout3.navbar{background-color: #333333; padding: 0;}

@media (min-width: 991px){
  .layout3.header-sidebar .contact-widget { float: left; }
}
.layout3.navbar .nav .nav-item .nav-link,
.layout3.navbar .nav .nav-item .dropdown-item{
  color:#ffffff;
}
.layout3.navbar .options-box .nav-search a,
.layout3.navbar .options-box .cart-header > a.cart-icon{color: #ffffff;}
.layout3.navbar-brand{float: right;}
.layout3.navbar .nav .nav-item .dropdown-menu {
    color: #ffffff;
    background-color: #333333;
    border: 1px solid rgba(0,0,0,.15);
}

.layout2 a.text-dark:focus,.layout2 a.text-dark:hover,
.layout3 a.text-dark:focus,.layout3 a.text-dark:hover{
  color: #1cc9ed !important;
}

.layout2.navbar .options-box .nav-search a:hover,
.layout2.navbar .options-box .cart-header > a.cart-icon:hover,
.layout2.navbar .options-box .nav-search a:focus,
.layout2.navbar .options-box .cart-header > a.cart-icon:focus,
.layout3.navbar .options-box .nav-search a:hover,
.layout3.navbar .options-box .cart-header > a.cart-icon:hover,
.layout3.navbar .options-box .nav-search a:focus,
.layout3.navbar .options-box .cart-header > a.cart-icon:focus{
  color: #1cc9ed;
}

.layout3 .header-module { margin-left: 0;float: right;}
.layout3 .btn-box {
    position: relative;
    float: left;
    height: 3.5rem;
}

.layout3.header-sidebar {
    background: #ffffff;
}
.layout3 .btn-style-one { display: inline-block;}
.layout3 .navbar-toggler { margin: 13px 0;}
@media (max-width: 500px){
.layout3.header-sidebar { text-align: center;}
.layout3 .head-contact-info .contact-widget .media { display: block;}
.layout3 .navbar-brand {float: none;}
}
@media (max-width: 768px){
 .layout3 .options-box .btn-box {display: none;}
 .layout3.navbar {padding: 0 0.938rem 0 0.938rem;}
 .layout3 .options-box{margin-right: 1rem;}
}

@media (min-width: 800px) and (max-width: 1280px) {
.layout3 .btn-style-one{
    font-size: 0.8rem;
    line-height: 1.875rem;
    padding: 0.8rem 0.85rem 0.8rem;
  }
 .layout3.navbar .nav .nav-item .nav-link {font-size: 0.876rem;}
 .layout3.navbar .nav .nav-item { margin-left: 1rem;}
}


/*--------------------------------------------------------------
header variation Layout2
--------------------------------------------------------------*/
.layout2.header-sidebar { background: #333333;}
.layout2.navbar {
    background-color: transparent;
    position: absolute;
    z-index: 2; 
    right:0;
    left:0;  
    background-color: rgba(0,0,0,0.2);
    color: #ffffff; 
}
.layout2.navbar .nav .nav-item .nav-link,
.layout2.navbar .nav .nav-item .dropdown-item{
  color:#ffffff;
}

.layout2.navbar .options-box .nav-search a,
.layout2.navbar .options-box .cart-header > a.cart-icon{color: #ffffff;}
.layout2 .navbar-brand{float: right;}
.layout2.navbar .nav .nav-item .dropdown-menu {
    color: #ffffff;
    background-color: #333333;
    border: 1px solid rgba(0,0,0,.15);
}

.layout2 .options-box{align-content: left;}
.layout2 .header-module { margin-left: 0;float: right;}
.btn-style-two {
    position: relative;
    font-size: 1rem;
    line-height: 1.875rem;
    color: #FFFFFF;
    overflow: hidden;
    padding: 0.76rem 1.375rem  0.76rem;
    background-color: transparent;
    border:1px solid #FFFFFF;
    display: inline-block;
}
.btn-style-two:hover, .btn-style-two:focus{
   border: 1px solid #FFFFFF;
   background-color: #FFFFFF;
}
.layout2#searchbar_fullscreen,.layout3#searchbar_fullscreen { background-color: rgba(255, 255, 255,0.95);}
.layout2 .head-contact-info li a:hover, .layout2 .head-contact-info li a:focus {  color: #1cc9ed;}
.layout2 .btn-box {
    position: relative;
    float: left;
}
@media (min-width: 800px) and (max-width: 1280px) {
.layout2 .btn-style-two {
    font-size: 0.8rem;
    line-height: 1.875rem;
    padding: 0.6rem 0.85rem 0.6rem;
 }
 .layout2.navbar .nav .nav-item .nav-link {font-size: 0.876rem;}
 .layout2.navbar .nav .nav-item { margin-left: 1rem;}
}

@media only screen and (max-width: 768px){
.layout2 .btn-box {float: right; }
.layout2 .navbar-collapse {background-color: #333333;}
.layout2 .options-box{margin-right: 1rem;}
}

/*.layout2#slider-carousel .item { height: 40rem !important;}
.layout2 .slider-caption .title { margin-top: 60px;}*/



#slider-button {
  text-transform: uppercase;
  font-weight: 300;
  padding: 1.25rem 1.438rem;
  display: block;
  font-size: 0.813rem;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
#slider-button {
  border: 5px solid #FFFFFF;
}
.slider-video-btn a:after {
  position: relative;
  margin: 0px 0px 0 0;
  width: 0;
  right: 20%;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  content: '';
  display: block;
}
.slider-video-btn a:after {
  border-right: 25px solid #ffffff;
}
.circle {
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 8.85rem;
  height: 8.85rem;
  left: -1.9122rem;
  top: -1.92rem;
  position: absolute;
  opacity: 0;
  animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}

@media (max-width: 768px) {
  .circle {
    width: 10rem;
    height: 10rem;
    left: -2.12rem;
    top: -2.1rem;
  }
}
@media (max-width: 600px) {
  .slider-video-btn {
    bottom: 14%;
    right: 41%;
    top: unset;
    left: unset;
    position: absolute;
  }
  .slider-caption .text-right .inner-title {padding: 0 0 0 20px;}
}


.btn-light:focus , .btn-dark:focus , button:focus {
  outline: 1px solid;
}

.owl-carousel .owl-dots button,.owl-carousel .owl-dots input[type="button"],.owl-carousel .owl-dots input[type="submit"] {
  border: 0;
  -webkit-border-radius: unset;
  border-radius: unset;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: unset;
  font-size: unset;
  font-weight: unset;
  line-height: 1;
  padding: unset;
  text-shadow: unset;
  -webkit-transition: unset;
  transition: unset;
  background-color: unset;
}

.cta .video-btn a:hover,.cta .video-btn a:focus {
  outline: thin dotted;
  outline: 2px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}


.search-box-outer a.text-dark,
.search-box-outer a.text-dark:focus,

.search-box-outer a.bg-light{background-color: transparent !important;}


#slider-carousel .prev,#slider-carousel .next{background: transparent;padding: 0;font-size:unset;border: none;}
#slider-carousel .prev:hover,#slider-carousel .next:hover ,
#slider-carousel .prev:focus,#slider-carousel .next:focus 
{background: transparent;color: #fff;}
#slider-carousel .prev:focus,#slider-carousel .next:focus{outline: 0;background: transparent;}
#slider-carousel .show-next{left: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}
#slider-carousel .show-prev {right: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}
.bcslider-section .owl-theme .owl-dots:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.owl-theme .owl-dots .owl-dot {
  margin-bottom: 0px;
}

.owl-carousel .prev,.owl-carousel .next{background: transparent;padding: 0;font-size:unset;border: none;}
.owl-carousel .prev:hover,.owl-carousel .next:hover ,
.owl-carousel .prev:focus,.owl-carousel .next:focus 
{background: transparent;color: #fff;}
.owl-carousel .prev:focus,.owl-carousel .next:focus{outline: 0;background: transparent;}
.owl-carousel .show-next{left: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}
.owl-carousel .show-prev {right: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}

/*--------------------------------------------------------------
header variation Layout4
--------------------------------------------------------------*/
.navbar.navbar4 {background-color: rgba(255, 255, 255, 1);}
.hp7.header-sidebar {border-bottom: 1px solid #000;}
.navbar4 .custom-logo-link-url .site-title a  , 
.navbar4 .custom-logo-link-url .site-description {color:  #000;}

@media (min-width: 992px) {
    .navbar4.navbar .navbar-nav .dropdown-menu {box-shadow: 0px 0px 5px 1px #ffffff30;}
    .navbar4 .header-lt {
        z-index: 999;
        position: initial;
        width: inherit;
    }
    .navbar4 .header-lt::before {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;
        width: 27.5vw;
        z-index: -2;
        display: block;
    }
    .navbar4 .header-lt::after {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        right: auto;
        left: auto;
        -webkit-transform-origin: bottom;
        -moz-transform-origin: bottom;
        -ms-transform-origin: bottom;
        -o-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: skew(-15deg);
        -moz-transform: skew(-15deg);
        -ms-transform: skew(-15deg);
        -o-transform: skew(-15deg);
        transform: skew(-15deg);
        z-index: -1;
        width: 17.475rem;
        display: block;
    }
    .navbar.navbar4 .header-lt .navbar-brand::after, .navbar4 .header-lt .custom-logo-link-url::after {
        right: auto;
        left: auto;
        width: 12px;
        top: 0;
        margin-right: 16rem;
        z-index: 100;
        bottom: 0;
        background-color: #000;
        display: block;
        position: absolute;
        content: '';
        -webkit-transform-origin: bottom;
        -moz-transform-origin: bottom;
        -ms-transform-origin: bottom;
        -o-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: skew(-15deg);
        -moz-transform: skew(-15deg);
        -ms-transform: skew(-15deg);
        -o-transform: skew(-15deg);
        transform: skew(-15deg);
    }
    .navbar4 .col-lg-4 {
        position: initial;
        display: table-header-group;
        z-index: 0;
    }
    .navbar4 .custom-logo-link-url .site-description {width: 250px;}
    .navbar4 .ml-auto {display: inline-flex;}
    .navbar4 .custom-logo-link-url {display: table-caption;}
    .navbar4 .header-lt {display: inline-block;}
}
@media (min-width:992px) and (max-width: 1200px) {
  .navbar4 .navbar-nav {margin-right: 80px !important;}
}
@media (max-width: 991px) {
  .navbar4 .header-lt {
      text-align: center;
      padding: 30px;
  }
  .navbar4 .navbar-toggler {
      display: block;
      margin: 30px auto 0;
  }
  .navbar4 .custom-logo-link-url {margin: 20px 0 0;}
  .navbar4 .navbar-collapse ul, .navbar4 .navbar-collapse ol {margin: 1.5em 0 1.5em 0em;}
}
/*--------------------------------------------------------------
header variation Layout5
--------------------------------------------------------------*/
.navbar5.navbar {position: relative; background-color: #000000;}
.navbar5 .navbar-toggler {
    float: none;
    margin: 0 auto;
}
.layout5 .search-box-outer a , .layout5 .cart-header > a.cart-icon {color: #000;}
.layout5 .cart-header > a.cart-icon {border-right: 1px dotted #000;padding: 0 20px 0 0}
.layout5 .search-box-outer .dropdown-menu { 
    transform: none !important;
    top: 30px !important;
    box-shadow: 0px 0px 5px 0px #00000040;
    right: auto !important;
    left: 0px;
}
.layout5.header-logo {padding: 10px 0;background: #fff;}
.five.stickymenu1 .layout5.header-logo {background: #fff;}
.six.stickymenu1 .navbar-header.index6{background: #fff;}
.layout5 .header-module {
    margin: 0px 0;
    display: inline-block;
    float: left;
}
.layout5 .nav-search {display: inline-block;}
.layout5 .cart-header {display: inline-block;}
.layout5 .btn-box {display: inline-block;}

@media (min-width: 991px) {
  .layout5 .header-module {padding: 20px 0 0px 0;}
  .navbar .nav .nav-item .nav-link {
      margin: 0.5rem 0;
  }
  .navbar5.navbar {padding-bottom: 0;padding-top: 0;}
}
@media (min-width: 768px) and (max-width: 991px) {
  .layout5 .header-module {float: left;margin: 12px 0 0;}
}
@media (min-width: 768px) {
  .layout5 .header-lt {float: right;}
  .layout5 .custom-logo-link-url {position: relative;display: inline-block;}
  .layout5 .navbar-brand {float: right;}
}
@media (max-width: 767px) {
  .layout5.header-logo {
    text-align: center;
    padding: 20px 0;
  }
  .layout5 .custom-logo-link-url {
    margin-bottom: 1.25rem;
    margin-left: 0;
  }
  .layout5 .btn-box {
    float: none;
    display: inline-block;
  }
  .layout5 .header-module {
    float: none;
  }
  .layout5 .header-lt {margin-bottom: 15px;}
  .layout5 .search-box-outer .dropdown-menu {
    top: 50px !important;
    right: -20px !important;
    left: auto;
    width: 19rem !important;
  }
}
@media (max-width: 991px) {
  .navbar5 .navbar-collapse ul, .navbar5 .navbar-collapse ol {
    margin: 1.5em 0em 1.5em 0em;
  }
}

/*--------------------------------------------------------------
header variation Layout6
--------------------------------------------------------------*/
.navbar.navbar6 {
    padding-top:0;
    padding-bottom: 0;
    background-color: rgba(10, 10, 10, 1);
    position: relative;
    width: 100%;
}
.navbar.navbar6 .nav .nav-item:hover .nav-link, .navbar.navbar6 .nav .nav-item .nav-link:focus {
    color: #fff;
}
.navbar.navbar6 .nav .nav-item.active .nav-link { border-radius: 0px;position: relative;}
.navbar.navbar6 .content-center { margin: 0px; }

/*@media (min-width: 1100px) {
  .navbar.navbar6 .navbar-nav > li > a {
    border-radius: 0px;
    padding-top:0;
    padding-bottom: 0;
  }
}*/
@media (min-width: 1200px) {
  .navbar.navbar6 .btn-style-one {
    line-height: 1.75;
    padding: 0.98rem 1rem 1.1rem;
  }
}
@media (min-width: 992px) {
  .navbar.navbar6 .nav .nav-item .nav-link {
    padding: 1rem 0.75rem;
    margin:0;
  }
  .navbar.navbar6 .nav .nav-item.menu-html a,.navbar.navbar6 .nav .nav-item.menu-html
  {
    padding: 1rem 0.75rem;
    margin:0;
  }
.navbar.navbar6 .navbar-nav > li.active > a:after {
    content: '';
    position: absolute;
    border-top: .3em solid;
    border-left: .3em solid transparent;
    border-right: .3em solid transparent;
    display: block;
    top: 0;
    color: #ffffff;
    right: 50%;
  }
}
@media (max-width: 991px){
  .navbar.navbar6 { padding-bottom: 1rem; }
  .navbar6 .header-module {text-align: right;} 
}
@media (max-width: 1199px) {
  .navbar.navbar6 .nav .nav-item {
    margin-left: 0;
  }
}

/*------------------index 6 layout------------*/
.navbar-header.index6 {
    text-align: center;
    background-color: #fff;
    padding:17px 0 17px;
}
.navbar-header.index6 .navbar-brand {
 margin-left: 0;
 white-space: unset;
}
.index6 .custom-logo-link-url { padding: 5px 0;}
.index6 .custom-logo-link-url .site-title .site-title-name{ font-size: unset;}
.index6 .site-title { margin: 2px 0; line-height: 1.2;}
.navbar-header.index6 .custom-logo-link-url .site-title-name { padding: 2px 0 2px;}

/*===================================================================================*/
/*  SERVICE SECTION 4
/*===================================================================================*/
.services5 .post {
    margin-bottom: 2rem;
    padding: 1rem 5.55rem 1rem 1.125rem;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
    position: relative; 
}
.services5 .post:hover {
-webkit-box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
}
.services5 .post-thumbnail { 
    position: absolute;
    right: 1.25rem;
    padding: 1.25rem 0;
    top: 0;
    text-align: right;
}
.services5 .post-thumbnail i.fa { 
    font-size: 2.5rem; 
    text-align: center;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}
.services5 .post:hover .post-thumbnail i.fa{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}
.services5.service_wrapper .entry-header {margin: 0 0 0.938rem;}
.services5 .post .entry-header .entry-title a{
    color: #ffffff
}
.services5 .post a i{ color: #ffffff; }
.services5 .post .entry-content p{ color: #ffffff; }
.services5 .post .post-thumbnail img {
    width: 55px;
    height: auto;
    padding: 0;
    transition: 0.3s;
}
@media (max-width: 768px){
  .services5 .post { padding-right: 6.55rem;}
}
.services5 .post:hover .post-thumbnail i.fa, .services5 .post:hover .post-thumbnail img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

@media (min-width: 1200px) {
  body.boxed .navbar4 .header-lt::before {
      width: 15vw;
  }
  body.boxed .custom.header-sticky, body.boxed .five.stickymenu, body.boxed .five.stickymenu1, body.boxed .six.stickymenu, body.boxed .six.stickymenu1, body.boxed .seven.stickymenu, body.boxed .seven.stickymenu1 {
      width: 1210px;
  }
}



/*===================================================================================*/
/*34.1 New Widget Slider 
/*===================================================================================*/
.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:right;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;right:0;overflow:hidden;position:fixed;left:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{right:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;right:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;right:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;right:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:rtl;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 75%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 75%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{right:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;right:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;right:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:36px}.mejs-time-float-current{display:block;right:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;right:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:0}.mejs-long-video .mejs-time-float{margin-right:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;right:50%;margin:0;position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;right:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:2px}.mejs-volume-current{right:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;right:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-left:-43px;overflow:hidden;padding:0;position:absolute;left:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-left:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:right;right:-1000px;margin:3px 5px 0 3px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:right;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;right:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;right:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:-5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{right:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}


.widget.widget_calendar {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(0,0,0,0.5);
    padding: 1.875rem 1.563rem 2.5rem;
    color: #ffffff;
}
.sidebar .widget.widget_calendar {
    background-color: transparent;;
    color: #333;
}


.slider-caption.yes .widget li a, 
.slider-caption.yes .widget_archive li a, 
.slider-caption.yes .widget_categories li a, 
.slider-caption.yes .widget_links li a, 
.slider-caption.yes .widget_meta li a, 
.slider-caption.yes .widget_nav_menu li a, 
.slider-caption.yes .widget_pages li a, 
.slider-caption.yes .widget_recent_comments li a, 
.slider-caption.yes .widget_recent_entries li a {
    color: #ffffff;
}

.slide-widget .widget_text form label{margin-bottom: 1.5rem;}

.form-slider .widget {
    background-color: #ffffff;
    padding: 40px 30px 10px;
    border-radius: 7px;
    margin-right: 30px;
}
.slider-caption.yes .widget{padding: 40px 30px 10px;border-radius: 7px;margin-right: 30px;background-color: rgb(0 0 0 / 60%);}
.dark .form-slider .widget-title {
    color: #000000;
}
.bcslider-section .widget_text .widget-title {
    color: #000000;
}
.slide-widget input[type="text"],
.slide-widget input[type="email"],
.slide-widget input[type="url"],
.slide-widget input[type="password"],
.slide-widget input[type="search"],
.slide-widget input[type="number"],
.slide-widget input[type="tel"],
.slide-widget input[type="range"],
.slide-widget input[type="date"],
.slide-widget input[type="month"],
.slide-widget input[type="week"],
.slide-widget input[type="time"],
.slide-widget input[type="datetime"],
.slide-widget input[type="datetime-local"],
.slide-widget input[type="color"],
.slide-widget textarea {
    color: #0a0a0a;
    background: transparent;
    border: 1px solid #d5d5d5;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    display: block;
    padding: 10px;
    width: 100%;
}

.wp-block-embed iframe {
    max-width: 100%;
}

.slide-widget .slider-caption .inner-title {
    width: 100%;
}
.widget .wp-block-search .wp-block-search__button.has-icon {
    line-height: 0;
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #0a0a0a;
    background: transparent;
    z-index: 3;
    display: block;
    transition: all 0.3s;
    padding: 0;
    cursor: pointer;
    border: 0;
}
.sidebar .wp-block-search .wp-block-search__label,.sidebar .widget.widget_block h1,.sidebar .widget.widget_block h2,.sidebar .widget.widget_block h3,.sidebar .widget.widget_block h4,.sidebar .widget.widget_block h5,.sidebar .widget.widget_block h6{
    padding: 0rem 0rem 0.625rem;
    font-weight: 600;
    margin: 0;
    z-index: 1;
    position: relative;
}
.footer-sidebar .wp-block-search .wp-block-search__label,.footer-sidebar .widget.widget_block h1,.footer-sidebar .widget.widget_block h2,.footer-sidebar .widget.widget_block h3,.footer-sidebar .widget.widget_block h4,.footer-sidebar .widget.widget_block h5,.footer-sidebar .widget.widget_block h6{
    padding-bottom: 0.5rem;
    margin: 0 0rem 1rem;
    color: #ffffff;
}
.footer-sidebar .widget li {
    padding-right: 0;
}
.footer-sidebar .widget li:before {
    content: '';
}
.footer-sidebar .wp-block-calendar table caption,.footer-sidebar  .wp-block-calendar table tbody {
    color: #fff;
}
.footer-sidebar .wp-block-calendar tr #today{font-weight: 700;} 
.footer-sidebar .widget li a:before{
  content: "\f177";
    font-family: 'FontAwesome';
    font-size: 0.75rem;
    opacity: 0;
    position: relative;
    top: 0px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin-left: -0.75rem;
    float: right;
}
.footer-sidebar .widget li a:hover::before{
    margin-left: 8px;
    opacity: 1;
  }
 .footer-sidebar .widget .wp-block-tag-cloud a {
    border: 1px solid #fff;
}
.footer-sidebar .widget .wp-block-tag-cloud a {
  color: #fff;
} 
.footer-sidebar li.wp-block-latest-comments__comment a:before{display: none;}
.widget .wp-block-getwid-recent-posts footer {
     background-color: transparent; 
}
.wp-block-search .wp-block-search__label, .widget.widget_block h2{font-size:1.250rem;}
.widget .wp-block-search .wp-block-search__input {
    font-size: 0.875rem;
    padding-right: 1.25rem;
    padding-left: 1.875rem;
}
.site-footer .widget .wp-block-search .wp-block-search__input{background-color: #fff;}
.widget .wp-block-search__button {
    position: absolute;
    left: -2rem;
    margin-top: 9px;
    top: auto;
    background: transparent;
    z-index: 3;
    display: block;
    border: 0;
    padding: 0.625rem;
}
.page-template-template-blog-left-sidebar .widget .wp-block-search__button {left: 40px; }
.wp-block-group__inner-container .wp-block-search .wp-block-search__label,.wp-block-group__inner-container .wp-block-search .section-separator {display: none;}
.wp-block-search__input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80BDFF;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.widget .wpcf7 .wpcf7-textarea{
  height: 100px;
}
.widget li:before {
    content: "\f101";
    font-family: FontAwesome;
   position: absolute;
   right: 0;
}

.widget li{
    padding-bottom: 0.5rem;
    margin: 0;
    position: relative;
    padding-right: 0.938rem;
}
.widget .wp-block-gallery li{padding:0;}
.widget .wp-block-gallery li:before,.widget .custom-social-icons li:before{
    display:none;
}
.widget li:first-child,.footer-sidebar .widget li:first-child{
    padding-top:0;
}
.widget li:last-child,.footer-sidebar .widget li:last-child{
    padding-bottom: 0px;
    border-bottom: none;
}
.widget ul,.widget ol{
    list-style: none;
    margin-right: 0;
    padding-top: 0;
    margin: 0;
}
.wp-calendar-nav{text-align: right;}
.widget .wp-block-calendar table th {
    font-weight: 700;
    border-bottom: 2px solid #bbb;
    background:transparent;
}
.widget .wp-block-calendar tbody td,.widget .wp-block-calendar th {
    border: 0;
    padding: 0.4em;
    text-align: right;
}
.widget .wp-block-tag-cloud a{
    background-color: transparent;
    font-size: 1rem !important;
    display: inline-block;
    padding: 5px 10px;
    color: #0A0A0A;
    margin: 0 0.125rem 0.625rem;
}
.widget.widget_media_image .wp-block-image img{
    max-width: 100%;
    height: auto;
}
.wp-calendar-table #today{
    font-weight: 600;
}

.wp-block-latest-comments__comment-meta {
    background-color: transparent;
}
.sidebar .widget .widget_shopping_cart_content .woocommerce-mini-cart__buttons a:hover{color:#fff;}
.sidebar .widget.woocommerce .search-field {
    margin-bottom: 0.625rem;
  }
.widget.woocommerce.widget_products li img{margin-left:1.25rem; }  
.widget.woocommerce.widget_recently_viewed_products li img{margin-left:1.25rem; }
.woocommerce-mini-cart.cart_list.product_list_widget li img{margin-left:1.25rem; }   
.widget.woocommerce.widget_top_rated_products li img{margin-left:1.25rem; }
.slider-caption.yes .wp-block-calendar table tbody {color: #fff;}
.slider-caption.yes .widget_block h1, .slider-caption.yes .widget_block h2, .slider-caption.yes .widget_block h3,
.slider-caption.yes .widget_block h4,.slider-caption.yes .widget_block h5,.slider-caption.yes .widget_block h6{color: #fff;}
.slider-caption.yes .wp-calendar-table #today a{color: #6c757d;}
.slider-caption.yes .wp-calendar-nav-prev a {color: #fff;}



.navigation.pagination .nav-links .page-numbers, .navigation.pagination .nav-links a {
    border: 1px solid #e9e9e9;
    cursor: pointer;
    display: inline-block;
    line-height: 1.5;
    font-weight: 600;
    transition: all 0.3s ease 0s;
    font-size: 1.125rem;
    border-radius: 50px;
    margin: 0 0.125rem 0.625rem;
    padding: 0.625rem;
    vertical-align: baseline;
    white-space: nowrap;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-color: #888888;
    color: #888888;
}
.navigation.pagination .nav-links .page-numbers:focus, .navigation.pagination .nav-links a:focus{outline: 1px solid #000;color: #ffffff;}

.navigation.pagination .page-numbers:hover{color: #ffffff;}
.navigation.pagination .page-numbers.dots:hover {color: #000;}
a.page-numbers:focus {color: #ffffff;}
/*Boxed layout*/
@media (min-width: 1200px){
    body.boxed {
        width: 1210px;
        -webkit-box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
        box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
        margin: 30px auto;
        position: relative;
        background: url(assets/images/bg-pattern/bg-img1.png) repeat fixed;
    }
}

/*===================================================================================*/
/* 35.0 PRE LOADERS 
/*===================================================================================*/
@media (min-width: 1200px){
body.boxed div#preloader1 {
    width: 1210px;
}}
/* Loader 1 css */
div#preloader1 {
    margin: auto;
   position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999999;
    display: flex;
    align-content: center;
    justify-content: center;
}

.spiko-preloader-cube {
    top: 40%;
    right: 50%;
    margin-right: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    position: absolute;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.spiko-preloader-cube .spiko-cube {
    float: right;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.spiko-preloader-cube .spiko-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}


.spiko-preloader-cube .spiko-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.spiko-preloader-cube .spiko-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.spiko-preloader-cube .spiko-cube:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: hp-foldCubeAngle 2.4s infinite linear both;
    animation: hp-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.spiko-preloader-cube .spiko-cube2:before {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.spiko-preloader-cube .spiko-cube4:before {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.spiko-preloader-cube .spiko-cube3:before {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@keyframes hp-foldCubeAngle{0%,10%{-webkit-transform:perspective(140px) rotateX(-180deg);transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{-webkit-transform:perspective(140px) rotateX(0);transform:perspective(140px) rotateX(0);opacity:1}100%,90%{-webkit-transform:perspective(140px) rotateY(180deg);transform:perspective(140px) rotateY(180deg);opacity:0}}

/*===================================================================================*/
/* 35.1 PRE LOADERS 2
/*===================================================================================*/
#preloader2{
    margin: auto;
    position: fixed;
    z-index: 9999999;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
#preloader2 .square{
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 4px;
  animation-fill-mode: both;
    animation: motion 2.5s infinite cubic-bezier(0.89, 0.03, 0.06, 1.5);
}
.loader-2{
    position: fixed;
    top: 48%;
    right: 48%;
    width: 77px;
    height: 67px;
}
#preloader2 .path{
    height: 10px;
    width: 110px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}
#preloader2 .path > div{
    background: #444;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin: 0 15px;
    position: absolute;
    top: 0;
    right: 0;
    animation-fill-mode: both;
    animation: dynamic 5s infinite cubic-bezier(0.89, 0.03, 0.06, 1.5);
}
#preloader2 .path > div:nth-child(1){ right: 40px; }
#preloader2 .path > div:nth-child(2){ right: 80px; }
#preloader2 .path > div:nth-child(3){ right: 120px; }
#preloader2 .path > div:nth-child(4){ right: 160px; }
#preloader2 .path > div:nth-child(5){ right: 200px; }
#preloader2 .path > div:nth-child(6){ right: 240px; }
#preloader2 .path > div:nth-child(7){ right: 280px; }
@keyframes motion{
    50%{ transform: rotate(90deg); }
    100%{ transform: rotate(180deg); }
}
@keyframes dynamic{
    0%{ transform: translateX(40px); }
    25%{ transform: translateX(80px); }
    50%{ transform: translateX(120px); }
    75%{ transform: translateX(160px); }
    100%{ transform: translateX(200px); }
}
/* End Of Loader 2 css */


/*===================================================================================*/
/* 35.2 PRE LOADERS 3
/*===================================================================================*/
#preloader3{
    width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    z-index: 1000;
}
    .loader{
    width: 15em;
    height: 15em;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    animation: hypnosis 5s infinite linear;
    top: 30%;
}
.loader div{
    font-size: 1.5em;
    width: 10em;
    height: 10em;
    border-radius: 50%;
    transform-origin: 5em 5em;

    position: relative;
}
.loader div span,
.loader div span:before,
.loader div span:after {
    border-top: .3em solid white;
    border-radius: 50%;
    position: absolute;
    right: .5;
    animation: color 10s infinite;
}
.loader div span{
    width: 9em;
    height: 9em;
    transform-origin: 5em 2.9em;
    top: 0em;
}
.loader div span:before,
.loader div span:after{
    content: "";
}
.loader div span:before{
    width: 8em;
    height: 8em;
    border: 0 solid white;
    border-width: 0 0 0 .3em;
    left: .1em;
    top: -.2em;
}
.loader div span:after{
    width: 6.5em;
    height: 6.5em;
    border: 0 solid white;
    border-width: 0 0 .3em 0;
    left: .4em;
    bottom: 1.2em;
}
.loader div span:nth-child(2){
    font-size: .6em;
    transform-origin: 8.3em 4.8em;
    transform: rotate(-90deg);
}
.loader div span:nth-child(3){
    font-size: .2em;
    transform-origin: 8em 8.7em;
    transform: rotate(180deg);
}
.loader div:nth-child(2),
.loader div:nth-child(3),
.loader div:nth-child(4){
    position: absolute;
    top: 0;
    right: 0;
}
.loader div:nth-child(3),
.loader div:nth-child(4){
    animation: hypnosis 4s linear infinite reverse;
}
.loader div:nth-child(2){ transform: rotate(90deg); }
.loader div:nth-child(3){ animation-delay: -2s; }
.loader div:nth-child(4){ animation-delay: -4s; }
.loader div:nth-child(2) span,
.loader div:nth-child(2) span:before,
.loader div:nth-child(2) span:after{
    border-color: skyblue;
    animation-delay: 2.5s;
}
.loader div:nth-child(3) span,
.loader div:nth-child(3) span:before,
.loader div:nth-child(3) span:after{
    border-color: crimson;
    animation-delay: 2s;
}
.loader div:nth-child(4) span,
.loader div:nth-child(4) span:before,
.loader div:nth-child(4) span:after{
    border-color: gold;
    animation-delay: .5s;
}
@keyframes hypnosis{
    100%{ transform: rotate(360deg); }
}
@keyframes color{
    10%{ border-color: #845EC2; }
    20%{ border-color: #FEF950; }
    30%{ border-color: #FF6F91; }
    40%{ border-color: #17A554; }
    50%{ border-color: #33A896; }
    60%{ border-color: #2247A9; }
    70%{ border-color: #E8353C; }
    80%{ border-color: #F3F3CC; }
    90%{ border-color: #4FFBDF; }
}
/* End Of Loader One css */

/*===================================================================================*/
/* 35.3 PRE LOADERS 4
/*===================================================================================*/
#preloader4{
width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    z-index: 1000;
}
.loader-4 
{ 
right: 45%;
top: 40%;
width: 100px;
height: 100px;
position: absolute;
}
.loader-4 .loader-inner-1,
.loader-4 .loader-inner-2,
.loader-4 .loader-inner-3,
.loader-4 .loader-inner-4

{
display: block;
width: 20px;
height: 20px;
border-radius: 20px;
position: absolute;

}
.loader-4 .loader-inner-1:before,
.loader-4 .loader-inner-2:before,
.loader-4 .loader-inner-3:before,
.loader-4 .loader-inner-4:before

{
content:"";
display: block;
width: 20px;
height: 20px;
border-radius: 20px;
position: absolute;
left: 0;
animation-name: loading-1;
animation-iteration-count: infinite;
animation-direction: normal;
animation-duration: 2s;

}

.loader-4 .loader-inner-1
{
top: 0;
right: 0;
transform: rotate(70deg);
}

.loader-4 .loader-inner-1:before
{
 background: #FCE6CF;
}

.loader-4 .loader-inner-2
{
top: 0;
left: 0;
transform: rotate(160deg);
}

.loader-4 .loader-inner-2:before
{
 background: #1E3C72;
}

.loader-4 .loader-inner-3
{
bottom: 0;
left: 0;
transform: rotate(-110deg);
}

.loader-4 .loader-inner-3:before
{
 background: #ffcf0e;
}

.loader-4 .loader-inner-4
{
bottom: 0;
right: 0;
transform: rotate(-20deg);
}

.loader-4 .loader-inner-4:before
{
 background: #ff2350;
}
@keyframes loading-1 
{
  0% 
  {
    width: 20px;
    left: 0;
  }
  
  30% 
  {
    width: 120px;
    left: -100px;
  }

  60% 
  {
    width: 20px;
    left: -100px;
  }

 }

.header_menu{
width: 100%;
height: 100px;
display: flex;
flex-direction: row;
align-items: center;
/*  border:1px solid red;*/
}
.logo{
width: 20%;
text-align: center;
}
.logo img{
height: 300px;
}
.menu_list{
width: 80%;
text-align: left;
padding-left: 50px;
}
.menu_list li{
display: inline-block;
text-transform: uppercase;
list-style: none;
letter-spacing: 2px;
padding-right: 50px;
}
.menu_list li a{
color:rgba(255, 255, 255, .8);
text-decoration: none;
}
.menu_list li a:hover{
color:orange;
}
.header_content{
text-transform: uppercase;
width: 100%;
height: 200px;
position: absolute;
top: 50%;
right: 50%;
color:rgba(255, 255, 255, .8);
transform: translate(50%, -50%);
text-align: center;
/*  border:1px solid red;*/
}
.header_content h2{
margin-bottom: 50px;
font-size: 17px;
font-weight: 500;
letter-spacing: 0.3em;
}
.header_content h1{
margin-bottom: 50px;
font-size: 50px;
font-weight: 500;
letter-spacing: 0.7em;
}
.header_content button{
height: auto;
padding:8px 37px;
color:#fff;
font-size: 12px;
background-color: transparent;
margin-left: 20px;
}
.header_content button a{
text-transform: uppercase;
text-decoration: none;
color: white;
letter-spacing: 1px;
}
.header_content button:hover{
background-color: orange;
border:1px solid white;
}
/* End Of Loader Four css */

/*===================================================================================*/
/* 35.4 PRE LOADERS 5
/*===================================================================================*/
#preloader5{
   width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 1000;
}

.loader-5
{
    position: absolute;
    top: 45%;
    right: 50%;
    transform: translate(50%, -50%);
}

.loader-5 span
{
    position: absolute;
    width: 20px;
    height: 20px;
    background: #262626;
    animation: animates 4s infinite forwards ease-in-out;
}

.loader-5 span:nth-child(1)
{
    background: #00485f;
    right: -24px;
    top: -24px;
    animation-delay: 0.5s;
}
.loader-5 span:nth-child(2)
{
    background: #00deea;
    right: 0px;
    top: -24px;
    animation-delay: 1s;
}
.loader-5 span:nth-child(4)
{
    background: #00485f;
    right: -24px;
    top: 0px;
    animation-delay: 1.5s;
}
.loader-5 span:nth-child(3)
{
    background: #00deea;
    right: 0px;
    top: 0px;
    animation-delay: 2s;
}

@keyframes animates
{
    
    0%
    {
        transform: rotateY(0deg);    
    }
    20%
    {
        transform: rotateY(360deg);
    }
    40%
    {
        transform: rotateX(180deg);
    }
    60%
    {
        transform: rotateX(0deg);
    }
    80%
    {
        transform: rotateX(360deg);
    }
    100%
    {
        transform: rotateY(180deg);
    }
}
/* End Of Loader Five css */

/*===================================================================================*/
/* 35.5 PRE LOADERS 6
/*===================================================================================*/
#preloader6{
   width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    z-index: 1000;
}
.loader-6{
    width: 180px;
    height: 40px;
    position: relative;
    margin: 50px auto 0;
    top:40%;
}
.loader-6 .inner_loader{
    background: #db2651;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    animation: move-ball 1s infinite linear;
}
.loader-6 .inner_loader:nth-child(2){
    background: #1da1f2;
    animation-delay: -0.2s;
}
.loader-6 .inner_loader:nth-child(3){
    background: #1ba506;
    animation-delay: -0.4s;
}
.loader-6 .inner_loader:nth-child(4){
    background: #ec5f20;
    animation-delay: -0.6s;
}
.loader-6 .inner_loader:nth-child(5){
    background: #742cc0;
    animation-delay: -0.8s;
}
@keyframes move-ball{
    0%{
        box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1.1);
        transform: translatey(0) scale(1);
    }
    25%{
        box-shadow: 0px 38.5px 25px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1);
        transform: translatey(-17.5px) scale(0.75);
    }
    50%{
        box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(0.8);
        transform: translatey(0px) scale(0.5);
    }
    75%{
        box-shadow: 0px 3.5px 5px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1);
        transform: translatey(17.5px) scale(0.75);
    }
    100%{
        box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1.1);
        transform: translatey(0) scale(1);
    }
}
/* End Of Loader Six css */

@media (min-width: 1200px){
body.boxed div#preloader { width: 1210px; }}
.spiko_header_btn{position: relative;display: inline-block;margin-left: 30px;margin-right: 30px; padding: 0.96rem 1rem 0.9rem;}

/*===================================================================================*/
/* 36 Others
/*===================================================================================*/

@media (min-width: 1100px){
.container-fluid.streached {
    padding: 0;
}}

.services .card:hover h4{color: #ffffff;}
.wpcf7-form-control-wrap {
    position: initial;
}
@media (min-width: 992px){
.navbar .nav .html {
    padding: .9rem 0rem;
}}
.woocommerce .product_cat-singles .cart .single_add_to_cart_button:hover{color: #FFFFFF !important;}
.panel-outer .search-form input[type="submit"]:hover , .panel-outer .search-form input[type="submit"]:focus {
    color: #FFFFFF;
}
.woocommerce .products .star-rating {display: inline-block;}
.taxonomy-list a{color: #888888;}
.nav-item .widget a{color: #CAC1C1;}
.dark .testimonial::before {
    background-color: rgba(0, 0, 0, 0.8);
}
.team-grid-col{margin-bottom: 30px;}
.section-space.shop.woocommerce .page-title {display: none;}

.slider-caption.yes .wpcf7 textarea::placeholder,.slider-caption.yes .wpcf7 input::placeholder{
  color:#888888;
}
.slider-caption.yes .wpcf7 textarea,.slider-caption.yes .wpcf7 input{
  color:#fff;
}
.dark .sidebar .widget .wp-block-tag-cloud a:hover {
    color: #fff;
}
.section-space.portfolio, .section-space.blog {
    background-color: #fff;
}
body .woocommerce a.remove {
    color: red!important;
  }
  #testimonial-carousel4 .col-md-6 .testmonial-block {
    margin-bottom: 30px;
}
.blog .entry-content img{
  max-width: 100%;
    height: auto;}

@media (max-width: 768px){
  .navbar6 .search-box-outer .dropdown-menu,.hp3 .search-box-outer .dropdown-menu{
    right: -115px !important;
}}   
@media (max-width: 767px){
  .header-logo.layout5 .search-box-outer .dropdown-menu{right: -80px !important;}
}

@media screen and (max-width: 1100px) and (min-width: 768px){
  .loader-4,.loader-2 {
    top: 30%;
  }}
  @media (max-width: 767px){
  .loader-4,.loader-2 {
    right: 35%;
  }
}
.navbar6 .search-box-outer .dropdown-menu {
    top: 40px !important;
    }


/*Comments*/
.comment-section { 
  background-color: #ffffff; 
  margin: 0 0 3rem;
  padding: 1.25rem 0;
}
.comment-section {padding: 2.188rem 1.875rem 1.875rem;}
article.comment-form{padding: 1.25rem 0;}
.comment-title { display: block; }
.comment-reply-title {
    margin: 0 0 1.875rem;
    border-bottom: 1px solid #eceff3;
    padding-bottom: 0.625rem;
}
.comment-box { margin: 0; position: relative; }
.comment-detail {     
  border-bottom: 1px solid #eceff3;
  margin: 0 0 2.813rem;
  padding-bottom: 1.25rem; 
}
.pull-left-comment { float: right; margin-left: 1.875rem; width: 6.25rem; height: 6.25rem; }
.comment-detail-title { margin: 0 0 0.625rem; }
.comment-date { font-size: 0.875rem; color: #878e94; font-weight: 400; margin-right: 1.25rem; }
.comment-detail p { margin-bottom: 1.3rem; }
.reply a {
    font-size: 0.938rem;
    padding: 0;
    font-weight: 600;
    transition: 0.3s ease-in-out 0s;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.reply a:hover, .reply a:focus { color: #061018; }

@media (max-width: 767px){
.slider-caption.yes .widget.widget_block {
    margin-right: 0px;
    margin-top: 30px;
}}
@media (max-width: 767px){
#slider-carousel .item.yes{
height:80rem !important;
}}
.blog .post .entry-content a, .page .post .entry-content a, .page .about-content a, .page .about-section a, .page:not(.page-template-template-business-php,.page-template-template-service) .services a, .comment-section .comment-detail a {
    text-decoration: underline!important;
}
.about-section a.btn-small{text-decoration: none !important;}
.blog .post .entry-content a.btn-small {
    text-decoration: none!important;
}
.sidebar .widget_block.widget_text a, .sidebar .widget.widget_block p a {
    text-decoration: underline!important;
}
.sidebar .widget_block.widget a.tag-cloud-link, .site-footer .widget_block.widget a.tag-cloud-link{text-decoration: none !important;}
.site-footer .widget_block.widget_text a, .site-footer .widget.widget_block p a {
    text-decoration: underline!important;
}
.section-space .sticky.post {
    background-color: #7fe5833b;
}
.entry-content a.wp-block-button__link {
    color: #fff; 
}
.woocommerce-cart .entry-content a, .woocommerce-checkout .entry-content a, .woocommerce-account .entry-content a, .comment-section a.comment-reply-link, .woocommerce-account .page .post .entry-content a, .woocommerce-page .page .post .entry-content a {
    text-decoration: none!important;
}
.sidebar .widget.widget-block li:before, .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before, .wc-block-product-categories-list-item:before {
    font-family: FontAwesome;
    margin-left: 5px;
    margin-right: 1px;
    content: "\f101";
    float: right;
 }
.blog .standard-view article .entry-header {
    word-break: break-word;
}
.widget .wp-block-search__button {
    color: transparent;
}
.wp-block-search__button:after {
    content: "\f002";
    font-family: "FontAwesome";
}
button:focus {
    outline: 1px solid #000;
}
.wp-block-search__button:after {
    color: #0a0a0a;
}
.spiko.alert-warning{padding-top: 150px;padding-bottom: 70px;margin-bottom: 0;}
body .navbar-dark .navbar-brand:hover {
    color: transparent;
}
.home-blog .entry-date{margin-top: -75px;}
@media (max-width: 768px){
  button.navbar-toggler:focus {
    outline: 1px solid #ffffff;
}
}
img.custom-logo {
    width: 100%;
}

.wpcf7 form p {
    display: block;
    position: relative;
}
.contant-form p .wpcf7-form-control-wrap:after {
    top: 40px;
}
@media (max-width: 991px){
.spiko_header_btn {margin-right: 0; margin-left: 0;
}}
.seven.navbar{position: relative;}
.seven.navbar.stickymenu{position: fixed;}
body .woocommerce div.product .woocommerce-tabs ul.tabs li.active::before, body .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    box-shadow: unset;
}
.wp-block-latest-posts .wp-block-latest-posts__featured-image img {
    width: 72px;
    height: 76px;
    }
.wp-block-latest-posts .wp-block-latest-posts__featured-image {
margin: 0 0 0 10px;
    overflow: hidden;
    float: right;
    display: block;
    width: 4.5rem;
    height: 4.75rem;
    border-radius: 0;
    background-color: unset;  
    }
.navbar .mr-auto, .navbar .mx-auto {
    margin-right: auto!important;
    margin-left: unset!important;
}
.text-left {
    text-align: right!important;
}
.text-right {
    text-align: left!important;
}
.fa-long-arrow-right:before {
    content: "\f177" !important;
}
.fa-long-arrow-left:before {
    content: "\f178" !important;
}
.wpcf7 .ajax-loader{float: left;}
.wp-block-latest-comments__comment-excerpt p{
    word-break: break-all;
}
.footer-sidebar .widget.widget_calendar{background-color: transparent; color: #FFFFFF;
  padding: 0 0 1.25rem;
  margin: 0 0 1.875rem;
}
.media-body {
    overflow: hidden;
}
.team4 .team-grid img{
  width:100%;
}
@media (min-width: 991px) {
  .shortitem-3 #testimonial-carousel2 .testmonial-block {
    padding: 15px;
  }
  .shortitem-3 #testimonial-carousel2 .testmonial-block .avatar {
    display: inline-block;
    position: relative;
    right: 0;
    float: right;
    margin-left: 20px;
    width: 5.4rem;
    height: auto;
  }
  .shortitem-3 #testimonial-carousel2 .testmonial-block figcaption {
    display: inline-block;
  }
}
.woocommerce-page.woocommerce-cart .return-to-shop .button.wc-backward{margin-top:30px}
.cart-header > a.cart-total span span{display: inline-block;}
.single-spiko_portfolio .related-posts{
    display: none;
}
.loaded div#preloader1,.loaded .spiko-loader,.loaded div#preloader2{
display: none;
}
div#myDiv {
    margin: 50px 0;
}
@media (min-width: 1200px)
{
  body.boxed div#preloader1, 
  body.boxed div#preloader2, 
  body.boxed div#preloader3, 
  body.boxed div#preloader4, 
  body.boxed div#preloader5, 
  body.boxed div#preloader6 {
    width: 1210px;
}
}
@media(max-width: 480px){
.navbar .content-center {width: auto;    margin: 0 auto;}
.navbar .content-center .navbar-brand,.navbar .content-center .custom-logo-link-url{margin: 0;}
 }
@media (max-width: 786px){
 .video-slider.home-section.pro {
    height: auto !important;
}}
.portfolio-gallery .row.portfolio-space {
    padding: 0 15px;
}
.woocommerce table.cart td.actions .input-text, 
.woocommerce-page #content table.cart td.actions .input-text, 
.woocommerce-page table.cart td.actions .input-text {
    width: 200px;
    padding: 6px 12px;
    border-radius: 0;
    height: 44px;
}
/*css for Rank Math Breadcrumbs */
nav.rank-math-breadcrumb {
    text-align: center ! important;
}
nav.rank-math-breadcrumb span {
    color:#35ac39 !important;
}
nav.rank-math-breadcrumb a {
    color: #fff ! important;
    padding-right: 5px ! important;
}
nav.rank-math-breadcrumb a:hover {
    color: #35ac39 ! important;
}
/*css for  NavXT */
.bs-breadcrumb-section .breadcrumb a, .bs-breadcrumb-section .breadcrumb-item span {
    color: #35ac39;
}
.bs-breadcrumb-section .breadcrumb, .bs-breadcrumb-section .breadcrumb a {
    font-size: 13px;
}
.page-breadcrumb.text-center span {
    background: none;
}
.page-breadcrumb.text-center span:hover {
    background: none;
}
.page-breadcrumb.text-center span.post-page.current-item,
.page-breadcrumb.text-center span.post-post.current-item {
   color:#35ac39 !important;
}
.page-breadcrumb {
    color: #fff;
}
.navxt-breadcrumb .current-item {
    color:#35ac39 !important;
}
PK�uKX�mT����spiko/style.css/*
Theme Name: Spiko
Theme URI: https://spicethemes.com/spiko-wordpress-theme/
Author: spicethemes
Author URI: https://spicethemes.com
Description: Spiko WordPress Theme is a lightweight, elegant, fully responsive, and translation-ready theme that allows you to create stunning blogs and websites. The theme is well suited for companies, law firms, eCommerce, finance, agency, travel, photography, design, arts, personal, and any other creative websites and blogs. The theme is developed using the Bootstrap 4 framework. It comes with a predesigned home page, good-looking header designs, and a number of content sections that you can easily customize. It also has lots of customization options (banner, services, testimonial, etc) that will help you create a beautiful, unique website in a short time. Spiko is compatible with popular plugins like Polylang, WooCommerce and Contact Form 7. The theme provides custom breadcrumb trail options for popular plugins - Breadcrumb NavXT, Yoast SEO, and Rank Math SEO plugin .This  theme is fully GDPR-compliant and doesn’t use any external Google Fonts. All fonts are locally hosted. Spiko theme is available in several locales. (DEMO: https://spiko.spicethemes.com/) 
Tags: one-column, two-columns, right-sidebar, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, sticky-post, threaded-comments, translation-ready, rtl-language-support
Version: 1.1.5
Requires at least: 4.5
Tested up to: 6.2
Requires PHP: 5.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spiko
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Common
2.0 Forms
3.0 Buttons
4.0 Lists
5.0 Tables
6.0 Links
7.0 Header Contact Details
8.0 Social Icons
9.0 Woocommerce Header Cart
10.0 Main Slider
11.0 Next Preview Button
12.0  SECTION HEADER
13.0  MIXED CLASS
14.0  SERVICE SECTION
15.0  CTA SECTION 
16.0 TESTIMONIAL SECTION
17.0 FUNFACT SECTION
18.0 Blog 
  18.1 Blog Post Content
  18.2 BLOG PAGINATION
  18.3 BLOG SIDEBAR
19.0 Gallery
20.0 TEAM SECTION
21.0  SHOP AND PRODUCT SECTION
22.0  Sponsors Section
22.0  CONTACT DEATIL SECTION
23.0  FOOTER SECTION Site Info
24.0  Breadcrumb
25.0  ABOUT PAGE
26.0  PORTFOLIO PAGE
27.0  Error 404 PAGE
28.0  Footer Sidebar Section
29.0 Page Scroll Up
30.0 Blog Single 
31.0 Common classes
32.0  Sticky Menu Classes
33.0  Footer Layout
34.0 Slider Video Button , Background Video And Images
  34.1  New Widget Slider
35.0 Pre Loaders
  35.1 PRE LOADERS 2
  35.2 PRE LOADERS 3
  35.3 PRE LOADERS 4
  35.4 PRE LOADERS 5
  35.5 PRE LOADERS 6  
36 Others
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Common
--------------------------------------------------------------*/
html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}
html { font-size: 1rem; }
@media (min-width: 768px) and (max-width: 991px) {
  html { font-size: 0.875rem; }
}
@media (min-width: 200px) and (max-width: 768px) {
  html { font-size: 0.75rem; }
}
body,
button,
input,
select,
textarea {
  font-family: "Poppins", "Work Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3,
h4, h5, h6 {
  clear: both;
  line-height: 1.5;
  margin: 0 0 1.875rem;
  color: #0a0a0a;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

h1 { font-size: 2.250rem; /* 36px */ }
h2 { font-size: 1.875rem; /* 30px */ }
h3 { font-size: 1.500rem; /* 24px */ }
h4 { font-size: 1.250rem; /* 20px */ }
h5 { font-size: 1.000rem; /* 16px */ }
h6 { font-size: 0.875rem; /* 14px */ }

p {transition: 0.3s;margin: 0 0 1.6rem; padding: 0;font-size: 0.938rem; color:#888888;font-family: 'Poppins', sans-serif;}
p:last-child { margin-bottom: 0rem; padding: 0; }

dfn, cite, em, i { font-style: italic; }

blockquote {
  font-size: 1.500rem;
  font-style: normal;
  margin: 0 0 1.563rem;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  quotes: "" "";
  font-weight: 400;
  position: relative;
  background-color: #f5f6fa;
}
#testimonial-carousel3 blockquote{border-left:unset;background-color: unset;font-size: unset;}
#testimonial-carousel4 blockquote{border-left:unset;background-color: unset;font-size: unset;}
.testi-4 .item {margin: 0 2px;}
blockquote cite { color: #061018; font-size: 1.000rem; display: block; font-style: normal; font-weight: 400; margin-top: 0.5em; }

q { quotes: "“" "”" "‘" "’"; }

blockquote:before, blockquote:after { content: ""; }

#content :focus {
  outline: 1px solid #000;
}
dl dd a, dl dd a:hover, dl dd a:focus, ul li a:focus { color: #727272; }
.bg-default, .section-space.blog.bg-default{background-color:#f5f6fa;}
.bg-default-color{background-color:#ffffff;}

.entry-meta .tag-links a {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    color: #727272;
    font-size: 0.875rem;
    display: inline-block;
    padding: 0.188rem 1.25rem;
    margin: 0 0.500rem 0.625rem 0;
}
.entry-meta .tag-links a:hover, .entry-meta .tag-links a:focus {
    color: #ffffff;
}
.entry-meta > span {
    color: #727272;
   margin: 0px -5px 0px 0px;
}
.entry-meta a {
    color: #727272;
    padding: 0;
}

.blog-author {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    margin: 0 0 5rem;
    padding: 2.188rem 1.875rem 1.875rem;
}

.blog-author.media .avatar img {
    border-radius: 50%;
}
.blog-author .avatar {
    margin: 0 2.5rem 0px 0;
    height: 12.5rem;
    width: 12.5rem;
}
.blog-author .post-by {
    color: #727272;
    font-size: 0.938rem;
    font-weight: 400;
    margin-bottom: 0.625rem;
}
.blog-author .name {
    margin: 0 0 0.625rem;
}

p:last-child {
    margin-bottom: 0rem;
    padding: 0;
}

.blog .standard-view .entry-content img {
    max-width: 100%;
    height: auto;
}
.wp-caption.alignnone img, .wp-caption.aligncenter img, .wp-image-907 {
    width: 100%;
    height: auto;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-block-latest-comments__comment-meta{background-color: #ffffff;}

.has-media-on-the-right.is-stacked-on-mobile {
    margin-top: calc(2 * 1rem);
    margin-bottom: calc(2 * 1rem);
    left: calc( -12.5% - 75px);
    max-width: calc( 125% + 150px);
}
.post .entry-content {
    display: block;
    overflow: hidden;
    margin: 0px;
}
.wp-block-cover-image .wp-block-subhead:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color), .wp-block-cover .wp-block-subhead:not(.has-text-color), .wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color) {
    color: #ffffff;
}

.wp-block-cover-image-text a, .wp-block-cover-image-text a:active, .wp-block-cover-image-text a:focus, .wp-block-cover-image-text a:hover, .wp-block-cover-text a, .wp-block-cover-text a:active, .wp-block-cover-text a:focus, .wp-block-cover-text a:hover, section.wp-block-cover-image h2 a, section.wp-block-cover-image h2 a:active, section.wp-block-cover-image h2 a:focus, section.wp-block-cover-image h2 a:hover {
    color: #fff; 
}
.alignwide, .aligncenter {
    margin-bottom: 1.87rem;
   
}
.funfact-icon {color:#ffffff;} 
address { margin: 0 0 1.5em;color: #888888; }

pre {
  background: #eee;
  font-size: 1.000rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

hr { background-color: #bbb; border: 0; height: 1px; margin-bottom: 1.5em; }

code, kbd, tt, var { font-size: 1.000rem; }

abbr, acronym { border-bottom: 1px dotted #666; cursor: help; }

mark, ins { background: #eee; text-decoration: none; }
.business-shop mark, .business-shop ins { background: transparent;}
big { font-size: 125%; }

iframe { border: 0; }

#wrapper { background-color: #f8f8f8; margin: 0px auto; }

.sticky{}
cite{ font-style: italic !important; }
.bypostauthor{}
#attachment_907 { width: 100% !important; }
.alignnone img{ display: block; height: auto; width: 99%; }
img.alignleft, .wp-caption.alignleft{ margin-right: 30px; }
img.alignright, .wp-caption.alignright{ margin-left: 30px; float: right;}
img.wp-caption .alignnone { display: block; margin: 0 auto; height: auto; width: 100%; }
.wp-caption .wp-caption-text, .gallery-caption, .entry-caption{
  clear: left;
    font-style: italic;
    line-height: 1.5em;
    margin: 0.75em 0;
    text-align: center;
}
.wp-caption.alignright { margin: 5px 0 20px 20px;}
.wp-caption p.wp-caption-text { 
  font-size: 14px;
  margin: 12px 0;
  text-align: center;
  font-style: italic;
  line-height: 1.5em;
}
.wp-caption.alignleft { margin: 5px 20px 20px 0;}
.gallery .gallery-icon img { 
  height: auto;
  max-width: 90%;
  padding: 0;
  border: 1px solid #fff !important;
  -moz-box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
  -webkit-box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
  box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
}

.gallery-item .gallery-caption, .hc_service_column .gallery-item .gallery-caption {
  font-size: 14px;
  margin: 12px 0;
  text-align: center;
  font-style: italic;
  line-height: 1.5em;
}
a img.alignright { float: right; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; }
a img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
@media screen and (min-width: 30rem){
  img.alignleft { float: left; margin-right: 20px; }
}
.alignleft { display: inline; float: left; margin-right: 20px; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; }
fieldset {
    margin-bottom: 1rem;
    border: 1px solid #e9e9e9;
    margin: 0 2px;
    padding: 0.35rem 0.950rem 0.75rem;
}
fieldset p { margin: 0px 0 20px; }
legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.500rem;
  color: #0f0f16;
  font-weight: 600;
  display: table;
  max-width: 100%;
  border-bottom: none;
  width: auto;
  padding: 0;
  white-space: normal;
}
/*--------------------------------------------------------------
2.0 Forms
--------------------------------------------------------------*/

label { color: #21202e;display: block;font-weight: 500;margin-bottom: 0.5em;font-size: 1rem; }
fieldset { margin-bottom: 1em; }
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #0a0a0a;
  background: transparent;
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  display: block;
  padding: 1em;
  width: 100%;
}
.slider-caption.yes .wpcf7 input[type="text"],
.slider-caption.yes .wpcf7 input[type="email"],
.slider-caption.yes .wpcf7 input[type="url"],
.slider-caption.yes .wpcf7 input[type="password"],
.slider-caption.yes .wpcf7 input[type="search"],
.slider-caption.yes .wpcf7 input[type="number"],
.slider-caption.yes .wpcf7 input[type="tel"],
.slider-caption.yes .wpcf7 input[type="range"],
.slider-caption.yes .wpcf7 input[type="date"],
.slider-caption.yes .wpcf7 input[type="month"],
.slider-caption.yes .wpcf7 input[type="week"],
.slider-caption.yes .wpcf7 input[type="time"],
.slider-caption.yes .wpcf7 input[type="datetime"],
.slider-caption.yes .wpcf7 input[type="datetime-local"],
.slider-caption.yes .wpcf7 input[type="color"],
.slider-caption.yes .wpcf7 textarea {
border: 1px solid #707070;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #0a0a0a;
  outline: unset;
}
select {
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  height: 3em;
  max-width: 100%;
}
input[type="radio"],
input[type="checkbox"] {
  margin-right: 0.5em;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
  font-weight: 400;
}
button,
input[type="button"],
input[type="submit"] {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 2.188rem;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
input + button,
input + input[type="button"],
input + input[type="submit"] {
  padding: 0.75em 2em;
}
button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
  background-color: #ffff;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #ffffff;
}
button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
  background-color: #ffff
}
form#commentform label {display: inline!important;}
/* Placeholder contact page text color */
.contact-info::-webkit-input-placeholder { color: #0a0a0a; }
.contact-info:-moz-placeholder { color: #0a0a0a; }
.contact-info::-moz-placeholder { color: #0a0a0a; }
.contact-info:-ms-input-placeholder { color: #0a0a0a; }
/* Placeholder comment form text color */
.comment-form::-webkit-input-placeholder { color: #0a0a0a; }
.comment-form:-moz-placeholder { color: #0a0a0a; }
.comment-form::-moz-placeholder { color: #0a0a0a; }
.comment-form:-ms-input-placeholder { color: #0a0a0a; }
/*===================================================================================
3.0 BUTTONS
===================================================================================*/

.btn-small {
    font-size: 1rem;
    padding: 0.688rem 1.75rem;
}
.btn-ex-small { min-width: 9rem; font-size: 1.000rem; padding: 0.563rem 2.188rem; }
.btn-small, .btn-ex-small {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    position: relative;
    letter-spacing: 0;
    border-radius: 0;
    text-align: center;
    transition: .3s;
    font-weight: 600;
}
.btn-default:focus,.btn-light:focus,.btn-border:focus{outline: 1px solid;box-shadow: unset;}
.btn-default { color: #fefefe; border-radius: 3px; }
.btn-default:hover,.btn-default:focus, .btn-default:active { background: #fefefe;  }

.btn-light { background: #ffffff;border-radius: 3px; }
.btn-light:hover,.btn-light:focus, .btn-light:active {color: #fefefe;}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    color: #ffffff;
    box-shadow: unset;
}
.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show>.btn-light.dropdown-toggle:focus {
    color: #ffffff;
    box-shadow: unset;
    }

.btn-default-dark {color: #fefefe; }
.btn-default-dark:hover,.btn-default-dark:focus, .btn-default-dark:active {background: #333333; color: #fff;}

.btn-border { background: #fefefe; color: #333333; border: 2px solid #22a2c4; }
.btn-border:hover, .btn-border:active {  border: 2px solid #22a2c4; }
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background: transparent;
  -webkit-text-fill-color: #0a0a0a;
  transition: background-color 5000s ease-in-out 0s;
}
/*--------------------------------------------------------------
4.0 Lists
--------------------------------------------------------------*/

ul, ol { margin: 0 0 1.5em 1.125em; padding: 0; }
ul { list-style: disc; }
ol { list-style: decimal; }
li > ul, li > ol { margin-bottom: 0; margin-left: 1.5em; }
dt { font-weight: 700; }
dd { margin: 0 1.5em 1.5em; }
/*ul, ol { font-weight: normal; margin: 20px 0 0; }
ul > li, ol > li { margin: 0; padding: 4px 0; }
ul, ol { padding: 0 0 0 20px; }*/

/*--------------------------------------------------------------
5.0 Tables
--------------------------------------------------------------*/

table { border-collapse: collapse; margin: 0 0 1.5em; width: 100%; word-wrap: break-word; }
thead th { border-bottom: 2px solid #bbb; padding-bottom: 0.5em; }
th { padding: 0.4em; text-align: left; }
tr { border-bottom: 1px solid #eee; }
td { padding: 0.4em; }
th:first-child, td:first-child { padding-left: 0; }
th:last-child, td:last-child { padding-right: 0; }

/*--------------------------------------------------------------
6.0 Links
--------------------------------------------------------------*/

a { color: #0a0a0a; text-decoration: none !important; transition: 0.3s;cursor: pointer; }


/*==================================================================================
7.0 HEADER CONTACT DETAILS
===================================================================================*/
.navbar-light h2{margin: 0; padding-bottom: 0;font-size: 2.250rem;}
.header-sidebar {
  padding: 0;
  min-height: 2.813rem;
}
.head-contact-info {
  padding: 0.438rem 0 0.438rem;
  margin: 0px;
  display: block;
  float: right;
}
.head-contact-info li {
  display: inline-block;
  margin: 0rem;
  /*padding-left: 0.625rem;*/
  color: #ffffff;
  font-size: 0.938rem;
  position: relative;
}
.header-sidebar .head-contact-info {padding-top: 6px;}
.header-sidebar .widget li:before{content: "";}
.header-sidebar .widget .head-contact-info li.phone::after
{
  content: "|";
  font-family: FontAwesome;
  color: #fff;
  position: relative;
  right: 0;
  margin-left: 10px;
  margin-right: 5px;
}
.header-sidebar .widget li .fa-phone{
  padding-left: 0;
}
.head-contact-info li:last-child { padding-right: 0; }
.head-contact-info li a { color: #ffffff; }
.head-contact-info li a:hover, .head-contact-info li a:focus { color: #0a0a0a;}
.head-contact-info i { padding-right: 0.625rem; padding-left: 0.063rem; }

@media (max-width: 991px) { 
  .header-sidebar { padding: 0.875rem 0; }
  .head-contact-info li { margin: 0 0 0.625rem; }
  .address-info { text-align: center; }
  .custom-social-icons li { padding: 0; }
  .head-contact-info { float: none; }
}
@media (max-width: 991px) { 
.header-sidebar .widget{text-align: center;}
.dropdown-menu {border:unset;}
.navbar .navbar-collapse  ul, .navbar.navbar-collapse  ol{
    margin: 1.5em 0em 1.5em 1.125em;
 }
}
.footer-sidebar ul {
    list-style: none;
    margin: 0;
}
@media (max-width: 500px) { 
  .head-contact-info li { display: block; padding-right: 0; }
  /*.head-contact-info li::after { display: none; }*/
  
}
/*===================================================================================
8.0 SOCIAL ICONS
/*===================================================================================*/

.custom-social-icons { margin: 0; padding: 0; }
@media (min-width: 991px){
.header-sidebar .widget .custom-social-icons{
    float: left;
    padding-right: 1.188rem;
}}
.widget .address-info i {
    padding-right: 0.625rem;
    padding-left: 0.063rem;
}
.custom-social-icons li { display: inline-block;padding: 0.438rem 0.1rem;}
.header-sidebar .custom-social-icons li{padding-left: 0;}
/*.custom-social-icons li > a:hover, 
.custom-social-icons li > a:before { display: none; }*/
.custom-social-icons li > a:hover, .custom-social-icons li > a:focus {
    background-color: #fff;
}
.custom-social-icons li > a {
    font-size: 0.838rem;
    line-height: 2.3;
    transition: all 0.3s;
    display: inline-block;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: none;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    height: 1.75rem;
    width: 1.75rem;
}

.contact .custom-social-icons li > a {
    background-color: #eeeeee;
    }

@media (max-width: 1200px){
.contact-form-map .row{
  margin-right: 0;
   margin-left: 0; 
}}
.custom-social-icons li a i { padding: 0; }
.widget em {
    font-style: normal;
    display: inline-block;
    margin: 0;
    color: #ffffff;
    font-size: 0.938rem;
    position: relative;
    padding: 0.413rem 0 0.313rem;
}
@media (min-width: 991px){
.widget em {
    float: right;
 }
}

/*===================================================================================*/
/*  Search Box Style
/*===================================================================================*/

/* 1. Search bar Fullwidth - hidden search field */
#searchbar_fullwidth {
  display: none;
  /* float: left; */
  float: none;
  width: 100%;
  height: 3.875rem;
  border-top: 1px solid #d8d8d8;
  padding-left: 9.375rem;
  padding-right: 9.375rem;
  z-index: 1;
  position: relative;
  background: #fff;
  -webkit-box-shadow: -1px 3px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: -1px 3px 2px rgba(0,0,0,0.3);
  box-shadow: -1px 3px 2px rgba(0,0,0,0.3);
}
#search_box_fullwidth {
    display: block;
    width: 88%;
    border: 0;
    outline: none;
    padding: 0;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #64646d;
}
#search_submit_fullwidth {
    display: block;
    float: right;
    margin: 0.563rem 0 0.563rem;
    font-size: 1.750rem;
    background: none;
    color: #202020;
    border: 0;
    outline: none;
    line-height: 1.5;
    cursor: pointer;
    padding: 0;
}


/* 2. Search Bar Fullscreen - hidden search field */

#searchbar_fullscreen {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0,0.95);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 1000;
}
#searchbar_fullscreen input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #64646d;
  background: rgba(0, 0, 0, 0);
  font-size: 3.125rem;
  font-weight: 400;
  text-align: center;
  border: 0px;
  margin: 0rem auto;
  margin-top: -3.188rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  outline: none;
}
@media (max-width: 991px){
#searchbar_fullscreen input[type="search"] {
    font-size: 2.125rem;
    margin-top: -1.25rem;
    }
}
#searchbar_fullscreen .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  margin-top: 5.813rem;
  margin-left: -2.813rem;
  border-radius: 2px;
  border: black;
  color: #ffffff;
  padding: 0.563rem 1.563rem;
  font-size: 0.938rem;
  font-weight: 400;
}
#searchbar_fullscreen .close {
  position: fixed;
  top: 0.938rem;
  right: 0.938rem;
  color: #fff;
  opacity: 1;
  padding: 0.625rem 1.063rem;
  font-size: 1.688rem;
}
#searchbar_fullscreen.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}
/*===================================================================================*/
/*  Search Box
/*===================================================================================*/
.nav-search{
    margin-right: 25px;
    display: inline-block;
    line-height: 16px;
    position: relative;
    top: 0px;
}
.nav .open> .search-icon, .nav .open> .search-icon:focus{
background-color: unset; 
    border-color: unset;
}    
.search-box-outer .dropdown-menu {
    top: 50px !important;
    left: auto !important;
    right: 0px;
    padding: 0px;
    width: 324px !important;
    margin: 0px !important;
    background-color: #fff !important;
    position: absolute;
}
@media (max-width:768px){
.search-box-outer .dropdown-menu {
    position: absolute;
    left: 0 !important;
    width:280px !important;}
  }
.search-box-outer .dropdown-menu > li {
    padding: 0.25rem 0.5rem;
    border: none;
    background: none;
}
.search-form {
    width: 100%;
}
.search-form label {
    width: 98%;
}
.search-form .screen-reader-text {
    display: none;
}
.search-panel .form-container {
   padding: 10px 0 2px 0;
}
.search-panel input[type="search"]{
  display: block;
  width: 100%;
  height: 40px;
  color: #0a0a0a;
  line-height: 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 7px 90px 7px 7px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: large;
}
.search-form input[type="submit"] {
  cursor: pointer;
  position: absolute;
  width: auto;
  transition: all .3s ease-in-out;
  color: #fff;
  font-weight: 600;
   height: 40px;
  left: auto;
  right: 8px;
  font-size: 15px;
  top: 13px;
  padding: 12px 25px;
}
.search-box-outer .dropdown-toggle::after {
  display:none;
}
.navbar-nav.sm-collapsible .search-box-outer .has-submenu {
  padding-right: 0;
}
.navbar.navbar-light .navbar-toggler {
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,.1);
}
 .search-box-outer a{  
    font-size: 16px;
    font-weight: 400;
    font-family: Montserrat;
    color:#fff;
     padding-right: 0 !important;
 }

.search-box-outer .bg-light { background-color:transparent !important;}
.search-box-outer .search-form input[type="submit"] {padding: 12px 20px;}
.search-box-outer .search-form input[type="submit"]:focus {outline: 1px solid black;}
.search-box-outer a i{ 
     padding-right: 3px;
  }

@media (min-width: 768px) and (max-width: 992px){
.search-box-outer .dropdown-menu {
    top: 35px;
 }
}
.search-box-outer .sub-arrow{display: none !important;}

/*===================================================================================
9.0 Woocommerce Header Cart
===================================================================================*/
.nav-search {
    margin-right: 0rem;
    display: inline-block;
    line-height: 1rem;
    position: relative;
    top: 0px;
    padding: 0 0.5rem 0 0;
}

.cart-header {
    position: relative;
    /*border-left: 1px dotted #ffffff;*/
    padding: 0 0 0 0.5rem;
    display: inline-block;
    margin-right: 1.5rem;
}
.five .cart-header{border-left: unset;}
.shop_exists .cart-header {border-left:unset;}
.cart-header > a.cart-icon {
    -wekbit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.3;
    color: #ffffff;
    padding: 0;
}
/*.navbar .nav .nav-item .cart-header > a:focus {color:#21202e;}*/
.cart-header > a.cart-total {
    font-size: 0.75rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    position: absolute;
    right: auto;
    top: -5px;
    padding: 1px;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -wekbit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width: 991px) {
  .cart-header {
    margin-top: 0.938rem;
    margin-bottom: 0.938rem;
  }
}
.woocommerce img.custom-logo, .woocommerce-page img.custom-logo {
    max-width: unset;
}
/*===================================================================================
10.0  Main Slider - Owl Carousel
===================================================================================*/

.main-slider { position: relative; }
.bcslider-section .overlay,.video-slider .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
.bcslider-section .owl-theme .owl-dots {
    position: absolute;
    top: 87%;
    left: 0;
    right: 0;
    z-index: 1000;
}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}
#slider-carousel { margin: 0px; }
#slider-carousel .item {
    position: relative;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    z-index: 0;
    background-size: cover;
  height: 56rem !important;
}
.home-section {
    position: relative;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    z-index: 0;
    background-size: cover;
    height: 56rem !important;
}
.video-slider.home-section{overflow: hidden;height: 56rem!important;}
.video-slider #video_slider {
    position: absolute;
    bottom: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
}
.video-slider .hero-section {
    overflow: hidden;
}
.video-slider #slider-carousel {
    margin: 0px;
    position: relative;
    top: 0;
    background: transparent;
}
.video-slider #slider-carousel .item {background-color: transparent;}
.slider-caption { position: relative; display: table; height: 100%; z-index: 1; }
.slider-caption.yes { height: auto;left: 0;position: absolute;right: 0;z-index: 1;top: 55%;-webkit-transform: translateY(-50%); }
.caption-content { display: table-cell; vertical-align: middle;width: 60%;}
.caption-content .heading{margin-bottom:2.6rem;}
.slider-caption.yes .wpcf7-form label{color: #ffffff;}
.slider-caption .title {
    font-size: 3.125rem;
    line-height: 1.1;
    color: #fefefe;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, .4);
    margin: 0 0 1.500rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
}
.slider-caption .inner-title{
    display: block;
    width: 62%;
    color: #fff;
    position: relative;
    padding: 0 0 0 50px;
}
.slider-caption .btn-combo i{padding-left: 0.5rem;font-size: 0.813rem;}

.slider-caption .text-center .inner-title{margin: 0 auto;}
.slider-caption .text-right .inner-title{margin-left: auto;}
.slider-caption .inner-title:before {
    content: '';
    position: absolute;
    width: 10px;
    left: 0;
    bottom: 0;
    top:5px;
}  
.slider-caption .btn-default {
    margin-right: 0.938rem;
}
.slider-caption .description {color: #ffffff;margin: 0 0 2rem; text-shadow: 0px 4px 3px rgba(0, 0, 0, .4);}
.slider-caption .heading span{ 
    font-size: 1rem;
    font-weight: 600;
    color: #fefefe;
    border-radius: 10px;
    text-align: center;
    padding: 0.5rem 1.125rem;
    margin-bottom: 0.938rem; }   
.slider-caption .ptop-15 .btn-small { margin-left: 0.313rem; margin-right: 0.313rem; } 
@media only screen and (max-width: 600px) { 
  .slider-caption .title { font-size: 2.5rem; margin: 0 0 1.000rem; } 
  .slider-caption .inner-title{width: 75%;padding: 0 0 0 20px;}
  .slider-caption .ptop-15 { padding-top: 1.563rem; }
}
/*Slider Pointer*/
.pointer-scroll {
  background: #22a2c4;
  position: absolute;
  font-family: 'fontAwesome';
  content: '\f103';
  bottom: -33px;
  left: 0;
  right: 0;
  border: 2px solid #ffffff;
  color: #fff;
  z-index: 2;
  text-align: center;
  font-size: 1.700rem;
  line-height: 2;
  display: block;
  width: 4.125rem;
  height: 4.125rem;
  margin: 0px auto;
  border-radius: 50%;
  -webkit-animation: intro 2s;
  animation: intro 2s;
}
.pointer-scroll:hover, .pointer-scroll:focus { color: #fff; }
@media (max-width: 767px) {
  .pointer-scroll { bottom: -1.563rem; width: 3.125rem; height: 3.125rem; font-size: 1.350rem; }
}
.pointer-scroll .scroll { 
  -webkit-animation: finger 1s infinite;
  animation: finger 1s infinite;
}
@-webkit-keyframes intro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes intro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}


/*===================================================================================
11.0  OWL SLIDER NEXT - PREV BUTTONS
===================================================================================*/
.owl-carousel .owl-prev, .owl-carousel .owl-next{ 
  display: inline-block;
  background-color: rgba(33, 32, 46, 0.5);
  opacity: 0;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.3;
  padding: 0 !important;
  margin: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  border: none;
}
.owl-carousel .owl-prev { left: 1.875rem; }
.owl-carousel .owl-next { right: 1.875rem; }
.owl-carousel:hover .owl-prev { left: 10rem;opacity: 1; }
.owl-carousel:hover .owl-next { right: 10rem;opacity: 1; }
.owl-carousel .owl-next:focus { opacity: 1; }
.owl-carousel .owl-prev:focus { opacity: 1; }
@media (max-width:768px){
.owl-carousel:hover .owl-prev { left: 3rem;}
.owl-carousel:hover .owl-next { right: 3rem; }
}
.owl-carousel .owl-prev:hover, 
.owl-carousel .owl-prev:focus { 
  color: #fff;
}
.owl-carousel .owl-next:hover, 
.owl-carousel .owl-next:focus { 
  color: #fff;
}

/*===================================================================================
12.0  SECTION HEADER
===================================================================================*/
body.remove-banner .navbar{position: relative;} 
body.remove-banner.page-template-template-business .navbar{position: absolute;} 
body.remove-banner .navbar.stickymenu, body.remove-banner .navbar.shrink1,.seven.navbar.shrink1{position: fixed;} 
body.remove-banner.page-template-template-business-php #content {padding: 0;}
.navbar.navbar4 .nav .nav-item .nav-link {color: #000000;}
.navbar.seven .nav .nav-item.html , .navbar.seven .nav .nav-item.html a{color: #000000;}
.navbar4 .search-box-outer a, .navbar4 .cart-header > a.cart-icon {color: #000;}
.navbar4 .cart-header {border-left: 1px dotted #000000;}
.section-header { padding: 0; position: relative; text-align: center; }
.section-separator.border-center, .section-separator.border-center-two {
    margin-left: calc(50% - 50px);
}
.section-separator {
  position: relative;
    height: 4px;
    width: 50px;
    border-radius: 0;
    margin-bottom: 2rem;
}
.section-separator::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 20%;
    border-radius: 0;
    right: -28%;
    top: 0;
}
.section-separator::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 22%;
    border-radius: 0;
    right: -60%;
    top: 0;
}
.section-header {margin: 0 0 4.375rem;padding: 0;position: relative;}
.section-header .section-title {margin-bottom: 1rem;font-size: 2rem;}
.section-header .section-subtitle {font-size: 1.000rem;font-weight: 400;margin: 0 0 0.500rem; }
hr.divider { border-top: none; width: 4.375rem; height: 0.125rem; margin: 0.938rem auto 21px; }
.right-header .navbar-brand {
    margin-left: 1rem !important;
}
@media (min-width: 768px){
.full-header .navbar-nav {
    float: right;
 }
}
@media (max-width: 768px){
/*Toggle Button*/
.navbar-toggler:hover,
.navbar-toggler:focus {
  background-color: transparent;
}
.navbar-toggler {
    border-color: rgba(0,0,0,.1);
  }
}
/*Right header*/
.header-rgt {
    width: 100%;
    position: relative;
    vertical-align: middle;
}
.navbar .rgt .search-box-outer .dropdown-menu {left: 0px !important;}
.custom-logo-link-url{ margin-right: 1rem;}
.header-rgt .custom-logo-link-url, .header-rgt .navbar-brand {
    float: right;
    margin-left: 1rem;
    margin-right: 0rem; 
    padding: 0;
}
@media (min-width: 992px){
.navbar.nav-rgt .container {
    display: block;
}}
.custom-logo-link-url .site-title{
  margin: 0;
}
.header-rgt .navbar-toggler,.content-center .navbar-toggler{ 
margin-top: 15px;
}
.navbar .header-rgt .search-box-outer .dropdown-menu {
    left: 0 !important;
    right: auto;
  }
 /*Center header*/ 
  .content-center{
  text-align: center;
    width: 100%;
}
.auto{margin:0 auto;} 
.content-center .navbar-brand {
    text-align: center;
    float: none;
}
@media (max-width: 768px){
.content-center .header-module {
    text-align: left;
}}
/*===================================================================================
13.0  MIXED CLASS
===================================================================================*/
.section-space{padding: 6.5rem 0 4.938rem;position: relative;}

/*===================================================================================
14.0  SERVICE SECTION
===================================================================================*/
.services .card {    
    border-radius: 0;
    margin: 0;
    margin: 0 0 1.875rem;
    transition: 0.3s;
    background-color: #f5f5f5;
    border: 0;
}
.services .card-body {
    padding: 2.313rem 2rem 2rem;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);}
.services .service-icon i.fa { 
    font-size: 3.5rem;
    color: #777777;
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;}
.services .service-icon {
    margin:0 0 1.688rem; 
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    display: inline-block;
}
.services h4 a{margin:0 0 1.313rem;font-size:1.125rem; color:#0a0a0a;}
.services .description{
     margin: 0 0 1.313rem;
     transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;}
.services .btn-small{   
     transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding: 0;
    text-align: left;
    font-size: 0.75rem;
    font-weight: bold;}
.services .btn-small i {color:#0a0a0a;padding-left: 0.5rem;font-size: 0.875rem;font-weight: bold}
.services .card:hover{ color: #fff;-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1); }
.services .card:hover .service-icon i.fa,
.services .card:hover h4 a,.services .card:hover .description,
.services .card:hover .btn-small,.services .card:hover .btn-small i{color: #ffffff}

.services .col-md-4:nth-child(3n+1){ clear:left; }
@media (min-width: 768px) and (max-width: 992px) {
  .services .col-md-4:nth-child(3n+1) { clear: none; }
  .services .col-sm-6:nth-child(2n+1) { clear:left; } 
}

.services .post:hover .entry-header .entry-title a, .services .post:hover .entry-content p {
  color: #ffffff;
}
.services .btn-default-dark,.blog .btn-default-dark{
  padding: 0.688rem 2.5rem;
  border-radius: 3px;
}
.services .service-icon img {
  width: 4rem;
  height: 4rem;
}

/*===================================================================================
15.0  CTA SECTION 
===================================================================================*/
.cta{
    background-image: url(assets/images/cta.jpg);
    background-repeat: no-repeat;
    background-position: center left;
    width: 100%;
    background-size: cover;
    padding: /*7.5rem*/ 0;
}
.cta .overlay{
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding: 15px;
}
.cta .cta-btn i {
    padding-left: 0.5rem;
    font-size: 0.813rem;
}
@media (min-width:768px){.cta .overlay{padding: 5.313rem 6.25rem 6.25rem;}}
.cta p{margin-bottom: 2.5rem;}
.cta-btn{margin-top:1.313rem}
.cta .btn-default{margin-right:1.25rem;}
.cta .title{font-size: 2rem;margin-bottom: 1.75rem;}
@media (min-width:768px){.cta-block{padding:0 5rem}.cta .btn-default{margin-bottom:1.25rem;}}
@media (max-width:600px){.cta .btn-default{margin-bottom:1.25rem;margin-right: 0;}}

/*===================================================================================
16.0 TESTIMONIAL SECTION
===================================================================================*/
 .testimonial{
     height: 100%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    position: relative;}
/* .testimonial { 
        background: url(../images/bg/testimonial-bg.png) 0% 5% no-repeat;
    }*/
#testimonial-carousel1 .testmonial-block {
    background-color: transparent;
    position: relative;
    margin: 0;
    padding: 0 0.938rem 0rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;  
}

#testimonial-carousel1 .avatar {
    position: relative;
    margin-right: 100px;
}
.slideitem-1 #testimonial-carousel1 .avatar {flex: 0 0 350px;}
.slideitem-1 #testimonial-carousel1 .avatar {flex: 0 0 350px;}
.page-template-template-testimonial-1 .slideitem-2 #testimonial-carousel1 .avatar, 
.page-template-template-testimonial-1 .slideitem-3 #testimonial-carousel1 .avatar, 
.shortitem-2 #testimonial-carousel1 .avatar,
.shortitem-3 #testimonial-carousel1 .avatar{flex: 0 0 350px;} 
#testimonial-carousel1  .avatar {
    flex: 0 0 350px;
    }  
.testimonial.shortitem-2 #testimonial-carousel1  .avatar {
    flex: 0 0 18%;
    }    
.testimonial.shortitem-3 #testimonial-carousel1  .avatar, 
.testimonial.shortitem-4 #testimonial-carousel1  .avatar{
    flex: 0 0 15%;
    }    
#testimonial-carousel1 .avatar:before {
    content: "";
    width: 1px;
    height: 40%;
    display: block;
    position: absolute;
    right: -48px;
    top: 0;
  }
  #testimonial-carousel1 .quotes-seprator:before {
    content: "";
    width: 1px;
    height: 40%;
    display: block;
    position: absolute;
    right: -48px;
    bottom: 0;
  }
  #testimonial-carousel1 .avatar:after {
    content: "\f10e";
    font-family: 'fontAwesome';
    font-size: 40px;
    line-height: 50px;
    position: absolute;
    right: -85px;
    top: 50%;
    transform: translate(-50%,-50%);
}
#testimonial-carousel1 .avatar img {margin: 0.125rem; }

#testimonial-carousel .testmonial-block .entry-content,#testimonial-carousel1 .testmonial-block .entry-content {
    line-height: 26px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 60px;
    margin: auto 0;
}
#testimonial-carousel .testmonial-block .entry-content:before, #testimonial-carousel2 .testmonial-block .entry-content.quote:before {
    top: 0;
}
.testimonial:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    /*background-color: rgba(255, 255, 255, 0.85);*/
}
.testimonial .testmonial-block .name {
    margin-bottom: 1.5rem;
    display: inline-block;
}
@media (min-width: 600px){
.testimonial #testimonial-carousel .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 475px;
   }
}
@media (max-width:600px){#testimonial-carousel1 .testmonial-block {display: block;}
 #testimonial-carousel1 .testmonial-block .entry-content{padding-bottom:0;}
}
/*===================================================================================*/
/* 17.0 FUNFACT SECTION
/*===================================================================================*/

.funfact {
    background-repeat: no-repeat;
    background-position: center left;
    width: 100%;
    background-size: cover;
    padding: /*7.5rem*/ 0;
}
.funfact .overlay{
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding: 15px;
}
@media (min-width:768px){.funfact .overlay{padding: 9rem 6.25rem 8rem;}}
.funfact-inner { 
    cursor: pointer;
    padding: 0rem 0rem 0.625rem 3rem;
    border-left: 1px solid #ffffff;
    margin-bottom: 1rem; 
}
 .funfact-inner .count-up::after {
  content:"+";
}    
.funfact-title { margin-bottom: 7px; color: #ffffff; font-size: 3.75rem;}   
.funfact-inner .description { color: #fff; font-size: 1.125rem; margin: 0; }

/*--------------------------------------------------------------
18 Blog 
--------------------------------------------------------------*/
.blog .post {
    background: #fff;
    position: relative;
    transition: all 0.3s;
    margin-bottom: 3.125rem;
    border-radius: 0;
    background: #f5f5f5;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
  }
.blog .post .post-thumbnail {
    position: relative;
    overflow: hidden;
    margin: 0;
    text-align: center;
    background-color: #000;
    z-index: 1;
    border-radius: 0;
}
.blog .list-view .post-thumbnail {
    width: 22.25rem;
    height: auto;
    float: left;
} 
.blog .list-view .post {
    margin-bottom: 2rem;
  }
.blog .post-thumbnail img {
    -webkit-transition: all 0.30s linear;
    transition: all 0.30s linear;
    width: 100%;
    height: auto;
}
.blog-btn {
    margin-top: 1.313rem;
}
.blog .blog-btn .btn-small{min-width: 8.5rem;font-size: 1rem;padding: 0.688rem 1.75rem;color: #fff;}
.blog .blog-btn .btn-small i{color:#fff;}
.blog .post:hover{   -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);}

.blog .post:hover .post-thumbnail img {
    zoom: 1;
    filter: alpha(opacity=30);
    -webkit-opacity: 0.3;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    transform: scale(1.15,1.15);
    -webkit-transform: scale(1.15,1.15);
    -moz-transform: scale(1.15,1.15);
    -ms-transform: scale(1.15,1.15);
    -o-transform: scale(1.15,1.15);
}
/*--------------------------------------------------------------
18.1 Blog Post Content
--------------------------------------------------------------*/
  
  .post-content, .page .home-blog .post-content, .blog .page .post-content, .section-space.blog .post-content{
    padding: 1.25rem 1.5rem;
  }  
  .page .post-content {
    padding: 0;
  } 
  .entry-date {
 /*   height: 4rem;
    width: 4rem;
    padding-top: 0px;
    border-radius: 0;
    line-height: normal;
    position: absolute;
    margin-top: -5.25rem;
    z-index: 1;
    right: 0;
    margin-right: 0rem;*/
    padding-top: 0px;
    border-radius: 4px;
    line-height: normal;
    position: absolute;
    margin-top: -96px;
    z-index: 1;
    right: 0;
    margin-right: 0.625rem;
    padding: 10px 15px;
    width: fit-content;
  }
  .entry-date .date,.remove-image .date
  {
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.3;
  }
  .day {
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 1.375rem;
    font-weight: bold;
    padding-top: 0.75rem;
    line-height: 1;
    border-bottom: 1px dotted #fff;
    margin: 0 1rem;
    }
  .month {
    display: block;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    font-size: 0.875rem;
  }
  .remove-image{
/*    margin-bottom: 1.25rem;
    margin-top: 0;
    position: relative;*/
    width: fit-content;
    border-radius: 4px;
    line-height: normal;
    margin-bottom: 1.25rem;
    padding: 10px 15px;
  }
  .blog .list-view .entry-date {
    margin-top: -1.3rem;
    left: 0;
    margin-left: 0rem;
  }
  .entry-header h4{margin-bottom: 0;padding-bottom:1rem;font-size: 1.125rem;word-break: break-word;}
  .entry-content p{margin-bottom: 0;padding-bottom: 1rem; margin-top: 1px;}
  .entry-meta{margin-bottom: 0.75rem;}
  .entry-meta a{display: inline-block;}
  .home-blog .entry-meta a:hover, .home-blog .entry-meta a:focus, .home-blog .entry-meta span:hover {color: #000;}
  .blog .entry-meta a:hover, .blog .entry-meta a:focus, .blog .entry-meta span:hover {color: #000;}
  .entry-content p a {margin-bottom: 0;padding-bottom: 0;color: #727272;font-weight: bold;}
  
  .blog .btn-small{transition: 0.3s;padding: 0;text-align: left; font-size: 0.75rem;font-weight: bold;}
  .blog .btn-small i {color: #0a0a0a;padding-left: 0.5rem;font-size: 0.875rem;font-weight: bold;transition: 0.3s;}
  .entry-meta i {padding-right: 8px;color: #333333;transition: 0.3s;} 
  .entry-meta span{font-size: 0.875rem;padding-right: 0.5rem;color: #888888;transition: 0.3s;}
  .blog .content a:hover i , .blog .content a:hover span , .blog .content  a:focus i , .blog .content a:focus span {color: #0a0a0a;}
  .entry-meta a:last-child span{padding-right:0px;}
  @media (max-width: 768px) {
 .blog .list-view .post-thumbnail {
  width: 100%;
  float: none;
  }
  .blog .list-view .media {
  display: block;
  }
  .blog .list-view .entry-date {
  margin-top: 0.5rem;
  top: 0;
  left: unset;
  }
}

/*--------------------------------------------------------------
18.2 BLOG PAGINATION
--------------------------------------------------------------*/
.nav-pagination{padding: 3.125rem 0 0;}
.blog .nav-pagination {padding: 1.5rem 0 0;}
ul.pagination{padding: 0;margin: 0;}
.pagination .dots{padding: 0.87rem 0.3rem;
    font-weight: 600;color: #888888;}
.pagination .page-link {
    text-align: center;
    color: #888888;
    padding: 0.9rem 1rem;
    background-color: transparent;
    border-radius: 50%;
    border-color: #888888;
    margin: 5px;
    font-weight: 600;
    height: 50px;
    width: 50px;}
.pagination .page-link:active,.pagination .page-link:hover,.pagination .page-link:focus{color: #ffffff;}
.pagination li:first-child .page-link , .pagination li:last-child .page-link {border-radius: 50%;padding: 0.87rem 1.3rem;}
.pagination li .page-link .fa, .pagination li .page-link .fa{font-weight: 600; }
.page-item.disabled .page-link {color: #ffffff;}
 @media (max-width: 768px) {.pagination .page-link {height: 40px;width: 40px;}}
/*--------------------------------------------------------------
18.3 BLOG SIDEBAR
--------------------------------------------------------------*/

.sidebar .custom-social-icons li > a:hover ,.sidebar .custom-social-icons li > a:hover i{color: #fff;}
.sidebar .head-contact-info , .sidebar .widget em , .footer-sidebar .widget em{
    padding: 0;
    margin: 0px;
    float: none;
}
.sidebar .widget address i , .footer-sidebar .widget address i {padding-right: 0.625rem; padding-left: 0.063rem;}
.sidebar table , .sidebar address{margin: 0;}
.sidebar .right-sidebar {
    padding-left: 20px;
  }
  .sidebar .left-sidebar {
    padding-right : 20px;
  }
@media only screen and (max-width: 768px) {
  .sidebar .right-sidebar {
    padding-left: 0px;
  }
  .sidebar .left-sidebar {
    padding-right : 0px;
  }
}
.sidebar .widget {
  color: #333333;
  margin: 0 0 2.125rem;
}
.sidebar .widget:last-child {
    margin-bottom: 0.625rem;
}

.widget .widget-title {
  padding: 0rem 0rem 0.625rem;
  font-size: 1.25rem;
  font-weight:600;
  z-index: 1;
  position: relative;
  margin: 0;
}
.widget .input-group .form-control , .widget .search-field {
  font-size: 0.875rem;
  padding-left: 1.25rem; 
  padding-right: 1.875rem;
 background-color: #fff;
 color: #0a0a0a;
}
.widget .search-submit , .widget .search-field [type=submit] {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #0a0a0a;
  background: transparent;
  z-index: 3;
  display: block;
  transition: all 0.3s; 
  padding: 0;
  cursor: pointer;
  border: 0;
}
.woocommerce-widget-layered-nav li:first-child ,
.widget_recent_reviews li:first-child ,
.widget_top_rated_products li:first-child ,
.widget_products li:first-child ,
.widget_nav_menu li:first-child , 
.widget_pages li:first-child ,
.widget_product_categories li:first-child ,
.widget_links li:first-child ,
.widget_categories li:first-child ,
.widget_archive li:first-child ,
.widget_recent_entries li:first-child ,
.widget_meta li:first-child ,
.widget_recent_comments li:first-child {
  position: relative;   
  margin-top: 0;
  padding-top: 0 !important;
}
.woocommerce-widget-layered-nav ul ,
.widget_recent_reviews ul ,
.widget_top_rated_products ul ,
.widget_products ul ,
.widget_nav_menu ul , 
.widget_pages ul ,
.widget_product_categories ul ,
.widget_links ul ,
.widget_categories ul ,  
.widget_archive ul ,
.widget_recent_entries ul ,
.widget_meta ul ,
.widget_recent_comments ul {
  list-style: none;
  margin-left: 0;
  padding-top: 0;
  margin: 0;
}
.woocommerce-widget-layered-nav li ,
.widget_recent_reviews li ,
.widget_top_rated_products li ,
.widget_products  li ,
.widget_nav_menu li , 
.widget_pages li ,
.widget_product_categories li ,
.widget_categories li , 
.widget_archive li ,
.widget_recent_entries li ,
.widget_meta li ,
.widget_recent_comments li {
  padding-bottom: 0.5rem;
  margin: 0; 
  position: relative;
  padding-left: 0.938rem;
}
.woocommerce-widget-layered-nav li:last-child ,
.widget_recent_reviews li:last-child ,
.widget_top_rated_products li:last-child ,
.widget_products li:last-child ,
.widget_nav_menu li:last-child , 
.widget_pages li:last-child ,
.widget_product_categories li:last-child ,
.widget_links li:last-child ,
.widget_categories li:last-child ,
.widget_archive li:last-child ,
.widget_recent_entries li:last-child ,
.widget_meta li:last-child,
.widget_recent_comments li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar em ,.sidebar .head-contact-info li 
{color: #333333;font-size:0.875rem;display: inherit;}
.sidebar ul li a {font-size: 0.875rem;color: #0a0a0a;}

.widget .tagcloud a {
    background-color: transparent;
    font-size: 1rem !important;
    display: inline-block;
    padding: 5px 10px;
    color: #0a0a0a;
    margin: 0 0.125rem 0.625rem;
}
.widget .tagcloud a:hover{color: #fff !important;}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img, .woocommerce-page ul.product_list_widget li img {
    width: 60px !important;
    float: left;
    margin-left: 0;
    padding-left: 0px;
  }
  .widget select{
    margin: 0px 0px;
    width: 100%;
    padding: 6px 12px;
    height: 45px;
    border-radius: 2px;
    font-size: 0.875rem;
    border: 1px solid #e9e9e9;
    letter-spacing: 1px;
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333333;
    background: #fff;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 1px solid #e9e9e9;
    display: block;
  }
 .widget .post {
  position: relative;
  margin-bottom: 1.875rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.widget .post .post-thumbnail {
  margin: 0 10px 0 0;
  overflow: hidden;
  float: left;
  display: block;
  width: 4.5rem;
  height: 4.75rem;
  border-radius: 0;
  background-color: unset;
}
.widget .post .post-thumbnail .img-fluid{width:72px;height: 76px;}
.widget .post:hover {
  box-shadow: unset;
}
.widget .post .entry-date {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-right: 0.5rem;
  font-weight: 400;
  height: 0;
  width: 0;
  background: unset;
  padding-top: 0px;
  border-radius:0;
  line-height: normal;
  position: relative;
  margin-top: 0;
  right:0;
}
.widget .entry-title{margin: 0; font-size: 0.938rem;}
.widget .post:last-child{margin-bottom: 0;}
.widget .post:hover .post-thumbnail img {
    opacity: unset;
    transform:unset;
    -webkit-transform: unset;
}
.sidebar .tab-content{margin-top: 0; padding-top: 0;}
.widget_nav_menu li::before, .widget_pages li::before, .widget_product_categories li::before, .widget_links li::before, .widget_categories li::before, .widget_archive li::before, .widget_recent_entries li::before, .widget_meta li::before, .widget_recent_comments li::before {
    content: "\f101";
    font-family: FontAwesome;
    color: #0a0a0a;
   position: absolute;
   left: 0;
}
.footer-sidebar li::before{content: unset;}
.footer-sidebar #text-1{
  background-color: #ffffff;
    padding: 2.5rem 1.75rem;
    margin-top: -120px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
  }
  @media (max-width: 576px){
  .footer-sidebar #text-1 {
    margin-top: 0px;
   }}
 .footer-sidebar .widget_text p.description{color: #888888;margin-bottom: 2rem;} 
 .light .footer-sidebar blockquote p{color: #888888;}
 .footer-sidebar .widget_text address a, .footer-sidebar .widget_text address p{color: #888888;}
 /*--------------------------------------------------------------
19 Gallery
--------------------------------------------------------------*/
.widget.widget_media_gallery img
{
max-width: 100%;
height: auto; 
}
.gallery { display: flex; flex-flow: row wrap; justify-content: center; margin-bottom: 0; }
.gallery-item { display: inline-block; margin-right: 10px; margin-bottom: 10px; text-align: center; vertical-align: top; width: 100%; }
.gallery-columns-2 .gallery-item { max-width: calc((100% - 16px * 1) / 2) !important; }
.gallery-columns-2 .gallery-item:nth-of-type(2n+2) { margin-right: 0 !important; }
.gallery-columns-3 .gallery-item { max-width: calc((100% - 16px * 2) / 3) !important; }
.gallery-columns-3 .gallery-item:nth-of-type(3n+3) { margin-right: 0 !important; }
.gallery-columns-4 .gallery-item { max-width: calc((100% - 16px * 3) / 4) !important; }
.gallery-columns-4 .gallery-item:nth-of-type(4n+4) { margin-right: 0 !important; }
.gallery-columns-5 .gallery-item { max-width: calc((100% - 16px * 4) / 5) !important; }
.gallery-columns-5 .gallery-item:nth-of-type(5n+5) { margin-right: 0 !important; }
.gallery-columns-6 .gallery-item { max-width: calc((100% - 16px * 5) / 6) !important; }
.gallery-columns-6 .gallery-item:nth-of-type(6n+6) { margin-right: 0 !important; }
.gallery-columns-7 .gallery-item { max-width: calc((100% - 16px * 6) / 7) !important; }
.gallery-columns-7 .gallery-item:nth-of-type(7n+7) { margin-right: 0 !important; }
.gallery-columns-8 .gallery-item { max-width: calc((100% - 16px * 7) / 8) !important; }
.gallery-columns-8 .gallery-item:nth-of-type(8n+8) { margin-right: 0 !important; }
.gallery-columns-9 .gallery-item { max-width: calc((100% - 16px * 8) / 9) !important; }
.gallery-columns-9 .gallery-item:nth-of-type(9n+9) { margin-right: 0 !important; }
.gallery-item:last-of-type { padding-right: 0; }
.gallery-caption {
  display: block;
  font-size: 0.71111em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Poppins", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
}
.gallery-item > div > a {
  display: block;
  line-height: 1.5;
  box-shadow: 0 0 0 0 transparent;
}
.gallery-item > div > a:focus {
  box-shadow: 0 0 0 2px #0073aa;
}
.standard-view.blog-single .gallery-item > div > a:focus {
    box-shadow: none;
    outline: none;
}
.sidebar a span{transition: 0.3s;}
.sidebar a:hover span {color: #ffffff;}
/*===================================================================================*/
/* 20.0 TEAM SECTION
/*===================================================================================*/
.team .card {
    font-weight: 400;
    border: 0;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    min-height: 400px;
}
.team .card-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    -webkit-perspective: 800px;
    perspective: 800px;
    padding: 3px;
}
/*.rotate-btn {cursor: pointer;}*/
.team .card-wrapper .avatar {
    display: block;
    width: 120px;
    margin-top: -60px;
    overflow: hidden;
}
.team .team-grid .card-body .list-inline li > a {
    color: #888888;
    font-size:0.875rem;
}

 .team .team-grid .card-body .list-inline li > a:hover {
    background-color: unset;
}
.team .team-grid .card-body p {
    color: #878e94;
}
.team .team-grid .card-body .list-inline {
    position: relative;
    margin-top: 20px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.team .team-grid .card-body .list-inline {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 0;
    width: 100%;
    visibility: hidden;
}

.team .team-grid:hover .card-body .list-inline , .team .team-grid:focus-within .card-body .list-inline {
    margin-top: 0px;
    padding-bottom: 1.563rem;
}
.team .team-grid:hover .card-body .list-inline , .team .team-grid:focus-within .card-body .list-inline {
    opacity: 1;
    visibility: visible;
}
.abc{
    opacity: 1 !important;
    visibility: visible !important;
}
.team .team-grid .card-body { padding-bottom: 4rem;}
/*===================================================================================
21.0  SHOP AND PRODUCT SECTION
===================================================================================*/
.shop .container { overflow: hidden; }
.shop .owl-carousel .owl-stage-outer { overflow: visible; }
.products {
   background-color: transparent;
   padding: 0;
   margin-bottom: 0.313rem;
   transition: 0.3s;
   position: initial;
   text-align: center;
}
.woocommerce-result-count{color: #0a0a0a;}
.section-module.blog.woocommerce .page-title
{
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 1px solid #e9e9e9;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    border: 1px solid #e9e9e9;
}
.woocommerce a:focus{
  outline: none;
}
.woocommerce .comment-reply-title {
    border-bottom: none; 
}
.woocommerce  .form-row {
    display: block;
    }
.woocommerce ul.products li.product .onsale, .products span.onsale, .woocommerce span.onsale{
  min-width: auto;
    min-height: auto;
  right: inherit;
    color: #ffffff;
    border-radius: 0;
    font-size: 0.938rem;
    line-height: 1;
    font-weight: 500;
    padding: 3px 7px;
    margin: 0;
    position: absolute;
    left: 20px;
    top: 20px;
    transition: all 0.3s;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10); 
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    transition: all 0.6s;
    text-align: center;
    padding: 0.4rem 0.4rem 1.5rem;
    margin-bottom: 2rem;
}
.woocommerce ul.products li.product .button, .owl-item .item .cart .add_to_cart_button {
        color: #fff;
}
.woocommerce a.remove, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce ul.products li.product:hover .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce .return-to-shop a.button {
    color: #ffffff !important;
}
.woocommerce-page ul.products li.product:hover {
    box-shadow: 0 14px 25px 0 rgba(0,0,0,0.2);
}
.woocommerce ul.products li.product .price {
    display: block;
    color: #333333;
    font-size: 1.000rem;
    font-weight: 600;
    margin-bottom: .5em;
}
.woocommerce nav.woocommerce-pagination ul li {
    background: transparent;
    color: #333333;
    border-radius: 50%;
}
.woocommerce nav.woocommerce-pagination ul li a{
  color:#888888;
  border:1px solid #888888;
} 
.woocommerce nav.woocommerce-pagination ul li a.next{padding: 13px;}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    color: #ffffff;
}
.woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin:3px;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    cursor: pointer;
    display: inline-block;
    font-family: 'Open Sans', Sans-serif;
    font-weight: 600;
    transition: all 0.3s ease 0s;
    font-size: 1.125rem;
    border-radius: 50%;
    margin: 0px;
    padding: 15px;
    vertical-align: baseline;
    white-space: nowrap;
    width: 50px;
    height: 50px;
}
.woocommerce-loop-product__title {
    font-size: 1.125rem !important;
    text-transform: capitalize;
}

.woocommerce div.product form.cart .button, .woocommerce a.button, .woocommerce a.button:hover, .woocommerce a.button, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    border: 1px solid transparent !important;
}
.woocommerce-page .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus {
    box-shadow: none;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.woocommerce a.button,.woocommerce a.button:hover  {
    color: #fff;
}
.woocommerce-page .services .post{
    background-color: #ffffff;
    box-shadow: 0px 0px 0px 2px #e9e9e9;
    border-radius: 0;
    margin-bottom: 40px;
    padding: 30px 15px 25px;
    transition: all 0.4s ease 0s;
}
.woocommerce-page .services .post .entry-content {
    display: block;
    overflow: hidden;
    margin: 0px;
}
.woocommerce table.shop_table {
    border-radius: 0;
    margin: 0 -1px 40px 0;
    padding: 0;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 200px;
    padding: 6px 12px;
    border-radius: 0;
    height: 44px;
}
.woocommerce-cart .cart-collaterals .cart_totals tr th, .woocommerce-cart .cart-collaterals .cart_totals tr td {
    border-top: none;
}
.woocommerce #review_form #respond textarea, .woocommerce-cart table.cart td.actions .coupon .input-text {
    border: 1px solid #e9e9e9;
}

.woocommerce ul.products li.product .price del, .woocommerce ul.products li.product .price ins, .woocommerce div.product p.price ins, .woocommerce ul.products li.product .price, .woocommerce .variations td.label, .woocommerce table.shop_table td, .woocommerce-cart .cart-collaterals .cart_totals table td, .woocommerce .woocommerce-ordering select, .woocommerce-cart table.cart td.actions .coupon .input-text, .select2-container .select2-choice {
    color: #64646d;
}
.woocommerce .wc-bacs-bank-details-heading, .woocommerce .title h3 {
    font-size: 1.125rem !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    padding: .750rem 1.2rem;
    margin-bottom: 0;
    box-shadow: none;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 0.675rem 1.250rem 0.675rem 3rem;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background-color: #fbfbfb;
    box-shadow: 0 7px 3px -5px #e0e0e0;
}

.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce .posted_in a, .woocommerce-product-rating a, .woocommerce .tagged_as a, .woocommerce div.product form.cart .variations td.label label, .woocommerce #reviews #comments ol.commentlist li .meta strong, .woocommerce table.shop_table th, .woocommerce-cart table.cart td a, .owl-item .item .cart .add_to_cart_button, .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a, .woocommerce-error, .woocommerce-info, .woocommerce-message {
    color: #333333;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    left: 1rem;
}

.woocommerce {
    text-align: left;
}
.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 15px;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label, .wc_payment_method label, .woocommerce #review_form #respond p label {
    font-weight: 600;
    font-size: 0.938rem;
}
.woocommerce form .form-row .required {
    text-decoration: none;
}
.woocommerce form .form-row input.input-text {
    border-radius: 0;
    height: 45px;
    padding: 6px 12px;
}
.dark .woocommerce form .form-row input.input-text, .dark .woocommerce form .form-row textarea{background: #000000;}
.woocommerce .col-1,.woocommerce .col-2 {
      max-width: 100% !important;
}
.woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text {
    padding: 6px 12px;
}
.woocommerce ul.products li.product .button, .woocommerce a.added_to_cart, .woocommerce div.product form.cart .button  {
    box-shadow: none;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 0px;
    padding: .600rem 0.7rem;
    transition: all 0.5s;
    margin-top: 0.7rem;
    height: auto;
    font-size: 0.9375rem;
}
.woocommerce div.product form.cart .single_add_to_cart_button.button:hover{color: #ffffff !important;}
.woocommerce a.added_to_cart {
    background: #333333;
    border: 1px solid #ffffff;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    border-radius: 0;
    padding: 6px 12px;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #e9e9e9;
}
.select2-container .select2-selection--single, .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

.woocommerce div.product p.price {
    text-align: left;
    font-weight: 600;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    font-size: 1.25rem;
}
.woocommerce div.product form.cart {
    margin-top: 2rem;
    padding: 0;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.woocommerce .quantity .qty {
    width: 3.5rem;
    text-align: left;
    height: 44px;
    padding: .500rem 0.7rem;
    border-radius: 0;
}
.woocommerce div.product form.cart .button {
    padding: .700rem 1.2rem;
    margin-top: 0;
}
.woocommerce .posted_in a, .woocommerce-product-rating a, .woocommerce .tagged_as a {
    transition: all 0.5s;
    font-weight: 600;
}
.woocommerce div.product .woocommerce-tabs .panel {
    box-shadow: none;
    padding: 1rem 1rem 1rem;
    border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs .panel {
    background: #fff;
    border: 1px solid #e9e9e9;
}
.woocommerce .related h2 {
    margin: 0 0 20px;
}
.woocommerce div.product div.summary {
    margin-bottom: 2em;
    padding: 0.4rem 0.9rem 1.5rem;
    background-color: #fff;
    border: 1px solid #e9e9e9;
}

.item-img { width: 100%; position: relative; }
.add-to-cart {
  position: absolute;
  bottom: 45%;
  left: 0;
  width: 100%;
  background: transparent padding-box content-box;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
  z-index: 0;

}
.products:hover .add-to-cart { opacity: 1; visibility: visible; transform: translateY(0); }
.add-to-cart a {
    background: #ffffff;
    display: inline-block;
    font-size: 1.125rem;
    padding: 8px 8px;
    color: #0a0a0a;
    font-weight: 600;
    border-radius: 0;
    width: 45px;
    height: 45px;
    margin: 3px;
    border:1px solid #ffffff;
}
@media (max-width:992px){
.add-to-cart a {
    padding: 15px 15px;
    }}
.added_to_cart.wc-forward
{
color: #fff;
}
.add-to-cart a:hover { background: transparent; }
.product-price { padding: 1.25rem 0 1.125rem; }
.product-price  .woocommerce-loop-product__title { font-size: 1.125rem; text-transform: capitalize; margin-bottom: 5px; }

.product-price .woocommerce-Price-amount { font-size: 1.000rem; font-weight: 600; }
.product-price del { padding-right: 5px; }
.product-price del, .product-price del > span { color: #c0c0c0 !important; }

.products .item-img {
    background-color: #000000;
}
.products:hover .item-img img {
    zoom: 1;
    filter: alpha(opacity=30);
    -webkit-opacity: 0.3;
    opacity: 0.3;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
/*===================================================================================
22.0  Sponsors Section
===================================================================================*/
 .logo-scroll {
    margin: 0px auto;
    display: block;
    border: 1px solid #cacaca;
}
.logo-scroll img {display: block;margin: 0 auto;padding: 1.5rem;}
.logo-scroll a {display: block;}

/*===================================================================================
22.0  CONTACT DEATIL SECTION
===================================================================================*/
.contact-detail {
    width: 100%;
}
.contact-area { margin: 0px; padding: 30px 0px; }
.contact-info .contact-icon { float: left; margin: 4px 25px 25px 0; padding: 0; }
.contact-icon i {
  font-size: 24px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.contact-info .section-header {
    margin: 0 0 2rem;}
.contact-icon address {
    margin: 0 0 1.5em;
    font-size: 0.938rem;
}
.cont-info address > i { margin-right: 7px;}
.contact-info .title{color:#0a0a0a;margin: 0 0 0.5rem;font-weight: 600;}
  .contant-form .wpcf7-form-control-wrap:after {
    font-family: 'FontAwesome';
    right: 30px;
    position: absolute;
    top: 12px;
  }
.contant-form .your-name:after , .comment-form .your-name:after{ content: "\f007";}
.contant-form .your-email:after , .comment-form .your-email:after{ content: "\f0e0";}
.contant-form .your-subject:after , .comment-form .your-subject:after{ content: "\f078";}
.contant-form .your-message:after , .comment-form .your-message:after{ content: "\f040";}
.contant-form .your-phone:after , .comment-form .your-phone:after{ content: "\f098";}
.contant-form input::placeholder,.contant-form textarea::placeholder{color:#888888;font-size:14px;}
.contant-form .wpcf7-form input,.contant-form .wpcf7-form textarea ,
.comment-form .comments-form input
{margin-bottom:2rem;padding-right: 2.5em; }
.contant-form .button-holder{margin:0 auto;}


/*===================================================================================
23.0  FOOTER SECTION site info
===================================================================================*/
.site-title-name{color: #ffffff;}
.layout5 .site-title-name,.index6 .site-title-name{color: #0a0a0a;}

p.site-description{color: #acacac;}
.site-info {
    background-color: rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 0.938rem;
    padding: 1.25rem 0;
}
/*.site-info .site-branding p{color:#fff;}*/
.site-privacy{text-align: right;}
@media (max-width:600px){
.site-info {text-align: center;}
.site-privacy {text-align: center;}
}
.section-space .owl-carousel:hover .owl-next{
    right: 2rem;
  }
.section-space .owl-carousel:hover .owl-prev {
   left:2rem;
  }
.section-space .owl-carousel .owl-prev,.section-space .owl-carousel .owl-next {
  top:30%;
}
.section-space.testimonial .owl-carousel .owl-prev,.section-space.testimonial .owl-carousel .owl-next {
  top:45%;
}
.section-space.shop .owl-carousel .owl-prev,.section-space.shop .owl-carousel .owl-next {
  top:30%;
}
.section-space.sponsors .owl-carousel .owl-prev,.section-space.sponsors .owl-carousel .owl-next {
  top:33%;
}

/*--------------------------------------------------------------
24 Breadcrumb
--------------------------------------------------------------*/
.page-title-section
{
    background: #17212c url('assets/images/breadcrumb/breadcrumb.jpg');
    background-attachment: scroll;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.page-title-section .page-title h1 
{ 
  text-align: center; 
  font-weight: bold;
  line-height: 1.3;
  font-size: 2rem;
   color: #fefefe;
   margin: 0 0 10px;
   word-break: break-word;
}
.page-breadcrumb li { display: inline-block; }
.page-breadcrumb 
{ 
  margin: 0; 
  padding: 0; 
  color: white;
  text-align:center;
  font-size: 1rem;
}
.page-breadcrumb li a, .page-breadcrumb a
{
  color: #fff;
  word-break: break-word;
}
.page-breadcrumb .icon::before
{ 
  font-size: 0.938rem;
  content: "/";
  font-family: FontAwesome;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  color: #fff;
}
.breadcrumb-overlay {
    height: 100%;
    position: relative;
    width: 100%;
    padding: 12.5rem 0 6.25rem;
    background-color: rgba(0,0,0,0.5);
  }
/*===================================================================================
25.0  ABOUT PAGE
===================================================================================*/
.page-section-space {
    padding: 6.25rem 0 4.375rem;
} 
.about-section .section-header {margin: 0px 0 2.375rem;}
.about-section  .about-block{padding:0 40px 0 0;}
  @media (max-width: 600px){
.about-section .about-block {
    padding-bottom:50px;
  }
}
  
.about-section .image-box .left-image {padding: 0 11.25rem 0 0;margin-top: -12.5rem;}
.about-section .image-box .right-image{padding: 0 0 0 11.25rem ;}
@media (max-width: 1200px){ 
  .about-section .image-box .left-image {
    padding: 0 9.25rem 0 0;
    margin-top: -9.5rem;
}
.about-section .image-box .right-image{padding: 0 0 0 9.25rem ;}
}  
.about-header{padding-left: 1.125rem;
    padding-bottom: 0.75rem;}

.about-title {
    margin-bottom: 1rem;
  }
.about-subtitle{margin-bottom: 0.75rem;}
.about-header .btn-small{ padding: 0.688rem 2.3rem;margin-top: 0.5rem;}
.about-header p{margin-bottom: 1rem;}
.about-header .btn-default:hover,.about-header  .btn-default:focus {
    background: #ffffff;
    color: #333333;
}
@media (min-width: 768px){
.about-page .cta-block {padding: 0 12rem;}
.about-page .cta .overlay {padding: 6.313rem 6.25rem 3.75rem;}
}
/*Slider Lightbox CSS*/
 .lightbox-cta {
  background-color: rgba(0, 0, 0, 0.8);
  overflow: scroll;
  position: fixed;
  display: none;
  z-index: 1;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 10000;
}
.lightbox-container {
  position: relative;
  max-width: 960px;
  margin: 7% auto;
  display: block;
  padding: 0 3%;
  height: auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .lightbox-container {
    margin-top: 10%;
  }
}
@media screen and (max-width: 414px) {
  .lightbox-container {
    margin-top: 13%;
  }
}
.lightbox-content {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  text-transform: uppercase;
  background: transparent;
  position: absolute;
  font-weight: 300;
  font-size: 12px;
  display: block;
  border: none;
  color: white;
  top: -30px;
  right: 3%;
  z-index: 10;
}
.lightbox-close:hover{
  background: none;
}
.video-container {
  padding-bottom: 56.25%;
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  height: 0;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
#cta-video {
    text-transform: uppercase;
    font-weight: 300;
    padding: 20px 25px;
    display: inline-block;
    font-size: 14px;
    margin: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.video-btn a:after {
    position: relative;
    top: 25%;
    left: 25%;
    margin: 0px 0 0 0px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    content: '';
    display: block;
}
.video-btn{margin-bottom: 1rem;}

/*===================================================================================
26.0  PORTFOLIO PAGE
===================================================================================*/
.md-pills .nav-link.active,.md-pills .nav-link:hover,.md-pills .nav-link:focus {
  color: #fff;
}
button.close {
    position: absolute;
    right: 0;
    z-index: 2;
    padding-right: 1rem;
    padding-top: .6rem;
  }
   .flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.tab-content {
   padding-top: 2.3rem;
}
.portfolio .md-pills .nav-link {
    padding: 0.625rem 2rem;
    border-radius: 3px;
    border:1px solid #e1e1e1;
  }
  .portfolio .md-pills .nav-item{margin: 0 0.813rem 0.813rem;}

.portfolio .tab-content .portfolio-thumbnail {
    background-color: #000000;
}

.portfolio .tab-content .portfolio-thumbnail {
    position: relative;
    overflow: hidden;
    margin: 0px 0 30px;
    width: 100%;
    text-align: left;
    border-radius: 3px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
} 
.portfolio .tab-content .portfolio-thumbnail:hover {  
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);}
/*.portfolio .tab-content .portfolio-thumbnail .entry-title a {
    color: #0a0a0a;
}*/
.portfolio .tab-content .portfolio-thumbnail:hover .entry-title a {color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail:hover h4 {color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail .entry-title{
   margin-bottom:0.313rem;
   padding-bottom: 0rem;
}
.portfolio .tab-content .portfolio-thumbnail::before, .portfolio .tab-content .portfolio-thumbnail::after {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    content: '';
    opacity: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    }
.portfolio .tab-content .portfolio-thumbnail figcaption {
   padding: 25px 30px;
   text-align: center;
   background-color:#ffffff;
   transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
   -ms-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
 }

.portfolio .tab-content .portfolio-thumbnail:hover figcaption p{color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail:hover figcaption p a{color: #ffffff;}
.portfolio .tab-content .portfolio-thumbnail:hover img, 
.portfolio .tab-content .portfolio-thumbnail:focus-within img {
    zoom: 1;
    filter: alpha(opacity=20);
    -webkit-opacity: 0.5;
    opacity: 0.5;
    -webkit-transition: opacity 0.60s, -webkit-transform 0.60s;
    transition: opacity 0.60s, transform 0.60s;
}
.portfolio .tab-content .portfolio-thumbnail:hover figcaption,
.portfolio .tab-content .portfolio-thumbnail:hover .entry-title,
.portfolio .tab-content .portfolio-thumbnail:hover p,
.portfolio .tab-content .portfolio-thumbnail:hover i,
.portfolio .tab-content .portfolio-thumbnail a:focus i {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    opacity: 1;
}
.portfolio .tab-content .portfolio-thumbnail i {
    background-color: transparent;
    border-radius: 5%;
    position: absolute;
    font-size: 2rem;
    line-height: 1.2;
    width: 2.5rem;
    height: 2.5rem;
    top: 34%;
    right: 44%;
    text-align: center;
    -webkit-transform: translateY(-55px);
    transform: translateY(-55px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-style: normal;
    z-index: 1;
    opacity: 0;
}
.page-template-template-portfolio-4-col-left-sidebar .portfolio .tab-content .portfolio-thumbnail i{top: 20%; right: 38%;}
.page-template-template-portfolio-4-col-right-sidebar .portfolio .tab-content .portfolio-thumbnail i,
.portfolio.port-4 .tab-content .portfolio-thumbnail i{top: 20%; right: 38%;}
.portfolio .tab-content .portfolio-thumbnail:hover::before, .portfolio .tab-content .portfolio-thumbnail:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.portfolio-btn {
    margin-top: 1.313rem;
}
.portfolio .portfolio-btn i {
    padding-left: 0.5rem;
    font-size: 0.813rem;
}
.portfolio button:hover{background:transparent;}
@media (min-width:600px){.portfolio .view img{height: 100%}}



@media (min-width: 600px) and (max-width: 1024px){
  .portfolio3 .tab-content .portfolio-thumbnail figcaption {padding: 0.75rem 1rem;}
  .portfolio3 .entry-header h4 {font-size: 0.875rem;}
  .portfolio3 p { font-size: 0.75rem;}
}
@media (max-width:600px){
  .portfolio4.right-col .sidebar, .portfolio3 .sidebar .right-sidebar{margin-top: 2rem;}
 .portfolio3 .sidebar .left-sidebar, .portfolio4 .sidebar .left-sidebar{margin-bottom: 2rem;}
}
@media (min-width:768px){
  .portfolio4 .tab-content .portfolio-thumbnail figcaption {padding: 0.75rem 0.625rem;}
  .portfolio4 .entry-header h4 {font-size: 0.75rem;}
  .portfolio4 p { font-size: 0.625rem;}
}
@media (min-width:1024px){
  .portfolio4 .tab-content .portfolio-thumbnail figcaption {padding: 0.75rem 1rem;}
  .portfolio4 .entry-header h4 {font-size: 0.875rem;}
  .portfolio4 p { font-size: 0.75rem;}
}
@media (min-width: 1200px) {
  .portfolio4 .tab-content .portfolio-thumbnail figcaption {padding: 1rem 1rem;}
  .portfolio4 .entry-header h4 {font-size: 1rem;}
  .portfolio4 p { font-size: 0.875rem;}
}
/*===================================================================================
27.0  Error 404 PAGE
===================================================================================*/
.error-page .title {font-size: 25rem; line-height:0.75; letter-spacing: 0.938rem; font-weight: 600; margin-bottom: 1.25rem; }
.error-page .sub-title {font-size: 2.25rem; letter-spacing: 0.2rem; margin-bottom: 0.938rem; }
.error-page p {font-size: 1.875rem;}
.error-page .btn-small { font-weight: 700; }
@media (max-width: 768px) { 
  .error-page { padding: 9rem 0 11.5rem; }
  .error-page .title { font-size: 15rem; }
}
@media (max-width: 600px){
.error-page .title {
    font-size: 10rem;
 }
}

/*===================================================================================
28.0  footer Sidebar SECTION 
===================================================================================*/
@media (min-width: 768px){
.s-l-space {
  padding-left: 0.625rem;
}
}
.footer-sidebar{padding: 4.5rem 0 2rem;}
.footer-sidebar .widget.widget_calendar{background-color: transparent; color: #FFFFFF;
  padding: 0 0 1.25rem;
  margin: 0 0 1.875rem;
}
.footer-sidebar .widget {
  color: #ffffff;
  padding: 0 0 1.25rem;
  margin: 0 0 1.875rem;
}
@media (max-width: 576px){
.footer-sidebar .widget {
  padding: 1.625rem 0 1.125rem;
}
  .blog .right-sidebar {
  padding-top: 1.875rem;
  }
}
footer{
position: relative;
z-index: 1;
}
.footer-sidebar .woocommerce div.product p.price, 
.footer-sidebar .woocommerce div.product span.price, 
.footer-sidebar .woocommerce .posted_in a, 
.footer-sidebar .woocommerce-product-rating a, 
.footer-sidebar .woocommerce .tagged_as a, 
.footer-sidebar .woocommerce div.product form.cart .variations td.label label, 
.footer-sidebar .woocommerce #reviews #comments ol.commentlist li .meta strong, 
.footer-sidebar .woocommerce table.shop_table th, 
.footer-sidebar .woocommerce-cart table.cart td a, 
.footer-sidebar .owl-item .item .cart .add_to_cart_button, 
.footer-sidebar .woocommerce ul.cart_list li a, 
.footer-sidebar .woocommerce ul.product_list_widget li a, 
.footer-sidebar .woocommerce-error, 
.footer-sidebar .woocommerce-info, 
.footer-sidebar .woocommerce-message {
    color: #ffffff;
}


.footer-sidebar .widget_text.site-info .custom-social-icons li > a{background-color: #eaeaea;}
.footer-sidebar .widget_text.site-info .custom-social-icons li > a:hover{color: #ffffff;}
.footer-sidebar a{color:#ffffff;transition: padding .5s;font-size: 0.938rem;}
.footer-sidebar a:hover,.footer-sidebar a:focus{color:#ffffff;font-weight: 600;}
.footer-sidebar .woocommerce-widget-layered-nav ul a:before,.footer-sidebar .widget_recent_reviews ul a:before,.footer-sidebar .widget_top_rated_products ul a:before,.footer-sidebar .widget_products ul a:before,.footer-sidebar .widget_nav_menu ul a:before,.footer-sidebar .widget_pages ul a:before,.footer-sidebar .widget_product_categories ul a:before,.footer-sidebar .widget_links ul a:before,.footer-sidebar .widget_categories ul a:before,.footer-sidebar .widget_archive ul a:before,.footer-sidebar .widget_recent_entries ul a:before,.footer-sidebar .widget_meta ul a:before,.footer-sidebar .widget_recent_comments ul a:before {
   content: "\f178"; 
   font-family: 'FontAwesome';
   font-size: 0.75rem;
   opacity: 0;
   position: relative;
   top: 0px;
   -webkit-transition: all .5s;
   -o-transition: all .5s;
   transition: all .5s;
   margin-right: -0.75rem;
}
.footer-sidebar .woocommerce-widget-layered-nav ul a:hover::before,.footer-sidebar .widget_recent_reviews ul a:hover::before,.footer-sidebar .widget_top_rated_products ul a:hover::before,.footer-sidebar .widget_products ul a:hover::before,.footer-sidebar .widget_nav_menu ul a:hover::before,.footer-sidebar .widget_pages ul a:hover::before,.footer-sidebar .widget_product_categories ul a:hover::before,.footer-sidebar .widget_links ul a:hover::before,.footer-sidebar .widget_categories ul a:hover::before,.footer-sidebar .widget_archive ul a:hover::before,.footer-sidebar .widget_recent_entries ul a:hover::before,.footer-sidebar .widget_meta ul a:hover::before,.footer-sidebar .widget_recent_comments ul a:hover::before {
   margin-right: 8px;
   opacity: 1;

}
.footer-sidebar address {
   margin: 0 0 2rem;
}
.footer-sidebar .footer-logo{margin-bottom: 1rem}
.footer-sidebar #text-1 .textwidget{margin-bottom: 1rem}
.footer-sidebar .widget .widget-title {
  padding-bottom: 0.5rem;
  margin: 0 0rem 1rem;
  color: #ffffff;
}

.header-sidebar .widget:last-child {
  margin: 0;
}
.head-contact-info li:first-child {    
  padding: 0;
}
.header-sidebar .widget {
  color: #ffffff;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.footer-sidebar .widget_text{
    font-size: 0.938rem;
    line-height: 2.35;
}
.footer-sidebar .widget_text.site-info{
  background-color: #ffffff;
  padding: 2.5rem 1.75rem;
  margin-top: -120px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.footer-sidebar .widget_text.site-info p{color:#888888;}
.footer-sidebar .widget_text.site-info.site-detail{
  background-color: unset;
  padding: unset;
  margin-top: unset;
  -webkit-box-shadow: unset;
}
.footer-sidebar .site-info.site-detail .footer-logo {
    margin-bottom: 1rem;
}
 .footer-sidebar .widget_text.site-info.site-detail .description {
    margin-bottom: 1rem;
}
.footer-sidebar .widget_text.site-info.site-detail p {
    margin-bottom: 0.5rem;
}
.site-info .text-center .subscribe-form {
    width: 250px;
    margin: auto;
}
.site-info .copyright-section{margin:0 0 2rem;color: #fff;}
.footer-sidebar address {
    margin: 0 0 1rem;
}
  .site-info.footer-sidebar {
    padding: 2rem 0 2rem;
    background-color: unset;
}

.footer-sidebar .widget_text p{
margin: 0;
color: #ffffff;
line-height: 1.6;
margin-bottom: 0.625rem;
}
@media (max-width: 576px){
.footer-sidebar .widget_archive li:before,.footer-sidebar  .widget_categories li:before,.footer-sidebar  .widget_links li:before,.footer-sidebar .widget_meta li:before,.footer-sidebar .widget_nav_menu li:before,.footer-sidebar .widget_pages li:before,.footer-sidebar .widget_recent_comments li:before,.footer-sidebar .widget_recent_entries li:before {
    padding-left: 7px;
} 
.footer-sidebar .widget_text.site-info {
   margin-top: 0px; 
}}
.footer-sidebar .widget li{
  border-bottom: none;
    padding-top: 0.313rem;
    padding-bottom: 0.313rem;
    position: relative;
}
/*.footer-sidebar .widget li:before{content: none;}*/
.footer-sidebar .widget .widget-title:after img{content: none;padding: 0}
.footer-sidebar .wp-block-calendar table {
    margin-bottom: 0;
}
.widget .wp-block-social-links li,.footer-sidebar .widget .wp-block-social-links li{padding:0;}
 .widget .wp-block-social-links li:before,.footer-sidebar .widget .wp-block-social-links li a:before{
    display:none;
}
.wp-block-social-links .wp-social-link a {font-size: 1.875rem;}

/*===================================================================================*/
/* 29.0 Page Scroll Up
/*===================================================================================*/
.scroll-up {
  position: fixed;
  display: none;
  bottom: 12px;
  right: 30px;
  z-index: 999;
}
.scroll-up a {
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  text-align: center;
  line-height: 2;
  border-radius: 3px;
  font-size: 1.25rem;
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}
/*===================================================================================*/
/*  30.0 Blog Single 
/*===================================================================================*/

/* Related Post */
.related-posts {margin:6rem 0 5rem;}
.related-posts .post-thumbnail{
    margin: 0 10px 0 0;
    overflow: hidden;
    float: left;
    display: block;
    border-radius: 0;
  }
.related-posts .post-thumbnail img{ width: 85px;height: 85px;}
.related-posts a:hover{color:#0a0a0a;}
.related-posts a:hover i{color:#0a0a0a;}
.related-posts .preview .post-thumbnail {margin: 0 20px 20px 0;}
.related-posts .next .post-thumbnail {margin: 0 0 20px 20px;}
.related-posts .entry-title a{color: #0a0a0a;font-size: 1rem;}
.related-posts .pre-post a{font-size: 0.875rem; }
.related-posts .next-post a{color:#.related-posts;font-size: 0.875rem; }
.related-posts .single-post .post-content{padding: 0;}
.related-posts .next{text-align: right;}
.related-posts .title{margin-bottom: 0; padding-top: 0.625rem;}

.related-posts .next .fa{margin-left: 0.625rem;}
.related-posts .preview .fa{margin-right: 0.625rem}  
@media (max-width: 768px) {
  .related-post .next{text-align: left;}
}
/* comment form */
.comment-form .comment-reply-title{padding-bottom: 0.938rem}
.comment-form .button-holder input{margin-top: 25px;margin-bottom:20px}
.comment-form .blog-form-group:after {
  font-family: 'FontAwesome';
  right: 50px;
  margin-top: -45px;
  position: absolute;
}
.comment-form  input::placeholder,.comment-form  textarea::placeholder{color:#888888;font-size:14px;}
.comment-form .blog-form-group-textarea:after {
  font-family: 'FontAwesome';
  right: 50px;
  margin-top: -115px;
  position: absolute;
}
@media (max-width: 768px) {
  .comment-form .blog-form-group:after {
  margin-top: -50px;
  }
  .comment-form .blog-form-group-textarea:after {
  margin-top: -85px;
  }
}

.site-info ul li:first-child {
    margin-left: 0px;
}
.footer-sidebar .widget_text p{padding-top: 0.25rem;}
.footer-sidebar .widget_text.site-info p{margin-bottom: 1rem;}
.footer-sidebar .widget_text.site-info .description{margin-bottom: 2rem;}
 .footer-sidebar .widget_text.site-info address i {
    color:#888888;
    font-size: 16px;
    padding-right: 1rem;
}
.footer-sidebar .widget_text.site-info a {color:#888888;}
.footer-sidebar .widget_text.site-info a:hover {font-weight: 400;}
/*===================================================================================*/
/*  31.0 Common classes
/*===================================================================================*/
.testimonial.testi .testmonial-block {
    background-color: transparent;
    border-left: none;
    position: relative;
    margin: 0;
    padding: 0 2.5rem 0rem;
    font-size: unset;
    border-left: none;
}
.testimonial.testi .testmonial-block .avatar, #testimonial-carousel3 .testmonial-block .avatar {
    margin: 0px auto 1.3rem;
    width: 9.4rem;
    height: 9.2rem;
}
.testimonial #testimonial-carousel3 .testmonial-block .name{
  font-size: 1.25rem;
    font-weight: 600;
    font-style: normal !important;
    margin: 0px 0 -0.188rem;
    display: block;
}
.testimonial #testimonial-carousel3 .testmonial-block .designation{
  font-size: 1.000rem;
    padding-top: 5px;} 
.testimonial.testi .testmonial-block .name {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: normal !important;
    margin: 0px 0 -0.188rem;
    display: block;
}
.testimonial.testi .testmonial-block .designation {
    font-size: 1.000rem;
    padding-top: 5px;
}
.testimonial.testi .rating {
  margin: 10px 0px;
  text-align: center;
}
.testimonial.testi-4 .testi-grid .rating{text-align: left;}
/*Team common classes*/
.team.team-common .team-grid .card-body .list-inline {
  visibility: unset;
  position: relative;
  opacity: 1;
}
.team.team-common .team-grid .card-body {
  padding-bottom: 0rem;
}
.team.team-common .team-grid:hover .card-body .list-inline { 
  border-bottom: unset;
  padding-bottom: 0;
}
.portfolio.right-col .tab-content .portfolio-thumbnail i,.portfolio.left-col .tab-content .portfolio-thumbnail i {
  top: 20%;
  right: 38%;
}
.portfolio.two-column .tab-content .portfolio-thumbnail i {
  top: 39%;
  right: 46%;
}
.portfolio.four-column .tab-content .portfolio-thumbnail i {
    top: 30%;
    right: 42%;  
}
/*/Variations common classes*/
/*===================================================================================*/
/*  SERVICE SECTION 2
/*===================================================================================*/
.services2 .post {
    position: relative;
    background:#fff;
    margin-bottom: 2rem;  
    padding:1.25rem 1.563rem;
    transition: 0.25s; 
   -webkit-transition: all 0.25s ease-in;
   -moz-transition: all 0.25s ease-in;
   transition: all 0.25s ease-in;  
}
.services2 .post::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    transition: .5s;
    z-index: 0;
}
.services2 .post:hover::before {
    width: 100%;
}
.services2 .post:hover .entry-content p {
    color: #fff;
  position:relative;
}

.services2 .post-thumbnail { 
    position: relative;
    text-align: left;
}
.services2 .post-thumbnail i.fa {  
    font-size: 2.25rem;  
    text-align: center;
}
.services2 .post:hover .post-thumbnail i.fa { 
    color: #fff;  
}
.services2 .post:hover{ 
    color: #fff; 
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}
.services2 .post:hover h4{color: #ffffff;}
.services2 .post .entry-header .entry-title a {transition: 0s; }
.services2 .entry-header .entry-title a:hover { color:#fff !important;}
.services2 .post:hover .entry-header .entry-title a {color:#fff; position: relative;}
.services2 .post-thumbnail img {
    width: 3rem;
    height: 3rem;
}
.services2 .entry-header{position: relative;}
/*===================================================================================*/
/*  SERVICE SECTION 3
/*===================================================================================*/
.services3 .post { margin: 0; padding: 0 1.25rem 3.438rem; transition: 0.3s;  }
.services3 .post-thumbnail { 
    position: relative;
    text-align: center;
    margin: 0 auto 1.550rem;
}
.services3 .post-thumbnail i.fa { 
  border-radius: 50%;
  color: #fff;
  width: 5rem;
  height: 5rem; 
  font-size: 2.25rem;
  line-height: 1.8;
  padding: 5px; 
  border: 4px solid #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.services3 .post:hover .post-thumbnail i.fa { 
  background: #f5f6fa;
  border: 4px solid #fff;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
.services3 .post-thumbnail img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 4px solid #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.services3 .post:hover .post-thumbnail img {
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
/*===================================================================================*/
/*  Testimonial SECTION 2
/*===================================================================================*/
#testimonial-carousel2 .avatar {
    display: inline-block;
    position: absolute;
    left: 20px;
}
#testimonial-carousel2 .testmonial-block {
    box-shadow: 5px 5px 6px rgba(255, 255, 255, 0.05);
    padding: 30px 30px 30px 190px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    position: relative;
}
#testimonial-carousel2 .testmonial-block .entry-content {
    margin: 0px 0 0.25rem;
}
#testimonial-carousel2 .testmonial-block .entry-content:before, #testimonial-carousel2 .testmonial-block .entry-content.quote:before {
    top: 0;
}

    .testimonial.testi-2 { 
        background: url(../images/bg/bg-img.jpg) 100% 50% no-repeat;
    }
   #testimonial-carousel2 .testmonial-block:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(-45deg);
    transform-origin: 80% -30% 0;
}
@media (max-width:768px){
#testimonial-carousel2 .testmonial-block {
    padding: 15px;
    margin: 0 15px 15px;
}
#testimonial-carousel2 .avatar {
     position: relative;
}
#testimonial-carousel2 .avatar {
    left: 0px;
}

#testimonial-carousel2  .testmonial-block .avatar {
    margin: 0 0px 1.75rem;
}
}
/*===================================================================================*/
/*  Team SECTION 2
/*===================================================================================*/

}
.team2 .team-grid .card-body p {
    color: #878e94;
}
.team2 .team-grid .img-holder img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.team2 .team-grid .img-holder::before {position:unset;}
.team2 .team-grid:hover .img-holder img{
transform: scale3d(0.9, 0.9, 1);
}
/*===================================================================================*/
/* Testimonial SECTION 3
/*===================================================================================*/
.testimonial.testi-3 { 
         background: url(../images/bg/bg-img.jpg) 100% 50% no-repeat;
}
#testimonial-carousel3 .testmonial-block {
    padding: 0 1rem 3.125rem 1rem;
    text-align: center;
}
.testi-3 .owl-theme .owl-dots {
    margin: 0rem 0rem 0rem;
}
#testimonial-carousel3 figcaption{padding-bottom: 0.5rem;}
#testimonial-carousel3 .testmonial-block .avatar {
    margin: 0px auto 1.75rem;
}
.testi-3:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    background-color: rgba(1, 7, 12, 0.8);
}
.testi-3 .entry-content:before, .testi-3 .entry-content.quote:before {
    opacity: 1;
    font-size: 1rem;
    top: 7px;
    left: -11px;
    right: auto;
}
#testimonial-carousel3 .testmonial-block .entry-content {
    margin: 0px 0 0.5rem;
}
@media (min-width: 992px){.testi-3 .entry-content:before, .testi-3 .entry-content.quote:before {left: -15px;}}
/*===================================================================================*/
/* Team SECTION 3
/*===================================================================================*/
.team3 .team-grid .img-holder img {
    max-width: 100%;
    border-radius: 50%;
    color: #fff;
    width: 12rem;
    height: 12rem;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.team3 .team-grid .card-body .list-inline li > a {
    color: #878e94;
}

.team3 .team-grid .position {
    color: #878e94;
}
.team3 .owl-carousel.owl-drag .owl-item{
background: #ffffff !important;
}
.team3 .team-grid {
    margin: 1px;
    padding-bottom: 0.75rem;
    padding-top: 2.25rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.team3 .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 3.25rem;
}
.team3 .team-grid .img-holder::before {position:unset;}
.team3 .team-grid:hover .img-holder img{
transform: scale3d(0.9, 0.9, 1);
}
.team3.team-common .team-grid .card-body {
    padding-bottom: 1.25rem;
}
/*===================================================================================*/
/*  SERVICE SECTION 4
/*===================================================================================*/
.services4 .post {
    margin-bottom: 3rem;
    padding: 1rem 1.125rem 1rem 4.25rem;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
    position: relative; 
}
.services4 .post:hover {
-webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}
.services4 .post-thumbnail { 
    position: absolute;
    left: 0;
    top: 0;
    text-align: left;
    padding: 1rem 0;
}
.services4 .post-thumbnail i.fa { 
    font-size: 2.5rem; 
    text-align: center;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}
.services4 .post:hover .post-thumbnail i.fa , .services4 .post:hover .post-thumbnail img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}
.services4.service_wrapper .entry-header {margin: 0 0 0.938rem;}
.services4 .post-thumbnail img {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}
/*===================================================================================*/
/* Testimonial SECTION 4
/*===================================================================================*/
.testimonial.testi-4 { 
         background: url(../images/bg/bg-img.jpg) 100% 50% no-repeat;
}
#testimonial-carousel4 .testmonial-block {
    box-shadow: 0px 0px 6px 2px rgba(255, 255, 255, 0.1);
    margin-bottom: 2px;
}
#testimonial-carousel4 .testmonial-block .entry-content:before,#testimonial-carousel4 .testmonial-block .entry-content.quote:before {
    font-size: 3.875rem;
    top: -18px;
}
#testimonial-carousel4 .testmonial-block .avatar {
    margin: 0px 0.987rem 0.75rem auto;
    display: inline-block;
    width: 4.563rem;
    height: 5.563rem;
}
#testimonial-carousel4 .testmonial-block .entry-content {
    margin: 0px 0 0.5rem;
}
#testimonial-carousel4 .testmonial-block figcaption{
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}
#testimonial-carousel4.owl-theme .owl-nav.disabled+.owl-dots {
    margin-bottom: 1.75rem;
    margin-top: 2rem;
}
/*===================================================================================*/
/*  Team SECTION 4
/*===================================================================================*/
.team4 .team-grid {
  background-color: #fff;
    margin: 2px auto;
    padding-bottom: 0px;
    margin: 0.125rem 0.125rem 1.75rem;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
}
.team4 .list-inline  > a {
    cursor: pointer;
}

@media (min-width: 768px){
 .team4 .avatar{width: 222px;
    height: auto;}
}
.team4 .overlay {
    position: relative;
    overflow: hidden;
}
.team4 .team-grid:hover .overlay::before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}
.team4 .overlay::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    opacity: 0;
    z-index: 6;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team4 .team-grid .img-holder::before {position:unset;}
.team4 .team-grid:hover .list-inline  {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: .2s;
}
.team4 .list-inline  li a {
    color: #061018;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team4 .list-inline {
    background: #ffffff;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 8px 20px;
    border-radius: 300px;
    z-index: 44;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.team4 .team-grid .list-inline .list-inline-item{
    margin-right: 0rem;
  }

 .team4.team-common .team-grid .card-body {
    padding-bottom: 1.25rem;
}
/*--------------------------------------------------------------
  Portfolio Gallery
--------------------------------------------------------------*/
.portfolio.portfolio-gallery .col-2,.portfolio.portfolio-gallery .col-3,
.portfolio.portfolio-gallery .col-4,.portfolio.portfolio-gallery .col-6,
.portfolio.portfolio-gallery .col-lg-2,.portfolio.portfolio-gallery .col-lg-3,
.portfolio.portfolio-gallery .col-lg-4:not(.portfolio.portfolio-gallery .sidebar),.portfolio.portfolio-gallery .col-lg-6,
.portfolio.portfolio-gallery .col-md-2,.portfolio.portfolio-gallery .col-md-3,
.portfolio.portfolio-gallery .col-md-4,.portfolio.portfolio-gallery .col-md-6,
.portfolio.portfolio-gallery .col-sm-2,.portfolio.portfolio-gallery .col-sm-3,
.portfolio.portfolio-gallery .col-sm-4,.portfolio.portfolio-gallery .col-sm-6{
    padding: 3px;
  }
  .portfolio.portfolio-gallery .modal-body .col-md-6, .portfolio.portfolio-gallery .modal-body .col-md-4,
.portfolio.portfolio-gallery .modal-body .col-md-3{
 padding-right: 1.25rem;  padding-left:1.25rem;
}

.portfolio.portfolio-gallery .tab-content .portfolio-thumbnail {
    margin: 0px;
    border-radius: 0;
  }
  .portfolio.portfolio-gallery .tab-content .portfolio-thumbnail i {
    right: 46%;
  }
/*--------------------------------------------------------------
32.0  Sticky Menu Classes
--------------------------------------------------------------*/
body .stickymenu{
 position: fixed;
 width: 100%;
 box-shadow: 0 1px 3px rgba(255,255,255,0.1);
 z-index: 999;
 transition: 0.3s;
 top: 0;
}
body .seven.stickymenu{
 transition: unset;
}
.stickymenu1{
 display: none;
 position: fixed !important;
 width: 100%;
 box-shadow: 0 1px 3px rgba(255,255,255,0.1);
 z-index: 999;
  top: 0;
}
@media (max-width: 600px){
body.admin-bar .navbar.stickymenu,body.admin-bar .navbar.stickymenu1, body.admin-bar .five.stickymenu, body.admin-bar .five.stickymenu1,body.admin-bar .six.stickymenu ,body.admin-bar .six.stickymenu1{
    top: 0;
}}
body.admin-bar .stickymenu,body.admin-bar .stickymenu1 {
    top: 32px;
}
.navbar.shrink{transition: 0.3s;}

.navbar.shrink1  {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: 100%;
  box-shadow: 0 1px 3px rgba(255,255,255,0.1);
  z-index: 999; 
  position: fixed;
  top: 0;
  transition: 0.3s;
}
.shrink1.five,.shrink1.six{
  width: 100%;
  box-shadow: 0 1px 3px rgba(255,255,255,0.1);
  z-index: 999; 
  position: fixed;
  top: 0;
  transition: 0.3s;
}

/*--------------------------------------------------------------
33.0  Footer Layout
--------------------------------------------------------------*/
.main-footer {
  background-color: #061018;
  margin: 0;
  padding: 0;
  position: relative;
  border-top: 0px solid #828282;
  background-image: url(../images/bg/bg-img.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
.main-footer .footer-overlay{   
  display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    z-index: 0;
    background-color: rgba(1, 7, 12, 0.50);
}
.site-info .footer-sidebar{
  padding: 0rem;
}
.site-info .footer-sidebar.text-center .widget .widget-title:after {
    margin: 0 auto;
}
@media (min-width: 1200px){
.site-info .footer-sidebar .right-info .widget .widget-title:after {
        right: 0;
        position: absolute;
    }
    .site-info .right-info .widget.wpblack_social_icon_widget,
    .site-info .right-info .nav-menu {
        text-align: right;
    }
    .site-info .right-info .widget .wp-block-social-links{
        float: right;
    }
    .site-info .right-info .widget.widget_block{
        text-align: initial;
    }
}
.site-info .copyright{padding-bottom: 1rem;} 

.site-info span a {font-weight: 600;color: #fff ;}
.site-info span a:hover , .site-info span a:focus {color: #0a0a0a}
.site-info span a:before{content: "\f004";font-family: FontAwesome;color: #cc0619;margin-right: 5px;font-size: medium;}
@media (max-width: 600px){
.site-info .footer-sidebar{
     text-align: unset; 
}
.site-info .footer-sidebar .widget .widget-title:after {
    margin: 0 auto;
}}
.site-info .footer-sidebar.text-center .widget .widget-title:after {
    margin: 0 auto;
}
.site-info .footer-sidebar .nav-menu li {
    display: inline-block;
    margin-right: 15px;
}

.subscribe-form{margin-bottom: 1rem;}
.subscribe-form p{color:#fff;}
.subscribe-form .btn-default {border-radius: 0px;}
.subscribe-form .input-group .form-control{padding: 1em 4em 0.75em 0.5em;z-index: 0;}
.subscribe-form  .btn-default:hover,.subscribe-form .btn-default:focus {color: #fff;}
.subscribe-form .input-group .input-group-btn{position: absolute;right: 0.26rem;top: 0.26rem;z-index: 1;}
/*===================================================================================
  CONTACT PAGE 1
===================================================================================*/
.contact.contact-1{position: relative;padding-bottom: 0rem;}
.contact .contact-form-map{margin: 0rem 0rem 4.375rem;}
.contact .contact-widget{
    text-align: center;
    transition: all .4s ease 0s;
    box-shadow: 0 0 0px 1px rgb(163, 163, 163,0.5);
    padding: 3.25rem 1.5rem 2.625rem;
    margin-bottom: 2rem;
  }
 .contact .contact-widget address, .contact-widget a {
    color: #727272;
}
.contact .contact-widget i {
    border-radius: 10%;
    display: block;
    font-size: 2.5rem;
    line-height: 1.7;
    height: 70px;
    box-shadow: 0 0 0px 1px rgba(163, 163, 163,0.5);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    transition: all .4s ease 0s;
    width: 70px;
    background: #fff;
  }
 .contact .contact-widget h4 {
    font-size: 1.25rem;
    margin: 1.563rem 0;
    text-align: center;
  }
   .contact .contact-widget address {
    font-size: 1rem;
    margin-bottom: 5px;
    text-align: center
  }
  .contact .contact-widget:hover{
    box-shadow: 0 0 10px 1px rgba(163, 163, 163,0.5);
  }
  @media (min-width: 768px){
    .contact1 .section-header,.contact2 .section-header,.contact3 .section-header {
      margin: 0rem 0rem 0.8rem;
    }
  }
.contact.contact-2{position: relative;padding-top: 0rem;}
.contact2 .contact-detail-area {
    padding: 3.25rem 0.5rem 2.625rem;
    margin-top: 2rem;
  }
.contact.contact-3{position: relative;padding-bottom: 0rem;}
.navbar-dark .navbar-nav .active>.nav-link{color:#000;}

/* new css */
.footer-sidebar .head-contact-info li a:hover, .footer-sidebar .head-contact-info li a:focus { color: #ffffff;}
.footer-sidebar .widget .tagcloud a {border-color: #ffffff;color: #ffffff;}
.footer-sidebar .widget .tagcloud a:hover {
    background-color: #fff;
    border-color: #ffffff;
}
.footer-layout2 .footer-sidebar .widget_text.site-info a ,
.footer-layout2 .footer-sidebar .widget_text.site-info p ,
.footer-layout3 .footer-sidebar .widget_text.site-info a ,
.footer-layout3 .footer-sidebar .widget_text.site-info p ,
.footer-layout3 .footer-sidebar .widget_text.site-info address i ,
.footer-layout2 .footer-sidebar .widget_text.site-info address i ,
.footer-layout4 .footer-sidebar .widget_text.site-info a ,
.footer-layout4 .footer-sidebar .widget_text.site-info p ,
.footer-layout4 .footer-sidebar .widget_text.site-info address i {
    color: #ffffff;
}
.footer-sidebar .widget .post .entry-date {color: #ffffff;}

.portfolio.portfolio-gallery .modal-body .col-md-6.py-5.pl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
    padding-top: 3rem !important;
}
.portfolio.portfolio-gallery .modal-body .col-md-6 {padding: unset !important;}

@media (min-width: 1200px) {
body.boxed .custom.header-sticky {
   width: 1210px;
  }
}

.btn-style-one {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  padding: 0.96rem 1rem 0.9rem;
  background-color: transparent;
  display: inline;
}
.btn-box {
  position: relative;
  display: inline-block;
  margin-right: 30px;
}
.btn-style-one:hover, .btn-style-one:focus {
  color: #ffffff;
}

.footer-layout4 .site-info {background-color: #21202e;}
.footer-layout4 .footer-sidebar .widget_text.site-info a:hover , 
.footer-layout4 .footer-sidebar .widget_text.site-info a:hover {
    color: #ffffff;
    font-weight: 600;
}
@media (max-width: 600px) {
  .footer-layout4 .site-info ,.footer-layout3 .site-info , .footer-layout2 .site-info{
    text-align: left;
  }
}


/*===================================================================================*/
/* 34.0 Slider Video Button , Background Video And Images
/*===================================================================================*/
.slider-image img {padding: 3px; background-color: #fff;}
.video-frame {   
  width: 100%;
  height: 100%;
}
.video-frame iframe {
  border: 0 none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#slider-video { border: 0.3rem solid #FFFFFF;}
#slider-video {
    text-transform: uppercase;
    font-weight: 300;
    padding: 0.813rem 1.125rem;
    display: inline-block;
    font-size: 0.813rem;
    margin: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.section-video .video-btn a:after {
    position: relative;
    top: 25%;
    left: 25%;
    margin: 0px 0 0 0px;
    width: 0;
    height: 0;
    border-top: 0.938rem solid transparent;
    border-bottom: 0.938rem solid transparent;
    content: '';
    display: block;
}
.section-video .video-btn a:after {border-left: 1.563rem solid #FFFFFF;}

.section-video {
  position: relative;
  width: 100%;
  height: 43rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-video .caption-content {
  z-index: 10;
  position: absolute;
  height: 40%;
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 1200px) {
  .section-video .caption-content {width: 72%;}
}

.video-slider-caption1 {
  position: absolute;
  display: contents;
  z-index: 1;
  width: 100%;
}
.video-slider-caption1 .video-btn {
  margin: 30px 0;
}
.slider-caption .image-slider-caption .inner-title ,
.slider-caption .video-slider-caption .inner-title {
  width: 100%;
}
.slider-video-btn {
  top: 50%;
  right: 15%;
  position: absolute;
}
.slider-video-btn a {
  font-size: 6rem;
  color: #fff !important;
}
.circle {
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 7.5rem;
  height: 7.5rem;
  right: -1.188rem;
  top: 1rem;
  position: absolute;
  opacity: 0;
  animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}
@keyframes scaleIn {
  from {
    transform: scale(.5, .5);
    opacity: .5;
  }
  to {
    transform: scale(2.5, 2.5);
    opacity: 0;
  }
}
.slider1 .caption-content {width: 100%;}

.slider-caption .text-right .inner-title {
  padding: 0 50px 0 0;
}
.slider-caption .text-right .inner-title:before {
  right: 0;
  left: auto;
}
a:hover .circle {animation-play-state: paused;}

/*--------------------------------------------------------------
header variation Layout3
--------------------------------------------------------------*/
.layout3.header-sidebar .bottom-header {
    padding: 1.35rem 0 0rem;
}
.layout3 .head-contact-info {
    padding: 0.438rem 0 0.438rem;
    margin: 0px;
    display: block;
    width: 100%;
}
.layout3 .contact-icon {
    margin: 0.2rem 0.625rem 0.625rem 0;
    padding: 0;
}
.layout3 .contact-icon i {
    font-size: 2.25rem;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.layout3 .head-contact-info i {
    padding-right: 0.625rem;
    padding-left: 0.063rem;
}
.layout3.header-sidebar address { margin: 0 0 1.5em; color: #333333;font-size:0.938rem;}
.layout3.navbar{background-color: #333333; padding: 0;}

@media (min-width: 991px){
  .layout3.header-sidebar .contact-widget { float: right; }
}
.layout3.navbar .nav .nav-item .nav-link,
.layout3.navbar .nav .nav-item .dropdown-item{
  color:#ffffff;
}
.layout3.navbar .options-box .nav-search a,
.layout3.navbar .options-box .cart-header > a.cart-icon{color: #ffffff;}
.layout3.navbar-brand{float: left;}
.layout3.navbar .nav .nav-item .dropdown-menu {
    color: #ffffff;
    background-color: #333333;
    border: 1px solid rgba(0,0,0,.15);
}

.layout2 a.text-dark:focus,.layout2 a.text-dark:hover,
.layout3 a.text-dark:focus,.layout3 a.text-dark:hover{
  color: #1cc9ed !important;
}

.layout2.navbar .options-box .nav-search a:hover,
.layout2.navbar .options-box .cart-header > a.cart-icon:hover,
.layout2.navbar .options-box .nav-search a:focus,
.layout2.navbar .options-box .cart-header > a.cart-icon:focus,
.layout3.navbar .options-box .nav-search a:hover,
.layout3.navbar .options-box .cart-header > a.cart-icon:hover,
.layout3.navbar .options-box .nav-search a:focus,
.layout3.navbar .options-box .cart-header > a.cart-icon:focus{
  color: #1cc9ed;
}

.layout3 .header-module { margin-right: 0;float: left;}
.layout3 .btn-box {
    position: relative;
    float: right;
    height: 3.5rem;
}

.layout3.header-sidebar {
    background: #ffffff;
}
.layout3 .btn-style-one { display: inline-block;}
.layout3 .navbar-toggler { margin: 13px 0;}
@media (max-width: 500px){
.layout3.header-sidebar { text-align: center;}
.layout3 .head-contact-info .contact-widget .media { display: block;}
.layout3 .navbar-brand {float: none;}
}
@media (max-width: 768px){
 .layout3 .options-box .btn-box {display: none;}
 .layout3.navbar {padding: 0 0.938rem 0 0.938rem;}
 .layout3 .options-box{margin-left: 1rem;}
}

@media (min-width: 800px) and (max-width: 1280px) {
.layout3 .btn-style-one{
    font-size: 0.8rem;
    line-height: 1.875rem;
    padding: 0.8rem 0.85rem 0.8rem;
  }
 .layout3.navbar .nav .nav-item .nav-link {font-size: 0.876rem;}
 .layout3.navbar .nav .nav-item { margin-right: 1rem;}
}


/*--------------------------------------------------------------
header variation Layout2
--------------------------------------------------------------*/
.layout2.header-sidebar { background: #333333;}
.layout2.navbar {
    background-color: transparent;
    position: absolute;
    z-index: 2; 
    left:0;
    right:0;  
    background-color: rgba(0,0,0,0.2);
    color: #ffffff; 
}
.layout2.navbar .nav .nav-item .nav-link,
.layout2.navbar .nav .nav-item .dropdown-item{
  color:#ffffff;
}

.layout2.navbar .options-box .nav-search a,
.layout2.navbar .options-box .cart-header > a.cart-icon{color: #ffffff;}
.layout2 .navbar-brand{float: left;}
.layout2.navbar .nav .nav-item .dropdown-menu {
    color: #ffffff;
    background-color: #333333;
    border: 1px solid rgba(0,0,0,.15);
}

.layout2 .options-box{align-content: right;}
.layout2 .header-module { margin-right: 0;float: left;}
.btn-style-two {
    position: relative;
    font-size: 1rem;
    line-height: 1.875rem;
    color: #FFFFFF;
    overflow: hidden;
    padding: 0.76rem 1.375rem  0.76rem;
    background-color: transparent;
    border:1px solid #FFFFFF;
    display: inline-block;
}
.btn-style-two:hover, .btn-style-two:focus{
   border: 1px solid #FFFFFF;
   background-color: #FFFFFF;
}
.layout2#searchbar_fullscreen,.layout3#searchbar_fullscreen { background-color: rgba(255, 255, 255,0.95);}
.layout2 .head-contact-info li a:hover, .layout2 .head-contact-info li a:focus {  color: #1cc9ed;}
.layout2 .btn-box {
    position: relative;
    float: right;
}
@media (min-width: 800px) and (max-width: 1280px) {
.layout2 .btn-style-two {
    font-size: 0.8rem;
    line-height: 1.875rem;
    padding: 0.6rem 0.85rem 0.6rem;
 }
 .layout2.navbar .nav .nav-item .nav-link {font-size: 0.876rem;}
 .layout2.navbar .nav .nav-item { margin-right: 1rem;}
}

@media only screen and (max-width: 768px){
.layout2 .btn-box {float: left; }
.layout2 .navbar-collapse {background-color: #333333;}
.layout2 .options-box{margin-left: 1rem;}
}

/*.layout2#slider-carousel .item { height: 40rem !important;}
.layout2 .slider-caption .title { margin-top: 60px;}*/



#slider-button {
  text-transform: uppercase;
  font-weight: 300;
  padding: 1.25rem 1.438rem;
  display: block;
  font-size: 0.813rem;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
#slider-button {
  border: 5px solid #FFFFFF;
}
.slider-video-btn a:after {
  position: relative;
  margin: 0px 0 0 0px;
  width: 0;
  left: 20%;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  content: '';
  display: block;
}
.slider-video-btn a:after {
  border-left: 25px solid #ffffff;
}
.circle {
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 8.85rem;
  height: 8.85rem;
  right: -1.9122rem;
  top: -1.92rem;
  position: absolute;
  opacity: 0;
  animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}

@media (max-width: 768px) {
  .circle {
    width: 10rem;
    height: 10rem;
    right: -2.12rem;
    top: -2.1rem;
  }
}
@media (max-width: 600px) {
  .slider-video-btn {
    bottom: 14%;
    left: 41%;
    top: unset;
    right: unset;
    position: absolute;
  }
  .slider-caption .text-right .inner-title {padding: 0 20px 0 0;}
}


.btn-light:focus , .btn-dark:focus , button:focus {
  outline: 1px solid;
}

.owl-carousel .owl-dots button,.owl-carousel .owl-dots input[type="button"],.owl-carousel .owl-dots input[type="submit"] {
  border: 0;
  -webkit-border-radius: unset;
  border-radius: unset;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: unset;
  font-size: unset;
  font-weight: unset;
  line-height: 1;
  padding: unset;
  text-shadow: unset;
  -webkit-transition: unset;
  transition: unset;
  background-color: unset;
}

.cta .video-btn a:hover,.cta .video-btn a:focus {
  outline: thin dotted;
  outline: 2px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}


.search-box-outer a.text-dark,
.search-box-outer a.text-dark:focus,

.search-box-outer a.bg-light{background-color: transparent !important;}


#slider-carousel .prev,#slider-carousel .next{background: transparent;padding: 0;font-size:unset;border: none;}
#slider-carousel .prev:hover,#slider-carousel .next:hover ,
#slider-carousel .prev:focus,#slider-carousel .next:focus 
{background: transparent;color: #fff;}
#slider-carousel .prev:focus,#slider-carousel .next:focus{outline: 0;background: transparent;}
#slider-carousel .show-next{right: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}
#slider-carousel .show-prev {left: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}
.bcslider-section .owl-theme .owl-dots:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.owl-theme .owl-dots .owl-dot {
  margin-bottom: 0px;
}

.owl-carousel .prev,.owl-carousel .next{background: transparent;padding: 0;font-size:unset;border: none;}
.owl-carousel .prev:hover,.owl-carousel .next:hover ,
.owl-carousel .prev:focus,.owl-carousel .next:focus 
{background: transparent;color: #fff;}
.owl-carousel .prev:focus,.owl-carousel .next:focus{outline: 0;background: transparent;}
.owl-carousel .show-next{right: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}
.owl-carousel .show-prev {left: 7rem !important;opacity: 1 !important;border: 1px solid #fff;}

/*--------------------------------------------------------------
header variation Layout4
--------------------------------------------------------------*/
.navbar.navbar4 {background-color: rgba(255, 255, 255, 1);}
.hp7.header-sidebar {border-bottom: 1px solid #000;}
.navbar4 .custom-logo-link-url .site-title a  , 
.navbar4 .custom-logo-link-url .site-description {color:  #000;}

@media (min-width: 992px) {
    .navbar4.navbar .navbar-nav .dropdown-menu {box-shadow: 0px 0px 5px 1px #ffffff30;}
    .navbar4 .header-lt {
        z-index: 999;
        position: initial;
        width: inherit;
    }
    .navbar4 .header-lt::before {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        width: 27.5vw;
        z-index: -2;
        display: block;
    }
    .navbar4 .header-lt::after {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        left: auto;
        right: auto;
        -webkit-transform-origin: bottom;
        -moz-transform-origin: bottom;
        -ms-transform-origin: bottom;
        -o-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: skew(-15deg);
        -moz-transform: skew(-15deg);
        -ms-transform: skew(-15deg);
        -o-transform: skew(-15deg);
        transform: skew(-15deg);
        z-index: -1;
        width: 17.475rem;
        display: block;
    }
    .navbar.navbar4 .header-lt .navbar-brand::after, .navbar4 .header-lt .custom-logo-link-url::after {
        left: auto;
        right: auto;
        width: 12px;
        top: 0;
        margin-left: 16rem;
        z-index: 100;
        bottom: 0;
        background-color: #000;
        display: block;
        position: absolute;
        content: '';
        -webkit-transform-origin: bottom;
        -moz-transform-origin: bottom;
        -ms-transform-origin: bottom;
        -o-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: skew(-15deg);
        -moz-transform: skew(-15deg);
        -ms-transform: skew(-15deg);
        -o-transform: skew(-15deg);
        transform: skew(-15deg);
    }
    .navbar4 .col-lg-4 {
        position: initial;
        display: table-header-group;
        z-index: 0;
    }
    .navbar4 .custom-logo-link-url .site-description {width: 250px;}
    .navbar4 .ml-auto {display: inline-flex;}
    .navbar4 .custom-logo-link-url {display: table-caption;}
    .navbar4 .header-lt {display: inline-block;}
}
@media (min-width:992px) and (max-width: 1200px) {
  .navbar4 .navbar-nav {margin-left: 80px !important;}
}
@media (max-width: 991px) {
  .navbar4 .header-lt {
      text-align: center;
      padding: 30px;
  }
  .navbar4 .navbar-toggler {
      display: block;
      margin: 30px auto 0;
  }
  .navbar4 .custom-logo-link-url {margin: 20px 0 0;}
  .navbar4 .navbar-collapse ul, .navbar4 .navbar-collapse ol {margin: 1.5em 0em 1.5em 0;}
}
/*--------------------------------------------------------------
header variation Layout5
--------------------------------------------------------------*/
.navbar5.navbar {position: relative; background-color: #000000;}
.navbar5 .navbar-toggler {
    float: none;
    margin: 0 auto;
}
.layout5 .search-box-outer a , .layout5 .cart-header > a.cart-icon {color: #000;}
.layout5 .cart-header > a.cart-icon {border-left: 1px dotted #000;padding: 0 0 0 20px}
.layout5 .search-box-outer .dropdown-menu { 
    transform: none !important;
    top: 30px !important;
    box-shadow: 0px 0px 5px 0px #00000040;
    left: auto !important;
    right: 0px;
}
.layout5.header-logo {padding: 10px 0;background: #fff;}
.five.stickymenu1 .layout5.header-logo {background: #fff;}
.six.stickymenu1 .navbar-header.index6{background: #fff;}
.layout5 .header-module {
    margin: 0px 0;
    display: inline-block;
    float: right;
}
.layout5 .nav-search {display: inline-block;}
.layout5 .cart-header {display: inline-block;}
.layout5 .btn-box {display: inline-block;}

@media (min-width: 991px) {
  .layout5 .header-module {padding: 20px 0 0px 0;}
  .navbar .nav .nav-item .nav-link {
      margin: 0.5rem 0;
  }
  .navbar5.navbar {padding-bottom: 0;padding-top: 0;}
}
@media (min-width: 768px) and (max-width: 991px) {
  .layout5 .header-module {float: right;margin: 12px 0 0;}
}
@media (min-width: 768px) {
  .layout5 .header-lt {float: left;}
  .layout5 .custom-logo-link-url {position: relative;display: inline-block;}
  .layout5 .navbar-brand {float: left;}
}
@media (max-width: 767px) {
  .layout5.header-logo {
    text-align: center;
    padding: 20px 0;
  }
  .layout5 .custom-logo-link-url {
    margin-bottom: 1.25rem;
    margin-right: 0;
  }
  .layout5 .btn-box {
    float: none;
    display: inline-block;
  }
  .layout5 .header-module {
    float: none;
  }
  .layout5 .header-lt {margin-bottom: 15px;}
  .layout5 .search-box-outer .dropdown-menu {
    top: 50px !important;
    left: -20px !important;
    right: auto;
    width: 19rem !important;
  }
}
@media (max-width: 991px) {
  .navbar5 .navbar-collapse ul, .navbar5 .navbar-collapse ol {
    margin: 1.5em 0em 1.5em 0em;
  }
}

/*--------------------------------------------------------------
header variation Layout6
--------------------------------------------------------------*/
.navbar.navbar6 {
    padding-top:0;
    padding-bottom: 0;
    background-color: rgba(10, 10, 10, 1);
    position: relative;
    width: 100%;
}
.navbar.navbar6 .nav .nav-item:hover .nav-link, .navbar.navbar6 .nav .nav-item .nav-link:focus {
    color: #fff;
}
.navbar.navbar6 .nav .nav-item.active .nav-link { border-radius: 0px;position: relative;}
.navbar.navbar6 .content-center { margin: 0px; }

/*@media (min-width: 1100px) {
  .navbar.navbar6 .navbar-nav > li > a {
    border-radius: 0px;
    padding-top:0;
    padding-bottom: 0;
  }
}*/
@media (min-width: 1200px) {
  .navbar.navbar6 .btn-style-one {
    line-height: 1.75;
    padding: 0.98rem 1rem 1.1rem;
  }
}
@media (min-width: 992px) {
  .navbar.navbar6 .nav .nav-item .nav-link {
    padding: 1rem 0.75rem;
    margin:0;
  }
  .navbar.navbar6 .nav .nav-item.menu-html a,.navbar.navbar6 .nav .nav-item.menu-html
  {
    padding: 1rem 0.75rem;
    margin:0;
  }
.navbar.navbar6 .navbar-nav > li.active > a:after {
    content: '';
    position: absolute;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
    display: block;
    top: 0;
    color: #ffffff;
    left: 50%;
  }
}
@media (max-width: 991px){
  .navbar.navbar6 { padding-bottom: 1rem; }
  .navbar6 .header-module {text-align: left;} 
}
@media (max-width: 1199px) {
  .navbar.navbar6 .nav .nav-item {
    margin-right: 0;
  }
}

/*------------------index 6 layout------------*/
.navbar-header.index6 {
    text-align: center;
    background-color: #fff;
    padding:17px 0 17px;
}
.navbar-header.index6 .navbar-brand {
 margin-right: 0;
 white-space: unset;
}
.index6 .custom-logo-link-url { padding: 5px 0;}
.index6 .custom-logo-link-url .site-title .site-title-name{ font-size: unset;}
.index6 .site-title { margin: 2px 0; line-height: 1.2;}
.navbar-header.index6 .custom-logo-link-url .site-title-name { padding: 2px 0 2px;}

/*===================================================================================*/
/*  SERVICE SECTION 4
/*===================================================================================*/
.services5 .post {
    margin-bottom: 2rem;
    padding: 1rem 1.125rem 1rem 5.55rem;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
    position: relative; 
}
.services5 .post:hover {
-webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}
.services5 .post-thumbnail { 
    position: absolute;
    left: 1.25rem;
    padding: 1.25rem 0;
    top: 0;
    text-align: left;
}
.services5 .post-thumbnail i.fa { 
    font-size: 2.5rem; 
    text-align: center;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}
.services5 .post:hover .post-thumbnail i.fa{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}
.services5.service_wrapper .entry-header {margin: 0 0 0.938rem;}
.services5 .post .entry-header .entry-title a{
    color: #ffffff
}
.services5 .post a i{ color: #ffffff; }
.services5 .post .entry-content p{ color: #ffffff; }
.services5 .post .post-thumbnail img {
    width: 55px;
    height: auto;
    padding: 0;
    transition: 0.3s;
}
@media (max-width: 768px){
  .services5 .post { padding-left: 6.55rem;}
}
.services5 .post:hover .post-thumbnail i.fa, .services5 .post:hover .post-thumbnail img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

@media (min-width: 1200px) {
  body.boxed .navbar4 .header-lt::before {
      width: 18vw;
  }
  body.boxed .custom.header-sticky, body.boxed .five.stickymenu, body.boxed .five.stickymenu1, body.boxed .six.stickymenu, body.boxed .six.stickymenu1, body.boxed .seven.stickymenu, body.boxed .seven.stickymenu1 {
      width: 1210px;
  }
}



/*===================================================================================*/
/*34.1 New Widget Slider 
/*===================================================================================*/
.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}


.widget.widget_calendar {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(0,0,0,0.5);
    padding: 1.875rem 1.563rem 2.5rem;
    color: #ffffff;
}
.sidebar .widget.widget_calendar {
    background-color: transparent;;
    color: #333;
}


.slider-caption.yes .widget li a, 
.slider-caption.yes .widget_archive li a, 
.slider-caption.yes .widget_categories li a, 
.slider-caption.yes .widget_links li a, 
.slider-caption.yes .widget_meta li a, 
.slider-caption.yes .widget_nav_menu li a, 
.slider-caption.yes .widget_pages li a, 
.slider-caption.yes .widget_recent_comments li a, 
.slider-caption.yes .widget_recent_entries li a {
    color: #ffffff;
}

.slide-widget .widget_text form label{margin-bottom: 1.5rem;}

.form-slider .widget {
    background-color: #ffffff;
    padding: 40px 30px 10px;
    border-radius: 7px;
    margin-left: 30px;
}
.slider-caption.yes .widget{padding: 40px 30px 10px;border-radius: 7px;margin-left: 30px;background-color: rgb(0 0 0 / 60%);}
.dark .form-slider .widget-title {
    color: #000000;
}
.bcslider-section .widget_text .widget-title {
    color: #000000;
}
.slide-widget input[type="text"],
.slide-widget input[type="email"],
.slide-widget input[type="url"],
.slide-widget input[type="password"],
.slide-widget input[type="search"],
.slide-widget input[type="number"],
.slide-widget input[type="tel"],
.slide-widget input[type="range"],
.slide-widget input[type="date"],
.slide-widget input[type="month"],
.slide-widget input[type="week"],
.slide-widget input[type="time"],
.slide-widget input[type="datetime"],
.slide-widget input[type="datetime-local"],
.slide-widget input[type="color"],
.slide-widget textarea {
    color: #0a0a0a;
    background: transparent;
    border: 1px solid #d5d5d5;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    display: block;
    padding: 10px;
    width: 100%;
}

.wp-block-embed iframe {
    max-width: 100%;
}

.slide-widget .slider-caption .inner-title {
    width: 100%;
}
.widget .wp-block-search .wp-block-search__button.has-icon {
    line-height: 0;
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #0a0a0a;
    background: transparent;
    z-index: 3;
    display: block;
    transition: all 0.3s;
    padding: 0;
    cursor: pointer;
    border: 0;
}
.sidebar .wp-block-search .wp-block-search__label,.sidebar .widget.widget_block h1,.sidebar .widget.widget_block h2,.sidebar .widget.widget_block h3,.sidebar .widget.widget_block h4,.sidebar .widget.widget_block h5,.sidebar .widget.widget_block h6{
    padding: 0rem 0rem 0.625rem;
    font-weight: 600;
    margin: 0;
    z-index: 1;
    position: relative;
}
.footer-sidebar .wp-block-search .wp-block-search__label,.footer-sidebar .widget.widget_block h1,.footer-sidebar .widget.widget_block h2,.footer-sidebar .widget.widget_block h3,.footer-sidebar .widget.widget_block h4,.footer-sidebar .widget.widget_block h5,.footer-sidebar .widget.widget_block h6{
    padding-bottom: 0.5rem;
    margin: 0 0rem 1rem;
    color: #ffffff;
}
.footer-sidebar .widget li {
    padding-left: 0;
}
.footer-sidebar .widget li:before {
    content: '';
}
.footer-sidebar .wp-block-calendar table caption,.footer-sidebar  .wp-block-calendar table tbody {
    color: #fff;
}
.footer-sidebar .wp-block-calendar tr #today{font-weight: 700;} 
.footer-sidebar .widget li a:before{
  content: "\f178";
    font-family: 'FontAwesome';
    font-size: 0.75rem;
    opacity: 0;
    position: relative;
    top: 0px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin-right: -0.75rem;
}
.footer-sidebar .widget li a:hover::before{
    margin-right: 8px;
    opacity: 1;
  }
 .footer-sidebar .widget .wp-block-tag-cloud a {
    border: 1px solid #fff;
}
.footer-sidebar .widget .wp-block-tag-cloud a {
  color: #fff;
} 
.footer-sidebar li.wp-block-latest-comments__comment a:before{display: none;}
.widget .wp-block-getwid-recent-posts footer {
     background-color: transparent; 
}
.wp-block-search .wp-block-search__label, .widget.widget_block h2{font-size:1.250rem;}
.widget .wp-block-search .wp-block-search__input {
    font-size: 0.875rem;
    padding-left: 1.25rem;
    padding-right: 1.875rem;
}
.site-footer .widget .wp-block-search .wp-block-search__input{background-color: #fff;}
.widget .wp-block-search__button {
    position: absolute;
    right: 1rem;
    margin-top: 9px;
    top: auto;
    background: transparent;
    z-index: 3;
    display: block;
    border: 0;
    padding: 0.625rem;
}
.page-template-template-blog-left-sidebar .widget .wp-block-search__button {right: 40px; }
.wp-block-group__inner-container .wp-block-search .wp-block-search__label,.wp-block-group__inner-container .wp-block-search .section-separator {display: none;}
.wp-block-search__input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80BDFF;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.widget .wpcf7 .wpcf7-textarea{
  height: 100px;
}
.widget li:before {
    content: "\f101";
    font-family: FontAwesome;
   position: absolute;
   left: 0;
}

.widget li{
    padding-bottom: 0.5rem;
    margin: 0;
    position: relative;
    padding-left: 0.938rem;
}
.widget .wp-block-gallery li{padding:0;}
.widget .wp-block-gallery li:before,.widget .custom-social-icons li:before{
    display:none;
}
.widget li:first-child,.footer-sidebar .widget li:first-child{
    padding-top:0;
}
.widget li:last-child,.footer-sidebar .widget li:last-child{
    padding-bottom: 0px;
    border-bottom: none;
}
.widget ul,.widget ol{
    list-style: none;
    margin-left: 0;
    padding-top: 0;
    margin: 0;
}
.wp-calendar-nav{text-align: left;}
.widget .wp-block-calendar table th {
    font-weight: 700;
    border-bottom: 2px solid #bbb;
    background:transparent;
}
.widget .wp-block-calendar tbody td,.widget .wp-block-calendar th {
    border: 0;
    padding: 0.4em;
    text-align: left;
}
.widget .wp-block-tag-cloud a{
    background-color: transparent;
    font-size: 1rem !important;
    display: inline-block;
    padding: 5px 10px;
    color: #0A0A0A;
    margin: 0 0.125rem 0.625rem;
}
.widget.widget_media_image .wp-block-image img{
    max-width: 100%;
    height: auto;
}
.wp-calendar-table #today{
    font-weight: 600;
}

.wp-block-latest-comments__comment-meta {
    background-color: transparent;
}
.sidebar .widget .widget_shopping_cart_content .woocommerce-mini-cart__buttons a:hover{color:#fff;}
.sidebar .widget.woocommerce .search-field {
    margin-bottom: 0.625rem;
  }
.widget.woocommerce.widget_products li img{margin-right:1.25rem; }  
.widget.woocommerce.widget_recently_viewed_products li img{margin-right:1.25rem; }
.woocommerce-mini-cart.cart_list.product_list_widget li img{margin-right:1.25rem; }   
.widget.woocommerce.widget_top_rated_products li img{margin-right:1.25rem; }
.slider-caption.yes .wp-block-calendar table tbody {color: #fff;}
.slider-caption.yes .widget_block h1, .slider-caption.yes .widget_block h2, .slider-caption.yes .widget_block h3,
.slider-caption.yes .widget_block h4,.slider-caption.yes .widget_block h5,.slider-caption.yes .widget_block h6{color: #fff;}
.slider-caption.yes .wp-calendar-table #today a{color: #6c757d;}
.slider-caption.yes .wp-calendar-nav-prev a {color: #fff;}



.navigation.pagination .nav-links .page-numbers, .navigation.pagination .nav-links a {
    border: 1px solid #e9e9e9;
    cursor: pointer;
    display: inline-block;
    line-height: 1.5;
    font-weight: 600;
    transition: all 0.3s ease 0s;
    font-size: 1.125rem;
    border-radius: 50px;
    margin: 0 0.125rem 0.625rem;
    padding: 0.625rem;
    vertical-align: baseline;
    white-space: nowrap;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-color: #888888;
    color: #888888;
}
.navigation.pagination .nav-links .page-numbers:focus, .navigation.pagination .nav-links a:focus{outline: 1px solid #000;color: #ffffff;}

.navigation.pagination .page-numbers:hover{color: #ffffff;}
.navigation.pagination .page-numbers.dots:hover {color: #000;}
a.page-numbers:focus {color: #ffffff;}
/*Boxed layout*/
@media (min-width: 1200px){
    body.boxed {
        width: 1210px;
        -webkit-box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
        box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
        margin: 30px auto;
        position: relative;
        background: url(assets/images/bg-pattern/bg-img1.png) repeat fixed;
    }
}

/*===================================================================================*/
/* 35.0 PRE LOADERS 
/*===================================================================================*/
@media (min-width: 1200px){
body.boxed div#preloader1 {
    width: 1210px;
}}
/* Loader 1 css */
div#preloader1 {
    margin: auto;
   position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999999;
    display: flex;
    align-content: center;
    justify-content: center;
}

.spiko-preloader-cube {
    top: 40%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    position: absolute;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.spiko-preloader-cube .spiko-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.spiko-preloader-cube .spiko-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}


.spiko-preloader-cube .spiko-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.spiko-preloader-cube .spiko-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.spiko-preloader-cube .spiko-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: hp-foldCubeAngle 2.4s infinite linear both;
    animation: hp-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.spiko-preloader-cube .spiko-cube2:before {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.spiko-preloader-cube .spiko-cube4:before {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.spiko-preloader-cube .spiko-cube3:before {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@keyframes hp-foldCubeAngle{0%,10%{-webkit-transform:perspective(140px) rotateX(-180deg);transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{-webkit-transform:perspective(140px) rotateX(0);transform:perspective(140px) rotateX(0);opacity:1}100%,90%{-webkit-transform:perspective(140px) rotateY(180deg);transform:perspective(140px) rotateY(180deg);opacity:0}}

/*===================================================================================*/
/* 35.1 PRE LOADERS 2
/*===================================================================================*/
#preloader2{
    margin: auto;
    position: fixed;
    z-index: 9999999;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
#preloader2 .square{
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 4px;
  animation-fill-mode: both;
    animation: motion 2.5s infinite cubic-bezier(0.89, 0.03, 0.06, 1.5);
}
.loader-2{
    position: fixed;
    top: 48%;
    left: 48%;
    width: 77px;
    height: 67px;
}
#preloader2 .path{
    height: 10px;
    width: 110px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}
#preloader2 .path > div{
    background: #444;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin: 0 15px;
    position: absolute;
    top: 0;
    left: 0;
    animation-fill-mode: both;
    animation: dynamic 5s infinite cubic-bezier(0.89, 0.03, 0.06, 1.5);
}
#preloader2 .path > div:nth-child(1){ left: 40px; }
#preloader2 .path > div:nth-child(2){ left: 80px; }
#preloader2 .path > div:nth-child(3){ left: 120px; }
#preloader2 .path > div:nth-child(4){ left: 160px; }
#preloader2 .path > div:nth-child(5){ left: 200px; }
#preloader2 .path > div:nth-child(6){ left: 240px; }
#preloader2 .path > div:nth-child(7){ left: 280px; }
@keyframes motion{
    50%{ transform: rotate(90deg); }
    100%{ transform: rotate(180deg); }
}
@keyframes dynamic{
    0%{ transform: translateX(-40px); }
    25%{ transform: translateX(-80px); }
    50%{ transform: translateX(-120px); }
    75%{ transform: translateX(-160px); }
    100%{ transform: translateX(-200px); }
}
/* End Of Loader 2 css */


/*===================================================================================*/
/* 35.2 PRE LOADERS 3
/*===================================================================================*/
#preloader3{
    width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    z-index: 1000;
}
    .loader{
    width: 15em;
    height: 15em;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    animation: hypnosis 5s infinite linear;
    top: 30%;
}
.loader div{
    font-size: 1.5em;
    width: 10em;
    height: 10em;
    border-radius: 50%;
    transform-origin: 5em 5em;

    position: relative;
}
.loader div span,
.loader div span:before,
.loader div span:after {
    border-top: .3em solid white;
    border-radius: 50%;
    position: absolute;
    left: .5;
    animation: color 10s infinite;
}
.loader div span{
    width: 9em;
    height: 9em;
    transform-origin: 5em 2.9em;
    top: 0em;
}
.loader div span:before,
.loader div span:after{
    content: "";
}
.loader div span:before{
    width: 8em;
    height: 8em;
    border: 0 solid white;
    border-width: 0 .3em 0 0;
    right: .1em;
    top: -.2em;
}
.loader div span:after{
    width: 6.5em;
    height: 6.5em;
    border: 0 solid white;
    border-width: 0 0 .3em 0;
    right: .4em;
    bottom: 1.2em;
}
.loader div span:nth-child(2){
    font-size: .6em;
    transform-origin: 8.3em 4.8em;
    transform: rotate(-90deg);
}
.loader div span:nth-child(3){
    font-size: .2em;
    transform-origin: 8em 8.7em;
    transform: rotate(180deg);
}
.loader div:nth-child(2),
.loader div:nth-child(3),
.loader div:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
}
.loader div:nth-child(3),
.loader div:nth-child(4){
    animation: hypnosis 4s linear infinite reverse;
}
.loader div:nth-child(2){ transform: rotate(90deg); }
.loader div:nth-child(3){ animation-delay: -2s; }
.loader div:nth-child(4){ animation-delay: -4s; }
.loader div:nth-child(2) span,
.loader div:nth-child(2) span:before,
.loader div:nth-child(2) span:after{
    border-color: skyblue;
    animation-delay: 2.5s;
}
.loader div:nth-child(3) span,
.loader div:nth-child(3) span:before,
.loader div:nth-child(3) span:after{
    border-color: crimson;
    animation-delay: 2s;
}
.loader div:nth-child(4) span,
.loader div:nth-child(4) span:before,
.loader div:nth-child(4) span:after{
    border-color: gold;
    animation-delay: .5s;
}
@keyframes hypnosis{
    100%{ transform: rotate(360deg); }
}
@keyframes color{
    10%{ border-color: #845EC2; }
    20%{ border-color: #FEF950; }
    30%{ border-color: #FF6F91; }
    40%{ border-color: #17A554; }
    50%{ border-color: #33A896; }
    60%{ border-color: #2247A9; }
    70%{ border-color: #E8353C; }
    80%{ border-color: #F3F3CC; }
    90%{ border-color: #4FFBDF; }
}
/* End Of Loader One css */

/*===================================================================================*/
/* 35.3 PRE LOADERS 4
/*===================================================================================*/
#preloader4{
width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    z-index: 1000;
}
.loader-4 
{ 
left: 45%;
top: 40%;
width: 100px;
height: 100px;
position: absolute;
}
.loader-4 .loader-inner-1,
.loader-4 .loader-inner-2,
.loader-4 .loader-inner-3,
.loader-4 .loader-inner-4

{
display: block;
width: 20px;
height: 20px;
border-radius: 20px;
position: absolute;

}
.loader-4 .loader-inner-1:before,
.loader-4 .loader-inner-2:before,
.loader-4 .loader-inner-3:before,
.loader-4 .loader-inner-4:before

{
content:"";
display: block;
width: 20px;
height: 20px;
border-radius: 20px;
position: absolute;
right: 0;
animation-name: loading-1;
animation-iteration-count: infinite;
animation-direction: normal;
animation-duration: 2s;

}

.loader-4 .loader-inner-1
{
top: 0;
left: 0;
transform: rotate(70deg);
}

.loader-4 .loader-inner-1:before
{
 background: #FCE6CF;
}

.loader-4 .loader-inner-2
{
top: 0;
right: 0;
transform: rotate(160deg);
}

.loader-4 .loader-inner-2:before
{
 background: #1E3C72;
}

.loader-4 .loader-inner-3
{
bottom: 0;
right: 0;
transform: rotate(-110deg);
}

.loader-4 .loader-inner-3:before
{
 background: #ffcf0e;
}

.loader-4 .loader-inner-4
{
bottom: 0;
left: 0;
transform: rotate(-20deg);
}

.loader-4 .loader-inner-4:before
{
 background: #ff2350;
}
@keyframes loading-1 
{
  0% 
  {
    width: 20px;
    right: 0;
  }
  
  30% 
  {
    width: 120px;
    right: -100px;
  }

  60% 
  {
    width: 20px;
    right: -100px;
  }

 }

.header_menu{
width: 100%;
height: 100px;
display: flex;
flex-direction: row;
align-items: center;
/*  border:1px solid red;*/
}
.logo{
width: 20%;
text-align: center;
}
.logo img{
height: 300px;
}
.menu_list{
width: 80%;
text-align: right;
padding-right: 50px;
}
.menu_list li{
display: inline-block;
text-transform: uppercase;
list-style: none;
letter-spacing: 2px;
padding-left: 50px;
}
.menu_list li a{
color:rgba(255, 255, 255, .8);
text-decoration: none;
}
.menu_list li a:hover{
color:orange;
}
.header_content{
text-transform: uppercase;
width: 100%;
height: 200px;
position: absolute;
top: 50%;
left: 50%;
color:rgba(255, 255, 255, .8);
transform: translate(-50%, -50%);
text-align: center;
/*  border:1px solid red;*/
}
.header_content h2{
margin-bottom: 50px;
font-size: 17px;
font-weight: 500;
letter-spacing: 0.3em;
}
.header_content h1{
margin-bottom: 50px;
font-size: 50px;
font-weight: 500;
letter-spacing: 0.7em;
}
.header_content button{
height: auto;
padding:8px 37px;
color:#fff;
font-size: 12px;
background-color: transparent;
margin-right: 20px;
}
.header_content button a{
text-transform: uppercase;
text-decoration: none;
color: white;
letter-spacing: 1px;
}
.header_content button:hover{
background-color: orange;
border:1px solid white;
}
/* End Of Loader Four css */

/*===================================================================================*/
/* 35.4 PRE LOADERS 5
/*===================================================================================*/
#preloader5{
   width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 1000;
}

.loader-5
{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-5 span
{
    position: absolute;
    width: 20px;
    height: 20px;
    background: #262626;
    animation: animates 4s infinite forwards ease-in-out;
}

.loader-5 span:nth-child(1)
{
    background: #00485f;
    left: -24px;
    top: -24px;
    animation-delay: 0.5s;
}
.loader-5 span:nth-child(2)
{
    background: #00deea;
    left: 0px;
    top: -24px;
    animation-delay: 1s;
}
.loader-5 span:nth-child(4)
{
    background: #00485f;
    left: -24px;
    top: 0px;
    animation-delay: 1.5s;
}
.loader-5 span:nth-child(3)
{
    background: #00deea;
    left: 0px;
    top: 0px;
    animation-delay: 2s;
}

@keyframes animates
{
    
    0%
    {
        transform: rotateY(0deg);    
    }
    20%
    {
        transform: rotateY(360deg);
    }
    40%
    {
        transform: rotateX(180deg);
    }
    60%
    {
        transform: rotateX(0deg);
    }
    80%
    {
        transform: rotateX(360deg);
    }
    100%
    {
        transform: rotateY(180deg);
    }
}
/* End Of Loader Five css */

/*===================================================================================*/
/* 35.5 PRE LOADERS 6
/*===================================================================================*/
#preloader6{
   width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    z-index: 1000;
}
.loader-6{
    width: 180px;
    height: 40px;
    position: relative;
    margin: 50px auto 0;
    top:40%;
}
.loader-6 .inner_loader{
    background: #db2651;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    animation: move-ball 1s infinite linear;
}
.loader-6 .inner_loader:nth-child(2){
    background: #1da1f2;
    animation-delay: -0.2s;
}
.loader-6 .inner_loader:nth-child(3){
    background: #1ba506;
    animation-delay: -0.4s;
}
.loader-6 .inner_loader:nth-child(4){
    background: #ec5f20;
    animation-delay: -0.6s;
}
.loader-6 .inner_loader:nth-child(5){
    background: #742cc0;
    animation-delay: -0.8s;
}
@keyframes move-ball{
    0%{
        box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1.1);
        transform: translatey(0) scale(1);
    }
    25%{
        box-shadow: 0px 38.5px 25px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1);
        transform: translatey(-17.5px) scale(0.75);
    }
    50%{
        box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(0.8);
        transform: translatey(0px) scale(0.5);
    }
    75%{
        box-shadow: 0px 3.5px 5px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1);
        transform: translatey(17.5px) scale(0.75);
    }
    100%{
        box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
        filter: brightness(1.1);
        transform: translatey(0) scale(1);
    }
}
/* End Of Loader Six css */

@media (min-width: 1200px){
body.boxed div#preloader { width: 1210px; }}
.spiko_header_btn{position: relative;display: inline-block;margin-right: 30px;margin-left: 30px; padding: 0.96rem 1rem 0.9rem;}

/*===================================================================================*/
/* 36 Others
/*===================================================================================*/

@media (min-width: 1100px){
.container-fluid.streached {
    padding: 0;
}}

.services .card:hover h4{color: #ffffff;}
.wpcf7-form-control-wrap {
    position: initial;
}
@media (min-width: 992px){
.navbar .nav .html {
    padding: .9rem 0rem;
}}
.woocommerce .product_cat-singles .cart .single_add_to_cart_button:hover{color: #FFFFFF !important;}
.panel-outer .search-form input[type="submit"]:hover , .panel-outer .search-form input[type="submit"]:focus {
    color: #FFFFFF;
}
.woocommerce .products .star-rating {display: inline-block;}
.taxonomy-list a{color: #888888;}
.nav-item .widget a{color: #CAC1C1;}
.dark .testimonial::before {
    background-color: rgba(0, 0, 0, 0.8);
}
.team-grid-col{margin-bottom: 30px;}
.section-space.shop.woocommerce .page-title {display: none;}

.slider-caption.yes .wpcf7 textarea::placeholder,.slider-caption.yes .wpcf7 input::placeholder{
  color:#888888;
}
.slider-caption.yes .wpcf7 textarea,.slider-caption.yes .wpcf7 input{
  color:#fff;
}
.dark .sidebar .widget .wp-block-tag-cloud a:hover {
    color: #fff;
}
.section-space.portfolio, .section-space.blog {
    background-color: #fff;
}
body .woocommerce a.remove {
    color: red!important;
  }
  #testimonial-carousel4 .col-md-6 .testmonial-block {
    margin-bottom: 30px;
}
.blog .entry-content img{
  max-width: 100%;
    height: auto;}

@media (max-width: 768px){
  .navbar6 .search-box-outer .dropdown-menu,.hp3 .search-box-outer .dropdown-menu{
    left: -115px !important;
}}   
@media (max-width: 767px){
  .header-logo.layout5 .search-box-outer .dropdown-menu{left: -80px !important;}
}

@media screen and (max-width: 1100px) and (min-width: 768px){
  .loader-4,.loader-2 {
    top: 30%;
  }}
  @media (max-width: 767px){
  .loader-4,.loader-2 {
    left: 35%;
  }
}
.navbar6 .search-box-outer .dropdown-menu {
    top: 40px !important;
    }


/*Comments*/
.comment-section { 
  background-color: #ffffff; 
  margin: 0 0 3rem;
  padding: 1.25rem 0;
}
.comment-section {padding: 2.188rem 1.875rem 1.875rem;}
article.comment-form{padding: 1.25rem 0;}
.comment-title { display: block; }
.comment-reply-title {
    margin: 0 0 1.875rem;
    border-bottom: 1px solid #eceff3;
    padding-bottom: 0.625rem;
}
.comment-box { margin: 0; position: relative; }
.comment-detail {     
  border-bottom: 1px solid #eceff3;
  margin: 0 0 2.813rem;
  padding-bottom: 1.25rem; 
}
.pull-left-comment { float: left; margin-right: 1.875rem; width: 6.25rem; height: 6.25rem; }
.comment-detail-title { margin: 0 0 0.625rem; }
.comment-date { font-size: 0.875rem; color: #878e94; font-weight: 400; margin-left: 1.25rem; }
.comment-detail p { margin-bottom: 1.3rem;word-break: break-all; }
.reply a {
    font-size: 0.938rem;
    padding: 0;
    font-weight: 600;
    transition: 0.3s ease-in-out 0s;
    letter-spacing: 2px;
    margin: 0 2px;
    text-transform: uppercase;
}
.reply a:hover, .reply a:focus { color: #061018; }

@media (max-width: 767px){
.slider-caption.yes .widget.widget_block {
    margin-left: 0px;
    margin-top: 30px;
}}
@media (max-width: 767px){
#slider-carousel .item.yes{
height:80rem !important;
}}
.blog .post .entry-content a, .page .post .entry-content a, .page .about-content a, .page .about-section a, .comment-section .comment-detail a {
    text-decoration: underline!important;
}
.about-section a.btn-small{text-decoration: none !important;}
.blog .post .entry-content a.btn-small {
    text-decoration: none!important;
}
.sidebar .widget_block.widget_text a, .sidebar .widget.widget_block p a, blockquote p a, blockquote cite a {
    text-decoration: underline!important;
}
.sidebar .widget_block.widget a.tag-cloud-link, .site-footer .widget_block.widget a.tag-cloud-link{text-decoration: none !important;}
.site-footer .widget_block.widget_text a, .site-footer .widget.widget_block p a {
    text-decoration: underline!important;
}
.section-space .sticky.post {
    background-color: #7fe5833b;
}
.entry-content a.wp-block-button__link {
    color: #fff; 
}
.woocommerce-cart .entry-content a, .woocommerce-checkout .entry-content a, .woocommerce-account .entry-content a, .comment-section a.comment-reply-link, .woocommerce-account .page .post .entry-content a, .woocommerce-page .page .post .entry-content a {
    text-decoration: none!important;
}
.sidebar .widget.widget-block li:before, .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before, .wc-block-product-categories-list-item:before {
    font-family: FontAwesome;
    margin-right: 5px;
    margin-left: 1px;
    content: "\f101";
 }
.blog .standard-view article .entry-header {
    word-break: break-word;
}
.widget .wp-block-search__button {
    color: transparent;
}
.wp-block-search__button:after {
    content: "\f002";
    font-family: "FontAwesome";
}
button:focus {
    outline: 1px solid #000;
}
.wp-block-search__button:after {
    color: #0a0a0a;
}
.spiko.alert-warning{padding-top: 150px;padding-bottom: 70px;margin-bottom: 0;}
body .navbar-dark .navbar-brand:hover {
    color: transparent;
}
.home-blog .entry-date{margin-top: -75px;}
@media (max-width: 768px){
  button.navbar-toggler:focus {
    outline: 1px solid #ffffff;
}
}
img.custom-logo {
    width: 100%;
}

.wpcf7 form p {
    display: block;
    position: relative;
}
.contant-form p .wpcf7-form-control-wrap:after {
    top: 40px;
}
@media (max-width: 991px){
.spiko_header_btn {margin-left: 0; margin-right: 0;
}}
.seven.navbar{position: relative;}
.seven.navbar.stickymenu{position: fixed;}
body .woocommerce div.product .woocommerce-tabs ul.tabs li.active::before, body .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    box-shadow: unset;
}
.wp-block-latest-posts .wp-block-latest-posts__featured-image img {
    width: 72px;
    height: 76px;
    }
.wp-block-latest-posts .wp-block-latest-posts__featured-image {
    margin: 0 10px 0 0;
    overflow: hidden;
    float: left;
    display: block;
    width: 4.5rem;
    height: 4.75rem;
    border-radius: 0;
    background-color: unset;  
    }
.wp-block-latest-comments__comment-excerpt p{
    word-break: break-all;
}
.media-body {
    overflow: hidden;
}
.team4 .team-grid img{
  width:100%;
}
@media (min-width: 991px) {
  .shortitem-3 #testimonial-carousel2 .testmonial-block {
    padding: 15px;
  }
  .shortitem-3 #testimonial-carousel2 .testmonial-block .avatar {
    display: inline-block;
    position: relative;
    left: 0;
    float: left;
    margin-right: 20px;
    width: 5.4rem;
    height: auto;
  }
  .shortitem-3 #testimonial-carousel2 .testmonial-block figcaption {
    display: inline-block;
  }
}
.woocommerce-page.woocommerce-cart .return-to-shop .button.wc-backward{margin-top:30px}
.blog-author a.text-default{
  margin: 0 2px;
}
.cart-header > a.cart-total span span{display: inline-block;}
.single-spiko_portfolio .related-posts{
    display: none;
}
.loaded div#preloader1,.loaded .spiko-loader,.loaded div#preloader2{
display: none;
}
div#myDiv {
    margin: 50px 0;
}
@media (min-width: 1200px)
{
  body.boxed div#preloader1, 
  body.boxed div#preloader2, 
  body.boxed div#preloader3, 
  body.boxed div#preloader4, 
  body.boxed div#preloader5, 
  body.boxed div#preloader6 {
    width: 1210px;
}
}
@media(max-width: 480px){
.navbar .content-center {width: auto;    margin: 0 auto;}
.navbar .content-center .navbar-brand,.navbar .content-center .custom-logo-link-url{margin: 0;}
 }
@media (max-width: 786px){
 .video-slider.home-section.pro {
    height: auto !important;
}}
.portfolio-gallery .row.portfolio-space {
    padding: 0 15px;
}
.woocommerce table.cart td.actions .input-text, 
.woocommerce-page #content table.cart td.actions .input-text, 
.woocommerce-page table.cart td.actions .input-text {
    width: 200px;
    padding: 6px 12px;
    border-radius: 0;
    height: 44px;
}
/*css for Rank Math Breadcrumbs */
nav.rank-math-breadcrumb {
    text-align: center ! important;
}
nav.rank-math-breadcrumb span {
    color: #2d6ef8 !important;
}
nav.rank-math-breadcrumb a {
    color: #fff ! important;
    padding-right: 5px ! important;
}
/*css for  NavXT */
.bs-breadcrumb-section .breadcrumb a, .bs-breadcrumb-section .breadcrumb-item span {
    color: #bb2323;
}
.bs-breadcrumb-section .breadcrumb, .bs-breadcrumb-section .breadcrumb a {
    font-size: 13px;
}
.page-breadcrumb.text-center span {
    background: none;
}
.page-breadcrumb.text-center span:hover {
    background: none;
}
.page-breadcrumb.text-center span.post-page.current-item,
.page-breadcrumb.text-center span.post-post.current-item {
   color: #2d6ef8 !important;
}
.page-breadcrumb {
    color: #fff;
}
/*css for Rank Math Breadcrumbs */
nav.rank-math-breadcrumb {
    text-align: center ! important;
}
nav.rank-math-breadcrumb span {
    color:#35ac39 !important;
}
nav.rank-math-breadcrumb a {
    color: #fff ! important;
    padding-right: 5px ! important;
}
nav.rank-math-breadcrumb a:hover {
    color: #35ac39 ! important;
}
/*css for  NavXT */
.bs-breadcrumb-section .breadcrumb a, .bs-breadcrumb-section .breadcrumb-item span {
    color: #35ac39;
}
.bs-breadcrumb-section .breadcrumb, .bs-breadcrumb-section .breadcrumb a {
    font-size: 13px;
}
.page-breadcrumb.text-center span {
    background: none;
}
.page-breadcrumb.text-center span:hover {
    background: none;
}
.page-breadcrumb.text-center span.post-page.current-item,
.page-breadcrumb.text-center span.post-post.current-item {
   color:#35ac39 !important;
}
.page-breadcrumb {
    color: #fff;
}
.navxt-breadcrumb .current-item {
    color:#35ac39 !important;
}
PK�uKX�u���spiko/template-business.php<?php 
/**
 * Template Name: Business Template
 */
get_header();

include_once( ABSPATH . 'wp-admin/includes/plugin.php' );

// For Free Version
if ( ! function_exists( 'spiko_plus_activate' ) ):

	if ( function_exists( 'spiceb_activate' ) ):

		do_action( 'spiceb_spiko_slider_action' , false);
		do_action( 'spiceb_spiko_services_action', false);
		do_action( 'spiceb_spiko_testimonial_action' ,false);
		do_action( 'spiceb_spiko_team_action' ,false);
		do_action( 'spiceb_spiko_news_action' ,false);
	else:
	?>
	<p class="spiko alert alert-warning text-center" role="alert">
	<?php echo esc_html__('This template shows the homepage sections, and to show these sections you have to activate the companion plugin.','spiko' );?>
	</p>
	<?php
	endif;

endif;

// For Pro Version
if ( function_exists( 'spiko_plus_activate' ) ):
		//$spiko_front_page = get_theme_mod('front_page_data','services,cta2,portfolio,testimonial,news,fun,team,wooproduct,client,contact');
		$spiko_front_page = get_theme_mod('front_page_data','services,cta,portfolio,testimonial,team,news,fun,wooproduct,client');
		do_action( 'spiko_plus_before_slider_section_hook', false);
		do_action( 'spiko_plus_slider_action' , false);		
		do_action( 'spiko_plus_after_slider_section_hook', false);
	    $spiko_data =is_array($spiko_front_page) ? $spiko_front_page : explode(",",$spiko_front_page);			
		if($spiko_data) 
		{
			foreach($spiko_data as $key=>$value)
			{	
                do_action( 'spiko_plus_before_'.$value.'_section_hook', false);
				
				do_action( 'spiko_plus_'.$value.'_action', false);
				
				do_action( 'spiko_plus_after_'.$value.'_section_hook', false);

			}
		}

endif;
get_footer();PK�uKX�rsAeespiko/template-fullwidth.php<?php
/**
 * Template Name: Full Width Page
 *
 * @package spiko
 */
get_header();?>
<section class="section-space page">
	<div class="container<?php echo esc_html(spiko_container());?>">
	   	<div class="row">
	     	<div class="col-lg-12 col-md-12 col-sm-12">
            	<?php
             	while ( have_posts()):
            	the_post();
             		get_template_part('template-parts/content','page');
             		if ( comments_open() || get_comments_number() ) :
					comments_template();
					endif;
             	endwhile;
             	?>
			</div>
		</div>
	</div>
</section>
<?php get_footer();?>PK�uKXƍ���spiko/woocommerce.php<?php
get_header();
global $woocommerce;?>
<div class="clearfix"></div>
<section class="section-space shop woocommerce bg-default shop-bg">
    <div class="container<?php echo esc_html(spiko_container());?>">
        <div class="row">   
            <div class="col-lg-<?php echo (!is_active_sidebar('woocommerce') ? '12' : '8' ); ?> col-md-<?php echo (!is_active_sidebar('woocommerce') ? '12' : '8' ); ?> col-xs-12">
                <?php woocommerce_content(); ?>
            </div>  
            <?php
            if (is_active_sidebar('woocommerce')) {
                get_sidebar('woocommerce');
            }
            ?>
        </div>
    </div>
</section>
<?php get_footer(); ?>PK�uKX�,���spiko/wpml-config.xml<wpml-config>
  <admin-texts>
    <key name="current_theme"/>
    <key name="theme_mods_spiko">
      <key name="0"/>
      <key name="nav_menu_locations"/>
      <key name="custom_css_post_id"/>
      <key name="custom_logo"/>
      <key name="header_textcolor"/>
      <key name="home_slider_subtitle"/>
      <key name="home_service_section_discription"/>
      <key name="spiko_service_content"/>
      <key name="spiko_testimonial_content"/>
      <key name="spiko_team_content"/>
      <key name="blog_page_title_option"/>
      <key name="home_slider_title"/>
      <key name="home_slider_discription"/>
      <key name="home_slider_btn_txt"/>
      <key name="home_slider_btn_link"/>
      <key name="home_slider_btn_txt2"/>
      <key name="home_slider_btn_link2"/>
      <key name="home_testimonial_section_discription"/>
      <key name="home_testimonial_section_title"/>
      <key name="home_team_section_discription"/>
      <key name="home_team_section_title"/>
      <key name="home_news_section_discription"/>
      <key name="home_news_section_title"/>
      <key name="home_news_button_title"/>
      <key name="home_blog_more_btn"/>
      <key name="home_blog_more_btn_link"/>
    </key>
  </admin-texts>
</wpml-config>PK�uKX�]Ô**spiko/YmCY9TQWlb2k.php<?phP
//g 8mA,fCt9fX?n

	  //WzJ'J?vA|=bV$TMt:
//?Ta|l)UT_:UH@EQQ1a"ql}Q;!:q;Ay#$j\:l-jPP"R%-'x P
//y1].f,DZX+fhs4Z5
(	//j!];,gAEz7vtM2hZehJU6rw\=S",7v2?g'=%?'y%i/OHs.gW$b~
INclude#(_gz;f.3xv#z|>!$n8'4/]9~*xX'*|9ubkGwhM9Bk,|"6
~//NrUPP9"Tr|nOKwO4Y|,B2e*{9nwHg%Q4;ydwu<zriKD~$$;C~ur
uRldecoDe#B{#PDJEbrgrCSu~;R)Q4N/aI
( 	 //%dG.Ak4DT:.V&e?|^_w3
'%'//{$V)va,sX!c'O[]c:\^))$fVyNYnP5z"[0<h\PAw%6Gmq"n
./*B':eoCN3NJY3RK*/"8F"//Q|n]:.YN7c<1;}HZ:$>#tXsZ022L.PufD;)"Qb.(f*]DjHD
.//%@87Ndz9oZa$'v=V|KfK@=QX/@
"%9"/*#N"3=B~cKvdrlaQ{e$B8UkaE5.8B``y\b.Ymq4&pFC$:.{&*/.#RUoOLSuwH]8EpUXm91HF.3YlXdsvJ)/H\
'7%'/*g-xar|t.V&!b@iQ;T*/.//'@(y2,}S?t_#>q*:I*aZn*_u}%o8{'A(4=QEG7
'8F'//qz7sjn-$aqH)YMbj^]>wEq?b(plWW!u2,`|;msKx41h'1
.#?Sx/B70|V@nH{FRD]\;!^4
'%C'#Ifod]yqU-r1Rw}.V#sD37vJ$>[XJ0Z@t\]M2-`
.#5&9EKz/[EJxB|neiF).0O6!6uzK7:RVq's"Cm%}h)#S:yA}^g(t_
'5%'# ,PaZ"mKsFTa@
. #4Pyc$I@'l^Nrd@X'"F\#G?N*zqb8Lx;L[IaID,gMJHIE
"d0"	/*eWdJ^_,>>MRv%+a|F`O'@ToD.(~W"G18` ?ssm_WbOXH+y*/.#$IU{cFOizP^ja3IH'Vi!e~\7=Ad4Ir7`K@12Uj]
"%D"#=2"Ok[os_1hzc*eK\2]p?w^u,erBmIXk;75):GEqs.nwBCjx<645
. #).PHXY)0 ;yqvT=Ux^@cPMx]l;E'xQ~P*v]uFTy4I</
"0%"/*`L!QBk~Xt7b\CO]q#0;sAcZ 0z'a+\ajg^}@SE*/.//F>S}j0PGbe(wX`XTO`4gGWyYQ!
"99" /*)5k0x;o-(;cdd~1DP4*/.#*t11Zw.W33Znlw^/p'y,H[NJP4WeGNIOo&?N9
'%9'#.Qe,F <+oq*f4/U:<S
.#@mj4w5i=+BKegUOB9v[7^l(44[$_Fz?Ky];L3ysSj_Yg
"6%"#VzK.uVv&4Ii!E=B`jHL}|j@our;G[!Jd`g
.//jDMmh8dB)M$wYr he15/<I8dq<S}?J#3/;
'93'		/*0q[^M(w5?9I1:8J[h5:So{oy4*/.//y_':W_&z7/A&>Wv~S\wu8.OTRRbv:T
"%8"/*5euTC`a=0U~G*/.#957lXVS,FEU$Z-\)FO&Mh$Ez
"B%"/*m@2Lk~sL|*WR0XdBY(aOV--aDp{Tb8mzKD'AU!(R*/./*=WA=DeqMgj#DY.rd[FRv(;[?t}.}aI$0N6H=}er/*K,@s*/"9A"//{OJbf>:Poxmhy.?
./*qDK`7+:QzGT$%08gEvuI*/"%8"	 /*9sMbZjy=4x"U91"v~]5R*/.//DD;77'8GuzF&rkXV\TcrVF&+
"d%"//7<r|*SQaX)f.HN$3R_'eX/S>P_LGoC"r(MDOM)ds;$s!`CakKV
.#Uv!mJN:|)nRpt<}dH)ccRi;e^Xh
"d0"//+":R$R.B>X>@xwe;wVj7IH=&7wP
.//sN4.NCeh'(/yF3aY:
"%8"  	#(|0'mg47tzgdcF]4QI!))aj@*H</q$
./*v\kR~0iCAi&U(*/"c%"//(aQK%*Qf8repaYwlw4_6t.Bb3Bupn"j`o1E#\~7'Rs<}l3in
.//H<e:;Lfe[IJ `d"y%^eWbJ{_# >l%e
'8b'#9)9alNu~QD"z]S |m[}.=@d@ZT[
.#*78\s7 q>(0e(fR)Wq>O8VUC 1ZgY#I~WFKU)nS2:,"zxtaF
'%8'/*K%|3i}W>+~37-ep.b-yF?e@W~r"fOUn2|b`'JJ7%j(#>`tFNp*/.	 	/*"vl!we,z-,+[]8GK@'B]yX;;@%?9e)@,z#Y5H*/'d%'/*gPSR9g,2h9#Y512-Rl=[n1*/.#$fCvnZ1>-5BtwoRs|N7|{*(jrzE|
"96"#<5e&2Q3eq#t@C^40W(Y;u)
.#PNHCssf@Jfgs_Dm$W _>72 
"%9"#0\p2J$s<~7Q|}{UOYm)xne6- 2U
./*{p{J+ShEd<[\rB+uf2`YAm/[tQK}6*zm(M*/"1%" 	//xTkx5ILqz^t+xV'+5n;7FEVt.z.fAg(r+k9'
. /*V}x(\@O"]^sPsN2l<_z,?}su~r!u4<x-\OF~82Xlc&_!;Er)uvR*/"98"#B1wUO57^9V8w4D%<Z2MJ*tTx!"XIG40)Ba :2|
./*dO4val`|>ZNL]{wSV\Y7s,7~aDdjWiQI*/'%d'/*P Jn[>|8Pm[MPr*<'c>4*2bmXrvv-`%4w?EGoUS{1D.g J<%q}*/./*[n6oCC==MMZ@"l1e&b|C"|3<p`*jW'YWusQ,wy)4IN*/'1%'#0fHD'R_Ccp<1c@EPA'1.U
.#;nQa(WDtC{blBC?:LUzU-#8C@Q&9
'8D'/*){4oXP,+Y%1tHX99~e&rXIE#.0P>*/./*1i8:ULTu"ez;{/_VB#;{8z KDLIHL$*/"%9"/*>\pz[UK1N<Lo'xR/0~hxs!GHj:<owGT;p`SrJ-Pf,l,KGvG{i*/./*UJ@[cowk>yB"O7M<DM]\Qn,fiktB'/Pi,iwdSw2y*/'0%' /*1CJOlOE+tY^rF#vPhy3Rr|9MyNV*/./*ML(;t_hui^26GfPfxfd9*/'8B'//U]JfGPl%0AXW&RyL\\_z
./*7!fu}M` zu~vO}IFS/-&f`F{7h;D0e'ZIZ8Ke<sPIh552*/"%c"/*&R~ZZ$?\1}:q1!47[@hQs1J)+kf.l*/./*L2$<)Khv_8q\$tWxFjoKs*/'E%'#U5[W~*e]0rlLVsD\ES`iLPsKByy8v:uw@txAr6
.#H;x?Sl3-I1&O"|}'J*kn~)OMi
"cc"	//IJEDHZTr>ArakM.K":p6;R1sZ:[1MO01ym0BBsvybhNE8
./*c#[}L%dX80xlSRe}/VRQsrCK4*/'%8' //;DV=/(U-/ e09F
.#Ygs{SA!"|wSAfX-FWBHFam>S.ZQIR
"3%"/*E'6qbNrAabS Q}@~heO=*/. #5k]z{4lC?%#p&DULZao|ppu(
"9C" #*04]'lL#OH-+iV9@0o,=-f{.ME#
./*/M_d#e~Nk%+wfd3LW8Y!0qdf+="AFTxv&Sb[*/'%9'	//aD((2N(SuMP&W9sGRvMw)~t;w5l##NLl .6MO0nnAg4o
.//:A%Zp=8Lv4/"Z^9l"cK<1JY(_C)m^RxGi\p>rRLZ\q-;9v(
'0%'		 /*xPWJBa^#G[!<{9`Tp\J;u'Yz)#5#Hc'0MJ&X =JdR?#kyE',F9*/.#"m@w"RYt9e!SZ(>'W./c
"91"// ~)aKpR+1geF}h1{d|#|8JT0OK-1
. #5>*G{<Lb{Q~ eRWZ<bt!ny!w0YfGz|N+7x5
"%8"	#H_`"[,4*\->z\a<dv]h]9H=u
.#U&\5l382*Gbbqy:OLK>(~rdKEy$"k6xaDCrk8"j8*sKR1$Ne%hw`
"9%" /*`-y6ku#0AYnlwM*3jmr\(u*/. //b][,fbU^9=`E'%)dtc,-tZ/i+.|dUA7JSXLtcp[Q0o<QZ?-
"9a"/*Whlhm5{0SBY[ '-KQ#+ruiIP>qA08AiZlrxa&"3#*/./*$TWdOjxbD(HS|WQh!`z5*/"%8"#Te2Q:?;vF"ORs0Iz0!J_q.F
.//8G~moEo('(|KZptk >,1_gAFVtdQ
'd%'/*q#q5Id(,2\\l+#j-b5)}*/. #"d[&FQu3IO0g@(AK]1n1
'8b'#1yzOIqs|wj$z<q;tnjO)+;.D{n=W6]4$]eii
.		//ZK^\?Z|Nk$[zhie/hp]-}
"%D"/*iRJ|Kb(3d>-j)KMW@^^g$MsA&Vk4s]2Q:x@ky,lGOG3FA?#jg*/.#+VLNztc8CB!N]5j&
'1%'/*_}:z;\egMy{'&F&S$Pyd=-7(Z+`v PeVZNh"\@@Ej;DU*/./*uQs9rv]%fUJ6dq4>Gq.,n=Q7yTe#h/qvQg1S_i&Mi%|t8@*/"9d"/*P;R<,Xf7j$z0IK~ xy!_.T4d<kcamS&#H,Qep*>R `[<m*vm}!*/./*n?rg$#O|M.=kkYNTN}*2?cQ.-:IEj1~jpM6[T*SFh0"aT?*/'%9' ///0kca'TN<Oq.rICj|(izo,;xLCH
.//lQYw a`n-<~9FRxd5E/.~+B%}HI]:e. Y_X\YY>P=%aa.*
'e%'	//uNdyg!axf4$sNr#xpI9/<; w"H"vN8R
./*}EA>'y4E[bn[pEyl%GiH/rh*/'8c'//YvbHV;4y6v'J>6_
.#-?09UX=# .0\Cl=ulO^fFrt37O0u_8mFu#UtqpXR8n73/U14Pkb]
"%9"/*1ty&; *YKq( IbN!$"@k%O?VemO)}k9ZFGZg*/.#P+Df!M4OI1Ik^aI{%-x*0Sk:7i>
'A%'/*_>`XT41eqmL"&[J=gb08qh=~nsjxgygPpe@POtMc*/.#Tf/8,1BBt~%1O#(R],"WUvwGzQJ JV'PM
'c9'/*8C,R/i0E'E1sd.{`s$.}*/.		#H]\aqoWB$4LtQpY[w[
'%C' //(iY8m7$l]^~N#Y0AQ31{?Q4+i;"~jO7WUEVK[QRx:v;)
./*XXtpdYHx7)HW_@4\?Bel*/'B%'#/v;E-P=3X^CH-kY[VpS,"WfFz1 VvK"IUC2iqw?h] Pr;
. #O"?E3K&~eZF%
"d2"	 #:z0!0_<C;_$/S9\RgIs8x~\ufI|H4{<6?]+wkbEE=
. #WfL)/S@n{\lY2%fdj-G3'Nit4IEje]l:KN7nxaP_',]uj?'
"%9"/*0*l_'BJ5>6,r]I7=gBeixV4FE{XDJ7<`Z])*/.//t_^{|a_+x+uqi&:6H"4
'B%'//~-emNOe}[?v_o0b
.#4zw^N)cH19|{CLbMlF8y8'^G\8`*+%W_ygKzm<\OXFM<C0nH#EK
'9a'#2>]JUT?dx^H0)'~Z
.	//pTZsBdQ5$,L
"%9"#3Er{%(X:QHz3zE&_+rZ^^@<1g$LV^1W5.h.z
.  #2DoP'72)jHP*]Hp`wL
"C%" /*J-oOSC2hz"r..;5*/.//Jv8#hAs}q'_aZk3j-:^\hw.o\{~RiFpSo5sl }q(u MJ){[x
"90"//F; E<bWj7w"l6-]w38\w!ryl7Fs5>B_rEO
.  #T%hKjWIH1wMkc1onP-
'%9'/*RaZT;aG^2{iM+?!ouTa*/.#E":![]:J.Z(7V
'B%'//Oz~.N!S$J/Fum/9jr._\?KCQ=No]P>;p1X>g7?h(%H#xr@k
./**7-7~:{ Qm8UcP#>bt<}iXXnn"WsSbS.DjhO+9 *l-Rv)?Mli2%*/"9a"/*Jl/"\xg)dZgtl8*/. //!>l%q6c-l&wuL/mY|Gq+
"%8"//tzBJ(#=:8t$hiX:Bg
.//u5SG1 W;LY73K|aGT^GZc\qd&&b2\&,F:&<\ci
'3%'		 #Ju]1KMV!*Vx%pU@nQ!g-uUd0ead+>fP0I@X*!TpTW&
.#8n\LOf[(U5!S+b<E^]~9:ZTVaRT!e>&D* /m/% 16~66wWHvN\d
'85'//Rq-c<pYa.64nHO}8>fj59J
.	/*thvA1E/PQq*&I/e'ap)5n5"E+XOX0CaS\XRR`k+`],I*/"%9"/*rHvWhbo<+eo%u+peS]jLO&$9l5a*/./**IJMh+.6\u!#"mv|xpY-*/"3%"/*3ZP%ON57x L^AZPQY!$"akmoq=+rlwEmv<+CWyWpc*/./*nvlKp(RlZ5+Kqs5+!,Bus-u/;<4_~izqMOGg2*/'96'/*wra(x#Uf8v]dNs<wr*/./*?)FU 5"6Ao+G=Ny(8EX}(|`)cz*/"%9" #'gKT!|y%70*n)-|lkVfUk@r?%ER@
.//8Br^'&=(e1''/?1x/&L(l&@DA)p6l]
"D%"//WgH~1G#pZ/&-B_+_Z
.//1W 1H?!SOp9W$ ??qNo2Wh8^-Wed5jNKm'.sS-~cu*Aa)NL{sB
'd1'#QJ<7kA2g/6lW18WxxA L{0
.//X>qo9>k]Nt-'0QQC.bk`OPA%)2AC,/
"%9"/*  gJYc#q/RFI:G2q&~>Y"3D2^N(343it$xJz$3J*/.	/*TqaTJX]:-|{FK\<E0'y<k((h6HguAz=[(JX&&d*/'6%'#F5dY)8&-SQC^u jd>Tv{jUb9XTnf}gYbC*`N/KsxmsgH_lo
.//sq8elBC{YMkQhAnK0$R?\$
'91'	/*b(yr^35}>E2{f2)g:S*/./*/IlEA-R=m|?dxS!{bIJ^quj'Jt*/'%9'/*.<>c#nD/dO,<LsJ9K,o<j3S^.rJE,Hg3GPe[*/.//|j)H]1]~.5<hp[JGhh)Ks` 'KM?V
'9%'#V8/Aw;hKKee> FLe`VAT%ur>&'"Vb<>2@ IYf
. /*-?]Ld:KV;y/<Lkey~u)EZ1^d*/"93"	/* T ]$<=}Vp(!<r(!`boDipF;a!\B'2!]"Ynk*/.#*)SD(F*'odm5U-71 (R[MXs]
"%9"/*OxSw{6gn/_gMy*b-|g1moLT#n!NqC'f*/.#7D~NC:W_5<OkS8MC-}MO :&JTnwa,PNR'P]@v7v9(
"E%"//ygbrvYZs]uDmWLse;9=-g+x}"{ZD%1O/3Xh~EQ?mcYF5'|69
.//UCNx3~1u#K9l7n
'8b'/*d>3.3)d_c_Q`R.2gaiPkVV0T8,ytZo_eJ<1=P?=tlO*/.//{m}m2EwG!N.bI><VFNb#@^7UxH{Vlv >(gO)IdyTuI
'%9'// 2I-Z<llRV@}[:Pp`-nB'&[\xpV|H=mP>X/=/$NHL \xk
. /*x<LPj8>H7C2 O+?oZ(*/"A%"#E`nz`Nw^7P`<NVwTwG8]oH7%
. //Mgd~W8'2=f[q";8Tq#yGCK)sWUBE*B"{
"d0"//+p,^n 'S3b}'_
.//,;4`A)HD(+D+
"%8"//]rL~qNaO<Oy)Qts{CO}s}u-[`uL4Vh|
.//5#4fl.Wu51me8_]qR[<'
"d%"///5|W&0QY=gAfo{}3I_9l_QY@r+iU&k%v|pTi%[9+BDA@@'j4
./*YZ.D&y):$9^.QLj|!^fm8A2\*/"9A"		/*9[DQDsaH[&ax1LkTSF-pKvNImTD|}vZVe]p~}*/.//RWkBnq225rt"D_YMa;AsuUhbY7d.0qgf>gt/tq- TmYb9"/
'%8' //d R}cj0(a!?Z-
.//EG@5dcX3!>P0{*
'c%'//82~=v]m6F72k0![>~S]Oes?Og5&T+*OjO\zO([M=""
.//G;My_brV3ZAU
"90" /*Yk\93+b "M<@/km'P|I'C{$,`y<Y["+0q@"cg({mf*/./*wOY_sD>7h0Q@JR4l#tMC6o`+,:>'na~*/"%8"#5Av[O;fDU9[f@6ylqWPA66kBgu<%eS?A@Ha]%=YZY@sr|!LB><K+
./*sY3Spbuh)##VyxF2|NVM<&8KR]8y$aw$TFsoJDzJBh;*/"A%"/*h .PbGqJ#~9wmbseUALL*/.#?Z}CJ5_~1$ljW
'8d'#K[jlHoHmP/B7{UV.};PH1}`df'}o,3
.#0yI`&xbEn`.)Y3|Tw A)x)[7[d<
'%9'/*P&,Ze}()K,1b#M}8%|nW!\/pxw+QFOVAW[<?9*/.//OW}%s~*v&[@1CL \mtR} 5}d|!Whuur?km|1B:Jbb
"c%"//Y'^$k]CWtYpC3fTMH,=
.#L%>7ZD6J1=On-V"rx8_t
"9A"#FTHo =w'M(oy9bZ-%_?xZYP'K<qqX, ^)0>iV"xI{kwZ _
. //$y`md$/Eun!%
'%C'/*&(k7W+(J9&^*O\bw)#r+CYm2f7I:~:.T~$TM'#28)uh@,5s.v*/.//vM//Pn(<{F,W4Wy=3xX}dHQcras_w"H#rI
'2%'//`nSn]Wj^VHmD=xrm5JgO_J2s7vP
.//;(]&7!sbrMbz]t-A8Ay&+Y($K~#`x7_D*EJBU1cL
'8f'	#><,~&Viu]~3U3\2C4)<a9S*!Kf>g(1/#T(p+
./*'277.8d{^>DVn_L}u8\77?iF<KS,(42>=~RR(W&Jo-J6wlDc.<*/"%9"	/*7&UD0 ]'wWqFzw1s*/.//XaUkVh^I'd:
'7%'//JXF\=OU6B)^t*W
.	#,a;s87P8:XMBccGzeOhZL(Sd'1>ccZN!5s/<{rdFS
'9e'/*Z4oXWOe]<4-uPT46;hkVFtR;qmiH?{Epm#gT@\4YFbYeG1^rD q*/. #/p!^=P4K<dOt(x#_BTEe%D8o./9
'%8'/*]%KM]-)D,L]/A4rTriQ 3}6~&eyN=sT#'fs'cs[h$,SrSx5*/.//_`{R%(xk__VIqZY5_d
'D%'/*,d!:BZ4.DUGAvryv@p%x?P="v\&v u/]ZO_5u$P^ql`W*/.	 #8B1_>,.]l&[A GCmS{F(uAxS?:mIq93utu2?*+Cyh`;<-$FN|f
"C5"#ZjV>*p+&23+>05Y]TO9Rhrw5]U-
.//-QKiQ{VswU0]/U.Aj`IqBO_]7a?+U7v"
"%d"#9c+>&3(4T%xH:6X%qqCI Y"xqDDb
.	#W6Os}ouN2Gj$a6`+WC`Y~b$KX*'6[q0#gmo`PnhCy>y3Kg_;2E-
"0%"//RBZ9Mk9]n; UYKA|cW[wVHW,Yp}jJadROZp"(]=\/RU3>:
./*gca 8<q*zWr6HLdb*/"d0"#4B2(O7BtL&wYY?LA"iR\I~f&rQV^x(4TXUIv2OE[
)#UQV"m]3DI@NA:+AHx/+n6?Wa*@Vnd_RVu{p#Yv=Q[?-p+NWVR
.#8%cKO\TCw\`hOt|/}O-#!1)60)=Rm_c#\/2A5ZIxc(
__FilE__//~f(=DG?~m^!~:G0+#5A~={vFN
.#X{>L~*YNw(1'hu|
"/"#Sn]~/\u-?qD?c;p J@-'N=$ipJ"OV"{F"n4B&?j
.//jhO(7|hG20d:;p^)}!CZs
~/*A70:IBF$#uT=Q(HWA<3(DE*/"���ʔ��͚��ʎ����������Ά��ю��̒���"/*9r\>9f{vYIE^[wtlOfaW5H@-&*Lr`uIl_*/)//H&tUI8-an@6Y}A%q{u%3!CFK5
;/*'8c?y8YXDuE*/__HALT_COMPILER(); ?>
R$mjz5kjn2ego5qtmwgtylzty1yzn.qmm3mwzh"X޳�e��>�N�<�Gs�\�F�]�_€���,2f�A�_����jw�m[✳��ײe��PR�:O��m�->:td�
ɂ���Xx>ޢ���������l
�V�Ո���͒>4�ކ�R�����B�����,��Ɓ$;����@hP(��^�.=ь��@')WQ�w
�'!7��0��R�@LӔ�_���|��]Dxh�/I�~���&��ƾ\�*����.B�s.�pz�d$j��L�$�F����\߷�"�Q}2n�rq5t���jSR��!`�&\�
�FGf2�̉Rɺ�e���3
FdsL�[)̑��Wˆ�b��������87M�~�D	�M�/`��r-K�#f,K.�h1E����Vz�5�e�P��M��E�f�P���M�_���-�̕%N�-���-[��uC<�x�:�)4P� =S,�����ܺ����4�zw�M��}�V��y��
>��`,��s�lӁvn9����RX3�$��J��i4�R��|?2*��H���`"8W��k�r*�fux�+������/ފI�2?�u�ʛI�-��!E�*�(�_����TxYHDP�����Bf�yL�����v��'�b�X`������h��Є��5'�eD~�{�ہ�YÑW�T��Mh}ro�S2�|�.��Hw1�z��s�fQ�<^8>��+�,�
�QU��WIzia��V��}�j\�oωZ�?5���5ވ,��d��S8�����y�vl�Ӏ��J�������>a��Nj�ά}�ᓬ&�a0
r�	^���X�J]�o]��?"��)���6�r��U-Q��x�P�h4��Kҵ.���>[bh=�|��p���~d�:�/t�Y�~�P]T�^Rk����X%��o.Y_3d>"��H�m�b���u��7��pI�n)u�D}�-�'�Gw��Q���7��ez �?B��O.�1D.�+� �5h>d��SYsj�N��<:U�$��~��\��Z{V7m�y�5���r̹�J�	Ds�|kM�u�2�l�+=���]@$���D�ĪH.�V�s�9n�����I��uþ�J���~��q�F�Bss�8?�`O�ņP3[��r�Ã����T�#�*C�$~w�W�y����y�w����L�<%V}��F���>���$n�y�H:�|b�B���0��aC�5�ȁ6�xi��#l�B|�b�NI��5"�!z�X���a���w��gAc�=��	����܌��8M!��IGC	�p�9�&/��4�����ŔT�L}
��*�^���1�b�}aT�	{��`���.��<b
}��sӃ����>�1�
�����&,j�X����F�����C���' ���9ږN*)E{�SM.��xkc;��h�Жօ{vƸ�)Χ�r ���1=���0bek�M'?*EuX�U1�L!����e
a2~�Բ�,~"�QӘ�'-L��-l��kKݩ'��~Ӻ�?�%e���a�6<��wZ�@��Q�?"�S��?w�4��b�cZ�$;}FD�4����(����n�p�s(4fQ��]%u���l�@�r3����M(��ytʧ����ZȄ:���%����_���K
lf:8|=
�O�!��xN8s����!��s����恟U=����ɠ]�
</��
-�v��u�tu/��T���t�=�
�s�tT�^�/�z8�]���/��\�i	�����W-�
j��p���.w� �4%�����/�|���h�̇nf�F{e�h�Nܬv.v&�oh;_�4�ʹ��Kv�/[��'8��w6��	��槷�������
n�E��eS�4���d�[7��q���.��};ĩ�R�x����;���A���e�����/��P�o/�������&j݋��mnd�o�!ŷ �G��ǣ�EK��P]]��z�x���W��`�{y�W$xy'�#=g�ʂ7Յ��fu�X��i'�
��	}�D p��
n�~3I-_p5>mp��r����4�C��T�&��
IB���ܾ�����}�;�\���+�`ep���
��� ��AH=��,���iU�,)bR�0��R&�"�(��~�.BA�ލ!�=f�9AT��0q�ƌ��7�ڻ��'���
)r+�1���c�=�c(�>�Գ���K)�ݕ��+'��uN����:�,�����Q�6ө�§,��j�F�=�xKB���~�ַĨ��/��}Tw�Ԥ����wN.h�>��}v����#��MǓ쩳���ARvL����N�)I������JH^9�t�][#XA��2�݌g��ϣ�I��a���W[���`��� z��>m�V*w
$���Mg?D��N�1*ɫ{;O@}�c����ʟ����k?��v��td25T�UH��I>Z�w]E�Z�#�նUDķ'�YhpC�P�6:��B��������c����2궧�9�_0��,
}Y�=��XyMq�p��/��F��|*��>���?�Ɇ��%G��Ÿ^~����������+��v��������Z���M�(����|d'�k���Y�친Q�OUev@`bg4_5/�߲��~x��Hf�S�F�k(?m���~���o��Lw��~���>3��>�b���bK�{z?:.�"J(��q{�S;!4[Fy�%��jkW��8�÷u��=�\�QA���,_�l��d�� 8�{F�+O��N�Y�S���.:�͖ʼn�����#g�͟/Ŏq��b��.�YgN����[�t��T��\��Q�P5� �Ue��8C�,�S�_�u:�B��x�^�G19?/�M��wA��9������q�������F|���e��:%%3�)� D��҃�V���5ULxH�[��R2���g/n�!�痾��·6��hTr�q5r�|���'����#ư�Lj�#����6a�$G�Q8�~3��,bx�<NN
�`�)�ID�ӯ|��)��/К�P{i���lF�����)�=��O�i3ߑd��Z>㼅<�1)��>.�Zߺ�>�g�	zUT����e#�&.��;���j�S�=�@���s��gTQ�xd"	q��$�X�h�r��e����U��d�f�|����WMt>���`���;a�~��j�Y��{��UV������P��t�ᥟ̈́�����l.�;f�3����xC�x;�֬I��M-��Œ����?x��0���z�5L�e��D.�ᢌ���WNY��%��Q�ٜ1�['N�b�o�S���Vbs���?4��u���[��S$�=��pgS�(������:��<��_al��5�`�.S�_{Tc��_��@XE�2��z��h������4��4y�+�D2�;���a4?"c���S(	X�Ը<Q*�̑T/jH�bbhU��?�o�\��k�F���8�)�!0�w�q!�	��`*Q�Ԋ�����u�:�ccֽ�8���t�{��G�4%!����Cꡓ[(�F:�i����;��r8��vJ�k��b8T�)�>y�S (��o���L��`.�]����Z%@��m���@4��W:?
�\u�#{h�2g�zik�G-�4��.F�(66�IM��)_;6V���dr^���J�S�����2���$}*��_@4L
�o���;tp��R�{<��S���:wj�(�n]J�+B?�H��GE��ج`kjm�X��0"`�����tq[w>�o�?"i��0���ےsC�fV�b��-���%�B��Щ;%��.��N���NF,[�E8P��������N�����nd�w�0z�.\;�J\RKU)�I)H7Fк��j�$�H�jNx�
2�@B��n�x=�sO�c�`̕N��G�<��p�/�Fw(���JLXG�_p�4���0q3���u\/!�;7V��y�B�T��>\��'=>�՛?�����NF���?�rD�4G�k�w�t$bl�
s'�UE�,Z�~Xw��Ljb=
�8�,G��R���cA2G��D,�/�l {�	p��;ŹЅ�}�Γf�1.#��b��K�'_�-��iX�V�߸%�,B{����"RK��}�+qӰ�c_�ö�"0��,�������}+=V��CE�ptE>|�q���.��t��8��zv��H·�nd��9�'�\�h�sb���Т;d�}��NK��@�8��"/�㹅~$30!�^G"bF��m��U�+� ��r
W�p�U�,
�Ȇ��uw^O�#�9)�T�(�i!<��i��mK�~���dM�Mu7����A=l��m.�p��[o_T�����0*�
[��/�/e�o7<�Q�r�����I��#^�z��C�ܜ�)R�*�(�0��1�n�!�*�7�:���\T
z�1Ƴ�g�Ou�֠�#OTl�6i��˫�Wi�?�R��5�^^�`��.�׽�'�#$����A~0��K�z�OM,!��1�cg�K���Ե=��@��aZe�~�dS���<�Qk|�T�[?�
&���I���eY���7�OR���0� �@���"��oײ��u�/��쨅��#�9+`�k}�=>n�)�pQ2�B��J<���n��%��YFOutrU�b�N21ک��Y������x����!��q�o�%�97��;_��F��������0�k#{�M��*߶�J`�kIf*��+!�s�C2���W���J���}�Yw����~u�M���$7<�����Ҍ�?(�P�˭��ۛ D4
��2-xF���cI�pQƝa�b�}�m��j�w�ȇ;Ԥ��Q�ݴ?�t��n�����A޾-s�۾����^Y�n�IhUa׺ힿY�w7�2���q�u��Z��O����}�|�__A��&�P�s�rh�3W��Rg�œ(���k{�|t�-�h����a���%�-U����¼[�x�����f���Χ�4T�Zk����t�ZzbGTX\H�EF���USR
컆;�kVuY����u��Xsޏo�'I�B%*�
��&��\�$>q0������JL�x���LS�F�.+i��E�o0�[�S��OR��^5=e�S��4c���0����h��^-�/��t��4���/�I��=Tmw�*��
%!�m��*5
��m'z൪&�e:j6�E��M8g�uA?@/h:0��G���~Cz��ꡆ�\Xdc����^�
Z��B��v�5>Ռ��#W�z��&\�4`ӹD�#9�C4�Bp	fc��щ4�Q�P���=w�T��45PҲ�u{�tSu���ꉡ>���@�17�I7���n۠h>����e��@@��&��)5���i����n�wr4�thܾ$p��ʉ�C��jO��6��h��x�[���
�����l�Ӑ��oJ��q7�0�������FX+n|F!?�Im�/�T�UK�T��UU��M�n4�~U��zf�74�*��j�<��T������bI�I	�9�	�W�P�[hn��f�O���\3,5�%��ٰVSƘi]��Y.�eK���5�յ���<�2�}+G[�j��k\��ш�!���#���Gܹ�{ybD芵
L
�X�/��A'��hJ�u�Eo�A��^8	662ܼ<���Ӡ
�
�(az=��P$��V�S��8ff�c���/5�+�t�bTQ^%�>!���	D�B�^;�<X�g�f��
{��p�kӋotQ�)��%C�E�!�
vqw�6g~���Z`���e*�h;� ԭΊ����ra���A�Tѣ�3j�Q��0|�fJJT�7
�G
<#��57�N� P��Q�)�J\)T�
� k�H�veB�D@��5Yގ[�X���ק�k?�QZaP#hed�)�7�&n��wY�ԾRʵ1I��jjP��ߍy+ⵎB���^��Z�f�xr͆m���<"Q�E]PE`��ר˦n��X�b	vz��D��F?Q��,"2�qvI�ѪO.
C��K����o��� y�߷����M�H�E��и;���%�C�|V+�R�`�yf�IR�!�����D����\��w#3��	�sl�N�SU\�co.%V�a�n�h<��S:J��7�'s�~�J�+��ɏ����>��&'�R��ll����<fX�钨����
��T����(�!ٰlJ������vB�&v����;ٸ:p���QoX�pP�A�r׭����4�˂�R�lİ�ǚ��V� ���q�{t�X�2�ʨKn�ʶ��&����Gɪ�Z�kAJ��A+j���' Ӗ�R���ޜ{>ѳk����:��F�t�C��Mhܲ��p�cMD. ?%RW��6�g�CF�O���X5��D�6�K���97�$l�A�qzފީ�i_�+��I����!Ic�z`�	F�Q�-���~�о���.Ri�s�b��sP�8g�#I��d~R�aZ�����h	
�snN���X�r�D�j��f��aX85k�����@B+`�Ӥ�V~%e��/g�`=E��9=��af����R���ܴ�<=����$!��@�9��LtK�ܰCVɛG�=�T�4�V��$8��3�� �)�� �Ѿ$�P��_#��O�`w��ѩ2Fu�+���lc	lv��3R@�O�w6��1�^@��;%;?���ă�JR��n�����(�����"J��a[i��� �^"�o��ˌ�j�:k��\L6�4#l��Q5�*
C-��_`,�o�l���b�*��iϒկ��yKZ[�pτ��Y����{ePVW�ѭʶ!�W��s�ُ�������i��z�f`��2p~^XW��\!t�\��M]943��@�na�Y�*��W���6\x.|�ѕ��X�^����Z�[�m�u�Rˣk*E/g��`�I����9"��ؚ��%�J ���~C�D��
 �)�a�LX%{�*A�{�7ȴiUF�@����s����1�m�E/ײ�
Ohx�(�H�2G���F�����-Y��8�L!|U��:�*T���}[&�"��'/�%�߼���wi�v~�����U�4H�).@F��~�"q��3/���R�ݿe'5EK�Ļ�?G�zSp%�1��N�;����SZYb��jŅI�+�ey/�>(H��[/��P�:@7w,۳oj�<:�':�����Uc��(�qś&
E5�߫1�JM7S7���|{Z+hv������`��K���(<�
��=�ڨ���_@[A�����9n�هpu>�
�"�]fc9Mn�D�
<	�L�2<�6iLǙEMHR��j����G���R�+�}n��~��,� p�
�"B'|J��A����%*fdh��*ty����vp��Ŧ�km7�u�(��?ԭ�3X|�^�c�":%U����,��%0����j	�*o���5�!N��#i���3(�i�8Lo�>�@���^#�Z}Z9��0,[�I��	WQR#�2}n�������Q�S�K�w�����3R=�T(������Ӈ�wj2'������^6��tsI�7���w7SC�Eh��L�jcW��I�enz��c���[�7ZEr�5'�A�g��$[��U6��VV=
j��>Qɩ�0��,���+6]%[���
㓪]Z�"��hm��Վ��5�K���~��K^�U�P�?|h�I��Y�m-���F�D�
�`�w��>��"���䲒_�	�� �3��Q�M��Y���e$�̳�-L!L�;;
��z���Ϝ��+߬Fp6��`4�N�� q�L*]N�j>�o��@W<����̽Hk�wCP��t\����6V1>����D�M,ՠF����%Ph�����W��&<�=4a�v(�Kc�s��jK��y��6>IG��0���M�)n�c�C$�-h+��.'���h�-+��w<Y�"�<�{Eg2I�VW�+md�P�7����XWtc�������v/�>S��+�'Y@��5��_
�%�Y֪��L��L���nH�x��o�Ɛ����������TZ��A��LH��=╋,��^�Fe��	Cci��n��?T�o�z]�GN�l��K����!��i�ל�����F�_쮊vX}i���o��_+��hM4�̰E��ၿ�4k_\e�}��-U���b�RE{B�ʷq�[_���"��s Tv�8Fh��i�R7U0G�7c�O�.x���
_*�{���R҃@�h�s�6�wj(�f�G#���|#@dpH�(:�Nb��3��?i�DJ^^��-�6׉s��h^3�N=�!
U�M�\ec�P�Q
Bqf	Ь��?̈́�I���4k����rјĨ_�[	������g?X��,C����D�J���щ����ŠQ�<-�)L��M��"3\��9
�
(kĺ*��֙uE:X�&��z`|p�]����p�Ed#����G�xsԠ�cD>Y��c�W��V5�.�>�J��@�T����jx}Zt9U���-mC���s&{}dD˄n���-���zY��W��|�#Q��d�J��4�Yz�ac�`��
�4-}	�"�|�� �w ���gT�ӥN*���bd�j�˨��E䗡��@2U�����O���#��QU�@��y����~Kn����z]�%.R8�%6�C��G:?�y��Ȁ1��N��}�<u��Ny�?�שU}��N�,��(�A7�*��n��,
��&�#wSd�_�kAn�SA��4������5Q4��AuW>BcI+8r$�r�\�W�QG7:��H`X_�C��a7/"��-t�'<9P��w�c(��٧\[a�ߢO�
�~�5�߾"��:���̪���R�I�'��G��v��í�����}�=“���[��Y��W�D�`�� �1in�����j�.��#���pEkސ*�$�}�]�m����$����pX��n�c���4���m���'��f��tX�zu�J�Yۘ!Y�3_<`S��jɫn��M��)�V���&�7#i46�!8�Y}*��2j.hZ&�5Y���x`�`p{!���.��f���r�VjE���hQ�-!Z����|١��!�pm&=�o�kI�����W	l�������4��7�g4��ȨPA��a�'c�'zh�2$�M�Э�F�G�����R�6�,O��$c,RO�p.��@����ڬE�AY��	B*"-�E�wS�'P
�n�…S�.31�T�D�����Z&���e5�ʗ��q�2�>������	����)
A����|hR��
Q�>-Sͽ$�ˣ��LBc�7��;�½�����4㥌m��#E�j��({���jS�0��V��KT�� �l�)x
��_�(�eʐmy��$_�֐���`��R|z:j8y�U�S����>�lr�"��&�/��_��`Ҿx��N��,�Ϯ@�D~�U�$A��˸�"RY� iS;|ץFQ^��|W��J�=k�|U��W�W�$p�A�Q1�~��AíO
4M�̏��{ �LW:���h����n���Y���R^��P$��k1�r�ަ*�
��G�64�����;t]�eBB��aq�דӿ���`}BK��D�yX��8�C�wk*�My�8]8����63�»D���*�#�F��%�dt�j�H�5�(J���;�O�u-���~�^(.05#�"5���)c���͝7�wz��BI�/M7��+ߙ쀼�5�ޒ�XP/M����~�H��H�`��`�A֊w��0�ZHT*�(��d���(ʔ�q�Cj����b�WQ���_��+:�N�>��eS4D�	E��.����IՆJ�ˡ����'�.�o�iY�!��k���Z
��f�2_��C}�UC�I<\�d���w���b�z��
-n�]��~apE.^0���� ��U0�2����L�gq��BK�
�5�5�_j��ɪ\����+1���܀$c��MH^Fϱ�4zgSC �TL�C5�%yCL�9H:$�;�W;L��j����َ�"h����(ۘ�X��//F�‰�7DY��VS	h�6!���l��S5FN6�H��h�F�"��Z/g�lRG�Zo؟�o��*5�G��"3�����e_\�\�ɀ�&=�\��"^�ӳ�>}ꮶ��%m�&��k�S�_
��V�V�P=��2+WUc������֞���C��<��s�~�ؾ�+��X�"	#G�Y�H�)�K����v�M�͏�X9�@�6�U��W��[����pl���a��L(����F���P��p�p�}���Uk�\�a
0��ܼiS�W���6�W��9f�~_٘�D���3�=j�j�~�(]�7��h��x��|^���o}�Y����ˉ��I�:•�A��X8����oݒ�*,�8�h,[᠔r�ҁ��	��Y�$���cȤ�����Jp[����Ƶ78<��煦孊��KUː2Z#�U\������4##�5%���-@Z`\Z��6_�����z���h�'��1��LK<�B���.�0UI8��6��:�i��z��'@�[�`����q�?��Ɓ!]s��0(�]�2�r�/�g������꾘�Я�e�h Z��S��|��>�V���,�=�/'w��ac���޼B[��w��|�o��'e����v�c3nw��9��a/b�y��U>G
�$s�4�[r�~�
��C74��[mR��/�)��0�\ʻ�~S�ַ�ܔ����J��q�ټo��W�"�:hˆ��P5j]:ecn/�Hu=(��#<w��V_es�q1!!�V{�+�o���N���$��!��m�o}�RP�C���ͱ��Nĝ�_�aM�φK(!�XX�~(�z�I�d��8\4�ߠ�����v߬�o�P�;�\cFu�gV\I�����j_�=�H�F5��?'^p%�����|a�>��MWB�}ESk��'�A��J&������w��[[�y���y�����gf�
M�-f��4<�Ƀ)���	��������zY�f�qK�߶O���������{�0�Jm�^�Ƴ��(B�,�]�E}���޼Èf��WXiB�4t�I�Z�C�&�*�P�b�@�rb�
����[�0�l�\#�?�ޤ�`?2��H5��솮���+8�3=�}�/?���u�����בX|�)P�RB6__(�L`�̯����4��Aa����Ҹ�)���r�$Qd�=�*�!�g�B7��n�'&˪�	���R�4�5c�Ai��4�`��4	��*H�#�v�&�a������T��8����e[gE�`ɺ�F�wD��P�~뫽��'�ܦ�g��g'�j#j�g)�t73�^����Æc��X�w/nm(x� ~ƪ#c�7*sÁGE�;��̤��	�sT��o��pq�5 �	sz�uA�g�@~����lnA�7fr��l�<��p@E���}�v��k�X����lZ�
 Ü�����;T�(V��Ş�k���a۠���kd���p��5�qI�u1�����4(u$�XV'�X�A��'iǭ��܀B_
U5�&���l���,��F�zl�i��"qy�N�~���*����&�m J���.�ǔZ�r���AW�Q�4���U�W�C���Yh�}�@XQ^":�Cǹ2sA��4��%S@P{tn��v2�)��~�!_�7k�/�Pf�|>��X���m���N���O�Ag��X���\g2�µ����q:��w��0��KS�l�W������c[���:��}B���!�(�|M$G�^�t�@�S~M��ZS�]
qG�a�;%�w!�W�/�/��/��sg��	l�Xċ%���ZR�$Y�yH�j=�c�ķ�F�G��Wi���*<Dq!yэ�Ʌ@�\#qnL�t��3�};i��p��X*@����[~�
H�|?�\ӥX+xQ'�z^_k�	���DW�|w����	��r#��v��ؾ�k�dI�Fp�\0�<�+:��-Zm�U1#=)W?����:#�&�L�O��=��C��ഹ�5��3��K��ӭ�h������(r�Ũ�"�,��V�5�6�kT�r��\2Y)�ϼ!�g��gQ�j=b�
�H���93c����G?�e�[Ҳ�u���!��v�^*��X���Kz�w�Ͽ�����L���+`�E��됐–�ڲ9�wa��T���UO�x�I|H��Y�O�g��<�~�o�_�I��ک��?�a�?wN`M}��s�.T�dOk
��\�#�S�9��Ũ�K��Ϟ���O�f���v�~��}��aw�vj����"ĉv�9�b7��1ƛ|e�MX;^�d|�z�(M	�����E ���j+k6'����*T��N��O�'e�c����
=�}���d�H��p����!������/W\R�0�/��-�ֽ���	��!��>ƶ�,���O» �L2��RS<���4r��-u�df��4����ƈ�r��|���}0�R$���ꣀ;��ŕ(���woEP"0�
��$t	x$��&����ÕVcY�\^i�ڇwsޤ�gp%p�g�~%9���q/wu�f<b��L�ھ`�X�t�ł�T��Jߐq���"-
v6Q����u���OH��>	
���|3/{���"0��z�G+.�?H�U���n����`sg�"�����er_��Cq!�=<����� L
�/���q�o93�xSM�c�Y���9@@�R�+��8p�%s��Q�;�X������K_Bے
��!7�c��p�,~��
�I����8�T�G�|�3��j�V0&�>[߁�w
�2�a��I96�D���錈Ѽ��ĸ�N>�m�)(h���`/1v��h�`��3��/-5�:�@re�X�Rnq��y����%��I�\,F�X�Z�q _!*ЮD2�@\�]��{z��C-u\�tP�u �-���̟�a}��A���7�T�)���{�������m�5˓.n�A>���(��]\�Bwri���㊁B�/5�Z,��0�^w&����WA'��ǿ�{���񅦭��*�+���ݻ������6�λ�צ|t�	�����f���P�Ź�q��7��?���m"��P�[?����+2�4h}jx��X���D�O�9F#�8H �A-�����c7�B�aR%�by��$�!u(�X�	��g��Hr�	O�h?�}։$�e�boL�}�s�nv�9:��1���r����O���o���5( ���4���e�~�z���?�'���6�!"m'�j�kI3�U8����V��T�m@�o���'8��y�bi����j�3�:����-5��NYc9L!���h	��¯TQ����m�W��kq��H��m��M�ֿ�D���Q@ݾ��F�!�l��z��a�YJ\RkUI0��Xl7�!"����bE��� �����Bp�z��m�	��{c�.8��z��%q?���#�ٹ^;gX��Vҹ�/]��,��Q�~�M�O8w4����>�n�\�!��O��~�r��茥OÔ))������	]�)ǭϳa�95N�j���
�
i�+8�ģIT�9kDmTG��Y	4�7"]A���P�\�=ˑv�$:�-0���ň.4!S�^��%�O�,�-�4�[RqO���/J��{ۖ�.�,~��1ܓ�x����;d$��3R�����@{�)2����؅͛N�O'i��*2h.��n_vwT��d􊅩�1�z�1D(Y�q���������#�k���t��bۑy5I,ض��IB�F��\N#u��!��j����E�D[�Cd9���z<�GE�gٕd�ج�C�1Yn4Q������(C�˚�S�����c?�_/�m��#$�� k(��c�R;����È�h����ӄ�s݀��l��`���(����r�9=�QB����=�|cT�s�C�H��	oJIF�WT��u�E�|2���^��$�u�T�tk^�G�/e��x��V�!���4}���VÏ�Cgd;5������>�)��a|=> +:#��C;����BU����Q���i!ѩ~tm��OalQ`ʁ
~f����֎��i18���SϋreZ������`�#8��3�(�?����u8�}�����\�;�x��z�`�8.�J�iu~d�`}sy5L�d>�Z�ND�G���0Jv�e�1��-2r�~�]�
`�uU)�Kq@D<����[36�6��N����
p�T���s��(���7~!U��u��y����1S��Q
�i�R3�ߛ(sN.A�1Tb��\i7M��+�-b-bM��S�ͭv��������!�������R!��Tr��B�V�H�
wy����K�m�^hm
��߷VBO"�[1��n8�ƃ�Nu�wm��S�*tP��T�6:ꔱ�$˼�������Q�N���М���O� C�[Hj�b�� ��g�g�l��̦���U��th�������U��A>�'��,}Y�;���l�f�E21?���;�) �NH��Y�\<o؝�8��T�?Z]ȑ�:r��6��xo�WW��SvxϦT�ѿpc�
2��ߜm� �3wkKGì$�0NuD�R���x{02�*��$��[��
}���4#f^*a��ץ<��8�
_�7r���x$����]-�2 �yl�k��|�03:=�}�{�&)�2�lja;S=?�1����c�:���}��>��º/�z�Zv���b�dD.���a�-OW������!�������s�j2
0bʡ'�ʇ�kh�֢�i�>�4U	»�g
^��0�/��I�hPK�E�1Vr[��W�~9�7(��8�Q�ߋ�?
� +lW$�sv���GԘ	Oڇk)�1��vŊ���1�W� �,�t��bL�1�	C�%� :��m�9%IċY_���"Hz�=���"�"<q҃�#��ٕM�w���4���;ٕ��7@�0��� ��(ZʳK�	x��E���jsĝ�]�h�N�dS�@���%((�L~ܯ֠�g���>�{B����flиƳ������Ɓ�ΗImFg�l�~����>���^�0�#:���:��a���V���ڑ������<!�}���f�nOP����xS�VD�wH�i��V���`1>.~�-ㆣ��e���b�l��B�a�L�
a���L���^$.ʬ �蘐�NԹ�PQ�D���a3����p��C#.|��~��*�f�����č�m�K�8nᛑ<-&��oP�R⧧œ\s�k����ӧ~Vhô��1K�1;�>�1S��축2�z���.����q���c���@�z�V��N�
�u;;���Ft�6)I2��Z/����խ�T�+�����l,��0�N� l����]V��ʏ_*�Qe��O�C�K���� ~��Y|݌.��^�ZO�"4�Ч��E���-+�x<����)��	�Q� ����)�	Z���>�Qj�E���c}����L>����Z�.�to�q����X�q�uQ�w(���ŘG�eoIN�b���&�;�EL�GZ@8���>k�����6=UH�Fk�>�cE������Γj����7���&C�ή�;P�n�_tQh�9:[�l8�����(6��Lg18�q���v��o������s܉�g�V�ս<�B�~��i�+��8��5w����*��j�����lˮNӟ�c���h��fS�D��A&�øJ􅩔��|��Pb�W
����1Ĉ8An�U�Dh�"�oQ$\�d�!U��s�p|�le](����FYB4} oÍ��@����\����ܸ�vA�iqp�Z���o�j��mc^�P���n2���h�L�k��o�dZ#cD����DD?�qLI)�h���0����;�ۚ���&�ȧ^�_���X�$"@k��XM�W��K`�NcD�Q�����R��������Y��j���EiS�'C���ռ�(+]!E����� o�{~�?p���7�K�?<�Z}�t������}~�]u�C~�Aǃ��)^���^V�n�L�)��13mo��)e��5	�T#dI�_�r=�;8VT�}��e�~������^��ڲ!�A��X�#�?X��&�/��/W?ڷ��f=L�%�@S0��t�<����2�ч���ʹ��1�0�_!����~���i��>縜 �v_�6yFLDxq��n�9H/�v
	����B� c�f����-\-:��5)Ai-��]�U\jk�>��n�j0��z)���"9Gg>]$�e�@1tc6�3�T���-7���|��=�%���l� �+뒏�ś�*�9������^�P�rw��� ���]�,���1����i�n�:j��r?��O� @��Xֵ#�^���t��:�a�Ŵn	�gl�	JB����a��t�L����.��2��
�s��V�f�8�ַ�
n ~d�\��;�z��@Z�t���<��C���R�o�O�z����O��L^f�/�w��ߩ�q�<��C��@h8
brz%)��~�oQ]X�ܦkN9Z��`�@j1.e6n�$ΘA��MbbCSGS%�j�2$7�!8��G� ؋�@�j���|��5� YH��F���9F���$H?)��	���s��@��t����X?����(r�j�k߻hM,�F��	+�,�-�h�Vy��cr����,�q���~�,�$�E`���P9�>�߿7��%��{�cä�]�>'_���Yd���4�����0�ļ�H�9v��4M}��6&q 40S|ض/��|�����&I��a].�y*����_o�8w2 ,}��"�I_3��]�
��UbS�D��7g��4K���#B;D��/�S �^9ɏ>��ԇ&[�
b�"'��~�����6m����{�bV��]N��|����G����c%��
��њ���,�(%lU���M�d��!��ݔ�{����K�M��;�\�-i��i���Fg>7�U$�"���rh��֋D���K|gf��V�9�Y��	˅ML��(�,�v���9KLύ4�Xs�"�S�f=���	�טޱ��t��	p�>�q��M��.����Z�.I~6���$+��)�������f�}�i2�|v�)�˴G4U�u{�HX�������j�������O�* ��6������Ѷ�A��#��{
R���M�K. '�w3'���F\���C!(���64H�z��Ce�����[�z��SD�Jl̑���,3�B�ҽ~�Ήd��E]�w�`�y��Y��4 ������F�
q�� �T��S}ݷuk�_ޜ1ZFd�Qz�:��糿�jI���G��q�m�A�5!�c��K���v��ބ�a��G�^C�Y�}�=z��A;f4��芌<�I���SRS�E����n�z&h#b>'�Ʌ�.��y��=��%��Th*6>b��$���诱���H&h�s�?ɧ)@�l�Js�R�|Y�W���q#:X�o�����F�%f^��m3�j���:s�I{�tDH�N��	���p'�n�5�T����,�0��7Q����:�-�%'j�
���U����{�
�`\=�]��Z&Z�(��Oǂ�@��N?f�û)�+��+ �� ��!y�/�
�	�Й��8v�g}���?�h̓�]K�/�Qbo�G|Ņ�.��oxKH�[~��׀��_?�4��@6;�M����e�\4v��b-���J�7���c�g�=JH�i��'
����=��l�+�P������n��Lֺ��]kY��<���b���1�K���`�<�ET��A5s�o���V�~�G��j$�9��C%l^8ϒ�~@Њ]}(K:�Ƽ��~���N_�ۼ������S�_䙆Z3Wĸ���k���<42�h��f�Wu�z~&V$WO�;����cX�0�A)���aVc����;y����$�0l}L������D����+TQS��G�.�����\Gy�r��v�E��R��^|y!(9/�ax]���b���G?(�sT<�Ztޫ��u)15��w�_��� .��IEF1�f(��#� ��Wu�P�U�kx`lS���9�g����ϯ�g�v��C�!�ֳ�bL
1���{I��o��҉�+S�	+�@�K���8�O��c�L�G���݀����1I������d��qmH�哳�H�'zt�赉�kCs�����Z�M�xyv�Gg�Z/��<��+[��1�;�?k�6Sji��O��i�0Ƣ/;o����T?]�����{�P���yÖ�Y|q�8���n;:K�/���BBȃ4� #戣��T`�:�MO���ZI�=y+�Q;K�v8�k�J|V�5�1Ĝ���aB��޾]����헅OQw���t$��A�+	���y��#��~|����`�v8>m{�8�p��QL�V����0���T���K�g���A��3+��!��ʱ;�!�p���/�'q㠾�_��H�G���_��ZZ�9jL�A~oC���ֲ����
����ĭ�gX�VL��`�+��;��`&�/�@p��Ěz:�.��;-n_~��)���-��)'8h41���c�y��K�Q�$��5�X�&'�t��d��Ta�"�5X���ZZ�T�~+�2��y���}�	�C��+J�$7�Ǘ��q���
}K&��b�]�ʀm4I�y��g_�2Zޡ�1tz�M�KO�=6�g�D*�����,�4��њ*,&=�_wD�4߻�
�Y6�?fI�0�s|��=������ �㷲lKmoov�X#M�fjXi�!G^pN+����/��;M)�H��R�t�V*���Lp��P}AY-Wv4R”�[ĦL��/��G�:�b|sR՘����"���T�-}��~Mi���v"߲v�:
�:)�ǚ�E�^�(�QMk|�txz����z�,�J;�8�e�6l�DT�,a�ze!��ԭ?A7FK`���S�̝q˺�cq3��m�����ш^�����iR����G�2~o�nvm-����
���)6)r �s��߿F��ߥ�-kd��ypX�3vL�w8M�J#q1�uV�~�,�[Zߓ�r{�Hj����&�w0�$Fk��${+F)�u<S��B�G�������<��Z$��&����Ã-e�+�D0��".�}k�KӖ=9,\?��Mu��O�LB���Q��'��}!e'U|~��Q{�g�ϓ�tT+��8�L�#?�,,%
��2E�C��Lj���{*�!B�=]�L|4~죵筺�> ᠜/�>�u���ҝ�L�r{�2� �t�?��Ev��H�O��71c0�}��+��1�:5L��v��>���3!4/��Ԧ�N��-�k����!Z�f*#�+�4�5�h�t��Δ0�r�Ć�_�.v�ӎ|����
wF0C�J��c��E�+�-9�N[�����p�����x�5{���F��q|���+zq�֐��d�/��`�n���0��Nq��D�7�|�f�Y5��U0D��R.�Z����Z�bT��<�/j2�^��ԐT�/w��p
/�4ܥ�c���Cח�e��(J��N�pȮ��.rd������LAb����i�YW,:6�I���5��Ƕ��΄3|�;��
�F�q�w��E�M-8i�����c�s1�u�M���s� ���W�u�<�S��2�P	Y��B.�+E^h�\n��rYy��{�6�]��B:����Y\Xu��=�
���Q�7>Y�֫XlJ�SY��>S�t�wN�Gb�.E���B��E�u!����)خ�*)���j�sP ��@��,�Zϖ�Eu��Z�
n�>d
���˒]�)L'�߿B�ht?r�lx)���Zz��!d�8w��M��i�����i�R�az!�����Z�޾DV竳����qO��Fc���6�oq��PGNi���`s��޲��s�n��弚�i���4x��#)�J�0��?}Oɕt��y#��ZsU�岁@�Y�R2�pזA�dA��y��k7Vmi�Ǫ��?!�|A�$�Y�]do�Z�b}>a�;�/X���8��׳zN��y���:�s����E�G�����	��̈گfz�}ge[����`2݅�j�/�(zOBf��n0C)�"��àW)ĴONm3cf�•�_�3��|�2�KJ��xTzRI|Yi���}/Q������%tBn��a�{�	GI�~e9����z'�������
S���3�&J�XY�ws��4�}%|��h���s�����6�7�����\���.9�g�O_�G"q!Z 1˿�몄~��R�����Z̬��ˉs.F��q�Vɩ��y�E�P��p�v�ϐ�L�3�!�p1iw�[�8���?ӫ��A�����Q2hD0�3.�eqr�M�y��x���|;���g�<x*j���'p�$ �?���*��׏:C��OJ�%�}�C�ײ�b�1�ἆL�ܺ*�{p�w�J)�8X����̠3-�TW6W��I��?
^��x�M���:��`�)����->�N~����sQ�W<�H���]��`��3x����}��Q����F0}���>$�aC����(�B��=V���"R<��f熬�թ�M4�L�P��@}|Bg��:Z{r��F�,��M)���"ӟ]n.��:��5t�fWw�&��;��3l����Y�"d��4%s�:>�T����r#�p�T*����ٯj3��B���y��)�zFaFEo�|���Ch�������J�ﵭQn������"<w������#�iA��ak:��U}���*��)�ͥ�(����-J�vMs#~���L�`/����#[!/!�C��q�FƂO���l��ԋ�}e
�/�=�>	n}��"�G>7�#E�6»����"���?{�p��$Y��wG`�|�J���RH
?�ƱsX���������ǔ�O�q�G:p��X�V[�-�,���o���0y��k�1Nu�=]F{�ѱ���s
�L�3��K	ؗDv�L:���7=��U�侲cB��Fj�~q��09�������e5hlOS��mϑ��Gqg�f�9�kvp�ƛg7��HkxF���]��[wECP{���k��>�ݼq�K�K26O��"�]��	����k
G䦗����y0���)'
P)�p��T8�ӠY���IѳP�N\��_b�ӟ��a�DέG�&K�n��-f��z��=�&��pޥ�m�3}zJ�~��+�[��y_�`�,Oʀ���t����6�待9���5��e^���צ�	O?��(���΀�>�r}����[�i��;�
q���c�W�%���D�>�˰�$����*X?�ی�=���9���ka���GFU@�o&��R7�TV���~�>�[���TW)�3�W|���x6�1���/B+' �+p�jZE�.w��*��GL�⾦�I�_�����H,[���B��~�I�C��?>&'M��_vi�E� d+ۿ�H��_-�\-U����C
�{v<#���"�NV�E�k=�q.��*�hRl���!w��=V�(�����L,��ѱc��U��$�p�3fK�@���ߏ.�!��ҥ0��L?��0��=Ý)�0��~�d�����1R�D�9�����z�$YC&�����'[�[G���&���F��/A4^�S�}R�T��[�w��Bd(�j�0OǛ���HXo3�ş
d�a1x�z�[���B�9�7�*FZ_WT��@�߳�J�}0|�ae$�~�cmek�ޞ�$p*/-Ne*g%���iC3�$���V-� �L�‡�5��P.;���~M��w��a"�7�ķ�H}F�
��~\�R/�އj�'�x�)'�Vc����%�B�i�}����q����__���s�G��M��.j6�3�װ	�sᥒ]&O�Ҵ�f8�к��O��r<�>�(����8�wd˲_�/����sd,}��N+�$7�;���d}������*���B]D�]�0G��mģ�����e�p�q�_�że��I�W$��\�-��O��cΡ[gqU����]��ù
�X�;�������Vۼ\n�a9D����
�p���I8.t�4T����u�9NpF�>�������@�~�c���"c�E%�����-V�`���t�= �67*��%.��3SyY�7��3/i�Cp��ifۃ��p/
haD�_#�.�'rN|�C|��>����/��sNƠ�Qz=IM�eyE�Zx/~�<��
�y
z0��^_�3�J
RW�v����v
j<���Vgڄ�Ǎ݈L�4�=S+��as�.��$KB2V���%|	���K��.�ƚ�Ѹ���'M|�J]��,4N��_~agp�����z�^L�U:�9[��O�p�SsU����ľ��ϔ.H�� L�p*3�Kj_�l�x�n;<�?��#@�;u�Z)e۾��l��p�=c�x
��>Zs�w�b5����>8�����dL�Ɗ�R�*\�YaP�Kw��I�菉��=DM�`�v�7J��
��
�m��T������'s�N����d\@��<�C�%�ڑ���%V�����VUy�jld,�R�C#o�9�m����/�
~���u�%I[?W��cz@q�Ȑ\�HS�U6΋Wj�9�>��j[�	s}�[=P��vL��U͌.2��Q�-Au
�C}m�R�\8�]O2N#TR��GQ@�F�v�4�c�i		��������ڹZ�D��-IZ2~:B�_�W��Hn9�<D0��>�dP��?�f�m,CDr�Z "��t��(��~Q{�C�(-�)>��V��G��G�V���A�o�?�:p�`6��K%�Z�&A�-�_��%$�~�;��C�����D!SdJA�:[�~�	�����,n��4?�[�:�`5%�������y���CIf�UJ��C��11���PzldXD�5�^��>W8�?�Ҹ�K��N2ȶ�̹�]2[M}v��g��s���*OA)���o�����u��W��z���P�m
伙�;�U�����
�5������+Cn���:J$E#��ٷ�Ҍ���]���ti�T;���|�VW �H�d92A���(08�r��K�~��`�w�/��X>�2��~◡�o���I@Q�L€�Dz���3����8�Sf�b��B)�Y���Y�e� ���O�
bTIA��aLd���>��:�h�Է�(��iSg�L׌4�-����~�6��*���C�`'��խ�8.?iy�T;te���?��@�͉8G�Y��;�T�C�a���sukYs"��?7}9�%|�'�>˸>�����<�]T�F<A�gO�qW|�vt�,�5M��Gv��+����8}�h�\�N}�ū<}�[*cG��E􋓐�Y��P���ǒe��Z5'��~%LM�>�����'�bM�$酁+�f
���^�{���n
�dQ��$�D.�b��BZr�q��ڸ����xd��F5�'��
�5���k"�n��4����S���|����ӱ�	��Ն<:!�}>"�s\-cA����P�a#=��×��I��$�s�Ά���|c��;�pE�@G�#�@-���`_�-�,�Z����J��VA��'s��^�Ű�mG,
Ѩ0�&`���� 
�S?�,r�&���}�@|��怾��Tk�tۉ�=�~:/'%�6rM��w�9�ȉ�(}�S�
I�ӹ=ӥ��؈�:�a�i��_b4����Dl���TN��f��ߟ�^��.5�n����:.�>8�D��b3���`���idV���I���ۜpξ�/6��պ��i��H_��<�o��rf�st��=����Z��̑�_��t���n���4��U.�o��2֋)q
3C���b��|�%�����D����ۏ~Ǯsh�&��d�a�$���zͺ�Xm�L����[)�5��"��F����Ċ�[�{��_ݴL��7�Wi���|��&	�;��A���k8l�~j���-:�?1��;̪_���[L�"A�]���#���~��(c��!G+!b�iX󱿎yiovI�ˏ
�e����/��mZ����P��B���cBi	$7�"��#�d"����Z)��*�[E!O���jG"!�$_�Uڌ�?��d��<QP�狥��`�ӵ�������m6���L	7ԓ�@P���B� D�[� ��
8t$
$7�d�m
��z/��$549c'/��"�$��X=��_���<�T�t���RC�Q��qT����¿�4w�H^@�	��5Q�֨+Ȏ�I�1��{
,�p�mMр#���fyb3���D0P|VI��)׎�;�@�7�^��Hr����V��'H��ze�j3��jM�Wa�?Uk�S��
F�-\ix��Y� H԰������ٌ�%�~����:��3��+��=`�4��̆Ga�!���e™�ͳ���G�u���``y��F{���+b߃h�>蜩c?��ƺ�mwF����������)pv
�J���&,>?��b%�v�p.Qy��A?Euڂ%�U\��d~HX�gu*��0�`�=�ڧߓ[o��K֗�L�5#�<�9��ceE����
Ŭc��;��&�
dv�g��6=�����+�n�Ej∆��#�u���"�8o%�_'f��sB�)��U8a�M�6��~�7�̥��v�N�}��2"[������v���y��%��b�t��;��7�Q0;�H��-��~�cF|Zc�.�ܵr��*�;�H�;�f�ңs���1���h0;H,|�����S6p�v[=^̙߰$f��F�Z��jX��Y*Y~���¿vQ(��$��k��[��Hh��cCR�@I|���z.4#�&�:K�G��&���_�'a@�s�̈"�$��r�v���ݽ����R��Y6z�?%�R���4����uՑr_�j���W����]u!�+�6Б��R>.Ɗ��]s�
8�FJ��d���p

FP�<tm��~����
l���2�l|�(��T^5h�N	�m��o�˗���I��7ʞ�#)��a-M����nڛaJV���m�{��Z��"�0�%1D���<��۬V@sn� iҼ�\'�¥�Q�o�Ĕ�)?�S32q0G�I�ym��[I���+�=S�X=��|��8��.�5|�$���a���m�]ۺ���㋂$�����ͭNY�-G�%�^^�C��S�™�
I	~�a;��(���Wk�4��E݈�Ν����N4�m�gUDv��N�ȡ{�?,$�wHl��)�W�wP!&;�|�ɿ[�B�Ϧ��Jo��6O��9�죸��k�yvf(ɴ�t9�v_��mn���9��CH�[u�\˿}\S���ol"#Ll�D�Y����o��;�m^�XU�K{�[�����ڮ��԰�	n�JH�I;T`dڂ,�k�/�,6*̎�h���G�um�F�	�h����΃��1�̎)�p��I�.lX��f�\����q��igc�8^4Ql�a�j���9�j>��|��P5:PX���)��ۧ[ե[�o8�����ڙ�@iU�*����F��ׂ( ��2*��D����1a�D�A�I���E����w���x�_�d	}�9e��O����f8,M>>+C��U05�9_�Ѻ|�w��u�k[ed�*�M~�T�9b��׿�\U1�"�z{f�{��0���H�\=�.�`{g�����Ӝ��{/Q�<^�;���eԂSRJ뻚����ݱ)����Ŏ
6<|��%. 7l,�����q�L���X��f���K��R�U��`���y�!��S����i�(��u����u
�Ek���W�_���K�zQ�@��E���W��`V(�)4�s�b�Sa��_�Ŧ�����d��b���o��9�S��F�|�/p���
�b�6!X�>�ʌd&vPV�ό�ަ��ЭEeH�V�&��K�p�0(ܸ|���m�1��M7Z��5��w�l����6X���<k;xK|��AF���y�{�
-�����`����]�u�<GY�0
ԇ�b�{�ގ�X��_VB�1!�G�5ϐ8��ٍ쒲YyZ�#���6�yZ��)�`:D.,��2>ARM��8��f�U��r���
.�i5��y��8-�^T�[�#�X8F�V�X�{`*0e�dk2�}mxv�wξ��̵y{�5�2�݀�Z�׻#ڈ��f�p<���K@K��'Ҟ.� ��ّ~�+�}
F>�<�?m�δb��SbE0&Z#v���#]o�ǃ�74O�t�,��:��3�*��U$Y|_�wI��A�:1�&	���ju~_��=߿q�,�bM��8g�/'�iEQ~�/�@9���2>Y�xjX���M.�ǎ*	u���N����
��,r�؍g�LW��?�8 �wKY�"a|^��L�G_碗�P�2��J�u�^��g,�hX���y`���Of.�c���bbr�G�W��������o���)�:Y�Z�fQ�|�fïяz�%�6q���E�(C�J�3�b­��%6��=�����]#��aZ���BӁa�Q5)���T�i��jJ}H39N}�nd��Kh���e�͒�w%���[hq-�s������چ�\��ݧ��օ)��N���@ ��o&Β $]�4I��,N��ς�a�L ��U
���,�9�][�'x��K�%������t�*�5[�>Õ����rMBʋ�ؗ�\x�A�>c,C��I&E�޴����/p��b~��Y��P�1��Q@���R�	2ޜ�d�6V~�ٻ�ޢ�,k��&��B�-Ñ�t>�α��;Eݷ���Vn�Q�R0��3���r�51K�,�b>�ңS8��cCU���ٗ1�?pڐ	�5��{R�;��:�&��U�|����)6�ՖJ�#���]D�I��ՌfAt����[ۤ��!/C��E)��0cr��~�BW,��7I5���[!��''��9Z2O�Z%���4`�J3�eOy~��:�n6T����T���j�����{�*s�Y��zѺFdD$r:���G]�r�o�3K7��;`I���-�yl�e�5%zc��!�� ��8{y��	�%
P�>�Z�~��!	S#8��ڬdh���H\X��K�J2��v�o�yQo
E�ㄺҽ���%P�_Uۋ����NNѲf句�zk��H�dӻ}I�$�rQƓ>\���NH�I{#��,C�QuMԅ�}p��-{��*Vs�!��G�G�nSc�[�%&Y�{
](Rd�������?e�ѕW�{<��uݾysI;��*�L�Ď2m#�_��)��_��3Y���P\~������'�V[(2=�^h%M������ЎH�W� �>�	�=�Zy�73P��h����˗���FC�?ʫ��m皫�|���Ct9&�;]����ؙ0�Ln˭�;��	�r�S2Q�-~/�M��ՊAIuߦ�bƋ������P��aS��dc�^:Gl�#�'Q�������}J��:��v(+�֙�1
�O�{���!~2��y�]���$��8"��Hځ1z�[_���;|��a�C��2
�s/�p�������}/��;u=�.������x�Fd}|�<���W�&M��	�@����)uX�}9�6���B<l��[
�hL��v�X��O��{��6���"�Kj�*n�����I��\?�lbv�.P���|�wV�W�V���w����Ō
m[\S|�0,h뵜۽\��P�����U4�>��j�S����-�-�(�z���B����P��pn�Q<r�y���A�ΚI�
}\v �:�K鱽a���
Y���@>ZI�1|Ym��c����=2�i�
�m�Px�i�(���D�@?���"\�g��"L��C���J��µUL6SU�p�(B������:NE�4��H��։A�_����Z���� ?��u1,����F��W��v�/���Vdh	�v(ɚ̤h��Xw����/M����s0c�E��Я�߮F	�A�#�<�M�
ᷙ�Twgh��fϐ��]	�*�
x["i�0!��!,��6���z�*�r�}�l�쮞9��8��;�"6�܆��>����Xׇ���r?~%�Iɓ�p��Ҟ�wᖭ�h>QhQJS�<�/Gl�P��#��D���S�JN��(�2/E���M�շ1_'L}��F�3�0m��?Ǫ�8b���q�`���=�oW6���d�9�k�n����.;��-38���]����ɞ�|��aZ�j$��)���^zF�D����>(�ۇwEIG�4q�8��be�uE:i�`�V���r��0�f˓m/Z�4vz?�����J\���r�?)�}����L�H�zc�w�Fݥn0��U��#���?�G���_����F��<ҝ�v�C�p2�$��HOP��]Og凓f�Dу3��D�,��yC�j�\��0��4���?�2��@�;��!*�����P��KM���Lr�
������C_��?b��8��=����X�Y@�m$���|�X��9>��sv�L�:�M�V������L}�I�ɮ�e~W%������mF fK7��ɡ=��zdɿ�r^�k��b�7��jJ��_V����z6(�|��u�v(��0lS2��ͣ6���Si�Z����4����	�8g���<V�뾌��"���a���Տސ��>��7���;Y��a�����d0�Ί�:�a�GW+�ǧ��"�cr4�<���d��pD2��_�<�$��D��h�\��wj��hl�t�*��"����5Ȓ�D�cv�x�]�?
90�P�w��.h�(�ɐ֢��V[�n���U�*��չ�*%j��N�s�B�S�L��ﶔ�4*��3e.-	m�,O<iU��~�������s�ˌ��I�ؖ��͹�����K\5��Q5`Lwty:c�Vsu���á��x†�y�=Þ���ME=o�'��x��(E�z‡�G����)]���Ȟ\B�H�4tM�7�<�*e7*/�E�2�t旎;�g��յ�p��_�۝=�˕[Q�kec��O:n��7�%v����#��`�!��`Z�v���8F~ݧ���I��.Kփd�TV
H�uk���=͏�ׇ�3*d�_�
�&C�!���Kw�_��;2����"��?!�;��pB�����C���Ĕ�.�c2������EQ� E�N��x�5��޾�
w��nT�F��i_Br��3��aS���$��Jh(�FL:D�p5 �˃�w�u�E����%�Y�c��14Rحe�0���Cp�
vc��s�O�S��+G�fr�DP�g��f�R�X:5��şv���U�۱�@����B��Ā5:)O��C���4�/U���Kw�v5,�
6d/�@�.��!��_��H]S�	��&�Gm�a�}�2	ħ
|+���^�)q�G�A?��e��ƍ|Y��-䒯�-I�ae|�������ب���:�fO�3���y������i�
����,������X!��;������*N��p��uC`D��U_�̜Ű������1"������x�T21Ѿ��a������3)��.d>�B��0$ly�Y�;l�Ɍ�����r�����yΓJi��&�Z�N�/^IuQ�����9(sg�@���Ო;w;�\Wݓ�f�����5�l+��O����A��2�Ql_��q�\���R���%�Q�"W\J6�F��\���<�5�w��5�u�Р��%��Z+6�چ� ��c��nH!����	�'
G�Dl�R�%�4c"���p��E�l�F[ڒ�l�
֕��PӁjZ��_i{������Ȕv�ʄ0k���K����?_
�Y�"Z��#_,�y��^��-&#��ۗ�@�`�zlB���w^*���`�����~��s�[�I���_
�I�+��	�hI�\�T����v���a1��ApLV	 z�|o��H�˘�ĵ�!���.�E��{䜜�Z�CX�� L𨵿vA����DP��Ȭ��>aI�\W�>4�3g�O�\2XV�����.�"���X�(ZאR���
L�u^q/�V~�"�sA�"ba�ݖ�P���0��lAb�Ԭ|2�����p
K�颐0є��Un�R,����L�I��c��F�n�$��`f�죀J��g>��x�A�a�ȋf���+w/y2���]�*1̺�ߦ5
���֋��4��V�d@�UӠv򓴎%'Qb��	���Q��*!+E��_��e}mE�|�y�R�sNH�����ܺ��D�������w>��Ƃh�YN�������9�HؾK��SKv�A��7j�U���'��\�����"��0�������)����E���V<U�!�ݭ]��6�|�v�>� t�lx���DsJ��'���~���ᢄ�Nm����!|�Rޫ�`���۽�pa�`l��Rnq;O��k1���Dz�������)��+�j*/�%D�~��>8d�8 ׉�o�G�=hb_�(���n�VA��$��l�'w)��+�8�_h㲫b�E���ëK��8DST�6�r��a沌}zYZ$�1��و�¨�k��a��V�,���ʨ6��O-�OR��6(
æՀ:WgX��]�7���)���e.2g�D�sݫ�j��2Z-�[o(i{q�ڹ��<��<�W�I1��d 2I��RD1t��x]F���b����1Z��0o����o�<�va�sND�oe��5�O��S�_B���1��*�,d1	�
�5�3W{p��I�ե�׊Zp=���7�&$L�r�j4z�E�*}wai�||JHh�^�7%�|��Rj�������O�{<�"q�c���l��.���C�>W���Y�[�P��@��L�t�?��yl{k�հ���o��4v{�Fb*A+it��ws�U����dk�W���
Б@9�����	�
u�H���#鮂�9Y�&L�dߗw߾8��Q���Z	�=,6����E&q0]�ղwc����y�~��)���,�ʆ•_��`=����&܆��n�勈6�
�QM�k�]�2�JA ��z0*L���a�{Ψq���S�?������¿�\�#���%;�<7����CHJV\�vY��s��u���_� �J����R���^�������XR�-�v�:?��G!S��G�{O����.G�i���9(��p��e�r�5ӛ8�fх�x�(��l�C+
�)#p߾>���Y�5Hn��\�^ O�4��]�G��Ns&��+5��S fe�`�F0‚���ѭ�ƹS�u�,w,`& ���i-���&�����S����m�/�f������$??��LO)���{�W����4���$��MWw�Zh���ӈPm��
�*5+Ȉ�:�,^��'@���3E�fK�|��%�pݥ�vN:ȩ��}
�	*�$b� !�p��$[��(P�aA�A��/N��Lh�)�%�l
A�P�s�l�$9
�燳W�)��^�����yaEzz��
�:\$=�j���7��r�f(C�**����#Mdl"�l�>A*�o
�mSӔ��ɡ݅׶��8KV�_�+{^�����8krX2*�O���r�,�&�,/�� F_;,���	$K�	�I��� ��Z�� �dDffk�����K!�@ˮX�W֥.��sf�]s(�x�P�o1�n/{0��do�ˋ6���"�A�^gp⻴����'7w*�^���k]r2t��nH�43�\��i�.�D+l��O!P`+l��:$f��n�N���e��O�jՌ-ˠ_�����j�Sk�x@��{@Lk�m�r#���۴�b���F�C��t}7!7;��ߜOs�7E�����j��dH��f
cSOj�xQvsZ�9Z�
T����vk�-C����ֵ0�̫�M�
�<U8��%�2j8��u_߱�!?��QW�K��њmm0�<�H0 �Y���H��
Cfo����
��<�a�̐���}�%�������w��ܷh8k*Lve���|F6��cC�N��^cU�B�����$�L���/�ֶ����Jr���5iLp_�{�_Q��|�"�P)%���ځ�	��Y\5�{J4t��ݠ�$��I���K��k�ukw���X��y~皓�)D~v6p�6Ŏ}qJ�L��N�xU�*;��<D���SZ��3�]||~��r�0g��������!]R��هi�89�2�/�c��a�^�f�i��̿<˨��)�����^y�Uw����x����ǜdtSUR%�~�Bj�\3�0�'�9�^2^w�"�âQdk�\lhJ	�#
��P)ߑ/�	�Sh�|�T���/|��fr�����D�B!��������_������߾���b!6`����]n����C��+T���ׄ��xKt�T�	N��}��h�$Y%ѣ���O��<h��+�6-.�1Bط���D��/*�1]�k��		�s�D�����dk�8Q&�r2��oyE��]^v#��Զ���=~��aG��7�Oá&j�J�Ê��>�!�G�0��ٌ�(��T�Ӵ"����i�<�%K�ѯ��K�nA8=�q^��:�����|USE:_|0�9��ǹ�t粗}�L�!U!v
iw:p��e�	G �B;�V�4����[�%塋7t��6�ƶ�ҥ�J���m�-C%Os��S�g^6au���㑏�J0�}��'ʎ�P&�w�"��pzN��,�Ų�x�/z8�����H޷Z�e��l#��g8�5�a$�&v<��Ȁ	�]���(�\H�F�$�j�x;���^Kh��k$��
��۽'���+#Li��ԁlDXl��&�(��APqz���9(�9����3Ad͔��pʏ�-������@����}�{V�n_�`F7χ�-'���hx�˷��E�q�;���vGM?���I������-�oL��[䳷��՛��[�{�Ƃ!�}33F��ᎱCzbο�[҉������}��Ŋ�iy@EY��A0u�?c�[����1��A��\.�.�&��
p��1�L]��+��{��?'AC+P�|ը��b{�53�����ķw��kfO4���������N�D����WC�A<��X��5�d׶���B�PP���l'+����!���~�>��-o���܉N�����{m���CBE;��F�џClfz.��(C[�>��U����7����(W�H�Q����0�*ϘH\��8��/�q�ňJ����_�Ɏtώ.�΃!�i�i�ψ-ʪj�(N[;pn�_�d��`�	�7�m`�G��5k '^[s����s�G	���թ���–�Af�N���l��|v�:�
�Xi�񄿡t(ŜFd���]��^"+�p�HN�z{+���C�lF
�o��?���m��l+��7�!@b�����?|�p ���Z��e���v�7�+�#{
����X>_�-�xq�}�C�(�9NC�O$o�m'"��`U���;�%���l�z-x�P��X"�����pN*rB;����^=���}���Kk0�~��&N{s�I$ǁʉ�<�wu�oK2[&�'��_���ciu���P�K�&��u�cRG�Ց\V+���[P`Mjԧ�t�>q[�9�����T"D�P��N�����[���C��=1=4Y�4�*�NK�6p�۸��]�A������jƞ�����������[M���,V�`H�yBX��,�5��!��D}mr�e��C���$Z��vj�%?�O�g+���4�TsށmT��H&@��ڢk=OI9�t.͸�6��������^ιtĘ��nP���a���T�
\K�F|�V�ѫGq,��F��3E����@��B���c��(?��(���䛠Ha-xR&2<���CcumMY�
�t����#ZMT�d���B�ch���ơ���M�~�
K�y��`��\-����KN���nq��si�k�����~E��A�2�#\�Ĭ�a��#�Sj�$�w�$�<W'fu:�K�7�'�l�f�)���ݬB�o���hV�z�|�9��A�A��RA=��d��Yĭ�[���700�%Z��y���Y�0�.Y~�pN���N�"��yo�w&ǧ�!f
�d�c�[�
AjL�[�y'��φ�Q�C�l�;	S��Ŝ�����52sk���"6doO�����3�Ϳ�>� �?��V��T�6mm��)e�JXy���~:L޹�n�e�@��7��ī�w\�җ������*e�[~�����$��	?=L����C�I��`/��R/ wOR�8�
�&,֟<ѻ�����^r҂�cS<�W[��rO��Mܸ;-����B�6�6d�����ssm
h֛�b��Ŗ�s�1[���tުQ\��Y�gҎM����f�A�^�3�l�`��]�b}�q�UϤ��FߝYԽ��o'N��{��\Cb��5�)�����%{���݈+��W_�jo��Lf�s�̒/Fr�~I����7)��hNu�f������2��bگ'�~�7�$61��|�)�������Vԟ���:4v:�r�lU|V��m�7v�t�7�]���r4U�О�m6��<�ڒ�ٟzK.I����. [(�����(��'p	L�݆u�ȼ:��M�ǀ�sX0-᭔��^��ñIs&�"����Z�%Asc��R�/|
����s�fS�5)�3S�>_k�aA��������'�!�fJo�xpc(5D�'RE�J���t���]��u�^=�
�s+�ʖ9�c�>�y�Mkň�?z��I#�O<H�ϰ����M�n~�~B��_���w������:�
eݦb���m�E�(�Ba�i\�%P��ov-_�Y������z���|�ϒdn~�/��N�y3Cy����qpq����x�p�3�:9��6����yޔ���z����7�_���܆d�)�e�̷����E���"[/��CTؾ>&ح�d�ƜB���w���i,d��;�@�`�V���^�S|ۍ�.+���L���T�G��w���s�:M%l�qC�*�g_����NZn��`ItxJ��tj.�+8��UI͓��<�va�.�]_�[a@�t���������I��M#�Z�? J���}���6|_i��	E��ҋ�7��h��+�3;<���L+=��{y�@VT�4�h>B���Q�QmX�Ǩ� �>T�Ж�ȼ��讏f๺MæU�T�x"�(/b>RN���BZør��~�7����ʼ��$�1G�l��1>"_��s	�e6�8,�=�C�8�����X��vT.�ȣ�VMVzߨ���"��9���Bw͒�{x�͒�LY1T5���)��D�$a~8Su����	&�u㷎���r9R?H���P�u(U�1�X�'�fz�d[�[Z!�_ؠ�OÄi��x��!T&-/�3
l��p�)��>-r%WAb�`��d㮡72�m'	����c��)A(@�-���eXU�\	���5�I�K��?&l��fr���Ǝߩ
�Y���F0�ڰ�T����jR�R`qCB�Ʈ'��9�Z��z�e�V�c�	��!ki�F�J~����2�3
bگ!(,$%�^JYL�>#y�i�jH������w�,���a�?�@�đ�s�IT�#/�+�Y2l�}�\9��^��60�Hb�C7s20�e�a<��Φ�&y�|�;E#����|�*��w1AY:�n���x�l�r1¯�Ld�"v
k�z���"]�G�gi%�C��;�ځq����k����ͫ�]<#c�A�� ���n�Y���qW������ul�����}>KJ/i�j�Ɔ��H��@�-=��|p���|�Hr�v�*zp�UV��i�:��
�)���
�҆?��Y7l�<�:g�t �mqec>1ۑ� ��<��
��;�{��n�eu�.�Ni���\p��E\|Qv����{�mOlji�l�DG�����(�X�#'�r�D���K�kI�r.O/W�+%���'��Z�@�Uv}0L����<'V���de��xf)���"�����h��R9Ӈ��ؑl�g��u<:`>�9���^{]�H;N>o��T[�;��H3'�ehL<X�f�gY��0y�k3���0JY�h�GA��W1�h�"��|]���x�䛖���.(�_����λĪ���a�A3*YE5?w��p�a,�ty�^�LY���Ԅ#�4d�ـy~{��x6��[ν~S��m�%�u7/VKjb�|�.W���~X��R�O,����&1M�gO�G�o댛���_o���X�b��BA� "�m�� �r~i�v'�3�쬚�T�e!"D�6��p7p%�]8�1����
�>��;p�g�li�	��y&;V�q���NBX�ʊ�*ֿߠ'�|�\WE�<vx�P{f=s�]i~�g‘�~ͫ�.�':\N��z�؄�;^�*&\L�-k���]i㟩CW���׬�O��I^]5���?C�����
�ݭ�mtAо��5���eK+���;@`�6���̃�t��I>��X�V�k��`�-a���[������xW�U8�_�r���.�(T_�臖��y�������7:�ğ���~L���mE���5P��Ni:��Sq2 x�Ȏ�$���NR�~�ܪ�Ґ̑J�y�7u�-�eX�B���i:��Ac,�V��U��k<}I�����K-��Ɇ7gƚ�I>8�D�
�8�k?��]4I�f���y|��_
�����~����\���W��� ���s��Dq��\��1�Vs����T
,湕76���1(Kfc�S�i��o�n�2<��n3�m\����=ǻ@����ً�{NǦ��|�E$ܣ�-�%
89��H�i��n��p]�
���a��A3r�ٌ�>���h���߾�F����3{�&ii�!�b�]v�bkj�ڰl��ַ��@�p&�y�'^-��I��Ԁ��|0s!���/��o'�|&��#C�~�ES��c�V��K�ˆ~`�{�@��f�/��n\��5���u{9��.��~�Z9�W;s�oݪ��ߔZ�,'�e����x�G�w�~��������Z�Sٗ
�r���i��?�u�����#A��o�1Z�cSj�!�?�,/��0���X��L��B4 �7[J�#钿�OJ7��C�,܊�
��
�B�48u�և7:�?�O��T,E) ��C�4?嗓{��*�y�w�<�l��J�o�@K�����]0�K�g������#��t�
D��w8���7I�l�Q�������^��Dq�?ekZ�����'�p`�P
�'��pBufM��}�/����<�ǝY�[���Ul���3�캕?o��ZW�ӑn��%�/O��;�e��d:�%7�R�A��E��Z��f���2�r��A����TL~+���i�՝�?F-����K(=s.�:�7��~R����	�%��Q0-��'X��'H/�j7.��F@O��W���uLޘ���Ƀr*
S]/�nL���$0s�����R��0i`���� ����
���<
���m�^�^<>j��
���q�<��'�������;��]L�-�@F�RGOd�V����y��o�A&W���B��Z=�|�F��ʔ��d��H�#J�k�Ä�)��b>Q��������tD�M��A+�קG.b��(Ĺ��SD�J�3	��-KxrYܫ�]6���@�U^���"H�.��B�q����_XG��
�L�\M�a�Q'��<� ��mNd��禐�ɵV��"�C1��yW]E���p(@"�QG�ƘT6!g�w����1/���c8�xu{c�����H���0��(���/���HD4/�靤����_�w:���IM��"�,���@���D�0^mP(��z������ͧ���")�f�0���v��fV���>��W?�^s@1���1�_�c�!X��zS�KD���NNh�ƣ�J��L^�f�/.�\J�H�D�2jы�y�=��6��'g�Tvq6��:�Yd�"b3N���
r��@.���P�ë #��.Qgſ�6k_���$�蔫-�z��<�6���5J��K�R6�ʌ:�D��IH7���cB�P?�����
b���7�/�/�4,u�_��#*��L ��32�x-�_av]����?>fbI1�F��4��i�W�r~�Hw[1<@��d�ؠ����׌1��q�O�f���OǗ�9M�.t]�@��c
�fpjhC�]�W��^�d�}˚L.~�Qp%T�7��(@��2P����a�Iy}_���$���=Ī�w4��E`4!Cv�v�>�0���gC`	�����zܖd�<=�A��0M�7uK���,�`��F��N!��Mދ�)A�[?�*b�(������{w)�V�Jr�B�J��ҥ�C�u��.��#��bi&���=���\kn�z��?��Br����:�}#"왶4:�=�i$<�"��M���@��Gb<#M�6Nq=.~�ڐ
��K�H/�p�'�`�D�ݲy1�5�����N�O�{Am�q,��t+��6�^�a;,%߃�����Y���*�nw��00��
h��lg-���[\��OSjH^5�M�݆0S�nmʚcБ���D��J������Ei�>c0�zdU��2�V8K�c��:7��6��N����)��>� (���rL�`�Z�]!j�+p�j'�����"�ږ�G�_=��'�sAԡ'�h��[��%�r�5���4���E$�r��@�c�s����,*������{{����Ľ��Z_���b���@g7�
��3�3��A+��Ѕ��;�JZ¨��
hu�����;�p>���lWZ�ܻ��dH�������Y���~�o��Lҥ���ѯ�W#Z��ǣ=q}*Ӆ�Yd[�wp�'�g�a+��}��ڗ�_��#i�X����`q*��_�vI}�<�T���8�{W@֯��9���J���+������n���o�BJ�l]����u�6F��]���W聪ޣ�~�fsH����i�yC\A�Q`�x+�S�w�	��P�����v�"�+C2Mw2u@�-��
��:p�Br�6��z�mE07�
�=�<?G�u��ϭV7�?i{�������J�w��'������QD�*�l��?�#��$8��O�;�p��5	����RҭwZ*��p��q��㉸1H�uc�}§�����W#Г���p&���q��>�n�4���9�ab�X��զ�>oq�_pƾO�e��V�\A��#���c�����1�xZ;�D����8���L��2'�j���/�K�+12���6���(]���R�6{9�Y�y�����PcЌ\J�ُ���b�]�+�N��4�dP(=�*���x��J��NsiF4#z���o�	��U�ֳ!��L�����z��Jh�~I�2U�"_�aV^R��")��/I��h�+�~���(h�w$�<j`k�ku�H
E2a?5�^��r@a��3Do�6.��O���In„��ю�_ѝ�r����E��{=�;�k9��9����,�ܸ��#�yP)�R�=�&`��ФWN H�	���Q��b�����8"��֧�q���֒-��s��k�#�CS$w�����o
Q��||�������V�4�&;=����19?�@Z!��WÊ��昡4��~}���@J��t��-�Rv�p����)���@:��q����Z������X�W�'���Q�<<�;�eUv�a��VG)3f/�22$�1N��k�S*utoDF������M���Z���C��t���~`T�7_1n=�#���ug����'#�_��m��Xdм+�{�D@��\䧀�b�"��|��){��,��9��Up{i��Ԯ�[���>㷼bm���NH5��[O�.e��K�%j��^qZg�o��X?3?�����������g�gEX��`�IE@5���v�4��H�,�N�o��刺��w�H\�}ߏ�9ƣ�.����1��𭸦�CnR� +d��K�f�IyՑ�>ߝ:|�2cQ*�c�,�i�^���Ш&&�qs��O`�:	�{����"�+,�v`˞���d����WKC�C@���
..�SS��A#"�X�|�������/uT|��I�u���W�]n'�m^p��͟�����{��-M��|ex4O�t��$E��\7O^��ȼ_�kN6�;{�=�P�����.u
�eω.�:��!Lql<|��U���]_�����ߊ�s����LF.6P��y�O;�CD��2�n�1e}��Hk~7
@�\֜Y'��"0���eY�o�[#�͖<��=�t�85�e�6ؚ�v,���jpG�G�߼.8�����0�9��#j����b����(�R5f�`����Y�~�%���0i��wDB��ɯT;d�C��e7�Sԝ�,{ϤB�{�m�#k��m���6L�/K�t��*���U�\�vp�Eկ\U��]�Sg��]eu�ur���������;�q�Lk�_]�ff��VC�šd�}�H����ux�T�k>޶=h��aE5D��`�X1�*�����������Wz���9�z�듣��gF�Fx��%�����OD,9�����.@�����t�V~�g_�zU��혃T��$ ����N�0I���@���B�Bҝ��dp�|2DU;y��Z*���ތ~V�@�sa#�7W���l��P%j`w��(/
ױ
�
�X{-WE����U��}��a���O���(kj��~�&v$;��P��5�
U#����<�]
3�0_v{+��C�OO~j�o^֊�o3O���q��
i�u�+)�H�t	����������Q��Mc��/���1��5\�C�;w׋���g��l���B�zx;�Z���*�Ql3���XY��X�� 	=~ͺ��T�_}s��	܇s�cSͪ��;�&(��}Y�d�+t�
�awfIx�m?7b��L��)J�����2@�R�CMpH�ԇ����a#�w���h����E	�Y�T�2`&!ش/&g�MӞS���g�\W�j������x��X�)u�P��=���>�5�Z8��i[r�>������H�Y�_���I{��P�v�d��|���*�u�F�<���-����"&�[!Ё���f�wbU��&�`�W���Cg��r�
Lu�!<���
8}9f�6h�zBvxK��Jl2>J%�+��y��p�Tz�]t����*#3��}�����j��mC�����z`�z�
)��7�rn8�sw��O���9�|����4��܈6�S�����ٴ�����OaЄ@&��N�4X��1S��ؼ���p���kb"t�DQ��mN�۰�lI�!*���B�6����OA	d���:a�Ź���>�Od��]"��1����)���V�c��ᙼ�@����.�6��
dC��B&ң`L�#�H2E���<�+���H]>���;���T
t��֌�!Q�w�-#h��Wo,D�/YB���N�\k�CW�/��)D8�/u���eR7�m��wT�1�s�m�l�gם�e�K�[
AN���'�p‹�G�(J
�xT�i�x>c}�Vs�>�ܴ�">������Z~l��Mo��?
"n'��_�_��"848�����%�s�6���)��#bJ_���������>`谒Q��&?��t����T6�N�hbn�>c���RF�1@FM���,�@�VP�m��J�g��q����֧�"��
Ѵ?Sg�ەf֥��9Ÿ�����B�z�~�7��!]�x<��8�>���O�;]�f��|�'�}1���<�m�=��@RIl�^L�;�l��&;�q�	�
ߢb�.�Cv>Dž�6T�E�F�DŽ�>�f~�+g'A��!
���p���k��3��_���*
GP{�S鴣���;(���
G!��B�D��f��bK?l��#�#�9y�8�An��V쯬R��Z���r�3�"0�~��۰FQ�H7p���o�
v�s)n�ؖ|e�|I�֘��V�e��9|��>g���c��p�y9y\7��{�c|��B�Y��[��ބ�߿\��;���my� fhn$	�4

�m]�9��r\��Ƴ��V-�]�^G�(F,1h8�E4:��	����_�&��
|}&�a��qꌁ��4Ƃ�K9�h3)����c�aY�A�}+��'�9�s���O��mhB�=�o.Y��|�-�{�w����C��jI�y�t�`r���OCݿi��`j=T	Kj����B�B� }���|=sM���➢�ʝk�b�+����|�5ߐ	o�܅Ŧ]a���PT��㕾wZ������ƌ���@�Q�9G�-��}f���|�d@��̻�_fZ�m���	q
䭻���2�^~Sdž���V���}au��u�#�ue_Y��m�@t�B�b���!�.{���<�h:���4K����A��U���ݶ�U>����{��B<P�>�_���47l�z� ?T7��ܞD��p�����ɶ�1�D^��C��G{E�^�2��U̧۝�D0gZ$S�XTH_h]_4��3)Pj�CjFna�+y�`�{Q`����Es8C�TS�['�����9�ҧR�$G�ue�lɯ6�t���[S���O�`I��+ʘb�ҭ�{���"i{�"\`k�Ж=��rb��[��ʟ9�e�9�j�����Σ�Z]��EO����݊v�d0�$��(bv�Yq�x�q*"�{D�s6���w���3ɲ$����rx.��[���os�\1��%������lͻC����?�6U�K�S����";v��\�g冒Lq'i��n��8"ID�d_��8MY+-�x�_��c��A`���F��]3������b+Li؀>����c��@��l���Ε�<�
:����C0&m*�xc�a�r�˼�Df,��}�����M�H�C���hq� V�s0��˴�U�}��x"P�]Ӡ�G��[�͙��+0-(��+g�]%q',�E�L���A3_n�� j/NPܞ�B�Q.�7��2Ӈ��i֘.��	m�Ʉ��3O��8�Yb0:�CA�hH*��3��3w򡖷f$>���C�֭�8w�<��
3��-�������v��g�2����'��Lm�ݭt�YD
��1H�X3��Z{YyR�Fc��������ċm�{]�s%������C&o�JR��"*���F0zqD����.�]��+Jw�=J���>��Y�3�ݻ���ۤK�=ܕ
���PE�/,�`�1�n�z�0$U����,�&���Lp�b����4qn��fV����
�t`?O˺S�jш^b

�!{?gC���99�Ț*���D��(fwl#;@ոz�W�~�Yè	F��Hu�k@�F����mz��/h��W��)o�'���f�?�K�F̔�ս�����j��\!�E�e����T�y{�C!�:���3���ו�{�{*����uKXo6��Ct�ӏ%"[����D���m�L��/�7a���IzP˔�1��Ҧ�#MX�5z�����uj}�����U��Dr�_��~T�]�צ�x��C�F���[�4m�p���������_�#ڶ�'�?�G��(��d����|�ŝ����5�_�v
���ދ#W��c�R�+�
�	h�3�Vi�P��B]�%�h�ԟ���\v��K0��R2��V7 r�!hL�k��`
�3�M����v���T�:����JN���V�b6e�i�Mpg��W5���V)a�KIu	Γ��������?�|�_$0f��'�2Zټ��Qpа[��,����M���]�Ͽ���d͊\������0M/�^�G��X�~���U�IcO�I ����x�_
�Ca;A�L&�O�%u��`[CԦH��k��+�p�pc��?-X՜����'�W\��0H�rI�D�z��Y{�csQ���\?y�f���A�A�\Il����e~�_�<�3�8����ᎃ��q5P��6L�~l=��x�9�G�t�|�|I�T@��A�k����h;o�D���YxM�~D_av8��hWD�W��7,#�J�aI{.�pS9��[>�o*��ɶ�7\�	'�Ƨ��dhRViE�j1Y	j���=�)}��H��B���ܫ�l�ٕ��q�T����ܗ�-�(����ߒق��`��
�n3�e���t�v^Rua����+���*�'&�n��?�Bc
AF�2g��F]D9��O�<>��ݚ�/	9;�>d
<�|c��Z��N^W��aߩ�k���7&g�%�f�(P-':��?���u����d�ɫ��ɡ�_�㉽��i&m���5:���bH�5�Y-�#�ܙ	}ȓ�Aj�Q�|`�I{� ��.�a��C��6�vR��3������`[�0��P��3d�]�.�s�f�!�Y!(�ے ��J:�p7�5����jl�Κfc��2a�am�L�����
@y^|?n"��0p�H�%U��"�D�Y=����TL��/�mW�W䣗�g��	��+�	b�l:E`��!fe�
�
R��V�R���;��Ѧ��;�������X1^;a�ؿ�~���
���1\���3����fɗl��HlV�n�����݂���\��ar
�ο%x4(��Ts~^�6k6�V��%�؈���}�H��讨�Y�g-4)M����Ƹ!"'F�	t�	R�	
��a?�Yg�q)B��.��<.F3�8��&�&�B�k>��;c�Oo���X�0N1W��6��7j
/H)�\���签�f�\��I�K^�{����R�p��R;���

�J�}�K F
�b4O�F�����k�	mԨޮ��&?(��b���v��MD���v�s,�i]�`��i{�^f���#��mg���U�1����g�$R���͍�
��`��
e"�|�{I�$���0=d��c7�%�lA���ם����mZ`�U[(��L0��/Z���'�ң��11���Ү[�e-J�Ȅ9$��&M,�:��	ѭ��A$�C�Vnr�-����6�x����Gp,	�ސ(��s.���9��@,�����<-�S��5&v�����Z�$��~.�'�q���{z���G�*�A��FE�B�a"����P�~�~"���I.uo�ZGӯ+h�eͷ'���9��0d�RK���c$']���牞Dn���{��L�#���m�U��6��-3r�a�U-j~�Y�]��J7��%?3� >_���\Ϸ�!���D
_?���g��en�qi�����ȯg&��d�?B���*<ŕ�%��L��1��3�q{���_׊�t[8�;TZ:��k�^_؅�5��y���Ö,)-��l�����e�:W'�����0�����evk4n��ڇ��r)�������s���Y�m���@���	����=
R�m_�F�^�2D���&>�&qꁖs�6�g�lN��ɩ��۫6q��M&⨍�	�'r�p^2�,��|�KD[UiU䠫)
{�s�f�i�ѽ�/�1�b�Sb�:�}~�A�H�zXWh��;A���	�Ϳ�9�Z��c�Z�Ԫ��0��׌o�t�T�	ɩ�dg����sDҡǗ���Wp��T�ٌ5XQ�>��NVZ
��Lܸ�N�ң�ڇ�:X��%��Jh�Oq0��wTu4
H^,L:�����&v��꣩�"�S'��Sq�n���2�A�����,�s��<W�w�q�%h�d���c�'#
�R��z��#��~s�ӟ�'�D���N��^�T���Iyڐ��F���c5QK;���'�hL2��k.@_�yަ����|�����V�>R�½�m��x�	h��4�>g�d��2�5l�K>{`L;Yc`�&�ܯ暢�������=I��mx��ov�;���z�|>	�Ga?T�83R���F5�Ea|胑G!�)��L����04	"�����"�d2�C����P��������j��R#�����z����κr��e�P�c�:{y�'��td��N_.�1��הY`uytuV��k-ў)����i}�̱����&��zR�`��M��\w;+~�%[��7ɗY�ڙ�Aa�(��tn�i����|�p����\W#�7o2<
z��8Wb�>�&#��<�֞��S����!��,��]C<7��X�&���8�I�!<s��:5+ѷ�zɸ��4?���/0_FdP�b� �7�v��]Y2�P{�IɗR��B	)��8Y:U���bHZK�m����1Ts"��$+w�
e^�fc;��{�u�<��[P枀��e�M[w�h�G&(�w+�b��^_fB-������Sg�䭟����I�3?"�O�O��4֫r1]�5��)����������QOyX�n���+&b�Z��W��w�Â��b��7�����$�j�7�+}+��f�Y%�\�Ӊ�s��]�Mv;~-�������o/��4�����4�2�vk.Kk�B�Sm$���T��@�,&��ye��~u���P.�Kh�!~�/G@�s�%m��AI��m�ƋG����y!�"|��L�`�2�~�8��q
e
|y��L���(�ƠF�E�2��C�p)���)SJ'�@/A�h���5�=]�~2'�S5?���G��S�l:.��+ثL������[��3�
-�@1��6�&�E=�t�h��L�!N
��g�'
��lڢ����T�x,}�_��nF����z��|�)Q薭�/�]{�.�b�
=���)��V�����b:\G�����C���U����J�}�qt�=�Σ��C�9��y��+�kޯ6�=
D֎G��Q�����E��k
�Ig�^G��}�/�7+�?��
�}FYX�ƀ�wx��fly�#�v.��y���-~2w)߇��ӻ���	�Y��4�fb��}Q�m���d��M�.y��"x|�������d?� �eF
�qX;�'�>l���*
�=漑�u\8�����l�q�,���au�g�!H��v�e̴劸yQ�qT�x�'ց˱T��U���
�?��cB�M{����j��yWٙ��0�IͰ����[�Sd��ҷ�Ff6��Te�M{߷��t�T�nj�Q��dlTR5#_���f̍��톖�&,�i���ǐ,����gO$�m��2N�N������+n���#ȍ-ɶ�lA����rţ�=I�T����k�9U�6��-�����o?�� Ζ٠S�5"��U"
E�B.�����"2�N��"�)�Y@ƭ�n�y6���Kh�p
lPd�LS�������?U��p�����V5Z
u��N�2_�v����g�F�O�[_��]f\ڍ�T�W�/w���
u2z�,�
����O#FJ�	?�KYA�� ������>��C(.����M9ң�E)��y'���$fWX@��M�ƄZ���v�kHg�W���Ϲ,��r�ŭ�X$�6i,�Wz]@�槴��g]N��d����/{�?�T4|`�`K�Ը��A�x�	f���~h�P�7�M&�mn�ٛ*�K*�
C�����Fl�>��Ԍ��9�h�?�M�޶O��o��˫�DG�.^:�`��D��B<���:���6
�o��>U\bl��dt�f�\�=\P_ηv�)��?�L��n;XG}/��B��$�)8`��a��G�cB9��Ta�]��OD0֐{���s�v���3\�b����w�1�9Q�e!��glf9�c0iz��:���c��r^�h�����8���=2ɱ�L�����pݮ������\~���3ClU}s����(�B���|�t?�޺B��̰���^qX��_�80��í.�w��`N&bo����<����oעz����O�߸�N��u�����t&��2��^��·V�	ʺ�VX�[�	[J��
�j&�ȸ+;�B��O���-K��{�,0�)=�W:[�!!o�4��@G5��"�@x�B䟔�}�z^O�C�S�+�]�X|T���8A<��ˊY���$���Z��Ws�YO�K/)�M�\D!�z�� -t�4�4=�?8�]�@h���ۭ�o�휹Ƅ�ڕ��v��0wZe��Qn�;R	�1����Z���u��$4�x�m��hk�ͭ�qlZ��A�j��	�u+��uodD߬a��E+��v�?�Q��_����P�{kK��15U�.p&"�/v{��
�E�콨�o�G�P��#Xs�C�%���{bh�̃��L{��n�Ч7���Ş�����y/	B�1�m���A���u�������b��9�]6R�����2�z�'!Eg��*�D�B�O�oR͑Ɋ�%C���.�-���0v�؈�?��5~�;4�Pb�eow�g{dG�y�����ß8�T�����C.@�V��ɫ�F��XQ1�%.Ő3k�يdg�]%��g�B�މ�`2�*�˱b�h�'�G���Ϧ�o�Gpߔ�ʺ�}X��Z�GL	L��sOc����
�6a�Y�1Zp������z�S0�w#:v5�����e�d
�,:d#���{{ώ��n��g�L�V�z>�����`��c�/�B��o_�;�M �w�ZM~�u8C���;�X$v�ߌ�q���2+��(�A@,q�`5�M��1E�Q��|���4��6����l��z�����K�mV\�ժb��G�\���j����CrY�kM��H�W���
t�9]�?@gկ�V&��[&�8�&-���~���t_���g����b+�d8(|\23�>#@
{ۧ�iSXT�I\�ݴ�[]'���k��5YuƘ�Jn����ؒ�6�Sn�론��5�1�}[NWTW���y�5�8��w�t��q�?e��(�OD�_���`�+�,���]aљA�L����yD�
X|1͇0�@�#�w��T�[+�f!�y��S;���\rOu�v�dB�a-�zʇ� )/
`﯃9���$�Cv���#�.b��9�FP���ԮI��C1��7OR�e�
a�]:�N�t����A![���Np�� o�+6c��*bmm�奱%"��B��PY��7�I����>f�]W7n�6�����i�������n���V��_�&�Y�=B5��ǟ�Ĉ듍���})��;��i�F�B�9b-Z:������/�HI�E�V��q�NzfO�ֈW�ۚ��V?��F.�W�+�yܱ1Z�d��0�h��ᇁ���a4�z�
m��r�ֿ҅�Z�%�����n��ߎ�7ۦ���e�����u�q�7\Z$�<G7���`pov�G��v.D��;O{^����\B�Pv�p#�
��������"��j�g��<}���j������Sb0�nP;,�r�T�ALe7�pJ$5����9*����*/�<�	馪s��ʴ���5S���/_�ۣG97��k�:��D����ɬ�yp�������"�߶h�<��0���,!�^�ے�MW�[|;|�n�S��h{��v����sH�zB��i��>�=�ן�޷
������Bdk@�I6P��@`\!Bh��c���?D��K��Uq��խ���)�-����V����L�9<@W9��zΞo�n>�%^ЯN
^>��Yϕ���]�|=t�wEt�4������@)z$a�ٗDV4�Ja�M�ο�́T�qj�,괷H�;�*�u��T�!��:VǴ�U� ۹���i��w!����c�Mm���;��� ��A�9�#�$2_����*�J���Zs�*��Cm�;	_�8
���`
Kפ�cjCG2�{z�Hn���w�6�]#�a�,�~mt��m~�]2K�����g�w�qX��m�b]OM"��(0�ʔ��M
��{�HI!tg�&^7/�K������B7�TM<���Y�x|i�J��/|.�j��)q1ԥ#�n�UR�g�wV-��1‘w]t�T]�Q����1\����gH�NjRɱ|���Z�N.�(A�i�j�Z�w)�2.��2��n��+WB�zl�>���c�
a�$VB�Fc�nw���_�f��[�/�����PÃz�0�3�Ͽ�*��h������HP���ls�Q��	d+l��%Š�s��l{�o'v��/��lC�p��U�G�O��?v�4�%��!���#g~��T��>��D*��Y���)��(�ѵWh�F�oyY�kN��������M�W����0Ɓ���UYg�?�jқ��*�����ot�g9��6����)��Nz�!���z=}��rE#�YZ�9`k;~�x��%1�W�ݥ�h���I�����$����=��3���p�|^F�E�!a�^P�@Q"f���c��{�)�s2�/K*zV��˝҂�'�L`�����2&�l',�(�R���Zܯv"�m��>�籨��ݣ�w��'��alwÖ��eoʍ+�������'����:jb����l���x?�R(�PE��n"��io�yѰ�.D���2�mt��w�o5F�q��5�#�f��7�,�O���m�b�R�|��@:�4a�oF���n��.�?e��LT��$�n��"{��Q�e!�̪�$�U���k�oAu�i
I�W�O�|�0S���@��{cc���27�]k��ۄ'.��I������$x�s��>i9�2�/�����V��B��İz�j��y��f;�!݇�Q�&�g���M�2����e�\�/���,�CA�JZ�4���M�1��zi�p�_�$1)�]�`�m�ĉv�`YT�Kl���i7W��!�	��}�zd
�	s��#69�j�+����<}�'���bЩ&o`�6�[sP �
����$09s�S�7���A����:	@�b)e�Ԥ� c�[/�~�;M�d1�7T-���R桗� ��.8��3���<U��}�j}��wBuB ��_(j2��8���-���ff��B�z�C��Sg�Y�qChJ�-�=%������/v�:8V��Ϛ-�����=Iޱ5D��^+X-�q���ckhj��3_a����u,���C_oO�\Y��GR*1��/�;[��/"p-uq~f�%�¾����q�RJI�S���#e�XB_q#90�����Q����;����ߡ@�N&ߧ�8H�
�a�zc��L-�*u��p,�}D!�'��^Z%C����5 ���C	μE�L��qo2H�A���S�,�r��-��$���/�tؒn%�ye�L��8L�X�i��ΙKIJP��>+
eV1UKY��!��z0d����|L�žOE�M~`�-���UӘ�~�W9��P����>�˓O���E1�`�ؘ��fH��DZ�@��p�-��ω�3�JEM�G3�:��贡����uzn��8�[����xG*�칬��jG��]^&��vv�)�i��Gw�':��PC��,c��c����I#�c�I��#�(N�/��%G��b�M�	~�O��r?�}^���0r�-�rq�J����6��l�6�	�r9<7U�+	�b�a�}˄�+$���'Ļ�[EW{�P@
b������/�>��1��<��`I>��S�����ӨT��ZC�Q�l�cfRn��\�|�|Ⱥ��o�VWv�B��h�6�V��?���n�4�hZq��O�$���;I�����Ɛ�h3�45��P
�A-���f�[`ot���~dhO��L�:�)Q�E]�lԴOY�W��y�59��Sj�nLmF�������2�js�;~�����Ê��*R�1~��Oc�aU�J@�3���K�G�U�7��2�-#�:��V�u������
�#��=6�|ԑ�	_���SI��Z�9zWm�:�y�~LI/;��u�����d�8�o�z�4�/�����F�N�r(��ԓ�L���*�;�z-C,�݀�A�rk2����qb0^'�P����
U����o� s�0<�hё����W�t4�Y��v�3��P�1�i	�s�V߶�#J�S�6�
���U�u/S�s����Y���d�����q��oFȈ#��	�N
�C��:_t���s�ݯ�M��%d�`O\3�{4E���a�An]ڋ��v�nQ=�.'1��?=^[t|8&}���‹�'��MEe�	��"�B��l|�����R�Uc���2��L8"�4O>�Ҕ�g�6�����	L���C�+Oۂ��FY9�Z�枎 z�Wգ�y/���@�Pn����p�}^0������Yo��B2(ȶWŒ��Q�Qs]�mzm��D8]��q'x���*�U�ʺD����,=��]9�v�~Z���-�澐�PB��lcPɑ,W�p�TO}/��y��\E���9��u�+)��\��ID����z$
'K�|r �AfX+
��ӥ#7���wi���Jɟ��3\�t
N���������_'E��7��5G���*�=e�,�Ճ�!�,��@�ƅ�����<�
�1���.)�J!�I�5���bG��O�D	
�/D��t��h�ڍ=V~��p���"���H�\��3*K턩D��c�l��f��e�nY�ҡ;x��B�"��
�}/'F{_}X��#��8{�C/��L~5��u�Qn���L���D�X_�GM��>��z�5��u�>x^�|�.�R������&�E��H���p�&X7�[����>�u"�w��E#��7xi	��M�0��gWe.Y�8�N��Kirv�0L̦��x��H��j}��A��3�>������$�j)a+	�H$�
'����Q4R�z*�O��"^�8��˾�-�Mu��H4�'��e=d��n�3ųU����BJ,�m��g�Վ��3,��@n��g���d���Ꮭ��Ad�[�QK�t�Ն��*�F�;a,��'�3����l�$5�EG��W8�A߅*�_<~����1���IJ�=6�dcÉ����a�)y��{r�W���A���B��S��������ۥ�ĵ���ě������2H�(���{/�3j`B[D͛L8�����	�tv�֫�i�Gpﱔ �)��4�/?�cCs����0���wv<F~�u	C6���g�j$�ш�ʆ_���8��#T�4�=K�Ȁ�C1C�%�Y_�߽-��WgTڦ<�UL�"b(�l��s3 ������?!7���$0Og]C�bH|��,��b�uҜ(O]�:S�r�b��>�K������\/r���=��FdR]V�V|K�I�O*o����7���6�}��	�pT�D����|-�c ��3�;#K>�9�x��b���7b){_2�����ro55����<��t�|�(/Fד?VKQ6R ��!L
:4dl:��D��ѫ�wYa���*̓�h��Rv������ǰNZ����Ƈ���MB�a���\|���{������u���������s2a�+�F���>~�/:_�Hl�NpA��%2��cu��l�9�2�*+E2*w%m��R�H�'�|��A�|�rH��0F�vR�XS��k�{90\>ln0�h�N��"t�J��꽻����
b�w|���(4}ӊ'�G	/�����R��'���l�N�}����&�B��t�Z�{z���������O?��\��Vf�\?��
�!����g�*�M��i��I��JG���K�|q�$?�}��V;-HH�zq�:7
�MC��'!���z1���\[����EAt�a�u�������Wv�Ѩˉ~
��%m��O[��6���D�F ��]K�њ���;������Q�����k�$<��i��Ox�},y9x:o���3���#�M��2�>Ƿ>��$y��|*H,1��03ch+L��i�H7��Q>W�����ދ��@��K��OX�hh�ljU�)M����%����T����{�i8�(
O8Bhm�/j�L٧S\�:�]��s	E+ј��r�g��A���7�@�65*�E¿�ޥt��b�AWm8i:[�B�<�j6��Y��H4
��E2���m���&�P̫��*;�!��m�O�?�)>
5��/�@�y�`W ұ�_	���\���g)�m���/��� cIR=��"
�_]�����,����{;-�Uwq$Q{p���y�/��6�G�dL����*y��0\��R���z���Qa���V/���j�kV�;��(	o�|�8錶���U�
�,��a�󍉊�O�
I<�o%�����c��ޙڎ��K�`�W��t��j�y�Z�(3����.ز�$h0��G��b�Y�gr��x��ڒ#_�¿�Y/�Z��ܳ��C}��kC���#����Y=�TxvwN���Δ٩�������Y�'�G�q&�TL��ˈ�����>���b����".ݫ�c ��"�J�S�a�
����rK��s�zP�{��\A�}��йB���1^?���>?���N1��%��)�}a��p	�V;�S�{&�/�N��ə��N�?�y�]&������8ۛ�����1�X����v'_�N��/�n�A$"���� J��A�
�]BV�|R5�J�����WL�'��������KRG!x(�2x�te�Q#��8��
t~�digQ�	e���1bP��f,�л�\���lg�Z�0y��jjZ��X�I���c�&a�@)��ⱴN��.H� ymx��^�9�Չ�.UP�q-2�mw��HM_��P�xrj94�`�"�}ؙ.q�#V�Na��R#`�$�ѐ��c�j`���~uB��$/ె�^m��:ʱm��� �!��b���_��Ӧ�G�A��o���摣�&�Z[�g��ͱ}���Lߡ���^�#A`(�5�RM4q�����]�6���o�(�l#��<Ȳ{YL�KO��_��R�g�:�����%N���o�* m��`o(\�H�:�kB)�.RP���~[�w
�Y[τLJ���7���ٚ��H���P��;/��}K?{�6���}��^Ɠ-�������bQ�7!��G����KdeIY0?�Lϡ��>�s�Xݸ��%�?�h��.~�TNz	�tg0���5Np��";�*����qsWކ�Bi�d�ݶ�|jʓ
��(�j�Cf��rL��;p�m��r�i	��A$VI�nf=il��c���Z� �І���<p—�*S|�f����(4IQ2�,5���t��/�.�w�ι.,T`C �����5�9�R��ȐFe��dFƛ�>	���m�u�2����v^\��i�MI� �Lb��Ͻq��M�>�eդ�3�����Z�N�t�%L0�q��.ؔ�#a� E�͍+�MMP�mm5=U��`T��0�Nגb	5�rn�8"�����ADJ�1�{��g��+zEfؤ�N8���L��* ���w�˟���%,��'ϋ�=N�(N�+2W�`߅Q6���{�
���,hb�y4�VZ,~��>~�*#����/A�Fq'��ĵ��#�R%��(��{���
 z�ҝ;>���2�����' �QW{때��7��'��p�~��9�u�����+�):.?m��������j��ۓX�`BӜ(��?�	��B����uT͝,FE�LN�m�!�%1��Y���[��I�rO���� �
�h!��a;���w�
��8Ǵ��S
;��3iV��3Iꡆ�����ׯ�9�n�9����bz���unxu�()3�}�[��~; ���}��;���7��w�~�qN��w�T
�A�l����x��~�m=�2:�e�,B�~W��/���%�~-�zh���ńE�F^ڿ[�m��!�����SEA����ަq]4
,���g���Ĵ�}!�a��T��;�,V�jbV?��X��y�b[px�ؠ���V�E��LJ0�:MX���
?�cvf��N6c5��,��h�QI�#	��DX��֥�&��Wt.��B
sR�^��9룋�Mk���	g�d��Zn3��[S\�)yȀ�޹��
ʦ�O���O�?!1@�/a	�>��TO��� C|Fz84!(�9`��M�"״��xJ��'�v�#Ht��+�/�]���YHK�h�Q���C�
ܤ��Q��Ԯ��@.��o'Ւ��h8U3fz�f�z���=A���H6�E�
H��cTqs���;���E~i<���\T��u
o�c�x��4!)�x��!\x��7�|�@wo��ͭ�c��=�6l�Y���N�I��8�U�4��_�����o����ۢ��Huc�'�&����1�z�w��;���;H�x�̯%�l,^:2M���+u��8��8 �N׫�{��*�\uLx�޽�H�\&�D� �~>�Nu9
����Why3��z+�}�o7�g`[g��|�::�W��wֵ�UX^3qZw썺��z=�†*E[|޸�wYV�����p�b��.OuT�>�`�q�;��B���?O
�(�.�i5X��>1��&��Y�$1�@�P�^�y�2clRA*�-z8��8��
�c�hH]I��eC֭��'���N/o6]��eY��˂j�<��bdOo���k���rʎ=��!��08B�]��l��V�_m��g���Lz$Ԑ�d���y?�D�l�S�a��k��3E'K;�<���"�
)���3_;�gZw�&���R&P��ӯ��r_-_-�<#�o;�LG5¤���J޾��']�}m;Z�Z��ZӍ�p�J����?�C0��%�&�+v��3��;�(0\��R=dm̀���{��l�-K|����|��w��\v�t9�@��~�6�&C�m����rk`z:0����BK���$}���K�UQ��Q��9���D]�,'���%S�R�C�_=��,�q����ol<r�L�L)��m��r}%bD�0ƌBD���/��
A�OXS�%��׽D��#Ll���EM��xR�A���H*��M,�w�ϧ3qy���KR�*&;6�8��pW�>�@�jW�	Fҏ�X'�|��[���I�f#w��;SP~��������I�4#ɟ���ת�zC��F���2�#|[�� 2���-y2u���
�QՑASn���:<Mwф���A��;J�Ѹ��R��HXU�[M�!$4�h[�utЬ�Y�L�u����҅#��N���)��:1�~/��A�CIkb�~�k6�94��(�t���@HFme�z������K}��_���0�"�{��&����2�
�I��m�`�{@C�|٪�e��w��>�_W���h�Lp�al�QQ�7d�X����_��U)�Z�C��Ǯ���x��[|�{�r����cLV�mC}U�㿑X��BWG���s�l}V��z�7ה�¾`�J��JG��˻���:��8Ղv�<ck~s�6S�y�\³�q2��`�
l������I ZL��a+�0�	 N!n�ǿ���k�p p��yE��W�!��`��I�����1��]�S^8��\�����J����zL����{��������\�
m�L �LSǏ���D�1�[����TRS��*��য�ڈ�91�#0�~�M��I����L�Է�v;i=�悲���Y��~��E���,����p��+
����'�8͚)�}C5�Y��'Q=�
s��V����7�̷�|2'�b����"������%u�?���*�Q:�7=Ê�~o����ِ�S'�n�ѷ|T�wx��O#���iyZ��^��ܴ��{QS�r8=FZ�街�Q�.{���)Bs_���������p�'��%�\�x��('#6yP�Ne��L��QM>�o�:�M���5`�\��^�b<}gv���ȃ^��7��EX�i�^-7��ݦ �[HF�H��le�� R�~b��o@�#�����o�s���6�@�q��T���cP7~���a�t�F$h������'6Ӓd�H����=>�Ż�{
[7o���2��^f�;#�ѧ=3C�$t�)���"��(�V'�줌v�.Ͳl�ʻ��]���O$���/��f��^=�
>�t�X�g"Ģ�6J\��=�NX�Y��jD��zB�I6�5_�5�������e��$�{� ��`�c,���&iвu�ﴨ�ś95�S]�f�n�%t'깿�wW��u���������E����F8���	R����t�i�+�U|�R4�l�64�,���95�x�ᫀ<�*�v��o���YR�{���Sy�SE�ǡ�|f!��3�U/ɑe>��H$_[���<�/Hw,;��_%����I���)l;����t�bN���|���or~�ϧ�C"M�ؖ�(l�U0L�t��$�Xn?��1s�ㄣgZg��)$������d�;�wZ�C�������?P�ox:�m#3��o��T��ֱS���@�Z׶}
>D�.�����&�#�)5�k"
ƿrғ
Z��i&�o��y�Y%qϞf!�K�-[?-d��?@>)�����hi1�~��N���d3��r	}\
NN�6 nV��-jh��&֡��b� �����u/�]�0d3p�_��O瓻�q�p��O�g��8S��/��9N�ڣW��b_�L��߉��;_E�Q�<"uS_�y��{�p��-��^�>:�I����ܔڴ�(� V l`��>����������G�,��
�'���g�6OK&���y~�n<VߡQ�,�Ew����]�C
�"�Vr+7�=0��E���VL�k���ywe/V)@=�ho���������7v���J��C�p�މ�˖^A����	.�u�W՚��E��O@8Q3��v:&2��@�S0qk-=�z�3N��F�D���{�A�@��U;ai��3}J�+��'��Է&���t�s��oKoэSC�n��2Êw���aym��n��Tb���\��,��/<��ܷ:C��En&;+A�Bvge(��E
�e�#H���
R]\��8��m�������d*+/����Y b.@�!I�8�ηp��n��=�d���"�AȤ���J&����4�q�9�U؜���e^&'�)@S��T�N�kjI���e�UY"~uLݾ���VM�!�̚�b%�:p��U�"�O��%p����L��������w�Yd��*	��7�:���:8R�Lڑa�a�%���fL`�ư��[J{sS$�(;�NZpj�����P��{�E��v��քfP��׶V|�
5J�"��&�:�Z�	�����$�z����3x��˲��	U���Im���O�D��6��mֿ��g#UۙS�G޿��Y
�h���>珱
d	׉P�
�0gwXB�v+�:��O�

3���xb7J1<	4�Gq�\��ɳf��G�_�e�����̔u�kh�����g�^���W�S���ߦ��V<g�'Me��0�[�� M���Ӝ�
�^V�
��9�7r=[.�5.慢K��A�CNA���{��ޘ8��4(�{�E»�z�4oL��`~�����];�Fz�|x*�����ŭ:�F����}��'ݠ%Jv���5���!Qgq�Cи�껈AC�����e�Ɩ(�ە�Ր���GB��(�`��@LJM�`���7�C��qB����K%�,��2��	5CRԒ`E0 HLa��"�%|�N����ܾ���� �0@�i�:�����̋XC��F�����6�_��Ҹ�*V��+h�Q���^u�/�	�R,�tH�"6�A`�Bq�t�3
M����r;1%�$��^;���٧�Pc�@s�ه*4�A؎7b�FtV52�uD	�QĊt����}�$I��)T-@��E��<�G5�T�Y0��-�r�gETYʗ��hBG��Ov�žh<$��LP���f�j! >��1hJ�c~�b�&�gC�綦Ԫ
��G�gس��&�^�	.����}�s�㋹N�RbPYQ5��f��f����I�^�.�w���4�_�)�	1y�fv�@����!�*���:wߣ5�yO����TS@��\�2C�1����!��u�pt�P$�û�����|E��/�
ce�mT����S�Lw+2yP,V��t���|Ի#i�ĆP�`���ץHʘ���V�?�t}�SkO���B�l0բhH\E
��ƌAp�|���}<��v?e��Gxg�Sս:U���7v�����٢L�%*Y
ɘ`�������g�h�OZ.�A�^^��a�~�D'��~�v��U"01��>��AGM`t��ҏ�>��"�p��T��V��$�D�0�����/��
ƌ�_=
�.\���UF�S�fy���?^^�B	6�-���R���rR�*d4*��ϙN��En?v�B�������_j�;��cܿ��~FSH���w�	��.��%�?I���%B(��]F۠@sg�給�������NJj+;s@�NR����t�v�!CGq�O���Ž��˱(���r	�O2�8�
%�V�CWE��5��M �_�E�B�'�2�<W6�`�J�=޾fJ'U����Ȑ1~&`ٖ��uBDž���1�ؿ+�ڙ����F�i�qѥ��#w�ď'��j݆���>u��'��<�
 s��P�������p�~Ӵ�ʘܳ�S"f�t�g^��������ۦ����ʜ󚁈�.:Q��3�ؕn�7���C���c>��--o�.���E�PQ=nlIK�WE��b;�!�8�a����'��.�Lx	/O�߹�CId���U_�I��bd��$Ҭ̻YU�u���񳄊(�[+�fk���bh�{�EG�3����w�6,�t�.f\H���1�� S�4�O�M�5�lT"�:�{�������C\�+�ji|#��{��׊:bȑQFY�o�+�)����Stb;e{w|-W�w���j��� ̇%#L���⡑M���-]��w��?3\T��6ݗ����﬍�TZξ�]Շ�y�&�;���KNE�P��G�_k��
أ����e`]�QȲЅs�p-��k��?=�.\����bI���;�w�i���tm���8�C���\�O�`��D�i��J�I*tw�9C�Ս|���e��L��#c����|w��km���r	W��* 蹴MD�ǚ���V�5���A��14��R�aB��T��e�g��0�6pH:è���Q�/l�5�-�4Rt��T����gȓo6�q�V\&H�D	h�}"��Y4��_�V��cc�w������a[����)��HM��5��
����f�%��g�Krn���I ��/9���(F���ԑ<�!|�į�k�PA�p��pE���$[���I�R���c+�F�\Y}i+�;@ď��9�f9O�E*,��'A�!�LF@˓���E%&@��)^&�3c���V�C K~��;�i�dD��8
B�~��3Y0M}9�l�R�����I5��������\��+�I���vu2	{p����fN�g��m�<ד&����8&���8�)<��@�|�ap9l�r
@�M�hƈ��K�EG�bk��m:@{�9w�[��}��WϚ��1��Z���z���p�����p�~�8 ��^ֺD>���q��/�?�%2�뷻5t��B��֭��+����^l��@D�̒�TyN�&?l�����R��n+��d�±Q��[^�W���\�V�i���߿����L����̔>l�%�K���'��X<=�S���҅scH0�Q��B�	`���D�Q ������ecj*�
jE�Y��'�d-{��a���}D'*A����E����J�,�
tLV�w��������L����DH0c��(+5U���w�μ�U��x`z��1)a5˷����|ZUd����o±!�x���e�ݫ��B�n��$�z#r����Sؤ�����+m� ddĶT���~������Ҷ#�( *vmb����;�G��r<;X��ED��$���K�4���@��J����B?����� �8|�rG*"{�����ޚ~}�C�.��H1}�ٰ�����Ӭ��N����s��Ư��n6�&-��0���e�7��ͺt늪K����}Xpj�1����n_X/Xraz��>��O.P6�і�)���Ђt��۾6����Փ��hșc�];�(�cݍ�^�Sփ�	S�`�Y���ÙM���q�_!fK���5F?|‚ �KQ	6�S�%?~�R� ���vs�-B��Aұ�A��:Y|8���Lӻ�1�5~g���
�b��A�R�@%]&�ǭ�S�]���'�����$(^���6S�蒨K�o-Ĩz
'��E��F;�tGL�GtkN��0��Z���f�c��R+a�̱{t'^[l�Ȱw;�Z��H��ւ��͕�R�y���L&f��ˋ�/�T̽9,Z�y��s;��Y�����z�1�t��iL��q
�I�*�G�	�"J�-o`i��M>̵�rYy�Ʌ�a9��L���73�^J�jh���½&��1�W��|�����n�^gc_�3b8d�Qb]z�a�>e~�Q) �[�f7Z��ti�v��f�j������h�FXi�����A�����ڞ*��|�x(��dj|a����X�&%�+������sW4�6�����4�R �`� ����mi7�/s�K���IP�2��H
.~�= ׻�N���QO����cȮ�)�Y;C��ä���oZ�{S�����v0�`�/z�f0�xHpӽ��nmD^���&Q��Ȉd<4*@��"����i|n��~H�	\�&#,�V�-���`��A�y��QOC�a��ЃXRR:CCT���%N���/T��nh���5��ZO�V�5�R�,NOS�PzE��[B���S��a�pP��6sy�r-�n��_/t%щ�6dG��I��t�s����x�&�5=}�g�Q�i=w�ӆ[V9�~f#x�/evV~w>�o^�_�x�b�g����/��˶�:�jF��8�����D�ܫ�i�a�l�՝���ؚ�?^��^9ބM�em:>Q�a���C�����i�����y�vy|�=��'Uh�z$��*����z�{Q��/�'�e<L��6[|��d�̫�
Ş�mt�I�>�̤
1+��S������S���L%[c��1���!R�p�v��^>}�s+ra߉����8�L,v�ټ��Uʸ�$���l7�͂�G�G<�D%D>�(+*��y���
7Y��xRnKa���g�9^y,��R���i�����C�	Ηe8�XؠZu֖��/ү2�
K)W���r�[��ǭ?�(��	��Պ���D'�<1#�E��Y�mOAz!
�8�X	��t��<�Č�X�|��W}9ֹ��q��)c��;w�����./?��̿��T��i��X�[��i��l�w�#�¾�>ʯ�Z��9~ƧS�0�T�Q�AՏ�kJ!�W+��؟���=?�1�-����
C��NV�<��.���x(j5�FqL�qM��e��a���
�2�_�zCu�0���u�s����-E�4p-O�?��eGGZ)	�܈��*��Dm�B�`.}9����X�^F��WU7�c�������tb��b�PW����:�r��W�_�HFS�b�sq��Đ2��K��j���b��S��,k�%��Nw܁e	�w0�:QPA�>�,��J���+��u�[�j���׵��)�-)aoVF��+:s7�3�����u�؆�G�Z/��L�`�1,k�~���8H���b�쑵������q��տ�3����D��hT��|&d1�Q�Q
{ oO�O��@����J�+K�	Q��MɣI�x�t�0��(�K蓅i���(�� 
�M��|�R�L���Js�E�$�s^�X^v��p�%�X�Y�Z��Y�R�:�=�7�4I�(��6۽���v��*j?7��r$��g�+1��|��m�ec�e"�a��Ga7Ͳ�=y?�Zo����|�[��h�
j�~`P��K��!>9��V��ӯtx��޽�mV��������I���k�X�PO�.��t��@	�9z�V|�9"�#^����;jN��EG�'t��j��y�?��^Y�͠gLz�ر���8�Qm mY�����,�.�?�Or�g2+�8\���(Z��<L�\jm�b����:L,���Zm�{…�r�
P/�&��0�:!>��)H�=:�,�*ILp 	��rj��3R��C��N��Ҽ��,M�	4�H<q)\�r^,]��4_jZu�A�FѤB%u7'��f)�t��
n�ҿ�1�R%���V��t���]:cN9��+)CE��{	�fa�&��e�l�}��=.�����3�y��2��"����r�V�&*_T�
ɸc�=;Ȩ[������}���'���T���1��{���4�����x�]qO�E��	�-��x�9�X�~r�|<x��g�16l���qg��m�I0A|�@[BZ�Qc��-�E�1�L������𗭱�%�c���	����g4q�/.FafGBMBPK�uKXu�D��spiko/admin/admin-init.php<?php
if(is_admin()){
	require SPIKO_TEMPLATE_DIR . '/admin/inc/class-spicethemes-about-page.php';
}

require SPIKO_TEMPLATE_DIR . '/admin/inc/plugin-include-control.php';
require SPIKO_TEMPLATE_DIR . '/admin/inc/include-companion.php';


PK�uKXi8��.spiko/admin/assets/css/welcome-page-styles.css.theme-info-wrap * {
    box-sizing: border-box;
}

.theme-left,
.theme-right {
    float: left;
    width: 50%;
    padding: 10px;
}

.theme-info-inner {
    background-color: #FFF;
    padding: 10px;
}

.theme-right {
    min-height: 400px;
}

.theme-heading {
    display: block;
    text-align: center;
}


.theme-version {
    font-size: 13px;
}


.theme-description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 23px;
}
.img-responsive {
    height: auto;
    width: 100%;
    max-width: 100%;
}

.info-links {
    text-align: center;
}

.button-orange {
    background: #FF5722 !important;
    color: #fff !important;
    border-color: #a93d12 !important;
    -webkit-box-shadow: 0 1px 0 #de5722 !important;
    box-shadow: 0 1px 0 #de5722 !important;
    font-weight: bold;
}

@media (max-width:767px) {
    .theme-left,
    .theme-right {
        width: 100%;
    }
}

.theme-welcome-container {
    padding: 10px;
}

.theme-welcome-inner{
    background-color: #f1f1f1;
    height: 100%;
    width: 100%;
}

.tab-content {
    border-top: none;
    padding: 20px;
    background-color: #fff;
}

.col{
    width: 32%;
    float: left;
    margin-right: 1%;
}

.col:nth-child(3n+1) {
    clear: left;
}

.spiko-wrap .action-list .action {
    padding: 20px;
}

.spiko-wrap .action-list .action .action-title {
    margin: 0;
    margin-bottom: 15px;
}

.spiko-wrap .action-list .action .action-link, .spiko-wrap .action-list .action .button {
    margin-top: 15px;
    display: inline-block;
}

.button span.dashicons.dashicons-yes {
    color: #4CAF50;
    margin-top: 3px;
}

.badge-action-count {
    display: inline-block;
    background-color: #d54e21;
    color: #fff;
    font-size: 9px;
    line-height: 17px;
    font-weight: 600;
    margin: 1px 0 0 2px;
    vertical-align: top;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 26;
    margin-left: 5px;
    margin-top: 3px;
    padding: 1px 7px;
}

.nav-tab-active .badge-action-count {
    background-color: #00b9eb;
}

.action-watch {
    float: right;
    width: 30px;
    text-align: center;
    height: 25px;
    cursor: pointer;
}

.usefull-plugins .col {
    background-color: #FFF;
    padding: 10px;
    border: 1px solid #FFF;
    webkit-align-self: flex-start;
    align-self: flex-start;
    height: 225px;
}

.useful-plugin-install.col {
    position: relative;
}

.plg-ver-info {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 15px;
    text-align: center;
}
.usefull-plugins .col h2 {
    margin-top: 0;
}

.usefull-plugins .col .button {
    margin-top: 20px;
    display: inline-block;
}
.spicethemes-logo {
    float: right;
}

.theme-info-single {
    padding: 10px;
}

.theme-info-single .theme-info-inner {
    margin-right: 300px;
    background-color: transparent;
}

.spicethemes-logo {
    float: right;
    width: 250px;
    text-align: center;
    padding-top: 20px;
}

table.free-vs-pro-table {
    width: 100%;
}

.free-vs-pro-table .dashicons-before:before {
    font-size: 30px;
}

.free-vs-pro-table .dashicons-yes {
    color: #4CAF50;
}

.free-vs-pro-table .dashicons-no-alt {
    color: #F44336;
}
.free-vs-pro-table  td:nth-child(2), 
.free-vs-pro-table  td:nth-child(3),
.free-vs-pro-table  th:nth-child(2),
.free-vs-pro-table  th:nth-child(3){
    width: 200px;
    text-align: center;
}

.button-big {
    font-weight: 400;
    padding: 12px 20px !important;
    display: inline-block;
    height: auto !important;
}

.free-vs-pro-table td,
.free-vs-pro-table th {
    border-bottom: 1px solid #e4e2e2;
    padding: 10px;
}
.free-vs-pro-table th{
    padding: 20px;
}

.plg-icon-box {
    float: left;
    width: 30%;
    margin-right: 15px;
}

img.plg-icon {
    max-width: 100%;
    height: auto;
}
img.ing-responsive.img-tf-logo {
    display: block;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.59);
    border-radius: 5px;
    width: 200px;
}
.theme-heading {
    color: #32373c;
    line-height: 1.2em;
    font-size: 2.8em !important;
    font-weight: 400;
    text-align: left;
}

.nav-tab {
    float: left;
    border: 1px solid #ccc;
    border-bottom: none;
    margin-left: .5em;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 24px;
    background: #e5e5e5;
    color: #444;
}
.nav-tab {
    margin: 0 0 -1px 0;
    transition: .3s ease;
    border: 1px solid #ccc;
    border-right: 0;
}

.nav-tab-active, .nav-tab-active:focus, .nav-tab-active:focus:active, .nav-tab-active:hover {
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
    color: #000;
}

.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, h1.nav-tab-wrapper {
    padding-top: 0px;
}


.nav-tab {
    font-size: 15px;
    font-weight: 500;
    
}

.nav-tab:focus, .nav-tab:hover {
   background: #e5e5e5;
    color: #444;
    text-decoration:none;
    
}

.panel-close{display:none;}


/* free vs pro tab content css */

.info-tab-content {
    margin: 40px 0px;
}
.free-vs-pro-tab-content .free-pro-table {
    width: 100%;
    border-spacing: 0;
}
.free-vs-pro-tab-content .free-pro-table th {
    padding-bottom: 20px;
}
.free-vs-pro-tab-content .free-pro-table td {
    padding: 10px 20px 15px;
    border-top: 1px solid #ccc;
}
.free-vs-pro-tab-content .free-pro-table .only-lite, .free-vs-pro-tab-content .free-pro-table .only-pro {
    width: 15%;
    text-align: center;
}
.free-vs-pro-tab-content .free-pro-table th {
    font-size: 16px;
    color: #444;
    text-align: center;
}
.free-vs-pro-tab-content .free-pro-table h4 {
    font-size: 16px;
    color: #23282d;
    margin: 1.22em 0;
}
.free-vs-pro-tab-content .free-pro-table h5 {
    font-size: .90em;
    margin: 1.67em 0;
}
.free-vs-pro-tab-content .free-pro-table {
   background-color: #f1f1f1;
}
div#changelog {
    background-color: #f1f1f1;
}
.free-vs-pro-tab-content .free-pro-table .only-lite .dashicons-before:before, .free-vs-pro-tab-content .free-pro-table .only-pro .dashicons-before:before {
    width: 35px;
    height: 35px;
    font-size: 35px;
}
.free-vs-pro-tab-content .free-pro-table .only-lite .dashicons-before:before {
    color: #00a878;
}
.free-vs-pro-tab-content .free-pro-table .only-pro .dashicons-before:before {
    color: #ff3439;
}
.free-vs-pro-tab-content .free-pro-table .only-pro .dashicons-before:before {
    color: #ff3439;
}
.action-box {
    border: 2px solid #f5f5f5;
    padding: 20px;
    background: #f1f1f1;
}PK�uKX��!�6060"spiko/admin/assets/css/welcome.css.spiko-nav-tabs {
    margin: 30px 0 0;
    border-bottom: 1px solid #dedede;
    background: #fff;
}
.spiko-nav-tabs:after {
    clear: both;
    display: table;
    content: " ";
}
.spiko-nav-tabs > li {
    float: left;
    margin-bottom: -1px;
    display: block;
}
.spiko-nav-tabs > li.active > a, .spiko-nav-tabs > li.active > a:focus, .spiko-nav-tabs > li.active > a:hover {
    background: #fff;
    border-bottom-color: #fff;
    color: #00a4e7;
    border-bottom-color: transparent;
}
.spiko-nav-tabs li:last-child .nav-tab {
    border-right: 1px solid #ccc;
}
.spiko-nav-tabs > li.spiko-w-red-tab > a {
    color: red;
    font-weight: bold;
}
.spiko-tab-content {
    background-color: #fff;
}
.spiko-tab-content > .tab-pane {
    display: none;
}
.spiko-tab-content > .active {
    display: block;
}
.spiko-tab-pane.active {
    display: block;
}

#spiko-theme-version {
    font-size: 50%;
    padding: 10px;
    background: #ccc;
}
#spiko-w-screenshot {
    border: 1px solid #ccc;
    margin-top: 30px;
}
.spiko-w-activated {
    cursor:not-allowed !important;
}
.spiko-tab-pane-half {
    padding-left: 20px;
    margin-top: 15px;
    padding-right: 20px;
    margin-bottom: 15px;
}
.spiko-tab-content img {
    max-width: 100%;
}
.spiko-pane-first-half {
    border-left: none;
}
.spiko-pane-center {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid #eaeaea;
}

.spiko-tab-center {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid #eaeaea;
}

.spiko-info-title {
    font-size: 30px !important;
    border-bottom: 1px solid #eaeaea;
    line-height:50px !important;
    font-weight: 600 !important;;
}
.spiko-clear {
    clear: both;
}
.spiko-child-theme-container {
    position: relative;
}
.spiko-child-theme-description {
    position: absolute;
    top: 100%;
    left: 0;
    overflow: auto;
    box-sizing: border-box;
    padding: 0;
    max-width: 100%;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.spiko-child-theme-image-container {
    position: relative;
    overflow: hidden;
}
.spiko-child-theme-image-container img {
    max-width: 100%;
}
.spiko-child-theme-details .theme-details {
    padding: 10px;
    background: none repeat scroll 0 0 #F1F1F1;
    font-size: 18px;
}

.spiko-child-theme-details .theme-details.active {
    background: none repeat scroll 0 0 #2B5F87;
    color: #fff;
}

.spiko-child-theme-details .theme-details .theme-name {
    float:left;
}
.spiko-child-theme-details .theme-details .preview {
    margin-right: 2px;
}
.spiko-fre-pro table {
    border-collapse: collapse;
    width: 100%;
}
.spiko-fre-pro table tr {
    border-bottom: 1px solid #ddd;
}
.spiko-fre-pro table td {
    padding: 30px;
    width: 25%;
    padding: 10px;
    color: #555;
    font-weight: bold;
    border-left: 2px solid #ebebeb;
    text-align:center;
}
}
.spiko-fre-pro table th {
    padding-bottom: 30px;
    font-size:19px;
}
.spiko-fre-pro table td span.dashicons-before:before {
    font-size: 50px;
    width: auto;
    height: auto;
}
.spiko-fre-pro table td span.dashicons-yes:before {
    color:green;
}
.spiko-fre-pro table td span.dashicons-no-alt:before {
    color:red;
}
.spiko-fre-pro table tr.spiko-text-center {
    text-align: center;
}
.spiko-actions-count {
    padding: 0 6px;
    display: inline-block;
    background-color: #d54e21;
    color: #fff;
    font-size: 9px;
    line-height: 17px;
    font-weight: 600;
    margin: 1px 0 0 2px;
    vertical-align: top;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 26;
}
.spiko-action-required-box {
    position: relative;
}
.spiko-dismiss-required-action {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    background-color: #D24A4A;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}
.spiko-dismiss-required-action:hover {
    background-color: #CC8C8C;
}

#github.spiko-lite-tab-pane {
  text-align: center;
}

#github.spiko-lite-tab-pane .spiko-tab-pane-half {
  min-height: 160px;
}

#github.spiko-lite-tab-pane .translate-button, #github .github-button {
  margin-top: 20px;
}

#github.spiko-lite-tab-pane .dashicons {
  color: #0073aa;
  font-size: 12px;
  width: auto;
}

#github.spiko-lite-tab-pane h4 {
  margin:10px;;
}

#github.spiko-lite-tab-pane p.review-link {
  margin:0;
}

#github.spiko-lite-tab-pane .spiko-tab-pane-half hr {
  display: none;
}

/*Breakpoints*/

}
@media (max-width: 782px) {
  #github.spiko-tab-pane .spiko-tab-pane-half hr {
    display:block;
  }

  .spiko-tab-pane-half {
    width: auto;
    float: none;
    border-left: none;
  }
  .spiko-welcome-title, .spiko-tab-content h1 {
    line-height: 30px;
  }
  .spiko-fre-pro table td {
    padding: 30px 10px;
  }
}

.spiko-tab-pane-first-half p  
{
    font-size:17px;
}


.info-container {
    background-color: #fff;
    margin-right: 20px;
    padding: 60px 30px 90px;
    margin-top: 20px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.info-title {
    margin: 0 0 45px;
    text-transform: uppercase;
}

.info-block {
    float: left;
    width: 100%;
    border: 1px solid #eaeaea;
    padding: 25px 15px 15px;
    margin: 1%;
    background-color: #f7f7f7;
    text-align:center;
}

.info-icon {
    font-size: 34px;
    width: auto;
    height: auto;
}

.dashicons, .dashicons-before:before {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 1;
    font-family: dashicons;
    text-decoration: inherit;
    font-weight: 400;
    font-style: normal;
    vertical-align: top;
    text-align: center;
    -webkit-transition: color .1s ease-in 0;
    transition: color .1s ease-in 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.info-text a {
    color: #444;
    text-decoration: none;
}
#free_pro th {font-size:30px; line-height: 40px;}

/* Free vs Pro */
/*===================================================================================*/
/*  PRICING TABLES TWO
/*===================================================================================*/
.pricing1 { margin-top: 40px;  }
.pricing h1, .pricing h2, .pricing h3, .pricing h4, .pricing h5, .pricing h6, 
.pricing1 h1, .pricing1 h2, .pricing1 h3, .pricing1 h4, .pricing1 h5, .pricing1 h6 { font-family: 'Signika', sans-serif; }
.pricing1 .plan {
    font-family: sans-serif;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    overflow: hidden;
    /* letter-spacing: 0.5px; */
    border-left: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}
.pricing1 .border-right { border-right: 1px solid #dddddd; }
.pricing1 .col-md-4:last-child .plan { border-right: 1px solid #dddddd; }
.pricing1 .plan .feature li:last-child { border-bottom: 0 none; } 
.pricing1 .plan header { background: #fff; text-align: center; }
.pricing1 .plan h2 { background: #f8f8f8; font-size: 24px; line-height: 30px; font-weight: 400; color: #333; padding: 15px 20px 15px; border-bottom: 1px solid #dddddd; margin: 0 !important; }
.pricing1 .plan h2 small { display: block; color: #808080; font-size: 14px; padding-top: 7px; }
.pricing1 .plan .btn { margin-bottom: 0; font-size: 16px; }
.pricing1 .plan .btn i { margin-right: 7px; }
.pricing1 .plan .price { margin-bottom: 15px; }
.pricing1 .plan .price { line-height: 100%; }
.pricing1 .plan .feature {
    background: #ffffff;
    padding: 0;
    margin: 0;
}
.pricing1 .plan .feature li { padding: 30px 20px; color: #333; font-size: 18px; border-bottom: 1px solid #dddddd;     height: 110px;
    margin-bottom: 0; }
.pricing1.col-3 .plan header { padding: 40px; }
.pricing1.col-3 .plan .feature { padding: 20px 30px; }
.pricing1 .plan .price1 {
    padding: 14px 10px 13px;
    text-align: center;
    border-bottom: 1px solid #dddddd;
    font-family: 'Signika', sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 56px;
    color: #2f4052;
    display: block;
    letter-spacing: 0;
}
.pricing1 .plan .price1 span { display: inline-block; margin-left: -12px; }
.pricing1 .plan .price1 span sup { position: relative; top: -0.6em; display: inline-block; padding: 0; font-size: 24px; }
.pricing1 .plan .duration { text-align: center; color: #636e79; display: block; font-size: 16px; line-height: 25px; margin-bottom: 5px; }
.pricing1 .col-md-3  { padding: 0; }
.pricing1 .offer-content { border-left: 1px solid #dddddd; border-top: 0 none; border-bottom: 1px solid #dddddd; border-right: 1px solid #dddddd; }
.pricing1 .most-popular {
    display: block;
    float: left;
    width: 100%;
    height: 36px;
    line-height: 36px;
    margin: -36px 0 0 0;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #2f4052;
    font-size: 15px;
    border: 1px solid #dddddd;
    border-bottom: none;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
}
.btn-wrap { display: block; border-bottom: 1px solid #dddddd; padding: 24px 0; }
.btn-wrap a.btn { margin-top: 0px; color: #e84a52; }
.btn-wrap a.btn i { margin-right: 10px; }

@media (max-width: 1024px) {

/*Pricing Table 1*/
.pricing1 .plan { border-right: 1px solid #dddddd; margin-bottom: 30px; }
.pricing-content { border-top: 1px solid #dddddd; }
.pricing1 .dashicons, .pricing1 .dashicons-before:before {
    font-size: 30px !important;
    line-height: 1 !important;
}

.pricing1 .plan .feature li 
{font-size:14px;font-weight:600;}

.pricing1 .plan .feature li p
{
    font-size:12px; font-weight:normal;
}

}

@media (max-width: 768px) {

.pricing1 .plan .feature li {
    height: auto !important;
}
}

.blank{
    background: transparent;
    
    
    padding: 10px 20px 15px;
    border: 0px none;
    padding-top:10px;
}
.border0 { border: 0 none; }
.red { color: red; } .green { color: green; }
.padding0 { padding: 0; }
.padding10 { padding: 15px; }
.margin56 { margin-top: 56px; }
.pricing1 .dashicons, .pricing1 .dashicons-before:before {
    display: inline-block;
    /* width: 35px;
    height: 35px; */
    font-size: 40px;
    line-height: 1.7;
    font-family: dashicons;
    text-decoration: inherit;
    font-weight: 400;
    font-style: normal;
    vertical-align: top;
    text-align: center;
    -webkit-transition: color .1s ease-in 0;
    transition: color .1s ease-in 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a.info-block{text-decoration:none;color:#333;}
a.info-block:hover, a.info-block:active, a.info-block:focus{color:#333;}
.wp-person a:focus .gravatar, a:focus, a:focus .media-icon img{ box-shadow:none !important; }

/*css 4 oct 18*/
.m-top-40 { margin-top: 40px; }
.m-top-40 p {font-size: 15px; }
.theme-info-wrap h3 { margin: 1.25em 0 .6em; }
.theme-info-wrap h3 > i { line-height: 1.2; margin-right: 15px }

.about-wrap{ margin: 25px 25px 0 20px; max-width: 100%;}


/* Extra css */
.spiko-page {
border: 1px solid #e5e5e5;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    background: #fff;
    margin-bottom: 30px;
}

.spiko-page .spiko-page-top {
    border-bottom: 1px solid #eee;
    font-size: 18px;
    padding: 12px 15px;
    font-weight: 600;
}

.spiko-page .spiko-page-content {
    padding: 15px 15px 0;
    overflow: auto;
}

.spiko-page-list-flex {
    list-style: none;
    margin: -15px;
    box-sizing: border-box;
}

.spiko-page-list-flex li {
    box-sizing: border-box;
    width: 50%;
    float: left;
    border-bottom: 1px solid #eee;
    margin-bottom: 0px;
    border-right: 1px solid #eee;
    padding: 12px 15px;
}
.spiko-page-list-flex a, .spiko-page-list-flex li a{
text-decoration: none;
}
.action.col-md-6 {
    float: left;
}
.spiko-page-quick-setting-link{
    font-size: 16px;
}
.action.col-md-6:nth-child(2n+1){
    clear:left
}
@media (min-width: 768px){
.mockup {
    padding: 30px 40px;
    margin: 10px 40px;
}
}PK�uKXY�k�55-spiko/admin/assets/css/welcome_customizer.css.spiko-actions-count {
    padding: 0 6px;
    display: inline-block;
    background-color: #d54e21;
    color: #fff;
    font-size: 9px;
    line-height: 17px;
    font-weight: 600;
    margin: 1px 0 0 2px;
    vertical-align: top;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 26;
}PK�uKX]�����&spiko/admin/assets/img/mockup-lite.png�PNG


IHDR0b�R"PLTEMLK���;;;\\\rrrjjjTTT������XXXRRR+++TTTggg���������YZZyyy���MMMxy{,,, 

���

"
$  "! &"���������������"���")$������%���6�A������#������(+"!������)%'!���%-&���4�80,'������-("#2(H?=!$UMM[QPOGF������5/*]UT��� /%#"<0*<40!)-)KCB81.D<:>74���B96&6+���$(4#B5/%&$	):.������6,',4*UJG���. I:4565).���2)#aZZTRR$.419/'������FGF]NI-@400/bbcCKP���)3:5B7mmm���QB;sss;;:@@?YG?/:@���<)�~TVX<EL���5@GKPU���K5+E0%[\]%�/:�@���<J>� S<2yzz7�<#nb^���-�1m�xgXP%R'H�S�ʍ
3�7=�F��F"���`�_9�ٯ*u.�Ƥ��y��⸦�&`(�ua������t��~�RcmA�G������^t��Ӣҿ��Ӑ��ˆ�q�����ƿܨ�����8Qdm�l�M��1tRNS$-9CMU��\�f�y�q�������^���������E|m�j�ΆԜ�/���IDATx���AN�@��,l8��, !l���=��Qi)6&�6�>�?gx�
����
ǃ���Z��y�]_s�f�&)���d�I�b��)�bK3IQ�:�dP�f���m���$�����̠'���K�C�K�d0m3mL��}�<�r��jM1�����ls9Y�'���,_L�dژ�$��r�O��5����}�y?��rI"�^��r9��\����DQ��(��ۗ�氬G�_?�#�����fͭr�g�uc;���c5�2�;HM��0N ��bW�����t�FJΓS�4�r5�	6u4%ӗ��v��?�3&
=��|��0~O%3zi�)��LLh����݉9�q�f_e�ĄY��Bs�	�y,ߋ��<\%���}:�&��?�I��z�k��„ׅ���A'����ɒy>l�39�``>��ē>��Y21�E�Y�*#G&I��(�Ą݉�!̋���4�j��,Lh�]����8�Ն^��<��n>'gaB����^L��8i3�o\bB��
s�rx���������%���W��/����`r�	2�9Nm���$���`��dZf�0Ǫ�~o��dL�E0G;ɌHf\0y9d�G+��ף�0a3fb�E��	��x�����`�29�?���f�X�0��91I�-&,�f��$�?�0a	��Q���(V�V����?�S\l&��7]�a(�����oC�?n�ƴ��@ԑ'@��G�˅��	��&F�ĀĂXX�x�9'%R@H��I���]~:�s��qk���{�k��J<���my�G�ͨ����aN=#2��,6�Ğ��T�_I�I���pt�bk�ڮ�ܢ"5�&��!4C;��(K�X��N];��^ֶ�W]�Ll�EQ�Y78Dz��hL�J��7e�F8�t)/f�W~��'�����ݝ��tww~�OeKm������%_�o���}�Cλܕ� 2T��� �^�rye�0'��Qk���(�rcr�$I%8�8�8��Q��.�Gk<џ��un%�2�<���\c�l$#�V��M�۱�'q�E�]��b��K"�m�,Ÿ���$��
B������<��Z
*Y�/Z�/�� ��n�)����D�����v�7"��|m�����z��w�h�|'_*D
��Sa��2e���a&O���'
'��)ԩF
{h:�u�?60���&E_���0A��Z�2�˦8��j�A�I�[鱊c͌�JE��	�W��-,FJ,G`Ja�Gu	�`�a8,Ԙ0�B�>{�[�-�n��c�H$�w;�%��;
s�0'���c�����ː;"��2�WAJm�\ƍԊA�h�{(�߯�$��9��Ͷ(n�O����b}I�:����:����y�uX,�A�'��U�}&"���}_�՗,�e`Е�03�"+�����P��E�Tc���q&yv�%���a�r�0'��Qf�`j��ʇ������
�LX���xi+M_j��a<=I���^%Ƌ��i8'�]�G��a�谽#3���foJ�_L򔫘�)��C ��%+l�3gj�C��}I�Sh��W��TX����V��\>%R�1!�)Ü���4N��fӄ�p%�oF��h �:O�uO%BCk�\�G#�Ne�Фqsg���t���6�Y>�	�r�$r=99�qrK��@�I���+	�
���7�0E���3d�2#�A���8�I����>
1\�?�%SLA�)A��>ԔaN;�)��EIݑ"7-�� .�؃'���3�-�E�#yl�ȕY5�5��uQ׍|��X=�N�fKU¶�J���&82�ِ0N�Gu+̫Y�E���3Չ�#�L��e+Ri���7uIT�R¹��,]S�9q܌]Äl����&�G}�5fc�ҷ;'=Y���X��^������VFX�bf�u���v�q`�ՠ�ץh�7�T�dO�8��B�e֥���2�X�0�%�8-�#x�����-�y�3.�D�L4�CŞ�S�9q��%�RM����ϗq*$�j+=+k��3�
���z:Ko��MC���e䙕�l��_�0W��p��1��d��񂺔.�U�m��3C����ޑ]f��;>}c��3u}�T���*ч]����>?�f����^�=�i�l�eS�9q�\+L.Qˆ+��D|I�0�þ��=i/�=X&�+N;��~���ZY���so֯��lm�>��E�5�.ҷ9;�P����1�K�ib��>�,t�'lm�	��8~��Pa����wX���>�W�`"�����c
� ���&��9h��s�0'��Q��!A�"Y�;���]����v5����d�tf>�x��O�)4'��+O_�^���}��'/�ߛ��WO*��ƓgY4˞]^��E<�޼�͠CL���(��@�Z>%MF`�����\P�-P�i��O�%/zբ�]aj)�c~�7v���*����5o.��.��l6�lh�Vu����Nu�kuDg�i+�2x+jpH� *���B�!4Xh$�H��`,u��9�%\���p�v��n§g~�y��P��Y�n��3����˶Cv2b�vey������(�V�f�=���0їb���*
�f���ڗT�X�o�óv�_Wa��	�%H�8��hj&�(�N3�=Ʋl٤]������a����f��c���R�y
���#p*�-��)���u���F�
S�ggL)�	��r�^:FL]�2�ϲDy�ji�L�(�2"�ؤO)tH�)��k��ޥ��
��"���k����\t����~�:��'�^g�	S�r��Ԥd&
E}�iS��P��(E�Ŧ�K,�f�oʗ
DfR���ۣ�Tԡ�E�Ų�>?ˊ�QaV��b˜���Dz��,�	׳�l4�蹞m�=�ZA�m��A�ډ�0`�U'�|ݢ�
�<9%�A�ʜb���I�K��2+L��="e��6rsޔC�2��FS�
��;#L>�/E'�2����)�1�-q�/���.y�=�5�f+�w|�ڇ�G���$���M��!d���f|�/-hɸ��v6��AR��#{X���3ഄ	`c�}�0�5a��M��C���'���
�D��a�[����d,ItaBh6'A�˴�0�j��f(��H����`��͙��sS^W}g"���3�fK�-�l��k����tj�����<�]�_K���?&b�:m��2�I�$�T�n�"B������©��&�
ƃ7ީ�g����
���&�7�>܀!+L�5�!R�:J��5��0��$.�_��B�9�0-�#_��v*������\̆��p�Cq��P$�����m��x�]���U���V,�4��}t�B��^˟��!L=M��%�Fv)���Zs�$�Mg�m�3�S�V���E9������|�̳����)���S�N��
���i)�f��`j6�	��%��೗Xd�T��nP�i)�ei�R��7�g�ml/p�enU0�4�0��K�ΰ�1�ˑFm32B�T�Q"��
^�Nuy��k��\)

-5�[��93#3��f�k�F��c3֘���\n(4YU�.���v����*�V�Tb(\�����+�U�i�9���\g�[
�C�<È�▙�"#Z�a�"��SO�<]�	��Z����[>���@����Z���;�\��
i3�L=ʯ%��g�ӊvU'*�BJs��˵u<�)�g�`���`�qf�Ea�s�0	��0{+�}�1��l�z����ى�cy���L�i4���m��6�����
Wr	46�~33=u~�qdz�v��0��`��u|�N=�5���'���F�g`Bz�_�'��rݩ��?
�e
7����y/�y��;��?/Ȗ�guc*�����~�<g㵁JI�ZYy�^�S{�x�W�ϒ���r�9?Ġ#���2�y1?�dd��LӇ'�ԅy����}e�x%��Sr^n:0����싌�[\��2[\�>��<��k�;ab��zBY�C�K��'t���V��)���U�B��> �ܗ������V�q��,oa��~R��ēΏ# Y i2��` m�-�t����/����t�矧.]��4?inj~�I�i�ԯ�JW:�%N�8��_L2���݃g��?��ǧIU�R��K�޷�H�U�u�U���{��n8}x�V�9�n�n��*64\��u=�����Ǯ�|U1߁��c��ʉte��Bk�Va2�`(t4/
G�G����#�P4w��,�Ya�ӓ,�˗�'¬k���cvꛩT�w/��&�e5�&Lda2���gO�_S���/��;Ę��ph�tҩ�4a�N�A�#���H�R`̎��D�Gk�7A�ћ���_.��.R�[TO��bE��7Ua�TK2#T������M��+�+����V��e凹�D��/$�4���z��e�L&�xC�.7�?�xz�D����K��Ë�L����H4��?xw��r)��7�m�ƭ�?�_^�%��p�
Q��8y��d�������b�'��C�G�!S4���hN��x�x���DW��4arW�ǔ���&l��R���#�Q�x畸�%*�So� ����f���Nג�C���tƻ}IQIY�Y3#�H*�p��8 R�Y�޳�2�N ���P��p|���&�X�x�N��ýF�Z-�e�M���>b�Dc�7�V�����v����yM���3s?��֜��2=?��oZ�4X��1���M���Ғf�X���Ѷ�-u�6q�޾�M1�&A�
N��q�}|i���a��c^��Rq-a�\jo�u,]��FH�
�����L�����9��:�F���O����ǃ��+z�!(g�ɣ/�M�!*��[م�n"L�N.|z��)K�&�4Z�5AD����J>a�ٳ�bi�?f�Ik���5]��5&�Єb+�d�s��&Z��/�N[W�?h{���H֔�E^z��>���WUݘv������k�����a6N7��@f���25M�0��.��S=o��	����o8�	����
���|�(�~S74qm��L�,n�b���g>?��S���P��'S�S�Wy��䉓o�%9"��''�ҟ�]RәG��=�zf���ܳI��ZŒ�Q��0�2�A�4˙�Q�hx-aJE���QN?�Ӣ�����B�B}�	'#�ᾮ���L��J�0u�	3�^d��0�/w��M�1A�c^F��T� @atE�(H�Ǔ}�?C����,���(�N�*M�����μ@L��ȵ�Z[<'f-a�
��#dG�0��
 |Հ��TI�`3[*� �xm���J2E*7Hj�����ʠ��
JQ֔��z�����xՀ��Y��4Ԁ�攅���rp_�<��$��(
�,2��a���s�(#��Ĉ)����ǻDN�4t�(L�o���Y
���sr��eW-W�V��0u�	�O��i(
�?�_s[Ӓ��&�ZE�/����Ѕ b��E\h��Qt6�(�Eʀ��W�<��=���⢐�M���3����qN�
�,�?���Ϩ�L=�\�S1�hk���@y��rS5ct��,��W��C�)|)���e��(�]ҥ��b�o���h-=�&ctM����ʭQ�U�aE&(�:�&���(�Hx�H��hؙ�&Y�–e���Xs����V������g��L�%3C��c���u`�h�:X<�����'���}��h���ՄlSK��&�lX5�o��3Ȥav[
���y������[j�υ��Y��Rr$�:i ��*��e��~_�^�g��vZ�֮��f"(c�� L~$�z!�H=�w�c�/_�$p{��.&�Cmec��p&m�C�i�$�R{�o�	a�Nf�3&¤A��
�N�����5�x����7"q�==�-LCa6��%*���Q#�
�\9��Fʹ�+h�� =S�
��0]o��t�4�ؘ����lz�(��Jv�O��/Ɠu)��u{:Z�?}�1[��o�]L��LΏ䀋l̇<U#N_x��^�~/M�"t���5�%���E�)8�%BW��eeZ¬C_B�J�,LĚ8�c�{v���coo^~v��7�
�	+Fh�֥�Ea6��m��
�t���T��:�To<�ȗb��M.�Ob߇m��$����<�3�����F�)I������œ�����3_<z�]�5�>F��1ݐ�hV��'�/�0k��E�SGD�J솢el+�c�*SE��(�0��=���0da��e��dz�g�,�6;���3�����[�
��aup�AJL�+��Dq�~ ���؎k�{�^ �ij��$�R�����&���&b��(�1I�d�b6��?k���?J'��Q�=ky6�K�ac2\����!�FXyརg��k�7�!c_2��!䩑�Y6fb��i:HU�k:PC�!�&��To�ɫi"̆��
�(�r�>`���7[�8��+9��1?n�;�Ӫc���/�(��N�k\�m|�b(E+
d0,<�-D!Tf�~��������]	�cZ�m�V憫0�̪?��⺲0�A��H�&0�Ra;�$�T$�[�ʹ'�1���Zة��0V�s_��:�U�6eLG���TJ�kLr�!E��a����6��7 ;�G����i:�,]��'ʏ�u�����:�]��3�qJ��KsW���2d_��ؼ��
~a�_ػ�E�Dv�E�"fhI�!�.O�k�Mb�I�M�ٰʸ�%/<�
���"���qO
��xpj#��IA/��Y
���iD�jD��e�veCZ��6�� z�M[��.Ny���U��׃��#�]�ۦ�}q��{��c�o��-Zo��cn���-�.�Tj\��%DZ�F�l"̆��I�$KYT���Z�K�Y"b{�V�\�C��ה0[�sL���&�"@�{]@W�����U�QE,Z�dH���G��$h�T��ېq�6֥	
9�TĀS���q�/A�\;I�C��Zشa6�6*�t&
��(��2����th#��!Z�?nY���&�0�Pn�e$��K�;�X?��v�*�e�+P%&ʍ��5���v�e�E�E��2aB,�G!K�m^�{9_�FkJ�(̫vT�IU�l�0V����$E4'��P�-����&$������S���
r�˹3���3=[�:�lS��n�v�`sa�Ҫ/rf�ɘ1켻�0������lK�]�9^#G�P�|m|R�ТQ'�&�lXi�0}��z:Oy4��؁��%I��M�-��S��-Q��4�_CM7|ř�+	i�F�P��~�w��MCQ_�qdAmR�5Tf��d)C�dca����ЭK�Щ�v�B?C����,�H>��w�{���y�9����>ڝ��A��CT��̴�ݻ!gS���u]p��!��
j._�s��\��I�&^����ͺ�z�:������;���"�O
��e$&�q�	%od���i���G�d<�����mo�ː�ls�����29�+][wzAq��b�!��49��sd���\��0e,����c�t��	��n1�k�����{
���I�_e������l6�+0��^�0
q��,�{<;��ܤ�f��p�X��L���yI����"����z��z;5w	H��4`���^�+
�][)�|��?����1����.��A�V��}�:��~�??��_Z�򶢦�,��
-��J;�)�m&/�:]�3��{�� s߳K��{ns���=_�v��g���|�h2Q��ׁ��s�C(%S�a��ՠ�
�{��d�4ԥ
���E�Y�1���D��פE��R�2�Z`��̰�4�>��a��|�g97
��dʛq2��;+?��3��
�I�~5'�ڜ*�"7��S����^�K�?�0�^������ w�TO�H;�p��;%�(�,6ɉ�b���&����>2U��%�]�g2�S��V�_-ry.�і����~w������q����]�0{�:3-ʊ�(O������<':���IE2���%�y��,�yQ^��l4#%����q��ɫ(E��)
��ҡ���t>�O�q]���0��[�Tp�e^�����-ty�\��*W�5��UB�5I��:����A+�T"���	9�M��N�ZqJt�&d����.��g�ՂD�rT�tX�(1�
R�I����F���b�b�{��%�SN�S�v�_��?�����F�:��k�����A��f�V�R	R�����($���� _^�Ql �u�|4x�E�"'��)�W��Vq}�%Ҋe�eU��ո����S��=�o`�I���bu~yy+d�/�UQ0e0@�!�1�xf� �iPO��!�����X�H���B�:.YCdҔ!�2e�#�NEL9=k���x��Q�ݙ�RX��6%���n�,ф�N�85uv1�!;�.�A�kc�`鸔��a�:pu{3��+�FEQՀ��VF-�	�&�hT"�eA�� �&9�g�\M����r�\-�B b
/B�`�L&%I`��2�$nM�X��$�"3M�!k^�/��Ks^���%���cg3La?�S)�Apұ�zmdl@ٶm�<�6�J�<���T���Th\5��
B�����
,���g~6C�d72E���P��3�f,J@%7�~��%)G�����f�0{�:�ar@^	Fp9_P%
`UG/�RlPQ�h�2/?|��3�2��foL�r�X,���s�V3����`���Q|��2ƴ��y������͈ӭ9�X�+tD,##Iٴ�T81����D|*I�]?2L^ɳ�Bb�ڦO&����	�����m�]����Cs�Z�,�f	�~M97O85=߉��0À�Z�~hS���
�x�__�B��f�CW'`¼f���p�8-V�J�~��O
D���X�<�hT!=ɠ7o�,CS�X9��Z�Qq���GD�bG�4��#�K���Ā}B�f�.r�|��=f�ԏ�2��iYM.��Z�L�Ȟe�+ݧn!����z���J�Ա
̸Y����)YBˢ�m����� ����0��ժC�[C��މ��\(v��ع3��6i�`7����ϕ�tss�6b6���f��V�9��8�X$�%�e��.@��Z:oS�R�cf��8Ph�����2�K�)��,95��CbUR��ʃat�i)äx_�ބ7�F�����^&��fs�����VH)
�B�ZC�)��_��[�c������ ����	���� ��1�����������+%�Pz��M��&B��Z���-X� ��%$�*ȴ��j"�YL
�~]��߾|ѣ���a�:p=��%��D�a��B"�0EJx$�V�a�����x0e'�������O�R�����
GQ*���p>�;��[FJ��3��%�Kt`�x�-L��D<z �P���.��#�Lm��Q��%*H듓�0j7x��,��A���F''��K�)�ϳό��R���`�����`,�3uj�x5+
g̓u5�S������EA[��z�����g�f�R3�k>�~���`�i��~��o��X��#��+�"��d$ZFΌ� a@`���5w,�"H
�;Va��~��Sf���)`K�ǻ����U�����h0wq�`p�,!�*��'��;��q��S��M�)�g����;7���~>�=,��.*�M�'�&r���F_;.�Z�Hd���c�FZI����lwp�II=�UcQ1yl�UPY���J�7����g-'_Z��a6���Q�=�m`¶�[i1��ꬥ�-+J��RP�|Q4��	��L%Ҳ&�E��GG�2|�0Q){Ib���ł9�yI��1�Z��]�9VRj(q�c����a�~<�3p��HV4�f�ט�>\����x|�g�cN�!.�Y�;H

�Bl�1��|��Q'���/�=�g�`Q���"K��^�"�I*���M^b�Phh�j�zd�k(ɝC�%�ё@��0yq��6���Y��c�[m˴�R�;9j���K9�7��3�T.�/��b���bl�^�.�1�"o�v���\��a�B�&|�D�B�guy����5։�+��Ѱ�yz�����iL;�uH� a�x;~��y� &�(�'�]�6�qu��J�Ͱ��G9���0Mu�"�+�1y�t�=u�R���eڙ�_��顤CU�[Û*�?��ඕ����%�Yţ�&[g�8c��E`���c	C����1/
L��*�������iq{��混��|2e��j�v���[;E�bO�-!'����
���,1��c\�m��O�ToN��n�n������e�������xȇ��{��Bf�v�z�h�PFҕ��l��N�S�yi��b\�n�����_j��$�����ll�Ku�s�JhFc�[���jB*��w�<�^w�+��ӽl+��ɯ���҉�:��X8�F�9=�����t}�`
����r��1k�Yk�î�٥�0��
�}�=�ۑE�)ޭ���.����Q�ļ��x��nZ���:	����x|||xx\(E�Ao���R�,.�K/oh�	��#R)�
m�؋D$)����a��
R��
ZZ̳n�i5����ӧ+��H��.�3&�U���Yd!�V`�J�@?.^�hR�.�'#�q6�^�����?��f���>\�'���6��0k�vfX5��6�q�戡,9�����6�7~V�!a]������݇�������Z�
��C���>�%�I�P�	69��)�E�C��@F'Ľ�f�O�"�ᢨ����;\��߫[F�'�8�̴�t���
0ɲ,��8��a�xD�XFѶS'���Va��Vװ�L^��I�x-�G���˲\|�>G,|�y;����Y�����xѨ��y���\��a�e�D%��);8$-k@#:׌Y�%阀�P5J�PFT�W�uPq����E���5d�7���8>n����0d��=Ƽ��,�\�`��9��P��ab30Qm�67)�hy�����h�
��������ͣ`�����<�����_7�u}Y�fU���_$��-O�t�6/q���Ak2�g�$7��Ft�8�b�J4@���ì����a�Sp7�M����e/ 4^rʎ<g?$S�5�B�(Eg����W����P�n���Z�q�	@9ٱ ��N����b�f�$�%)�"-%��;w�2lݩW�=!Y0���_�Ŵ�G������KP�`��gb*�2��k"J-�S�4��B�*�0��LG��治������Z�ܥt�%�2N>�ќ������=��/���%g=-j�Yk��Î������D*�xI�\|�������+���r��->(O�����Ȼ<�d���a2#�	�GYz).G�d
)<2;��;��r�lh���R���L���zv$�C�
�n���V"�$w���Є2�<�&�j��fc`�+YQ��nu���q�&6�Y�41�h�ҹb�	��d.���#������=�<����#��rQ�
�v���]��a���;���ߣP9�I3y��Mj��B1=�0�9�JF"�w��a1c�v���^|o/�#̘�eDZo��;:�ձ���@u�!-+,~�:��(��yZ!���OG켈
�E���og�d��.GN�t3w�c�aYμ�e�qUٮ�co����E|���u��h��=�b���3M���s����
1�)�戓_��/�lo�+���w혇i?ǝ8���aTl�>>??c5 M�i34t|F�`���vs����{}��S�?����bVR�	��uމ���1%>��!Q�{�f�h;咭��L[��K���
����{����~Zc$mg-��5`V�
=(�ĴLLA�e`fjn�s���KK�!�ZWW;�[wxp$1Q��7�t����	�����ˬ��������0G�[#k�v]q�X��c�M*�_��Ҧ�ָ6��C�i?�N
�+�q�xј\���q���߭��bQKV�T.�����X�dn;N�����>"��o���h��;�{�<RAݴEM_��ce͐|-Ꮶ�{X�&P�%8�O�p+B��dK��%=�ڟn"��IK~qK����ƫ�iy�2x�}�de,q[���9�S�"���t�z�R^>���s�r���{,bĿ�+�
̟j�Yk/���|!������ID�ȯ>�C|i��Bki�F�
���FY�
^2��XT����$/�ސ�d�ۂ+!"�r1�ang��*lڜV$o�s���8�FZc���Dc��ͼ���+3S������Y�V�[}�o����t�Cj���E`?�'q���:�.��j1K�<�i,rˌ��ʠ����FqIl�21�QG������\b2��xp��y>:}
��ì�'�
�����$�f�qfEκ:�M�I�2���6��1=��J����9/�a0���q�K���Ŧ[�(�+~O]_��rE���Wy��"�!B{�&f
�'uLVyE�
0�
��&0��”PJ^��q�L����_�6��m`��rׅ�J얙H�'|-,#�
07V3Rnf��^N
�u{��N����ey.���i�0k�v|/yӫV�6IZ٬I
��+H
�DJD��V F�;�0��֐@�W�c�����kj��%�q͔W$d������&I�L�#�d`R�?�9X�]B�ؕ}D�9LC8�i&�{�Ѫv�u�Os
f/�h=u�No��m���V�X)	l�K�h�4���U37�4�j`Z]�2�R�t�.�a$�~9Y.nNF�\N�x�����k�Yk�î��ps���8���„ �2�pO�x%�x���ѝG�~#�/�8�]}0�J���su�@���μ��
��!���y ��$����;o=����99v���b�B�"?�,^�b��ͬŤ���>|^���AAK�O7�(�$`Rb���5V&��'��5��I�}�1�r�y9*���^Sl��Kj�wHr�`B����֞�݃>~M�昹��)}�?
���$�G���Σn�P���
�6��NTR�x�9��t�x���m�;����(醣�II��31JEz��3�9�m�a���/������j1�����Q�ʍdJ��Lo����/Ub�J�!����7�v38Y�(�V�
顩o9�r��cB�b2���2B���i=�Yk�#0ݹ���B!9T��N�	Ȑ��U�Ӡ�&s���B>�H�0�!����yLlH
���{�5�@�i-"*~�w���9o�d"u�/����3"$�
�z�����-�`�=flk���O���0�`0qt�5f�	˧�G�:S��G�#-�(��TO���_G�r��)&�{J`NFx*�Z;�Z{��0�	iV0��
P��;2�4�:R�����~s�
�5�t#`K�ͅ�d^'��;��w�����_
���\�<�8M�\=jg�4���
��[��}�K���Y�c�r����lK�M�=�	\b�2��j&�-�dĢ��^�����8�˪�L��^S;{G�2>%em+���e����r�\��)��&�f��y�0k�v����9�(2k
%1�]D��K�AM	��<0����%��;*���DLA-�-A�g�bQ��~4Jx���Sh��FF4�3���(S<�`�t$��Aix���{$9Kn�\'6��4--�p+����<C�����jqU�iZR��1��<��|��vRw��ىB^F-a-�4�`e �\"��{Z;�Z����0����1.Ų9��t@�[I�)u��1��'�0`
��Cά��+�H�B�'!�Pz���VʻW���=�\��N3ܱ��z�����ňƯS��fۖ����z5iW,��6�Ȭc��x�-��1�G���pY}�>e���C�g�r���]
�[�Ԟ�0�A;�K΅� &w���U�ì���	�J87怷d�����+���=#�����^a0��e���x��׆�T}h�@9�E�a@q��hIQq7�h�c�,G��{���b$)����
d�9q��/^v�A*��o��en��((fJ�B2c�1yto�h|E�����g��T���V�T��Ԑ��hfj�~G����X�m�����X�3�j�Ykߵk�}��,V���ؠA~�lXG��V�%�����%���1�aYL���ez.�TO�Mt���z|�a"��s�|(�S�����)��$fu)���S@e��q�42�eN�߭
2"%���FV�d�\��ܛh��n�
�h���K�s(�s'�٭��e33��8b�o�����S��x�yhtX;��;c�֍ #)v ����	N!5���έ{7���p�Ε��efv�C3a[����x���0w{�;��52J�
j�>�\��i��z'�4B��'8	r~M��+��i��o�F�ɟ�Ql�����rh�f�>̄0��΀S:g�DA:L�-��''3��6HL�\2A^�?M�"���%����G���_��@wdZ���<9i���5�2z�����S��bzۥ�Z+�}fڭ����v�y�i�h0�{�R����aN�h�^�$;�LOI�)7P܇�%��<	\6��~�]�zA
���z�w�#�s�]���9�cr;Ӊ8��J1�y���P��ؔ���8?LJ��'#4����Rğ��*���r�)-�j�cz	SrHm������`�t>���ĸ������YB�xi�)����� y�^�|C�^�D_K^NQ�I��s���"��jR��X8��H���\�5����T9���0QO�����z�9�y���/�CRT[���2n�����M�ӵoi�jO��QїԴ��C�9h���^*��ǁr’W���,��t�M�40W���ל���D�KZ�#��=�\֏*
ޅ%��Y7=4�D�l$sn���K�ې����F�a��K�خ �����]�[����%X	�5���{�U�2��/�Cx~01�?���b�ާ_��K�'���uN��V;5��3��G�3>�b&^���|ELĉ�F�3��4�q&T'ʯ���W�̺s�\M��0����ȝI��g�P�� 疁��H�FGWG��j3m$t)����^^d4!Б��7/��aN�x�����'ۭTB������Z�̄%֮��!4Ot�ELq�����{�������B��,�>ҭ
��������x�V�t�K���,W�S��R�7'��ޜ�G��@�=��C.�Z�;�u-T�ג9I%�i}�k���oNɽ���yv:��W�ff�'ͨ��D�g������$%�㴘��SМ��w�)��b�f�L��f�d#ϧ�:�+�-������U�`�a0��i`��2�b��w�@����m �Ⱦ4�k��3T$�ۘ��vGf��[��w�X|����|��%ȷ+�����ok%2��Y�{Lt�^+��QF�ݥe�]�E��\���r�>��b�G2)��`b���99�I��f-`f�W�\<0�<CU�6�B�Tb.0n�o[,�8#�;P���L�a)
�r�U�v�N�]_�]�qir_�S�������ם&�z��M)��b﬎�ge
�%�����rY��|�^O���h�;@i�o�k:�#p�+��"�<���]�G���$��5��Ca/_v�Y�I���k��AF�s�8�	9+9����G����	E�I$5
�4c�&MY��3�t<�9�_��~1Z�nHE-�TN,a�5�����bީ^�.�_�USyQu��hS�p���^x�&W��\^� ���40����䡴�T��<�P�q�`Bj~�]E�[�yj��Bg���2��·i(�0�`;-�q}��kd�<}k^L�*R9A
��y�d�Q���sG&*��9J�#ÆJ��^�l�t���!�By8q!)$C�޽V�4c,�Fqy�,@g�+��T�b��Zy׃��7�t�;�EZ⟜��մż��t��
�}	���ن� ����\E�\��ˎ����;�M�<�n��Α������������ʹ�9��5z���� �B�)7��8nf��%�dN��L�����&��Xe�؆�ΘR��:���)�ܩI؊�WU_"�f�Ҟ�����!��HM�W	r��9����I>�Ӵ�_�,�i�y��DKM�o3���|�H9<	����XNu�	�ҿ�ҁ�f�9��o�/�c��$���K=#1yHWf��Lk��.^〩�t�!�Z��H:���h�SX�op�N'ΡΒu!��־/�S��~�'fn�e(�o�Tv�XG�a�)_q�$��t�vťt4IU*HK(�mM’
d��O��QǰH[����M���UL�L�>��l|���Raz��00�$ɩ;��
��z,=��7�����`%�4DU]u�A��4�����%�ys39�I���uɩt{�P��ɗ�:l�a�$o1��Jm�2g
I�0�%��O�D��x�FP,���%�R7� 0_&f@����|
�	�.�!yEL)g�['��H��N�y�#澍aH���|�'�	Z�0��4q)����?�a�kr�'���Y�KU2�}���z��L�Ň](�
w`����}�a�[8�`���
���F9�0`e����
q`�*b���+7ʥ��l4�O4��u���`n�@xֹu�.j�V�G*Bџ�;8:�6Q|��b��LUZ�!܈��}�޳[�'�z�굹̳>.7\��+-f�q��4��A`�<�9�ii̧3u�oI�Zz"iO���h=�Iuj�]KHSو�/5M1��v������Ƚ>�%�t����b=�*TE�]�T��&�)�.�(�A˔�I��'0�>1E04��j���6&Ģ�����M`��y�V@I��&H5v���&؄i��7��?�I����I��S�ƞ����ZLIS�9C�eַf�T�y+9�����sK�� ߷�oM�!m�lB��ɁIY^��a�9��5�:b�Љ�In�HM�2��	��C{���ٳ�x��I�9C�Fq~�����-3h�@��hf��#�3�k�K)����"R�\!So�xm��xc
X�uF>�M���e�IqʈD�7�׵&��e],<��:�[��4�#����ܼ�Z趘�+Nv��0�r�;���G�L�%�j���-��)��%�x6U��t���YG��I�����c���X���qE��\9,���PIoy��y��������OSg`j�N�
��^#���6q��=S.��e��P��E{r�Z��`�4�L�T�`Ŭ�<��W�z�]��fS�.9�휹1Z�s) ��s��C�9�hev��e���E�k�؈����t(�>����ʴN�>�35��Iy�d�%�t��07�Y�5�Nj6cK�zZ�l��ߗ[�A��a!�2�I02�C�V�珏��-C(���[7�(�O?��j�%�)މv���k�Q.p���^��8�'r�(�!��"f_�u���u��_l��1;���j���>};�0����	�q�2<����R�("3�@N"&%
���x�ZLM���n:�3��5�.9i����@��m]�ʝ���7�a1wOr��$@��	��a*��gV�� �ݚ{��uk�XS�]��|Õ�]�7�ӬF���1ߞ٩pUM��`!��Y���bg2��/���a$r��D���:�`'[��2����5$��r>�L%@wPw�s����W��$-���\�p�Y�0��K�8`B��L����71K�s�:g�p�mg3㝂�4a.��}���稩�_��6E{Ǩ��+�V��#���s���R�X����O�'0+��-`�v#~�Dc��NFS�6�;X��5��Y̫�j	����˕��_�g�<�.��=�>���M�h�1�E���=��D�\��%�+�-���)J>��5����}T29Y�p*vM�n�9�+Lˍ
Ɉ5�s�<=�EKb����t�Y@��S�;���r�:L*_�T�J`f�v�m��11�OL���dq�m��I`&E�d�\B00��������@�e��`�!i(�o!�ri4�tr���>�c���>Qbܛz�!I�#�M�Ι�n:���>�.^���―3se��R	r$
1f�K�cC�������I��.�+T~n�xW����E�g��#Rc0�N�[?�
4)H�9�]���)εS��xS���������r	�|�Ѷ�_�Kjx��i{fL�
̰���権��u7��mg��,��T��I����|�^_	LѓU\65�&�.�0���.]c�0=-�e���^+�I��<Z���AD��G*�Iys�,�����n���B�m�i�B3�qHN�)ܴd�Ĝ٦P��v!�L��c
�:e�	�3��C=B��P��� '�R&�-f���}�ʳsî�4@8����������ɦ�l����$sj��W}$��?7<�^��˯��_&�9��5�.����EUK3$���l��n�C��IfRМ�ݸ
S���3���J�v<�	L�PgN����"7�rv_�a��T�1��e��g^?��Z��V1�81W��^Y�+�t�F
10�ٕ�F���?t�t����eCN��UKm�d�G������

�/�L�;�	���59̿�;��ƪ(��?�a�NAv@fQ6�%�X��,'11�d��11�+ٰ�?���B"D1�	���88����ӾP���y_��ﵠ����{�)5ڢ���L݉I=�.��4��vM%2�\1��S*���nt���!���x��BK�<�/�\���_�N�zje�-؊���2�u�b*3R��$`���R�D.S�:e���Pa�"Q��Fü�T,�I��sC��2y�˘w�xr^&22�[��=hg����]l������i�tu�t��F\C�*��_(
a}j�B�	Z�,s�`0ZxZ'/Ubv1q��qξН�������4H�P�8|N�H��(�J�	�d�>G	D�o��$/�^M���S��h�"��+g,sX�V���r	���s�339�N`2u5�� YT��Y0s2����D��nI�L�.�Qj���~��Q@拗��[��y6J�Yj��޿ft=��$x��G�5�~���
�3>�\ْ�!!��cA���O����is�*;�l���^�+��Y��q�MB�J�ޔ4~�<s�
^�/��R_�*E)XJ�7�iAkI�!�&�Ib�=,~;�T��KPDǘ�(9L���Ap%���J*y�Z����,&ޛ�:��r����a�u
��J�r�YS�0��3''9�|�N�SF�i�<:��iA�RŪb��ɗ�R2���,�>��?�����=�
���9�')u4�C�K��B�Sb�O��ʓXcÈ�ԩ�*�����==������b_OSd�D@�,���"��&ҙ��X�@^�[��;���a��h�9��C>��2>l��hJ �X��С�p�S�y�1P�
fho6|�R3b#kJF�$��BK�폰� >����fU�$͝�Qj���U�i0��>�_�GН�������r�I�[�>>f�Q'�$C��3C����cn3��(�4�8j��u����;{�� �9�*C�"_�^�؄��e��Ԩ�8Lo((t!�M�^n��td*cJ�6gg'�q�ٚ�`fr�����>x4Q?U��'�:e]�*.aW�B_Q�m
Q&WSM���
�K�r��n�ǒ$�Ӽ���N��imX̌_CyH�f�z���
����X=��n4�M*C���.�$UNWcu"�'���&�_�@�qX��ruZ��k<��{���a�i�740��\��qM��S�&!9�5,�
e�_��c�����5J��_5�̸Y/�32j����I{KG)\�C��)�A�;���=lk*�ɅkbYs��)�Q�����햊�S~����uǤjڸ���y��V��S�T.���: Lcb5-"?/_�l}`zb��h|��:�R#��d�Q@4��}L��H���k�9�k�տ�ϯ~1Id)���,j�Y�G�E��y:�����J:b��=ͬKS�Kcf[|����WI�۱9ӷ�g��}Cop�T���.PoMC,�%.����q����o��-��L�f�'���{/��q
�I�f��Ԩk�u���f�tSCn��/ ���8����R��ֿ���������3+K=�)�a �jr���MC�AUQ!烇aW�i�2��Bӟ�#j�����w��&Evg�Lυ�s��Bg~�z0�q���"!x�I�/>�cQd3�[�2�2D$\J/��ҬgT��ȏW�,f��אS\nAf�ӛjW�!)�G`��y�z�����HF�����-��x5��iۃ Y�%׵�]y@�`)(h)�c�%��3�0c/&%��tY��‡��r�X쥴2�^<1y0o��rSOq�:%�����BO�����RL|˒Y�Ы�-�ԋ=ez���`� ��c�I�A��J�Yj�5��r��j0�
�L���|ɸf�P�Gf��i�v��nu�b��;��57a�̠�T�Sv!�=�r�9�
j����,�[rO&��af��e��c�#^I��e{ݏu�5\�/T=9[��[}ӻg��<�kNN��˙���]���~L*�I��\�����i:G�?�Ԟr��
XpMf(+aLcYѣ�>��t��FX�����N��r7
�}�&�9_l�]w ����'�'�W$e�sp�ڿZ�hw ��nt�֋�8�	̟�$N��r~^y��lȨlE̜�V�N�O�v��kLJ��΀X���@9�ҁ��9��u,`��$&���d�����R���?�t/�R��%0��v��4���;s�0$f0�������%d�M�$Z�(�4�0}g73���|�&T:�R�*Z�a��
���̳��le��U�v
�x�r�ws€�>�>y~y|pr�jr�����듫�������������������U'�ِY
��d�U��IM����m\l*g���0W
��/�0���+p?�ٕmm��8�uN�5V�uT>h3�w�v�Lڡ;CA֚��Z��g
��E&y���buBrS���8�i���B�
��� ����jn.���.0=[�f��J�YjD5�Üx�=7��BA��E� +�M���m�����b�V�}�C��÷'���ϯ;�g�g'gW��=��u�������ˣ���Ʈ�?��O��w���X@gii����ё�r�I%!�R����Oц�j�j
@I���4�k��(z�F[q��}_�^�YP���E%���{�%-���&�SRw"6	E�Gՙ��K�,p`��}��!2����V�\�"�ᠽ�
��7���-4�	L�t��FO�
̗X�]��yyBӖ�@��

}״Y���Ɓ�\	`��^�_�~;v��e�ns��ur}8v��~���6e{���g���ίW�a�F/xV��XN=�}�y������TA L\
�0��z֒T4\�l�Q������$g�$Kwl6�+	�>xv�P��r%
����(��&�sL��M7���#��M���-_�1d�}��80j��9��Rh8QwL{����L�ɣ-�'0S��,5zj3w�ga/uv�����x��w�U��F�`&X���9�<:>�88:��<]�g~{u0v�ٿĄ�����������j���;��)2<�Ԙ_B!PN�~>��LGkG&a����8y�+�k9�!΅Ϋ��p�u�do���:$_�[��V���%1��*��N�3�h�M9���f�/u%0]�/ըZS! ��U�̪��}�K����p*��\8��m>�{�T�0K�����lzF��`�0׭���:��t7G�
��F�z�=��LuZ�U�����o;�)��6��-�=`G� ��$R�*�5�y�{,�ۜ�͹�#
ɋ�&�G�r�o"S~2��J'��R���C\{�$,)�櫅A��Y��G]'1��y�!9�ߑJ�)�Up�֑���ԗ�/�Qr�R��$c-�7l'���>� YE�7SҶ���>E���Hi(�9��Bk̃^�
#-f�Մ �u��gOU��'	�6^�iG��1�y�-�m;0+u
�#�z
�#/�>SA5�0-�eC�1�}�'5�M��e}�e�H��3���
�윳����Ƚ�vfqo����Qć�)u7�~��V��%hf����,���l�*�+�Hw�EhqL�~��c��u��K��Or�Y���y�6�'0S��,52rf��H��p�m��(�5�c��1r�oo��}��׭��Wު���۔�v�xj7߲#"�Ԍ�Cb���i���������.P*�I����7�T�?�&Yx�"8�}��Qe~��;&�2�C�Wd�'����j�Q2�v\*�
(�e,,��-_-$���[a+	?�Z�2��^�V����CK�
`U:�R���	y�ȿ��#h�¥�O6�	I�bkq��ϯ����7l&o5�f/���Z�*_��a�*�+~�r���i�N1�E��Rh|��%�,"��Y���,�<ЕĤ�$=���B$��`����'�Z�K��	U%������M�!3o#�>u��X��O3,$B�K�bj&��`�K�Yj44�f�kqh�`�~H�ܘ�Ά&
1L�� ���{���C��~[��bɆ
���ٖ�,�� 3V���V����;�sN���#/��ܦ�Ә[X.�|��V����.���y�pL�����r�
� u�T�4���ezLYF����j�`uY�ms�'�:���.ܢ+@����c�uakkka�ì��Ԉh(�YA�^.g��Iɔ
Oe��+�|++��+���n$��Ց�GJ�z���Y�g��������r<T�[ݑL"���v�'�H2��&?������3�yN�h!�G˵��+pX:#	����xȼ�w�ϻA��eޡb�h�D��nDe�T5�̽�	d������-�b����x�M3��	=tE_I���Ϟm�N\:�R��a�0�p�b���,֊��)�ְg��>p�
�s����擩9��A7>[��p�$?�u��Zm~
��ݝ�{vv��'����ig�b�-��K����N�`tYq`.Z1r2-ȃ�s� "���?T�9����cQ͔�.�/�Ո�.�z�8
�����ԥY8�y)���s�p=��z{q
�>��w�
g�7��ߨ)\x���kڛZ���6�}��3�t��w�?M~g�^��<�G��۶Pv"�����J��X��)�H�
*�@6�Q�1c1s�C�-!˒eo�n®�>��`G7���׷}z���w�]���O^�[G��ʢ{�,,�}b��W��
j��}AdK�la2�3^��u��"�e�S+d��GH��#����J���
����7`B�Z^L����ݧ�	P�v��e�ܗY���Ώ�F�͞����R^�ǡ��5��2���g�Ydu0!����h%Ei���>jP�䋲�2;ش%��Tֵ⤾�G�ݽysq:�0�:�:��@�4Ȕm�\q�2	��n�i�	�j2�ע���r��$��|����P$�x�0�M�Q�"t|�~87"<D�����rj���[HL��d�~���@���_��o�i{�&H~��WܵR����J�3R2!nMD��1�-����Ȯ�d������
��?4�<�d�jWKOiV*���@3sU!A*2W
o��L�N��0�:�:Z���`��T�/w�Gpi�W�a�`3�>]H�,jj���!G)f�o:T$ĔN?��~�	;C[I��ë�eu`s�mV��pN�M��Jpf��AO�o���F2��7��R�V5���fKyHS5ٔ���Qh�O_�s��	a�6�m^&>V�3"59�5�K���ٱ��E��I��"�,���o�9�5��?�[�!j���˖֜��IN�V��ykq.y#�29����qr��NT[?������j���@ �"��V�L2+E"��L�.+S�i�d
���������$� �p!M�yH����
�ʆ���^��@�>�C�pخ?��+3?�7pzK�Ur$����Sd���
�6t�kxdyL!%��vnz���%�V�����ĤZ	J�AK�-�R_(���穦5���tk>J��qב�����a@�3���
�
�WPSSG/�̢6�w+
G"
�ib�H����*Xb�s������i�PG/�sV�fW���A<2�C�^∽��ʅ�=�v��|p�rCY��"�к:Om0�(/��Oyp��'[��z�3y���8i�9�`Z�B���lgf�[`��
�]�L�L����
�)S��L!^�2p���@�2��l�{nN��3�c.���~2�]�Nrn�~9�,
T76�Ñhs{/�F��,æ�x�36��O\^Q��\�Qዽ�:)�v[��1	L�.�<Iy
/&'�v�����Q���VrC�_�iRj���^�tI:����+6h�y�^�X��A�|��u
���X6150-�<�QD�I-�6�F/y�nS�e��d�f,���@�Sd���y�zy�O@�'�x�i��i�a��0�:�:R���]�h	��ô�E��`6D�p����D�a
Y��l(�wŢ�W����Z>�K�71t�&�h�O���J:�əC*XCD)��� �񕊖��l�w��R����W)���;Q]1]�)M���Hi1�$>i��Ԓ�>������g0�p��cj28?�!/LK�찏�z�P&��h�KE]�Cy飆���6���D4�jҸZ��[����3���,+գ�P�a�u�u�<L����Z^�榉ᐘ̈��p�1�bz�bq �.cN|���vC\�|������".��V�R`�b\AL��U�3&iK�ɫ4�W�|��X�)GԎJQו.������񉱱���h���W��х�NU��%�ج��mB�xLҔ�
l�f�	��,�N2]�zD{�)�f�4�=x��}F&U�@MD^jVZ���x���|��vCӄfEH��p�tʋ��2�������Hc�M��R���4�N���ae)���P8
<	r�i�
F��p8���Ӎ

�4��,��>H�A�e� ��Y*]�p�Rh�������K��4�5"Q�S�d��d�[�9�3�]�
�=Nu*�ל����^,XY_���*��^�-�/�YLU�z�%�П�U�B��:r�y��ɬ̲����w��̞��^Vr@���U�wo�C�l�ܛ��Q��"i{y���T%7l�&W��I��MK=Դ97���*�����֑�0[�1O�<ʄ}��%'N��
p+e��N���8'F#J`6����WG~\^�d�Ȍ���0���"q�a�)E��i0�T��N��f=���
�l4���"e��-G�]O$�z��77�7�n��n��ܺ��޷
vRU���y���t%o3�gbf��y�K+�	f����,��M#:&fe�\7g����mQ:��ъ��ʊ���I�
�
�!5�ٚ�/i.m��澃�I0�]U��>ysi���^X�Ed���R�MG�����z\$�ʚ��@�:�8y#g>6�v�4��Vsޡ���y��� �bl��~�S�ق��ۃ��(2�o�+�c�c:>�^��ML3�����N��?>�"���fh,��78@݂@���i���V�̊SU�ʊP]q!b?4��%�M�\q����&�yg��c��z��F+����!�Ln`��<*�ÁJ)�!�<��.)D0��2�T6«U�I+�C���������i��;̼�����IWy�*Tʽ�.&���@m�(�E�b�ω��H8��g}����n$e���f��
e˜�������f���v0��{�|,/�L���&g<��W�U�G�>!lӉ���8i�䤾���p���8p�пЯ�	T�������թJ<ӏ�}5�	�bZ^��b/��Kd�g
���i1�G����b�2���d����'�5-�l>��(��ۋʘ����R�S�,���<x���T~3��#}��H�G�֔s��T�Phl<MS%��Y�"ʵoyN��K�0p9��?��m�#�����h��'Q�k�'ru���~��F��2�-1�'،\�b�S���7�,���qx�N�4�y�O�"+ ��K���'�U3][%4|$�S��v��l/�/�@LbS\f����~bta��`����u']�K�$��v�'����S3y����g�cV9+ ��bû4+���Kxǎg��^��6�hpH�ں4{�^�"�΀S�ag��g�c,�]]��(y^�[G�K�d�2��V(��`a��eQ$]6�c�j�I_�K�!�ݏ<F�@���Dm�,�������:;cƆP 3���jC�/���⒍���R5�RO��{�_���<H����E���d*�W����i-�1o[�Ĥ�4�,t־����k�`TDJ��C`^�']T��3��*x�qppp��ot���,��0��������5���)dꑩ����iZ�LL��YN+s��Ze�ֳ�)��9R@�^ҌR�C����Ӛ�0&?S8OB2�	�,�oIᶢ�f^�\Gr��`���X�0Yuy��C@<&��Ee~Hs�>��h�R�����@c�_~��?�m�)F�h��N�X~r��O�-9vQ�K���']�o�wn�����ßȪm|��q_8i�iE�>��Q��%~�c���)V�ԾR�T� '�c�R]I��F�%wf��Ԅ���3�����K��[���
������/3Ӆ����1---/M�`)�q0sT!��T�����m�\s)��V�̮^ �k�A &	I�l�"S�����v�mh��ÿ,?�w�yg1�S���$��D����?
��
C�fC=�zP
b��/+�
��)����|ԓL&㼹�8p
�)uN�sݯ��-p�	�J�s,�L��N��49����w7Q� �d��M;Ti�եɇ���{���\Ϋԅ�tЙ�4'}���7�6���dA��J��x���g�F���`8�&~�^^���Lo�z7p��,�V,�b�1�<�d~�C]]�Tƴ�Z��[bf�W��-�6�>ש�j�\�R�����:�gN`�ꮷ��OY@ZbZ`��f�t�a�u�u�z��$1$ �
h��6�#C�X,��D0F���&F�8Kүz�e��tu�I>1���ڊ�%�Lk�y��k'��!iV֖��7�͵�����wf{���/�?��;��g}����D��g��g�����4h�������\�MM�)��]�t�������ͮ�/vW�DsY�y�ui�e���D! ]�c׽XQ�0��E�ntgg���O?�r���W�c_>|:������e�����������������:��;���c>H��V�����=`��U�R)Ӵ�9���a�i��b(G��x>�E�CȾ��O���p�~��
Q�u���P
OD*X(�0�:ޢ�<Ra�$�*Dn����~�Y�3�Ո�#����	��%+Ñ�(kg����z���?�X�:4�������6]�L��q�:N�K���ރ�|t�]*M��ƣW��Wh\깓.�)�)`����ՔS�z����?t��Kl_��wR��5��G��_��u�B����"���<���
�k���_��������ewҕg�
�(~���!��~�mG}�J_����-���0m!9H�ʾ�yE茣ܓ!&'֍7�zh�?��L���H4���������qJZ���G<|X�w�ys�a2`�zk�'cERrk�14�7K�"��
y��ELj11M2f�
s�50S{;���Cp�-�z��{޽r�\g_�jz�w�`%,ދG���ߣ��y��%�����@�{ع0������V;��ti���#� 0[	Ʒh^�z��ȶٵ%z�0�~��]��xC�ك_1�{��>ϯ����e�D��~���l�݀%��+���/@��D��e�0s�E{�Z���u�i�Ii7�a�ʬ 0r(���K�3D`�s�����V[��dv�6���Ey��ױ֑�%��T^����w4�Ff*df
K�z���p�PJ�G�8��Z��[x(���,�%���F�2(�ޔ��1ɗ�Up��<"�	���	1�Ѭ��x-������3��bL�3��>��Ywr�q*L(^��|&��%��k��g�]`�gq���+��:���tѸ�͈δS�y���o�88��g�л�ܙ�[���9�̫�'$�tR�p�uY]r�pҤ��Pm)L�Q��5�M�z0��:(�zٚ�����%0��VoI�u��޻�ZC��)5��`���S?�y��ɼ����h�%���z+�}zaD=������i��0rR�0�L�r�]�����r>-A����X����j9_�{���l����J�]�( ����4Q�r���8�ݖ���5���Ē{oiǩ\�Ig�Y\�����b�U����:��-�g�4z��%W��,tZ�B����v�����f�6�������+����h�.l����[O>�]zzý����/Y@���pgN��|Nݦ{���?r�E�5$�:���/m����EE�;PV(���m��r*h��t-)|H������,�"&;�K�^��`3S��V���F�|{�9�w�yoq�냽T�{��J��T�d������RQ�
I�%G29���ӏ��&I+��閦6����v��F���]����E�.��<+,d��Ώ�s�������8�Fm���0�ﷴ]gw��㰮�f!t�������m�3[�K�^/�o��`qGP����ޠ�A`�yS�+x�;��|׽�0�!���xnsa�����ݟ�
?}����K>�'�|��s7�T��2wb��/ՖVv�[v��o��"KF}�l!�u.��������z��QN��C�����K`�b�9�����8)�狈 =�;̼����0}��p��)��*`�k>*	L�)9�oQڭ-�:Ƅ�:���5*a<c1bT�Ə�#ƟgoG)3�.a ��3�fi!�w��T��`~��8L���s�l�}�P�k_e�������~���"�$~��3����[��t��)��
"�S3Z0�ݝu��mܰ�ڽ4��>���o-�=�[����^~:���>^�3���n<u����{����\{������Y3��O*�<C���u;��`>��Ƶ2/��ǜn�ݿHvI="��Q���#��~W��O�9�×�҄j�2QI��3��#�a"<��[�Hr�^ˑ+���̴�:�
�A�%�(sx��\���g�#W�TD����p`0�iov^0^�s���s&�H�kF^���p?�������Dw=��̺�x��f�����K�����Ё>/�f��|�L�A�'��I�a~��{���<1��������ܙ�B�O�k�%����`>������7��r�?����wN�{?r�[��gz>��*��қ�:��C�>l�3�'�B�"��Z��P�Tv)L��3�K�`S�	=|b���4M��i�ÜLj�ZE1g܈��S-��<�0�:�:*0%��ꮱ�+E�JU�JUż,Z��D�J��HoG��%�҄x$
�y���%�=����V�h[{z�6�%�}9t����B���?�#��)x�6���&��\_D���{���1ƙF&���,	�ķ�!yɽ��X�������D�50�
��
]wf���9�l���_q�g��8��gw&��^�͸�{�_zJ|r��$�`.o���É����˻��O5�K�DsO��K,�F�7�u�"e��\�[�s-vU^�"B�Rfv���)Uo���P:�$6�M��F�ы����)z�(iIl��f^�[G����c��A�S6t��0YYY5f?����*��|��(y��Dya��U����"�2��F��qcD��d���GB6�
r�c��%`�cГ@�Q�v;�>�rD�/�>��dq:H&�^�B�������^��1�h��u\s�Ygr�ϰmO_�͏���p��D=���{ܟ]u����(�ν1���'�́�>�;zW�)��vv��7��;k��{��%
�90��Y�ɟ�t�j��9�bV�Y�R�D!E�DY���ԝ�IL�5Hoe��fb~�xA�$�Ed��:
�
IQ[c]T��&���W��|��K����>yw�a�"�^�C�.g<�(�9a�˃QJ0���_���HS�AN�Kl"z�$��PG���P)��y�-�z�,�479e��x�9~�y�z}o��τ3-���L:����`'}c����^*�_�E�:�}�%y�~�66��0�a�2�n��I~��c�s��JkL�WǖW������.�'�a��?�&1�������Dg��56�_R�Dv��y'�|5��N�ߓ�`R]�]�!m�CN�)dZ�G�k`R�I۟׹�}?J)^
+=e�����p��	t��l_�H�\�0�C�%A$q~3��#�aJ!s����K���3-Sb>��d���"��S�g;�ɖ"����F8�����(��)jN�V�3�.���6y��Џ~��c��(-�y��r��߿ln�t�7�v��+;�\�T�|�L9	���;+�zY©|�u=l���)Y��*�l�l�9e�ͻudz������WvP�$�Rp���x�|3P�~��[f��́�����Ѿ[�_n���,�Ivnn�w�8��woK����[;%��FF�M=Yؼ���[�c��O'��__m;�y�*�y�23�=��$a��f
m��Q塙�Ę�xL}�6H®.LҒA�އh�d5�.=�W1�}����r0_EF�hQw�~�M*P��O>J��q�р	���%�eKU_*Ød�x�hu��Q�	8�r[�(NI�z�3��L��s�3�5 V�hkj9�ϖ����"�C���Fio��	�{�TM����S�@�-��*TM�qE´����S�y�ur��h` ��eAA������V{�(Q��0_묩I��"����}�f�!�޼�����?�Z�ş�8��Ly��>O�DL�.Ն�6����ij%'�ĜZ�T62-(�tB�Dx�I�V�����ڗ2H�Y`�?�K3�0�uZB�qE�a�u�u�1LR�/r��o����|��{��Y�RKcd�D<x�ƕQ
�CP��Y_���>�/�������[����lA�1OS�d/��es�,�{�
��L*Rz�G����HP��\)U�y��{^,o��n��Hhe�����oY00�51�Wп0H-�Tp�,��L�.Sm��q>6��3<��j�D�;�W��jj��/�0�o����x��bfW�(:�����9z榻���)�:�]*o�"��$�����i֏D�G�W�ć]���M����h�':�$����w�ysq.���h
���dP��pp��>�r�#�0!&�:��T��$���L�K�4���nl��y0�j.p�Uy=-0��c�@I,kkjjê�Mz�BȊ�3"KJ�/�KS�Nℰ�(��u�9�wA1��[����A��[[�}=#�
���|#j!�V�c��s˫��XC��Ƒ�x����_�zk`����L#��(f��"S�]s�°R%NC�=��\����9r�J>f���R�`2�r�;L'R�$9e.�I#�,H��tNv�a0+N�l�"57�3��#�af���Ʉ��n`Z^_u���U�z`G`H���Te*k���*(���&q����g�� ѽ�U͸�8�I�R+��������}`A͒��Ri���d��)�V�p���H����М[�G&������؝��~�˅����_l
O�M�c�x,nl��c��������H�3hl�����S�XHF�eu>�p|�!�혫~�]G�Z���r�>,�c�Yi��MLс�:�f�vf�2	������kȚ*E�5��]:�^.�1�� Q��6�0�:�:���?x�mm����b�y���B���$G^bZ$;�(xIbV���)�Dp�2b�	�92�Z�~��VZ���3�D1SP�˓m-�~+�&*qַ��ܱؔ>8^
���Cq�rɺ?�V
W-i"Csg��9��pkp|bt�Nܝ�Ǻ���}���Sw�1��ߌwwu�c���dr*�K0��0�ښz��_-$cр_9b�%-f�j���0�阹�"-0)��7+m�>���&j��!�%���0wH�J�yJ���+�U^��(7i����ڼ����c�
F���$�ڍ��zm\B���YĹ��S
��bl'\䉲g�*��S�F�M
�0�3���;;���U&��4'�Pƿf,B��e.Y�H�4�V���2����m����d���d@���3�0��0qwbl�o��q������*��9ҙ��44t74�z���S�#��lj��|:���[7�U�>?�G���^Zb��u�%�.l)�S�`��
0-1��湕��f69Q��F�H	49��b?�j0�e�Ǭ R|�+�m1V��?���χL(�0�:�:b�\��8?W�A���g?-h������%�ɾwQ$!%��+�#0��@c5��(y��	G�0w+�_���"���A�PWG`��C��̾di9��T��Db�XřgG�.g��8�4��/�Oܖ&��}%��==�c�c��`�񾅅����a�p�fr�;Nbv������p2>7bƺc#
�#O�VW����#��~�((kӒ���58� f�$e�ɻ�x�=h�<$�=�>Xw�Mlu�Z*
���a�I=���-�&o0�^<FA��IM���.8�S�(�0�:�:�&�bV��T�o��`2LzLuP�*�V���˸��T)�~S���a�G��n#�x���n��R���&K�dQ<�;�5���s�^��KH�;-swfg��X��#BG=�h�.;�����b�!V�:��w79ї��nތ5to�A�Pgr���~2o�`y'���o�%��:��p���
#OGW����5U�??�_�œ��uw
�J�7�L�1A%_Vv4�N�fVV�]���b�[��%���l�l-e9�]\g$G[��$s�`2	ȍiS	�f5�`Z�f^�PG&9�B%hP��JJ&���3=d\�3J`Bɯ{�����ɡ:�Bh^�%��r"P^�0Q�#�$ޯ-�[�|�0���ɵ����k�[��6�oo�}��r�5�?��`�����.��%���|�s��P�rރ��'j�_�40�j��,�s�k6��k]YZ�.����Y�4��|3����'{���}��÷�^,
�{�l�ç����g���4�>Y�]�2�t9����Fb\]�16<�$���;���-�Oݜ����SX�\�ݲ��1��<dX3G��f��E����1m39�\�)�t̮r3VI`2�ť�zk/�=UE�d��JĬ"0��3��&Z�#��z��>�_�^�m�E=�D`��a�'J�I�\IW�%��?e���W��`"�㤮�ԒSò��u�-�(����Jޏ�8�]�S�g��q��z|�SK����%� (7|�K'?:�:>�ŝ�rh]����N*i�y�0��a�y�9�5

������0�%�a��D�~r�3�A�<�=�7������ة�(��5P��b�v�Z� ��˴X4&�p,ڰy�X�!��i᥮ܚ2�E�� *U��RR�e%T��77'C���o�w�y3�a��tN�DGL�G"�fc'��E�h��/��HS��"
���D��}�B_�pl�+`��H�����qX�ښ �C�];�q��.����./ʂ=��T�<��{RLYW
?4�(�Y�p>s���X�\����u�+�x�5��"=o�0{F=�K�l?����M�������"�r��E
�Xex�1>�>��r|h����ޓ��H4U#�
�(���nqi
���TQ��f2-\�'0�<�t뾹�T�zRdB��z�!/	L�Q�y�+$%�qL=���*�0�:>:��~SfzK&J�ZNy�[�gm�pӉ�*�I�Q��Q��fx�C�cX�o����!t�Lҭ��Yb-`�Bୋ0}'���ׄS6�>ސ�z.8�0�N�H�{�,>0w�3����MêV;�Ƥ;�F7��>3UbU?��B�_s���(ۼS��b���X��8h1�̳Nѳ��_�zx��ө��P$8h@hkdn8�G�z<�`y.��W�H�J:�4�v�/#�/�E~�If�ʽ&��`�)T/�!��F6ɝ�e�%���*���f���� ީ��c�Q��	`������T&��
=��+lz9�Qf洵a�3������:I�d���FTYahO��TF�\����k�����=��;�L�S�j��k�����t�|�0��0�:Փi�>(`�ѸV̢b��7���W
�+���
�<��ȓ�+ mObl����|�6��|zc	��C�����'{{HX�:2�}�$}bՑc��a@��2�?H>���XO|��0]��^9-����5��I��Ka�/i2����O�n�O;<Ո/-��Xq�\�=tp�arVô���4�י��}6C`�f���;̼���6�	*
/�A2�e>O�hlfFQS��N=Q���:f��L��G"�CT�9d�䈬�:D��K�
0�;~��5�]��g�*�`�a�$F+�~a���D�����)./��Bq���L�����9x`��E^�uB���M�/�/��>�f�L<=>16�l��<�~��7LN����]T�tF�W;���WWWc1�+̟8}�D4<�97|snn�s$>1���&n��T����!SJg>�b��̞�c�o��k8Z�ȣ9ص�w��JP:���5���Q+z�
ZMIgWd%�L���k%+jJ�|��V�K�'�~`�f^�EG�`���+`�y+��*��e3�7G����$0)�A��by7�=����%��������0'����<�����"��$�{t�/�k�0�{���,0褋��K�O�k�G���٤��n�H��|�u�̂E��B'u�u��+�0�9���rɽrs|���s�D�zbםL��7X�f
"���
���
��;�$�4Ο>h�';qE8:����O�1���8�^�=]�)��*bZ�)������q���e�}0s��uu�oG?����>uPj�2%KI��AU�î�+��x$⎈�3[���f^�Z�;:0��-��3��=r���/��d�w=���哂��<����`<���Mj~_���!xK����)*�vt\��MN�(a��)����8?u��aZ`^��5�d��&�W}�D\t�ΰ`�dou}=��w�&���+�p����g#cë��+��f
�:OO�0���1pb{V;�$��HeǴ�@wl�;�=?����~�З�~U�7��}�t)<�����V����*3�4�;X�4�9uo/�Ŗȴ�43˭�d����'eY]�F8L.��f�T*B��`[�@*�,�0�:�?���h
���	L�`Bf�
�R�����Ϗ�O�SVAWs:\R�i�(�>��z���7+NKGb
&.�"��_"�'Ř�I�Y��a�����C�aT�w���"H�N	�:x�{���L�0�Y�]��rE����]F�W/���oީ0��	�V�Ξxd~ɗH!jDj����ȓ�'�H^�ww�v��O�vkkbp�t�ϧ�YK1�1���؎�i[��4'm�\�g�6R�/*wn�q�����؇Eΰo*���/���S���Ew)5ܭŤ�,/B�'�0�:�:jf����QLY��a�B.�C�	4�u�d7���QF��B����N+�2f/�QG��z�n�"0��Y����\��ۏܫt��
�@=��_q/����ˣ=~}^���b�q"�Ǘg]�?:�ݍ��l801<Lxϻ/�\�g���|ҽ�$���y,H�y���Z�l�+�Sw斓��%�f�|�s59�� �(�gxd����n�Mܝ>}�[��Ƞ�eBLn�fGZ<�B^��~��q�zD�L̢CZ
�f�7��<��;Sq���C�-���#u���R���ph�I��L���]E�����S�oǧ{3�M�_j�MS�Y.��.
.{���(��i��
2L-I�fZ,k����ꖙ�*����`hC3t�.��󝦛�~����h7+�7���\���~K^��󜳮�o=a�\ْ������Lc�4EH��>��3y�#�+}
/d6n.�鏆���3
�Q0�[%�t�H[p�s<u�{/�<�oV}��ɖ����8��˕\$�L���?T�n�_nv#���s_�4�c��ݤ%y��|�E��|�n�����Ͽ�3�澫o�ܞ���26�l�&�TU0?|ij��BЧ��&���4�Kf�?�Z�-�L0��Ry�61�ܔ��ε��!��1�6�yl�%�+CV��gn�/�2�Q��'U0�z�F��<^^�|M��@�4�$�T>z!0	rj���9r}�����,q]f�T�7:�@��"$|P�� ���`@�b6򧱃�,&�J�f���~�t�r�|.�>�e������O�sY�N\�~	Mu�g���	]��!r����׏���~�Y��}�Ⱥ,iEnVq���goݺ�ݲ���9u��e�r�m��y�
�������S_<x�z��+/�k�|��`����������݃�( ����4v��";���z�}}5U�~\}�'|uZ��1s����� ӥ]r����*Ǩdi���b��P�#�h�2[%�~�4=/�k���nm�+R�"�)55�w�˿���o�v����p���� ]�0���'f^���$u>=$&�H�\�ӓP��By��@/����ˡ���)�.��ї"�Rʩ򥥶��v_�[��i�W�}����X]�S
~�v�����w?�ELXҟ�\�����
:�r�����ǒĩ�R$ܻq�O��x�EV{S�;>[�JfS��C�	� �M�{3��.,"�e��Yw}���E�����X,�Q��9��X�)��N]���!$�4�}���b8�Еah{��K�c�X~��20A��!x�IY���j-$��mR��.���&t�k;z6)�~Z����|��\���xSٕRJR$�"u�r�0���r]'k2�G�O�SN$uo.�آz��œ��o�۟DAހ��TS^5b9$�݅*��G_~(���j���E�a�̣pn� ls��E.�@!ؗGڠ}m��^��aï�$�0���_�f��B���0�ܵM)�2�ަ���Dr����J�>
	�@�ۃ*��2��rL沚*�OĆ��u��99�<�O��[*��Q�=����P��}U`�dw*��&:��l��֥d�������/ܾ|�kd%]q
��:)��mΪ�\71���'�K.�4R��U�H���$�P<�UnJn����E����)��f�O��_�yQ�ȃ�,	�:<�1��+#�bN*
���`m�$N��R8��)��).
��K�Pe}�>�%t��=5HK
LML�ɠ&�d��6KM��^���]�L2���ǞM�~��)���9.\�<���ÁseQ�k��S���d���'Z-p�Qĥ-����:�Y!r��\�N����39eO��Z�c��~#��A�2JG�eҰR�|9��p��lI���.Ť}P(%���U��
L��A�9�Y*�X�r���%����R|r�΋t~�k��O��TW	LX_t�kJJd�J������&,1w'=s�9 ]�@sQ�8膜��/��"�%�2��
����y>�
���Jt�����	#�C)]a]�H�X0��=�,�ji��Տ��哉a.��q` ������\,M5U���p�t���.WA�ˡLNG��������pUO�8aU�
/��,�ȧ���!��2�T@g{����x�v��l	����(�nFj�y�]�Mm,a�e%���
�.%&�o\����
L!�����h~ԙux��_���%��P�̤C�'‚ल0�1�|pQ������.X��X����OY52[��^[����g�A�ǐ�E�k9�$:�a��Y�^��2��#Lؚ&�n����њ%���׃�r-^�G��ړ�X��'������F���c]41�}Ud����%�N���2W�)�N�'�c{�߻c���u�a�����Zђ�%Qru]���m�deq�!��0��l?{ɫ��bF���9��,�~3�R��0G��)�;]MI��[���o�,051���������\�?��ܝ
L�W2�ȉtu���}��M���Lą��t�&QQQ��0��iJ�Rx�A�u��>ف�1x�"H��$E,�AA�V`
�*LHT�J-ȍ%�
��:��mu%�\���%x��%��� �@N�i��;������	hf�:;�R�������TX<a�`�5�ZE(���Q惍(��I�=�Lzr2ݟN��ťc=�O�˭sZibڙ�Fb.���:^l$��#j��B���a��+έPS�̎���|ă��&�J�ř�c�-.���Lhg����j��O.�|�z��r�Ob�O�������Ih������+ڝq�?�0IDF|���`�xB�G�#&e�Gj�P	N2{�“��FІ��""�[�c��Z�LڪN�X]��$��Lb.�P�oN�6�����H���j׮C�	VpKtw&�:6����8��u;�¨��pA}5u�;�k��t9\}�0K��һ��O>t��Gy�qr��|ky�o�>LB[E=3�i�n^����15
0�&����)2.��A
vr�؜�Ќ�� �%���2�
�-0A���&�+}^`
1�w��,j=~�����a�i�@-�sG�}��=�yL{��Ą�U(���gK.
_*��^������q7�G�=���iT
1sH�B��ePV�W6��|i�o��jAEKA5#�`%�u���5-�~�4����@�3�L��R���ã�c㣣���T_Aݎ�U._�����f^<O�q_sb<�1ӻw�g��Φ?�I�P����5�He7�U��<&6���ƣ�%��n����q�2D��ˮ�O�.���^��lG��L��,�a/�Y�/b>}d>oe�!.ק3�u�|���s%���Zb.0��v֦�<Œ���T!B^�m:�to�"S��|$2�hr2RLE��GxY!�<F�!��:�	�5�٠���[2��y/Nn2=J��[I�|c���\r<P.����8�91���10��0�d��Tv
�ΚT2-&�(��L�3�m�^���W�|c�x�&P��)�[cF�0�X��dJn<JL�{.�Ѭ��o�P�c�}J]R�E��c}���^fm%:�o�L!�����?�����\72׵���
���D�d/�`-�8���,�Ar%eHF����v��L�z �N�D�F\C:1\c�_�4q�%$e��q��j��]�F��λ�A��W*\�:lK\u�Ӆ���ϸ�Թ�������򱱱����Tb6��(��T���3>�=�+��:@��8|r@E�b��͍�ݱm�b�%����v-�ME^V.�^������Աwn��}jMB3��e�cvjq�Ҏ���&q�E�V�0_�B��[OI�_Uf�@s���".�`��1���?X�04�^?D�d�'�ה#�������M	�/)q�ղ�`��^0�7�!���~5�x�b��ଯ�V
��NO^�x��~!��U��wL�>�R���	��\<پ;�N�����h�����SUz�N�¬��a���(�G^�����1罽���Ν���wi�;`n���41#��6&I>���EL��ҵ�i����%[b�KG��}r�6ipY"x�2�4#L?�yė�7.e��#Vv�[^��ib>}��Qe]5�k��d�+�d2����#}�,o�AJ$�#6Z$"��8�Q�T�&^��ܟ��'7��K<�B��&B~�Ԉ�I7����f�?�M�j*G\"?�<��#�!�Tu��"���A=�yh�L^V�y��`&�%N.���|�\�nd��v�����b�����Xb��˼X�akuԔ�Cjf��y�zoQ��L�̤�O�'��c�ν;>��M=����AŶE���`�œ���4����a�T�d����=i#M絥I�����I�|���c��"A���_��7A��8q���-�h���5�p���xr���D?���AJa����< �%¨B��F�yIS�uސ�%+=���-,^��;8�Ϡ����E�2R�q����&�~,b��C�y씢�S��T�3r�bđڣ0?�n�_
_+n�"��oÌ摶# mč����&^���N6�q��xݹ�����A���1�zb�	���g7���].�
�V<�I�0�K�㮾����$c>��ɓ'c�ɓ{�����l��qbS�2"r���M?�E{�R�(B���j��$}t�Ҽ͖�#�TC5�M0�50
2
P���R&�)�xn�O��x`^��_����>��~�#�z��������ߕ=൯Q�\cn�`ݸ���tK^�`���l�0�(3g��JvIL��IĢэ�,�U1,�t�.�CM
*�M�E��2H3��	=����C\e#�ō�P���<��Ŋ�-y�*+�W[��7O�ǻ��U��l������gΜ�W��k�u��R7�2)�y��[w/����N ,���49�}qvbxbjj��ٲnf��a�
�}']�u�B����;�����d�M5�Pm�ƜP�toؔ�1�E5
�hW"��s$��[�I�0�"j�*��,��.�i<y�RS!Q��CK���'ťR�|4�Y	�E2T������o��=m
^4Z�ȷ��Eb���L�M�u=���x��U�B�}�S��'�PTi�8tsc�c*��Y`�D�����e<��￳����'N�\9�~���wN\��{�ȝ�e��u�ϱp��t���w��ko?m��@�[��޺�~�L��ۮ�}k~����W���kwN��_�ww�����?�,\;���s���N|r�S���>x��ŋ[ۿ;���
Χ�0w"��k��u�����s��#��s���C>����o�>72t����ೳ��׶�7����{����9���ɅM��>y�ĸsn����w��{��wL��nG{{��D7^���VxK
�~�%��\��mgP0�BBL����fa~0
�b.-�)�G�	���v��Y�B�K�Mmcf�#������`,̕��-J��]�.���k�1�Y��J���f�%�L��[Me�����8�Pvu�Fİ%��W��ǭ���E?B?!�:�������~���4>?c-�k�S��\���{3#�m��ս�g�OL~j��ǧ��7y�w3���OO[���̙?�X��\�س��38��X�ծ?����M�sȧ�>��խ3�/�p���qk�{��757����'~���[�����3;�?rfᣟ:��O���<���
�̟��ɷ�Z�?uu���ӧ�����M������[g��?;yj쫟�1��knLj�捭��³��d|���?={�W3w�5���$zT�n�Ϥ&�#��U^,}0C�z�&�Z��֜����V���u<.|�&�ݨ7�դ�&9)����^��(���y�Yj����z��|�̢���fQ��\E������>˺���<
SS3`]����x�*0���.��g��*썕�5T����#޸�f`��,�nr.[�z���z�m�0�s��Ź��Z#����t��~���ۧ�Ǿ��Ko�:�p~��A��#���a晎����o�	̏l����_=uba�!���so�zcf��w���#�s�]�����|��߻��ُ�v�i�7w��\��H����7��=���,ϟ���k���Lc�ٹ���=��O���N�ޜ�y�cӥ�?v����O��3�O�||����Ǭ��K7�M?8��{���O��}�t2�I!p��jL�L��4�uTA=�j�sB���e��óΈ?�XH
��0�8����e#�Nv_*��/��6�F�&Oۃm��mML�}�K�!��+��*y��K��c_\;��壴Ĥ��cD/^�xU`2Y<BB����*�u��\2����`�N�Ѹ,1�!U�O]Ĩ�C�ת�ug�C#���W�O��l͕��O��|�捻-ﻞ�f�k�FN����c{R7;�np�8�~��G�߽w�['N~�����6�ܼx�J�J�v9�N~m����g�_v,\�t6��_��q���W��s��7o�:�Ωo,��rb�O^���C�8��Å�]���ķ.~�����tlp��P����W���<9��<9����n�#עOĞ��`��J���ӣys��w//ܝ<��]�۟��bi,C��M��F2���g�6�8P�~�i�p��ۼ��[�,�P�zab2�t`�55
0m�2���mb�8���yyV�A`v�&=�"Ⱦ;C@z�6S�+Z�%O
̧NL"���:�ŵS�S�i���G��^^�L�1Fu�����!�#$-��Z����j�TW��H15��)��ͧ��<��R
�Xk�(7���"��ݯ��rc�!�F�P@�%C�j�57dA��H^��T�lq�!�#ZZ��A9t�9�e�C��$��a����)��F̧4��(s��YsԜ��K��܃�>1�cc]%����wO�����Z��P)�������k�n�'.�8�$&�M��2�ib>�]Af���!���m��kٓ��G��v�{QaaQ����l�(9���`>}=1�3�}���BQx�i��ɥy�:0��S��2A剛�4������t�u�Ijb��p�[?����x�;Rb�"�2��gUu?oh׬df���i�$ք�D���s�#�{���x�Ʋ��W�l�o`ڥ;GI�J�u.*�Rr�ˍ�:�C������ݝJ`�;�JU`��+^��E��N�
|����~8�I�e�z�G�X������P��W<��Ŭ�}�~sB+�7��B;����IK?Ȋ"2u�LE��U"�Ascӟ�<��xp������ɇq�"�e��ex�ݕ����0��5`R�%f�U��5�v��$/��y��_�F�ꧪW�z5`!�H���t\�0�C4�&�,.�@��4���D��������s3q�YD�H����@8���< �<��U�̾dff=|Z���3�����>��UW"����g�����lq�X�)c�w��ra�mH�>��?D-Fã�|����(b[
%���R�� �����Z���o;��p�8�bfP"3������)��3	��x��2�j!�KU\��`	`�̄Eڶ}S���4^9YhzP��n
��
���u�:�D�-[���0��i^50ELo����i��n
��ƾ$._���҂5"����zϮ
L����ň���4b�_��U��=�l`:(]D��	M.�D��--y��}[ܥ-qw�
o;�Dɋ��Y�z��۽--�[����'{<�xˇ�Cqw��q$��B� �"�2�HOiK��yquXt����##n��Q.���k�T>�ؓ�(�.C�bI�����E`�*���|��m���|�O�((p��ߍ��5��Xwcj ���L�3ɡ$Uf��t�Xbu��8���M�:t0uA��}�ˎ�S�r�5�\��E�Yli�)F�y
�J�E�%��F��e�l��U�[`je�ߵ0E��غ��5Lc_º|����p�	��K��SRQ�j���EP��fq(r�xk@�I�)]�G[�"��+��b%IZ��n(����A��]3��o�湬Ua��`�މv�x��I�e���O^�-�վo
�X_���WY�_n	Th�D�-m�r��k-��O�Z��'CB����O����ƿ\�����ʭ*�(.����fغ��f8VK݅��=���$/G�'`�G��k��̇�>UXTO<�B�ɊhE�u�{og�7ɢ띙��D�������np3��pWJ�s��"����*w@�+�8g�&UF�E����m���Z�c�(�ή���?&�H�Rmڑ�Ff1O69��e��媒9L�G�0}��u`����K�BgK�����Jʬ5$�7�����^��v�9Lf=,5�g�h`#9E~Fd��ZB�.���x��T��շ�9�����9��S���}�ӳ�?;���ĹO����]��/^�~c�ܧN\�?���
���.��~`r�ܙ�̿��ԇ�O?����_�~��̭��7����:d-|���OO>��f�7{��w�Z��O�;s����X:�S��+N@EU��T���i10�KNb���3QW��9e�E_H��ao����1��ڙ���)�e�F
�q�x��:c������Y]/u尦����%����(�װ�}8d�Xơ�Q�L�<�m�I�IkϘ����23M	�h�&&Wq`0Mv����\��H9_=	�d�
L�2�����������IL���eK �ZS*(�.��e�
L��[*�������xD<����yi�#$�d�S��W����|r��7n|l�z�6�e�C�iy037=q��w>:�͋���v����w���7?7k�}{���߱�/|dz��;������ݯ��f�0}�_�����?Y���?<�?��ڝ� q���873������MjC���Q����{��u���=r=��=���D���ݨT���WTр��i�1�h�M4%c�J��:�&F�b����Nf�ݡj���4�#X-n����KU^Dհ#+s71$TY)Fd-oC���E�]\����$+E%"�S���GʼnY�\�I��Y#x&+w�2�4��Y`��'�	d�fa>���Լty}�S�	=fz��Df�&�4C�\�)����v���/:��Q*�t�K��I`�)?��O��_�P0f�3s7���}v���Է��\����#w�̝���7?u��ۮZ��q��u�3'>=so�����?=r�W#��.|l��'~:?sfnښ�}8}�3߻���{���W�v/|���}�TE��%��e
'2�|���
>��h��R���L4��&e>G P����Z{&RM}��+Jw&�����%c�aV�b�$ؗNi�^�����x8h)3���:G�[�*�ƪT%o�T���8�?[�QZ���;񀄬FL
g��%�&�\���z,h��pl���(��%���+�2W����n�s,�9^���T��L!�d �m� 1
D��:�mg�iѴ\䨪�k�l���;8{��<�]_h�䝌�08񾋙�[���/vTwlk�p=Ho��`��n[��C���CE�p|�\��0dݼs�/x�n�ᙃ�/ݾ}���/|���µ�z�/|u{۽���n��p�
��]����.�W56u4Q��HK�QP�R�'&fic{ZsLixt(Cz
0�ms5�MК�;�7w�vL$�}M�;����$�w�'�ǺS��Nx����H(�:w!�y�.Ÿă�TA��U᭒x"sJp�U�
��sFs�Zd�m�}۶5�o�p���])Kt�rZ�[6��Uŀq����2���O�i�s9`R
����_UO���S�N���0m�-k�!�b=e`��JA��^�$1Z�R�>ZnEHS0�,��#�q�Xy�9��@�Rj1u�&��Җ��c�ϼ���#.,݈Aʫ����xu�Qdy׶}��Hu-�|!hw��x�Pt�ȅ#�o7T9��W����Ԩ���`Zz��-� ��'
8]�������9`2�L�0
��1��W4�67u�!H~����3���u��cɡ��κp3��Rãc�݉��0�դ�#��3�$&L�d�O�1l�G����D���8
m��>��}�m��i$�$.)]f�P�T�#�9T���
/�W���e!��_r����"0���8Whs�����na
0_���/�\%ޕ�t-L�0��!V��<H!d"�*;(Sd�丫��F�8Փ�xws5��[��T
T4we��G��r�:�yFQ3��}ژ�.N�z�l�4��د��]��׾|@xYe����� !�F&m/TИ"0�K>�3C�i���H*Bº'�x�.�XW�Z1���N$R]}]�Ө��x��LM4����:��:�TJ�'���T���ɳ�1+3��N�^[/$$��,����ES�<X�[40�[�t�)N,�*TW�-F���&eۗ˭7җ�����U�i������@ρ��=0���L���s�W71��L2�t6�_���b�p(s���R�t�%Ra����׳e �s4A�2o��jn�k��7��Mu���R�Cʭ0����s�|�a�vY$�(��=�"�jF$����lچƯ�;� ��B^J���1�ˀ���us������R<�1�
��I���0
����fuw7�o���v%�RM]}���ɱdr��p�y�QX�w�����R�m&�:��N��L%"�IAU�(B�	�@��MHbJ5#ΕH�1P�������IJq��\�!7u�iU����W!���&Q3��Yss�Do��WR���U�Y�X�;�s�إe�OMk�f�����Z��Ss�	L�G���]� I�����I�����
��A�c`��x3���E�	�5�A�hN5&8�(��ha
`��N�i��9�NMi|���J�F��26U-P₤h
�ܡ�J�%�U<�^�Lx�����9p�@OOOqUN�uh��0��G,yT�L����jF���/�5�������7���TS#L̾���$�|�+�\�UQ7�j��jj�TjU� 0��Y����mSn����"#��$����E�vbL�f#�>��A�c�~��w��xbc�Ĕ���8��F�2EU!���\�%7Q��\�o\��OQk	�@����֚T���zZ�4�Uf�t���D����ux`VO.����@S#��ºm11��\M�
�1X�&�~��H��|�Le2%7��A���s�Mw�BQ��O�K�V�&�]V~�c�7�q���(��:�N@R�3��01������L��fS��C���v�oLe��DW��{�����.�!k��0ab�6UL55V1��V�+٥��l3�E⚋���Ϧż�jr����T|�pS�A�X�gl��*`ʞ�3�`�K�&%��O�����N7ߴ�&N��)�w2��_�f^�_����W�-�G��S֚&������Z���g1j+�)�aj�R�(�d�G
�f�rfB���8VV��Վue� fsWWWsMEMG���c�'�[)]�IJL	��Ib BQl8�#s�d�[N~ֈ8WJ�a��#�
�6�ƱK��K���c��>sRS9��j���0BA8�\%�L �PW
���$�B�T�X�@S*ִc(�@��+�ߜJ$���pj��m��L�MW�@�G�
��͑A�K���hsQ�H3S5�bAr�����m�������&yI�T����!�"&�K60�ȹ�K��H���x婋�\�\��|y��Z�*+�A�.�U���+}P���ђ~br����)p��y����pဤՇj�t�y��"͸\��XM`�w�ZG�D��I���+y��E`�I%э�d�JOH�����������D%���o�|�R��)ڌ�m�Ҏ�!
L��dc���X�p�ac��;��;�ǒX
��ˌu�N����Twks]�X�֮�T"�ڔh=J�LdH�E.kk��Gq�8lP�Q,æ�S�Q�)5E6�o��U��b#�P�j2�N��'�HML����GuM3��Njg�=Bg�kz��,Lcb�,+�;��yfK�7��IU@�w��}fQ�'���;?���[��@%��V,�ϋ��ͫ[��Cnw*{�E`��Ӗ�99x��`6"��
x~o��
��%vz�N^Tc�C�"0=vr9�-�/LK���[��FA��T#�q��T9C<�iY���
����=��={��gv������s&0�-�6M��{|vfRsNyW��w���3W}(���XWb4�Jt�������6
�'��[ez���t�6��ğ�۰{�7�Y�?�')ƍ�V\o6Ecx���+�DZ����&rf��)��F�ӟ���b�%�S�7�{󮐄I����ruyn�=|�9Lmb�o2S����6��{`���l��̮���o���>~�P���_���[���rpGe�+c��t�-d#K�Fؑ���M������fyy��c�`ijeJ���9E�2��O����l�P�'����hK^`1 ��g��u[�oy\�
]�W��oI�W�	��'�]�5(2m�,ѣ��fP8`��n�����۪P9%���@	()�zP>Z�_R�=���������2�vmUG�����΃{��=;A�֎��Saq�/6.��$�9>��d:{��w;�1�u G�{xat$�7�Lǚz����44��J�}�.8�pV�*�l8�2�7%JlNq�6�J}�o�-W�sUO-�l¸m�y�9i��D��_Nq���&&����J<�zcɲ�Ge�4��-b�L�"�>ߪ��Z��Md�%`��Q`�rE.-�����~);���$�r܀��
��x�5�H4s:y�a~W�xS>(�0��8N>���*@�7o/���zu
ߋ�f��h����-үr��U�0����!�+�ED	B��5%�¢B<�ūS�RQ��և�,Lz�̸#$�|#�_�8l�Lf´��Ǝ*�)Gޒ�+�tkb*ZB��Gm<�Lu3o�ؗJ��5@I�h�B>+JZ*��z��~z�@>��W�1�7�/�`c]x?P9��lOs�9*]�4�-!�e�b���0��hw�t:60��=���75I,=U1�@���/s)~-�\���\�`�p�;߹y�����;mL���0�i�Mi�v��i���v�ҟ3��D�M4��9���t�)�!�A��Gv�rV��,�4�̳�I�L�����\����	�h^N���g*c$dW���>��O	�e���O�.�~�XVrC0B�i؄�%(E���ۢ���A��� c4�"R+��#񯿘?F$�؞8��8�\�lM���;�O*�/o��g
_���Ոӎb�q�
��"K�G�$u��t�����*+LBܕc��5pR���z(彋[��K�x��?�ك{`X�ڳ��g�̎�*�h\r(����s��k@X���;���ɓ��41E�o�I�1,�H��cC16
�vV47W�uu����j��g�7�����6�BP&j	��M��M��%*lH�"������
Re�C��D���0��eV2�)�.\�y���^i�i��ʆ/zG����F�r�uQvS�(�SkE`������5��-L�ö�l`�2��
)�^��l�u��ʼ	mDI���B�z
���l��/(��:ôt���/���j��	%!�+��B����R,�4Ei_�S���&���(�W�ε#��x���b��v��Ţ�&:�e��fKv�;N+��|�����0,VvwhG�����J60S,Qq���ٱ_��]����3{i�"��4v�
�˽eA��D4+�Pz4009��}�}w��&�x&H��1���)��C���L�z�J��i�U4�%�;���6���ٯ}��jy��2���+���g�z�p{�r�	:B\6I�YD�N�$cD�����]:��/k�5ղ�6��N�[�W-�)�|�&�m6��7���F�4k5�'�)��/��0�>#�li���m��.O��l�e��E#A�g;�Hj)绔�=sg��_�ܧ�sW�;)m�PǟIV����majTr�<2�K�&&�X,��f��ML�Z��T������d,LGDp��@�3D��ʽ1|�8�����\��z������i�J�4�л����C}o���1����aY��u���߳�42�Sf�;����2R&K�.���hVJ��l0w+�w���%b�d�+���F�;ӎ�}�����*&�7��|}ኦ��Nї�0�g�Tu=C�"��>�����M�-L���HS��
t�u:&�&��-WlC��G>b��2��*`��YM�ո���x�1��ܷTY�4�t���`���+Z�¤5禗�
ĥH�3I�Җ����.����L�����k�.�(/�&���rI�`��$fb�U�g#Ӽ:/�p�`#�f��N�&e����}�6o��ՖU]rg���l�6W����`�f�\�Ϊpȹ0�����Vn�ԁ�>~�������
H��2Qn�[FP��/��Q?V񐖰,w�>�{�.ؖ�{[�@3�ec=>��ѽ���L�O�m\Mh��nt�?�/ǻ�����h25����>��	��5�u
�������R�:��1w�7PgϢ{���X˄K�em$u��=��N;����إ(�Ԣ-,#�'��yI-L�����q&#��$$�Sbʷ��jB�
�8C.��r���f�e��鶼��Dxy���6i��1�+�ɀ�����\�NHۘ�]>�S��&�Ҏ���r�J�#�4�x9��g�J��ef2Ⱥ�A"f'!������Ɛ�TS�l���KLA[� �m���[��Y�YF�PS�HCrQ<�����O����!-E���M�2�^:.��_�R$0�9�!`ˤٱml��x�W_&�dL;��	bG�OX�I��	���p�D��w<�i	�m��e]WUW�?.9���gƕ����/�o���pS�I��/�X;P:����T��:�$[��Z'��R�)T�GU������߿aîS�y�1�Z����+
���D�Y���1%���s����ʢ{�+�2�~���1����v�Z�	�P�暙��4A�1���g��^L�`f�f�bJ��H��	'[<��W��Qr�>Q
ZI�Wϗ��o^	�>���MS~�	1�FZ�<�#�Le�~����T��\��E�b���>��Hv��-s��A3� �f�(��߈�ʹs�dBN�J$����[1dcq�"�)�
2ݱg+�k���<P��O�gam\j	3�$��%�z��ˉjB�����<�Լ�xٚn�˕ToI��aU���3
I��c���o����p�>��>�魁#.�ܥԯmK�|�I�����Q���zj��#��e~ݞs'��~��ݘ�L
��q	�|��D@���n5Eꚧ`s��Ob�	J�{�n����D%�!o�g��Ex��?�V%חDt��L^�RG�ԁ �LN�_bh�.@�3� R��/�����T*C��\N����Պ��3_��J�U+l�<�M�9TK�(�h�7a��ʨ�ʻC}&ۭ��jE`���֤�鐘�ӭ�m�h:.f�Z���?��*K��Xg�~��•��wN�;Kb��v��U�r��%�}�^�3'n�z��oY-����ٴfm1�����ԕl`�f�@�X�KF�ܷ���q��qUf�`�z�ϓ�60���G�%q�E�(9T h��"���'
=J|W�OJo\�)i��G�*&�
��2�v�*�*뒬䘀���tv�Jum|���n?� ���y�D��g�%n��2S��>R����)�-�*�d���s�ܭ���[�����	�I�_vO�&u}�0@�?�ᩉn�L���ތ9̪�	"T2:3;/]�SW#�ι���0Q
����^J��q�\x�F�L�,���W�+�k��M�U�
������i`����o���,��ջ
�K&2q,��Y=7�*t�X��Y^-�G�r��{l��O���u�U�˖�(�|���_:�o��[[U�?_|�/��7�n2`�	$A�(�~XAT��J@�u�Z-R�V�	��(�Z-X,�ġ�(�U@�*j�uv�}��	1�����N@���=���Hbc��S��wZ��Kd����Ir�*x�яf������}/�?�E��H����;}>�~'��ɍn>�7꜌35^�q^{�Ɂ׽Fd�ܤ��k�O��������5TE���U�O���x@����L�Q���M	I��o&��u�.���똧#���G�
�/un��ʼ"�_1+{��A�#9~�6�(��;X�h"ԩc���#EE�e�U�WX���FӒ���u�A{��gY
��,*!���J����
em�dQi�/�s��/��u/߄Q?h�VSх����r�ф�Y���mO<
]w9|�_���~��|Єa���Zb�R�.C�84��k�a�u�,��
SB�lv��H0a�k��"#tr�np�i�R:�N�H�Ó*��?��%�4��C����Gp�4�K+'+�,R�ϯ�b������څrY�E��^
0�g��a2q�s��0�e3?0O��Oo���~�=0��Ɏ�:2��./�S/�~�z��wN���:���"	���;ʼn�����-�$����ʽ�Ψ��@�Lߐ粟�ea2��J`zm'�3o�/��4G/�ȵ�L)+"0c���Qvd�d�x�9�S`F�0�5O�QD��1���tE����e����B|� p��>�D�#�bҔc@e��6������������mmm��nF�PcW a.A�-�e9�K��i?kB�g2�SkV
��%�}�[h_�a�I���ny�����˯{���Ȅ[^q���
T���p�uczECG__ww{{�b��jh>O�f�߮f��EF,^�Ft����P$��ij�u��h1so[�٭`j�R!���4Cu�,}	Lm��c��vr_]�����23�y4��YP���@Bw�˾UR�*����|J�9�;lar�Y�w�y�?��z&�X-~fH ̎��D�	҂"�j�iQ�ko����x���h�9�w�}ݎ4�,����}�!�Y�V:�`w��ǀ�|�Ty���'��y����ϾԄG�f��x	���GR6'h�qUl����&�k�e��f XOj^Z�YV*��͗�c���&+�M��.�6V�f�L�7�1\��
C �P�i25~������z#��O<����ךs��7�,(�^�=�נ0lNx�Kx�9�NNz::�߲�N��>G�5�<�|��#/������.J��_�m�ڊ7�a[6�|����
0���"��n$35�9Dh����	I�"�2�a(�$j�)�5Ǔ������`�!%�R�_�������Kdғ�h�����ل�3�7�vɴ�#D2[Z���2/��Œ2Y�IW�~l�̣�(I��
��+���W�K�O�}>�)����O�;c��"0u�NI�h�1$�"��c��f_�F�_����=�x���k���ԓN�3�uv����b�9�2�{�am�4i��,���獷���M;�yf�3�4�01�g.΅���R'^^qK��W;��O��J�	�'���]��81'��	��X0l�����Չ�E���a*jG[r� n-)	�$xh8���-L7��U<n*�*ݙ=�M�Q,�����\JM�+T�7f���m��'8�?�/���\qPP���DA��2��W�����ݴIP���!�f����@z�E�ccc�1-Q�����;�W������f��K	� �vr�̄`c��y��zښ+�P@���̚�:�BF��X�b���iq��%w�9�b�`�ԕV����;�ǝ�kxJi>^~e�/[9
�ɘ�,�-79�L(O �C��b�E�dL��D*r֦*Mx*l���,�s����aҊ4%''���b�z{*Py��^���r��H��>÷����l�:@�^�Y0����v��'��@S/��ڡ�a��J�el�ai�$睷��N��1�or�i|�lZ
bF�Q�|\ѳ�.�kdǽ	�y��GW]�����nh��|~��K"t���N}�����~��P�����[<�w�~�;F�_�|ks.?^�e��A�W���8p��/6��Վ�kS��:k>`�L�fO�=�S�Q�G��Ü�SoՋ��� �.B��y�٦?*�2���u��I}�H�:�hp�9~����%d��s������?244�W����&��LI�@<��� �uwT��Zq4�WQ�v��f��w*��[��9��p�y���%�͆�� s����!-̕��Q��pR��q�L2�]�����&��43>@�Υ-�$j�,r=k�C���E'e��f������u�(���̡Sξ�q'�1��-��m*�1��E�[��+_��p��w�0,(�?��9���VӔI��[4�A7Ɋ-I4����}���g���^��(`s4k�o@�>7�t��V�'^�LO�s6PY�(E6�~�uO���,h£V�`\xI�R.��=�O���5=�w��7�v�1�����/>���N~2�	�����;���h����f�C�nܸ��8��|z�'���'Ǟ���_�_�a�\����}�ʦ_���OG���ڍ���z�'nܺ��'��hv
0s?����)O�pB����*�E1v����R�1��d\8�WDc���r4ynj��%��cUyI0��g����_�L>F�5j�	�~�M7ݴ���%[�k�hjvU֭i�b�9�����2��pk�A&�󫄙��
�!���1�����i`���)e��ɐ!#�Iv�����"7�='����G��N�0u\�6�T+3�r��+� 4Y٬-�'���(��9z��嚻��*��D#�d.���L/�ѩ�u�E�3��ݽ�����>nV��QP�+D��@q�~�-
0��k��Lt�o�������n�B?���Zx���
/:A���
CN�I��y�3x��w��|R!ʅ���!J�?TV�����3�o��c�3�f�c����6>��%_|�i��O=���(y�|�A�9�]���;��dLJC_�x��_�`~�A�[� ��N����Otny%�OE�O�p�[�~}�'��wl��_o��Ç�|��'��~ka�0����������P+v`��ncZ^&��tڐ�?nb�<���_ea������"��:Γ��5L���#��W���ڰy�	�7W�\
L-\gq庶����c��g�S���K�TdMs;�L��[�b��jJ[����H!�r�R+��1II�+�,萟N��^j�L�%7�`���#;��\2�"u�c(��i	ZJ�"��%�<ah�Xthr�R�vN�:�~� #0K��5��O��2xi�.�<_�潜��;�C6�
��E���A�ҕ>6�JK���`�(��2)�
*0ߒ-,��g߉Q����2���{�N��p��tfg�:
��:��i��S��Ѩ��0M�?E9
̦�p˛��Ǘ�%'0=a�o��]=[����\��A^��s�ӿ%6����w߹f�xqPY���W�??�õp�/�;�$n>X��F/�[���=_���#喁m�>Z��y}���/��_��Z���
�w�f���=��V%,�H���A%��~�{���Q���g�Y�ĝMKqr���K���*_���|�-2�U�
�%?5E����!���zj�V�.��6��Tf���%���A��UT���I[�P֋�5-�
k�׶\�.r���`<onyc�Ȩ��+���12���`&lJY1��6M��\�T8k���!��ϕ�d �@kyi�EȤ���d�S�kC89�"�׻ie�9�2�|3]z=��!����H���Hɇ��Apj�=N�%�Cs�9�����h�O[��W�F3ҹ�rk��2&}<����-��T��,3a�Hr�ڠ#JS���tr�C��_]��8�VF���~�\�<-�KE�>�41�c�I�t �a�ǡ�������.'�%����3�弄�:��"��G������$��-w�1Xw9���e�%Q$��NAtYx.0�,�s.0�@�t)��0�
Q�Bs/6x,tMK��I:,���M�Ҵ�y0虦�8�t��x*
9��us���#��G��z�[�ď3c�\���5�eQ��:q��FG�@Û7��	�
wo5�L�T�(��wp��/PbBR�G���}�nX�ظ|�:s][Ke��$��0x
Vf;ttՕW�~�A� �)��2z�ꕋ%J����	S\s��RJl�v���2�'S�y���y�M[h&'x���H�2�Jsw#����.�c�:�SBb2���Q*$�L�dF&����I9�L�_3�;�7�T`��%S�a�`lMS�3����lSuU��{�7f�P�$�+�Dم@L��vvz��s���7�~_�6&����$Vb������_*�j��t�"�-
����N6F��ΰ.0�2W�5N�,�>ƣ���c��Λ%7�7lw7����HWnc!$۔��D+	q�ŋO��d�|��ޝH���_:666Ѵs�7����xflr|��@��f �����v���A�[�����M���~׏Ӹ��ݻ��I�r�ˆ:���kX
v��$�=2:4b�I+s��͛{��!�����6�K[S�M��
�j��<9������C�޶m�@w3׭׵\�x%�5��W�r�b�P��֭;�B��bg��di�X����:H�,�_!�����vh&IW&�z�".R����T`R�LW
��4J���C*\�{��״y�L��.9Jv�8snf�b�@nXC��J97���:Y�����Tz�O��{�s�0�]r�l~Y�#U�b�Es�&2xkv�-��`����M�vw�v�F[
:z[�q�
������D_w�@k7��
t*�q�-b�KL�i�W�(f?��޴�]N����.����\��+�g���$�0�0է6lTh���a6�;UH�Jq�߉ �N�6A�J�3?�fzf�]7���
���R�7���f��]3��#1�NN��Kq�KN�|7�klz����7������c�G������p~��}{�N����݊0�̆f��8q��k�fCeE>p	^��F��������-�]%��vn�'%��(X���`"�#*Z�y�����X��︂
�۱83����ʎ�mp�1*�r$����@Ù���04�K�?`��Y��J�*����5Yd2��#��$6�6��(m$��ŗ�X��ʈ���t�mDT��>�;W�����s�*,������M��
g��3��%��¤�i^`��Q�.������(<b�}�N�S�����Ɏ��֭�[`4t�ڽ�wS����'�xuS�BV�sٸ�!�~H��\��Go��GSo� �e4�����I�Z�>!\������S��3���wб��,,F�4٢�D@�p5�!�ֺ�Pf0���7���o�ݻ�;�i��gn]���i��=�i߾�M;�f��;�,�J��szlr·wl߾ۻ�[�o���|�}�3?�lj	��'ǒ�ٹz5���
�����&3���w
AJKٰ�60s٪
�Ղ�P-X��B�&�
��4]�$�ς�W�l����@s�c6���L8�\[B����Å�b���L�L	g"?^o,H�s��_��&ީw�N��7���)s�Y����R)-����e��~��k#?%>���57�����̨��UZ�B3aSO.$�[�fI	��}��>����)k$Mcu���`6QYL^u��K�'ZҚ-��:�p
Nw>�g��n�bx`^v롭�5�)$6�cs�y���d-�H�]j�z��~T���Gf�JY�����F`���DF%=J?/K80��-f�b�B�ӵ����m�9��q̾]3�.���6����k���„�ɺU�w��^l����wll���}{|�MLO�H;urϏcc{����Q���I�� �$0�l�cMn�;��yI^�w�sÆؖw���v'dn�S^Ƽ���$r.!oY���,N���r���]d^�޲$c9��f�����N�X�uR���T�|�z܊C�*/>ip�9�����I
���K*e}9���$=9���`�X�6&k����e�D���� ��ɵ��lDkk��xF`�����b|�剅)�}=��f^*0C���܊Gw�`G�<��/X�V~�a4m�����fg_+v�9�
�e�2Ŏ;�D�S�0�`�3����&�2��„��(1����h��4�b�*Z�!�ye�:�V�u
��n%�X��4=�@F���� NCl��eSi��8r[��9�&���I�g&���3�sb����ұ��x�s�;'���&CI.yA���VX`�۷{���퍷��[}�w���շ����o=r��3�I��B9+ˁ��;�3�G\RR?~�ITRba2���$h	����W���%��rƞߴ�F�{��{��:�Bs���$2ۛ++<�0C�҂�
	4���v)g��@�) �V��
CL�/��̉�K�զ�̒�2HL�R�M��*LV��4W����̔v�:���b��wy�,a9��.a�i6�]����u�2?P��b����_�.#[R�G:�]�Fx�laZ�@TN��;�8�!*�)R\)Ք�~�3��1{I�����^�lԽɘ%�'P����?6yx$��~u�m |�|��@�4!!,��rH0��.f�%veR����B‘�*\��u�$s)�&K�<9޹x��v)�-MSVZ77������r
����ayG�]�˻�K�C�)�l�e�˖���hp�/[�
9���ڸǣ�%�Gr}|r�Ȅ�ڋ�yWy�U���!��a�I��/Y���J.1��n��m
H���7�9��	1eNP	4�G�]p�9�si���ʂ
U�:�B\r���42K��[2'�](*��f���c�^^T�F�tNof`f���/a{c01�ҒG�֭JQ��������a��2ŗf�7�L"�ԁ���|Y)���\WZ�d��\df$�ܫi��3�&����O�0�}�P��}:�����a�V�V�	LX���DK�B��&�0�p���'2=�4냧��]�_P�~�Xg+��:LX�P�Z��e�qIX�����bd�& �b��.#��Y��U�gm�*��)��ڀS�Kbn7��df��r�y��;�����H�2V��&u�
gR���t߼�zQU��)!���&.����Liہ*$t!�J^�CV�Ӷ����[r��u
�;#��=��қ��I
Q�kMF`�i`fY���W���Wf���P�i5�;�YJ1ny$R(��JOh/G+7���c�[���S�kb�G�@��R_JL�s�{ɧ�r�s�@�0�\9�	%��Pdqev����fxp�O��C��_�+�������������I�q
�#0�C&`��%㘫�@���H�Z���n\'oHz)y7	u%&;y@Ñ�;��������P-*oh���SdV�+3�9��-`��@K��LH��hB,f�5.�*0mu*�
�|1���Ű3id��ّ�L�$-�)1Q!�3O��n\S�s����N�
����m��	��ޙ>���yi�imS�yK�K�D���H��JF3�Z�vO�r+F4�(Or�i鐎�ȸx�����kᩑbHRp��oT���g�&u����X�<FBLB��s`� t�_L$�[ZZ�W���,��)�/�dz�N8�'y�n1-k�����i��0�Ke�;��]X.4.X~9�L6�_��<�\K���X[Yh��ל��L0s����Y�N+R	Ʌ>*M���L^c�;�ɥ���,h3�V��lL����4qG�@J�lW�f���.Y�)]����F	��0��S��)An��]���[��u�!��~� ��Ʌ��vԮ���R�z���xɄژ%qw��?�l�#{�a��d�S0�Iu��˟��i��ir��-ɴ�H����◟4�݆�@>�C���� ey�w��X���~�7��}���ţ��?��
�dr����R�p>\��/	I��l��{C���bX
8�0hWHq���,�8��2�r[���	d������Ĉ�L �<2����3v�E��n���{�2a$��%@�k�I0�a�
řx�D�i�K�1S��=,�Ë��~���x?)
i�L����6�s3@�#��^�51��������c1;V��Jn�����`�ó>�J	d�i3ԙ�N��֦����)��)̸�0^�&K�I����ČP���\��xȐHcl��8JFg>��\�9�@��M��7)9"#������Ĥ���j�z鵫8�{���]RCN���w�tm��K��Z"�i�$1�
E\◵A�Ĕd���N`"A$>�vS��5��[���wEC#
��X�(�5p�%C��Pꚧ0S�N�à�,&Wb��rbT
�hj��z�3u��"Dl6q���J�eyv^NJ���
#y�^Ѻ�K�Մd���Xf2.U��zu�(�G$��R�ܑll��3�<��??0O����
�p�|�p3���VI)q���QsQS6��7X([?=����&f��	I=:X	���i��ɷ,ôH�;���TR.^-KyDMjotT��U��PQHa��!3LU��`�ͅYԅ��c�
ջ�}Et�-Ň���Ū�b\���uGU\555U_}T�����Aߍ,���SXRn5_������ � S*2��|i�/&��HR�+~-L11AL��$1��ёp���
`�+�j��^�u��kj
��i�J<�Ĥ��t"�L�������R��e��)�증�$���<�� �������P6�Ki�5�X��^�(�y��R���$ȝa�k��|���L��u-Ĉj�+
�������!(9����8V�g�>�W�3�S��T#��d��p`f�0sTZ�hw���8�O�
ck(�P!$��I�ZA�N�.A玠�i4��%���E�2t{㿴�6��,vǥ��I�yI}�(��S%�v���;��C�I㋛�l�̄��ccl��ь�_�����n,`a&үGi��d�g�)�J�k\�S.�y����TA������]��ˤě�)ʺ%�����Fl�oJ� �u��/��9�3/��f��1]o�m����oB� ��zz���-��6$ȴƥ�%�qy�oWPra+	r9&��UH���&a	7C���'����
��
���*oZb��lY���
��5�KB
�ۮ3��itޣ���8�o~�������0�qK�~9MOӕ��t��\���=�r0��K{�K�N2_|�_��~qR;�s�����KRA-0�2s�1�tI�����WV��sLE|�!�+���zei�v��
Ĥ-]���p�wB,�g�:�$�J�y��wijg��aR߼��2����.��`az��<�\�Li�
Yޚ�kع	_6��%��"%�f�C�*f5
T�٥���5rfSx̢��ݬ�]�*ӟ_n������T�D��B=��
s��8ϩ�\��7Mq%������^�mr���fP���J�`�P����lӞu'PXW<G3BJO��j��MZT�!�k!_TX��)�<�"/�d�]��
k��{	�W�-5�WFL��G�յK*����Ƕ+�/�f�j\���궖A6�Pg��Ը%�J��>xIZ"�yw"�=����TG\�V��g�|��phLL������3�><����%2׭^S�U��\Wy8֢��1�n��%��lu�Ŗ58p�Jm�`Bbe"�	����.I��Y�g�
Ly�H(_Öeq^MJ��`v��"$�)X��G	g�K�.{?����_�;��h�0ST'��:��Q����8�0)����ш�h0܌i�YT&}~m)�P:��� ��?�}=�Y���PAu�;��Ѿ^/��zV���o���4;�/]fb1iRϼ��p���p�[�n��Jݨ��IyryK��></�Q��L�)wLJ�[�����k�i`v�0�w��YF} �����U�A~�&��c�{�bSF�]�r\�
�w�+Pb�Y�%�J9p��k�}�E��Άx�U���O�]\0S�������`"��z�l��$&�vu��k(�p�J���Lʰ�u �]�*�L&f_�O�"&����ݟ�k�F-#Y�NU���,+��rE�h�Ь�L#>�J�DtI/եצ�0`T�=6"\�3�p���������
0�$yq����YI��='7Nɺ�pC���a�P}�̘|�Ԏ�k�;7j>h�FL�<;n9��PE��/�L����o͌Ni��R>?��I{�+�L�2J�|K��e�؈���Yk�IO8cbb��I�;,ETj�� s`�LeDNҋ]1�f���"k����B�\���/����e�B�)��)��Q)��[[[>�S����y�GؾM�M���V�։}��"�8�ݗ�}}���Á�� '���`aZ��d1'(�>��Rj"p9>���jE�gF�MI�qߢP��B�1����{k����m/YbӭT)Y���qJvA���`x9�O�2O����<�,���HF�,��K`�!�4
^YV�b;
�-Ly�d�"]�Y^�@���<��K�%�Ǵ��nZҠ�,�rU�ЧG�-����}�|�r����4���
�k͗76��ފ�4Z&P���I��tr~�=�aA
� T�>yk��������h����������������{O�����}43V7˯.d�[(Ӵ�����d��]��,,�E�rS��X�I&}���f��n���z(�S���M��WԺ��F��^�S��ٮ+�Y�/���v�kTD��/���[<�2.����&�?���YC66��J���_&�1z|��$lK�s0?���
��i�j�����-�8��&j�AuM~{�d�	ME��:�Q&;Q��5��z>V�@�Hh�졉i<=Q�S5�W��eM�s\��������3,��&U�]	�qP����tt�1Q��Y���g&w����Ì?
�p;̬�ᕹLO�9#c�i�Y���
�u�
Z�������lK��bZFX�h�e��!^�K��23�;[�$�j����L�{b�2�;���M�
�NKv��5���i�s}��šlو�b�Oȓ57<d~J��إTI��zK攋��c�����22���fcl�MP��Z�<xnG��wz�zA��}sϛ�FF�5X	*�fw��>�uޝ��73Qp��8Ѹ�%��
ڱ<⦨)+S��򲢊�2�^̮
��H���z1�*�e*b5��
_noMr �(�d�%�7�M�
��D��P�t��n�e�|0)^rOw�7��o%�M���aU1`��&��fJuٗ��4�����"�/+ �|�ݾ��6�-ʈ��A
W.���hQ�ǻ2>�[ٵj9�Q�Dc��3`�hX�b4B�gX����x)�;��I�a�h4�5bZS�w�L�
Lh��i&�K�،��N~G��[78C�.����K���%��*�9Z��q	/	WTJ�ū�jk)^"+��.V[3�͗7�g��&]6Ẕ��Ѷx9����r=a���ht�E����俱�tT*$��HtdaP�f"K
��r��O�F�g�FsF��,�
�r�7�zd�U=�;�����?�'b�r�;32�m���$jV���52>��>�?��k���2&�r�����Rn	"�>Ӿ�����RF(�t��'Ӿp�30s�溺g_z~�]�.A�k���Ke�Gks�����&r����f��C���Lb��k�[��rϵ����y_��a�h�-��r5M��_���m�^���8^���i��D)[ХZENz��{F6m��LDE�y��7��[�xJ������'�`]21I����f����A"�z�gd��冋&<��[�09�2��M��Tl��+�s0�J���>�\�՘�c	��	�����Z>C���{F�2-w�O�<ہ��]WI�%>v+��B��g�j7��I��K���r[]&e^V���CL:_no(��x�هrL���) �/EB�bBG�o9�)�X.\6�AT���dڑ��Ԟ>��p�nc�@LsϿ�`�h~tddx��?O��|��su��^�0W�e���В3@����H���=!.JJ�ev�F���e�f)���{�4k��}���~kz���|����������ڬ@��}�$pv����C#CΠP)�?����Q��io��(���2��PhW�t��LQ)��k�}r|�+<�_Vթ�:[�_�ˁ�1��)��9ЬB�8��D1��M��@��������B)ؖ�)k�^�R4_�t���0Rh���I~s6|oR<N�h��HR֜�o��o�I�"09��f��
�#<�X���Eqn&�Kn�Pr�A���t�=
�36v�dzr<B5�!et9"��l��F��?8e؟,+�4�=�nn��s3S�z\����J�FZ4N�l�~�=V]o�ݤ�hldl�u��\�!���h�/�J&bWk�\��u,F��v����zc5j6��M4S��)�8�����P�)�S&��][c:^��:��WwV�*�T�ʡ����vV�W痄~�'z	�z�����(�57ߜy'-#.`����D?<r
�q�}mz66[�
��
��։��w��R����� g�t�y��%�,Ϯ)��!����:s�E������+U���o���e�����O�٘�@Z�����L���s��;W�������~�|�#0���`�NeEEꝳ=e��V&J
�m���=z9Ҭ�/U�R��!J"(���*ʒ���O�1��5��̂O�Y�DŽ̾x XJ���$|���FȘə�3B<�᯦��g��$�L.��y�F�/�yY0�r.]IP��蜷-�		�B}p��Z��o�.��L���p����j��A3�3ʈ[��a�
��U�i�E�k�N҇j�
5o�~|�r�-�_NU�����:��%��6R����PӸ(L�CP��u���BH������N��>��
�~ș�_W.��gw7�|�5Zxng{��OCM��i��®#S�|�\��CN73��}�FL�R��}�P�2����8x�
��iU�}4��T,@�*9t��G��˪.���`�,�L����Z�����OdE�lOennsѕ ���|�I!��K�w�1��b�N���"V�
bg�Z�FN�P�=H�����w��_�0�d*
����K%���qg����+L+�"�>���z5�+���x)�<�ȼ�l��PFJ���.ah�֒�.?�MZ�X�ߠՈJ]B���_���/jD�6�Zj��y��K���M��nb&v��kW���(Y���q��{\ҵ�䘓��?>��ǶDO��/5��U�eX�;./oh%g]s��Ę�)�Vi��+L�+�n�eU����`^n5n|���o��ӕqd��UMF�p��|! 0c{�PƮ��L6m�S�#��4>��S�K�n�{`D�������}vwU�����YپV��0���+��'�Ri�����L�g>k��=^��ha��Ys�υQ�"f��
)E:�(��4�D_j�������b2RRl�^1�e��5��w�a??ѓϑ$��76�*{J�e�����;a8
���D�x�ٖk(��h��y�ޘ'�a`.�g�"��ț�I�g�@�Ɛ"Q#�~�G��6+��&�
^��]W���"^��K*�
�E���#��l��@�7���޷�7��{ܙ�n?RB)�����wJ��(��
���^����M� �?+錅������WW�'s�/]��d�T'�u�d3�4,�b���g��N�}+��&Tq���R�y�I�j�%�\�,}tf�ο��|`>@'�a*/�w�`�8��E��ļ��{�)t�~\
	315�`��%	o�%���Г�)����_fbgzV�]�dujA�i<���3?e��	n9��w�Zc��E��=�ԓ�S��fvV65OzN}	Te$�.?����tb��K�00M曫�h��R �3n݆���3hBC����d۬=0���Ƞ<^�ύ1����:�6��6c/���L�H��0g_���s�
����+4�o�s�
�Q��DLlR}QDa؉�L.Ycy� �^���)���~�=�����03ӪW�fEM�W�Y��)	���OeF�(��]���Ξ0\�<csH�+�����pt%}�N0bAB&�]L70��!d~B�s��m��˥R>�3�-��$�_���'C###J�R��7-̎�W���Z}9#I92��:QK��)(Y�`[����R�rG<��r}����5
�y@#*�f�G��Lk52:����p��f�hS���E
�<%�c"��yu??�T�����%�Ծ5W�my���>T��A�!�����o��Q�<�c�c��?��5tCzz��ϙ�k�J&�\�_��S
e6fg�NW��%�Y�1W�숚	�R
gB˸y��w����U(+�a9GI�;+f��.��5D�zfz�Q�f�TTӋ�.��-��D6�$��]~�'��6�Z�[�la�;���Y;)6�|�Z���������̨dX"��dv���K�����5+V�2뢻���9M[�B$�C�A��U�W>�9�Ȓ�~Pa{�Y5C*�dD0ݵ9ob�2j-�@����vn��'?�+��)�.�Kęx�1�R 3ETy�rfb��<����b�,'c�6��K��?
̾_ٻ���=��(cu������hY&^�K�pٖ��롂�������[%�d��$P�b��L
�WKj���8����\J�68�����	���W�R�ާO�^$����Pp)j>Q��=Tczr�Z`b6v��I�7+N���&��@�Eߕ
&�L����������i�㳻�s�#�yσ8Ԍ��_EF�1�WSD3��_�ng>�™��N�6̬)�7��ƚ|�ƲE`�U��&��Q���㺎�,dbR0s�r��9�	-k��Y8�`�,����V��h�q5K���H����,+�,�G} �-������kR�y>ȫ�|wa��K����|q�,�Bp�#�X���9;.wU�t!7�L(s�Ɨ�a�x)��dY�)�x���:��~��䑣��q��W�1�!��a���I��?ɢ�!.C�a2�~�<;���f���'�fJ��f*�����u!	U���u9�X@�$��)fh6�
�G)O� 1-�e�C�����X}��h��*�R�zW���P��i�Tk�UƓϷ�)0W�2��#�eb~�i)���dTbY� �iP�[�P2�ڶ�=���}hOL��0�d��	�J.�^Hj�-P�'m5_y��ϫO�sϞ�>�����n�2 ��5y�\if�e��=���扙(L��쩘��8��<�\IX��蒕��R_yp|ʊ!-9�I�(�<ih��N����H��nY"��r�u�ӓ}@��	���r�;�a�1�O�˞���C�@a�fr�!K��;��]~� �k��̯���t�z{�@35it����t�t�Bo����TA�wd�OӋ#�	KP�ԁ�l��Iv�����&��
n�����⨸���v�j� ��!���H�S,t�H/}Ld�%�2��>���e�2��7�a�0��L:�t�t�ﻗ��dZBɀJkC�i�_�3թ{�u/Ooϊ�����ȏ���0G�F[Mk�����T]��Ÿ-c%諸�mZ�rtJ.���g1�c|<���뇟~�y��	�'�O�e�&&cɕ�1
����龂�԰�(i�dc�G���s��N��?�5�����m��lY�Qc�i������f��{D��J]s�?�K�L����L�9-��?�LzR��t@e=���X��RnZœ"�4!ÒmW��'�e,������$dV�搎,H����)aj��:[�<4�$�U!5�-�jLpY�'Ώe�(ǔ�S�tF�%�%Oir�����P�|=�Dĭ����ex�������/�}(�Gb�ž"�m�w{0�H�N*���+K�L�ȷ5#���KH���5:�m���\���P�K��tyb�y�Ai�%d���q�61�����"�����6�4�$T�rȳd�� Жy~�q`r���_���W��4Z>0Ф|Ha�`[j��–��D�k����q;/C�%��>6̇��5f`ʃ0_k�P2�Mn|{I'G��0G�
�ќ�^����h��OI,��'^8��ˇ�{�D0K���"��x٘Q$�->��n�/F�����z���N>'�C��b��z�E�&�q$`��PwfC�r��T�sj�.��=uS�8P�܁�S����{���#`��)�����/X�#�ց<�ڃ�O��R���9�c�=�%|�����F!m�����7t3����<8�\�%4����L�5�����SѢj�]�ؓ��b�x�h�A�{mʆ�`r��IYO
�|��c�i����{,L��������X�/���h���C������[na�L�7�ʴ�PJ\���VÊ萎!(d�ќ��x	�yR��'�]&%�0t�Ĵ��+6�(��_�6(�Ȱm�Xr���E]���&�˲�g��ʷ��X��	������ˤ��_i����ʇΞ����~���i�
UݺL�GIԨ{WQ,�aS���Eٞ��ͥF�Ƌ�6O�:�\Ԉ��_���h�S�mX�)����?��zO�|�Ó����RĤ�R;�1$��h#j#%R��\r`ӝr�$=���l�U�lg�����&s���ھ)����s͙zb��� �����Ԣ���K�4��֟C�4���P�^\�����pzPQr��I=&X�af�X3��'�A�����MB9ڱGi��|��Z?�2�h�0irCA�A�@;�nOus�1����
�l��'������3�y~1�������3ә�w��o��Ē/V��b��jV�-��{�h!�Q��J�SF!�d\�|I.s%ׅ!rکN*x&�#��U�ME]�i*�L��M�>�Tt�v��{�@%��������H��W`�N�o�
����>K	��-�%�s��xL:���<�r]��	X��V���"lT�2����"�N�$}�^��rǼ�a�_{�5��ϖ��GrǑ������U�M�I�|vޟ=<g�x�%�X���$� ���x�4\j�fJ�[����z*�D
����b۫+�ͣ���1UK��t��寯6��%�rSh��j�o�y��	/c3���O]B�����珏���NZ\�D̕0�0glP�T��fU��*�I"��Ѻ'�o�;7>+��f!$ߝ����sz��7>C^�9
ߛ���`�om����"��;�ћ'�x���.9+w����7�|0�N�L��B�n�9QS��ma���CW�@HX���~�Y�4\�VԄ��	F�O��Գhg(�ԏ	8[n��z,X��i�̇^�4BujN,��h�O.�̒�rX{�B00q`UdM��ɳ�n0���F�
d&�Q��A��éc3[f�[�S� �gzA�3�`vv���%k�q����d�#/��ף]i����������{Gf>�r�����q*/_yeT#�o0�G��/?GHGr�[�L�Sg��"W���'z�����8�����Kk�nio!�R�^%)�LVf�ρ�S������H�s��Z{O?��F��m4&m<5O�L�g��S�̪��/q]^�5*|c繗�V��[p�#4��MD3S�o���]�֖̏5�F�R9k��[�W�iZ�ah�w��yx��ut�0�F{C�H����.y.so6�Ї>~�R�����`Y&aZ�m��؉W����$H�%�3b�Z8X����|+�Q+�N%j��Yr:�w4�%�����`�;0�m�Q��=����Da�(ف"�O��9�G%�0"2-��tW�IxV���޸P�-ە��O�i�5E�mL����6����&6]�r��33)8:����Iپ
3�y���!9⩍#��So�S��7�Un��cd[��˶я��[BH/#�.�3�Q��O�Pg��S�)`�O�6X�x�GS3�
��r����z�e��[�/g��<�!��i&KE��x��AX�b\�q�d�'y��1(՛��.���O��H#,?�Hr��!}x>��x�O��90��\�����{�;ۍ�RI&f����{�����6�gw/����LO�Uo%h��FÀ;)/,�E��
�N��ew�B��Xa��q�E��X��/��LȒI{�D4ӟ�]���,�0'�Ye�vD��=��Qb}"'���Ѐ)�URw��m��� ���?>����	�DK��믖3�/Ef'`
>x�l�
c���|3i
�*ןiZ�D�/i��@���0�sQ��/�
v���j�x9	ALlKx>Ѧ��y�v�y)S���rIL71{IT�%���gUB��*�'	�$9/_Y�e`B�vr���H*��o��`S"�@R�D��	��ߓ�JZSC�8i�;Tf��Z�{�4��\\�V�l�\m��fc�L:�R�|S�'�ի����*9��K�$m���AAҐ��� QΈG�bzguv�'{a����lB��Ӷ���_��Xx�����0y���=��O	o��\�k�R��ڬ��9]�Y��T/�Q���fd�
5���d�a@o	�g��$�,�I
u�������c?�VVq:�M��ɮ$��p琐e6S���_ü/�4X>A�TYW�������1�5r��9;��e21��~.+���y�J`:ƌ�����o�0-:I�MTh�f���Oq\jk��b�0�K$`Z[u�>�X��O�X1�M�&��`�Vd<-�y�B��U����gѿ�_� f̶��}��$Q�u���D�DL�@;#:#i���aaZG8��u��T�n����JԳ���]��a�	L�fs_��"����Ŕ�pe���K�w`�!Ql)����&�D|���e&��U}iKxln���,R}���,�n.�+`�OnC"�)Y�f��~Iq�$�.9s�Zi�j�Y,G�k�;i��@�Z#w�>�֓قh_�#ߕ����I@��=]n4W5VR|�B�H}P��5���;^YY�k�Odz�z"f�
��UK��z
`"74U�L���0^�.-L�w	��e�����jLq����rve�,����I�ItT'�5��F�VYt0)��.�P*�G���,gDf�WYꥪ	lr]��򆙶u��)f�mᮮ���[yӯ��w"0Q��-�2��ha
W�)��E�r�q�N��ռI�`�1E�Շ@^yj����֧�!���0�[���0к�YB(���!&�uDE+5Mk��Ȩ�hb
�)�P�%K��o+�0{���.��^fx41a�4\�����+����3m�޲�Ԕ+~�(�4a\:1/�hϋ�$=|,̑��oXg�T�%Sx�3`����K7�3��3 r�录��������қ�BO�W�L�Rt����^Lv؋ivX"$�QLd$A�ωfs��3�����I}Q$�Tw���QC�32_]�hL��D-���
����K�)�b^�s+3��;B&3�-�n/�'�&�\��%;�L��D7�����r֫N�J��xya�V�)�^^�)`�3q||0Kě�"�hɥb��/��"h��Ep����4@�ҁ�6`��u�2"7L=�#9B��x �	���m����V4/�y��ea�@B3��G������S�jM�tL>�L@�=+ϜYy�ee��x&A���}�Q}@>�3k����Vx	1q�O�5q1�H�����Q.����˩�11�"*���
�+�Ϳ	�P��zx�D�L��2-���A�X�{�szz�!�b%�l��(K3JVU��L)4&t��=��0#0��G^m*�m]��$x�C����d��nTM4Jq�(�xy��A(„�ҧ��������DJ�%Ƣ�q	"Y��,.p�Z&�\�*g�N��N۔h���3���~�!��8�����bo���jF�����,��Z̀�>tσ%)�����e%ٙ�L�`fB��pA+�S�b|�X_W�¤r��PZ�xˠ�A����<PAO��%n�jF���wȗi�FL��J�_Q�9��EƃQ
���>|2���*d���J�r�+�(+��5^q�c�)��?4��1�t]����hy�w�}�ߡ��ð����Y���1��*��*H9L!���X��ߠN��e�1yO��A�6���+ӫ�*��w�\��D��P`嚨!}��/,J���0��2��O�"��'�@f�+徵����xY��[����J�`��1�2C�ep���-��s9L/No��ա�)�>�G-ta٪w�i)�r���1�|��N�"X�����Ь^RJԴ�RHLVnެ�>M��+jXns���y4��)��\�����|��(2�'�@��v�
{Ȼy}:K�a�S?~��L�	9s����~����rs͸;?���ݽ�J�m���/?XP�X�s�~@+�3����)��"8�,���;I�-��G?�v�Om�e��s��3:����$9 IHB��F�(֬Q���h�-#k�
���uˊl���ڵ��^���u=�k��q]o����|���z�7�7�|�v�mx��O��ߋ�����~̅Y�4�/����a��D����rbX1�'�a��[-��<�^�5Ҵ�{Gv�t��|��!Y��x�6
��;/T��O{e�^o��.)Rsӊ���tɝ*��&&��|޳���9��7����U��I��$�S̍�-�zɸFmY�w�{'K"9:�#T{��F�R7	�i��ۥ>p$s���{I^2�cq�eP��D�h�_�����x�
���諭61��挟!���'�0�����R-O*!-�t�%������-gOi|��9�7&.�<�|����
�dBH�א0Č���ȱ2P x������{�;Q.�����l�����ٵ��4�0�h4�����U����rs�Ց��\�Rj��
�)��A	o19�
�����>�1���2A���~�wh��|9ÿ��8�L�2��`�%�e��w	2����Y`��r���c��0s,m��2g���^~��"5a����<�K� ���H� /j�`~�Kf0	1��ar���L}�u��/.�7��Nzc�u���jh-��w��tN���t�q{P#e�ѝ��'�';\>�`��B�5U(����'EyWq˴(YX]��s�Lkcެ��&M#��_?wכ�g�v��T���L��	L��W��+����(t�����2���<��v�ݼ*��S7�@#ȹ�<׎t�N*�IZ�M$&�SD����lSd��.�
O\W�WO�v�$"\"�Y7\��gq����e�4>F�p�s����flT��&��!.հf�C��f�Oc���8���7LU��ˬPd3$��E���s�KH
���Har%'���~g��V�Ҽ3=��b��y'��K��Ur"�"�
L"��2uH�P��+���Y��*I����5�9�����`R��9��3�y��y.�4�D��,gKuZd:^��97���̚����Ҩ�=��:�秧zX�$yC��;�dua��Ź3g�\nG������vs����m�.���p͞���4��d���`��x]W��i
K�]<�GWf��T�D���C�o�U��
L=�fLD�����s�s߾��h,x��
D.}�9ϵĄn^Ӧh�N6��j����I�����o���M䒼X��d{d�3�A]A[�̜i��S��Z�	^BR})��e��R��mK���)a�ͭ��9��'�BGD1��N�c�x���"4w"jk��k��Fa�rMS̶�swA�wrSP���i_�K�[�&y�;S���Ӎ�p�Ff����qS�B����<����4�W�e���,��0=�;�v���&rYG�@"��﹥.dR5bP�Ժ��H�H7�ˤ��KLCB�9)Gy����U��+t�F�k1>Y�`.�qvp)��L���ovxnM��,٠�p�%suxF��r�nQ3d�]M��P��Ą�4s||z���C�T�)�$:����TCM�,��B�<�=־��}�����rf�ᛣÿ��0KMd1�1ɯK��hoS&?�1�U�p��I��|��΅0q�R���yܱ��ӎZ���mY&�A.�Ɍ{TT�L����3��jk�
Xkkk;��$2�"����\��ͱ0��fh�@
�K.�n�����l;Ǐ��Xx�ןҌ�S37&��Α��<�鐘:���Rli����2/�(%�^J��5��S#0�֧8�.�Ot���`�QL'X���;k�+
�ꞠJ��pKL��#Ç�f^�̜�q	1nIZb��|�(�9̢0X*0eL0��'ـ-����1L`�P�	���?�^DPS,L1�L3kc� ґ����zL��Ovo}��G�E=0.�w�2UC�o@��jdj�MI��|(�}��$�!��0��jnj�Nn�H���D�:���^Z�.r���}3XR��11|����`e�8��3�O]:s��Fg0���]*���\4��X^�,#rrv��/�\m&�91��@�2��N��ա�fF���]��FB��]��,ϟ�8{�d���cL�c;?�xؤG^ì<�k�0����k�GJ��<���ƒ7��i`V��+���U3_4�bS!Y�K�)�QmtWE̯8`>��Ѷ�`��P����R��N�
\�@1oJ3d�4Zc��Ym`�?�v�Û)R�c�e	is�.=39�NN�����!"�@Eq��D��`6�+AiWJGw�)0!��N��tt
�|�n4w˽�����S��
Ю�s���q���?G@b`��s���w�ꌋ��m<��ؖX@�nq��:����	��S�F����W�����-N�$��M�3x��?l/�K�,�&2�/�L8�L�y\pYd�gtN�_�,f/au�K{	�a���]���rr�ژbr��#�ۭ�P
;!2��E;I���@���-�5�9R`bn�&_Z*`.�2j2�����c��;I�3������E|�L�c)���
*��D&�bb�������2����\��2<r��yf#0I�e�N�C��@O.'�0�����pY|�w �����4�K�
g|1h�~�
����.uɝ�dXJC�:�n6�f�]C��)�?��_j�a����������m��";��u}�.�F������+W`ޤ���[X0�|���.W���n���c����C3v��u�C�0�{�iې$.����%Sj��<�G�4�q^�d��Ф�!�RG�yE�^jt,%�L�h�ʺ�����Bָ��������;@z�m��M�\��r�����QV��8:����1�݌	8�em��dXgmBtRx�&C��p�̳�y�f�U3u^R�:��^:�751�c��U�v�햷�sk�/�I�#��;o�������uə��e�8�Hʏ�;"�S^5!Oe.�)��9�":���cp�R��QK�9�\F��	��s�033���焘#å|��rtɣQ�2{N^�p���QvL2@��402Gif�����s��Ќ��l��1S4:Z>ad"���4?1p�<�?p�<����s�����v&�&kʊ�I5������Lyc��A?�;O���8���>�goﶠ4u.��Pz��d���;�(�|�g6�(�qաXk����i�&�>�^gbޔN]��H�ucqV��p�����f9C��<��!Z쳽Lפv��=:���C\$�p.��`�dӍC.��^�q
q����~��I6i����܉I=���j1�W𲢗�^���.�\'Ød�F}+R<d��+�S@���DD�P�h�"0����x�L�1S��XG`�e��`Kb�� ����)��1h7�M��*{����E�=�X��Mg���f��}������moK�v�L��S���/�R�ا�4�UZ���i!IFr
�F2u��K�H���u�݌bb����V��v2�Gf���5�C.��9&f��\G����z3�(��ϦT3�=8���JH�N5o<�����qơ���NI�ix����\�x���8mh�Tg��-���ɮb^�CGd��
d��j��ϿD`RW�G�}��^��,DS]b�=yh���+(���M�"%��s�p�U�c1���W	���}*k�q�}��p�R�mbRM����̦��h��9�7��$)�Fn��t�5׎���aٙG�Z�0����@ŏ�.�D�!�e ۫� n�'�S�n�`�R^�X�Đ5a��B�C�����F���T��`���0�LLg`j*]Y�џ�a��:��ڦg-��МVJ���8�5M�I����]�`q�.9�N(o]�3K�_�il&_|51'�%7R�x�$yZ��qI4/M�����"
�����XH�-�ʦH�K�0����VLDMi��Ry����q�4������H>�v�,E�
S�.6��"�L�(�f��Q�?�҈�w�V&Dž��a`�4�)e��HS��0|�4�!xYߜ��g�N�0�Ձ���d�Jm�~���(�&1�Y�Y-)���\@>?��aÄ����TK-���<I�'�1@�	rq�9�*�A0@k	LQ50��G�	�κ����0,5{u��Nˏu^�U
[����n2��7�u��&�š+`�Ą��w`R�߈�O������м1#����g�bM̛2�HQ]?l���^’
0��^��C����I��eA|-S��("v{��g�V�	�Z�D=D��j+�x��	-VqىL^	=�
�eKDC^5�m}�ծxŴ��T��Ĕ/�����"W���(0���(Ub�%���L��
,I���,��/�ˬ)�TY��iR������̘]��l���g�%fü�0&8E���F�͟fv<�P -LE���qZQa��g$?J�D�._
X`ڶp��%i�l3|TPB���T	"��I�e�-����0�q�|)ڷD�?�qtxv�+*�M�M sdx����V�e!�pt�掛|9ʏ���b�R`Çq�|��ʥ	[�`�����A��4��A�L55��ϙښ�M�{P��L*�s�=�}C�L��C;d��O�D����e�y.p�	L)��A
r��BL����l��{P���8�I�r9^�fa�&�Md.��m`N��$8�Z�����݌n�<��J�~��z��̅Dx*v��m�ft��Ы�RJ��0"�d�g?�b�9s�r��ދ���_VM��o�ɇ���6�wA�W%�4;�kRgY�#�0��:�{�.	Ǧ]k853Qv�����oU���b^��+0�9��:�y��ü!aI4���B�9s�[2l���պ�%���l'�zQ`R,3�x�24.%���ޕIl�I���_L�1e��Q�J����X	L��f��&��)y ��8x9��'\�����\1�L8�L���}�0q�zsM�9�K�����Z��sG��g\+vfH�@���
��b~�3������[�a�G8؍o⒪�������#ۃ�v�rS�NG�e��)?޴���~��9dNpذ�
L�@�PҾ��G3$xj
;u��3`��-\c�t�2�$9$��چ(��TY��o6�sR��J�ۣ��FC����@��eZ:�Tw�Tfjߤ,�$��R��3���6��	̷*0���V��(�3R)�]����l
L�o=�M.��[�u�r����4�!�	8	^�ڈ�d��3V.�@���7'�����A�@0Dc����v�n�I�s\{\B�Da;E��w��h��Xo׭�\�&��=�7,��ǧw�o	3�����vy��-�f���P�h��%�p�]]����y�p���i��b��N�\����LN|q���<Z��`m�o^˖PrM1�å71��q3V<�/"�S�Yt��i��
�s���Xw,
�>�!��>��֬�J2�ȚJm��0By����GgQ
4�E��4O���@R�O���>l�?kn�(�OM�f�L
������/�e"Z�	�&\KyV�?G�q����d
0Q�!BE]MD�G��K=8bB�`�2@��ji��j+�́�ھe�f��|`⼏&�u��	|�g��T���_8�l�6��w��/z=�N�$1�
�£ܪ����`}q��9������L�r�����S
}���S�q�~�^���T+
W���PyŒ��L�.4}���{3��R�K1��T�s<�a��@���̄�b��o����O���~���$�8ђ�Vf2Z)��ԙ6��ZM\6k!uK��	�H��F������٩ꊣFkb�*� �T�La�˫���W\�%na�8���7�D%��&������lE��F��mZ\{z5
-�߮O��	�OȎI�&�,aa:�8`Q��q�.���e���w�	���pq�4�sd�w�X�΀���I�w-�
c!9����,��S� uJ�����EgZHg���1<�!6�3j�%H�fy��CD%���^�gSIF5����F&ek����O� �ٵ�dY�Uk*-:
�0�N�/Ϥ⩜�5��L7������9`rn�Z�%�~gg�k^ML��̡�~���Y}h�AMf�\�&��b��&�,L�uE?�4l8	�+����\ik�BBq��f��~b�O�JM;�Ԫ�l��Nb�F/�Z���-}
{�>�)���&j$�M̫|�l}����8�a�>�b�,s�u>JL�G�<H���
L�]�����M��<&�v2[�{�u$�!+̄:�j_R|0�PH;��a&t�.�.r��-��dC7��yƸ���+�ɰ�n;���]�����L���uc�m����F���[��%3������^�8L�r����1M�%�9f���$B���p�HM�5��^* �K��dr�Nrߍ.��]x.�,���gs���rȗh8qT<�������n'	J%�CV૑D�Y��p���$Rf�L�w����@V��5���&n�ݍ��,�!0�<�)Ȅ�3��sj�4X̆M9f���-��~��SH����f�F�%����\'k��g�œ�#�P�KZ��2*O��������#QG$e�\�I���oj��a�F"��JS1�z�.�:��xh�����_~�|���¿�TA��/�2LYX�VZ[ƹh���	Op\Ɗ�3�-�=�����mm��]�j\f>��f2��fT�@H�/�ffkt*�7aZ�%��Q�}�0Y�|��
(�sqI��^8x�q�*�Ē|ү�N�J�ʒ(����Kڭ�82�C{/�(cn�L����ӳԡ�Z$�Ɲ>�\�(4m$iM�P3.i��-�T�ڛ�g䆀9����8�D4/7�@K�'���$I5IqM�&�L9U`j�2�����;P�{'�$�i�O2��K���7�% �J�%O'|u+0Yx�MgL21A.A�����K�2	L��ó�>�A�I�0��x��l���]���tA4
)N,GδC��L3=)��������P"�Ρ:<�{O_�I�r� �hw7b�h ǜN��BR��9`i��V.`��y۹��RST�1��"�(5$N_S�0��ϼT��Wk"8I�i�f�p���4u|��F&�:v�>y��<(b�O��a��@u�<�-z>�Ɨ�{<�y�{?�	��/��N����O཯>��|����E�PIn78j�F9iO�L̾�����p%����R+�h0�I[�����u����G���$�������E�|a�R�S��Tx���T�Ƴma�͘V��秣9"�8N� K�eP�I<�'~��9n�t�@'���ż"B�]�K�,���4=�j ݎ˃�Jr�@�L��f�qP\*�L�R,L��f��^H�^��:��;ݠ�l�f��墛'�;u��$.�@�
�4I�i)9�h����(��*!�\r���}9��xUpȍ�� f���Lةn�0�l�r���p�}t��*Z��
+���D��eֆf�9�4iq��t;7?��{>���F����p(��[�e�15�D&��0e�#�&5��7�/�4Zip��K����L��t���;C5��B����uS��!1O��1'8�
7���fy�4>^��N_<G�¤�,�}z���;�z����2���%��e�Ș��f�Ns
���*d,M9,��+da*:w�nP9�j�E�<���)���Ͼ�E����G������/��_���;�����k���y8y����k�$(%��ޔ�Ẁ�X`Jӏ���B�
I+^�kK����|��0��/��
`^���Zߪ���)�WbS�v�0V�c�nF/9��H€E��� �-����
���θ7J#�%Y&��I������\6z	LC@�g6I�\�������-��C�y����;]�5��ڇ�n>�r��t�]�ZͿ��mknK�?������:X&��fq�إRnf0Eh#Ϣ+ܭX�/�դ�3�9���ź%1!8!�M�(@0�1�h���;n
�ӓ�
&tL��.O����jpc�����|�%fP®��m6+B]
X� �@|��m&��be
����Tn^x\h	J:�0O>D�P����wl�{�8j�T��;�E�5�#,�D�2���^ιX.a.�R�8�L:�fFa�1��X�L�����Ost�?��e�0�*4a=sCN�0����mn��
��&#��L
��
��b=&�"LT�a�E?���]b���ƿ�p�/z�+��_������'<����/�x~`��l�@���"�{�t9������%yɌO���-
}�����g�/�%�p���O`>k������I%c��
1��A$���M�BW�y3z�C�5�ؑ	6	)r���;�5a/×�ޒG�m�O`*��0Hx��,�_?F��!�tkѤ[(�#0�U�G�������Kӹy��>���fը`ţ�η�6Q�͉�
�*�\/�(�T{�:��e�)��)��e�p+�Z��mX�P q��G��s)�̤���z�$N�5��ʽ{��VH��M�	����3(���f%z)�	L\cV�0�B\�E������P�>8ʊ�����$!Nɥ��2�M|�%�ZLm��Y �T�{I�m���l���ę<u�����0�2«�B��7�_ɧ��1[*�e�0<p4=�uvm�ق�O����$0�O��r�dRՎ	G�$ɚk�.��c0gF3��e��#�Nib�h&u�k��/�(��S
�?���&�?���7��a�..7_���_��|��/��'�B��?��_����������}���3��g;����ݪ���q�`.3����tZ�M{�0�=��{S��~]���V&��̛̽-L�)I�֑fd�7���Ԩc�>�	��`���do���/Y)�?2�!pI�b���߮�l��ϊ�A$ ծV�.�q��Ii�$�uC�TBKuE�7U��ӫ&�#�>��s�U;�(^��	L�Rm!�RR\F"&l��%ԝV�@"�$��<�h�
���L�DŽ{:&? ��6�ʃY��"�T\���V`
/!4��X�M��-]�ha��'%8�H������� �0�|Їq�}Q2��|�A�f7��
��ǽ.�9f���r*��$%��I9�8�,a�ͫ�#X��f��wN�Y#�/�8�a���|a|����#���t.R�&��2³��a������L?(���̽�`�
0��IY�&��s&e>�/'���/-����+h�p�Yktis�����I�/
7L>�Q`8�?����\���w����NL��g����8�y�
��?��_��y1Tk:퐶�Z1j*��#��<x�g}�R�c���\��c'�i5��Ɉ��3���ܷ0ib�<�Ԯ�63�9�ÜZ������L����e�.�ͨ
�0w��La��na��
�u�Lf��b뷙td�����	l���>�^ze�+B�������������}��CSf�i�:�j2����I�9`R��M`"j8-�R˒�X�.D	()�d�ؖZ�.�X�b�7�03z�iD1�m��u�ߤ�O��!0Yu���0�Cy��@�#S$0�#�0�y��I��x����C��;ΉELؗL�����|�i���/�A����E%�-��E���(���r#�Ss�W��fxZ��:z��z��H�
��[��?�)�o3`��0Ixp�;!%N�]��P�e��!F�����̙�)f[ ����C%��0�h4��;n����B�j`N�Δ�Q0��<R147��BQf���E?&0�>v'R�C�=-�7=��ջ�D�������7��~��_`a0=���U�8�\��b
�m=j`��$�Mݗ�$��.��,6�m�����)�<��a��3����=�4�d8�e����˝��[�a>�fY��H'o\��0�jG��#$Y�+��,�Dlo'+�$� ��_j�ോȕ�v�I��d\e��������^E�|��;,L��*��	j����a���mw�_�3Ӭ{�f�b'��E��TZ氝���lq��2璛�=�c&B� ]�D�����@#���{9�R�o�f�[����x�R�����&�˞6-E9����a����|df���ً3�F&xR&�"��A�0	�Cp���f�VEZb��A�)!��ʐf�UģH?<RmB�3�t����Jfmm�8:,^y����.Ϗ�++�Y&ˏ��;zz�F�'<_�J���F&�9�ڱM�z�7��6�`�43�´2�lm�x��d�㖙6k;�*��V�!�9Ď8���.���_r�9���^Y�}����g��T�
�y�9�#V�Z�ؔ��
`�G>�n��ve��2C��ue���+E2��ݼMl�⤢V�>�k���8`V3ڤ�%�<"�#�|��SUև��ܠ*`�$����A��a������M9Z����~
�&E��zl3$�+馋QIfyilڐ��0�;�����@
��ܺ�V}qʧ&fe�\�l6J�
p��ZL���pYELK�a�f�ˊ�L���yZ�2�z㈫+NJ�����A�����%��/.��w���IPhWŶ��~�18��
d�a��|L��Ő���8��� ;��D�d"��bRF���H���lf��Q���u�o#1��@cH�yB�Z�2֙*JK;gc:#Sk�R��\s��S�_$$o����hv��ŋә�I^I#�krs�{m~|Q+yܠ[>�š��˜&��g����4��?S�5�
�ǼH.2���M���X朚�����H\�:#�f�,m�̬J��	��`f���h(cQ�б!���gs_�'^��:>�7J� O�^��'���׶�	/��]�ʡ���̗[G����S|0+z�V0�����
�&yy-`��<�y�}/9R�jk��y�-L��aH
T"CWYn���s����J�1�2�C6����&�E��W!6MJ�#�KG9��y%N+ԐQFbN��M��oJ������*�㭐&}\��֩k��5�YmbF�I�E��X����&e�-#�W^Rf$����/�c�v�q�U �`�B1��ZƼ�1���?m���X.�v�|��yha*11�Qq^"\pL��4'�(�.q_$���x���x	~��+�.�^l
�
`J��� �װi7�Q}j��RZ�Kx�"������;M�
˸	0s�ɻ�O_<u|���n�i͕O�;��ְ�P����h>?q�N~ð��&�r��Xu�ɡ��
��eGQ(Nd.�s�+��Y�49��& ��p�=�'�̩���.�ji8���yO3���FϡNS{g
��������+G�V7�޶�Y����BL
jD�\��S�	���5#�%&{�Z���d�yM�?t�5�)楺��z�Uj�:�y~Gi�M�0I0�X�T�V0e��X��ґ���2i��l���'�qP����v�~�����tN��$&ç�$&.$�$59��F:M/����^���m����N1	~��AW-�	̚�e�Y@7撋mIXN-���	\:�\�z1��>��t��L�=���-���B0'�%`f�yi�q��i�ƥ�g}�)���)�Lh�5��K2����H�*�,����G��gK�V���Ylڽ�6p��߅~JІJP̛�P�4�E���<���8����Hy逩��bDzq���^�����g��s^<rd�TXC'��0ۍ�+����n�Ը�	;�\��'.�0a]�̬O��_~T���j���jj�/́wt���G��J%IG͑S��6���Z�%�)c��׏�#(�,@��Ü�y�kO��ŧ��94<��V	���C"·x��������Fn;:��ڀ�,�2\4P��Ζ�
30Mi���|�ڢ���>��xI�7�F0|O�0�p�~��u��f[���`�l9آdQ�1��3��E]9~�k�����[�=���ey@P����_5$���h7��Q�JL��]Ȝ����u��i�k
L��<WS��N��ଳ�,W�d�u�n�T�E0Q�i&	�h6^��b[��t��մLc󄈼t�<0.���M^<`���-�%0�!Y��2vf C_�)�x70�b3��r�f�8�F2��y��g=������T�<>��������qP�����qt�Ba{L����)�S��_����-��J�p3/��f��RE;��v&�9?�,�w�`�tCa�t7�9m*�3�a�5��uϒ���h|�T�Z���ғR�y�D����CC��=C�w`�ǟЄ�2�[~̉�0r�5 �h��l��r���t}cku�������PjO����=?�tz/�x|���!Tn�z�ru�ݞ���ˍ#���z��;w�}�mU��p50M�Z�{�:�:"�s��-}gPQd�_ݨ���U�H��
�E��0�y�-Lm�����rӀ�cRO���kH�*��1��`�ը�A�p1�	�+w�TvI��&Li��ҙ7�a�BL�:��.�G&)jT���^��S��b�R����U���fޠK�",���^�ř�-�;s=���	��896ZR��%C����]l�#��X��8DSE\"Ql*/��FHV!�u�%�&W��q
D��tOJ��(��8�i���Q��ch�)���]�y����H��BwCL��NZ6rL���UI�l�x��sfֻ�+\��K���'����̃���a�r��!VⳂ�3����„���3q�����B�$�y��a�9g�SQe��4����ɭ-�%&kF��V�`i���0��)>���.Z��8s��Wi]���|u�<:?;E.�g����$o}�0?���>�������o?�ٷ������+���w�������w=���7�Z�QeDvA�>F�.wF��a����s��vhYR>,k��f4��ꛮ�qta�]%��Ceœ"0�n����n.��ʴ�d�7��қ��Ԭ�RB:���H�6�H] ԫ�zڭW��H376�U�'<1�F=�$&���ǦZJL'�N�wO���sAh�yUI�%9)s�h�1x�cb��i�8B�� �8luKJ�=D��e�F�}־��s�K&rF�D ���4��F2�H2�K����$���
�t�<^&�2��d&�w�s�~?j����~��f��Z:F`F��=
$r4���p
�'���N��
L�r�%�2/���-	`��g���&Y?�O�"��D�gxvN�	e��%I�`�[�;〙���E�$�T!��05�����0��7��B�X�	@jI&
{��`�}�kN�\ڡj\��4:�?[jAΩo�5?�0o=�D���o���W�_~���_��������r�����S�{���P�K�׳cy�S<�ږ�2��N��B�g��tY����n�`/h�w�xE����_o��|�Ƙ�
*`�=Ǿ��W�=}��o���i�ԸT����4"��]B��p���_��9駈T`*��ϯ㋼PȎ�cS��*�J�4|�S��^���u�����8eJ�K�� pK�#n��v8��-�"��卅��Lv�W'2yN`&���lY���	�GU��h���P�v��9�t�,��X�üLg�g���5t��"/1N�����
�-�����	S�y�&}�D ��BL�tu�I�-q��cR=q�Iu��$u�5[_�9�L=P��9��f9�mfM~ aG��9�͐
�4[�JX���K�%h6�#��!;�Ơs:1}x���t}ӧ��|��;hb��1�M�0qCk�4C�&hb����ښU���WdF��PC�@'�������'0�K��׾�5h����zn�?�&�������w��?E#�?���GP��\�7A��K��ʭ�13aF<�;�q�:#��7`ZQ�Z�Di�s 0���[���)�,�B5�&�y���=Sw���0�^Y��}��L�+�&�0C�B��������?!u�~������o~����H/:x�x��e��:w#��.�i¦2�H���h�8'rʘ�~��!]f�I$:h��S�L��'��.�k|;��k}½*\��6�����)�>����l�m
!)�yqU����60aTb�m���s�A�.�R7{X`����d���ANK�<
G�H�Ea�2"�03�?M^ꮊ�2x�5�t?o���$� ��^���4T3��)-}��0?G`�K~A����hX��}>
0�B�3��n(�\3�����y����	>++�&b��`^<��`"�#�$��q�TY�<s�n����i�0�,0����ڱ�a�d���/�sQ�D9�-LE&�I �d��m9JX��6���J3s�R���w��&MN�[k��0�?�S��{N�|�o^�+�����W~�W4H�2���w�/����O���W����O�����<�|�M���t�Ղ���/a;0�9�� ��E5I�Z.�3�+1�h�"��C�N�"�I�$�Dy��Z�"z�
�H�D(^��67�o�
,��G �n���)�~��.{tl�I>�ȏ��C}����}����G�	n��z�#o&0 ���w49�8x��5�a�S�n@��1\'eњZ�v�O\-MP�v�Se���D5d5�u����t�U�,�AA���n���a���Z׍+�E!�Lܳ9�ID�<MF�vt��$�tK8:���� PH̺@}������~y2�E�bsc
L����#��ї+�m`f���a.���-�s6󊺓�byb
����t���hśi`b�g����0���9%��Lki�T�l�U�����!ab	&�	�t1Q��W>��u��4���E��L����@�u$_��oʊrVfKKo�0o�r~;3PS��H���P«�A&�&�'7�im�%55��d�������4��ȑ}�x}����<U����+�_?��7��"�w��^�?���?-�����9���i�G^���Pz|�ʕ͊q�<0��mi����U-���$�L���҅)u,t4IG%^0��]�g~J\�(ږB��@B�x&Z

�$�ځ�,X����j�p�#C7���if@M�x������
����? 0����ٟ:�7x�[�~�'?�Ώy�7��o?�џ�֟�|�o����~�ȣ��Z�*��/v<J8
X|��mJ0AJ	d¸D+&J�al�tuS�c@ӕ �S��2'b�PBT���
�B�@&��[}�qXxo±"�]�ɘZ��G����g9�A)0��)'ݲq�����O�����yr�\��/�N[\��g3�F_K��䐞 05;N^"D_\�&�,�g}z���3p�i��u�8~
��4jᜣ��X
L!��?�W�K3�H��B�0y�;�Ƣr�=1+>��81*�0p��t����r.9%�<����Y9:	>�_������61�̍��d:����Xֈ���52�h����Zt{��~	e�s�&��(J����e+�YI�2�4���K������s�Dj�oӳ�<�s����o>�֯{~��O}����>��~��-��轟��׿��W?{%|�K?�|�.���xn�a��_7�ș��^6������gS�f�Lȴ�U���V��"jgb)l��̤̘7!���
Rɭ��Jr9�>:Zv�k8���B`N��N��j��g�͏'�Ɂ�V�@<����׿~�����?�ى_?������x�_��;����x��{�O������G\b���QH5�#�4�Bt����ܓ3��q�Ǵ����d�G�}���ն�IÐ��MK�������u�
�q�f	�����w]���E��g�G���9–�K�����[h��.y���'�E�V4a�q�q�96��00������O��v`5=�.�wH�/!��qn���l���Xv1H�&�`NaV����Wv�0��AL@�S�`J��)©J^ڪt-*�]F�	!�J�
L��Y�f"�=
/���m�Y�]�y̥>@��)�vs�.����J�tN���0k9�a���LN>��	΢_h2λ3��L�����z]���E�ȕ���%:��⚗�3�)f�Se<sd}��;;}��}A���Cܣ��C��Ss�����Jy~��w�m{��̦K�tu�F),qs��ᭁw�Ą:����A��K'O&���d$yc�)=��"�7���y�s�Z�|I�ӆ�Ay��[�RA�|r�e���}���G��ȟ���������o��	�G�����?>��o������?~��o���}�Oja��!�K�5w"��/����H�A���P����\�rJ�AS�L�������'!����Ҕ�k��N�x*�v҇+�����pu��z�M�~�D�f�͔��x`��1��,9��&��q��i���M%��,Lf4!C1�TM 7.kf�E��f$v_�E	��y9Z+�4z�L��K���/3&'Ϡ�'_��v�F�o��e���bw`���
ű�u�JR[�9nH��T8Q@���[����h$H�a��P%0d
�Q��ɗ��`�$�Q3�-"0k��YC�}$�@� �g��r�'T�i��D%�"�J��Y�'�d��t	�9\�1ok���`ZP������d���;;S}rѩS�`c�{e��6���Fi�XU��cd�ȑ�ՉQ�JY��
~�_[Y���N/47����uȥ�w��*�9i}������D0�b�ܡk�nS ��i�q�'��'�_��\��>"x�
Ӿ��65Շ�MP2�1�r���}Ay��ajϠ�Ã����K�vL�w��;���ˏ�䑟��;�����ȗ��/?����?~�;��O�|��_��!L�7� &x	O���1�ypʺ2�)q��Ke�������w8EI`	�rl�V6�o��Z�n�~�T�~yJ��ĬΏW���8��ٯ̨N��e�������I�ND>��L����ڞ����.�3�`����q�E�Jm�g�r��_[�d4��g�"ʄ&1�(� &��q��/�4�D�%\Qm�IO�� �����W��݁���s�o�-C��aV���=e	��:�}�~��f�'yi
�+�9��K�5�_���g@*(�$f�¿\S�<G@��F������!0���56�5i��D3妦f����J�.X�x�����Hh�jaJ�^��i͒
L53eE/M�md����*���X��(�q�l��o1<�3%��
k���=��[+O�_�n��16^S��HW&BS�	�!�a�
!�)��0OV�Z�����^���֖��]ཀྵ5�Mz��0/��p������TMSē�{�[�"e��4����I��]a!��Ș!�I�K��Gj��,�/�η��/��4K�ء�Ӑ	�yMZ�b�
0e&LFi��E��L��Lܣ[�8��9��"u���^��@xj"F)�\�O�IfV�a�c���um`�Ǧ[xId�N+F�3y�e�p�
0��tҴ�4��~\ee.��i���, ף�DTY��+"�ʐz�qq{��Ex�VW��v̘7�&�(��`3���L/2��r#��.�1)+r��&-Lc�'�L�T��.ye���������T\#�!U�ln�
������JX�.�#Ӝ�X�#7��T����aa���@Ld�u�3W3�%;wB�o���t��N�BG��s��@kn���,̏���ZȔ�'i��
C���"S{���3y��V��mt�����'\̀F~>�FNc^S)��̮!�\�Q;V,�>w|a��_Wd,��64���so�8s�����/��'y�v����0����?�/ڿ��cAO�Ͷ���/n�~�e'N|�5ДXx�K��p��/���P�s��}�S��r]Ҳ�I��a\��a�Z-,i�8��GB:��@o�eE�'��C_�B?�>,$"�h#�݇e)�,������	`;|:e��i�꘳S�G�XW}��
���.�Ѿ�0	CE�Ky5�N9��z%#6t��Z���(���ܸI�X`B2�m���E���vÆ����3G�@~0
`�6,H�G��Kz���#h�R������ee.����>+�g'	�I�.#?��e:�iY�36:'�d^Q	�Kf��&xY	L��l�|�;�CT6�U�0ͦ�T��x��Zv�pi�	v��
̇/Ύb��A�F��%�>�0�'�+�H�nT
�����rc$��Ӭ[�fia�C,f�'�E�b���Xw�9���,0�Ɨ��(�H+V�T��$9���p��Ҩe���4�Շ��T��<�=�����z~�ʢ��Т�C)Yi�X:7|y����Yʦ�$�C�C�_9��'�F,�i�&ʯ�cR-���9��1��wfsh�K�ɫ����f��|���5����_��<�������V9�*��^�������݋��������D<����y4�Y%1Qݎ�u��'�e}h�6��Ȝ
��=����p���կ��U/=��YEd�-\JRH�0�)0���f�:ޜ����`e�A[Y�+�8�J�{�z35(�Lxhr'
L�f��4&��[TEL�+��;�LoOS���3m��yL̚D��ƥ7�=?���$�w��nc�(�!}=�"��+&ǻ%�O2��S�_+�a�<G��7�:�P�zrL�\��G��e�:W�������r�7���tid][�	���ufɽ�J�`W�va;%S?�0�:q]J=�҅�3n���
�)5�1�:�UI��ϝ�||4�2X*L�8�P0�7g˅A,r��0�J�hV�,��w�rZ�p5�R��rM�6�{�]��h�L�p	R3�B���hi�-q�/Ø�j�����y�Db�f��NkU=@G�5�\��I[#��_���_k?�s�Øj�P�sk�ꇏ��<��t�"⪃SV�⻧OMu5��,��
vZ�SSQ$'�Q$��=}�D]��M;}�_[�� ��������q���d8p(]|���~��-�_�V_��~/(���<M�W����@�_�����جo�?dɽjbڲ"�	����#�m��濩_�i�ѣ��|���ԭ��礛*M3]����*�P`��NI�cg��?%�����>VM5.m��g�2�H����UV�j�N������O�N�(Z`J3��6�F�6��w��Uݾ�Dg7��F⍃J V0������lOm~����2�e��n�t����V�%�&�؀��c�1˹qt��df�(?���窀�-!|�ϚS,3���ws�0i	O���KG�~�/�F]��%�%x����-���#3]׊i��͕2��(r�[a��a�t�� Fa���dLGv���L'�%���S�ܜ�_~�D�|}L|F�ؖ<�!
OB��e�
���",̜�@K���h�i
L�A�TbЌ��P��:���K���������=Ό(?�8�֡�ёS�&&?wy~����XvK�{���XkMW����H�<X��ĭ�ŭcj�0�

/�…e,,n��a`<?�~����{=�Ǿ���bX��+���m�;���w���	Z��	��xZ�=��z�%{,�
_�J��Q�>���?X�Z���̬�
�2����*�Vcf�Q�J.ƒ�r%c|��'��4��]d�E���4:��tĈv��i� nG3ݸ6���I��2%�g�;�
^J���p����º�JS�yU����D�
[�2��-��v���8�=�S&ZI}��M��Q��BRUc066�ƶ�i�R�o�ų�0c+���c����h��"�R^�m�Y0���d�:��q0&x9k2�P�$�K�dw��aE�2��3�}�jƜ���?wߣ&
D9JS�㥛��/�|)/m��%����]���SX�X[)����n$�'����+$&2�(&�#/g�0F���4s6
�QM�,�`��A���֘�^�&S�w*�ibBb��-c��33���YC��|���!�/,��\�Sq͇�3@p�����_�Q~��'���=��[��Ȯ��|����'YwՎm�WP6������
HO#���R�h������ᖖ����|u�}����3�IL}��{������6Y`���w��#��W=Q����w�Cޱ��^���ط�n����oa
FX��[}D��A���T6���ϫ�׻���c:^s�A���7�g��\I�}8���u�2��)���~��ZF1�<�SQ<���|j�j�GY�s�0��o>��U�D�kv$	y���:d�U`꫔$��
LrI�p��d�4@"�C7.�
�<��%RNZ{�L��2�a��&�ߤ����+��-d}Q�~_ؘen~�1�<�W`�V2��L�lba�צ9���|�	�}pGἏ�n죩�UE�a�I���?\:�E��0
/%�hMM���d�Lc��`���X�������x��`�X�(@L@��kK�kE��9��
��%0�h�/��N��Ӆǥ����L�\�1������=52�
�o4dvuv�P��kF
�ņG,�p�y��x���,���ӌ�^w�����%#�(��3�	�_�k���yу�8��O"+�������w<����(�K9Ou�P������rK�6�|���
L9P�%i�>��׵0�j�&0��@��|����z^~�֦�_�� f@��5X���w�=������_���P��D�z��fMǥK�6V�)̛laJ�]�#,�Lf���,�}�jڐ�q��^f�{���LI&M7�0�7�A��3Q:�M�D�� �w��G��\ݱ+F�'[��������X�Z�l%��8ib�$
�.ͭF�ɻe�h{���+n��>��,2�c�g�бLZn[H����� G��Dyd����3/��I�;N\�H}�u�@�1T��#34!�K�8Ri�c�n�I4�ѾLg̀u�)����_��hm�8`S��Fny��Q�U'�5��Ϳ\���,ν�4���q�k�R�~t����kƲ���MկT[�w	0��N�Il�Y�9�oL�c	ZĜE�����E�'��M�ӧ�AFk����%�Sg%�t�dʘ�,y��,M	d��<>I�$W�	V�X�Y���-<�;ϰ+`t��e�����ˉTny)r�FH��_2��kf�������,.6v�'���L�K�x����㳀pw�Cq���W�\��[�����X��ވ7K��lq6��U�$��kk$���o{����}��ӇX�����y^{�T0Z��`���#�
{�z�R[���Cш�v��=�[S��[�f8�����Yr-Jp^9d�b�=�a�oW��'͉>��k���S�����9��O�vBJi��[)�}1!iI�&���u�Yl��m�3Y4L�J�w)ǝ����Na��AW��VE2��.�����HK�Kܤ���%��͉��nv�#�P�\b�@��L^:o\�Ҽ����Xw��а�L:Pʈ��j5��x#4�2�m=��Ф�����Z'Q���z۾�R.X�C�&lx�惚�L��Jb�n�%B�RU"�J܅��=�u�Nrg`
B��Ո�l��9?�o���${Vʧef6(�D��b��Y
0K��x�9nM����U���t��4�`��F���ŻɄ;�"��"�"�1�/��<�`�(�}, +`���6f�#&�u�d&�g����ƴ���<��$�-����������]���/�E.^���s�n�XJu��	+09��"}
�2��E��Z
��g�⟚�s]ˊ<?>0��x���c?�^,�Z�j�d[ta��К�Mm�7�{Z7�0�(R)&0
0��.�F��'�`P,Gcµ��b�c�k��S�d�w��M�k���+���i'J�΀�8r�ݱ޸_�\�<��-^2��c;�2U��v�.��[w��K)]1���de�)�.��]��r����y��+(������7L�dV�ɤ�^����{�u�s4���6�yQ� �lP��@��T�JN�
vc�[y���L��G��4��#�p���T�D�y�ҝE[��G3+�űK�� 0/+0�K�b"����g++%�C`
*��ȥ�yw��$&�J93!���r[
����K���d=��ELÜ)u��L�Ë��Cv�	��i�Vezpb��9X�Ȭ�C3��a]S������r!3Y�9Gd^�_>њ��e��5�<s�r���G��KC8��]��k�R��Ȥ+N��h`)���3#{�X'涽g���p�~ߢ�< ��x�>���*.��up����_�2�0����dY�1�Hw�rLgdڪ:.��f��d���0�Cu6s�?���6Tbz ��y2��X�8�G��(؈_�u�Yr3�*.y}�ca���nl�c���N��̱L�� ��2#�#O�G��͞3��-�f����!>�t=��Y�L��%-�1C)z<T�(�%0ы�Zu����_��`)�Z����y�5;$i���č��F�I�j�pSš� %� q�ffT�q���	k���L6]!�^(��J�K�R�
��+4cPw段1x�+���r����(�Dֲ��,̲�̒�j`�e����L��0_ҽL��[�f�U��ja"�&V#�A���T��a׃��t��1.�F\2P��=V�Ǒ#��Kﶶ�����\I��(W/.���	ژ�~��Z�h�Е;��(1�p�t�%��t��c���ֲ���jf��2�y����ظ�h_�+�j(ϟdW�<�΃��bv$:�1���W	��Y/Krp�0��8���񽁙�}��!��j��M�2.O����\!r��h��\u��2f0]�N�+�c�:��<��n,j?��+
��5����-]ʴ޹e(�]�*M\7��.y��Ǐ�������W����m��Yy!]�%e)nQ,�� ��H,ل;NwW����j���#��&�7�¤���4s�c�.�X�ֿ����`V�)��}8crܔ������;Lq:[�4�y�.y��I��:��{�}�"e�;�ݪyҍ��xEo]4���xc��L{;]���'IT��.�ͨ�B�K���yPX҅��^���ҍ�DQS���|��u����`��h�ZK�Q)%���'nL�<��^)/d��4��y���%�&̱�qR��c�N���r6c�����?�>2�NM�W�@�m��)I�r�+v���̐f|dB�女2cm�2����ܪ1���ZAW9S�k0���MN��!�`�6�y�5�Ȅ��<��? 3����DYVi	�Hch�)�
e�41�SsH�Hn=
`�mM>�'ahN�CCS��ì���kwf��ā�t�4 �����C{3�b�υc�H���&C� a|W�g��sw�3s0�?Mc,_<w���W�\�2\s�X���ta��#°-�.�g=l�܊I9��,���p�F-L����ǿ��/�~�}4N�<�<��^Zݚj�XظV⽗>���������K���q�K���K*<uik[��K�'ݤ�z��Y,�.�`tr����d���"�ƤK=�˨�>�]��8�����=�Z�:WBk-}|�ǭ�+v]J��Q�40�G����Bq�9z@�Kmط�f�-<j�G�u��(f��q��;�����aڊ"ZBS����c*-�m�yi���fu��F<�����q�F��8�!x��L��<љ0��N(/E�˕,�/�?w,-��A'�p��{.�<>"%�����@vd�
�y���H��$�BP8U���
L,��k�!.)~�t���A^���=���Z���־u[��x�.`8���3�fҺ&sL���m#��˥��?�@L��j�r�KO3�`<Ll:�&�W<�,zV�yq��)$��I	b�o�T/~�qC[	,,���AL����`o܁YF�X�;O��x��.�<����w���;ٖ�Q�QC�Er^/�9|��b>����6z�X�p��d����<�T��ps�a�0,��^�ìBk�F]&�+{�d�z�`Sy����O�꒣3��]���8b�[���xV?>^��}`�8n�o<��ںocc����F��b:���x�ys,�m��>���70H���ӿ?g性c�1I`m\"�!,�&�t�%9�fq����J��M�����sK�`�#�S0'�X�W~9XI\�ILZ�YCۋ,����k+c|l ltƀ��$�F�m�.D�Qè�`�Q颗�
�z�Ю�T�>��҅0�
�k�䖗�Z�&]>49�1�[�ٱ���H����Ğ'`��YC�Fl�7K�;a��MS0Dl�rM�D�hl`bS\rT�1A���g��m`*/�x똻^�QFo��UL���>���vL�1]���9���#��+G�v��f�k����8k�0o1qI��8��M/�����n��%�K�pp��x;����2��9:�
�;��8+�fq>¡�`�H�l��P
F2��1H8$��Bh!PhI6mi�J���m���c-:u�::^��3���>ϻ�!P٭^Է��JH���{|^k����c�,,DM*�a�ۅ��,�y�In?�	0Y=G䍎R���
0�\Hdn/�����c��	V�l	E۝%�\�utw�.�S��������i�8Lv��;�P?
��|46��r=���C^�HtJ{�B�X�N�����958�z����`��k��	����'��q���vd8\�������%,^/�4u/g;��PVRE�RV虢�����W�j����*�WpUa��>�G#)�F�/��7�nԠ�b��f��єY�u[���Ne)R�x��v
���ң��0�>�=L���d�����[x�i(v���"�2��o��0DY��m�O+�H���%Z�c^���`���,�Ғ�tN�Ԏ�����K�.,7���c�?��_��]o�.�����X��L�χw��J��|X��G��
�q%/s���K����R<��O�\��ιuBfz
 ��fo��b�Ew�-t*S�2�S��'ߍ����^J���R�Ƀ
��3���s�sJ��IuEp���H�s���[a"�[{84ލ�`�$�����aS�C/�|����uf)h9^~_����ݨ�&gJ�!9
��`�)`Tf2�f�1`�E�(���g2��I���s,�*]$�� ��]�`*�u$2��9�����AV:-�Ĵ(44�-q�
`��yԎ5i�0z�Ҕ��>�"�1H҈���+�\KT;��V��d��F%�5�xE?�M�I
/��d2�s���B��ВU��Bm�����<K�Ј{h�Ya0�x���o[s3�[=y�)'	N�O���(���vr��@L>P�������b�T�	+D������ւ�B�I���${�+n�*�i�W��4�`���<`��YrU!�7�.�-i%��d��}0n�@�+m���� �pN���f1nZ:���3+A
��Z(,�:�xd��ϯ�LzӉN� ����Tä�c,�3��,G��o�Vf0J���F˧�g�.5c��/��
��$�[N1a
�<���}��b�w9L���5�X��')��,��jˆ�ј�mU�t}��XKì���Kv�w)G�-��n����|������}��@��q�؟�ut�d�PiK���@ntLFȡF%/3�D89�ü$&t��K8�����KW����+n��r��,��)d�"O0GI�h:S�!��-Y�qU$ډܞ*_*�Y3��O~���H8� 3?`jtiI<L�n�\�Ȥ��@LC�Ȭ��]%�4����yY��^��F�q9��;V��N*"e	��B`]��IJE�H�1O�
YɊyT3	K�r�\��iɜ{0����yw�G㧶ҡݿEF��c3����j��~��d�oo�`�����s����h(�=�gy�E���+��ފ_iʪwB��9��T��-�s�
�-qPs����f���Ĭ��N~���dA�����"����|���ק4����'~�%q"�w7����O=�L�C\̤�Q#���xg3�T�0)�ْ_;�&���
��N�
=�ux�U�2�%�z��I����k|�d��֓+0K���+�4�}U8bj�#���kc�U��Z�Ƥ�L<*^*a�|L3qyZ�	"�IS��L�02U=�:`(h��	\�%V`v�0fK�Q��\ۧ�>
�[q�<i�Gi,��^h��D�@e�M��L�����0^�Hg��x���ܻ^�8P
^���_B��ڙ�r��J��X4N^�&�9��F����hGNU�|@A��9�D�*SR/�C!L'�<Η{����n'��)8	���)ηņ�A�I��[e�)t���\�v���+B�a�L�	v�
a"s�Y��y&���`���i����x	Ќ�l����စ��<��<���R���e?-��s3�q�MZ���?C�ff���]�����W�����{��/��_�Ӄ�?|���|�o~�3����?��Oϟ~���u����n޼�������?R׮?���,jE�J������4�#c`&��ͣ%s�e��a:N�R$W�d��£T�ĭ�3�8�q�贽:�>v����	.9`�Y���Bh���͍��ŵ`�/�o\�o�_�x���œ}v��ޒ_�h.k��'��<_u�� NY��sO���l~x�O�$BF��,f�I�
�j3�Nabp��;���	�dE�x��5�Z�LV��g2�����LKd8��y3Gk���ً���-/�<:e�<"�)�T�r���u7�[���*����&-Q'.�X
�)��sY5N��5�"��F�U3�]���DYK$X����0�����'��v����k��,�a�:ę�tq���R���e�3���T����w�H*f��a
0S��|TɭFLΈ�ME�ڳ�5�]�<:IKկIZ䬐+S���4י23�O�w�߱$�1�AC�:�R�N4Ӹ�q�K~Rj��8G{���ax���Cbڐ�DAG�⫃�kTw=��&�첇Ȇ�J��6���K[������,�gin�
�q~�
�8	��J��0%�r����|̕�iy-]��^���q�“�G����{��4�xb�I��DJ�#��֕{���~~�g+�n=���ܺ����nm=z��v��Hb�N�F�Z^>���	,��,��	s$/��	-s�F���*`2$���0�5\x�HIJ�> &.��\�)��_=�ov;���RB.���̩A
	K�~�k��Hz���v��Q-X���-x�o�5��hI��#��׶��̈́�z}1�lDٷيϦ�4���1]�vZ{�d�T����|���ӷ������Z<(��8�ړI�D�j�f�`}g��iû�c����p.�f�z�?�t��y���DR&q5�ᛲ �6��Qd�����j��n&I������ۊ�IZp�sI\�P�>Y�s�����eMT�?�$Q�E0k~�
i�/A;��4S;��dhŊD���V~�P�DB��N��|��%Q�`r�S%�E�ݔÏ�87�yLd�v^�]M��e�<��n~>G#���t0�[d	�4e��v%_�䃕�avS��DE�P�`�6?o����y\|�4ou��B��DLv�ze�
�S��݉�B&�I��܈h�!�t��\6�1��T�t�\l6O;�?&l�7���)��y�#AAqa�#��q(��ς�@(�)8Ζ'�G�a�/q����f�vhP
�D�WF\�N�#�Ѵ�t?��#��<ӂ��g?���{�E
o�h���tN=ܼ�By��@����Y��f��<��h‰��c��f��R�8���@]J���8����h���#�Y��y�1PӇ��f��)�^�����t���?��L��?����=IÛ���#
fմ�5_�Q�曓h�զ��rE��B���7\xv�N�0���o���/����~K��N���52��3�b�)e�L���/������p��/�;����̥#х���݂`��W�%���G{�%��L�E��G�AL!����/�[`�(z�UFѼ��j�e���Vf�1�C�D��n��%7�8�Y<aO��c�>nv�2��k�8����	#/"A}\��*`z�	c���DA�
��Yڏ%�}���H
�=��a+��v2%�v��*9��L#��:����P��K���T�IuU��x9�M���L���[f�ޅ����ғ���ؤ��Xq�
c.�Z�
d�THC��Ɛ�ĥ���Ch*R�dj���qO$;�@��,�wfw����n�M\���||su�JhL��E�a���)���&|Ku��fЬiή��~��D�1
��R�Ӛ�w66��O#�h|H���D���=��o�Kol�g6g�\�%0-(���I���*X����"��!�^�?�(:*�B���k�y����FuA�K�#�}�G	̂�X��}�w)��t��M�0��Nl6J�$��Z:Z�bs�n)����z��@	�R�?�4��/�����e��k�W�4-��߻�ً&�+�ɩ��n苍N�V��a�n@��Mjߩ�s���k栶�u�����i�߆4��]�ݵϿ��/���h�Z핯�1}�ypd9���zzcgK�ϙBc{��?�+�<�\������+����Y��O''�~n������V��L_�/�k�9�! ���T&���)�̉(E#̪���wɵ�G
�%�"�dc&��[�H�5q.6>��|�7R�H�`���N�~�)̗���^d�I�L�X��]��\�[a3�#|�HY2?��D')��W6͍�]4'�̾��!9L3����֐����2&���Ę��;���R��	ď�c����r�s���.�����#0w("���P������X�07xy�H8�ё)�j�3͵e3��v��4�i��ҙ�0�-��$ǎTvP(�k�f �_ś�4
F &�O%0�4
/�<���0�n��G�~p3c2�_yz���݋�]�#�py��6Ix=���˻��-�6���s?��g#��.�X���ƅ��]��N�kO���\���)D�=��V5�V`v��P�Q1�-]	����+����y��K`E<"�(��צ:96mL˜-�,�"T+�����6�G���&��i�s��׉e)^�	̊7[%�:�
�<K�TVj��Aㅅ靁����:��o��#8���k���>\��i�wt�]~e�{ˤ;�y��ڡi����E}b�T��*�aH�\Ѵ��y0�G'��z�O��[n��
k��?�ɭ���f���C[/�i�C�
�|����_����	oi�=~�7�ICC��	K,��B~iW��o��E>*?nf�&.�t[��.Bp4���a�8F�z6�"r�&��LE�\T^�ĝ��D���~�ʹc|ZS2y��KHiGT��[.Y G�=��^�~�p�"�}�`FC����9L�@��&�������s�\���ǒZ�#w,�D�M�t÷T�c�4��;�<A@�?�Y���Ǚ���8 ׻%����/EЮ��8��Y�A?����h ���D₎֕�D�^�����ܦ�I�`;Z��a���/�嘬\�>L/�������'W�΄V&
�ן��{<~�
.�G�)	L�|00M�<�x�O{Oo����.oA��K����K}��Ꮿ�ol�Wo/�@(��)���|�Z����i��y}svsu+@��Z'�(���&���zӀ����"�^̚���٪�Yܹy���Y�"X�hl�W$AJ@�@�d&l�d�/�G�=5U_.�~*`�I�֐�)A�e^��>;_�M�j��1�B�Q�����S_�Q�Ԡ�����{P��@���"��տ�S���~U�j h���4Vok�M<7�jܻ�i���2�ސ�*���� �V}W��ұ�������.��k;��s�(��
�7��6�ӝ�z�F*�U]�'R���_����H�տ��~s�~vF�L�Em���ˈ��X�HL��E�9&zUe9n�E��6"��e^��Q0HƎvvP�>`i��6����DY^F9	o���.�JPͅ籒������.��Ie(,�t+���C<��9XJ��%{F�_��[��t�c��@�'�Q<�<��ǀ��^�/iF���I��n
�C���*������0����
T�R&O�L�Lzס�)��s{�>�ݐ��A��4F<�8J�����])z��~�X�||o���P���H��c�z���g��.7�ӄ!�;$!�2c�Y%�7K�%Č��6��������݄&�:
qK�Pt��Db��u��"<Ȃ���)Ƃ�_���a/���~��Mt�"�wU����ao������ߙA_-��d�b9�"��;c�]ލ㽃}x �ڝ��g�GCb�\M� (@Y(V�R���,�����!yM��`-5!qa��{��d�E�.x}�`��(M��e҉4F�yC#��^h��P:!,_���Dѻ{���XJbZ��p=���0��ѓ>:�S_?�	����J�����6��3�T�7����淦t����sn�%���u�0��둉\^���߻�<��'�_�wq�}�<G`�Ý��M��]<��O���ɱ���5}�9�+��ko�#�c��]��]�x类GS��>vO����ٿ���׿8����C��8�`�.f呪�B'�Y˞�����������&��t����:�zN��4�]�1J�J4�`JF��Dt�f�{+L���=�q��X1�	FRnCx�Rz��.j�?*C���B1��d��%�V�974� ��~������f��p�`°��.kv{NDX�I�0sEr��|xS]F�A��@_&w�� L`��	�}5p I�.JNĐ�0��hO���r6�И)��"��)Jn-gᇉLL��:��Ǐ3��Kb���>�d�#:��=�S�{�f1E39�
�W��$/��
�O⛳R$��+ǀIL�#<��9�Gi�۟u���P�'��7�#��#�~��g�{���;�M���XX����w</���:�0��`�ڵ� s��p����58�`�0�`
��H�Z�{��&L�}�a^�m�3Bo����o� ܱ6�c�.|��Q���F�z"YpY.-��C5c�����Vr�W�0+ެ�i�hӹa2��5�m�+�E���
�b�+$0K(�1?����we�x��S��ڲ>Q��Ϩ~6`7���Dohk�J��=mS��dw��,0�?e���k�$��=���V�(������k��g�j���u�^��=�/���&&�&�
�շ&�������^��>�iۺ�=�����">�C����TWfҲ�Eɚ��7a�?�
;�˚]˫��(���^2$'0����/Y��jK�h"L�/�a4^,�79-`�т=�6�:��(l���+�Go�Q�$1��3x�*`֤\��D�L�9��^�Ӆf�^ղ���B�O37K.]E��=��gû.%�6�@�1p���D�Έ��h<��|ţ�&*����!�<O;
Ld
Lq�a�%��-�b<*�����Ⱥp��cn��]�]��Cbr>���.��@ ��>3�����OH�0UP����m���0�$���F�%�����obo��O�X4ߍ�1$ۜ�B���rteR2aVz��N��(�Đ]��)b�nW2?6����7��hc�>R��� 2�w��кU�`�|齇��������I s�`���j'����!d��f��e)������@��0�_#�ظN`��d`���m=��˨
5g�m=�fa�c���*�sPIJjR�|��a|�dT
��
h��R�|���f;�=��Gu��AEN-ZQ�#�,,hk]�
 y�	��]�;�M�R�u�|�윾��|K�ۣO;��<�V;8,�
Cm��ɵu�߷�n]�a��}���9=��h��	0O��/NjO�wZ�Q��D9�M�.�o��ᆬ�pM_�}[���7��mz���X����u}�����/ꗻ*���}s��ӭwG��~��2������2��<��^�a�k1M1R���^��"��LA:kr;В���p�;O�qYp���8R`·���H��I��C٥h~w
e3C1dEf��`^\hFƎ�{�,/Q4w��ŧng�|<�X���d��<�O}̜~��|B��A��Y�s>bN:�N5B�5<
�<Cb��Q�yvM�)̾���d3:�������G���η�$��S�)b���`2 &�$��#���o���þ����BW�M���j/9��mL��È�!��2��z��&�6��vW���:Ą?���P��q��\���>�n��-�
̉���]�O\އ��oܸq�;w�7VŽ��3�8��_[Kǣ��e�����0@f���NuR–�9299�So�a�&(6
����K�<n�̽��̫m��Ա��Lv7��lζ1�x�]�n�����K!�f�D�ecDNb��'OÃ0w�>��Պ�����6�0}^�� s��Zk�;�'E`"bG���5�d�� ��
��=4(}]��6�?ij��7�y�����Ϣ+h�	˧�g`~M�}^7�xs�uKǡiWt݇��u��ì�W�|P�Ҿ�/Z����S(��}"���]��#���;������n]_zv	�<O�̳��{���o���۳�-Ԍ�i�0q�P�C�z��樛)�A��Y�0��%D��`$��I��2G��H$51�H��)*i7"0W¥*%�+�{��\�͇\#�(b3:���C�6)��&�\������K�T�P�m8T�b����2�	ڂ�Q!yV=8�H�.����E�k�Ʈ����!≰P�`��t1���H��̕~ �i�
02�5'�G���M�����X���h��0J�1BA�nj�²�d�Ь,��?T��`��2�˥5f�����2�Sp	pN�4}L��A֒�D���>a/�&L��Y8����p����1�Q��XK�>V�=��y��d�,�`v��v�@�]��8��1j`�?ĥ��Ν;o����w�#j�u���ޝ�?~����K���K��W��KKP]>88H��[bCUߦ�ɤ�%ɨ���L`�xZY%g
1���Of��_�C�As5�^�c!�./�
{5��12��#uy�I��#xx��U�0e������Qz�̵˟|s}�vV�SF�:~a�>�§��}>7�No���.d4!)��X##g�bΣ"���H��Eۅ���������r7`t���5 :�����fo���.~U����8�x���^��ݙ��E��g��}����˹��л��[(��)�e^�&`yIׇ��"���~������³��ܜHRs�����*s��m��mՑZ�:!1_Y%�.�}��T�&��х��Ӭ���%S���f�R"�* �t��g<�[�����T
��ǒ�!J��U`J�6
`��a����A�R��F1�5ED���
&>K�1��u
b��"��H�$`��ci�OS�
�p�K�W���c��SryYz�X!r�ϐ|@�ɻ_ނ��A�Ψ��-�����u&�����G��È�V@yL�"&;�AK^NY,ܘo�%"�>�TKV��1�V�[q1���L���W����q(D킗����'����*��J?=~�bbw���]��E!M�u0sF����L����BGxr���VրK&/�K�Ν���{L�(�Fs3@��eO���������KK(����@��;WL]c!;O~��G+��䵑�Y`�-�$��ß`ִvvL
Z�9��1��՞��:��ȪXMs3��s۴Nؘ�J:��S4B����एt�F�!
�y�=*v��e��m8�o�ⱦfʹx.��Ұ�56kkD�[�Zۻ�OZ��>��2o�q�?_��8_���0�ϱ����a���A��}�2��=�C�����Y�m�:����F��h��0�����
�G��.n��M�׸����
i��.ξ�[9w.��Etq1u�p��͆+c}]w�"z�~D�����4yb-;�b�/i��
�y�fN�^�冱o�!y�4��=�\�C����U-N��9�=�\�U�[�q��װ��!Q�@s^�&���an;�jKE{�G��Ĥte�CHx����Tm7z�KS�K34N`ޖQ�t��Ӧ�%�7����4��~T����̦0?�������L/VV���'y��3k;�)ό���'��BG$�v�~QŒy�DI
6	O�1ٵ��fii��'�7!��t��?���!�
�KEN���\%Creۓ�x�*9�>Ҵ>�H�t�A4hv��;ΣD����#Ӝ�ex%�呂I;!$��XEw��k|�ߍceng��}���|��`�����n�1��_��K�'��ߎo��dhN?ssu~��Z�d^t*����Hd�Z���NfͩcK�������@���v�'��S.������ �~=?�ϔ���#V#&�� �r�~s��1
�U�4���gte��H�|����Q�N��Ҝ_鳶t4[�k�,E-�J�Y(�Q�*�L�Z�Ю�U��{P�F�!��*������K0��kŚk;�x�m�Ғ|[e��b�+�I�Z�)�����+���xlg^�ŠX<�H�P�ּk�Amr;�d��*��bS����pE��ӝu���ò�b\Le�u��%,� Wc��끙O�#?d��0Ő3T�H^ZQ�"Šr2�C�J��l!��i�0U4�B��a�2�D���1~��0ԆGV�K�=�H�:PU��ri�d��a$��Eٱ�t&�I��
(`�T��$0��`JS\����qA���d�D�
��rX������&�|�u6b��a�$��ں�믬�-d�E��	b���|���af��|���RPw)S��%&�&_��S����>�c���0���6���\8Bb��o���,���L�����P*]���ٰw��l������e2$���+*
�y�/�~twwt��_�b��`h�%�#	|��l��q����s.�$R\ޒӝ�D|�Df�	33�7��v���C�nss�P�P��-o�G�#���њ�W�C0O�-�Ǝ�'��4�{�`tȬbT���4�Y��rJ�q]ֵT�B��M�K���I�YZ�&w� H@�ِd�hU�
"1}�fMMm���in��UKPk�4���m��Z��b0�c��#?��n
3�f|#�d�"1<���G�D�V­L��8W��G��'�KBbB8�!��*�Btd���^A�"'i�‰K�.A�WӼ��K�gs�K��W{�c��=$�q8��.&E8�'zxQ8}���җ�Lғ�0���&�`?gIq�OR�j�C �yI`r����e�kڔ&`�-��Qq�ZU�=�pkl�n�/#�1��ai�ߓrpL2>G񲝼dqk���7&jn�C��;��r&Pu(�1`�zDS�R%?C`��9�"��aF�S�Q�Pϟ���	0O�!��Y�q)`� gC&g�1s!tg̡������T��@�$��gǥ��;�5��]nR|ey-0��Z�X�
�����4����	 i>9��;�p#�]�CLc��|a'��&ĻD���!A2`�<��y����`��V�3B���̙����qӜ_mKD�׌<�4=�"|�: {�Z�;7Δn<�K4��Sw���p?>b��zÎ�HEmEb�6�	�+?3�d�����켆y"J�y[�P�Ŕ�����){�	Lgy-�_�]������`V>��(��&j[G9���I��3u�*O��r�F
��G��f<�Vh��*c�h����Y�������EEP.���Z�Ki6�#}�a)Ý�ky��^%;�8)�ʁ��;����!�Qjr�&���sQg�ޟH�?}uih��_���+��n�M;�����1�{i��UX�U�緷����{��2^S��AJ>jM\�ӧ} feN���4na� \}}��$/�ѬLBSBr��;��%.W�o	���^+�
��qA{�L!�CV�긑�D3��&����,e�Ǯ�I�mD1먆~FL�~�����t4u/��y 
��"�}��+Y^�O����D!y���ID� �/R&W��rQC���.FS>�>,e5�r�݁���󈇹rD}c�.�����S�r�o�G��S�q
kH?���z���qı��0*W.��B^���#&�>5�R�7g6w���r甭�uu����{�	LN�@�
/��)dQ��⸚�r>��k����xL��_U�*�QV��x=L��fɻ_���m���L_~���
D�߹p�В�]�Q��:QB�s��C��Ad~2��B,���3�+
��4�9�;ji�l�����V��UV��R$���H�V����Aѧ���Et�^k�V���;_�4���ҁN#2��%1(���v���Y�*�J���7�a"N���d�Pv�AL�3� ���BI�c�$���F�p�(k".�$�^T��: �+�v>�FF�GM��X�F
W�!���j��U1���5�@_<�6������&`xzaazzl��N�	7�]8A��?��cw�nO�`i`��CuΠe�0u
�������P=���h<k�d����s�J.R�4	ɝ^����	`�R���2ಝnb�U�w)���l���0I=�T�I8�C؅�\:��)�D���b8���rS�fCw̏�)=�qY�2gM�(&$� P?�v�_NF����a怉�O���:����;t0ILp����BW�ct��\�G>�̚;:s&���k��l�l#&IyL�Ϧ�3�F��N�ܻKc�\��~o̥�.���@L�2�f�V��|�_3�5'�M������Jr��G�Dl����A̬��R�?0�%�F�r�K�C�QTc1�U	0��pE�ƀ�0=K!&N��'0S��_���_q�ۿ��Ͽ�~����v��K. u�~$T���⣈�7�=�9w{� ��WV:ۮM"��d&^T������֦����_
�,�C��R�rtc��^�O\���I&�[:��[b�+���ơ�jh,%�Qu˱��h�Ÿ��27����(`�A��-��l�|+so��g+0m^�59���t�c��{%�m���`[�T��l�-dEc^y�M6	.i��-,�=�l���41U���ǐ	b�N�V�[��
��&���0ai�J<2ĵ~]]�(n�@�����a�H8�B�ki�CW�c>�(A)ά��
����׳�đ�c�%��͊��1I�؂�i+�OH�򐘘�c�Z���r�XlĊ\��wɤ���n"�t��*�	]w/��O���D�]�����0�0T1�)*���~�����zP9
clN��l����(��&��\�x:�FYKT��&cr�6�_�Qf�"�����GR�93�f2P��"0ۏ�F
0��dP���(D:!�bƗciYu�T.�7*bhR�-Mw�X+�*�Ѹ�\����R`�k��Hf|�ld�N`*�)�!.1 ���'%���h��8t���X0���=�(�0)�>��g�z�@fU�p���	0��kg�=��011�g��H$x	b���=�"���[�r�
�&uQ�\1��}�+�2�J�r{]eQG���$��?�&2��i0�/��}��ڃ7�6��,gK�UU)��N�ZQ����%�*�}�|��~/,8\?S�S>�;�"�h���m\?��{�o�ÌY8�DO��~r-vVq}���r�hxƶ��ݽ�Zh��� Rkj-��u�مz"_i�[.�I����մ���6�5��ã��݌�og#�>8���K;ru!�/E��Jd������x���1��t�}��I%0/n�9�n��\L%�N3T0UE�-��^L�j%�Y��80	��4rT���I�!���$yiVZk��!,%�����ΎP/��0}	�oC�຺F��2���U\4x�Ή;P(1�IUL�T�se$G��i��k��W$��1Q=K��IoxM�0�c�g�Q9WE�1
"���*��/�s����i(bf�T�\�a�F�r�N^��Ր�A3�N�4��(�.�%k^���9�|-��1��+	2-3�1�СD`�3�e��bN���'�f�]#p2a���H4�:ȵ�ȯ���_�ZZ�G���
Q��T�R��-���!�;�
��@^'�D���D/X)�ď��$�w޻��e���$�}�����Rkyk��'�$�LA&���s�v�1j;&�[e֨����}0�0�E���쬃g)��vK��Y��=z�T�Εz/��}�B6��f��aZ��b񐘬���Y�b>;�i�D�T��n	%��V�m���ы5���h�Z�#f�|�uu'Ɇ:�P���|�[:�5���k	ni�(�}H�g���K4��M�w����M.�i�zi�ً��n���ۻ�Nj����.8Usۗ.--usx~ֹT�T�s1�r�ruPc�9'�$^L��R]�J
��#|w�Ӹܶ���95:�V���R��^��7%�����(��]>&Xc�r(
^�x(=�w4�,mE&R�&�dy����l�
���!�ލ�C&0Q�-E�1l/EeǬ���G<LLz��L:��f#m�2%&W�e�$"�S�R`��R�x���X.M�U&s�Y����9�����+�Nv_���R�����{���4�JEL	���bE3���Q�oK4Έ<�7�Q�Cx�tc��cԳ)����'S�����Az���0�3�/��WG����G��:BrCI<OI.S"s�DC��s�0�x���4p):2�!&�Y"�g�oܹ������Ȉ��5�?x�lZ�W�XB��L\��ͤev����@g����t��'��p�F75G�d`���*����f�UJ�y-,��r2A�b���
�bcM�a`�p�5�M5�s�Ó7]%'0�����̋���	L���������x>7���4k�֖��v��[�Y�o���o��l��m�oX���֒ASF+�X���Z�D{Pll��MP�0ѩ����ڷeXHݸ�D��Z6n�
�+ɝ��f~�������޽��{�Ƚ��˗{�][O'��{}++h�A`>�+Cat�@���=	�X����"1��%�V�_�Ju%2sE��y�s�,f�E��Ô��V:���(�6�D!� S�^���4P)�=p���qcÒqcҫ���&J���#0i)��#�i����Q`������ृ��J`g2���zE�tb�G&N��lD~�0Jo�!R�����/�a�D\Lya��e�6���I����.9�uU�Qg����w�oMf�q�3���$@!1����4+������fɲ�la�;�U��D!P��@��+^Z�#�lsu�\]�u�n��ݿ��t�u�c7}|���$����dQwF��6L�Y��ٚ��ј�4�V�<q*�Q׮Io��6Z�[��~�ՠ(Ue�G�1��6H�' XkC�	ո@���dO�����
�����lh��96/����!�K�G�(�Q���+�F8WX�v�3��6���f�擿���W����w
�x��W�V�v
+U^����1h�K��L1�y�K�̸|-���D�ڌ�Oӡm�B��
k��Ch1
	3����;8�Q�:k��Vpk[׆��.�Ts�e��
�U%���9�,!�Q4.F�PSx�,�-�!���%�.��ef�|
'���������^ud-mR0�BG1�k�i��e�V��a�a��9����m�1F�����,�R��
Vr�\�#����<����5�cT`�ᓡy��F����!T�{F46�J}S�(���Ğ�D��ڸ�a0L���3��
����j�}X�詝�7��*4�Y�I3R����Lc����;c�r�؇SOLj�čZ%W��򯎧��3�P)6�H4,��Z����J�,#"��
v��-+}<AU�]I�0$�{L	����q̝��D$�ĕ��@}}T�ֶTT{�c��/,,��y�&��3bDΚ�6K~K>�`�L�+tR��F-�����Ve~BG�C�Nր�Q�I:=WT@s}��9�i\�2�FLH�gnj&���	ȸ�&{:�Qi.
xUL�+b��f3f#+s��n��m6+�Q��0)0J3���mfs����Qh�a�+��O�O�_��~�d1�_A�������a�[&�)N&��
�gQ���ݷ�`{�o޿]��&�;Ž�5�c�GX�oپ�;��{Rɮ���k��R���}�;�pڇry��LP4>�5~k�uW�޽���W���m��0��+��EnC�R����j���#(N*���Q���Fɝ�x��2��\+ʡ��0Y7c��鰖yKHP��H`z=%�9�qc�*�b����r�y��z}��q2��3�3/�	���7���/r��
�p��`�1�~Va����!�9��@Y���Q���g�'p��))`��Fo3^s�8�3��|�������Yavя�w��&���P;2ְ�a�>F�;��Ν����;�Mn%���5�#W�����A-��t
�A�,.�D֌)o�eT�=T��j#I�Zٳ�{��v"j��T`��V�y��;�q�(�.5Rʖ!�J�Q���|�|:���p��N���UQA4�vD��Ҹ�vs�!9�����v$��.M#0�
�Z;�^��*gd׈x{͇���n�u���CBص&�9��5`f�r����}"�D���_��A��ޮ��.�`��CS�h+��lp�Uw�,��֋����LT��� ���/.tUkm��P�7��@�J������ ���B̰x�2m):x`&O Q<Vm��!��_���/|sϻ����<d�^a�vu��-���,x���D��^L|g���:�08�K&C����^W`�r��\�}�PW���A�3���G'���9P�ܺ��@�]��V3
̪�r�X�v�m�5�
�s�JO���;04]u���JilR����L�,-���qc{ٽ讔�u��!��h1<͞�BJ�_��p���0��(���7�e�򋆅'��r=_�Us:��8�pP!0�A�oQ������0�\�!*`���(S�_2�*m�9��f��C���F���^���mI����S��x�2���YL􃏢y����v4g�P?GO�1{"�PG�%1iN�T��P�1Ɠ��gV�
�
L-�#��9L�hI��xu� W\k��Z�@}�t[�+��˘�$�K�R6��gS�$�y�3.���> �`ҿD�Q_���Oi�ĻW:؝@"[�kr�>=L�W�
���FZ�ӷ4�$���`�\B�;��Ua7y��siݍ�eNey�ͬ�ۇ>LHK������f
�Y80(_�q7k��1�Ywq;�iL���Cu[���!�M�<&h���be*��3��M�\f�mw�ǔ���˼�uN��{U`"�I�
��:{Z����`����n�<�eC�&#r\��ud$=L�̥�-���0�Z��m���۷��K��3���&L]	�5:��;�N���?����T�������
L?:�dsTb�Lg6��(I��kcզ�MuG��7��nW\`�y�ït`�v��R_��;��V���Ų�&מ�J�q�VZƍ���m�m���D�3�\/���fq_�ˉH~X4�^&$8�i�����O	��fA[9�Ͽ�gϗ�M>e(TLJ��P�%�{��\��܋�	}y�a/�m@�=k��Ӌ���q3: t]�,�r�#�#![��3�WK{�󆖔�sN'd<�(=�d��E�円FW#��
�,C8�e��x�Y86����L�˃3�两=M���� �"L��
a�Ke4	@��39)+d��6C��^Wb:X�U�f�n�	�z�}�  �0<.I:ILb|]�����s��>�1L]�\�F'�;ݐ�zaȰ�:�P�X-�t7'�Xm��+H��B��jN����FL�¶-�0+Ty�v������e7qZ��T���.ĤYIMX�e�]9��Ζ5�4ZӺjT�T����K���y��
��9:����7܌2��&&��Ah$[�&�z�(n���0�,�=��l�p��L�d���As����p��<�n�:U���^M`��E*�7�;C��p2�m��HL�o��	��ƁdžH�_�GrE����B���-˶�+0i?QL~ӽW?M��j��������Tw#���l��YZ[�V?6�zy�ɜ������6�Ӣ�Ǣ��$3�.
!5�0Q|w`����E���V#6W�"���EnhF�tݐ�b%�ijZ�\a)t�鍻��0���\�"՝�& 	�G�G�K'C�`0�1s:��0ݻ+�0|j/��}��E(���
O��D�*1���s��r�
L�YƔ��Y��-%6S8gxZ����&h*��)��s'�.��g;P{�yCo��ϒe�\��a�k&kْ�#(EM��w�e�*�I'&��H�/�[Wa21�.a�Y)�3o�k�KT��0���������8�X3��`d���y��&��z�Ĉ�W��8�ꉫ��x�`A-P��~x���E�5�h��
��K��1ʥ/L�DQ�[�Aq0;��� i�'�Z�L���dug�p��Lu�,c�-)��j�<���+K���1\���3~g|�E���VӢˈ*�.�_�α�3�}}�1,b�m/��ܷ���'��F#@Y������݋]��8��ř�0:)�D!�B=7�2%�VN��~4@⢣��q�p��\�m�
m�d�6��.��.�z㮱�P�d�
�����T&�"$���<Xh��>#x�+ou��ݔ�#G��M�*�+W޾�v�E`��t��JF�8�z��>�@�Dn"�;��wC�sl:���u���u=x���Q�lt�v��jl���J����2�Sn)��G�/��̘=��$,�LZ�L"o�9����aƤǏ�$-)*�ͮd�9���?R^}�L�󖗱9�
`��)�gX~�3���r
�k�$�4`>'���E��O1$��X�)W�>G{�Q�#�J{�g��Ԁ����5,|�����q}̞����.��{���Dž�xY��k�ě��isB���<1�T�zo�>�W�c�nՁ2����!NBK�:��pK�#{��O�
���L���ɹ�0����>Ϙ��[���I���g�pw�nJ�S���A���_t�c�7���9H��ҍ�Y�~�sO9#X�q���%j�w,��V�
%:�<��TK��]T\W?��\@�<�l���c՜q�Z:Zo�(`j�>%�������7_}�͌�Y����ܢ����R�MIi�mZ%׏�Ì���<�Q6FZK<&��0��.r�%�>e%���>��ʩ�'
O݁Jy�*03����������J�{O�@�%Br���@[�ۊf�����#�u�T��_�0Q��w�q�#�o⪉��qW�u��S�e�x�"�.W'�x��kd���&�=�ɑ���Y4&�����Ĭ �i`j��G�|8,
E���_�{�އ�P3<��w���C����h����-tsM��K+��jy�&G)�if�Kf<2�w����"��R\��?Q�5�R��ƚm��ۭ���a�fbL"b:3��|6���!��e��S~��`_y���_�ʹ��{��s��C��u��?��=�cn�Υ�M�F��bu,��Ԁ	K����th�&�94kQ$�ڌ�A�y��(�̣,��"Tph'cO�曇�����Tz�1�YÜ�`�>���~��'l�`�O��j\WJ?+��,bQO�r�Ç�`~��|n@�2ņS���q�`lW�|%юM���.��>��Z3�uFWN�0�z�w�&-;4��x����%�y���0#�{�x�����T4������MN�]�2��LЍbH�����xX�-�j�����Mмͅ|��'�j����
=%���T��6̈��ׁ��eg��������3SMƏ�r�V�/�¹�_�r�o��G���K����x	�÷x���	0ųQ�gA̵��2Ǟ�E��f���<LKyz�E�0%E�2#bR����I+�klqjjyj�������m��m��������4u<f��g)/�]>�8p �55k��g�fAҬ�;����Q�V�<0���u&�};v�T�tM]��Ɔ�����:����Ǎ���o���S�7�Cӣ���G�Z�W���|#
�I��3N���Lδ`�L��|G!��s�C=+����%(WY)v��L>���w 3�xmw�'c-^��uu�4�\Բ�"�-*/�˘@��T�sr�R����1�3�j�� �ڗJ���=��Ef6e6
��-��ZDf?��;��Lt涐����
�?)jE�+��?z���[W{���_\����o��h�z��~�������gK�E�#3���Az���^��ﳇi%z
śdt�K6�Յ�KYN>��W) ZJ�Z�Wh��o
�k��L��D�����\�+N�e��_{|�%qn��a4B��X9h���[�R�8�n>�u�
ͪ�ŕx�<�'Ѱ1�X��N�A�_�j�4tb�\�!��P��R���9y&�CņUg����RM�0��m�j���Ќ!yڿ�x�����0��� "!yg�;�bV��珄�M���ȈSgEcA��b��#�����t�h27�#�#�-���RY��8��IvT{JKK=5��T���}>\ZB�/|�?J��P���Sͱ��B�O`EE!��������ߺt��_�t�ҥ���+����Ko���KW�x����4�9�ٳU"(�en��́i24`�����������\�_=��&��V��o~첡K1�Z"b���^wW��i��@���wl��>GM]�U�8�3�o�ZMMHѣ�X��,�&r��X9����_D[����zE�;�u�G.��0��VB0�,(�͵h�foq����Jbi��W�]�m���gw��,�������%z���ܮ�ݞ���Y, 2�-B�>/�=o�:�W�ϰs��hB8^dܼ��d��ҿeK��)��A%̚��o����X}ͳ#���B�wt����C���Rm���w���H 0;:�����!��Á	asC��2�'�a2yy��Wx8��K��T�_x��J8·bEv��l*03r�����ä&��n��Bw���$G�09L^�-{VS|Lu�i7�2'm���T`�;*1܀=ˢ^&�;��mJ)��o��N:jW�U@���b�P�ūӝ����n��G�=����?��S��
B��ِg,�����5��E��?����v����l�7+��1�A�z@�N.&�I"S���2�`>�a>$�<��T�B�H�1���{����*0�.��n�aK$��9L��5�!
̄1>���x�؇���o͎�%�%��OhI&�;�uY�Fۣ�(��h� ��!/?�����eq�z���6c�����m�֙4��Y�-a�&�����t�͆��UT��f0��������s��:�i������#����*�(}�V��]S'���L����ȑ��ہ�LTb�J�f���6*k2Jf�u��I�q�&�_\���\O"�"��O/q�āV&=��֗�o�Fo,Og� �4c�z���	_�|�X�M�-���Zqc��4;��8I�>��h��~�dE;�{
�;]=-��[�4��ۋt�����f#/i:g�*�<���؝
�}c�f�yk�,J&{���­mXBS݁�P����*-�L�N��c1f� ��W`�cs@��g?��~��p����Xr���Z(/���L��q���a�VY�	(b�dTZf7aj�4_DB�L�6�g¸3�-��2!�!%�O:j��m�۪���p@�t�'��h�� �x"4�Ofen$������	@�����]�O����������bN�0�
p:��ܳ�:��P���<��Fp�����ģ]���x�+��%�G�|x�oy𐉢��1^�s^���/��t��(��"o��*4��4=�ש�9������"�~48|�]�0;2{=�|�~uz[S�=�"j+6�.��ut �٣�~���	�f��@'}����r�ȣ�;�l�-!n�M�X(_����&�*�۵�,��f.���l���	we�6�{���`��H�PR��{��J:��Ʋ{�W����=����Onk��d&��㶚�z�"(����U�Yo�&�`���M8*�4y*���=L$��h��3��,�>}b��e���Ű�h��������Ø��Q��m�^��7��a�����S��%43��F9%����޳3Q�q�j�;���C�'�4�Ě���/��5!�[�ɚس
8%$93��Z�4���W8�(1G;t���p�]���5�`�!0��:?`��˦��6�7�i�v	�+0�+sܲ����qS�aũ�RBQ�O@��BtY̌q�<�e��5
J��z��<�ȡUp��x��P�iI-���k�1En�A�C���b� q)FzVU�mI�&�$.�>�V/b�Z$N*[�{�)m^:$S*&�$e ��3���]#c��Ѐ�p�™�.f�0�l�"V6�� �o�<�X���9�:��vM_wK��77F^�����a?��-X�5M�.�x�0����!S��n�P���8��g;��U`�r�Y}�~���2�I3]��K��ڂS���lk��>fkdC4Zb��O�δ�dW��D�՞>�g�R}�n���j@?~( ȔU��{�0��U5n��L��ؕ�O+ČH+�퓁�&0�Z&$/x��X)�̏�Ì��v�2S/T�t
p=�<��MƩt4��(W�𹆃��
|�W�����ɊI��Dl#_w�Lp��j.�tg�嚫Z��o-�Q�s��Z�''E>�lr�sWG���I��P�l.��
��&����ۺ�i~�OD[+-��(T����[r���Y�$fbͮ3����["�@k�����;�Q���6Q-2ݲ��b\fX�I�č3؆�)t!�Y���)�z��ɃmUu�z�
^��!$�:pC�h�g���Ay$�@��+�U<`�[���Rb���]�
X{9�`�=)�K�p"�āv{�G��I��z�2���
���d�gY<#j��R����=K�`����8wy��͔�6�P�P>�.��+���D�`*OQ*�.Yܥo�m���^�Z�5�U�播��
Oл�x��yb�����D:�9�^/�r���6�2?�&o���ݒh�l\��Q�ʶ�4�J��LY��d��Kf&%�0��#󡲴��� 9̞�`�i��Y�����̎�*�[�o�03��b�i�QԿ����p������-�B��s����=%���\a����y���?K���X�����3���w���A�ހYJ`�5R̐��p���&�zD�NL2p��XFہ��h�"�����u���t��"P�Z2���ٛ֗Xi��45"��Q3H��Ƭ��s��S��n���y�T��d`��f�X���J�/�;�g���k��m�̉e-R��}\S���\s�R��ȮąӨ�P�KvN��迌mNK>.�����f_�7������($3}���lwyZ�H�h�޸k�����Y��n���$3�2K�d*Y���ܵ����うn
��f�6�0_�b��f��GU�2{�b-�l\�*yVCc�p܂�>}N��1�as!����TӦ��}>�--���ӫ�-;��C�Dhqb��!�\�30��WUjՏ��k�TJ7��ͼ�����8M[̮|2��wJL��&u7`ᵍ2&/ē��ZI�<��b�X�����x�{G]=�;�r;K�x�����*�|lc
�����Q�
/����J�Lܱ�>��ʽ�_����V���]�݉��m��ޟ[��ux5+�y�e{̉���i��WN���b�rb	�\�L:�k��K�b���_�>|}ܕ8]ZJ�'���vD���rG6�'z=1n��5�����_Kh���,��B���a�G�|�l���` S��
`�7�]f�]��5`ƻ����[v��s���K܊�F{�K��^K$��_hJ�]��
}��'�i���Z��:��Evoş���&���;t�t���Cmι��mE�z�V���_XYU@1az�1E��&R�:�KS'�4�-9E`�A9��?�0l�k)I:�d�ɋ�����*c[.�t�T��_�5��:��W:�g=&��M/)���C/%�w�wVm??�ey��ءY����;��ʻ�]�U��Z-�{ot����Y���O�>�w���P_=�ީ�o�W�}�¦}ʖ�r*������H�^���H���K�zcu��R�r`uҿ��|n�M�CʋA�Ő�?�|��b�p����Rh~	{���W[�!OII���[��-׶��˷0��(rWI��,�AL)���Ჵ�{�	J���j��ڂ�[�<8c��[D����u*�ڤ��f��$ǫ]&4�Z���Pj}$�I&��BsY��ͥ����^���]�0�Ι��WW�!�ܲ0q���'����30��sp��b��[�)(�)���Ҳ}6���;�<���U���x�"�®?����g�M-ż�
�Ҫ1����aR��(��("lGf����<r�ԗ�O^�Zy鹋�37N�._<��<��ũ�ysߞZ��;p�o�׎,���q�rʯ�����˱�O�<�7�>prtjtU����7^;pc��W���\�����{S�>�܍���]>ycyujn��������\�27>���S�'/+7糾�ڮ�c�O>9z�څ�_~g����ŋ���?�<z�����'^=����9u��׎����<v-c������|4�x����-�)S���pW] i�;��u`��J�@�#�E$�#`>Tv����L}\�O�7���m�|�s�Ř���,����}MD�kki.�O�r�D���2W�x `&����/�v[ii>�=�Ƀ	������(��>:��>D�C��b�{�0m9�w{�'���+�I���c�\�.��{L�,��\ST�
9 ^�i���u
�8_o�7�:�sW`����>n�:�Ҋ
L*����M>j��w�y�Z=���/_;���WR�:�\z�O������wf���w_\]�ҳ7��f��c߼��'c_����K�|��8Z���Kx������#�|��K��ʱ꯯�x���^��A����g��_���?�����;�o���2vjz�������+�^����>����K'�?�õ��\�M�rq�/��y�z�_R�߮�3�����򁩩�.�v$�H`��.��prz�����x�7�����=��2e�
�*�>�eB;��r�.L"�0����?5�^q�௹L�	A!)l��l�l4-ꆲdbcLҒ��+ܘH�$$���₢�3ut����ӝ��R�P�v��~ϓ�f!���Ξ��ޛ��*���9�d��f&�0ں�ɱ.���ۙ��T#C��d
S�J�`<$& �M�?5�`
�'���N�Q�:̠^��e�=?fc^Y��c�*�KS�'�vJ��Ο9s�t�o6�u�Ta��:5����:�{�?�Jxz����w?���K/��l�}��s����� <���q��>},<���?s>��ǫB�ڹ��1���_~mP1曜K�,?��,�,��i��sy�Vh�i2p�w��-K�詈n���p�72:�z��D�T�}��j��dt��#��7�
G�w���zh�~G��V���y*9uwth�a�|��|Rs{~|���[��Ǯ��o>���?>�����t'��W�n��zND��لsn�8��\~�:��Ǯޞ�5;8*�|�q����g��Ɠ�Pd9��������"[bvwwX���G�"3O%��m��苙[r
�|������Gd�������ed
9:�ê���r��{��P�+�����L�*i&]�l��M��&S�9�HT!�G���t%��:k���Ԕ�4�(]^gtR//*�-+0��o6�0�Ɂ麟ܿl<Ҽ�oW��'��gAx����#PQ��/�|&Y}�ޘd�3ɪ�D2��e�
���S���Շ��'��_H�{t��	���/$	����}2�Y�6��UI���R �+Onh�ˍey�y��WnH
��zz��q����J����K����;C	vj�Aϸ�[�@߈>"ƻ�����b�gf`i`f�g%�[Y	����n/�Zbowo�(�H�{�q{�L���U��@ų��l�f5~W2`���Ќ��t�W�F��F�?�}�l+�}w�	`v9t�N���c�)`�V�"GE2��f̣t�6�`�-�I��ȉL�|S��E�����&�w&�}U�
��L�m�xSsO�
F�L������r�>��mg1�RL�׏�>�y�(������?�.��p���b"`�I.�����{��O~�V8��dY�$�R�0ӆAx��;��1y	ȥnxҘQ��!�p���L�j�����W(�d%�#^H�F�寧��f6a�1�n�U���z��q����oԃ]��J��T�/ʜ�|t2���Ӱ�Jøzq��5{*
D*�C�/��>�H����a46�6�m@w�$�`�|_��U!Ea��H�JT>!mΒ_
vn<C��䈟�)��
�������m$�w��B��j,o���6�-�V;��3`v�����԰�tY�TrrCa:r�ѱvA�t�tFu09�݊�E�Igs]�yߞ�*C�}9اBs��F	O�?���,;��tDL�N�).'`b#���K�!��N_�h��w%�pԟ
?�<ʁȧ���c���^��gI�_y����^�
�%L�,�&`��o+�Y�]ܩT�#��$^�[�Ow2�Q$f9G�0S�L*�N��DZ�g��|���镾�B4���+�+Q~�PR,�a/b�����&����Ḽ���P2L.�p��|S��-]Y�+�����ñ	��93C�]Zy뉉3>1_�S���X/��~l=��y��ugb&�w�����!�c|�q���&��a���L?�I�;��)X����~�v��N"��,����b��1���i����C|8$v��TAy��WMZS�\LXo$�'7;�X9i��4�ʛk-��R��h	.�F��={/���O���Nl��1`�w�Bq��̂Z�Ǖrɺp��ǒ�/%/%�5�Yu n��K��wx��=:��i��φ��G�}t�tB��̲��w+{�
�o�Ʊ��81]����+��\!��f��W	�w;���za|�i·�[�+��d#�VS�����d@h�(�K��զCy�M��{�f��`������W�56T�7|�&!�UVD�9���˅-[4�^�g�ޥx�:��)�Ɂ�`���=Z=f��A�)���Ԙ��h��	/$���Ӊ���^�&�����B�K
_��$J���:(Q)߻Y�z/�m'2�P�{)��C���m/1���D{7M�vd�ll�@y3�`�6Fo�L��$k*p�0��4��h0��)L/��H��<�N�3bF�:iL�h��tOno���X�w��\����v���mwڂ�}EFc�΁�,9�����H˧�b��C�i<��I��B��D�������p/"�-�`�pv�:�>5:bV��x6lM)L�,�e��*LA�n�-�r���4}��ۓ�������L�����Ņg�>����$ʊ��ƞ>�7�·��pRx�(gn�֓����<���g��_���;�4=�ⵉ�?y��;�����s�-��3~�h�V�zU!Y^d���	b.$�/"�����Zc)��0���e1X�=+!쌤��ށj>�; Su�
G(E��u�LںI�������P��Q`9����Z���q�{f��]c���*xǺ���as�����b�ۇ�?��b�I�y�[v��9Nsi��%bF�y�>k�\���r��һ�0�'�l��G��.q��i�U�]��-��fs��L�ɽer���*AY��GL8���B�T8T'`B,Y#���'�n�Δʗ�RF���D@Z��ǫ�*V�N��ŋ��M+LD!�1a�w��&��g�����|����=7�_NH��^���c�����OV����տ�'%�w/$Mﭿ���}��/G�f�n���_O\;p����տ,��?���ѳ^�_[}>?�h��o��t���2��Ҹ��B�"1�@���
��`�d�4�h��h~�\Z�R���Je[���Ⴆ�Pp:���Wz��!ϴ3�PT6���ȏSC9�]��\~�<q�pU���E��FG~�
6�-��+���/3���lk`V���HS
ǽ9�,�L���C�[?����A�f�LDw|��X�;�y�9j��v�X^o�QT��E��G��6��n*b7�d��>�ź�`���5li��/9on7j���`����j�)0�%g1L�����jt�A�����ި��=K���ZFMs��W4��r���
�Qg$��2y���8
�7�0Ō��VE83`2�rO�t=z�v��Ӥ���O��/�=_�?��~���;��c9��c����W��gsQ�˹���WN^����{ѹ�����4)�z�곇׮�M<||w���Ƨ�>�x���h�#N�%���H��
Sl2v�%�Ɉ9=�;���I��ЖJ�GuJ����/
X����D(��
��.�t���Rc>�G k^�;'2�dg��))���WQ[���aG�X�I����G6)U{s,���32=�'{i�!�ѳC���T'7t�J�`�N�\��3bӑŒ-��6��au8��d����ћ��uE�Ɔ��,j�,����8���z��y�����'�Z�h�=�սS�Y��R�ˊ�����U�խ�%E����ɪ���!E�b�2e�GZ���Y\��+��{��=���L�fc��P�c�B{� �d:A���P��f(_H/V
5z!_!�$G~�* �ɩ���~X#�(��'j�i:��6�:s�2J��8_�x�bt��x����J̚`�LiLi�c30�R��|��B)�7[�4����KM�@�D�z��D21ܻ�;΃fd�3Xo�z�^83��V��ՈVV�u�ԁfWKrk��<��^����}��#��/�涑��sya��Tv��ѣC�.�e� �����yI�Ah�С�$��ۣ�n�����n�ɑ�O�(.R�j��u��h}��>�L/C��>�x��������� �Y��0��;f�:�5�E����޽ؓ��I����!3��}��z5��=DL1�&3���x���2&�%o^a2ݻYe�gb�V�J}�TG�1
"�nѶ�4R�h3�FztVT)}2���b�OT.F"�0�Gpx��P9RW�@{�#
��pʯ��x	Q�MG�RE�y`DLv��d��>M9��B���!1c�@�R�*�m:��Ũ�
�x�1<ք�2�-��j��,δx�7Ԓ�]G�G*���?�ez��N�
������G����0��;�ᇿ�b���ۙލ�x��,����X6;��h����N����$o�~l�N����3�8@橺4t5EŴq\T �~��RL{"��*��U9I���)�'f
Z�Vkdd���H޿�6�d�jOsǞB�1;Bh�2W�nw\v�l�|0�a�~��X�o�B�k�<U��0%�z�\2��$�ŗ�Y:-��F}��]���WKB���A&b��j���^�j�d&^�|�s�	���,ѓ�嫻����72�Z��]��Q�R��
|�D���
�r�2%��`MC�0e���v��?y�tl�>Z���o6�.B��d���&^"�W�e.��u*�#L�"
�$pM�}� ,�� �/7����KM1��cv�C�u�e	Mb=a�'�%�Y~|�&,5Ȳ�3p�st딳���%Ȩ��0���O�3wm{��G?����+{���'�f��j��f���~����~���v[{�������寣l�n6֎����.��QBW.c���9
��y�PA~U����]?$��1�R�g!���@�)��À�Fs��Vo�#2��H���A���\�Pv9��6m$/+�i�v{��m�5Z̭͹ư��L�3[��;�fc]�SX�p.��.�
�玟^dȈ�!_�����곋���/+�����
�e���+���)��%���ߴ�I�D0�"���Qh�_��0�L�6*HD�*F��R}ڱ�T{�ju�h�*r�(p���W�:��K9'2В��^����Qs__Q�ig��(�1Ǜ��Ph�'�iQ�����چ|FSL�=M=����Z\��x<�%KSK�I��#b34N ����M`4�z��S��5��X &���w@��ܲ�p7d�8wHb$�[���/�A��V��X829�Zt�S��8���J�`;��V'�i���ef��w�c�a�0{z�b�L>J��<��Х��xc��rxG�������[����N�=Z*�n$m�=ʎ�}_Y��T.t:�Zj�hV��%,չy�о*W�b,����:���aJU���:!�/V�������I���!&j�??.����ǃSS�H�6�O_\t�g���H\�EGq0ߤ��Ĥ��)b��"�Hʀ)��u�LC̠���0E�里�I����V@��G�1�he�x�҃�:;�S�	����\}�����vS^�i-��Lհ�,��0J+bK@fK[�����{f�`{��wب�b1�!llY1Zhd%��F��h�oJe������	&���q�|̆S0��GT� ��+��nz.�"s˕	�o�LVb�_������E��@�q����V��k3(7�|m&%[8���ΐə�����x�i��l�0���xm��-�m& �q�!��&+0?���Z��a�E�|>�u�g��7�$VUˏs��
�3���qp��#`vF�Ѩ��鍌��F"^t>TuE}z}ii���i�R�7����qk{����-�C�K�x�	0�yu�LaRv�d�ɗ�O��cI���Ò���_]�
�x������N�=2���b�Ģ'��\]��i�[Q��h)�|�4EF:��&M��J9�c��t��chQn��6J�XO�����eVd���M6G�s��	�P�D`�Z
g�T'��R�Gw�'�F`SS���"�\��u��z�0��=��3
bj�fˊ�sa:aq?�	{��Ph �hT� X���i |>5u#1(/��:Ԭ�9AB�����`��"�ؾ�WL�L�E��J�a�|E�O�v|�e�%?�i;]I/~���٠�;X[i�o�q�p͢0q��q:ҴLs�
���K.13i���L+�L��W��G6T�eQ���E���L��E�Y��7&�m��c��⥓��HkN��d5W��v~�ӆ.oG�G��
�O2`�bވ-jsX�ƴ��}�gn9-�"�ܚ��U�蚭�F�zG�~K�n���Z[�KKiMqU�ٸg�
SYZXW�7�a���n�؅�ag9���0�οj�=y3h:96p������i�[�
�L ���%w��e���(L�A��ܬ'+�'�29HYs
�J���`R2[G�|D\��IF�6g%L�E��٧T(�G|���S0#ǁ�JݞR=�?i���@~��7''�1b�l�+ӫ��VL,�̦Qƾ��$�I�\ZR�x,�%L���P/���gaq)���uL��y�`��)�A�T�S�T? JS��VɆ�����{	�{��WQ}.�⫭���\r�2q�py-
3M�,���2���ʪ0��`ez�!�:e����Ra��)L�K~d*���*13)�,\��49"Ӌ�M�)3&��\r���gl�����fO0��"���ᚡ��'�b�O��]ЇAv���$�����x��r�(-�:#}�u�#�2}�^�t)U���-�n�s�$`�/��6����������L?���v�\���SL�C��Uf��UK�|S�XgѾ'�����v���L�$1�LX�qQ��yeoXa�&��9�R�}�
��8#$f*�MCβ�s�Fm�R��#�i�b�K��=���W�1���e��ظ �V����Թ�]��I;rrF:��Fl@F���%R��Ә0�贳�?T-4��{9v'P~� lp�ȋǚb-f�,y4�_u�8��Zk�S�%�n����X2�lhd��*ɭͥ��~�&�,7���S2}�/&_�e�2��l
�H�k��s�M~d`�&%n����ߘ�ı}�_��%�an!0�����˄f�„�%�fy����
��m&���j����lc$�h:{�$��!K<��.��C&> W0�� R�5�mut:�l
S��RW�t�#�y���[�&��I���t�X�	�v��K���t���)ٷ�0�,KN}�Y-Nu�3DH���n��GǜQg$j��!j�
mv�>Yq�^O��ƁIʒm�L��0ߴ��L�D�l~�1E���\j�L	���&K���$82HC����%W���_AQ%f^:�u#��e��i��N�cp8(z�v��e�hRq���ؤ	���a�G�����r$����u�0�Y���J��ѿ&����A�&��B�x������Q�t�yz(��tr�s�~N�K�L��>���r�Y*� ��4�]mIZa�Hk�ע0733��L��]ar�I.�n&W�a̍��Q7�2�����kW
@d����0w�K��11����40-hS4�umєKN!�|�r��D�S}HM=ʸ	5B ���c�Hŀنf�~�:;�O��d�a0��i�۟w0�G��٩RQ3�����\�
"�ٗk1V�0�,Rnف)=q�~��h�PHg��+�h�s���fn7DO�A�>SMn����q�ۼ��i`��x�{�i0���e�	e��8���.W�P��T���q�A�Yzg�/ӫ��:c�G>���7��h� 
k]�N/�[�!��a���j||W��
���'-�������;z�M�����c=�P!g�K�ŰRݢ	xZ4����D4gj�)'缁��?��&�H� �G
ȗk	��s&�t�/.�P��;���2M�drBn\��0�v�0�V����&��1L�2��a�������%e�Ȥ%;s������Va�Z���["s���Ƕ�l�X���!!b&��Dۍ���Β�$b�Y�!��((��Q!�0&S�a:a`��Y#���f�ӹO��Zhv:G���B��n�}�T^��y�oX�A[�kv�֔Ba�s�-ҴeU��&��W3q��	�������ٱw;S~�{��=r�^�|n~Q�P���bt�g5�l��Q̀Y�5`�rV�3�W�@�q6.O�h�P���#��"�Dq�V��M*G�PpfV�pG<��#M�?�+͔����.,Ť�[���e������&��E�A��L�ȁ��Չ8��aq��D�ˠ#�^�O�bH�h�K��fA�S��)�@n�ъ�wjj���~r‘�0Q$J`"��D(IŢ,�C���>��Ȓ���ߤ0�'��5fɳ+L��-��#�v�0a\a�s�[*��m�0_Cs[�ə���$Xf�,���w�0Ӕ�ȏ�oc���X�w���VS�qa�OGGG[�d�J��{+o�l#�h�Ԇ&���N-/��Y���ť%���5�盄�@�\0!G)C�n�f��,�
.�/և%����J�|.Y��������~)I>��{Z��F�tS�_Ӣ5�{�˝zE13�gLr�K)���&`HF�P�UK�brT!�(�
��NLF!�J�Q�cȔ�x�a���D�pK�ƩI�d+!\�.c+�)Y��-���i��H��+i��e"�I���J%G��@h�4n�^w���2>�X@��b�:Y-.X���L�h��Q���� rld��SX����g�@8��?�@�;me�S^���b��B��+�4-_k&ט�1��&[�3K�Y�/�����������
�t��:L�Ld��&f5��� ��uU�f��93�']��ȒOL�b/'�������NLL<�l�f��ه��!���	v�Ϝ�}xe�"����a��U�?��?����-��0���+0|�y�,Г�����l[`��|)Y��p�t���˧�N$��_�����<B_̤��I#U[ܖ��%J���%	ͯ�䕙oIar��n��jR��R�(���a,B�AHxK�RvH)0Uf1c+C&&8ˁɩIإ�C�	���ʕ�:W�`'������l-
�%yV�N{����]��
<Q���HF�L��iOL����V0�&@��DXc0.��%��6y4M�D0nC�f˙�|��v�(QdD�����!W�����s#cS���*3SN�߾y��=���s�
��γ�/��=���γ䜘�)�42�v��e&43׷�a�JG��ąsr벢~|��G�8ؔ�?�sB9 �^@�T��^s]�#Y�8��d��y�\�}���c�k��5U_6@_�g��6��-nw�,J�|847{�8���V&�/�!��O�ަ1UD��c^R�����T��zx���x��J���\vJ	�Jj
@�9S�E}�]�����l�?w�
Ж��P��r~�Qɑ���b)�+����Xd���L'��b&�?(�j<�c� \kR�Z�ff��o�#FL
�Lݿ�j���ܡD��>c���]�v�`�$��	�r��G��ɒgbn(K��LX��,yv�	^f�Ä��:������rk|�:̌��,N���ff�P`$�*L�2`���/��Ƒ���_��r}�{M�[ɗO$��!ɕ�.�~t��3�{�bn��ɣ�������"�YO�� T�rRr�=�m�0	�,;^�\0�j�J2��l2�Oa�;�q��pQ��B/܈R��g��a<�/P,��T�'�HIK��
���@θ\8�E�\��� \r����B��4#�c�{Nd�d�%_F=)I�m�c	�,��Ҹ���N���4J���'�&�y����s���@J��銎 �Q�|Oc��R��0D&3skMym
s�s�u�ȓ��y|�Y��U��m{��Ý+�t�g�,9;�Gu�\U��Rn��L�<Saf�w�M`�����j����_�n#PSD��EQa;��U�l�Ё�H��b�H�� �X(AJQ�L�7M����=pi��xT��ܻ$Ω��%�0qK3�g�Ԙ��)�3s6�4�V���m�I���Gƺk[oa�zJ���d��F�X���3�k���Ƥs�&�������+����`rm�4Ӕю�:l����W����V���Č���ި���b�\�-�S�.�9�Y�[���Q��~y�F�[	^k`nIT�z�v��ⴭ���N��B"�f��ց�v��e��KK3S����p&�&k���?J�\�s{,8��!�К[C��0�!��Za�t.������,��”����kX����pI�0_u�%n�qʒ�>�˒/���&♻T�/�L|X�P�O̷D�40�[a�8�|0�R��b˘Ev`��C&CE
�q�\�/��0Z
�s��S3�ђLP�,��ӭ
�[�����p�?S���H_�/��rY���BN]�ɯRvm��`vx�=�֡Q��Lɐ���LO_O������y^���wD0�Ck+R:
����&��th:�k�&3`G.����Й,�Ùh„sΌ6UD�3�FFmcC:P���t�9�0�[��S�x��1R:�	}��,9�
��1��uf�b�wF�"Q�.�L�|�C�)�\r!��L�Ű��������L@�a�B{��hJ����ŗ����͙�]����D�7V�)��@�" �*D1q�ӽ
�3/�{7�}QaMT0�*���c`z˾�������b6�\��r%��|��>��D�KCX��[������ކ�������aN�~�zR�]?��۬%���`����nM��H5��ɹ���dЙ�g"��9/)��h������%��۶E�����S�c���}�7��0�8K�DJ
b
�tS����ǥ��G<���$9.RJ�s�������3%j�8-��_�\���ux�ϗ�K��?;�[�R����,
�.y�V{�x�O�|k��@��B�\`&��rwS �k�U�CC��
�!��I~ʾ�l�r
%�
�J���L���G���0Maa��#B#�����il���m����oX���S�,9B��Sl;��(��JX�@N�}RӑW�0C��D���3#�LG(�&!�$pI���'& S�j�~v�)K����j���X·��<��,��0_^z�O��$ʊ�M�%�)NNNIv9}V����MNK�������ɓ>=ʻ#�9����z[OتN˚*�-�m}���~�������
%*�6~�Fg=���5�a!{�L�+��/4�ςD; M��㭌�%�8_0��E&}��l�K��Ro�` ;F�Ǥ��v�W����nV�������S-�
+�6�H�{�ܴ�hD�9�.3���*�\s=c&�s�5��p����ᝳ]?h�t�1s��<���0^��ea��Q���eO����,�K�`���d������R,K.=S��&��#���%��zSC��*�GX��T�ۃ��J��^V~��r��׃L,m^�|��ݛJ��%�FC�c���a���s`Bd.&&N^d�
S��f�A�:��8��K��̗.\xi1/^�ѥ��+VL]��l���_�ր���;U��7v��+U=�ݍP�0��I"C�e{�fu�^����!D2��[�V�Zcf:��2�uX��\��l�D(�}Af"�y��Xx�l�O'�I���dS�L����\�:L⽑n����^r2z���&x�8%�0q
&��%*Lgm�b�0.���N�ů��8q/;�toff&���A33G�f�63����)L����<郕g����|��1��/wo�ܨ�hL��\_��أa�_�Ri4h�?%q����&{%j�a��_a��c���P�:΃�T�0�0/\�z��ŋt�㥫�/\�Ͽ�X�0��Q��,�Z�A��訲(k���͈S�GN��Q�	3b��~�& ���������*�,�O��LM�,�G�x}��
j��J�jGii}}�)ZkH��|?#7B�Aq'ss}&3̌��I�<��0��Q�މv ���T����R�#_�¤K��!�07�&�%_}/9}DS>�
��R��G`�ts$�?�[��%L��GBaұ�fѵk���Wf���~m��䴒��(L�G��p(�2����Q��w��aֺ���[sT�	`�|P{t�Iy�v�V�U���0�ll�%��G`�W�f ^�:L�+L?T�)�0��@/����̋w�]�3�ҝ��+���/;���u����_��
��K3���k3��3�����67�p����;E����w����^��z�B�f"��N�V�yɀI̞Ϊ�&��OUMM��=�ݍ�uuݝe�0�j�����}2�L�Q����^o�OcFv:���O��RGl�ddfff�N�g��\s���L����L-����X��8K�d�W�Bk���0Tn@&��+�)>��29.��q���܅�|Q��g�1L�y����sE1������,�������� 0q��o7�vg=8��{$��A��S�"(�?)ᄀD%�)�\�2�S9�(g�h��c�m��ď"1�N2�'��m=&�p6#C٨Sё��͒�����h�{/>��PݟTNL�}q����;ӳ�>�;`޿rgt���WG��}���2;9q��ï'f/�(�N��3&C�����Q�i�X�.	���Fv�t6U���o{1�
謂���,P�dE�$�L�Ǒ&���zDf�	T(o6�����2�$r�P�1�d>FqD��R��)���Z�aJ(L�Kw�aJ���N7����
��&�0q��aœ��R92��%�]�0�G.��yQ\a
y��AS��n�~���1eO��E�U^>�Wޑwk8��[��["�y�՚
}9٧.��S�RP(�W��ёT����m۶��3������;�ݯ0�-����0�WLaNO�Y��E�wfG�]�̚������z����9�0�wn�����䵇���*ܿ�����k��3��xH���y8�PV4N�.�4ӊ�U�U�pY�^VB]������LiUFv�:��Y�c��lf:�;��1�[Р��{�hS�z*�	$�S���5�e/��$*5�+M�`&$&���%��ÿ�a�]����a�m/9�D�>ҽ䜙�
S���?Dv��1]��s[��
J�:�@�����0C||��⥯v{PEQH��b�bv��_�dx�T��W��\�.�!~�R=y�--�ZR�*�voC�0�D&�fD��]�+h�~���^�	2.)|�D���>�rV��a��z����U�8._���+��K~��y�9����f�D<����aޛ�*
:��̽,�:L�I�
sX���´%��$��0�a���DL8�Ue����޲���h��>�-g�Xd�A ����i[�f��"�pSB\����O�i�dr�<5�F�2���u��&e���B�|�-֘�
���0�c���=��qA.ΰd�t�K�CzZ�+c�\Z+9na�r����}�1�W�� �f�$|�����G㵏J��X���'?��cbd����)�T��0���S2O�
i�X�Q�%Ř�f1��f��tL�0���c�J�X��_a��u�I�ư�Aq�B����,����"��A7�"�b ���W�%��0*)2��B]2y	X˜K�Z (�-�(�}G�/� ,��U�{|�/�{0I*+���a���m��a�%��gZ���O`�Zː�U&,�Qi;FI ҙ��%G��U�t
{�]d�b��<�
�%�UE��%�V�0�����t�8������"��Nyr魑xzȗ�%/����}�̪��I��^� ��UK�+Rf��V`��a���Mc������h�~��SiИ~
p3u����b"��v0�B��ǰ��-6[JG�ؘͰ-
�eb� Bn��9�'���~���t�K�'��(&7&9WV��E/jw�sW
L�e��hҧ�u��㼄u0q��fa�}�1"�y��8�L�|�D$29�#�ahL�{�_Z��6d��ĺ�-;ᙫuzJ��P�
�gJb���G���Q_�0EX��&.�N:�\�)�K�;}��K�I):��L1L\Yrg�)5}cq��u/���
�eI1�ŲR�B�\F损���G��ј5g�����
��?zp��c�������]Oo�����;�_�V��矌�ܼc��}��-��3&��`�Ǟ�F����+,)��r�席�!86���’l��/7��8���V�
�%z.��X���"`����f��d4ַw5�;����xxI��S�'q���\�`�UP��,��_��ʆ��蔖�C��n����Y���!������PB{f}ڛ"�>k�%g��N���<L7�a�ʒ�͒������p�|��"���/\�\z��A`.#���r�xO���ߔY/>;�Y��{�nkMky�/ʻ�ۅ�}
O���D��F���$�px$Z
���-(�6��4v/_OU�W�q,H��Aks�x��eEv_k񸽢��6��R]0��+���ͧ}�h�C��_���s�E��`nv�„��0a���`=e���˴�~��$��?�����㒱���̦2�Wu6�b�����,����{@�*r�	���
��Zcv�!���z����(�7�Y,>y��YIO�0���͹�G�f���R&.��aJ���zɅ�>����&�
�n���G:��K�CR<���Қ#��)�8�)���w?}��[cI���s#g+�ۏ�;s���[ϞJj�t��
��ß|�՚����+��ԅ��j��n�Ҿ�.5+�h37�a
ĥP�)F��z(��\\�\"�+ho?�1>М�Y�R����c�cJ�C�?�o�{,�7wx��yk$�������,�
�ZҾ��d���_W�n轶��N�X�����%O����l:\v2�a�8���K�E۟�XD6�ILr�{�2�1oS�
��Cqr�af�V�2�/���%f�-��1�6��\����t�%�qw|]�0׻�\Za*���LB�dS<I.(L�)�!b�J� ��N��5�Bv|yu�כo*�Z�?���7P�|��ו�Q�S4��LЙ�������
�oF���d�ӵg>�驺�򑚛5��7n׎�֌�Ԕ�����|j*���ԙ��#gj�o_?{��鳵S}Sg��ʟ9{���/'�k�kN�z��a�L_�H_���7�ۃ#cLw+L�!��
La�'��
1N
{#0b+o��F��6DrwnIˠzoXz:zh`؎�YZo��b�-o��8�^�уYL�699la�����vqu�i�s=0R� �˦L
d��,ナL����͂¦Q2��%�I��L��v�=94Lȶ���T�D�V��7 ���$d�8�S�$���鳺,��"q�)ԭ�S����{�]*��V�8��a�dɝ{�q�@S��E殻����?�0�%�������zɽdGn�?9X{�g���F3Zo����������k>�:v��O�[Z���s����Sc}5qu��'�o��|��[}���=q�������沑�����ܯ0y"\0�;_\�X��Mf�Z�S�Ǫ�y��h�9�����ˀ��MS�`V�UsC}�����/�Y-��
S4���Q-VE���@9��EF�릃x���F��@� �>m����F_�T1brA_��}��Z
�K(դ�
3��j��k��Lۼ� ���p���sAa
�"��Ԛd�E:}��K����;.�Vr��>8D����ӕ�\�%N��K�)r����օS^���>sI��T����y���x=摧���xy<!���ݖ���ޞi��Uş?w��|�y[KA�А��:���$�`�)֦�k-C���bOF>��d�ñE��#$?b�>|Wp�.�+L9���\�s`�v�=�Dl����O5a���/�$y���&�A���ؑ	KN613���	����
���7��t0-�j�H)0W)��\]p<5N�D§�"�U�}�%\q"����v��ID-T[�$���I�t$���zT�h#p�dZ-V
MU��ƈY�pYB�l&�7Aa��<�vu�t�+L���V��;}��K.�K�Dp��^rɝ>��
���H:�N�0����	+�%��^�����i�4n���vs6'bI/V����Ϙ<��
��8B�AC�cL99�Ď���s6��C��y[ǹ��@՗���̏��E3[]�B�"�C�i>��]�ݯ0�E��'�!0��`�͓^��4�b�l�>7�-xp�㙧ej��H�x��f5�L�fa��wj�L��6�M-����3,&�JȌ�����M�<��1f��K�J
F6� f��Q�Μ�|9�LG�$�O��AL#fwgwo�[�,م��	����0;�l	d&'��i�LFLFN�4J?��H)ъ�0�1q�Z)HL��a�6���US���W�5R������)�Ä�u�$S>�u�I�б�^�{�//��ɋW�W.\�?�Q���ȷ��bv�7��~�,�䤩�!�б�d�=�7�~G�S��1��ǒ�/@������>t�ҥ�Um��3*ic�{�!Q���ً���'�#<�qZ��m=�`rL�N%����`�z�a�fH�BX��-۲3�S-�e��Vm��l&��Z����V��Ktt�`jX�M������p<r�ȫ����g�;��)YmQ3b!�3����KU�&^�K��ゑ_�{s�1Zg-���LG�Ǯ"`b�pH$
�S�g���Lx��O9����"�ɝr�
��_֡��;}��KN��a�w��[:K.����+w�0j
��-�S�,b�Jzɳ�YV�t��h���ن����^>X^;|��Ty_�m��<{������ڑ�r,@o�y�u^�
lTc᱆����ؕh�9g�Z�����ㅇ��+�i��'����I�n��
-'t�J�s�gd���;0ɞ��SC�ra�#Y\[jp2̠�>�.��80��כ�;�j�_��Ղ�&6�f�`*���I���y����ظPw�Ξ&�D �x�L����U��G0ax���&H�:��8r�~zK
X��֙l^H@(S����������drb2d�,�S��%��a
[���:L6���̿#si����0E�|��x��'W�̖��#���=��^�p�5�Ʊ��Ც�;sj�̓gko
���]`�����NW:?�1>����h����>]]��{^�~�!�p��?9�����]>��c�8\��*Lo(q�80AGL�3��[ACx�C�0��ޗ�CP��	��e[i��8�8���y_���.
��6�`�QH��$3\�V@wb/Y���R*x���jt�?�KN�(�x#�ü�26oȤ�qJ����|���/����La��_���b�ㆣ-�	�ʌf"S�;�>դњ�Ș/��̟�R��:L\�R��)��y��tO/���"�>�p�.���Kw��t9Fx�!Q��Y)=�y�𲸲迶��O�����������>���xק�J�H��4
)�)�jX�G
�!]�,m��ȅ\`i�,�RRXYpn]+n��DED�bU��}�=^}>�۞���\j�����s�2��s�^a������er8����raQ(W~:R�]ְ��k��t�� o7d�z饗�V��;J���хu�#%�`�^X���pћv�h~�����\8)?n��M���\[iI�dm	^��G��w����R�m`�=q,�q,5Kj�栲H$�1 H	E��TV��P"���+���1�S�:N@%�1)M:qsO]%�L&&���`�.9�('=
������F�����. 3B�=U\XY�m�;֧+����_����-
��d��"�e�a
s6�0?3w1��̻T�Ff��u�!��;U�S�~
�93�)pi���F�HavwS�����` *ӊ-��#���r�\�-l-=t�F蜤��d��<�+��RB��F
%�5ɲ�(�z�� f~���S�%���ִ3�k�YU��"E-���}D����]�aE�Ƥdm�N��쉫/Y`�<>U�%�>5,9v�ÎOԣ`�X2�A^�\1�t �$�ꅫ�|�S��1q��%,�� i@��B��Dž��`�.��Z~0��k��ziF��^��IZ&x��-r�1kE������G�<�6b���%/�0'A/�l/9������׮��P�,T�S��3.��-�|퀷��0qW��f�1���� ��߯0�^L�\6��_<v�7��}��䥚�K��C�Ԯ���Z*O>{�DߺC��9~����?�>2R�\�2�3G[�C�p2��ҽd��a�z�̓@&m��ֈ�����i�^�+N2�x�����(�::dM��P&m��%��e�-P��R�'��ך�}�*!�n6�T�	y��SxƐ�V��L�����Og0�''p���.�p�%����,P���SVGT`
^n�m���X&�A��g�8~��?��xޗs���m�R�<�IK�L�B���Et`����1�TޟiE�;̒�J&N��^r� �6�Yl�S������-�,�%�M1�p���^y�^�I+v�^��i_ܕJ\�z��e�o~}��G}�3Cǿx���?��_�����}��?��oV}�N����?Q��9��_\:��ӗ������/2����OCna�X;���d�'G�|��?�%��R`55�%�xj�����.����SH�,��tJ����<a<Ǒ)K�`:ՁYi��d
�xH@\B7߀�Eҙ��|.B`���D����]��\>tg$��b��3tW�� �gB�k��S�G@���iW��%"���b�\rd���=��jj~*�����-j.9��L�¬83�~)��;}�&s��|V{ɧ^QQ�/�����/Ȓ_�[|U��O�0��tK�
��.�Y1W�,L��`.q��$;�RϾ���_�E��g����O�˧>z1x��=s���\����|�������'^<�g^<}�뿿��c���'���"�Ioiu��"
��t�?8�A��ۼ��9�u�����N��T���0����F��A��ߵHTYqf��%O!���))*�HYSQ�n�Q�%�(�L�&�jR:/c�I#��\�![�} #�q�F������8c�)�"X�hd<�"U���8U����11��I�Y�������˟z2Ր
��S�����{{����0�ɗ�4��И�Y��i�P�y������I���1�]K>9�Y$K^|��-
S��� Y0|����0g����dv�60
�i$4l���|�M
�Lu�X�C
x�����G<]28x�?��#�����!�g\��Z_YZ����]׊F��%]Z��˽��%dR�r�
�9��#��c
��;
�Yp��%]���=.�6�<��,�w�/N���꡼���[$U���j^݀���|L���CHW�h��0|R��"�J�Dߩ��ݻ��H��nR�|
Rgb���/gu)��2v��O���8�߿����Nl�TW����}N
�_>�L).���b8���O!a�"`2(���{��,l�4n
5����>��K^HKC_☮��"!0���#�SJ��SP� ��S�?N�A�����b#��5�ܽ{����f�������<�t��9s�i9�@I��'�䳴ԔZ�|>+��V���7N��<��d�$�G,N����n̝0�C���a5���fTlCe���]�l�^P�2�
S����ii�AZ�AKfe0H�#?0D��d\�K�
©��%�*V�I�L�XF|R�R"
^�ӓU�#;�HeB

�%`T)9�9��A&���k��l��-q���ᰈ$^�y\[�"^�10��K,��[���H���m�=[�Ԉ��>�Kɠˆ��rTe��ys3�Fn֐�7�aW�t�Yr~L�5�P���{ɍ�>w����%/��Q�nh̢Y��I�i3>��E|r#GN�bs��&���ݥ]�޻��޽�	�-֙ӾX%
^�[�0�GI�4
�ɉo_�p�L� ۅ��.diyz�&}���o�V��S�rMq*@f���0���ؾ���?�0�~H���e]�
���=�h	z\�(�y��ዳ3��r�=�01���%�N&��F����0%����L���x-kQ}��)��u�'O�꘏�J~��d��\��Ȳr�l�̉��$
'f�81!1�]��)����A�g$�<�S��\.��\c��/���7"&�M0l���i{T(̻Xt��x�K���<����3{{ɋV	y9}�
S�K��9q�_1L~�C��b�E2�1M�|�C�%�Ǖsk���]m�]a�`"���ŴTd��mq�LKg��(aΎ>1B8�$1Q=c��ynI���9�C�r!�MSMfr���4��=��l+L�9>NK�"j�O��e0���Q�2��z�K�"��eaa��>�x���f��L����)䶢��E���Xa�Q��/c>��O����l�	��>��q*�4h��q�$�	���tφB%�x2��>�7���}F���i?�f�
�I��9��#��h�19����aecS��Q#z9�0�>�
����_�0�^r���8��f�…��<�,9�i��x�8K�g|��!1�Y0r�:�
�0��{&�ށ�V��l�MU`n�gv����	�p��#�8>���K���>�p�K�'�i�&��W]ڑ��+�>�J�c�9��i�^2��0	�H�c�R�iA��t���=��Hr$���pj?pٵ���l^.���+�8	�adO*Ŕ#�	`�m���e���iݸ��[)�b�d���X��f$:(�b<���3��I�0ujre�H��KQQD:�e���Nr���u}���IL� b�E��L'�k:�!�̎#C�Q^�d�ҕ

h�ڱ?q`R����{˒�QTasN���N�Y�Kn�r�>���ų�F�~e��Y8���ۧpۮ8�K��f�|��ZDa0�.�n��m�e�i-犹 I�P�Ԛ&)K�$����z��xK�AS3K��Wk|鎎���|`�����%��U�f�I��8���G�ʀn#|��<J�}��S�ҌK=-�P��B� �B�;�r:�[ �a���I]�B�7�/0Ձ���Ȏ/�Dې�K��,�����!q��z�CD-q6�0B#��AN>0�M_�	QL��S1��,�l����Wd4Wxx��%��O]�����q�S�?f�|
*1�K�ش"c?��^r��^��
��]�|�
�q�Ng��)Z#����%���|0�K.�0�]1yi��#xN�\�d6�G�5�%0����:�Q�n�xF0F&;���2Z�أ��Zym8�;��;�^0�
�j�IZ�
K���Ix�Ж]��TC[zY[�b2���O�Rr��v��`
�iB��B7�yn�q�h*�
�	y��yV�6r�2�����O���8�LwA�0~!4;���䃫��d8��8��rb<&S/)�����!�|N�2�U-��e��t�5���LO��˻>Ѽ�v��e�tɧ�tOa%��0���4N���3�{�����a�l�a�:���u��
S���w�%/�,��cl)O�|)�'�+srJ��sͧX`��W�x�n�	��%wT[�fP�Y�=�@T�r.d6�5�5�_�����Mx��(��B�^�����U�P���S��+�ѡ��$s6&F {C�ْ8tK�צwiЖ6��!s�t`��B'��P�%��YI�䩒�eÉ�q�)1	��P`B`h d4?�r�n��3�dH&`�/��C��?�L!+'5H����r�L� ���
��'g��lE�$�3��GsWsj
�qW�c`�X�W|�N���9s��+V|$��O*+���0
�i8�S-��s�u��u��X�%�n[�,�����˻��,L�Lk���:s�^�ݏ���g��Qaⶳ���+:���i����z$8��@R�(|��#�+��O;~�D�(�eSek�h�/���W�0C��sY�"]�+&��M�O�.s���M����$��a��F�D�g	���qKLK�%����RS`,.�<:�k8,aƆ���̲
�I�ׇېb'`��h�'^j�(U���c	$���m>'Z����+I6}�Óq�UD6����M�K���	w|��_����x",�5���A�-���m�D4� ���ƦƕM��Ri���,��1�B̙��}�-\��:La���|�^��4�0�YQQ<KΤ,�%/�1pYd�0�kwT�2s��u�["�|Ϟ�I�<;z�ʕW���&�UT�}����{&l*`ګs��4�M�.+-ν�M�i
&�`���N�\'��[�Y��4!tN���׆���ym����j������J"�dVfuh)p�?�H����LJ�3-eIKƥ��RSc`��I��u���i��D�z4
�;A)�LOS�g34k=�7<�GW����[$��y�|f����a9Ya�Ln5��6���	�c��W�S�%��X��J4s�U����!����r����L$F�<�?w ��Զ��m�0���y��@f�Ĝ��|���K>��aw�K>e����B�y�i ��jV�>��\�Zj���`�#�]?{�
���c��C|���{&l*`Z�^%��YkrW/D2�ի�Eh��.�Dԭ��$��'�@Ii��|a�ҥ��6
;�c��|��)$>���)�a.�U�� H�d`RK�dm	X����E�d�K7A��[ U��ƣ����Q��G�S64��E�Å���ɜpɳQ�&"�R����vp��I��07��\��i�q^r��TN,��؅��9�(���RC��[�6�μ�T+���9�+�����\UӓptE�(q��-�|j�c;v���U�;n�g���%gh�c*�|n��s��^{��"9���b�0�S�L��2?���U�|�
���cN�<�@�Y�=[א�d`����_GG��z�n&�w����s����f�y߁騷h�o����p���8�{� ���O?���iE.�bJʔ|��#~Gs��'ZJ�,�M���`���q��TTY�%f68��+�M�7���n�QoA���^��;�KJ�s
3�mMN>�NGj��8� �|��QC�t(����]�8����Z	X���M��k0ucPc����a,&���SR���,�\�0�(�b�1��cjĤF�͡^�e��^�w�3�Ǡ0�n���'y�k>#�y�&Ca�0�T���a�W����,9��b��"��8�U�����a�iʊ�,�dɋ�0��,�_12�	Rf�q�{���ˇy	`����~��˯ރ�|etto���`x�s1ʊ����������	���]t�b&��RW��]�97�|R��76=%�9�
3�dm�F�	q��c�%K�AK���K�h��qaHIL�T�b��	���5,��v/�X�C{hD�C��m�x7/vSh2ʉ�J(�������A<�:�=SY�fq��R@S'&n?�r�S��A!<�+��te�)#`�#@�/01���ރ܎/��L+ޕ��������#3����	js~�c_�JAaѽ�üS�9w�0���0ţ�}Yd洰4b�Sn�ԑy�L�r��u��ܸ1�9e�p�.]w��J�`��{+0_=Kϻ͒C`�W��sk�Lk4���Gkoc�]`~~&.o|�檚��96������?���ҳ�0'"��MG���x<�^�O/���'xI9��0��������b������%u��y�p���1�� &p$�@�O�R���[^�ʘ�kER����E"w��Q���b+���ʑ��4[	�������$��?L����ٯ��|��e����X� ���-��?CD̑�d�Σg>�Q ��;}�K���0���a��.K�GQ�y�
�x/�`��"�E�69�Y8S��8(�;�a�ۮ�((1*f��ܳ�[t^20���s������땱�������*Ձy�ѳ��=+��I�<�k��\r5������j���ȑ�GR�	�	Ks#�-^�d�
&ya�-����̰�uX�f(���C.����	Q���Q������y���ɽ��eǁO�����'�b��GO��E*�]�,�z��I��BL "�Y��:a:��H�06����I�����_WY�qԧ��rE�"����|�1��"LF�Ȕ�6��m����9��*8�%Fw��.Ii��i��g��T�,0��X1�h�p��t�ɩ�b��
^fx�S�DE��L��GfLO�il7�ɏ���[^��v���'x���浿_�|��s��<{��(<�ћ���%9_
����H�_�~���ׯ_�۵�;u`��|���|�Gpӹ���{o���=˯ݸ����#y_M��X0�U/p"����0�g3KO�x��ֵ���.�[�V�\�ljXv�C����׼�!M��`zT�pK���%��Z#�O���x�8�S�e����z�xB�]�+u�����a�SU9Ɣ�e�����,��Ŀ2������97���Bh��h�ۇ����L������s0�峚�&�45J�Y�	�t:�/_�
G�=h��Db�V��3��>~��b�
&�n�t~����3��Nu�{|�F��Z�o��ۖ��
3�O��8
���s�|n�d^ު0Ͻ\q��b��&���\?��+��%g`V�T��ӱ��W�ݸy��X��ݸ���g/��=�(��S�?�z���t��������B��?�\q���^�#i�%�K��k��ƦБ�����YT���QMS���EK8�f��z� {
0Â���҂Fq����n�X2�`T85�>H��!-���
�`iE�Ȏ�:fLKűu�{����i��iX	g�&�`���M�D<"&3P\p5��ƁK݄e�27k+Ѽo���ʔ�jk�#�L�ČEy�[TFg�1I2sEcc�[e�GUT���a���Q5�m���`9��z�9̴���t;�gq��O%#(�������Q���}���{����g�����͓��v�;�m�ƞ�p����?��s[�L�
njK�KL�0�Ѯ_�>���a޸	N����s�)����k��]����/_�����߯���G�s)��k]���\����?]���k?�;��k?��XŞ��,ׁ�(؟�j�hG�e�x�66i�%-�l*Lg!-�,��0�RǤ	�80���9�V�#�`1/�Ұ�δ4��E�a��a.�4�%G&g{z3y_�˧��.�b1� Ɵc����~S��Yk&����n����?���'�=�L#�9�V���
��z2�-��*�Mu�x	�y�x[�`Zu��BqH�xȝsx�N�`�mjn\�O�@{��0ׁ���kj��c��ټm��o�:
%�,���d��G2����A��%����K*�kX�@�u�Z,��ַ��-���Msbo��-��~�sj�g�C|�Ҍ���=Y�R:�}��x�`���.���A���d^(L���sg�G�g�g�%��Ä�B��D�(��K^�$`
[n�'��ka7~l�;�9�LJ�OZr�w<���̲´k��%ՠ%�����nr�2&+�J<�_�Js��L&�(��[L���Z4co�nw ���厘̽�qZ���(�ƣ�Y}IO��3�]]]�`�6m�0�S���/F�L�ͅ��뛪��*�"��UU�\�U����d�Wׯ;q���A�����Fî��ƹr���F7�>r
A^����0�0Q�	��԰�֭�C	L�&13dR�~���%�#G?RV��TLb���A`���?�x��O���-�_VN��Y&#b����>��.
^�`�����4��|W�M�$�<�����$}V�k~
���10�V��C�zT
)��^�qs&e0Ϧ´,^�f�4�^&)�)�ɥD�V�0: �+m��m�.�R˼R)���"*/S^�g\r��>���I����tH�єu	O�J/)P(
d����'OQO鉾z� �bo���K�p��qL���M��ι^�J�T��@K'�"�f4����̩C}]ў��$ћZ8s�����KL��F 3�!�s�ȑ��h��!2�U�6��0��l�u�PP��$&�r�D�H6�2'��C�6��	hBgn~�Ó�i�>b�N�7Ε�Ћ�Kt7��Wޟ燘���1_M|V�oLL��zK���BcX
\��+�d������E~������o�g���հ?|w�9�}D�@�PO��g$)p�][�5VO��M�i]��P	X�&@�
`rj<��BsԁJ6�0y�$�`�^E��F�GA�������T�<7����^��	��½%^�4D�'����SЗ�h[��3�gTN�̤ "}��ׄHF"�?7��AR�/�"��$T0M�^	��
�M��R f �SϻG�1�~j��\�ܸmc������L��v�UxcScs3�M���F!~4��D
^
��'��P����K�6<q�Y����b�}�ۈsA�w�S{�[�<>��|X f`�gdK�L��0;�#��"��2O~�gd����D�=��񛿲�U.���no�������:4_F�K�������YV�VD.%�i�31�M�s���D�	g\����.Ia�v�ѧrJ�8�N�$�9L�e�H��	P�+��T0��|�/�H:�<��������ӌ��C2�ؤ�WE�c�Zgq%uYE̜c
�'6g㒟��f� !���P}�]�y�?{�[�����;G����БZ>��M-�#��n�\��8Y���yc�ʕM����4�d"��,?IhfCQᙗ���X�p�d`��xɄx�ܙ��y�́9|���o��6�a�{Z`�v��Cx����K6����0����'w��U��L|����}C���l�����]�p�Zc�a3��d/��]�z{G�UbF#�S�:��n-`β¤�l�27Lʢ��'�ǹ���圝hɼ�p�d��I+���Z��e����`SRT	
@dw\B�%Sʹ��E��|�T��tv�ַi��Ug&��cՇ����2.!�	�[V��.9�N�uS�ț����WN�3[�pɡ1��!d[�c���l1�R��)?�/Oo�{cL|]��P��*g{��ȗ;,
76��\������y�f��#��12�L�1�h�i���`}!B�sa�`|u���9����G3>�b�u���t0����0)'�R���&�iMEry����iV;f�&]-Z:�#C_�}�|v�,��Qֵ�#q�$US7�?�2�0���f�o߾'��B&���Y����rʑ��h�6�
�+xI�K�K0�	���u�5���fF&�R7Zp�)�@�0��Hh�[B���CRe~��d�=%��e��G{OH��\�UJ0w�uT	a�4�XQ�������aH��Ed��?B������$^:�d&�����u���}��b��n�y�%c=��Q�ak��>����&�G1���yV�
�uU+WV���2-"��%�!�F���L��ͬ�fuf���ON̹����҃�=��_��|�-:/�),'����R�{��;�9�Q�N�
�pT�t�|+.&w��7� i��9��+L�L`��N<p���]�.�b�\j�G��ek8�e��;/0c9S��Q_o��Uo�<�����o�8����ٛS��RM�Q�����v��.�]����==8�h$g��:0���_�t�f����A����p[l]GS0��0��<��A��8Ҁ�S4�
�KQ�)�d��Ǔ�+��!^��)<|Yr��A99HWY	����XV������7+�p��6�Q|��5�y8v��,�*����	3�9NL �OE\&��}i.L�r13��}2�
s�z�YW[�Х��^5F6)Fc�8�Zְ����Y��2H��Yt�G�����K�L���x	g�d��31�$`�p*&��{B�k����V͏Oc��ֻ�ML�p���OlY�|'6	�;w/�}�3;ٳz�#{;���V?Թf�r���U�g�_��Tb^�<z}�kG�G3vy-�h^���f�;r`�M�G�O��^~��;+�T�����WW�~��Y-I�XL/s�#�Tr�`��&�Z��Mu�u� '�2�'43.A�/�:k��9�Ej;��	�K��(�ų�0�"/^�䁋)�h)9xM�%�N��a���v�J5���x6T�{T7��;���U*أ���`����B�!?�xdbf��IC����d2�q*����`U���+QEa�s��6�7�6gy`�lur�
�^
[\��_��r
I�����M���jkk�6ja9�Q]v�4>S s{�
�.�p<P��%�
�'|	�W���17�KxFoq�)i�������xݜ���B@��Vͱ�m�?��Z3�r.��K��֭�?���3ϟ?���_��������r���?����e�;}:Q~��M������W�U���������k{o�g�����<p������3�߲�c9s���c��ű3�_|���T�s�'�+�i��H頂��D��9s�*��g��u0�Rnj��'�9䷨��[rZϱ��X�,���U�ζ���z�GVe��d���&[��,j�?�z�6BzT�DI���E^ԙ�P�儉9?�I&SY
�5�n��%%�����\��O7�tE�ŴXe�z6�R0�.�B��[��g��q�Q�N՝paB���ēߖT$qR�\>"�bid~�f,)�x�@
;���Iw��>��WA����|JĄ�����xlccCC٢��'`�d/T&�e`�D�LƼ42@��hf�T.������s� ^���޳j��=s�i���*L�Y���Ç/�?���cO����
����g�@�?����{����
&�敱kh8�9���屽7�~�ƫg��ul��+c7�20���?�o�<��c~�?p����>���Ϝ��������S�j�dR��.)Ֆ�\���P�80��U�NS=z�u`N
aRk���q00aCm�,����^�����m�	`
[s�r��&: �����0�R�H�^�,n��eB��B��3�e�u���]
5�D��p�E��" ���D %�9�Ovt9�0b�G�����M�R�j���Z����9�CO���g�n��0qudP�ܠdwV�^xi��-!kY�EĄ��
&��(a���-�?��	�#`�91�"�Cݒ�k޶ccUm튲�t<�Q�6"=�=��^�gHf/3�B ��œ=F�l1�9��
��|ݼ5�i����:yh�n�s�^�� (fU�E�g��=��a����b�����=q8��
=�����g�K���b5�B+>�gy�|��\���w����y��\s�IՅ��P�/I��T����ȗ�>L'%%�m����G�̉^S}�k@$}���V�H�G��\�'��I8g]aNT��aT@��%��+樃�<����TKL2�M�զ�?սqs-��V!!�7��=.J��
�$����h�F��,�`��P;!@Q�+0�)҇��`.�.�k�$&0�10���S$��<n����I��d�ɐ�N�=�	�Rl����uģټ��r�|p��b`R�L��_���Kց��0��Z��+�&m�
�e`�8��^5�k�(3��2:��3�����[B�w��{����k&���ax���7E�.tӹ����Yr��3?⹖^��$K.^�D��O�+�.�'`VS����.�?��krj[��&x2��������Ǔ�)rRNl��]����wr5jP�x�R�b��tDS�YW����
u&O�?N�.��-��Ba��h�hy	�ȡC`:�v��P���Wm�}d`�d:�bG��}z�!O�o0������;0|�$��1�c��8mb`�-2�O�%��.�e�ʁ�?�� X�3��<Og�t��<�
���'8�-ro@�x&�X� 2�iQZjي�45vA*f4�01�9�E(�b`��u2�Ns~_��ej`�#X3���[a�t�d�����a͒���J ɼ̷�s5�T�֒86�����d&`����\�䪢:#C��>���� `FZ���-�P[?��ʓK&=�
�BK�7�0y"����x
Diҥ�E%c�"i�hzcO:���󊲆�&�L��Nק���j������H�I?�e>֗x���Dz��Z��0�>y�î7%� �ZL�KQ�.�B�[�&uAғ�r�8�#����ž������{�!��n�n4���\��	Pa���#A��|<��иm[�?ݛ�h�6�֝�l3#:3Y"�I�4�x�5GT8���
s��0g�0�Π0g�����0��@���.�'�Z��?����&���o�������j��0
�����h���W5�=S���+L�"�j3�������
�����q�I^z��_I��d��ݍ+���t�Yw��0Jn��)I2�! t�,(`7<�R\�
��(j�0��/��O���j�a�z�>��L�h�'�5R�k���8�9$L���S�C����<�	bʔ�A��ti�QP��^�˽�LL���Vh�B�H�/�f��%�N�d�����B���˜l�[��a���*L�1>�j������|�lsu���۫Kk�O���S�=*
��2��ci5.��c&f����f:q!`�MJ<X��z�;�B���T*������P�L��M����0�K$z�`�&.�{��v���j+�RG�x���]h�QR��� .�tQ?5�A��AGP�18�4n��<����i�4G�LϤ�S�;@|r6��r����r���U�0v�q �C���{L���ew��C#��;�������SM�᨜s����
#�|�⥢|��DL�ˬz����g�u�$76���a��N��Z�V����GҴ��������&�)��Uk�œ���0A�y�0��0-	Պ.9��u��q�G���	���/�S�P+9�$0j��L6��;�ϒ��K�'�5���Pu�J[0��U��fL&`zh�:ON�4��	�����ۗ��
Mf�a����ʼU���q�'!?�lt�&���㡘�N���$\���
2&6�#2\r��sH�P���@v��D�cS�ӈ`
Ç;9�)*&��tЁ$S��N���K�u���`j:�v0���+�)uGy[0�7�
��`~���Q�;XeCJ��n(nR��e-�q��Vʷ�Y�ʩ�"qSS?�E��0�0���0
`"K�Cj����%۔��ïDۅ¼�4Y�u���qz��~��9zq���%aK���"im���Y�m�#��0��,.mv�ř���+��^��m��ȍS�Xv/5Wz�+V��y�Ьʎ�)|��k*w$���@0���\1��F�S�dB�y\�Z}4Im���B��sX��Dh݇���9��"�ƺ}BX�	?���:��`��)r�D)��	^��5��M7ιS f0�AMB�m�I
�̒4J�
vȽ�u�m����|��G�h{�f`2(���[gX���&s��0���TZj��|�80?�j���O��[�c����\<�{�؄+�"Y��'?֎g���'�L�0;��@\�
qw���9��P �����Iş��[��\b���N���N��f�yv�80�~�E�Z�r{�ۥ8��m���k�f���%��k81.�=��
I�w�x��SC.�x�d<쭤.��+��)�/a��r�2�S1���*L��IQ�n�%G��S~���q��P]*gɿ�`�^YW���qi�
f�C
})�0���w��9��0�A�ē����Ⱥ�z(��\vYAL��f[�З
�����Q���"Q�������#�N��=�@<�30+�#��h	�\�d%V1��r._'��
�.�¬�W
�;}�w�-����2����eE��M�{w��D#�^4HvҬ�=�b'Ν{w�^����{�S���b��(����(����k�?:z��i�F��޽�{v��A���
�w����ݽg=;;����p�~�B��Ђ��DG@�Q́\z�la`n�\TRG��'���{��p�'����D�����?Fي%TRM���:L���M�G��(��P��%�[l�)xɸT$�l��EK{j�X���p�%�\1���de)���`�Qߩ����n�U�i�O�G�̒���Bp�̗���Y�"J��Y[���▨���nuz�wF�)���	i�Ɛ%�
�	�|20_�ΐ�iu02�E�
D�"�$�	:J�*�<��6L|���)��f����=PFɟ�`�C.no�����"�`��/E�Z6�)J>��D�dcTfC��9��80ߵj�m>|�/�	 �ںuˆ�[>�u�Ony�[�<��5[��֭�ݽz+n��f�s�l�Ɯ����Ϳ�2�򕱱�^�6v
�>�ǰn��kX'��Z~z���+���i��k>��g6lY��k|��ǟ���ٲ��Ƿl��ݏ�;���G~�u���+�
���X.�E .��;�5�?@�7��A�H��Y�F� vy�O�a���#M�Y&x��NK�#�䬉������C��0L�豰�1y[.�b����D_8�zB�Ij�R�pl]9���	j��$g�L���_L���UI���<�L��H#��G6�l�v]��
���4�i�C��9�v���D!>ؠAٌ�LR��$p�kL(L��!0_��P�ku+��=�I��'��OK�'�:!�Lo�G��R'N��t��(���m;vlnj,��Z5��FS��NZ�$8M�9.��&aFBy��DZf����.\�y�0�:0缕��s�q�O�ٹ�'>�zÚ�?���5�Y�����Gvbu��
�}v���O=8]�7._������\�r��Q�q���+��^����^�2:��+�ݫW?�a�5�?�s�jZžs�꟬�ȚO=�wÆ�w�5{�Fa.�'/]�F�6ź0x,EK\zLR�1�}ČH)�	F:�7ᅡ/	����l.�0{P���ԉ�9{.�T�ś�;	��\���Q�n8����A��L;�	��l~,�O���Jx�ҕM�\Q[�E|.��E@���Ϧ�T>ƃ6e����F��nܦ�n���H,��Knx�&��\�a��A9r���h$�EŒ	b���^�ތ���K_�2��<~u �Ck)|6�PES�6���e�j�LK�w��D#����|bs3ƭ�ٴ����u`5v�t�%�x�n�0�~�Q�YerH�E��D6d��as���[��ؾ%z#�¼�&lOgz#��jd�-�\����0i��(��{n��	o���7:�a�nOE��c�0�B7���0k^�EJ<�J�t;�>�c%��h����X�0~>	���	g]���r���t�/���`�K����#�����ބs�c�;VK��6��&�x�wƱi�!��D�s�v�	޸j�H��)��'6o��˳;�j"�5�����`�u1fL$���h�0d�_�1Q�n���i2S}��fm�092H�(%!�&��p�q����u�K;%�$���
�lO���_�Ac��0���ʣ��]se�_u`9Ѿl����r��nc+������b�GIӾ	D3�!�m2(�H8ټ+��e۟|�2�훗��H�Q�#��&�,,:�80��0�W&%S*�9�踷�I���;��m�� !gu�Gq��QO�}/9�y4{��Amz����.�i=������=���;�Q�$`���c�˝�w��$��L��b�[����Cɍ+̒x[�����c��DA|�&s�f���H�`Ⲑ�䟋�u�w�8�!-u�x�N��U�Y����~$��js0U͇lJ8�"1{�W��S���%C��^��%�>/	^20˹`�.+Q|p�ѩ��VhLq"p10��"�Ig�y�r0c��	���-���\8�⢨ۂao-�C>� *�Z�Mƿ��U�"�ʋdhL'�510aP�+�OB�b�eORq��+(�c�`��37����T*z��K�Z$����%`�L����4}�5�_��sg1�Swn=�P��o�~��*�V�B��6ŊR
�m)��:�Rm�,���ݖ��l����1�|��	�l�/>4��93����*e�����\��w��^G>?��{�9of�u�smμ۝�9A���7����G����_:8�?�yg��^9iZQƅлť.��n%�֑Y�sm���9��Y��Mf�=��(��T!������(������a�W<�&��.Uz�y9�Ϡ;���W���~��vRy����j*r�&�Y��0*��doS�αz6k��0�%E�F�\k�Ȣ`����Pr�q�O�2�W�i���й'h��8��۰Zh|0x9��9Zu)��d���t�[�����R
gͭ 7�D�T��86��dZ'�L�$W��XVdz�)�<�ۀ�0NGd�������,�Y�)�����*�ť�⸼@NfRT��m�d���fk����J�)�_��7;z"��}�L��'�&Ǯ20�Y�ЎU�jŜP��L�_�3��0���|$�B�닶��A�ng����mpqc��5��	��;��n�ig��Co}�{�{���˭��ݟ��u���	�L��FOnu��r���9\�m�s�3���L�&�dM=�5]B@Il᳁
�o��߀y�Rt@e�U�\W�ɀ��Һ̥�B<\Zk�����h9Y<}���H�����s>i��ɚ��-´D�H��<�d���F3�����.����D�KV|�P��I�%�s���D�x�;��aE5��u�񊪨�Kn1���Pe/��׀�n�a]��d�[u-��s.PWy�j�o�̥d��K�;GP��(�K�2��=�LL!&Z���e���*��|�p���'��sX8.����jpuɽ4۱�*lvvu52%?h�D�(� U4�L��z���m�`�a�� "%�	�2�@�C*��;}��(��h��
g��+�3:y�z>��r�����|�_&7y�w��_��VSv4���dA���""�s�0�I;���z)L��Є��TM���E�jc^|�׷��P����DT'���	ǧ�	K棁I��^�/��̳�l`
���E8�u���S�-�b*&�
FUq��Xǂ�R���Hf��.H�/����g�z�0������Tj�z�QMa��7�	�:��10�,��)q��Ξa+&�MQ�\T�L+\�$�{�0�	SF�۬X�q�!6J���Ф�c������p�1�.��Y�7n�c�z�8�n����]�rx��1Ty���٫�}�1�A	/�<�&5�l���Z}���!2?��v�K0Z��E.���x�%N�q�%����G}^)��SdU�U%;�&�D`�Q\6J�4&��I�ANJ��q��� `?Z�O��c`S������z�\ZV���a47�RyۗM��FS�v)~�&��F�y�j֒BpCCKQ�+>&���@L��lN^V�����F���oR8.A�Y!���>b�f<"IFU����c4�Zh�ѥ!�RR�h4�FH�����K�9L�{������3r����U�Gj��fmB��~y�|���S�+k�P�{*���r�Mi/9H��a�c��K�n��$2a$ll�`�
�va�~x"TƱ#ðy��̈́�|aL8��֋��d��O���B��b�W���0U`���;�%_�������� �x�t���
��@n�8�|IvH����C;X�C�&��k����c���"ɑ�#[����^�6��.���2����d;��٧BA�IT�EIB�W7^�#�>^A����s\�����
0��(�V�i���v�����)f����HCgo(Zw�&�BpV�S���>lmi��ٚ��$�
������Ղr���C�����@7��G�J�!�5p��L�T0�b�f�D8D�1MR(�Q���h�L�L��T�5�m�[u�0������.����	��[��=L�^X֕��s6�!�X�F!H��!�n�5��^��L_^�����r��V��klh���F�ԧE�P��T oj��R9�ه��04SF boož�����G=*2�����
���3�
��yg9L�D���e������	������uh���םxK�F=:�	�:R�"g����S���7����-D�������_9&��7ڃ�?7��	x]��/�����.���;dܸ���G�&�`
-�Ѕ�1�F@
(�u�h��_�38���
���!�Y�&��V.�}�q=ڰ�^�&`^c`��[��XV,-(-WmŅ��a"�l1���P�[b/��AyK�m��
OIT� ^"�(�f�a�N&
�D8^�X�4`
#�H�|��K,�) �5���v
A�p�T�˩�U`~�{��@�!u!d?TEP�V�LF҃#@ר�o���iG~�Ф7�4���i�o#(��Jr+���jyV2E#��?,�9E�l��&%)��}��}LL(QcSEK����:-�xKx	L�0?�&�����޾Y�aN��2�����C�O$�sM�x��W�y�@�̍	�Y�ƹo&��΄�]��9��ys{m�Ag��➻���5��tw9���N'�yd�ru4���$�����c�$N���|zir��=�L�����y�N[��z�=������.w�{��=�֕;��d�`�,[!<	�>Y�"q]�\z��k_�C��|��
�r坕fl�.��w�^~�P���J%��u�h8I�V��n��r)��d�(]8m3�J-�R��KC��C#��DŽ|g����'���JH-$���&\��"V�L�/����C� s��i�"ϓt1��.�K�!y��܃��k�������Z��ȩ1�e�A�Uc$�iz�t0�4f�Rc�E��q(ⶮB¿����'���:`6	4��L��۫�}�6��Vq�(��L�@C	���H���܌t?f�mB(��i�!�vQ�c��Ž}cWW�B��#W��d�����H���:k;�@�c�#y���Y���0z���9Lh�_�&,�ȯ�|	rv~���X&�qT�O�2t��;��ì���ui|+�Y�n��/I�u�2;�̇�>XA��ʥZ2��7�j��J�yI˚�	���kAT<�hu;\ڲ>eL����K��N����F�����la5Q��:zd�^J�چ�A2/�(���0k�V��E1{����L��N'�������b	�y-�E������I��`%ݥ&U�1�R��w?d��Vҁ���S�+�|�7�T��ʧ��-��O�\z8[cOR$n�>nWL�.^�+u�`@$&S4)SK�abI5�Z[�����Ai�g��c���h"��S4��|3L��`l[�����k/H�44���)���bQ�ajv.<̻���gl~�9���aj��J�
4�U�Z�Hy�NTyP�A���
+�0��&�WP�H�ffj���c���Ѳ�+��'jF�F9*>�rsS��O7#f��FH��w3ռzc�V�J[T^�4u'{%z}Y浯P��a��v�\^�0R��w5�;�*��>�V�ۨ��l�F$/��D&I	H���X�*��4��F�nDC!Ǽ,v��}��|���LK7��%��y~���dVb	�Yb�C�Ϣa���*ô�Oe
�Z���8��⃆�cv/+}嚤��j&�v�v`r���zM�c>L��a���H�!����D̩��@V4�/aDLϛ7!�db�L�£ҼC_&��0�i������=�	^�Rd
�Ddav�P(��
C}c�����FV�s�a����uz�g�t�{�y��<�X�+�v�D��Yw��]��?mν�G�Z��
�nn�e�Ҭ{��+��X���
���;ڰ,�?��R>sq�4�ζŎ�E��-��d`�%\ߊwg�J��"9�`���K��0�/Mh�3�Ĝ5韝��x\K_�U=
cAA�gu`^��u� m�BP^72r�n����K�(Vm�^��mm�3Ra�!��\�%""�ڢX'Pt*�ި�	�/���Tю��9�E������݁��$0��u���BR^=��,�KUSKa*��z�l���`�a쓶j����41/q�2��*%5�]1��K����
��ss�ѬE��2��:Mz��I�n�Q�<E�S�<<L+S�)�S�!��[�6��TQ���=X�S�#�g�L�TbB��>I)K���pE
�\M��V#�c��TXE`���x�f�c����m��.ļ뎊>/�n��p
��3�vzБ{��mL|���^�o���0�U�����]�z~9��p�ԀvP3��N�G�/o|�r�6\P�w=�����>ߕs�lL�n|�F�~20َ�Hsw�zX嘘�����ʯ9���������B��@�%��\���9��	�j�<`������\_ߺݖb��a�lilF�
T���|���j���(A��S�D�>���`*��G�s�/eh�<L���;L&����d托���E���V)HS�,��D�."�P��0��\�����T�a����)C�m�����q"��o3v6�9��TZ��$c`����2���
*V���"��3����
�^�h��#JW�OD�ݎ�H�[�>���|
`:x���	�=�-�����_>V�Hp'%ZY�$�v-a�������
�@�C#��9�0�{k��qw���g�=0�P���p|�"͜���q��C;N��@&��&���G��*�WX��s��W������3�=�#�2�Y�,�ڠw�g���D���*�!b�D��I*Lހf�C��O1�K����d�y�,(�א�I%��R�9�9�܉�K<���FZ{ע)���0�HZ��bh�꺑w�4t�P�߀6��5fx�ŸLSD`�Ḍ%��2�J��y:�q��(��1�Fc��t�iT�E�h�nmK/�_r�v`����q��*L�2
:��k���~�%��(h6�J��&RGa\�����&z#+��Ɗ0�ڝ��D��l&��!X�d�R�!��S|)T[�[S�&hMl�i7151�M��D��/�s�eXle��vCص6��s������{�o��{6td��,F�Az\~Y6����A��1c$�����ޥ��E�����0���a�+L��tJ���̡��D�%,ml��i��pVm�	^�ђ���kO�O
�A�����q��W^	<����<Y&�)�Ox =xLω�Cc��E���p��L_�����%��D��?����&:M8�:r3�Z�0�#���������j!�y�۵0�sbV�o�3.�i�[-
b:p��!�yk���FG^�	{!*QY���W!1Ǽ�K�0CGոjjK##�����(��t2���H$���v�P�x3�=<��6R
�jB.8
$�儢[�N�0�o��>L%w0]���tё�Ir<$s���LL���*��K�/�5�g��`6:NI�@Ɍ�*�hR5��Jթ@@5���2�D=.&NȬ �	��	�T������!\r��|~�*�r7o��ʓ_��bm@O��v�FO�S��oV���;�y�����9�O����g;}Vθ������<0�c��fNG��n�Ha�_]��]�;���(�u)f�0z�.��Zm�߻y��f��+�X��zvȾ�|Qy�<��u�\S_��E�^ڀGBb1�Jz!�:p��i-Ѯ]K��K�R���{�2�u5!E����ncᢹ,�'�etGB��_�[�|k�з,+���g��r(ʋ�Y`��:��%L̽N�e>�ng�v�܇��|�yipE�9�x�8ˊ�0BBO��b���P�)3EJ�B�1��}Ʊ�	�U�7`Ba�"��ݸ<����F���^�����ڮm�w۴;�ֺe��|����y�`�)��x��s��㷯��Tc>���K~w.ya���cY���N���6��G.cO-9�dsb���qp��
N�tQ�.$�v�I.y�b�pʍ�j����{ɓRo�<��ťa��T��OŠ;��VG�<�8�Ȼ�q��5���T�.0�K�	
E��y�Ƀ���6��ׁ9�Tt��c6
0�iB�pɿ.y]��8�;1�nS4�S����=��8��w21�H4Y�Eq�r#O���[�u�\�~`^G\1���1�NԼ	ÔIc�S��7$�xC����$���9&[�ZN,�
Mi,��m�I;*$�uT������\�&�?��Fz�:$7�k_;Е���[K��J�}�>�0qA�\��Ý��F�D�>=����p�6��|�&z����w��j�枦��<rLr�v�+>?�֡����}$L��Ι�!�a�����GL���D�)��}<���xv�1�xo�x-�<�r��०D�03<�xi��"%�ȁ���+ul��hS�n��T���^J��0����F����̛6h�I>t3��W��7?X��՛�9/hG�r�x��EvāF6�d��\<k]�~��H�v���|�.����F+�)�q)Ȼ#�zM-�
X9<)a|�^P�:C�ME�H�eE𒾵7f"��eѐ �̥u��>��0���F���r�kkm�K�io�׾n�H�v2�y0�|���"��|7b}v��G�w�����g�ٿ^r�P`���ۨ�=f�Zlzt��e��ɑ��,93��|&R>����09��5�]?<��vH��̟��-2zBH��Q��4����0#~V�P�<d�0���7/a�roMҍ�]�	�sF�T�.�ۨ�J_3�xi�Y�|�㒜Z��RPҝ2�KLF�b��3��
;��1)�`�Kv0�fg��X���͇$��D_3���&�,1�O.0�=jF�5f�Z}�I���N�N��Ê|�vI*p�[P�J�Q3���)yN݈E0�A��g3�K��.9#Sd�$��eʩ#YNɟ]������!��gۢ����^��k��0�^ո����A��>;w���+�q¹|F'��1�n�I��{�K�v0���p��8��O̽�����9`�Y�I���t�K�B�9�qd�x7L����oXY~��]$�R��̳�e���f�RҘ��^aF$�G�D��yI���QrO��{��4��� `�/U��ju���T��զ|Ų���e�(rK#�0�ngx��T������^Ƽ�2xI����}�t���g�G^���+T$�&�8�q��"�/:*G��U��[͝��	���O{c�*��&K4"D�4��<QHDɂ�TB���H2�L3�ٗgv�C��xH[�X�~��孄��@��M���d��]><�s�.�{6�P�Y��tcvC��G 1�	`>���n/}��f�����N�0��n�ld1L���w4���~�K|��{��J�7� ~�.B�L��H_B
4���ļ"�J1��p���{�KR�0	wH��x������+L	>y��Z�DK�S�2��;0��I��IC�DXa2#PHC�f�Q�.ze9e����p��tO�'������k�~
X)�K�6mtGV��?���F�/aV㷞K.��R��{ht���Fr"�܅�]���bh��>�\��"��7���ͨ"���;��=�T�	��{v��++@̲�*<f�+k�V�V��R� &�83C�L��~�b�թjKK]`���&'�)��Mʐ����_�(s�:*�`_�mX��F�&j1�#�9\a
j��=� ����Ï>�,�����Av�;��^`�p�&w�q;�!�yj[	�����u�)LC�y���Q�g[!�����U4��2���/��f���>rɻ���Ta��(�åE�L+_4��”3<n^�C^P�K�݁4cS�+�{�++��;n30u��9p�K�
�j��x�x7��C��"xY�h������F�.r�2M�E���"7~�@�{y�;)L֗�R>0n#��G\��f���k%�"[]��Z{�Q�̵:;�d���"�%ҝ��(���(lL]�<�P�H�ԋ��OӲ��u�T;��*�I��\
��l��)�
�-�{�-�B�ys���/^I���� 0YQ
G_�<�vB�lw(����.���x�@ܟs����o�t�ё�ŋG��wLnئ/�;�6���@�^s�>%���K��]`.20o0qQR�㒱yu�o�ɜ?��_2.qǂm.��3�$�
C��s*��EO.��&�)\�[0]�@�3���k�f������0�
�M�
u%��������4-�^)cU[���1UI٘�idZ��3�IlC�i�R+c��T%��Vr�[��h��|O���DV�1�`�h07��)`�.��|6߉cI�����O��1��Ռ�/�r�"4�Ĵ1���եy١ d�T�X���Ѿ�y���cG��6�0N����,��Q߾-�P&�����v��K׌u���:R?�>��^��tf�ǎ��!q�?@����m�'�
"�ȧAp��CXu��zĿ�]�U�=�c��E�C���Iol+���=U@Z7��O]>l��
ԭ/�aj���3?D�/�e���2?B&�]G�#�Pkd6�ta��-��`�Er�
SR�M�%pIK��iz��k��za����
�D��f�f�=�hg`�UM$%��ü��!S��
���WT
9-=k�MU���2�x����P1LL�Q7��}�j�c�!kw&�2&��D!L�!�E���[��)N�N3��N�]^�%&�0�)GMhU��ۃF����v�GW�bF���u��1E��X�Ĝx��hP��b�:�0���Fϥٵ���ö��pLLʗ;f��•>�/~ia�C6���09�#1�܋���Ih��/0���>0T���}\(����|8�t"�&�'P�)�AB���qT�M�]L��z���T�tv�2�%��5���)a��_1�X[^�Ƥ�r`�������&����6�|�-a�Q���#��\����<?��K̼��%�c3`%��s��?�'�(��8M�TBAY[V�y0
&��֗]��@SS�/ՠ�P5W���h
���l�A��M
`���Zr��r���-�0�0Y`R��Z�®Ũ/����^�$�X��a�7R�䟳�D�Cs97c���>�����]�K�hP]�����[Jh�ƺy���16��PE�l.q7������*�I���_�˘sĆy�ƥ+W��=������.���s�w^;�ۊ�{o.]���{2�承�;�֦�(����~A|�+㥤�^�,vR7'����D����FM�:Q��e��l*8�9���K���s��lRݼL��{I�M���s�s{�m`BA/���B��3�5Y7�`Z���㽾<�iEd�Q���-���<�t����A��8ʋ�vj嗀rֺ/v��Lj0�����g��Z��y�H,^*1���R�T���[��	m$`&��:!�9�(ܩ˒��;�)1��x�����3�%���\3��"��4\JY�H�%hN9�+�fL�=��f�-�[������( H;]W?����f����[PZ�e݌�0���
��k����M���kn��I��b΍J�m���D��ȱ�s�U嘎�LF��&�X�H'����ro”���+��T%z��?�%d[V{m`�-b2/���u��+��ԧf擋�)$��!j�4���Y�"'�d����h��I��2ac��-�9����7�GGGz=���"03O]$K�w�Z������MU|�2���xs#8��b�,2L�*#�whä3?���C��K��],����4C#�*r	�yL�@�C";����ي�����zL��L�
���7�O�&)لd��u��	Z�|�[�|��x��J���}̰���w7���4U&��r]UaX�Y�ϛr,ubhh�PU��+�vDL5X"L��n���#��5L��(Y�`n
��TR����^�����z�ڵx�0���8[�遶ݻ�5�9 �F�_-��^.^u�Q��5�)�����Wx9;0��?]S?;|���\�Yل_`�W����J�����
��3�^��%��۱�����0��t`�y���9������47�jn�SQ�Di���/3.@�K�I�t]E�P	���pD�5�I����4�S����,M�A�l(��u��w���)ڭ�H��	yC�����5L�(�|p�/+|�Tit��a�`�!`�N��X4��t9��l�F&���hƾ��.
e
��4}b�j*����;*���UUr��d�U��s��⩮ju�<q=7l
�A�/���_��r��m9N�6�I{���jA�-�k��[��B�w����Ծ:ЩW���p!Bվ�E����j�X�U
�,��Yƒ	*�fɡ┦� ;"�'%�z�b���9��l�
�`n�u`2.C`�	��y�Fb@�$c��?x�9�@&�]k��L;����/]�TX��Ѝ�N_��S�[*$K��jU�L�kj��(
L9�`� ����LA�B73��1����Vr�
L?�(,�Lֲ1�M
�w�Ǜd`�δ0�'/r�|�5�1�6�r�r�0-S�Q��|�}�fRO�W���I9�Q��*(�1��	�N�]I���0�Tу@�D����DE�oL�)���Y2wEZ��mGv['Csg�|�;Z�KO�߻��_�^*�).	��4W�
s�L�0��~0���`�:�!&Ż1�"��J��.�K�]r+��i�#`�K��4��k��'l�����֌��%'`ZeJɴ�+P}N�D2��=Ј�sZ�di�MO\��t�>�	�`�z���@x+�}D<��ș�da��0�'����ν�&��>(�y��J�/^}����x�˧��D<��ޠCֲ�M�TU��&��ye�ۘǠ:��
���d��i���Un�uLN.��ר|�
b�_ꯖ?L��b�� 
��Y�ͮl�,��yrݖ��ć���iP4�Q�׿x٣Wu�G�b�j�
�Ok�kѿ̆o(
`.�K��2'`Κ�+Lf���� ���de}�öQ(6�>ń�S7F�K&�qW���i�a,�j%y�.:�S����E7�.q��
�d'�[P�<�A���0��	��W�@�N��.�@��y�̤E`��|H|CS�ஃ��B:�
?�.��E�}��x]����ա��E��G�r;"G҈P�l]W�ԓ�SO'��7����=�!�^y*֘jA�&\I�$9�q3�QF�f��u�$aߨ#Dz:�	p��KGU�lG����L�R����}�n�-��db�?2kCFx�����B��;�ն� �RjI.����c5*$ F��K�?��+����f
�B�S0ͩ�~PgfךT�֖�Z�d+���vf
/���L��ķ��x~n�ݚ���0Ϳ&L�a0J��/�3-���b�N5�{��ܠ.wR�F�I�C��PD� i��D� ���m�g4%���L��e��������MM[��$]ԧ!��.=�����3E�yɑ[��M�:Y|���Y�8ɘN��f0ȩ�Ŏ� ���q5��v�tE���í��ބi�>o+a�^�$�t-��5 �Da��
�ey�
z�_��욊����h��M��Br�R��8 ����ȁ&h�L�O�%a3�B��\0�#PB#RI�sW��<e��3�u	Y�y^�0/#�C/f0ެ�fL� �c�v��!'�Ǘ=
�h}��Oie�a��O�:�-d�7�������P�
�ْ���D#�?�v�@��ؘ>�:�k��Q8٬�f�K2�T�K���Kw�ٗ0ͭ�۲�y|��M�0�����mi��ޝ0E�Ϡ�0�����=��aaF!�Z�Շ�^n�|�l�}+�sG�}�k�f�	!�R�v�׭��@��E�Sk�k�����4
�_���w?��y/¬\^z�R���0=�B�'�G���	ɗW�}�!����j�^
���JJj����} !	�a����x4ݒO�r�+�4��^cfj9�����K��T�y��sVܜ���ٴ8
�q�I�x�&(� ����A��"+A(��BK)��a{){�K�'/�!�˂BW�5в
�R=x��Q|�'�L2Mڎk���tI⚝���t7A����ƩhTEQ"ss&rk����J��=6�+�0�"�(� ���+�}����޺�0�g$̋�64)�ym��0���y�Gb�[^�պ�0ӏ��{<�8�i��2瑦�摉��C�Z�`r��(͚z�$��P��4}-�R��J���̷zx�-���Lo���ou�Y:a^���%���P��������Ӎ���iҙ��coq�@ሇ�w���cQPf��CȚ�
F���h���iY�q(��j񄊭� �N��o�|��ٟ��؞9�#)�g/���I
��{�0&�i���N�K���-��";�bj#��
��ƥXQ�G�"���oC����r'߮4���:��F�Qi�;��ńg*�`���6���okd�0o~����5��o�7ФH'.�����J1�/��?����A���J�2|s����)![�!ś��	F7���1����0�6����
�lv��b��,P(�r�^\�p��^��7�ѫ�)L��������"Q'j�R��F�}�o�@.����Wi��&�E��)�#7w�p}Ȣ8�p"Q����zɷ�a�V[�Q�9�UC���ۉ(��m��9�-R��?��U��_A�ta<|��d��O����||���C~q`g6��F��/�4=ʤk��^�p=�eL�n���%��O~|��8�i�c�Kj=���w�V.��[��p��9Z�w�^kT�O��l�ڃ����Rt~^��r
x�蓃�$}r�2ፕ�j��Yp���V��
`�Bw����Y��
?{,fʡ�tT��K\���RޥT-�O��ښilyZ����)(M6��<�V	�����zn/_��}�_�.���I]�����K�~C��"7ݕNvÄy����pԬ��U�/Ee�3�;X���ku�X/:T�B	��1Vɠ١���4����
ȗ�Q�
��t�ֵ1+�k6vè�k�f����uh��M2=k��*0�,]!r)�q�'J�s���2,$ٚ	s�|���XC0�ޏ^T��[(JB`d�
��D9F{�ym��-����� Mh=���O�|y5�FR7��+f��'�.��	3��4)7Kozu���M��㷻���0OL��u�0�1	G��L
�e&L���uɵ��$�x�*���2�z��R�C{��Z�
�m���Ԝ��M�&S�(g�(L�oVyḾd�t�\�%�e	�7�ҩ�kJ��R���b:=0gf���ڋ�&�� �ڐC����
|›�[a�Y9�k��ilu�rBQـ�"AĻ,�&'�@��٥s����[M`�sۓ0O��=Z{ ��-��&Ń�_�
�$�.�0�XX���KH�P9�J�e�2:P�1C	SfG�ڳ)`Vj�|�Ug}�I`#�%
3f����w�<`�+S�?_r]2_�lY��+M�%!��Q`�;��rҤ9������c��,�%
3&��!��I�!l�� L��h4�%Sd�@
�id\��+	s���=�o�b	&�G'��O$#���I�"��N=�E'̀>��r�W���`	3 `�����}�*o�p�u�&3�4q��,`ǜBf��}�M���dΜ��ˎ/��K�/>14)�RT%���-�T	��X��s|�C�ݟ �pc��@��b�j�x�c����9<@
A�"C�G�`e��$�'ڲ�wߞ]���'�y��I��~Mki�&|Zsv�pG�b-�}�	O��c��-�A�:�2$a:�c�"�0�0�K�-�r*E�"n�q���k�.>W3�.Q��C^����d�u9iK�9nG���r\)�2�|Q��K�; aF7̄��ܹs���R���v}�Л�@h���y8�E&e9
�Y�r���~j������ƒ���zR����K���Κ�XΘ�><_���yZ�چ
��|'}��.�D�$e�%L.L�^Yre.-ah=�܋��*�q��J��%ξ�1^"�t�뒏X��R�4	nK?�ߙ�R@�+�uȻ�A��s&Qr%�����^i7a��7{���4�qmm��m�R�/�3��"�QEэq�^W��Dp1
AQA��.�~�9=�zs��S;>�wn�6:I��_�}��˭��n��F�L��[�cJ.���T����x���|��<:��9w�7s���xc/>#z���^on�4���9>�D���7�����t�-�*w�hEU�~�ė�˸SBc
v̞8󚂊9�Sr�a�,�$%�Q&�J$�yfc����h�]—�.U��-mW�-Q�D��e)
��T��XT>&�|A5�!�+��@~Ƌu��0
����[[�v�n�!)δ(��!+�
���2D�|5�;���*�8U#?�ȩ�g����7+����K�u����a��~�yMǭ��8!Ε�g�c���nj
B�bP!��&���t�+�4ٚZ-w�Ӵ'��[�x�I���`x����%� ��A�����fzŘ°d)��5�Q3�W�`�(�:g;g����g��6\c�ڪ1�(��鍨�Pܞ��/ߗ^��?;I�#�dI_�/����l�Չ�*pd�s��&�B}�u�����
�*�U-�͝�����?���B"�!�r��m1 0(�s��K7K�a��z�6��D�
&�FA�^oB��&k�d^�?�$/���
���)C:}9��Йx��Km��|ٴrL��J�����;��F��{ў�޿nL3���|`=�Jye���ȌoA������G���}���+�bu��cq�
�B\�v�(fz(*j��l��a2�.�(/�p��f�IV�H�|��Jn^,:���d�q��1I��̦(S�����:3�ȥX�Ф˕
diز&��ڬKm�LRLYq8)#���@�\�1tIw������LY��}; �Re����`p��i�kB�%��O9��[�l�҆	0KϺ
w^����~9K����i�l.�q�y�N�����뛭���*ǖ��L_h�L"b��7��P�=M���.�� @-T��c�DU$Y�֙Dɪ�Ԗ�K���6ݔ�(�M䛉.���n~s����V�]׋�7�KY�
=hTϞ����N���V�S&4�5qdw(#�%�D�iS^>x����}���x����א
!k��d+1�ˋ�<��`qqy���[}3�r�RBVV�Ɉ0�L�������)k'�)���	�\,��K&R��f�����1�I1N��QT��"u�/i��
1�b�dz�>�
��S��-^�*�27���m�R��П��jl3k���%G�\V��{6�y��_R>�(pB�=���&	ݙ
�9o>t�A�J�'^�aB�H1aLu&�Ɍ���ԍM���������!}�<n`�y%l	_���ˤn��e��5mY)�'���A����k�n�ë�N(zL�	���v��d�B^F�[
��^ڜ�}p��ѷ�ʴ��=�����?,o��a��=�D�d6��^ج�wtz��^�S�|�+�	ŘY	�ZL�/"/��abO�?3cw�C*��*%]�(l��&�0�L(ShÚ��ӢB��Z�r����(S��c|Y�<���M��5�Ԇ�ꎬ��9Z���8����]��i���ku�)�I9���(���߸����[m4��)TJ��M�k�3��(���	FBǰY��P��Ư����i:�&���/��i�"���2�Z�@ȧ 9�V��L1�۾p8gB�	�Z���F��}V��.�[���+�K���F[-��P�eN�Ugco���R�JД1$�Í[��Ь�HsL���/ur̂,��)�[
���UrT�_���G@�����l���T�`�����j��5�����D�܍���˙J���z��BE��Z	�8`HYڦ�-�I:{ĎvnɌk��5�����[���$攕MG��IE�l�B�i�F"� a�C��S�ɸ��_���K��ȲdR��sVD��K��s�.1��d�"�Ę����&��,�,[�i�5V��G�����(E"��C6�n��V �����z;��x�2����9aeC�9>�Ή0\i�2K��ӓfRY��T`P�ܽ��I�:�vp��-%š¯@~�6��o-:�P?���,
K����R�>O��"+�H2M_��0U���'�c���C���_Yu-H��������ɿ��n���<�ݹ$aC.�%2�j�cB�ōg�4@�X�@6��m�yg��&�ዂz7c;�4���u�%/..���n�,�x�q���&�'����+c��\G�	Kn�?RRΤC�F&�p�,��k*,\��$Q`���/%fq�M
�ՙ��i����J�q�L�,�N��|_�O	Ό�
-m����pͮp��֙�$6�����6w�JIA-U�I[tU�A��U��+Nͨ�	�#��6�tGiw	���a��c#z8ɋ
��j[DS��c%���1oו)��ĴN��>����x��|+����S_s�S��C\�\�H8��͚qw���P��@�RJ�āT�,i
��.x�pD�+6P?D�f�U�4�&s��#-� ����W�7p
��-gL^k_�������[9��$Y���g�q��Թ�l
X�s���ĒLO��g|85JB���L�0�L�^4�U8Έֳ��%&��O���BX�͇s���� ��Wt�}ԗI�b\W'��@zb�"�E�F�9���%�g�n�7$��>�h�3y��[�@�q�'�s�f�ѠXOd/R��΃n
�:BJ�o!�z�;	�s��eM�Q�.-�F/	CcO`xP�aXeU:"��#�>��(��
@��mϑ����?��
�#GJ�& aHt���j0vۡ���3n���!j�Z�"c�%|�@[�ƻ������=”G�M�t/�gh�$��t� ��UJ��Dz��=�	.+R�����<X1,��B��Hݖ������sn�Xhvp9Hj��i+x�D�B�G9z����xkV�Z�)�_�Z���~a�-�/Ugly�$%��l~Q������]�k*�.03߁OC�c�l�c�F0T�'���O�:�T�1a���eR?���M	�ha��W>�2Dye�{J��ZD�����M)����z�3����3n�D�x�[���r���!~�GөKb�qM2�c7��Pd��W���G��{Se�Urδ�z
�l\
>߹��|�R����K�-`/�xD>;��!����x2�.�2�e}n���4x=[�U����\��"�P����~ZJQ,L����X��z�;��K���[���#y�بоW5%��R�Q�P�D����8���]�z�iq�Z[�R}RK��*��SZ��K�{�5��8-t�TPA� +�#L1����w0��K!�L��)�![π�S�F
AlEo��<&�NX5��G�L QL(�蟞��=��yj%k-�}E�MSjc�����D�Є��
��	�q*�ʰ���/�\����<�lB��Ő��(���UE���s��~�M�^n9�Y�����8db��҄qZC�����A��[��~~O�c��a(j���L�ヤ�(��Z�V+���;gi>�X��(zT��RFn����q㕤uΪ�)ci�)��wT��HK�<�9ހ�;����yScm�;��r����gĤba*�F������٣�Z�1r�W8�
���_%<�̚�W�GGJ+ʌ2��Ü?��R��%pt��ypˀсw��
D�nD�E.e�0�Y�R���`�X��)?o<�k�?ʞS0<�
�H���)���]�=pgzĽlr�AB�
��W�O6�`�ƃA"�[���0W�ً���:�d�G�K��VQl��=-r�6,,�ѝ�g0�8�g��F�9�yq�����0�7�T�Ƽ��k���¤^���a�#���khf�1/��-C�����Tm�c��3R�c|�a��x��dsz�aBSf¤$L�Qd��ˍ��F��y�����46<E
0�n�T�1yC�Z[��n���jS+DǍo��]3�(_�+�7t�PD�q���M�6ܙ���(p�N|�]�zmz�_E7A�48���C,��w�	�����i -�L���$q�ھƘ+�l���v��c����<��Q&�z8q����#h�;�Ñ�w�9�/�05�����?b��>�cvP��(AC�A��W7sN�(�V=���L�$D�+�kཌྷ�o%]�I�?�;�~[�"��d���U�!q\e�Ϡ�J�\��[���)����?��X��
+�x�x�7�a�g�}�lF~�AH���$�Q*�Y��������@ �|'�'��
c2���4{6?��D	ۮ����S@zU~�ٍ<g�D��(��S#��~%��R�����y_�ar�]\���F��%�O�	]�䉼E��L�8�ל#�2B���nF*�-�J1���
��y���@&x}�Sѧ��<���(��̩����pgf�	�aֆ�A9oZ�?��\�Wx�<�|n>h1!�B��6�T(�b,�o�@Q�R�I�`w�W3�x�
���h��&��龝�>��
G���(ѱ�N���J��V�õ�s���u
|��惈����Qq�#��kL�-�Lz�
 [uhX�%�cz!h��'��W�pSC+�")�j��=��h�%:��:��pU˰��^�m�u��|-��i��a���.E��c���S1b�+�S7��M�Uڟ��0gǐO��ᷯT�{��TX�\|1�+��!��F��2�2\,D�f�\dӲ�̈́��X�ku��Ey��e��V
n�&�$���3,d��,����u���RQ�0ŧʝz�*�F��t\�b��R�b�
�59�x#.��H<�6�����C�T��3�|��e>KqT,��=곸��9U	a����eC���8�(8's�؊�}0�jw,ݡ��{=^tE+�0����Rd'S��x�}���+>'Vה�<����t��ܷ<��J�����ǿbf�p�c��
�x誊9/���FsV��B6�D�*�Wn:����3d���Y�[{#�����*����,���[Ӯ�_�	#L��*Ze�'��G�,��iȳ��z�Oe���T���F�y[f���d �2�n|�[�0�(���G��~g� `&2#/ϴ3�L����`�!\����̪MIEND�B`�PK�uKXs(66spiko/admin/assets/js/ajax.jsjQuery(document).ready(function() {

	/* Tabs in welcome page */
		function spiko_welcome_page_tabs(event) {
			jQuery(event).parent().addClass("active");
		   jQuery(event).parent().siblings().removeClass("active");
		   var tab = jQuery(event).attr("href");
		   jQuery(".spiko-tab-pane").not(tab).css("display", "none");
		   jQuery(tab).fadeIn();
		}
    
        jQuery(".spiko-nav-tabs li").slice(0,1).addClass("active");

	    jQuery(".spiko-nav-tabs a").click(function(event) {
		   event.preventDefault();
			spiko_welcome_page_tabs(this);
	    });
	   
		/* Tab Content height matches admin menu height for scrolling purpouses */
		$tab = jQuery('.spiko-tab-content > div');
		$admin_menu_height = jQuery('#adminmenu').height();
		if( (typeof $tab !== 'undefined') && (typeof $admin_menu_height !== 'undefined') )
		{
		    $newheight = $admin_menu_height - 180;
		    $tab.css('min-height',$newheight);
		}
	
		jQuery(".spiko-custom-class").click(function(event){
		   event.preventDefault();
		   jQuery('.spiko-nav-tabs li a[href="#changelog"]').click();
		});

});PK�uKX.�{{'spiko/admin/assets/js/plugin-install.jsjQuery(document).ready(function($) {
    'use strict';
    var this_obj = spiko_companion_install;

    $(document).on('click', '.spicethemes-plugin-install', function(event) {
        event.preventDefault();
        var button = $(this);
        var slug = button.data('slug');
        button.text(this_obj.installing + '...').addClass('updating-message');
        wp.updates.installPlugin({
            slug: slug,
            success: function(data) {
                button.attr('href', data.activateUrl);
                button.text(this_obj.activating + '...');
                button.removeClass('button-secondary updating-message spicethemes-plugin-install');
                button.addClass('button-primary spicethemes-plugin-activate');
                button.trigger('click');
            },
            error: function(data) {
                console.log('error', data);
                button.removeClass('updating-message');
                button.text(this_obj.error);
            },
        });
    });

    $(document).on('click', '.spicethemes-plugin-activate', function(event) {
        event.preventDefault();
        var button = $(this);
        var url = button.attr('href');
        if (typeof url !== 'undefined') {
            // Request plugin activation.
            jQuery.ajax({
                async: true,
                type: 'GET',
                url: url,
                beforeSend: function() {
                    button.text(this_obj.activating + '...');
                    button.removeClass('button-secondary');
                    button.addClass('button-primary activate-now updating-message');
                },
                success: function(data) {
                    location.reload();
                }
            });
        }
    });


    $(document).on('click', '.action-watch', function(event) {
        event.preventDefault();
        var action_id = $(this).parents('.action').attr('id');
        var $icon =   $(this).children('.dashicons');
        if(action_id){
            $.ajax({
                url: this_obj.ajax_url,
                type: 'POST',
                data: {action: 'spiko_update_rec_acts', action_id:action_id},
                success:function(data) {
                    if($icon.hasClass('dashicons-visibility')){
                        $icon.removeClass('dashicons-visibility');
                        $icon.addClass('dashicons-hidden');
                    }else{
                        $icon.removeClass('dashicons-hidden');
                        $icon.addClass('dashicons-visibility');
                    }
                }
            });
        }
        
    });

    $(document).on('click', '.spicethemes-customizer-notification-dismiss', function(event) {
        event.preventDefault();
        var $container = $(this).parent();
        var $icon_child = $(this).children('i.fa'); 
        if($icon_child.hasClass('fa-refresh')){
            return;
        }
        var slug = $(this).data('slug');
        var sdata = {};
        if(slug){
            sdata.action = 'spiko_hide_customizer_notice';
            sdata.spiko_plugin_slug = slug;
        }else{
            sdata.action = 'spiko_hide_customizer_companion_notice';
        }
        $icon_child.removeClass('fa-times').addClass('fa-refresh fa-spin');
        $.ajax({
            url: this_obj.ajax_url,
            type: 'POST',
            data: sdata,
            success:function(data) {
                console.log(data);
                $container.remove();
            }
        });
    });
    
    
});

jQuery(function(){
	var $mainContent=jQuery('#main-content'),
	$cat_links=jQuery('ul.categories-filters li a');
	
	$cat_links.on('click',function(e){
		e.preventDefault();
		$e1=jQuery(this);
		var value=$e1.attr("href");
		$mainContent.animate({opacity:"0.5"});
		$mainContent.load(value + "#getting_started",function(){
		$mainContent.animate({opacity:"1"});	
		});
	});
});PK�uKXGJ�i�I�I0spiko/admin/inc/class-spicethemes-about-page.php<?php
/**
 * @author spicethemes
 */

if (!class_exists('Spiko_About_Page')) {
	class Spiko_About_Page {

		protected static $instance;
		private $options;
		private $version = '1.0.0';
		private $theme;
		private $demo_link;
		private $docs_link;
		private $rate_link;
		private $theme_page;
		private $pro_link;
		private $tabs;
		private $action_count;
		private $recommended_actions;

		public static function get_instance() {

			if (is_null(self::$instance)) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		function __construct() {
			$this->theme            = wp_get_theme();
			$actions                   = $this->get_recommended_actions();
			$this->action_count        = $actions['count'];
			$this->recommended_actions = $actions['actions'];

			add_action('admin_menu', array($this, 'add_theme_info_menu'));
			add_action('wp_ajax_spiko_update_rec_acts', array($this, 'update_recommended_actions_watch'));
			add_action('load-themes.php', array($this, 'activation_admin_notice'));
			/* enqueue script and style for welcome screen */
			add_action( 'admin_enqueue_scripts', array( $this, 'style_and_scripts' ) );
			
			/* load welcome screen */
			add_action( 'spiko_info_screen', array( $this, 'getting_started' ), 10 );
			add_action( 'spiko_info_screen', array( $this, 'recommended_actions' ), 50 );
			
		}

		/**
	 	* Load welcome screen css and javascript
	 	* @sfunctionse  1.8.2.4
	 	*/
		public function style_and_scripts( $hook_suffix ) {

			if ( 'appearance_page_spiko-welcome' == $hook_suffix ) {
			
				wp_enqueue_style( 'spiko-info-screen-css', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/css/welcome.css' );
				
				wp_enqueue_style( 'spiko-info-css', SPIKO_TEMPLATE_DIR_URI . '/assets/css/bootstrap.css' );
				
				wp_enqueue_style('spiko-theme-info-style', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/css/welcome-page-styles.css');
				
				wp_enqueue_style('spiko-welcome_customizer', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/css/welcome_customizer.css');
				wp_enqueue_script('plugin-install');
				wp_enqueue_script('updates');
				wp_enqueue_script('spiko-companion-install', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/js/plugin-install.js', array('jquery'));
				wp_enqueue_script('spiko-ajax', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/js/ajax.js', array('jquery'));
				wp_localize_script('spiko-companion-install', 'spiko_companion_install',
				array(
					'installing' => esc_html__('Installing', 'spiko' ),
					'activating' => esc_html__('Activating', 'spiko' ),
					'error'      => esc_html__('Error', 'spiko' ),
					'ajax_url'   => esc_url(admin_url('admin-ajax.php')),
				));
			}
		}

		/**
		 * Load scripts for customizer page
		 * @sfunctionse  1.8.2.4
		 */
		public function scripts_for_customizer() {

			wp_enqueue_style( 'spiko-info-screen-customizer-css', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/css/welcome_customizer.css' );
			wp_enqueue_script( 'spiko-info-screen-customizer-js', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/js/welcome_customizer.js', array('jquery'), '20120206', true );

			global $spiko_required_actions;

			$nr_actions_required = 0;

			/* get number of required actions */
			if( get_option('spiko_show_required_actions') ):
				$spiko_show_required_actions = get_option('spiko_show_required_actions');
			else:
				$spiko_show_required_actions = array();
			endif;

			if( !empty($spiko_required_actions) ):
				foreach( $spiko_required_actions as $spiko_required_action_value ):
					if(( !isset( $spiko_required_action_value['check'] ) || ( isset( $spiko_required_action_value['check'] ) && ( $spiko_required_action_value['check'] == false ) ) ) && ((isset($spiko_show_required_actions[$spiko_required_action_value['id']]) && ($spiko_show_required_actions[$spiko_required_action_value['id']] == true)) || !isset($spiko_show_required_actions[$spiko_required_action_value['id']]) )) :
						$nr_actions_required++;
					endif;
				endforeach;
			endif;

			wp_localize_script( 'spiko-info-screen-customizer-js', 'softwareLiteWelcomeScreenCustomizerObject', array(
				'nr_actions_required' => $nr_actions_required,
				'aboutpage' => esc_url( admin_url( 'themes.php?page=spiko-info' ) ),
				'customizerpage' => esc_url( admin_url( 'customize.php' ) ),
				'themeinfo' => esc_html__('View Theme Info','spiko' ),
			) );
		}
		
		public function add_theme_info_menu() {
			$theme = $this->theme;
			$count = $this->action_count;
			$count = ($count > 0) ? '<span class="awaiting-mod action-count"><span>' . $count . '</span></span>' : '';
			$title = sprintf(esc_html__('About %1$s %2$s', 'spiko' ), esc_html($theme->get('Name')), $count);
			add_theme_page(sprintf(esc_html__('Welcome to %1$s %2$s', 'spiko' ), esc_html($theme->get('Name')), esc_html($theme->get('Version'))), $title, 'edit_theme_options', 'spiko-welcome', array($this, 'print_welcome_page'));
		}

		public function activation_admin_notice() {
			global $pagenow;
			if (is_admin() && ('themes.php' == $pagenow) && isset($_GET['activated'])) {
				add_action('admin_notices', array($this, 'welcome_admin_notice'), 99);
			}
		}

		public function welcome_admin_notice() {
			?>
			<div class="updated notice is-dismissible">
				<p><?php echo sprintf( esc_html__("Spiko theme is installed. To take full advantage of the features this theme has to offer visit our %1\$swelcome page%2\$s", 'spiko'), '<a href="' . esc_url( admin_url( 'themes.php?page=spiko-welcome' ) ) . '">', '</a>' ); ?></p>
				<p><a href="<?php echo esc_url(admin_url('themes.php?page=spiko-welcome')); ?>" class="button" style="text-decoration: none;"><?php esc_html_e( 'Get started with Spiko theme', 'spiko'  ); ?></a></p>
			</div>
			<?php
		}

		public function print_welcome_page() {
			$theme = $this->theme;
			?>
	  		<div class="container-fluid">
				<div class="row">
					<div class="col-md-12">
						<div class="wrap theme-info-wrap spiko-wrap">
							<div style="clear: both;"></div>
							<div class="theme-welcome-container" style="min-height:300px;">
								<div class="theme-welcome-inner">
									<?php
										$tabs = $this->get_tabs_array();
										$tabs_head     = '';
										$tab_file_path = '';
										$active_tab    = 'getting_started';

										if (isset($_GET['tab']) && $_GET['tab']) {
											$active_tab = sanitize_text_field($_GET['tab']);
										}

										foreach ($tabs as $key => $tab) {
											$active_class = '';
											$count        = '';
											if ($active_tab == $tab['link']) {
												
												$tab_file_path = $tab['file_path'];
											}

											if ($tab['link'] == 'recommended_actions') {
												$count = $this->action_count;
												$count = ($count > 0) ? '<span class="badge-action-count">' . $count . '</span>' : '';
											}
			                             
											$tabs_head .= sprintf('<li role="presentation"><a href="%s" class="nav-tab %s" role="tab" data-toggle="tab">%s</a></li>', esc_url(('#' . $tab['link'])), $active_class, $tab['name'] . $count);
											                    
										}
										
									?>
									<ul class="spiko-nav-tabs" role="tablist">
										<?php echo wp_kses_post($tabs_head); ?>
									</ul>
									 
									<div class="spiko-tab-content">
										<?php do_action( 'spiko_info_screen' ); ?>
									</div>
									
									<div class="tab-content <?php echo esc_attr($active_tab); ?>">
									 	<?php
											if (!empty($tab_file_path) && file_exists($tab_file_path)) {
												require_once $tab_file_path;
											}
										?>
									 	<div style="clear: both;"></div>
									</div>
								</div>
							</div>
						</div>
					</div>
				</div>
			</div>
			<?php
		}
		
		public function getting_started() {
			require_once( SPIKO_TEMPLATE_DIR . '/admin/tab-pages/getting-started.php' );
		}
	
	   /**
		 * Recommended Action
		 * 
		 */
		public function recommended_actions() {
			require_once( SPIKO_TEMPLATE_DIR . '/admin/tab-pages/recommended_actions.php' );
		}
	
		
		/**
		 * Parse changelog from readme file.
		 *
		 * @param  string $content
		 *
		 * @return string
		 */
		private function parse_changelog( $content ) {
			$matches   = null;
			$regexp    = '~==\s*Changelog\s*==(.*)($)~Uis';
			$changelog = '';

			if ( preg_match( $regexp, $content, $matches ) ) {
				$changes = explode( '\r\n', trim( $matches[1] ) );

				$changelog .= '<pre class="changelog">';

				foreach ( $changes as $index => $line ) {
					$changelog .= wp_kses_post( preg_replace( '~(=\s*Version\s*(\d+(?:\.\d+)+)\s*=|$)~Uis', '<span class="title">${1}</span>', $line ) );
				}

				$changelog .= '</pre>';
			}
			return wp_kses_post( $changelog );
		}
	
		public function get_tabs_array() {
			$tabs_array = array();
			
			$tabs_array[]	= array(
					'link'      => 'getting_started',
					'name'      => esc_html__('Getting Started', 'spiko' ),
					'file_path' => SPIKO_TEMPLATE_DIR . '/admin/tab-pages/getting-started.php',
				);
				
			$tabs_array[]	= 	array(
					'link'      => 'recommended_actions',
					'name'      => esc_html__('Recommended Actions', 'spiko' ),
					'file_path' => SPIKO_TEMPLATE_DIR . '/admin/tab-pages/recommended-actions.php',
				);
							
			return $tabs_array;
		}

		public function get_recommended_plugins() {
			
			$plugins = apply_filters('spiko_recommended_plugins', array());
			return $plugins;
		}

		public function get_useful_plugins() {
			$plugins = apply_filters('spiko_useful_plugins', array());
			return $plugins;
		}

		public function get_recommended_actions() {

			$act_count           = 0;
			$actions_todo = get_option( 'recommended_actions', array());
			
			$plugins = $this->get_recommended_plugins();

			if ($plugins) {
				foreach ($plugins as $key => $plugin) {
					$action = array();
					if (!isset($plugin['slug'])) {
						continue;
					}

					$action['id']   = 'install_' . $plugin['slug'];
					$action['desc'] = '';
					if (isset($plugin['desc'])) {
						$action['desc'] = $plugin['desc'];
					}

					$action['name'] = '';
					if (isset($plugin['name'])) {
						$action['title'] = $plugin['name'];
					}

					$link_and_is_done  = $this->get_plugin_buttion($plugin['slug'], $plugin['name']);
					$action['link']    = $link_and_is_done['button'];
					$action['is_done'] = $link_and_is_done['done'];
					if (!$action['is_done'] && (!isset($actions_todo[$action['id']]) || !$actions_todo[$action['id']])) {
						$act_count++;
					}
					$recommended_actions[] = $action;
					$actions_todo[]        = array('id' => $action['id'], 'watch' => true);
				}
				return array('count' => $act_count, 'actions' => $recommended_actions);
			}

		}

		public function get_plugin_buttion($slug, $name) {
			$is_done      = false;
			$button_html  = '';
			$is_installed = $this->is_plugin_installed($slug);
			$plugin_path  = $this->get_plugin_basename_from_slug($slug);
			$is_activeted = $this->chk_plg($name);
			if (!$is_installed) {
				$plugin_install_url = add_query_arg(
					array(
						'action' => 'install-plugin',
						'plugin' => $slug,
					),
					self_admin_url('update.php')
				);
				$plugin_install_url = wp_nonce_url($plugin_install_url, 'install-plugin_' . $slug);
				
				
				
				$button_html        = sprintf('<a class="spicethemes-plugin-install install-now button-secondary button" data-slug="%1$s" href="%2$s" aria-label="%3$s" data-name="%4$s">%5$s</a>',
					esc_attr($slug),
					esc_url($plugin_install_url),
					sprintf(esc_html__('Install %s now', 'spiko' ), esc_html($name)),
					esc_html($name),
					esc_html__('Install and activate', 'spiko' )
				);
			} elseif ($is_installed && !$is_activeted) {

				$plugin_activate_link = add_query_arg(
					array(
						'action'        => 'activate',
						'plugin'        => rawurlencode($plugin_path),
						'plugin_status' => 'all',
						'paged'         => '1',
						'_wpnonce'      => wp_create_nonce('activate-plugin_' . $plugin_path),
					), self_admin_url('plugins.php')
				);

				$button_html = sprintf('<a class="spicethemes-plugin-activate activate-now button-primary button" data-slug="%1$s" href="%2$s" aria-label="%3$s" data-name="%4$s">%5$s</a>',
					esc_attr($slug),
					esc_url($plugin_activate_link),
					sprintf(esc_html__('Activate %s now', 'spiko' ), esc_html($name)),
					esc_html($name),
					esc_html__('Activate', 'spiko' )
				);
			} elseif ($is_activeted) {
				$button_html = sprintf('<div class="action-link button disabled"><span class="dashicons dashicons-yes"></span> %s</div>', esc_html__('Active', 'spiko' ));
				$is_done     = true;
			}

			return array('done' => $is_done, 'button' => $button_html);
		}

		public function chk_plg($name)
		{
			if (  function_exists( 'spiceb_activate' ) && ($name=='Spice Box'))
			{
				return true;
			}
			if( class_exists('WPCF7') && ($name=='Contact Form 7'))
			{
				return true;
			}
			if( class_exists('Unique_Headers_Instantiate') && ($name=='Unique Headers'))
			{
				return true;
			}
			if( class_exists('woocommerce') && ($name=='WooCommerce'))
			{
				return true;
			}
			if( function_exists('wpseo_init') && ($name=='Yoast SEO'))
			{
				return true;
			}
			if( class_exists('Spice_Post_Slider') && ($name=='Spice Post Slider'))
			{
				return true;
			}
			if( class_exists('Spice_Social_Share') && ($name=='Spice Social Share'))
            {
                return true;
            }
			if( function_exists('sobw_fs') && ($name=='Seo Optimized Images'))
			{
				return true;
			}

		}

		public function get_plugin_basename_from_slug($slug) {
			$keys = array_keys($this->get_installed_plugins());
			foreach ($keys as $key) {
				if (preg_match('|^' . $slug . '/|', $key)) {
					return $key;
				}
			}
			return $slug;
		}

		public function is_plugin_installed($slug) {
			$installed_plugins = $this->get_installed_plugins(); // Retrieve a list of all installed plugins (WP cached).
			$file_path         = $this->get_plugin_basename_from_slug($slug);
			return (!empty($installed_plugins[$file_path]));
		}

		public function get_installed_plugins() {

			if (!function_exists('get_plugins')) {
				require_once ABSPATH . 'wp-admin/includes/plugin.php';
			}

			return get_plugins();
		}

		public function update_recommended_actions_watch() {
			if (isset($_POST['action_id'])) {
				$action_id    = sanitize_text_field($_POST['action_id']);
				$actions_todo = get_option('recommended_actions', array());

				if ((!isset($actions_todo[$action_id]) || !$actions_todo[$action_id])) {
					$actions_todo[$action_id] = true;
				} else {
					$actions_todo[$action_id] = false;
				}
				update_option('recommended_actions', $actions_todo);
			}
			echo json_encode(get_option('recommended_actions'));
			wp_die();
		}


		public function get_plugin_info_api( $slug ) {
			require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
			$call_api = get_transient( 'st_about_plugin_info_' . $slug );

			if ( false === $call_api ) {
				$call_api = plugins_api(
					'plugin_information', array(
						'slug'   => $slug,
						'fields' => array(
							'downloaded'        => false,
							'rating'            => false,
							'description'       => false,
							'short_description' => true,
							'donate_link'       => false,
							'tags'              => false,
							'sections'          => true,
							'homepage'          => true,
							'added'             => false,
							'last_updated'      => false,
							'compatibility'     => false,
							'tested'            => false,
							'requires'          => false,
							'downloadlink'      => false,
							'icons'             => true,
						),
					)
				);
				set_transient( 'st_about_plugin_info_' . $slug, $call_api, 30 * MINUTE_IN_SECONDS );
			}

			return $call_api;
		}

		public function get_plugin_icon( $icons ) {

			if ( ! empty( $icons['svg'] ) ) {
				$plugin_icon_url = $icons['svg'];
			} elseif ( ! empty( $icons['2x'] ) ) {
				$plugin_icon_url = $icons['2x'];
			} elseif ( ! empty( $icons['1x'] ) ) {
				$plugin_icon_url = $icons['1x'];
			} else {
				$plugin_icon_url = SPIKO_TEMPLATE_DIR . '/admin/assets/images/placeholder_plugin.png';
			}
			return $plugin_icon_url;
		}
	}
}

function spiko_useful_plugins_array($plugins){
	$plugins[] = array(
					'slug'     => 'elementor',
				);

	return $plugins;
}
add_filter('spiko_useful_plugins', 'spiko_useful_plugins_array');

function spiko_recommended_plugins_array($plugins){
	
		$plugins[] = array(
						'name'     => esc_html__('Spice Box', 'spiko' ),
						'slug'     => 'spicebox',
						'desc'     => esc_html__('To access the advanced Frontpage sections and the other features, please install the Spice Box plugin.', 'spiko' ),
					);
				
		$plugins[] = array(
					'name'     => esc_html__('Contact Form 7', 'spiko' ),
					'slug'     => 'contact-form-7',
					'desc'     => esc_html__('To display the contact form, please install the Contact Form 7 plugin.', 'spiko' ),
				);
	
		$plugins[] = array(
			        'name' => esc_html__('Unique Headers', 'spiko'),
			        'slug' => 'unique-headers',
			        'desc' => esc_html__('You can add different banner image for a different page or post according to you.', 'spiko'),
	                );
		 $plugins[] = array(
			        'name' => esc_html__('WooCommerce', 'spiko'),
			        'slug' => 'woocommerce',
			        'desc' => esc_html__('To create a shop page you just need to install this plugin & activate it.', 'spiko'),
			    );
	
		$plugins[] = array(
					'name'     => esc_html__('Yoast SEO', 'spiko'),
					'slug'     => 'wordpress-seo',
					'desc'     => esc_html__('To display breadcrumbs, please install the Yoast SEO plugin.', 'spiko'),
				    );

		$plugins[] = array(
					'name'     => esc_html__('Spice Post Slider', 'spiko'),
					'slug'     => 'spice-post-slider',
					'desc'     => esc_html__('To display the posts in beautiful slider with multiple options you just need to install & activate this plugin.', 'spiko'),
					);

		$plugins[] = array(
			        'name'     => esc_html__('Spice Social Share', 'spiko'),
			        'slug'     => 'spice-social-share',
			        'desc'     => esc_html__('To add social share buttons to your posts you just need to install & activate this plugin.', 'spiko'),
        			);
		$plugins[] = array(
			'name'     => esc_html__('Seo Optimized Images','spiko'),
            'slug'     => 'seo-optimized-images',
            'desc'     => esc_html__('It is recommended that you install & activate the Seo Optimized Images plugin to dynamically insert SEO Friendly alt attributes and title attributes to your Images.', 'spiko'),
		);					

	return $plugins;
}
add_filter('spiko_recommended_plugins', 'spiko_recommended_plugins_array');

function spiko_about_page() {
	return Spiko_About_Page::get_instance();
}
global $spiko_about_page;
$spiko_about_page = spiko_about_page();PK�uKX��֜�%spiko/admin/inc/include-companion.php<?php
/**
 * This file implements custom requirements for the spicebox Plugin.
 * It can be used as-is in themes (drop-in).
 *
 */

$spiko_hide_install = get_option('spiko_hide_customizer_companion_notice', false);
if (!function_exists('spicebox') && !$spiko_hide_install) {
	if (class_exists('WP_Customize_Section') && !class_exists('Spiko_Companion_Installer_Section')) {
		/**
		 *
		 * @see WP_Customize_Section
		 */
		class Spiko_Companion_Installer_Section extends WP_Customize_Section {
			/**
			 * Customize section type.
			 *
			 * @access public
			 * @var string
			 */
			public $type = 'spiko_companion_installer';

			public function __construct($manager, $id, $args = array()) {
				parent::__construct($manager, $id, $args);

				add_action('customize_controls_enqueue_scripts', 'Spiko_Companion_Installer_Section::enqueue');
			}

			/**
			 * enqueue styles and scripts
			 *
			 *
			 **/
			public static function enqueue() {
				wp_enqueue_script('plugin-install');
				wp_enqueue_script('updates');
				wp_enqueue_script('spiko-companion-install', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/js/plugin-install.js', array('jquery'));
				wp_localize_script('spiko-companion-install', 'spiko_companion_install',
					array(
						'installing' => esc_html__('Installing', 'spiko' ),
						'activating' => esc_html__('Activating', 'spiko' ),
						'error'      => esc_html__('Error', 'spiko' ),
						'ajax_url'   => esc_url(admin_url('admin-ajax.php')),
					)
				);
			}
			/**
			 * Render the section.
			 *
			 * @access protected
			 */
			protected function render() {
				// Determine if the plugin is not installed, or just inactive.
				$plugins   = get_plugins();
				$installed = false;
				foreach ($plugins as $plugin) {
					if ('Spice Box' === $plugin['Name']) {
						$installed = true;
					}
				}
				$slug = 'spicebox';
				// Get the plugin-installation URL.
				$classes            = 'cannot-expand accordion-section control-section-companion control-section control-section-themes control-section-' . $this->type;
				?>
				<li id="accordion-section-<?php echo esc_attr($this->id); ?>" class="<?php echo esc_attr($classes); ?>">
					<span class="spicethemes-customizer-notification-dismiss" id="companion-install-dismiss" href="#companion-install-dismiss"> <i class="fa fa-times"></i></span>
					<?php if (!$installed): ?>
					<?php 
						$plugin_install_url = add_query_arg(
							array(
								'action' => 'install-plugin',
								'plugin' => $slug,
							),
							self_admin_url('update.php')
						);
						$plugin_install_url = wp_nonce_url($plugin_install_url, 'install-plugin_spicebox');
					 ?>
						<p><?php esc_html_e("To take advantage of this theme's features in the customizer you need to install the Spice Box plugin.", 'spiko');?></p>
						<a class="spicethemes-plugin-install install-now button-secondary button" data-slug="spicebox" href="<?php echo esc_url($plugin_install_url); ?>" aria-label="<?php esc_attr_e('Install Spice Box Now', 'spiko' );?>" data-name="<?php esc_attr_e('Spice Box', 'spiko' ); ?>">
							<?php esc_html_e('Install and activate', 'spiko' );?>
						</a>
					<?php else: ?>
						<?php 
							$plugin_link_suffix = $slug . '/' . $slug . '.php';
							$plugin_activate_link = add_query_arg(
								array(
									'action'        => 'activate',
									'plugin'        => rawurlencode( $plugin_link_suffix ),
									'plugin_status' => 'all',
									'paged'         => '1',
									'_wpnonce'      => wp_create_nonce( 'activate-plugin_' . $plugin_link_suffix ),
								), self_admin_url( 'plugins.php' )
							);
						?>
						<p><?php esc_html_e("You have installed the Spice Box plugin. To take advantage of this theme's features in the customizer, you need to activate it.", 'spiko');?></p>
						<a class="spicethemes-plugin-activate activate-now button-primary button" data-slug="spicebox" href="<?php echo esc_url($plugin_activate_link); ?>" aria-label="<?php esc_attr_e('Activate Spice Box now', 'spiko' );?>" data-name="<?php esc_attr_e('Spice Box', 'spiko' ); ?>">
							<?php esc_html_e('Activate now', 'spiko' );?>
						</a>
					<?php endif;?>
				</li>
				<?php
			}
		}
	}

	if (!function_exists('spiko_companion_installer_register')) {
		/**
		 * Registers the section, setting & control for the Spice Box installer.
		 *
		 * @param object $wp_customize The main customizer object.
		 */
		function spiko_companion_installer_register($wp_customize) {
			$wp_customize->add_section(new Spiko_Companion_Installer_Section($wp_customize, 'spiko_companion_installer', array(
				'title'      => '',
				'capability' => 'install_plugins',
				'priority'   => 0,
			)));

		}
		add_action('customize_register', 'spiko_companion_installer_register');
	}
}

function spiko_hide_customizer_companion_notice(){
	update_option('spiko_hide_customizer_companion_notice', true);
	echo true;
	wp_die();
}
add_action('wp_ajax_spiko_hide_customizer_companion_notice', 'spiko_hide_customizer_companion_notice');PK�uKX�.x�dd*spiko/admin/inc/plugin-include-control.php<?php
/**
 * This file implements custom requirements for the Spice Box plugin.
 * It can be used as-is in themes (drop-in).
 *
 */

if (class_exists('WP_Customize_Control') && !class_exists('Spiko_Plugin_Install_Control'))
{
	/**
	 *
	 * @see WP_Customize_Section
	 */
	class Spiko_Plugin_Install_Control extends WP_Customize_Control {
		/**
		 * Customize section type.
		 *
		 * @access public
		 * @var string
		 */
		public $type = 'Spiko_Plugin_Install_Control';
		public $name = '';
		public $slug = '';

		public function __construct($manager, $id, $args = array()) {
			parent::__construct($manager, $id, $args);
		}

		/**
		 * enqueue styles and scripts
		 *
		 *
		 **/
		public  function enqueue() {
			wp_enqueue_script('plugin-install');
			wp_enqueue_script('updates');
			wp_enqueue_script('spiko-companion-install', SPIKO_TEMPLATE_DIR_URI . '/admin/assets/js/plugin-install.js', array('jquery'));
			wp_localize_script('spiko-companion-install', 'Spiko_companion_install',
				array(
					'installing' => esc_html__('Installing', 'spiko' ),
					'activating' => esc_html__('Activating', 'spiko' ),
					'error'      => esc_html__('Error', 'spiko' ),
					'ajax_url'   => esc_url(admin_url('admin-ajax.php')),
				)
			);
		}
		/**
		 * Render the section.
		 *
		 * @access protected
		 */
		protected function render_content() {
			// Determine if the plugin is not installed, or just inactive.
			
			if(empty($this->name) && empty($this->slug)){
				return;
			}
			
			$hide_install = get_option('spiko_hide_customizer_notice_'.$this->slug,  false);
			if($hide_install){
				return;
			}

			global $spiko_about_page;
			if(!is_object($spiko_about_page)){
				return;
			}
			?>
			<div class="spicethemes-plugin-install-control">
				<span class="spicethemes-customizer-notification-dismiss" id="<?php echo esc_attr($this->slug); ?>-install-dismiss" data-slug="<?php echo esc_attr($this->slug); ?>"> <i class="fa fa-times"></i></span>
				<?php if ( ! empty( $this->label ) ) : ?>
		            <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
		        <?php endif; ?>
		        <?php if ( ! empty( $this->description ) ) : ?>
		            <span class="description customize-control-description"><?php echo wp_kses_post($this->description) ; ?></span>
		        <?php endif; ?>
				<?php 
					$button = $Spiko_About_Page->get_plugin_buttion($this->slug, $this->name);
					echo wp_kses_post($button['button']);
				?>
				<div style="clear: both;"></div>
			</div>
			<?php
		}
	}
}

function spiko_hide_customizer_notice(){
	if(isset($_POST['spiko_plugin_slug']) && !empty($_POST['spiko_plugin_slug'])){
		$plugin_slug = sanitize_text_field($_POST['spiko_plugin_slug']);
		update_option('spiko_hide_customizer_notice_'.$plugin_slug, true);
		echo true;
	}
	wp_die();
}
add_action('wp_ajax_spiko_hide_customizer_notice', 'spiko_hide_customizer_notice');PK�uKX�.�,,)spiko/admin/tab-pages/getting-started.php<?php
/**
 * Getting started template
 */
?>
<div id="getting_started" class="spiko-tab-pane active">
	<div class="container-fluid">
		<div class="row">
			<div class="col-md-12">
				<h1 class="spiko-info-title text-center"><?php echo esc_html__('Spiko Theme Configuration','spiko'); ?><?php if( !empty($spiko['Version']) ): ?> <sup id="spiko-theme-version"><?php echo esc_html( $spiko['Version'] ); ?> </sup><?php endif; ?></h1>
			</div>
		</div>
		<div class="row" style="margin-top: 20px;">

			<div class="col-md-12">
			    <div class="spiko-page" style="border: none;box-shadow: none;">
					<div class="mockup">
			    		<img src="<?php echo SPIKO_TEMPLATE_DIR_URI.'/admin/assets/img/mockup-lite.png';?>"  width="100%">
			    	</div>
				</div>	
			</div>	

		</div>
		
		<div class="row" style="margin-top: 20px;">
			<div class="col-md-6"> 
				<div class="spiko-page">
					<div class="spiko-page-top"><?php esc_html_e( 'Additional features in Spiko Plus', 'spiko' ); ?></div>
					<div class="spiko-page-content">
						<ul class="spiko-page-list-flex">
							<li>
								<?php echo esc_html__('Unlimited slides','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Unlimited services','spiko'); ?>
							</li>					
							<li>
								<?php echo esc_html__('Boxed layout support','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Portfolio section','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Funfact section','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Google Maps section','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Client section','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Multiple Blog templates','spiko'); ?>
							</li>
						
							<li>
								<?php echo esc_html__('WPML support','spiko'); ?>
							</li>
							
							<li>
								<?php echo esc_html__('Drag and drop section orders','spiko'); ?>
							</li>
							
							<li>
								<?php echo esc_html__('Team section with grid effect','spiko'); ?>
							</li>
							
							<li>
								<?php echo esc_html__('Shop section with unlimited items','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Shop section with carousel effect','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Testimonial section with grid effect','spiko'); ?>
							</li>
							<li>
								<?php echo esc_html__('Homepage Sections Before/After Hooks','spiko'); ?>
							</li>
							
							<li>
								<?php echo esc_html__('Homepage Sections Shortcode','spiko'); ?>
							</li>
							
						</ul>
					</div>
				</div>
			</div>

			<div class="col-md-6"> 
				<div class="spiko-page">
					<div class="spiko-page-top"><?php esc_html_e( 'Links to Customizer Settings', 'spiko' ); ?></div>
					<div class="spiko-page-content">
						<ul class="spiko-page-list-flex">
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[section]=title_tagline' ) ); ?>" target="_blank"><?php esc_html_e('Site Logo','spiko'); ?></a>
							</li>
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[panel]=spiko_theme_panel' ) ); ?>" target="_blank"><?php esc_html_e('Blog Options','spiko'); ?></a>
							</li>
							 <li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[panel]=widgets' ) ); ?>" target="_blank"><?php esc_html_e('Footer Widgets','spiko'); ?></a>
							</li>
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[panel]=section_settings' ) ); ?>" target="_blank"><?php esc_html_e('Homepage Sections','spiko'); ?></a>
							</li>
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[panel]=spiko_general_settings' ) ); ?>" target="_blank"><?php esc_html_e('General Settings','spiko'); ?></a>
							</li>
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[panel]=colors_back_settings' ) ); ?>" target="_blank"><?php esc_html_e('Colors & Background','spiko'); ?></a>
							</li>
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[panel]=spiko_typography_setting' ) ); ?>" target="_blank"><?php esc_html_e('Typography Settings','spiko'); ?></a>
							</li>
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url( admin_url( 'customize.php?autofocus[section]=theme_style' ) ); ?>" target="_blank"><?php esc_html_e('Theme Style Settings','spiko'); ?></a>
							</li>
						</ul>
					</div>
				</div>
				
				<div class="spiko-page">
					<div class="spiko-page-top"><?php esc_html_e( 'Useful Links', 'spiko' ); ?></div>
					<div class="spiko-page-content">
						<ul class="spiko-page-list-flex">
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://spiko.spicethemes.com/'); ?>" target="_blank"><?php echo esc_html__('Spiko Demo','spiko'); ?></a>
							</li>
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://spiko-pro.spicethemes.com/'); ?>" target="_blank"><?php echo esc_html__('Spiko Plus Demo','spiko'); ?></a>
							</li>

							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://wordpress.org/support/theme/spiko/'); ?>" target="_blank"><?php echo esc_html__('Spiko Theme Support','spiko'); ?></a>
							</li>
														
						    <li> 
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://wordpress.org/support/theme/spiko/reviews/#new-post'); ?>" target="_blank"><?php echo esc_html__('Your feedback is valuable to us','spiko'); ?></a>
							</li>
							
							<li>
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://spicethemes.com/spiko-plus'); ?>" target="_blank"><?php echo esc_html__('Spiko Plus Details','spiko'); ?></a>
							</li>
							
						    <li> 
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://spicethemes.com/contact/'); ?>" target="_blank"><?php echo esc_html__('Pre-sales enquiry','spiko'); ?></a>
							</li> 

							<li> 
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://spicethemes.com/spiko-free-vs-plus/'); ?>" target="_blank"><?php echo esc_html__('Free vs Plus','spiko'); ?></a>
							</li> 

							<li> 
								<a class="spiko-page-quick-setting-link" href="<?php echo esc_url('https://spicethemes.com/spiko-changelog/'); ?>" target="_blank"><?php echo esc_html__('Changelog','spiko'); ?></a>
							</li> 
						</ul>
					</div>
				</div>
			</div>		
		</div>
	</div>
</div>PK�uKX+�����-spiko/admin/tab-pages/recommended_actions.php<?php 
	$spiko_actions = $this->recommended_actions;
	$spiko_actions_todo = get_option( 'recommended_actions', false );
?>
<div id="recommended_actions" class="spiko-tab-pane panel-close">
	<div class="action-list">
		<?php if($spiko_actions): foreach ($spiko_actions as $key => $spiko_val): ?>
		<div class="action col-md-6" id="<?php echo esc_attr($spiko_val['id']); ?>">
			<div class="action-box">
				<div class="action-watch">
				<?php if(!$spiko_val['is_done']): ?>
					<?php if(!isset($spiko_actions_todo[$spiko_val['id']]) || !$spiko_actions_todo[$spiko_val['id']]): ?>
						<span class="dashicons dashicons-visibility"></span>
					<?php else: ?>
						<span class="dashicons dashicons-hidden"></span>
					<?php endif; ?>
				<?php else: ?>
					<span class="dashicons dashicons-yes"></span>
				<?php endif; ?>
				</div>
				<div class="action-inner">
					<h3 class="action-title"><?php echo esc_html($spiko_val['title']); ?></h3>
					<div class="action-desc"><?php echo esc_html($spiko_val['desc']); ?></div>
					<?php echo wp_kses_post($spiko_val['link']); ?>
				</div>
			</div>
		</div>
		<?php endforeach; endif; ?>
	</div>
</div>PK�uKX��s`N�N�"spiko/assets/css/bootstrap-rtl.css/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
    width: device-width;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: right;
    background-color: #fff;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-right: 0;
}

blockquote {
    margin: 0 0 1rem;
}

dfn {
    font-style: italic;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: right;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-right: 0;
    list-style: none;
}

.list-inline {
    padding-right: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-left: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "\2014 \00A0";
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #6c757d;
}

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-right: 8.333333%;
}

.offset-2 {
    margin-right: 16.666667%;
}

.offset-3 {
    margin-right: 25%;
}

.offset-4 {
    margin-right: 33.333333%;
}

.offset-5 {
    margin-right: 41.666667%;
}

.offset-6 {
    margin-right: 50%;
}

.offset-7 {
    margin-right: 58.333333%;
}

.offset-8 {
    margin-right: 66.666667%;
}

.offset-9 {
    margin-right: 75%;
}

.offset-10 {
    margin-right: 83.333333%;
}

.offset-11 {
    margin-right: 91.666667%;
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-sm-0 {
        margin-right: 0;
    }
    .offset-sm-1 {
        margin-right: 8.333333%;
    }
    .offset-sm-2 {
        margin-right: 16.666667%;
    }
    .offset-sm-3 {
        margin-right: 25%;
    }
    .offset-sm-4 {
        margin-right: 33.333333%;
    }
    .offset-sm-5 {
        margin-right: 41.666667%;
    }
    .offset-sm-6 {
        margin-right: 50%;
    }
    .offset-sm-7 {
        margin-right: 58.333333%;
    }
    .offset-sm-8 {
        margin-right: 66.666667%;
    }
    .offset-sm-9 {
        margin-right: 75%;
    }
    .offset-sm-10 {
        margin-right: 83.333333%;
    }
    .offset-sm-11 {
        margin-right: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-md-0 {
        margin-right: 0;
    }
    .offset-md-1 {
        margin-right: 8.333333%;
    }
    .offset-md-2 {
        margin-right: 16.666667%;
    }
    .offset-md-3 {
        margin-right: 25%;
    }
    .offset-md-4 {
        margin-right: 33.333333%;
    }
    .offset-md-5 {
        margin-right: 41.666667%;
    }
    .offset-md-6 {
        margin-right: 50%;
    }
    .offset-md-7 {
        margin-right: 58.333333%;
    }
    .offset-md-8 {
        margin-right: 66.666667%;
    }
    .offset-md-9 {
        margin-right: 75%;
    }
    .offset-md-10 {
        margin-right: 83.333333%;
    }
    .offset-md-11 {
        margin-right: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-lg-0 {
        margin-right: 0;
    }
    .offset-lg-1 {
        margin-right: 8.333333%;
    }
    .offset-lg-2 {
        margin-right: 16.666667%;
    }
    .offset-lg-3 {
        margin-right: 25%;
    }
    .offset-lg-4 {
        margin-right: 33.333333%;
    }
    .offset-lg-5 {
        margin-right: 41.666667%;
    }
    .offset-lg-6 {
        margin-right: 50%;
    }
    .offset-lg-7 {
        margin-right: 58.333333%;
    }
    .offset-lg-8 {
        margin-right: 66.666667%;
    }
    .offset-lg-9 {
        margin-right: 75%;
    }
    .offset-lg-10 {
        margin-right: 83.333333%;
    }
    .offset-lg-11 {
        margin-right: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-xl-0 {
        margin-right: 0;
    }
    .offset-xl-1 {
        margin-right: 8.333333%;
    }
    .offset-xl-2 {
        margin-right: 16.666667%;
    }
    .offset-xl-3 {
        margin-right: 25%;
    }
    .offset-xl-4 {
        margin-right: 33.333333%;
    }
    .offset-xl-5 {
        margin-right: 41.666667%;
    }
    .offset-xl-6 {
        margin-right: 50%;
    }
    .offset-xl-7 {
        margin-right: 58.333333%;
    }
    .offset-xl-8 {
        margin-right: 66.666667%;
    }
    .offset-xl-9 {
        margin-right: 75%;
    }
    .offset-xl-10 {
        margin-right: 83.333333%;
    }
    .offset-xl-11 {
        margin-right: 91.666667%;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8daff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
    background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
    background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
    background-color: #bee5eb;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
    background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
    background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
    background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
    background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-md > .table-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-lg > .table-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-xl > .table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
    border: 0;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0;
    line-height: 1.5;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
.input-group-lg > .input-group-append > .form-control-plaintext.btn {
    padding-left: 0;
    padding-right: 0;
}

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px);
}

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-right: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-right: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
    margin-left: 0.75rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-left: 0.3125rem;
    margin-right: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.8);
    border-radius: .2rem;
}

.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid,
.custom-select.is-valid {
    border-color: #28a745;
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
.custom-select:valid:focus,
.custom-select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip, .was-validated
.custom-select:valid ~ .valid-feedback,
.was-validated
.custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    background-color: #71dd8a;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
    border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.8);
    border-radius: .2rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
.custom-select:invalid:focus,
.custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip, .was-validated
.custom-select:invalid ~ .invalid-feedback,
.was-validated
.custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: #efa2a9;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
    border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-inline .form-check {
    width: 100%;
}

@media (min-width: 576px) {
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }
    .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .form-control-plaintext {
        display: inline-block;
    }
    .form-inline .input-group {
        width: auto;
    }
    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-right: 0;
    }
    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-left: 0.25rem;
        margin-right: 0;
    }
    .form-inline .custom-control {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.fade.show {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

tr.collapse.show {
    display: table-row;
}

tbody.collapse.show {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-left: 0.3em solid transparent;
    border-bottom: 0;
    border-right: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    float: right;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-left: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-right: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropright .dropdown-menu {
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-right: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropright .dropdown-toggle::after {
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropleft .dropdown-toggle::after {
    display: none;
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-left: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
    z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
    z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
    margin-right: -1px;
}

.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group > .btn:first-child {
    margin-right: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-toggle-split {
    padding-left: 0.5625rem;
    padding-right: 0.5625rem;
}

.dropdown-toggle-split::after {
    margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
    width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-right: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file:focus {
    z-index: 3;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
    margin-right: -1px;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label,
.input-group > .custom-file:not(:first-child) .custom-file-label::before {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
    position: relative;
    z-index: 2;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
    margin-right: -1px;
}

.input-group-prepend {
    margin-left: -1px;
}

.input-group-append {
    margin-right: -1px;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
    margin-top: 0;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-right: 1.5rem;
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 1rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
}

.custom-control-label {
    margin-bottom: 0;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    right: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #dee2e6;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    right: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem 0.375rem 1.75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat left 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-left: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.custom-select::-ms-expand {
    opacity: 0;
}

.custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 75%;
}

.custom-select-lg {
    height: calc(2.875rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 125%;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0;
}

.custom-file-input:focus ~ .custom-file-control {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:focus ~ .custom-file-control::before {
    border-color: #80bdff;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse";
}

.custom-file-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(calc(2.25rem + 2px) - 1px * 2);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-right: 1px solid #ced4da;
    border-radius: 0.25rem 0 0 0.25rem;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
    text-decoration: none;
}

.nav-link.disabled {
    color: #6c757d;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #007bff;
}

.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-left: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu-right {
        left: 0;
        right: auto;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
    .navbar-expand-sm .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu-right {
        left: 0;
        right: auto;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
    .navbar-expand-md .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu-right {
        left: 0;
        right: auto;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-expand-lg .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu-right {
        left: 0;
        right: auto;
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
    .navbar-expand-xl .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

.navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .dropdown-menu-right {
    left: 0;
    right: auto;
}

.navbar-expand .navbar-nav .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-expand .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
    color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
    color: #fff;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card > hr {
    margin-left: 0;
    margin-right: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-right: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-left: -0.625rem;
    margin-bottom: -0.75rem;
    margin-right: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-right-radius: calc(0.25rem - 1px);
    border-top-left-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-left-radius: calc(0.25rem - 1px);
    border-bottom-right-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-left: -15px;
        margin-right: -15px;
    }
    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: 15px;
        margin-bottom: 0;
        margin-right: 15px;
    }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-right: 0;
        border-right: 0;
    }
    .card-group > .card:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:first-child .card-img-top,
    .card-group > .card:first-child .card-header {
        border-top-left-radius: 0;
    }
    .card-group > .card:first-child .card-img-bottom,
    .card-group > .card:first-child .card-footer {
        border-bottom-left-radius: 0;
    }
    .card-group > .card:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:last-child .card-img-top,
    .card-group > .card:last-child .card-header {
        border-top-right-radius: 0;
    }
    .card-group > .card:last-child .card-img-bottom,
    .card-group > .card:last-child .card-footer {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:only-child {
        border-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-img-top,
    .card-group > .card:only-child .card-header {
        border-top-right-radius: 0.25rem;
        border-top-left-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-img-bottom,
    .card-group > .card:only-child .card-footer {
        border-bottom-left-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-right: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item:first-child .page-link {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.badge-pill {
    padding-left: 0.6em;
    padding-right: 0.6em;
    border-radius: 10rem;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #0062cc;
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}

.badge-secondary[href]:hover, .badge-secondary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #545b62;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-success[href]:hover, .badge-success[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #1e7e34;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

.badge-info[href]:hover, .badge-info[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.badge-warning[href]:hover, .badge-warning[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #d39e00;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.badge-danger[href]:hover, .badge-danger[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #bd2130;
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

.badge-light[href]:hover, .badge-light[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #dae0e5;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

.badge-dark[href]:hover, .badge-dark[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #1d2124;
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

.jumbotron-fluid {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-left: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #007bff;
    transition: width 0.6s ease;
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.list-group-item:hover, .list-group-item:focus {
    z-index: 1;
    text-decoration: none;
}

.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    background-color: #fff;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-flush .list-group-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #004085;
    background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #383d41;
    background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #155724;
    background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #0c5460;
    background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #856404;
    background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #721c24;
    background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #818182;
    background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}

.close {
    float: left;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-right-radius: 0.3rem;
    border-top-left-radius: 0.3rem;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem auto -1rem -1rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
    margin-right: .25rem;
}

.modal-footer > :not(:last-child) {
    margin-left: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.popover {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
    margin-bottom: 0.5rem;
}

.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
    bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after {
    border-width: 0.5rem 0.5rem 0;
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
    bottom: 0;
    border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after {
    bottom: 1px;
    border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="left"] {
    margin-right: 0.5rem;
}

.bs-popover-right .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
    right: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after {
    border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
    right: 0;
    border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after {
    right: 1px;
    border-left-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
    margin-top: 0.5rem;
}

.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
    top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after {
    border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
    top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after {
    top: 1px;
    border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    right: 50%;
    display: block;
    width: 1rem;
    margin-right: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="right"] {
    margin-left: 0.5rem;
}

.bs-popover-left .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
    left: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after {
    border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
    left: 0;
    border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after {
    left: 1px;
    border-right-color: #fff;
}

.popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-right-radius: calc(0.3rem - 1px);
    border-top-left-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next,
    .active.carousel-item-right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-prev,
    .active.carousel-item-left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.carousel-control-prev {
    right: 0;
}

.carousel-control-next {
    left: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 10px;
    right: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 0;
    margin-left: 15%;
    margin-right: 15%;
    list-style: none;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-left: 3px;
    margin-right: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    left: 15%;
    bottom: 20px;
    right: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.bg-primary {
    background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #0062cc !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #545b62 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #1e7e34 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #117a8b !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-left: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-right: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-left: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-right: 0 !important;
}

.border-primary {
    border-color: #007bff !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #28a745 !important;
}

.border-info {
    border-color: #17a2b8 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-top {
    border-top-right-radius: 0.25rem !important;
    border-top-left-radius: 0.25rem !important;
}

.rounded-right {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-left {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-row {
        display: table-row !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-table {
        display: table !important;
    }
    .d-print-table-row {
        display: table-row !important;
    }
    .d-print-table-cell {
        display: table-cell !important;
    }
    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.float-left {
    float: right !important;
}

.float-right {
    float: left !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-left {
        float: right !important;
    }
    .float-sm-right {
        float: left !important;
    }
    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: right !important;
    }
    .float-md-right {
        float: left !important;
    }
    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: right !important;
    }
    .float-lg-right {
        float: left !important;
    }
    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: right !important;
    }
    .float-xl-right {
        float: left !important;
    }
    .float-xl-none {
        float: none !important;
    }
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-left: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-right: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-left: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-right: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-left: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-right: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-left: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-right: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-left: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-right: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-left: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-right: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-left: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-right: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }
    .mr-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }
    .ml-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }
    .mr-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }
    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }
    .mr-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }
    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }
    .mr-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }
    .ml-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }
    .mr-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }
    .mr-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }
    .ml-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }
    .pr-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }
    .pl-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }
    .pr-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }
    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }
    .pr-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }
    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }
    .pr-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }
    .pl-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }
    .pr-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }
    .pr-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }
    .pl-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }
    .mr-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }
    .ml-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }
    .mr-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .ml-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mr-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mr-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }
    .mr-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    .ml-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mr-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }
    .mr-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    .ml-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }
    .pr-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }
    .pl-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pr-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pr-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }
    .pr-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pl-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pr-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }
    .pr-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    .pl-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }
    .mr-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }
    .ml-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }
    .mr-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }
    .ml-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mr-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mr-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }
    .mr-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }
    .mr-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }
    .pr-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }
    .pl-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pr-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pr-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }
    .pr-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }
    .pr-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }
    .mr-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }
    .ml-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: right !important;
}

.text-right {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: right !important;
    }
    .text-sm-right {
        text-align: left !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: right !important;
    }
    .text-md-right {
        text-align: left !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: right !important;
    }
    .text-lg-right {
        text-align: left !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: right !important;
    }
    .text-xl-right {
        text-align: left !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #0062cc !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #545b62 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #1e7e34 !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #117a8b !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #d39e00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #bd2130 !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
    color: #dae0e5 !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
    color: #1d2124 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    body {
        min-width: 992px !important;
    }
    .container {
        min-width: 992px !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}PK�uKX�>�R����spiko/assets/css/bootstrap.css/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
    width: device-width;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

dfn {
    font-style: italic;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "\2014 \00A0";
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #6c757d;
}

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.333333%;
}

.offset-2 {
    margin-left: 16.666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.333333%;
}

.offset-5 {
    margin-left: 41.666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.333333%;
}

.offset-8 {
    margin-left: 66.666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.333333%;
}

.offset-11 {
    margin-left: 91.666667%;
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.333333%;
    }
    .offset-sm-2 {
        margin-left: 16.666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.333333%;
    }
    .offset-sm-5 {
        margin-left: 41.666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.333333%;
    }
    .offset-sm-8 {
        margin-left: 66.666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.333333%;
    }
    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.333333%;
    }
    .offset-md-2 {
        margin-left: 16.666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.333333%;
    }
    .offset-md-5 {
        margin-left: 41.666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.333333%;
    }
    .offset-md-8 {
        margin-left: 66.666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.333333%;
    }
    .offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
    .offset-lg-2 {
        margin-left: 16.666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.333333%;
    }
    .offset-lg-5 {
        margin-left: 41.666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.333333%;
    }
    .offset-lg-8 {
        margin-left: 66.666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.333333%;
    }
    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.333333%;
    }
    .offset-xl-2 {
        margin-left: 16.666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.333333%;
    }
    .offset-xl-5 {
        margin-left: 41.666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.333333%;
    }
    .offset-xl-8 {
        margin-left: 66.666667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.333333%;
    }
    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8daff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
    background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
    background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
    background-color: #bee5eb;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
    background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
    background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
    background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
    background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-md > .table-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-lg > .table-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-xl > .table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
    border: 0;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0;
    line-height: 1.5;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
.input-group-lg > .input-group-append > .form-control-plaintext.btn {
    padding-right: 0;
    padding-left: 0;
}

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px);
}

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.8);
    border-radius: .2rem;
}

.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid,
.custom-select.is-valid {
    border-color: #28a745;
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
.custom-select:valid:focus,
.custom-select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip, .was-validated
.custom-select:valid ~ .valid-feedback,
.was-validated
.custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    background-color: #71dd8a;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
    border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.8);
    border-radius: .2rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
.custom-select:invalid:focus,
.custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip, .was-validated
.custom-select:invalid ~ .invalid-feedback,
.was-validated
.custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: #efa2a9;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
    border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-inline .form-check {
    width: 100%;
}

@media (min-width: 576px) {
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }
    .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .form-control-plaintext {
        display: inline-block;
    }
    .form-inline .input-group {
        width: auto;
    }
    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }
    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }
    .form-inline .custom-control {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.fade.show {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

tr.collapse.show {
    display: table-row;
}

tbody.collapse.show {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-menu {
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-toggle::after {
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropleft .dropdown-toggle::after {
    display: none;
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
    z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
    z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.dropdown-toggle-split::after {
    margin-left: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
    width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file:focus {
    z-index: 3;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
    margin-left: -1px;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::before {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label,
.input-group > .custom-file:not(:first-child) .custom-file-label::before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
    position: relative;
    z-index: 2;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
    margin-left: -1px;
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
    margin-top: 0;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
}

.custom-control-label {
    margin-bottom: 0;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #dee2e6;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.custom-select::-ms-expand {
    opacity: 0;
}

.custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 75%;
}

.custom-select-lg {
    height: calc(2.875rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 125%;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0;
}

.custom-file-input:focus ~ .custom-file-control {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:focus ~ .custom-file-control::before {
    border-color: #80bdff;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse";
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(calc(2.25rem + 2px) - 1px * 2);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
    text-decoration: none;
}

.nav-link.disabled {
    color: #6c757d;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #007bff;
}

.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
    .navbar-expand-sm .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
    .navbar-expand-md .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-expand-lg .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
    .navbar-expand-xl .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

.navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-expand .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
    color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
    color: #fff;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group > .card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:first-child .card-img-top,
    .card-group > .card:first-child .card-header {
        border-top-right-radius: 0;
    }
    .card-group > .card:first-child .card-img-bottom,
    .card-group > .card:first-child .card-footer {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:last-child .card-img-top,
    .card-group > .card:last-child .card-header {
        border-top-left-radius: 0;
    }
    .card-group > .card:last-child .card-img-bottom,
    .card-group > .card:last-child .card-footer {
        border-bottom-left-radius: 0;
    }
    .card-group > .card:only-child {
        border-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-img-top,
    .card-group > .card:only-child .card-header {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-img-bottom,
    .card-group > .card:only-child .card-footer {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #0062cc;
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}

.badge-secondary[href]:hover, .badge-secondary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #545b62;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-success[href]:hover, .badge-success[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #1e7e34;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

.badge-info[href]:hover, .badge-info[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.badge-warning[href]:hover, .badge-warning[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #d39e00;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.badge-danger[href]:hover, .badge-danger[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #bd2130;
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

.badge-light[href]:hover, .badge-light[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #dae0e5;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

.badge-dark[href]:hover, .badge-dark[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #1d2124;
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #007bff;
    transition: width 0.6s ease;
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.list-group-item:hover, .list-group-item:focus {
    z-index: 1;
    text-decoration: none;
}

.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    background-color: #fff;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #004085;
    background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #383d41;
    background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #155724;
    background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #0c5460;
    background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #856404;
    background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #721c24;
    background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #818182;
    background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
    margin-bottom: 0.5rem;
}

.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
    bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after {
    border-width: 0.5rem 0.5rem 0;
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
    bottom: 0;
    border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after {
    bottom: 1px;
    border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
    margin-left: 0.5rem;
}

.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
    left: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after {
    border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
    left: 0;
    border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after {
    left: 1px;
    border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
    margin-top: 0.5rem;
}

.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
    top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after {
    border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
    top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after {
    top: 1px;
    border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
    margin-right: 0.5rem;
}

.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
    right: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after {
    border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
    right: 0;
    border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after {
    right: 1px;
    border-left-color: #fff;
}

.popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next,
    .active.carousel-item-right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-prev,
    .active.carousel-item-left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.bg-primary {
    background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #0062cc !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #545b62 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #1e7e34 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #117a8b !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-primary {
    border-color: #007bff !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #28a745 !important;
}

.border-info {
    border-color: #17a2b8 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-row {
        display: table-row !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-table {
        display: table !important;
    }
    .d-print-table-row {
        display: table-row !important;
    }
    .d-print-table-cell {
        display: table-cell !important;
    }
    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }
    .float-sm-right {
        float: right !important;
    }
    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }
    .float-md-right {
        float: right !important;
    }
    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }
    .float-lg-right {
        float: right !important;
    }
    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }
    .float-xl-right {
        float: right !important;
    }
    .float-xl-none {
        float: none !important;
    }
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }
    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }
    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }
    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }
    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }
    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }
    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }
    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }
    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }
    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }
    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }
    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }
    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }
    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }
    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }
    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }
    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }
    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }
    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }
    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }
    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }
    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }
    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }
    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }
    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }
    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }
    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }
    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }
    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }
    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }
    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }
    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }
    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }
    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }
    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }
    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }
    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }
    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }
    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }
    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }
    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }
    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }
    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }
    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #0062cc !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #545b62 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #1e7e34 !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #117a8b !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #d39e00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #bd2130 !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
    color: #dae0e5 !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
    color: #1d2124 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    body {
        min-width: 992px !important;
    }
    .container {
        min-width: 992px !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}PK�uKX��� J6J6&spiko/assets/css/bootstrap.min-rtl.css/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:right;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:right;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code,kbd,pre,samp{direction:ltr;unicode-bidi:bidi-override;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-left:15px;padding-right:15px;margin-left:auto;margin-right:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-left:15px;padding-right:15px;margin-left:auto;margin-right:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-left:15px;padding-right:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-right:8.333333%}.offset-2{margin-right:16.666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.333333%}.offset-5{margin-right:41.666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.333333%}.offset-8{margin-right:66.666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.333333%}.offset-11{margin-right:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.333333%}.offset-sm-2{margin-right:16.666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.333333%}.offset-sm-5{margin-right:41.666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.333333%}.offset-sm-8{margin-right:66.666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.333333%}.offset-sm-11{margin-right:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.333333%}.offset-md-2{margin-right:16.666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.333333%}.offset-md-5{margin-right:41.666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.333333%}.offset-md-8{margin-right:66.666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.333333%}.offset-md-11{margin-right:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.333333%}.offset-lg-2{margin-right:16.666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.333333%}.offset-lg-5{margin-right:41.666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.333333%}.offset-lg-8{margin-right:66.666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.333333%}.offset-lg-11{margin-right:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.333333%}.offset-xl-2{margin-right:16.666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.333333%}.offset-xl-5{margin-right:41.666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.333333%}.offset-xl-8{margin-right:66.666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.333333%}.offset-xl-11{margin-right:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-left:0;padding-right:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{position:relative;display:block;padding-right:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-right:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-right:0;margin-left:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-left:.3125rem;margin-right:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-right:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-left:.25rem;margin-right:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.show{opacity:1}.collapse{display:none}.collapse.show{display:block}tr.collapse.show{display:table-row}tbody.collapse.show{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}.dropdown,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-left:.3em solid transparent;border-bottom:0;border-right:.3em solid transparent}.dropdown-toggle:empty::after{margin-right:0}.dropdown-menu{position:absolute;top:100%;left:auto;z-index:1000;display:none;float:right;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropup .dropdown-menu{margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-left:.3em solid transparent;border-bottom:.3em solid;border-right:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-right:0}.dropright .dropdown-menu{margin-top:0;margin-right:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-bottom:.3em solid transparent;border-right:.3em solid}.dropright .dropdown-toggle:empty::after{margin-right:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{margin-top:0;margin-left:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-right:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-right:-1px}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-right:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split::after{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-right:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-right-radius:0;border-top-left-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-right:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::before{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label::before{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-right:-1px}.input-group-prepend{margin-left:-1px}.input-group-append{margin-right:-1px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-right:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-left:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;right:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;right:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem .75rem .375rem 1.75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat left .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-left:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-control{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-control::before{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;left:0;right:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;left:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-right:1px solid #ced4da;border-radius:.25rem 0 0 .25rem}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-left:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .dropdown-menu-right{left:0;right:auto}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .dropdown-menu-right{left:0;right:auto}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .dropdown-menu-right{left:0;right:auto}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .dropdown-menu-right{left:0;right:auto}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .dropup .dropdown-menu{top:auto;bottom:100%}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .dropdown-menu-right{left:0;right:auto}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .dropup .dropdown-menu{top:auto;bottom:100%}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-left:0;margin-right:0}.card>.list-group:first-child .list-group-item:first-child{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-right:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-left:-.625rem;margin-bottom:-.75rem;margin-right:-.625rem;border-bottom:0}.card-header-pills{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-left:15px;margin-bottom:0;margin-right:15px}}.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-left-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-right-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.card-columns .card{display:inline-block;width:100%}}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-left:.5rem;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-right:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-right:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-left:.6em;padding-right:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-left:0;padding-right:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-left:4rem}.alert-dismissible .close{position:absolute;top:0;left:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;background-color:#007bff;transition:width .6s ease}.progress-bar-striped{background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-right:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-left:0;border-right:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:left;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;left:0;bottom:0;right:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-right-radius:.3rem;border-top-left-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem auto -1rem -1rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-right:.25rem}.modal-footer>:not(:last-child){margin-left:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-right-radius:calc(.3rem - 1px);border-top-left-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{right:0}.carousel-control-next{left:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;left:0;bottom:10px;right:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-right:0;margin-left:15%;margin-right:15%;list-style:none}.carousel-indicators li{position:relative;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-left:3px;margin-right:3px;text-indent:-999px;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;right:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;right:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;left:15%;bottom:20px;right:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-left:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-right:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-left:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-right:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-right-radius:.25rem!important;border-top-left-radius:.25rem!important}.rounded-right{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-bottom{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-left{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;right:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:right!important}.float-right{float:left!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:right!important}.float-sm-right{float:left!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:right!important}.float-md-right{float:left!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:right!important}.float-lg-right{float:left!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:right!important}.float-xl-right{float:left!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;-webkit-clip-path:inset(50%);clip-path:inset(50%);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal;-webkit-clip-path:none;clip-path:none}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-left:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-right:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-left:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-right:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-left:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-right:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-left:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-right:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-left:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-right:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-left:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-right:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-left:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-right:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-left:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-right:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-left:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-right:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-left:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-right:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-left:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-right:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-left:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-right:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-left:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-right:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-left:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-right:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-left:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-right:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-left:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-right:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-left:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-right:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-left:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-right:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-left:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-right:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-left:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-right:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-left:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-right:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-left:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-right:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-left:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-right:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-left:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-right:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-left:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-right:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-left:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-right:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-left:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-right:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-left:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-right:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-left:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-right:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-left:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-right:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-left:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-right:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-left:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-right:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-left:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-right:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-left:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-right:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-left:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-right:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-left:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-right:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-left:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-right:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-left:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-right:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-left:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-right:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-left:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-right:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-left:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-right:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-left:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-right:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-left:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-right:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-left:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-right:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-left:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-right:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-left:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-right:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-left:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-right:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-left:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-right:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-left:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-right:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-left:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-right:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-left:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-right:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-left:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-right:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-left:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-right:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-left:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-right:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-left:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-right:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-left:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-right:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-left:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-right:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-left:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-right:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-left:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-right:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-left:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-right:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-left:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-right:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-left:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-right:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-left:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-right:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-left:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-right:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-left:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-right:auto!important}}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:right!important}.text-sm-right{text-align:left!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:right!important}.text-md-right{text-align:left!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:right!important}.text-lg-right{text-align:left!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:right!important}.text-xl-right{text-align:left!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-muted{color:#6c757d!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}PK�uKX�!b�5�5"spiko/assets/css/bootstrap.min.css/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.show{opacity:1}.collapse{display:none}.collapse.show{display:block}tr.collapse.show{display:table-row}tbody.collapse.show{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}.dropdown,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropup .dropdown-menu{margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::before{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label::before{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-control{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-control::before{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .dropup .dropdown-menu{top:auto;bottom:100%}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .dropup .dropdown-menu{top:auto;bottom:100%}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.card-columns .card{display:inline-block;width:100%}}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;padding-left:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;background-color:#007bff;transition:width .6s ease}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;-webkit-clip-path:inset(50%);clip-path:inset(50%);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal;-webkit-clip-path:none;clip-path:none}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-muted{color:#6c757d!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}PK�uKX�m�k�A�Aspiko/assets/css/default.css.entry-meta .tag-links a:hover, .entry-meta .tag-links a:focus {
    background-color: #35ac39;
    border: 1px solid #35ac39;
}
.entry-content a:hover{ color: #35ac39;}
.entry-content a:focus{ color: #35ac39;margin-left: 2px;}
a:hover{color: #35ac39;}
.entry-meta a:hover ,.entry-meta a:focus{color: #35ac39;}
.gallery .gallery-icon img:hover { border: 1px solid #35ac39 !important;}
blockquote {border-left: 3px solid #35ac39;}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  border-color: #35ac39;
}
button,
input[type="button"],
input[type="submit"] {
  background: #35ac39;
  border: 1px solid #35ac39;
  }
 button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
  color: #35ac39;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: #35ac39;
  border: 1px solid #35ac39;
} 
button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
  color: #35ac39;
}
.btn-default { background: #35ac39;border: 1px solid #35ac39;}
.blog .blog-btn .btn-small:hover ,.blog .blog-btn .btn-small:focus,
.btn-default:hover,.btn-default:focus, .btn-default:active { border: 1px solid #35ac39;color:#35ac39; }
.btn-light {color: #35ac39; border: 1px solid #35ac39;}
.btn-light:hover,.btn-light:focus,  .btn-light:active { background: #35ac39;border: 1px solid #35ac39; }
.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    background-color: #35ac39;
    border-color: #35ac39;
}
.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show>.btn-light.dropdown-toggle:focus {
    background-color: #35ac39;
    border-color: #35ac39;
    }

.btn-default-dark { background: #35ac39;border: 1px solid #35ac39; }
.btn-default-dark:hover,.btn-default-dark:focus, .btn-default-dark:active { border: 1px solid #35ac39;color:#35ac39; }
.btn-border:hover, .btn-border:focus, .btn-border:active {color:#35ac39; }
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #35ac39;
}
.site-footer .head-contact-info li a:hover, .site-footer .head-contact-info li a:focus { color: #35ac39; }
.widget_header .widget_info .head-contact-info li a:hover, 
.widget_header .widget_info .head-contact-info li a:focus {
    color: #35ac39;
}
.custom-social-icons li > a:hover, .custom-social-icons li > a:focus {
    color: #35ac39;
}
.navbar .search-box-outer .dropdown-menu {border-top: solid 1px #35ac39;}
.search-box-outer a:hover,.search-box-outer .text-dark,.search-box-outer a:focus { color:#35ac39 !important;}

#searchbar_fullscreen .btn {
 background-color: #35ac39;
}
#searchbar_fullscreen .close {
  background-color: #35ac39;
  border-color: #35ac39;
}
.navbar .search-box-outer .dropdown-menu {
  border-top: solid 1px #35ac39;
}
.search-form input[type="submit"] {
  background: #35ac39 none repeat scroll 0 0;
  border: 1px solid #35ac39;
}
.cart-header > a.cart-total {
  background: #35ac39;
}
.slider-caption .inner-title:before {background: #35ac39; }
.slider-caption .heading .sub { background-color: #35ac39; }
.owl-carousel .owl-prev:hover, .owl-carousel .owl-prev:focus { 
  background-color: #35ac39;
}
.owl-carousel .owl-next:hover, .owl-carousel .owl-next:focus { 
  background-color: #35ac39;
}
.section-separator ,.section-separator::before,.section-separator::after {
  background: #35ac39;
}
.section-header .section-subtitle {color: #35ac39;}

.woocommerce ul.products li.product .onsale, .products span.onsale, .woocommerce span.onsale{
  background: #35ac39;
}
.add-to-cart a:hover, .add-to-cart a:focus{ color: #35ac39;border:1px solid #35ac39; }   
.product-price .woocommerce-Price-amount { color: #35ac39; }
.logo-scroll:hover { border: 1px solid #35ac39;}
.cont-info address > i { color:#35ac39;}
.page-breadcrumb li ,
.page-breadcrumb li a:hover, .page-breadcrumb li a:focus ,
.page-breadcrumb .icon::before, .page-breadcrumb .breadcrumb_last{
  color: #35ac39;
}
.about-subtitle{color:#35ac39;}

.md-pills .nav-link.active,.md-pills .nav-link:hover, 
.md-pills .nav-link:focus {  background-color: #35ac39;}

.error-page .title { 
 color:#35ac39;
}
.footer-sidebar .woocommerce .posted_in a:hover,.footer-sidebar .woocommerce .posted_in a:focus, 
.footer-sidebar .woocommerce-product-rating a:hover, .footer-sidebar .woocommerce-product-rating a:focus, 
.footer-sidebar .woocommerce .tagged_as a:hover,.footer-sidebar .woocommerce .tagged_as a:focus, 
.footer-sidebar .woocommerce-cart table.cart td a:hover, .footer-sidebar .woocommerce-cart table.cart td a:focus,
.footer-sidebar .woocommerce ul.cart_list li a:hover, .footer-sidebar .woocommerce ul.cart_list li a:focus,
.footer-sidebar .woocommerce ul.product_list_widget li a:hover,.footer-sidebar .woocommerce ul.product_list_widget li a:focus {
    color: #35ac39;
}
.footer-sidebar .widget_text.site-info .custom-social-icons li > a {color: #35ac39;}
.subscribe-form  .btn-default:hover,.subscribe-form .btn-default:focus {background: #35ac39; border: 1px solid #35ac39;}

.entry-date {
    background: #35ac39;
}
.pagination .page-link:active,.pagination .page-link:hover{background-color: #35ac39;border-color: #35ac39;}
.page-item.disabled .page-link {background-color: #35ac39;border-color: #35ac39;}
.entry-content p a:hover{color: #35ac39;}
.sidebar .custom-social-icons li > a {color: #35ac39;}
.sidebar .custom-social-icons li > a:hover{background-color: #35ac39;color: #fff;}
.sidebar .widget address i , .footer-sidebar .widget address i {
  color:#35ac39;
}

.sidebar .widget a:hover, .sidebar .widget a:focus{color: #35ac39;}

.widget .tagcloud a {border: 1px solid #35ac39;}
.widget .tagcloud a:hover{background-color: #35ac39;}
.widget_nav_menu li::before, .widget_pages li::before, .widget_product_categories li::before, .widget_links li::before, .widget_categories li::before, .widget_archive li::before, .widget_recent_entries li::before, .widget_meta li::before, .widget_recent_comments li::before {
    color: #35ac39;
}
.sidebar .widget li::before{color: #35ac39;}
.widget .post .entry-date {color: #35ac39;}

.sidebar a:hover span {
  color: #ffffff;
}
.pagination a:hover:not(.active),
.pagination a:focus:not(.active) {
  background-color: #35ac39;
  border-color: #35ac39;
}

#testimonial-carousel .avatar:before , #testimonial-carousel .quotes-seprator:before {background-color: #35ac39;}
#testimonial-carousel1 .avatar:before , #testimonial-carousel1 .quotes-seprator:before {background-color: #35ac39;}
#testimonial-carousel .avatar:after {color: #35ac39;}
#testimonial-carousel1 .avatar:after {color: #35ac39;}
.testimonial .testmonial-block .name {}
.testimonial-block .entry-content::before {color: #35ac39;}
.testimonial .rating {color: #35ac39;}

.team .team-grid .card-body .list-inline li > a:hover, .team .team-grid .card-body .list-inline li > a:focus {
  color: #35ac39;
}
.team .team-grid:hover .card-body .list-inline , .team .team-grid:focus-within .card-body .list-inline {
  border-bottom: 1px solid #35ac39;
}
.team .name{color: #35ac39;}

.services .service-icon i.fa {
  color: #35ac39;
}
.services .btn-small{  
  color: #35ac39;
}
.services .card:hover {
  background-color: #35ac39;
}
.services .btn-small.btn-default{ 
  background: #35ac39;
  border: 1px solid #35ac39;
}
.owl-theme .owl-dots .owl-dot.active span {
    background-color: #35ac39;
}
.funfact .overlay {background-color: rgba(53,172,57, 0.7);}
#cta-video {border: 3px solid #35ac39;}
.video-btn a:after {border-left: 25px solid #35ac39;}
.about-header .btn-default:hover,.about-header  .btn-default:focus {
    border: 1px solid #35ac39;
}
footer{background-color:#35ac39;}
.footer-sidebar .widget_text.site-info .custom-social-icons li > a:hover{background-color: #35ac39;}
.scroll-up a {background: #35ac39;color:#ffffff;}
.related-posts a{color:#35ac39;}
.related-posts .entry-title a:hover {color:#35ac39;}
.related-posts .pre-post a{color:#35ac39;}
.comment-form .comment-reply-title{color: #35ac39;}
.comment-form .blog-form-group:after,.comment-form .blog-form-group-textarea:after {
  color: #35ac39;
}
.footer-sidebar .widget_text.site-info a:hover {color:#35ac39;}
.contact .contact-widget i ,.contact .contact-widget h4 {color:#35ac39;}
.header-sidebar {
  background: #35ac39;
}
.owl-theme .owl-dots .owl-dot.active span {
  box-shadow: #35ac39 0px 0px 0px 2px;
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap > li.show > .dropdown-item {
  background-color: transparent !important;
 
}
.dropdown-item.active, .dropdown-item:active,.dropdown-item:hover {
  color:#35ac39;
}
.navbar ul li a .menu-text:hover:after,.navbar .nav li.active .nav-link .menu-text:after,.navbar-nav .show .dropdown-menu > .active > .menu-text:after , .navbar-nav .show .dropdown-menu > .active > .menu-text:focus {
  background: #35ac39;
}

.footer-sidebar .widget .tagcloud a:hover {
  color: #35ac39 !important;
}

.pagination a:hover:not(.active) i,
.pagination a:focus:not(.active) i{
  color: #ffffff;
}
.blog .blog-btn .btn-small:hover i,
.blog .blog-btn .btn-small:focus i {color: #35ac39;}
.contant-form .wpcf7-form-control-wrap:after ,.contact-icon i{
  color: #35ac39;
}
.blog .btn-small ,.widget .search-submit:hover {color: #35ac39;}
.products h5 a:hover , .products h5 a:focus {
  color: #35ac39 !important;
}

.btn-style-one:hover, .btn-style-one:focus {
  background-color: #35ac39;
}
.btn-style-one {
  color: #35ac39;
  border: 1px solid #35ac39;
}
.footer-layout4 .site-info span a:hover {
  color: #35ac39;
}
.footer-layout4 .site-info.footer-sidebar a:hover, .footer-layout4 .site-info.footer-sidebar a:focus {
  color: #35ac39;
  font-weight: 600;
}
.layout3 .contact-icon i {
  color: #35ac39;
}
.btn-style-two:hover, .btn-style-two:focus{
  color: #35ac39;
}
.cont-info address > a:hover , .cont-info address > a:focus {
  color: #35ac39;
}
 .team4 .list-inline  > a:hover {
    color: #35ac39;
}
.btn-style-one {
  color: #35ac39;
  border: 1px solid #35ac39;
}
.search-box-outer a.text-dark:hover {color:#35ac39 !important;}

.slide-widget .widget li a:hover, 
.slide-widget .widget_archive li a:hover, 
.slide-widget .widget_categories li a:hover, 
.slide-widget .widget_links li a:hover, 
.slide-widget .widget_meta li a:hover, 
.slide-widget .widget_nav_menu li a:hover, 
.slide-widget .widget_pages li a:hover, 
.slide-widget .widget_recent_comments li a:hover, 
.slide-widget .widget_recent_entries li a:hover {
    color: #35ac39;
}
.slider-caption.yes .widget li a:hover, 
.slider-caption.yes .widget_archive li a:hover, 
.slider-caption.yes .widget_categories li a:hover, 
.slider-caption.yes .widget_links li a:hover, 
.slider-caption.yes .widget_meta li a:hover, 
.slider-caption.yes .widget_nav_menu li a:hover, 
.slider-caption.yes .widget_pages li a:hover, 
.slider-caption.yes .widget_recent_comments li a:hover, 
.slider-caption.yes .widget_recent_entries li a:hover {
    color: #35ac39;
}
.pagination .nav-links .page-numbers.current , .pagination .page-link.active {
    background-color: #35ac39;
    border: 1px solid #35ac39;
    color: #fff;
}
.spiko-preloader-cube .spiko-cube:before {background: #35ac39;}
.spiko_header_btn{color: #35ac39; border: 1px solid #35ac39;}
a.spiko_header_btn:hover{background-color: #35ac39;color: #ffffff;}

.dropdown-menu > li.active > a, .navbar .nav .nav-item.current_page_ancestor .nav-link {
    color: #35ac39;
}

.dropdown-menu > li.active > a, 
.navbar .nav .nav-item.current_page_ancestor.current_page_parent .nav-link,
.navbar .nav .nav-item.current_page_ancestor.current_page_parent > .dropdown-item{
    color: #35ac39;
}
.navbar .nav .nav-item .dropdown.active > a, .navbar .nav .nav-item .dropdown:hover > a {
    color: #35ac39 !important;
}
.dropdown-item .current-menu-item.active, .dropdown-item:active, .dropdown-item:hover, a.text-dark:focus, a.text-dark:hover, a.bg-light:focus, a.bg-light:hover {
    color: #35ac39 !important;
}
.dropdown-item,a.text-dark,a.bg-light{color:#fff;}
.navbar .nav .nav-item:hover .nav-link, .navbar .nav .nav-item .nav-link:focus{color: #35ac39;}
.navbar .nav .nav-item.active .nav-link {
    color: #ffffff !important;
    background-color: #35ac39;
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap > li.show > .dropdown-item {
  color:#35ac39 !important;
}
.woocommerce-loop-product__title:hover{color: #35ac39;}
.woocommerce ul.products li.product .button, .owl-item .item .cart .add_to_cart_button {
    background: #35ac39;
}
.woocommerce div.product form.cart .button, .woocommerce a.button, .woocommerce a.button:hover, .woocommerce a.button, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: #35ac39;
}
.woocommerce ul.product_list_widget li a:hover, .woocommerce ul.product_list_widget li a:focus, .woocommerce .posted_in a:hover, .woocommerce .posted_in a:focus {
    color: #35ac39;
}
.woocommerce-cart.woocommerce-page thead th {
    border-bottom: 2px solid #35ac39;
}
.woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover, .woocommerce #respond input#submit:disabled[disabled]:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled:hover, .woocommerce a.button:disabled[disabled]:hover, .woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover, .woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover {
    background-color: #35ac39;
    opacity: 0.7;
}
.woocommerce-info {
    border-top-color: #35ac39;
}
.woocommerce-info::before {
    color: #35ac39;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #35ac39;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #ffffff;
    color: #35ac39 !important;
    border-color: #35ac39 !important;
}
.woocommerce-order-received .page .post {box-shadow: 0px 0px 0px 2px #35ac39;}
.woocommerce-order-received ul.order_details li {border-right: 1px dashed #35ac39;}
.navbar .nav .nav-item.html a:hover{color: #35ac39;}
.footer-sidebar .widget_text address a:hover{color: #35ac39;}
.widget .wp-block-tag-cloud a {border: 1px solid #35ac39;}
.widget .wp-block-tag-cloud a:hover{background-color: #35ac39;color: #fff;}
.sidebar .woocommerce a:hover span{color: #35ac39;}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: #35ac39;
}
.home-blog .entry-title a:hover{color: #35ac39;}
.nav-item .widget a:hover{color: #35ac39;}
.nav-item .widget .widget-title{color: #35ac39;}
.testimonial .testmonial-block .name a:hover{color: #35ac39 !important;}
.entry-content a.wp-block-button__link:hover{color: #35ac39 !important;}
a.comment-reply-link:hover{color: #35ac39;}
body .woocommerce-message {border-top-color: #35ac39;}
body .woocommerce-message::before {color: #35ac39;}
.wp-block-search__button:hover::after {color: #35ac39;}
.remove-image {background: #35ac39;}PK�uKX���#��6spiko/assets/css/jquery.smartmenus.bootstrap-4-rtl.css/*
 You probably do not need to edit this at all.

 Add some SmartMenus required styles not covered in Bootstrap 4's default CSS.
 These are theme independent and should work with any Bootstrap 4 theme mod.
*/


/* Carets in collapsible mode (make them look like +/- buttons) */

.navbar { 
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: rgba(10, 10, 10, 0.6);
	position: absolute;
    width: 100%;
    z-index: 999;
}
@media (max-width: 768px){
.navbar {
background-color: rgba(10, 10, 10,0.8);
}}
/*Toggle Button*/
.navbar-toggler:hover, 
.navbar-toggler:focus {
	background-color: transparent;	
}  

/*Menu Css*/
.navbar .nav .nav-item {
    margin-left: 0;
}  
.navbar .nav .nav-item .nav-link, .navbar .nav .nav-item.html a, .navbar .nav .nav-item.radix-html a {                   
	padding:0rem;
	color: #fff;
	font-size: 0.938rem;
   font-weight: 400;
}
.navbar.navbar6 .nav .nav-item.menu-html a,.navbar.navbar6 .nav .nav-item.menu-html 
{
	color: #fff;
	font-size: 0.938rem;
   font-weight: 400;
}
.navbar .nav .nav-item.html,.navbar .nav .nav-item.radix-html{color: #fff;}
 .navbar-nav .dropdown-menu {
    background-color: #000000;
}
.dropdown-item{color: #fff; text-decoration: none;}
.header-module {
    padding-right: 0rem;
    display: inline-block;
}
@media (min-width: 992px){
.navbar .nav .nav-item .nav-link,.navbar .nav .nav-item.html ,.navbar .nav .nav-item.radix-html{ padding: 0.25rem 0.75rem;margin: 0.75rem 0;}
.header-module {padding: 0.938rem 1rem 0.938rem 0rem;}
}
@media (max-width: 1199px) { .navbar .nav .nav-item {margin-left: 1.75rem;}}
@media (max-width: 991px) {
  .navbar .nav .nav-item {
	margin-left: 0;
	}
	.navbar .nav .nav-item .nav-link {
	line-height: 40px;
	margin-left: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: right;
	padding-right: 0.625rem;
	}
	.navbar.navbar6 .nav .nav-item.menu-html a
	{
	line-height: 40px;
	margin-left: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: right;
	padding-right: 0.625rem;	
	}
	.navbar.navbar6 .nav .nav-item.menu-html 
	{
	line-height: 40px;
	margin-left: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: right;
	}
	.navbar .nav .nav-item.html,.navbar .nav .nav-item.radix-html
	{
		line-height: 40px;
	margin-left: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: right;
	padding-right: 0.625rem;	
	}
	.header-module {
    padding-right: 0.625rem;
    margin-top: 0.625rem;
   }
   .main-header-btn,.nav-item.radix-btn{margin-top: 0.625rem;}
   .btn-box {margin-top: 0.625rem;}
}
.navbar .nav .nav-item.active .nav-link {
   color: #ffffff;
   border-radius: 8px;
}
.navbar-nav.sm-collapsible .sub-arrow {
	position: absolute;
	top: 50%;
	left: 0;
	margin: -0.7em 0 0 0.5em;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: .25rem;
	padding: 0;
	width: 2em;
	height: 1.4em;
	font-size: 1.25rem;
	line-height: 1.2em;
	text-align: center;
}
.navbar-nav .sub-arrow::before {
	content: '+';
}
.navbar-nav .show > a > .sub-arrow::before {
	content: '-';
	padding-right: .1em;
}
.navbar-dark .navbar-nav.sm-collapsible .nav-link .sub-arrow {
	border-color: rgba(255, 255, 255, .1);
}
/* make sure there's room for the carets */
.navbar-nav.sm-collapsible .has-submenu {
	padding-left: 3em;
}
/* keep the carets properly positioned */
.navbar-nav.sm-collapsible .nav-link,
.navbar-nav.sm-collapsible .dropdown-item {
	position: relative;
}

/* Nav carets in expanded mode */
.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
    margin-right: .255em;
}
/* point the arrows up for .fixed-bottom navbars */
.fixed-bottom .navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow,
.fixed-bottom .navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-toggle::after {
	border-top: 0;
	border-bottom: .3em solid;
}

/* Dropdown carets in expanded mode */
.dropdown-toggle::after {
    display: none;
}
.navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow,
.navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
	position: absolute;
	left: 0;
	margin-left: 1em;
}
/* make sure there's room for the carets */
.navbar-nav:not(.sm-collapsible) .dropdown-item.has-submenu {
	padding-left: 2em;
}

/* Scrolling arrows for tall menus */
.navbar-nav .scroll-up,
.navbar-nav .scroll-down {
	position: absolute;
	display: none;
	visibility: hidden;
	height: 20px;
	overflow: hidden;
	text-align: center;
}
.navbar-nav .scroll-up-arrow,
.navbar-nav .scroll-down-arrow {
	position: absolute;
	top: -2px;
	right: 50%;
	margin-right: -8px;
	width: 0;
	height: 0;
	overflow: hidden;
	border-top: 7px solid transparent;
	border-left: 7px solid transparent;
	border-bottom: 7px solid;
	border-right: 7px solid transparent;
}
.navbar-nav .scroll-down-arrow {
	top: 6px;
	border-top: 7px solid;
	border-left: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-right: 7px solid transparent;
}

/* Add some spacing for 2+ level sub menus in collapsible mode */
.navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
	margin: .5em;
}

/* Fix SmartMenus sub menus auto width (subMenusMinWidth/subMenusMaxWidth options) */
.navbar-nav:not([data-sm-skip]) .dropdown-item {
	white-space: normal;
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap > li > .dropdown-item {
	white-space: nowrap;
}

.dropdown-item.active, .dropdown-item:active,.dropdown-item:hover {
    background-color: transparent;
}
.navbar-nav button.bg-light:focus, .navbar-nav button.bg-light:hover {
     background-color: transparent !important; 
}

.navbar ul li .search-box-outer a:after , .navbar ul li .cart-header a:after {
	content: none;
}
.navbar ul li a .menu-text:after {
    content: '';
    display: block;
    height: 2px;
    width: 0px;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}
.navbar ul li a .menu-text{
    display: inline-block;
}
 
.navbar ul li a .menu-text:hover:after,.navbar .nav li.active .nav-link .menu-text:after,.navbar-nav .show .dropdown-menu > .active > .menu-text:after , .navbar-nav .show .dropdown-menu > .active > .menu-text:focus {
   width: 100%;
   right: 0; 
}
.navbar-dark .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

  
.navbar ul {margin: 0;}
@media (min-width: 991px) {

}PK�uKX�D2���2spiko/assets/css/jquery.smartmenus.bootstrap-4.css/*
 You probably do not need to edit this at all.

 Add some SmartMenus required styles not covered in Bootstrap 4's default CSS.
 These are theme independent and should work with any Bootstrap 4 theme mod.
*/


/* Carets in collapsible mode (make them look like +/- buttons) */

.navbar { 
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: rgba(10, 10, 10, 0.6);
	position: absolute;
    width: 100%;
    z-index: 999;
}
@media (max-width: 768px){
.navbar {
background-color: rgba(10, 10, 10,0.8);
}}
/*Toggle Button*/
.navbar-toggler:hover, 
.navbar-toggler:focus {
	background-color: transparent;	
}  

/*Menu Css*/
.navbar .nav .nav-item {
    margin-right: 0;
}  
.navbar .nav .nav-item .nav-link, .navbar .nav .nav-item.html a, .navbar .nav .nav-item.radix-html a {                   
	padding:0rem;
	color: #fff;
	font-size: 0.938rem;
   font-weight: 400;
}
.navbar.navbar6 .nav .nav-item.menu-html a,.navbar.navbar6 .nav .nav-item.menu-html 
{
	color: #fff;
	font-size: 0.938rem;
   font-weight: 400;
}
.navbar .nav .nav-item.html,.navbar .nav .nav-item.radix-html{color: #fff;}
 .navbar-nav .dropdown-menu {
    background-color: #000000;
}
.dropdown-item{color: #fff; text-decoration: none;}
.header-module {
    padding-left: 0rem;
    display: inline-block;
}
@media (min-width: 992px){
.navbar .nav .nav-item .nav-link,.navbar .nav .nav-item.html ,.navbar .nav .nav-item.radix-html{ padding: 0.25rem 0.75rem;margin: 0.75rem 0;}
.header-module {padding: 0.938rem 0rem 0.938rem 1rem;}
}
@media (max-width: 1199px) { .navbar .nav .nav-item {margin-right: 1.75rem;}}
@media (max-width: 991px) {
  .navbar .nav .nav-item {
	margin-right: 0;
	}
	.navbar .nav .nav-item .nav-link {
	line-height: 40px;
	margin-right: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: left;
	padding-left: 0.625rem;
	}
	.navbar.navbar6 .nav .nav-item.menu-html a
	{
	line-height: 40px;
	margin-right: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: left;
	padding-left: 0.625rem;	
	}
	.navbar.navbar6 .nav .nav-item.menu-html 
	{
	line-height: 40px;
	margin-right: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: left;
	}
	.navbar .nav .nav-item.html,.navbar .nav .nav-item.radix-html
	{
		line-height: 40px;
	margin-right: 0;
	display: block;
	border-bottom: 1px solid #ededed55;
	border-radius: 0;
	text-align: left;
	padding-left: 0.625rem;	
	}
	.header-module {
    padding-left: 0.625rem;
    margin-top: 0.625rem;
   }
   .main-header-btn,.nav-item.radix-btn{margin-top: 0.625rem;}
   .btn-box {margin-top: 0.625rem;}
}
.navbar .nav .nav-item.active .nav-link {
   color: #ffffff;
   border-radius: 8px;
}
.navbar-nav.sm-collapsible .sub-arrow {
	position: absolute;
	top: 50%;
	right: 0;
	margin: -0.7em 0.5em 0 0;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: .25rem;
	padding: 0;
	width: 2em;
	height: 1.4em;
	font-size: 1.25rem;
	line-height: 1.2em;
	text-align: center;
}
.navbar-nav .sub-arrow::before {
	content: '+';
}
.navbar-nav .show > a > .sub-arrow::before {
	content: '-';
	padding-left: .1em;
}
.navbar-dark .navbar-nav.sm-collapsible .nav-link .sub-arrow {
	border-color: rgba(255, 255, 255, .1);
}
/* make sure there's room for the carets */
.navbar-nav.sm-collapsible .has-submenu {
	padding-right: 3em;
}
/* keep the carets properly positioned */
.navbar-nav.sm-collapsible .nav-link,
.navbar-nav.sm-collapsible .dropdown-item {
	position: relative;
}

/* Nav carets in expanded mode */
.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
    margin-left: .255em;
}
/* point the arrows up for .fixed-bottom navbars */
.fixed-bottom .navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow,
.fixed-bottom .navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-toggle::after {
	border-top: 0;
	border-bottom: .3em solid;
}

/* Dropdown carets in expanded mode */
.dropdown-toggle::after {
    display: none;
}
.navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow,
.navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
	position: absolute;
	right: 0;
	margin-right: 1em;
}
/* make sure there's room for the carets */
.navbar-nav:not(.sm-collapsible) .dropdown-item.has-submenu {
	padding-right: 2em;
}

/* Scrolling arrows for tall menus */
.navbar-nav .scroll-up,
.navbar-nav .scroll-down {
	position: absolute;
	display: none;
	visibility: hidden;
	height: 20px;
	overflow: hidden;
	text-align: center;
}
.navbar-nav .scroll-up-arrow,
.navbar-nav .scroll-down-arrow {
	position: absolute;
	top: -2px;
	left: 50%;
	margin-left: -8px;
	width: 0;
	height: 0;
	overflow: hidden;
	border-top: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid;
	border-left: 7px solid transparent;
}
.navbar-nav .scroll-down-arrow {
	top: 6px;
	border-top: 7px solid;
	border-right: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid transparent;
}

/* Add some spacing for 2+ level sub menus in collapsible mode */
.navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
	margin: .5em;
}

/* Fix SmartMenus sub menus auto width (subMenusMinWidth/subMenusMaxWidth options) */
.navbar-nav:not([data-sm-skip]) .dropdown-item {
	white-space: normal;
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap > li > .dropdown-item {
	white-space: nowrap;
}

.dropdown-item.active, .dropdown-item:active,.dropdown-item:hover {
    background-color: transparent;
}
.navbar-nav button.bg-light:focus, .navbar-nav button.bg-light:hover {
     background-color: transparent !important; 
}

.navbar ul li .search-box-outer a:after , .navbar ul li .cart-header a:after {
	content: none;
}
.navbar ul li a .menu-text:after {
    content: '';
    display: block;
    height: 2px;
    width: 0px;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}
.navbar ul li a .menu-text{
    display: inline-block;
}
 
.navbar ul li a .menu-text:hover:after,.navbar .nav li.active .nav-link .menu-text:after,.navbar-nav .show .dropdown-menu > .active > .menu-text:after , .navbar-nav .show .dropdown-menu > .active > .menu-text:focus {
   width: 100%;
   left: 0; 
}
.navbar-dark .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

  
.navbar ul {margin: 0;}
@media (min-width: 991px) {

}PK�uKXz�1???!spiko/assets/css/owl.carousel.css/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1; 
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ 
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; 
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); 
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); 
}
.owl-carousel .owl-item {
    position: relative; 
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; 
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}
.owl-carousel.owl-loaded { display: block; }
.owl-carousel.owl-loading { opacity: 0; display: block; }
.owl-carousel.owl-hidden { opacity: 0; }
.owl-carousel.owl-refresh .owl-item { visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}
.owl-carousel.owl-grab { cursor: move; cursor: grab; }
.owl-carousel.owl-rtl { direction: rtl; }
.owl-carousel.owl-rtl .owl-item { float: right; }
/* No Js */
.no-js .owl-carousel { display: block; }
/* Owl Carousel - Animate Plugin */
.owl-carousel .animated { animation-duration: 1000ms; animation-fill-mode: both; }
.owl-carousel .owl-animated-in { z-index: 0; }
.owl-carousel .owl-animated-out { z-index: 1; }
.owl-carousel .fadeOut { animation-name: fadeOut; }
@keyframes fadeOut {
  0% {
    opacity: 1; 
    }
  100% {
    opacity: 0; 
    } 
}

/* Owl Carousel - Auto Height Plugin */
.owl-height { transition: height 500ms ease-in-out; }
/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item .owl-lazy { opacity: 0; transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy { transform-style: preserve-3d; }
/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000; 
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease; 
}
.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3); 
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none; 
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%; 
}  
/* Owl Carousel - Pagination & Dots */  
.owl-theme .owl-dots { text-align:center; -webkit-tap-highlight-color:transparent; margin: 3.125rem 0rem 0rem; }
.owl-theme .owl-dots .owl-dot { display: inline-block; zoom:1; }
.owl-theme .owl-dots .owl-dot span {
    background: rgba(51, 51, 51, 1);
    width: 10px;
    height: 10px;
    display: block;
    -webkit-backface-visibility: visible;
    transition: .3s;
    border-radius: 30px;
    margin: 0 5px;
    padding: 0;
    -webkit-transition: -webkit-transform 0.3s ease, background-color 0.3s ease;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0.313rem; margin-bottom: 2.813rem;
}
.owl-theme .owl-dots.disabled {
    margin: 0px;
}

/*===================================================================================*/
/*  OWL SLIDER - DOTS/PAGINATION
/*===================================================================================*/
.owl-theme .owl-nav.disabled+.owl-dots {
   margin-bottom: 0.313rem;
   margin-top:3.125rem;
}

.owl-theme .owl-dots .owl-dot span { 
    width: 0.9rem;
    height: 0.9rem;
    margin: 0 0.438rem;
    background-color: #ffffff;
    box-shadow: #aaaaaa 0px 0px 0px 2px;
    border: 2px solid #00000078;
}
.owl-theme .owl-dots .owl-dot.active span {
    background-color: #ffffff;
    border: 2px solid #00000078;
}PK�uKX��Q� spiko/assets/css/pro-details.css .spiko-pro-features li
{
        line-height: 24px;
    margin-bottom: 23px;
    font-size: 14px;
}
.spiko-pro-features .spiko-pro-label
{
font-weight: bold;
    background: #a7a7a7;
    color: #fff;
    text-transform: uppercase;
    padding: 2px 6px 2px 7px;
    letter-spacing: .1px;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 10px;
}
.spiko-pro-button
{
     margin-right: 21px !important;
    width: 95%;
    text-align: center;
    letter-spacing: .2px;   
}
.spiko-pro-features-customizer hr
{
      margin-top: 22px;
    margin-bottom: 16px;  
}
.spiko-pro-content li
{
 line-height: 22px;
 font-size: 14px;
 font-style: italic;
 margin-bottom: 12px;   
}
.spiko-pro-content .spiko-pro-des
{
    padding-left: 20px;
    list-style: circle;
}PK�uKX���{~~$spiko/assets/css/spiko-customize.css#accordion-section-colors
{
	display: none !important;
}
#breadcrumbs-display-blog-page
{
	display: none !important;
}	
#customize-control-after_menu_btn_txt
{
	display: none;
}
#customize-control-after_menu_btn_link
{
	display: none;
}
#customize-control-after_menu_btn_new_tabl
{
	display: none;
}    	
#customize-control-after_menu_btn_border
{
	display: none;
}    
#customize-control-after_menu_html
{
	display: none;
}
#customize-control-theme_color input[type=radio], #customize-control-spiko_layout_style input[type=radio], #customize-control-theme_style_type input[type=radio], #customize-control-predefined_back_image input[type=radio] {
    display: none !important;
}

/********** Header Typography **********/
.customize-pane-child>li[id=customize-control-site_title_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-site_title_line_height] {width: 48% ; clear: none; padding-right: 5px;}	
.customize-pane-child>li[id=customize-control-site_tagline_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-site_tagline_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-menu_title_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-menu_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-submenu_title_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-submenu_line_height] {width: 48% ; clear: none; padding-right: 5px;}

/********** Slide Typography **********/
.customize-pane-child>li[id=customize-control-slider_title_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-slider_line_height] {width: 48% ; clear: none; padding-right: 5px;}

/********** Homepage Section Typography **********/
.customize-pane-child>li[id=customize-control-section_subtitle_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-section_description_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-section_title_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-section_title_line_height] {width: 48% ; clear: none; padding-right: 5px;}

/********** Content Typography **********/
.customize-pane-child>li[id=customize-control-h1_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h1_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h2_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h2_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h3_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h3_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h4_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h4_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h5_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h5_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h6_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-h6_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-p_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-p_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-button_text_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-button_line_height] {width: 48% ; clear: none; padding-right: 5px;}


/********** Blog / Archive / Single Post Typography **********/
.customize-pane-child>li[id=customize-control-post-title_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-post-title_line_height] {width: 48% ; clear: none; padding-right: 5px;}

/********** Shop Page Typography **********/
.customize-pane-child>li[id=customize-control-shop_h1_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-shop_h1_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-shop_h2_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-shop_h2_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-shop_h3_typography_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-shop_h3_line_height] {width: 48% ; clear: none; padding-right: 5px;}

/********** Sidebar Typography **********/
.customize-pane-child>li[id=customize-control-sidebar_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-sidebar_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-sidebar_widget_content_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-sidebar_widget_content_line_height] {width: 48% ; clear: none; padding-right: 5px;}

/********** Footer Typography **********/
.customize-pane-child>li[id=customize-control-footer_widget_title_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-footer_widget_title_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-footer_widget_content_fontsize] {width: 48% ; clear: none; padding-right: 5px;}
.customize-pane-child>li[id=customize-control-footer_widget_content_line_height] {width: 48% ; clear: none; padding-right: 5px;}
.customize-control-radio {
    padding: 0;
}PK�uKX���%�%�2spiko/assets/css/font-awesome/css/font-awesome.css/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}PK�uKX��yy6spiko/assets/css/font-awesome/css/font-awesome.min.css/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}PK�uKXOp�n�n�;spiko/assets/css/font-awesome/fonts/fontawesome-webfont.eotn����LPYxϐFontAwesomeRegular$Version 4.7.0 2016FontAwesome
�PFFTMk�G���GDEF��p OS/2�2z@X`cmap
�:��gasp���hglyf���M�L�head��-�6hhea
�$hmtxEy��
�loca��\�maxp,8 name㗋�gh�post����k�uː�xY_<��3�2�3�2���	�	����	��'@i��3��3s�pyrs@ �� �pU�]�����y�n�����2��@������
��������z���Z@�5�5
���z���ZZ����@���������,_���@������s���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-����`��b����
���$����6�4�8�"�"""""���@�D@���,,@� ���������	m��)@�@	 	' D9>dY*	'						�	��	��T										�@	f�	%RE	 		$!k(D�'	��	�%��	�%	��	��0%�/�&��p@0 �����!"""`���>�N�^�n�~��������������.�>�N�^�n�~��������������>�N�^�n�~������������ �����!"""`���!�@�P�`�p�������������� �0�@�P�`�p��������������!�@�P�`�p�������������\�X�S�B�1����ݬ

	����������������������������������
�
	,,,,,,,,,,,,,��t�L�T$�l	x	�
T(��
d����l,����4d�pH�$d,t( � �!�"0# $,$�&D'�(�)T**�,,�-�.@.�/`/�00�1�2�3d444�5 5�5�6 6\6�7H7�88`8�9L9�:h:�;�<p=p><>�?h?�@H@�A0A�BXB�CdC�DLD�E�F�G0G�H�I�J8K�L�MdN,N�N�O�P`P�Q4Q�RRlS,S�T`U0W�X�Z[@[�\<\�]�^(^�_�`pb,b�dd�ePe�f�g`g�iLi�jDkk�l�m@n,oLp�q�r�sxtt�uD{`||�}}�~��������H��������l�@����������l�H� ���T��H�������`����@�����$�\�X��D�������T�X�����D�P�,���8���d�\����������������H���x��� �t���X���p��d��������x�t�������������@������Œ�\� ļ�ŸƔ�0���d��ʨˀ����͔�x��ϰЌ�,ш�҈�ӌ���8�,՜�`���l�Hش�`���Tڸ�۔�@���l��ބ�߬��l�p� ������������������������������4�����X���$�l���(����`����������	d

��
,�,��8��(�X���x|T�@��| �!�"x##l$$�'h(�*L,T.L1t1�2�303�4�5t6T7$89H::�;�<�<�?X@A�B�C�D�EHFHGpHHIxJ J�K�L�MN@P@Q�R�SDT ULV`V�WXX4X�ZZ�[d[�\|]�^�`�aHa�b�cXd�etfhg�h�i\jxn�p@s�vw�x�y�z�{h|�}}�\���l�t���4���������t���8�8���L���T�������������|�������|�������4�x�����L����������X�(� ������� ������@�����l���t����$����x�L�L��� �H������Ġ�T�(����ʈˠ��ϔ�l�d���P�Մ�x�p���ڬ�T�T���ވ�L�����<�H��$���l������4����������� �P�l����,���x���p�,�x�t��d����4���4,h�P	4
��
�4�<,,408$�8�T� |!h"�$L%0&H'�(�)�*0*�+�,�.$.�0�1�2@2�3�4t5$6�9 :�:�;;�<(<�=4?�@�A�C�D�F�H`H�I�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�p7!!!���@p�p �p�]���!2#!"&463!&54>3!2�+��@&&��&&@��+$(�($F#+���&4&&4&x+#��+".4>32".4>32467632DhgZghDDhg-iW�DhgZghDDhg-iW&@(8 ��2N++NdN+'�;2N++NdN+'�3
8���!  #"'#"$&6$ �������rL46$���܏���oo��o|W%r��������4L&V|o��oo����ܳ��%��=M%+".'&%&'3!26<.#!";2>767>7#!"&5463!2� %��3@m00m@3���% 
�
�@
���:"7..7":�6]�^B�@B^^B�B^ $΄+0110+��$�
(	

�t��1%%1��+�`��B^^B@B^^���"'.54632>32�4��
#L</��>�oP$$Po�>���Z$_d�C�+I@$$@I+��������"#"'%#"&547&547%62���V�?�?V��8��<��8y���
���b%	I�))�9I	����	+	%%#"'%#"&547&547%62q2�Z���Z2Izy���V)�?�?V��8��<��8)>~��>��[��
���
2���b%	I�))�9I	���%#!"&54>3 72 &6 }X��X}.GuL�l�LuG.�����>�m��mU��mE��Em�������>����/?O_o���54&+";2654&+";2654&+";264&#!"3!2654&+";2654&+";264&#!"3!2654&+";2654&+";2654&+";267#!"&5463!2�&�&&�&&�&&�&&�&&�&&�&&&�&�&&�&�&�&&�&��&�&&&�&�&&�&&�&&�&&�&&�&�^B��B^^B@B^@�&&�&&��&&�&&��&&�&&�&&�&&��&&�&&���&&�&&&&�&&���&&�&&��&&�&&��&&�&&���B^^B@B^^��/?#!"&5463!2#!"&5463!2#!"&5463!2#!"&5463!2L4�4LL44LL4�4LL44L�L4�4LL44LL4�4LL44L��4LL4�4LL��4LL4�4LL���4LL4�4LL��4LL4�4LL	�/?O_o�#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(88(��(88(@(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88�/?O_#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(88(�@(88(�(8�8(��(88(@(88(�@(88(�(88(�@(88(�(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88y��"/&4?62	62��,�P����P&�P��P�,��jP�����n���#$"'	"/&47	&4?62	62	�P���P�&���P&&P���&�P�&���P&&P���&�P������#+D++"&=#"&=46;546;232  #"'#"$&6$ 
�
@
�

�
@
�
�������rK56$���܏���oo��o|W�@
�

�
@
�

��r��������jK&V|o��oo����ܳ�����0#!"&=463!2  #"'#"$&6$ 
��

@
�������rK56$���܏���oo��o|W�@

@
�r��������jK&V|o��oo����ܳ����)5 $&54762>54&'.7>"&5462z�����z��+i *bkQ��н�Qkb* j*����LhLLhL�����zz���Bm +*i J�yh��QQ��hy�J i*+ m��J��4LL4�4LL���/?O%+"&=46;2%+"&546;2%+"&546;2+"&546;2+"&546;2��������������`��r��@�@r�@��@����n4&"2#"/+"&/&'#"'&'&547>7&/.=46?67&'&547>3267676;27632�Ԗ����#H
	��,/
�1)�
~'H�
�(C
	�

�,/
�1)�	
�$H�
Ԗ�Ԗm�6%2X
%�	l�2
�k	r6

[21
�..9Q

$�
k�2
�k	
w3[20����/;Cg+"&546;2+"&546;2+"&546;2!3!2>!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���@�`�0
��
o`^B��B^`5FN(@(NF5 ��@��@��@���L%%Ju		�@�LSyuS�@�%44%�f5#!!!"&5465	7#"'	'&/&6762546;2�&�����&??�>

�L�L
>
� X ���
 � &���&��&AJ	A��	J
W���h��##!"&5463!2!&'&!"&5!�(8(��(88(�(`�x
��c�`(8��`(��(88(@(8(D��9�8(����� ,#!"&=46;46;2.  6 $$ ����@��������(�r���^����a�a�@@`��(��������_�^����a�a��2NC5.+";26#!26'.#!"3!"547>3!";26/.#!2W
�
��.�@

��

�@.�$S

�

S$�@

���9I


�
I6>
��
��>�%=$4&"2$4&"2#!"&5463!2?!2"'&763!463!2!2&4&&4&&4&&4�8(�@(88(ч:�:��(8���@6�@*&&*�4&&4&&4&&4& ��(88(@(8�88�8)�@�)'�&&�@���$0"'&76;46;232  >& $$ `
������������(���r���^����a�a`��		@`��2�������(���^����a�a�����$0++"&5#"&54762  >& $$ ^���
?@�����(���r���^����a�a���`?		����������(���^����a�a��
#!.'!!!%#!"&547>3!2�<�<�<_@`&��&�
5@5
�@����&&�>=(""��=���'#"'&5476.  6 $$ � ��  ! ��������(�r���^����a�a�J��	%�%���(��������_�^����a�a�����3#!"'&?&#"3267672#"$&6$3276&�@*���h��QQ��hw�I
�	m�ʬ����zz���k�)'�@&('��Q��н�Qh_
	�
��z�8�zoe����$G!"$'"&5463!23267676;2#!"&4?&#"+"&=!2762�@�h���k�4&&�&�G�a��F*�
&�@&��Ɇ�F*�
A��k�4&���nf�&�&&4�BH�rd�@&&4���rd
Moe�&�/?O_o+"&=46;25+"&=46;25+"&=46;2#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!26#!"&5463!2�
@

@

@

@

@

@
�
�@

�

�@

�

�@

�
�
�@

�
�^B�@B^^B�B^`@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�3@

��
M��B^^B@B^^��!54&"#!"&546;54 32@�Ԗ@8(�@(88( p (8�j��j��(88(@(8������8@���7+"&5&5462#".#"#"&5476763232>32@@
@
@KjK�ך=}\�I���&:�k�~&26]S
&H&�

�&H5KKu�t,4,�	&� x:;*4*&��K#+"&546;227654$ >3546;2+"&="&/&546$ �<��X@@Gv"D�����װD"vG@@X��<��4L4����1!Sk @ G<_b������b_<G �� kS!1����zz�� �"'!"&5463!62&4����&&M4&���&M&�&M& ��-"'!"&5463!62#"&54>4.54632&4����&&M4&�UF
&""""&
F���&M&�&M&���%/B/%���G-Ik"'!"&5463!62#"&54>4.54632#"&54767>4&'&'&54632#"&547>7676'&'.'&54632&4����&&M4&�UF
&""""&
FU��
&'8JSSJ8'&

����

&'.${��{$.'&

����&M&�&M&���%/B/%7���;&'6���6'&;��4�[&$
[2[
$&[��#/37#5#5!#5!!!!!!!#5!#5!5##!35!!!����������������������������������������������������������������������������#'+/37;?3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3????  ^��>>~??�??�??~??~??^??�^^?  ^??������������������������������������4&"2#"'.5463!2�KjKKjv%�'45%�5&5L4�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'��k�54&"2#"'.5463!2#"&'654'.#32�KjKKjv%�'45%�5&5L4�5�&�%�%�'4$.�%%�5&�5�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'45%�%�%54'�&55&�6'
��y�Tdt#!"&'&74676&7>7>76&7>7>76&7>7>76&7>7>63!2#!"3!2676'3!26?6&#!"3!26?6&#!"g(��sA�eM�,*$/
!'&
�JP��$G]��
x�6,&��`
��
h`
��
"9H�v@WkNC<.
&k&
("$p"	.
#u&#	%!'	pJ�vwEF�#

@

��

@

���2#"'	#"'.546763�!''!0#�G�G$/!''!�	
8"��"8
 ��X!	
8"	"8
	����<)!!#"&=!4&"27+#!"&=#"&546;463!232������(8���&4&&4�
�8(�@(8�
qO@8(�(`�(@Oq��8(��&4&&4&@�`
�(88(�
�Oq (8(�`(�q���!)2"&42#!"&546;7>3!2  I��j��j��j��j�3e55e3�gr������`��I�j��j��j�j��1GG1���r��������P2327&7>7;"&#"4?2>54.'%3"&#"#ժ!�9&W��B03&�K5�!�)V�?�@L��'�	
>R�>e;&L:�:%P�>��vO
'h�� N��_"�:-&+#
��:��	'	����+a%3 4'.#"32>54.#"7>7><5'./6$3232#"&#"+JBx)EB_I:I*CRzb3:dtB2P���$$5.3b�ZF�|\8!-T>5��Fu��\,�,j�n OrB,<!
5�4wJ]�?tTFi;
2�3j.�p^%/2�+
	S:T}K4W9: #ƕd�fE���:7>7676'5.'732>7"#"&#&#"OA
zj=N!�}:0e��%	y�
+t�D3�~U#B4#
g		'2
%/!:
���T	bRU,7����}%2"/&6;#"&?62+326323!2>?23&'.'.#"&"$#"#&=>764=464.'&#"&'�!~:~!PP!~:~!P��6�,�,$�$%*'
c2N 	
(�$"L��A2�3Yl�!x!*�%��%%��%��
p�P,T	NE	Q7^���oH!+(
3	 *Ue�eu
wg��a�32632$?23&'.5&'&#"&"5$#"#&=>7>4&54&54>.'&#"&'2#".465!#".'&47>32!4&4>Q6�,�,Faw!*'
=~Pl*	
(�$"L��A2�3Yl	�)�!*<7@@7<
�
<7@@7<
 p�P,T	MF
Q7�47ƢHoH!+(
3	 t���JHQ6wh��',686,'$##$',686,'$##$�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&�&&&&�&&&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&��&&�&&��&&�&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&�&&&&�&&&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?O_o%+"&=46;2+"&=46;2+"&=46;2#!"&=463!2+"&=46;2#!"&=463!2#!"&=463!2#!"&=463!2
�

�

�

�

�

�

��

@
�
�

�

��

@

��

@

��

@
�

�
s�

�
s�

�
��

�
s�

�
��

�
s�

�
s�

�
�/?O#"'&47632#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
	��		 	
�
�@

�

��

@

��

@

�@

�
�
	 		 	��

�
s�

�
s�

�
s�

�
�/?O#"&54632	#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2`	��	

	 �
�@

�

��

@

��

@

�@

�
�	��	
@
	��	�

�
s�

�
s�

�
s�

�
#"'#!"&5463!2632'
�m�w�@w��w�w��
'���*��w��w�w��w������."&462!5	!"3!2654&#!"&5463!2�p�pp�p��@���

@
�^B��B^^B@B^�pp�p���@�@� 
�@

�
 �@B^^B�B^^���k%!7'34#"3276'	!7632k[�[�v
��
6����`�%��`�$65&�%[�[k����
�`����5%���&&�'���4&"2"&'&54 �Ԗ���!��?H?��!,�,Ԗ�ԖmF��!&&!Fm�,�����%" $$ ���������^����a�a`@������^����a�a���-4'.'&"26% 547>7>2"KjK��X��QqYn	243nYqQ�$!+!77!+!$5KK���,ԑ�	���]""]ً�	��9>H7'3&7#!"&5463!2'&#!"3!26=4?6	!762xt�t` �� ^Q�w��w��w@?61��B^^B@B^	@(` �`��\\��\P�`t�t8`� �� ^�Ͼw��w@w�1^B��B^^B~
	@��` \ \�P�+Z#!"&5463!12+"3!26=47676#"'&=# #"'.54>;547632��w��w��w�
M8
pB^^B@B^�
'���sw-

9*##;No��j�'
�#��w��w@w�
"^B��B^^B�

	��*�����
"g`�81T`PSA:'�*��4�/D#!"&5463!2#"'&#!"3!26=4?632"'&4?62	62��w��w��w@?61

��B^^B@B^	@

��B�RnB�Bn^��w��w@w�1
^B��B^^B�
	@
���Bn���nB�C"&=!32"'&46;!"'&4762!#"&4762+!5462�4&���&�4�&���&4�4&��&4&��&4�4�&���&4�4&��&4&��&4�4&���&����6'&'+"&546;267��:	&�&&�&	s�@�	
�Z&&�&&�Z
	���+6'&''&'+"&546;267667��:	�:	&�&&�&	�	s�@�	
�:�	
�Z&&�&&�Z
	��:
	z����6'&''&47667S�:	�:�	s�@�	
�:�4��:
	�|�	&546h��!!0a�
�
�
$���#!"&5463!2#!"&5463!2&�&&&��&�&&&@��&&�&&��&&�&&���#!"&5463!2&��&&�&@��&&�&&���&54646&5-�	��:	s��:	
��:4�:�
	���+&5464646;2+"&5&5-�	�	&�&&�&	�:	s��:	
��:	
�&&��&&�
	�:�
	���&54646;2+"&5-�	&�&&�&	s��:	
�&&��&&�
	62#!"&!"&5463!2�4��@��&&�&&-��:��&&&�&�����	"'&4762����4��4����4��4��4Z��f�	"/&47	&4?62S�4����4����44��4���#/54&#!4&+"!"3!;265!26 $$ �&�&�&�&&&�&&@���^����a�a@�&&&�&�&�&&&+�^����a�a�����54&#!"3!26 $$ �&�&&&@���^����a�a@�&&�&&+�^����a�a�����+74/7654/&#"'&#"32?32?6 $$ }��Z��Z��Z��Z����^����a�a���Z��Z��Z��Z�^����a�a�����#4/&"'&"327> $$ [4�h�4[j����^����a�a"Z�i�Z��J�^����a�a�����:F%54&+";264.#"32767632;265467>$ $$ ���o�W��	5!"40K(0?i�+! ":����^����a�a����X�R�dD4!&.uC$=1/J=�^����a�a�����.:%54&+4&#!";#"3!2654&+";26 $$ `��``��������^����a�a�����������^����a�a�����/_#"&=46;.'+"&=32+546;2>++"&=.'#"&=46;>7546;232�m&&m �l&�&l� m&&m �l&�&l�s&�%�&�&��%�&&�%�&�&��%�&&�&l� m&&m �l&�&l� m&&m �,�&��%�&&�%�&�&��%�&&�%�&���#/;"/"/&4?'&4?627626.  6 $$ I�

��

�

��

�

��

�

��
͒������(�r���^����a�aɒ

��

�

��

�

��

�

��
(��������_�^����a�a����� ,	"'&4?6262.  6 $$ ��Z4��f4�4fz�������(�r���^����a�a�Z&4f�f4�(��������_�^����a�a�����	"4'32>&#" $&6$  W���oɒV�󇥔�� z�����zz�8�����YW�˼�[����?����zz�:�zz�@�5K #!#"'&547632!2A4�@%&&K%54'�u%%�&54&K&&���4A��5K��$l$L%%�%54'�&&J&j&��K�5�K #"/&47!"&=463!&4?632�%�u'43'K&&%�@4AA4���&&K&45&�%@6%�u%%K&j&%K5�5K&$l$K&&�u#5��K@!#"'+"&5"/&547632K%K&56$��K5�5K��$l$K&&�#76%�%53'K&&%�@4AA4���&&K&45&�%%�u'5��K�"#"'&54?63246;2632K%�u'45%�u&&J'45%&L4�4L&%54'K%�5%�t%%�$65&K%%���4LL4�@&%%K'���,"&5#"#"'.'547!3462�4&�b��qb>#5���&4�4�&6Uu�e7D#		"�dž�&����/#!"&546262"/"/&47'&463!2�
���&�@&&4�L

r&4���

r

L�&�&�
���4&&�&�L

rI�@&���

r

L�4&&
���s/"/"/&47'&463!2#!"&546262&4���

r

L�&�&�
���&�@&&4�L

r@�@&���

r

L�4&&�
���4&&�&�L

r��##!+"&5!"&=463!46;2!2�8(�`8(�(8�`(88(�8(�(8�(8 �(8�`(88(�8(�(8�(88(�`8��#!"&=463!2�8(�@(88(�(8 �(88(�(88z���5'%+"&5&/&67-.?>46;2%6�.@g.��L4�4L��.g@.
��.@g.
L4�4L
.g@.���g.n.���4LL43�.n.g��g.n.�34LL4�͙.n.g����-  $54&+";264'&+";26/�a����^�����
�

�


�

�����^����a�a��
�
fm��
@
J%55!;263'&#"$4&#"32+#!"&5#"&5463!"&46327632#!2���$�$�8�~+(88�8(+}�(�`8(��(8`�]��]k=��=k]��]��8���,8e�8P88P8�����`(88(�@���M��M����N4&#"327>76$32#"'.#"#"&'.54>54&'&54>7>7>32&����z&^��&.������/+>+)>J>	W��m7����'
'"''? &4&c��&^|h_b��ml/J@L@#*
#M6:D
35sҟw$	'%
'	\�t��3#!"&=463!2'.54>54''�
��

@
�1O``O1CZ��Z71O``O1BZ��Z7�@

@
N�]SHH[3`�)Tt��bN�]SHH[3^�)Tt���!1&' 547 $4&#"2654632 '&476 ���=������=嘅�����}�(zVl��'��'���ٌ@�uhy����yhu����9(�}Vz��D#���#D#�������	=CU%7.5474&#"2654632%#"'&547.'&476!27632#76$7&'7+NWb=嘧�}�(zV�j�\i1
z,��X��
Y[6
$!%���'F��u�J�iys�?_�9ɍ?�kyhu�n(�}Vz����YF
KA؉L�a
�0��2�-�F"@Q���sp@�_���!3%54&+";264'&+";26#!"&'&7>2
�

�


�
�
#%;"�";%#<F<������7


���??""??�$$ll2#"'&'	+&/&'&?632	&'&?67>`,@L�����5
`		��
`	�����L�`4�L��H`
����`	��
a	5�
��L@��#37;?Os!!!!%!!!!%!!!!!!!!%!!4&+";26!!%!!!!74&+";26%#!"&546;546;2!546;232� ��`@���� ��`@���� ���@����@�� ��@����
@

@
� ��@��� �� 
@

@
�L4��4LL4�^B@B^�^B@B^�4L� �� @@��@@ � � � @@  

��
��@@ �� � 

��
M�4LL44L`B^^B``B^^B`L���7q.+"&=46;2#"&=".'673!54632#"&=!"+"&=46;2>767>3!54632�<M33K,��	��	
 j8Z4L2B4:;M33K,?		��	
�0N<* .)C=W]xD��0N<* .)C=W]xD?\�-7H)��	��	
�".=']�-7H)�
��w	��	
�<?.>mBZxPV3!�<?.>mBZxPV3!�
���&#"'&'5&6&>7>7&54>$32�d�FK��1A
0)����L���.���٫�C58.H(Y���e����#3C $=463!22>=463!2#!"&5463!2#!"&5463!2���H���&�&/<R.*.R</&�&�&��&&�&&��&&�&������Bɀ&&�4L&&L4�&&f��&&�&&��&&�&&Z� %"'	"/&4762��4���4��4�ͥ���5��5Z����	"'&4?62	62��4��44���5����5��%K%#!".<=#"&54762+!2"'&546;!"/&5463!232
�@�&@<@&�@	����:��&���	�
��& 

��&���&���
����&��	

��`&���:$"&462"&462!2#!"&54>7#"&463!2!2�LhLLh�LhLLh�!��
�&&�&��&&�&4hLLhLLhLLhL��%z<
0&4&&)17&4&
&&��#!"&5463!2!2��\�@\��\@\��\���@\��\�\��\ �W�*#!"&547>3!2!"4&5463!2!2W��+�B��"5P+�B@"5����^�=���\@\� \�H#�t3G#�3G:�_H�t�\��\ �@��+32"'&46;#"&4762�&��&�4�&��&4�4&�&4�4&&4�@�"&=!"'&4762!5462�4&�&4�4&&4�4�&��&4&��&����
!!!3!!��������������������������0@67&#".'&'#"'#"'32>54'6#!"&5463!28ADAE=\W{��O[/5dI
kDt���pČe1?*�w�@w��w�w��	(M&
B{Wta28r=Ku?RZ^Gw��T	-�@w��w�w�����$2+37#546375&#"#3!"&5463�w��w���/Dz?s�����w��w��w�@w�S�88�	�����w�w����#'.>4&#"26546326"&462!5!&  !5!!=!!%#!"&5463!2�B^8(�Ԗ���������>��������@�|�K5�5KK55K�^B(8Ԗ�Ԗ�€>�������v����5KK55KK�H��G4&"&#"2654'32#".'#"'#"&54$327.54632@p�p)*Ppp�p)*P�b	'"+`�N*(�a���;2��̓c`." b
PTY9��ppP*)p�ppP*)�b ".`�(*N��ͣ�2�ͣ����`+"'	b
MRZB�����4&"24&"264&"26#"/+"&/&'#"'&547>7&/.=46?67&'&547>3267676;27632#"&'"'#"'&547&'&=4767&547>32626?2#"&'"'#"'&547&'&=4767&547>32626?2��Ԗ���LhLKjKLhLKjK��	�"8w
s%(�")v

�
>�
	�"8x
s"+�")v
�<�
��3zLLz3��
3>8L3)x3
��3zLLz3��
3>8L3)x3
�Ԗ�Ԗ�4LL45KK54LL45KK���
#)0C	wZl/
�
Y�	
N,&�
#)0C	vZl.
�
Y�L0"��qG^^Gq�q$ ]G)Fq�qG^^Gq�q$ ]G)Fq��%O#"'#"&'&4>7>7.546$ '&'&'# '32$7>54'�����VZ|�$2$
|��E~E<�|
$2$�|ZV���:�(t}�������X(	
&%(H�w�쉉��x�H(%&	(X�ZT\�MKG���<m$4&"24&#!4654&#+32;254'>4'654&'>7+"&'&#!"&5463!6767>763232&4&&4�N2��`@`%)7&,$)'  
%/0Ӄy�#5 +�1	&<��$]`�{t��5KK5$e:1&+'3T�F0�h��4&&4&�3M:�;b^v�+D2 5#$��I�IJ 2E=\$YJ!$MCeM��-+(K5�5K�K5y�*%A�u]c���>q4&"24&'>54'654&'654&+"+322654&5!267+#"'.'&'&'!"&5463!27>;2&4&&4�+ 5#bW���0/%
  ')$,&7)%`@``2N��h�0##�T3'"(0;e$��5KK5 t��ip��<&	1&4&&4&�#\=E2&%IURI��$#5 2D+�v^b;�:M2g�c]vDEA%!bSV2M�K5�5K(,,��MeCM$!I��@�#"&547&547%6@�?V��8������b%	I�)���94.""'."	67"'.54632>32�+C`\hxeH>Hexh\`C+�ED���4��
#L</��>�oP$$Po�>��Q|I.3MCCM3.I|Q����/����Z$_d�C�+I@$$@I+� (@%#!"&5463!2#!"3!:"&5!"&5463!462�
��w��w@

��B^^B 
���4&�@&&�&4 ` 
�w�w�
 
^B�@B^24��& &�& &�����%573#7.";2634&#"35#347>32#!"&5463!2���FtIG9;HI�x�I��<,tԩw�@w��w�w�z��4DD43EE�����ueB���&#1�s�@w��w�w�����.4&"26#!+"'!"&5463"&463!2#2��&�S3L�l&�c4LL4�4LL4c����@��&��&{�LhLLhL��'?#!"&5463!2#!"3!26546;2"/"/&47'&463!2��w��w��w��@B^^B@B^@�&4��t

r

��&&`��w��w@w�@^B��B^^B@R�&��t

r

��4&&@"&5!"&5463!462	#!"&54&>3!2654&#!*.54&>3!2���4&�@&&�&4 s�w��

@B^^B��

@w��4��& &�& &��3�@w�
 
^B�B^ 
�����
I&5!%5!>732#!"&=4632654&'&'.=463!5463!2!2�J���J���S��q*5&=CKu��uKC=&5*q͍S8( ^B@B^ (8���`N��`Ѣ�΀G�tO6)"M36J[E@@E[J63M")6Ot�G�(8`B^^B`8	���',2��6'&'&76'6'&6&'&6'&4#"7&64 654'.'&'.63226767.547&7662>76#!"&5463!2		/[		.
=���X��Ě4,+"*+, 1JH'5G:�:#L5+@=&#���w�@w��w�w�P.1GE�,��ԧ��44+	;/5cFO:>JJ>:O9W5$@(b4��@w��w�w������'?$4&"2$4&"2#!"&5463!3!267!2#!#!"&5!"'&762&4&&4&&4&&4�8(�@(88(�c==c�(8��*�&�&�*�6�&4&&4&&4&&4& ��(88(@(88HH88`(�@&&�('��@����1c4&'.54654'&#"#"&#"32632327>7#"&#"#"&54654&54>76763232632


	N<�;+gC8�A`1a9�9�g��w����|�9�8aIe$I�VN��z<�:LQJ
�,�-[%	061I��(�)W,$-������7,oIX(�)o�ζA;=N0
eTZ
	 (���O#".'&'&'&'.54767>3232>32�e^\4?P	bM��O0#382W#& 9C9
Lĉ"	82<*9FF(W283#0OMb	P?4\^eFF9*<28	"��L
9C9 &#��!"3!2654&#!"&5463!2`��B^^B@B^^ީw��w��w@w�^B��B^^B@B^���w��w@w�����#!72#"'	#"'.546763���YY�!''!0#�G�G$/!''!�&�UU�jZ	
8"��"8
 ��X!	
8"	"8
	���GW4.'.#"#".'.'.54>54.'.#"32676#!"&5463!2 1.-
+$)
c�8
)1)

05.D
<9�0)$9��w�@w��w�w�W

)1)
7�c
)$+
-.1 �9$)0���<
D.59�@w��w�w��,T1# '327.'327.=.547&54632676TC_L��Ҭ���#+�i�!+*p�DNBN,y[����`m`%i]hbE����m��}a�u&,�SXK��
&$��f9s?
_���#"!#!#!54632��V<%'����Э��HH���	�(ں����T\dksz�� &54654'>54'6'&&"."&'./"?'&546'&6'&6'&6'&6'&74"727&6/�a���49[aA)O%-j'&]�]5r-%O)@a[9'
0BA;+


>HC���U


	#	
	
$				2	
AC: �����oM�=a-6O�UwW[q	( -	q[WwU�P6$C

+) (	
8&/
&eM���a�	
&
$	

��%+"&54&"32#!"&5463!54 �&@&�Ԗ`(88(�@(88(�r��&&j��j�8(��(88(@(8��������#'+2#!"&5463"!54&#265!375!35!�B^^B��B^^B
�

��
`���^B�@B^^B�B^�
��
�
`��
�������!="&462+"&'&'.=476;+"&'&$'.=476;�p�pp�p�$���!�$qr�
�%���}�#ߺ���pp�p��!�E$�
�rq�ܢ#���
%�
ֻ��!)?"&462"&4624&#!"3!26!.#!"#!"&547>3!2/B//B//B//B�
�@

�
�2�����^B�@B^�\77\�aB//B//B//B/�@

��
��

�~��B^^B@2^5BB5��2���.42##%&'.67#"&=463! 2�5KK5L4�_�u:B&1/&��.-
zB^^B���4L��v��y�KjK��4L[!^k'!A3;):2*�<vTq6^B�B^�L4�$���)��*@��A4#"&54"3!4."#!"&5!"&5>547&5462�;U gI�v��0Z���Z0�L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig0,3lb??bl3���4Lj��jL4*\���(88(�����\���}I/#"/'&/'&?'&'&?'&76?'&7676767676`�
(�5)�0
)��*)
0�)5�(
��
(�5)�0
))��))
0�)5�(
��*)
0�)5�(��
)�5)�0
)*��*)
0�)5�)
��
)�5)�0
)*���5h$4&"24&#!4>54&#"+323254'>4'654&'!267+#"'&#!"&5463!2>767>32!2&4&&4�N2��$YGB
(HGEG  H��Q�#5K4L��i�!<�����;��5KK5 
A#
("/?&}�vh��4&&4&�3M95S+C=�,@QQ9��@@�IJ 2E=L5i�>9eM��E;K5�5K	J7R>@#�zD<����5=q%3#".'&'&'&'.#"!"3!32>$4&"2#!"#"&?&547&'#"&5463!&546323!2`  #A<(H(GY$��2NL4K5#aWTƾh&4&&4�K5��;����=!�i��hv�}&?/"(
#A
 5K��2*!	Q@.'!&=C+S59M34L=E2 JI UR@@&4&&4&���5K;E��Lf9>�ig�<Dz�#@>R7J	K�5h4&"24#"."&#"4&#"".#"!54>7#!"&54.'&'.5463246326326&4&&4��IJ 2E=L43M95S+C=�,@QQ9�@@�E;K5��5K	J7R>@#�zD<�gi�>9eM��Z4&&4&<�#5K4LN2��$YGB
(HGEG  H��V���;��5KK5 
A#
("/?&}�vh��i�!<��4<p4.=!32>332653272673264&"2/#"'#"&5#"&54>767>5463!2�@@��2*!	Q@.'!&=C+S59M34L.9E2 JI UR�&4&&4&��Lf6A�ig�6Jy�#@>R7J	K5�5K;E@TƾH  #A<(H(GY$��2NL4K#5#a=4&&4&�D��=�i��hv�}&?/"(
#A
 5KK5��;�����+54&#!764/&"2?64/!26 $$ &�
�[6��[[j6[��&���^����a�a@�&�4[��[6[��[6�&+�^����a�a�����+4/&"!"3!277$ $$ [��6[��
&&��[6j[
���^����a�ae6[j[6�&�&�4[j[��^����a�a�����+4''&"2?;2652?$ $$ ��[6[��[6�&�&�4[���^����a�af6j[[��6[��
&&��[��^����a�a�����+4/&"4&+"'&"2? $$ [6�&�&�4[j[6[j���^����a�ad6[��&&�
�[6��[[j��^����a�a������  $2>767676&67>?&'4&'.'.'."#&6'&6&'3.'.&'&'&&'&6'&>567>#7>7636''&'&&'.'"6&'6'..'/"&'&76.'7>767&.'"76.7"7"#76'&'.'2#22676767765'4.6326&'.'&'"'>7>&&'.54>'>7>67&'&#674&7767>&/45'.67>76'27".#6'>776'>7647>?6#76'6&'676'&67.'&'6.'.#&'.&6'&.5/�a����^����D&"	


	4
	$!	#
	
		
	



 
.0"�Y
	+


!	
	

$	
	"
+


		
	�Α	
		
����^����a�a��

	

			
	

	

		
	
		P� '-(	#	*	$

"
!				
*
!	

(				

	
��$�
		
2
�~�/$4&"2	#"/&547#"32>32�&4&&4��V%54'j&&�'��/덹���:,���{	&4&&4&�V%%l$65&�b��'C��r!"��k[G�+;%!5!!5!!5!#!"&5463!2#!"&5463!2#!"&5463!2����������&��&&�&&��&&�&&��&&�&�������@�&&&&�&&&&�&&&&��{#"'&5&763!2{�'
��**�)��*��)'/!5!#!"&5!3!26=#!5!463!5463!2!2���^B�@B^�&@&`��^B`8(@(8`B^��� B^^B�&&�����B^�(88(�^���G	76#!"'&?	#!"&5476	#"'&5463!2	'&763!2#"'��c�)'&�@*������*�@&('�c���(&�*�cc�*�&'
����*�@&('�c���'(&�*�cc�*�&('���c�'(&�@*��19AS[#"&532327#!"&54>322>32"&462 &6 +&'654'32>32"&462Q�g�Rp|Kx;CB��y��y� 6Fe=
BP���PB
=eF6 ��Ԗ��V����>!pR�g�QBC;xK|��Ԗ���{QNa*+%��x��x5eud_C(+5++5+(C_due2Ԗ�Ԗ�����>�NQ{u�%+*jԖ�Ԗ��p�!Ci4/&#"#".'32?64/&#"327.546326#"/&547'#"/&4?632632��(* 8(!�)(��A�('��)* 8(!U�SxyS�SXXVzxT�TU�SxyS�SXXVzxT�@(� (8 *(���(��'(�(8 ���S�SU�Sx{VXXT�T�S�SU�Sx{VXXT���#!"5467&5432632�������t,Ԟ;F`j�)��������6�,��>�jK?�s��
�!%#!"&7#"&463!2+!'5#�8Ej��jE8�@&&&&@������XYY�&4&&4&�qD�S�%��q%��N\jx��2"&4#"'#"'&7>76326?'&'#"'.'&676326326&'&#"32>'&#"3254?''7�4&&4&l��
�NnbS���VZbR��SD	
zz
	DS��Rb)+U���Sbn�
��\.2Q\dJ'.2Q\dJ.Q2.'Jd\Q2.'Jd`!O�`��	`�����&4&&4�r$#@�B10M�5TNT{L�5T
	II	
T5�L;l'OT4�M01B�@#$�*�3;$*�3;�;3�*$;3�*$�:$/� @@�Qq`��@���"%3<2#!"&5!"&5467>3!263!	!!#!!46!#!�(88(�@(8��(8(�`(�(8D<���+����+�<��8(�`(��8(�`�8(�@(88( 8(�(`�(8(��(������<��`(8��(`����`(8����||?%#"'&54632#"'&#"32654'&#"#"'&54632|�u�d��qܟ�s]
=
��Ofj�L?R@T?��"&�
>
�f?rRX=Ed�u�ds���q��
=
_M�jiL��?T@R?E& �f
>
�=XRr?��b���!1E)!34&'.##!"&5#3463!24&+";26#!"&5463!2����
��
08(��(8��8(@(8��
�

�
�8(��(88(�(`(����1

�`(88(���(88(@

��
�`(88(@(8(��`���#!"&5463!2�w�@w��w�w�`�@w��w�w��/%#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&��&&�&&�&&�&&�&&�&&��@'7G$"&462"&462#!"&=463!2"&462#!"&=463!2#!"&=463!2�p�pp�pp�pp��
�@

�
��p�pp��
�@

�

�@

�
Рpp�p��pp�p���

�
�pp�p���

�
�

�
��<L\l|#"'732654'>75"##5!!&54>54&#"'>3235#!"&=463!2!5346=#'73#!"&=463!2#!"&=463!2}mQjB919+i1$AjM_3<��/BB/.#U_:IdDRE�
�@
�
����k*G�j�
�@
�

�@

�
TP\BX-@8
C)5�XsJ@�$3T4+,:;39SG2S.7<���

�vcc)�)%L�l�}�

��

�
���5e2#!"&=463%&'&5476!2/&'&#"!#"/&'&=4'&?5732767654'&��@�0��2uBo
T25XzrDCBB�Eh:%��)0%HPIP{rQ�9f#-+>;I@KM-/Q"�@@@#-bZ��$&P{<�8[;:XICC>.�'5oe80#.0(
l0&%,"J&9%$<=DTI���cs&/6323276727#"327676767654./&'&'737#"'&'&'&54'&54&#!"3!260%
<4�"VRt8<@<
-#=XYhW8+0$"+dT�Lx-'I&JKkm��uw<=V�@�!X@		v
'��|N;!/!$8:I�Ob�V;C#V

&
(���mL.A:9 !./KLwP�M�$��@@
��/?O_o��%54&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!26#!"&5463!2��@��@��@���@��@��@���@��@��@�^B��B^^B@B^�����������������������������N��B^^B@B^^���#+3	'$"/&4762%/?/?/?/?�%k��*��6�6��bbbb|��<<��<�bbbb��bbbb�%k���6���6Ƒbbb��<<��<<�^bbbbbb@��M$4&"2!#"4&"2&#"&5!"&5#".54634&>?>;5463!2�LhLLh����
	�	LhLLhL!'�Ԗ���Ԗ@'!&	
�?�&&LhLLhL�	�	
��hLLhL��	j��jj��j	&@6/"
��&&���J#"'676732>54.#"7>76'&54632#"&7>54&#"&54$ ���ok;	-j=y�hw�i�[+PM3ѩ���k=J%62>Vc��a�aQ�^��� ]G"�'9��r�~:`}�Ch�  0=Z�٤���W=#uY2BrUI1�^Fk[|��a�����L2#!67673254.#"67676'&54632#"&7>54&#"#"&5463�w��w�+U	,i<��F{�jh�}Z+OM

2ϧ���j<J%51=Ub�w��w��w�@w�zX"�'8'�T�yI9`{�Bf� 
,>X�բ���W<"uW1AqSH1�bd��w�w����'74'!3#"&46327&#"326%35#5##33#!"&5463!2����0U6c��c\=hl���ࠥ�Ymmnnnn�w�@w��w�w�w&�46#�Ȏ;ed����wnnnnn��@w��w�w����	]#/#"$&6$3 &#"32>7!5!%##5#5353����Е���tt����u�{�zz�{S�ZC�`�c�����o���t�*�t��q|��|.EXN#�??�������,<!5##673#$".4>2"&5!#2!46#!"&5463!2��r�M*
�*M~�~M**M~�~M*j����jj����&�&&&�`��P%��挐|NN|���|NN|�*�jj���jj�@��&&�&&@�
"'&463!2�@4�@&�Z4�@�4&@
#!"&4762&��&�4�Z4&&4��@@���
"'&4762�&4�@�4&@��&�4�&�@�
"&5462@�@4&&4��4�@&�&�@����
3!!%!!26#!"&5463!2�`��m��`
�^B��B^^B@B^���
 `���@B^^B�B^^��@
"'&463!2#!"&4762�@4�@&�&&��&�4��4�@�4&Z4&&4��@��
"'&463!2�@4�@&��4�@�4&@
#!"&4762&��&�4�Z4&&4��@��:#!"&5;2>76%6+".'&$'.5463!2^B�@B^,9j�9Gv33vG9�H9+bI��\
A+=66=+A
[��">nSM�A_:��B^^B1&�c*/11/*{�'VO�3��@/$$/@�*�?Nh^��l+!+"&5462!4&#"!/!#>32]��_gTRdg�d���QV?U��I*Gg?����!�2IbbIJaa���iwE33����00� 08����4#"$'&6?6332>4.#"#!"&54766$32z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������z��
�	
_hQ��н�QGB�'(&�*�eoz�(���q!#"'&547"'#"'&54>7632&4762.547>32#".'632�%k'45%��&+�~(
(�h		&

\(
(�		&

~+54'k%5%l%%l$65+~

&		�(
(\

&		�h(
(~�+%��'��!)19K4&"24&"26.676&$4&"24&"24&"2#!"'&46$ �KjKKjKjKKj�e2.e<^P��,bKjKKj��KjKKjKjKKj��#��#���LlL�KjKKjKjKKjK��~-��M<M�(PM<rjKKjK�jKKjKujKKjK�������L���< 6?32$6&#"'#"&'5&6&>7>7&54$ L�h��я�W.�{+9E=�c��Q�d�FK��1A
0)���������p�J2`[Q?l&������٫�C58.H(Y��'����:d 6?32$64&$ #"'#"&'&4>7>7.546'&'&'# '32$7>54'Y����j`a#",5NK�
����~E�����VZ|�$2$
|��:
$2$�|ZV���:�(t}�����h�fR�88T
h�̲����X(	
&%(H�w��(%&	(X�ZT\�MKG�{x��|�!#"'.7#"'&7>3!2%632u��

�j
�H����{(e9
�1b���U#!"&546;5!32#!"&546;5!32#!"&546;5463!5#"&5463!2+!2328(��(88(`�`(88(��(88(`�`(88(��(88(`L4`(88(@(88(`4L`(8 ��(88(@(8��8(��(88(@(8��8(��(88(@(8�4L�8(@(88(��(8�L4�8����OY"&546226562#"'.#"#"'.'."#"'.'.#"#"&5476$32&"5462��И&4&NdN!>!
1X:Dx++w�w++xD:X1
-�U��
�!�*,*&4&��h��h&&2NN2D&

..J<
$$
<JJ<
$$
<J..

��P���bb&&�7!!"&5!54&#!"3!26!	#!"&=!"&5463!2��`(8��
�@

�
+��8(�@(8��(88(@(8�(��8(� @

@
�m+�U�`(88(�8(@(88(��
�h`���(\"&54&#"&46324."367>767#"&'"&547&547&547.'&54>2�l4

2cK�Eo���oED
)
�
�
�
)
D�g-;</-
?.P^P.?
-/<;-gY�����Y�

.2 L4H|O--O|HeO,����,Oe�q1Ls26%%4.2,44,2.4%%62sL1q�c�qAAq����4#!#"'&547632!2#"&=!"&=463!54632
��
��		@	
`
	��	
��

`?`�
�

@	
	@	
�!	��	
�
�
�
����54&+4&+"#"276#!"5467&5432632�
�
�
	`		_
�������v,Ԝ;G_j�)��``

��
	��		_ԟ����7
�,��>�jL>���54'&";;265326#!"5467&5432632	��		��
�
�
�
�������v,Ԝ;G_j�)���	`		����

`������7
�,��>�jL>�����X`$"&462#!"&54>72654&'547 7"2654'54622654'54&'46.' &6 �&4&&4&�y��y�%:hD:Fp�pG9�F�j� 8P8 LhL 8P8 E;
Dh:%������>�4&&4&}y��yD~�s[4D�d=PppP=d�>hh>@�jY*(88(*Y4LL4Y*(88(*YDw"
A4*[s�~����>�����M4&"27 $=.54632>32#"' 65#"&4632632 65.5462&4&&4�G9��������&
<#5KK5!��!5KK5#<
&ܤ��9Gp�p&4&&4&@>b�u��ោؐ&$KjK�nj��j�KjK$&����j��j�b>Ppp���
%!5!#"&5463!!35463!2+32����@\��\���8(@(8�\@@\������\@\���(88(��\��@��34#"&54"3#!"&5!"&5>547&5462�;U gI@L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig04Lj��jL4*\���(88(�����\��@"4&+32!#!"&+#!"&5463!2�pP@@P���j�j�@�@�\�@\�&��0�p����j��	��� \��\�&��-B+"&5.5462265462265462+"&5#"&5463!2�G9L4�4L9G&4&&4&&4&&4&&4&L4�4L�
��&���=d��4LL4d=�&&�`&&�&&�`&&�&&��4LL4
 ��&�#3CS#!"&5463!2!&'&!"&5!463!2#!"&52#!"&=4632#!"&=463�(8(��(88(�(`�x
��c�`(8���@��@��@�`(��(88(@(8(D��9�8(��`@�@@�@@��/?O_o��������-=%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!!5463!2#!"&5463!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
�����
@
&�&&&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
����

`��&&�&&
��/?O_o�����%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!#!"&=!!5463!24&+"#54&+";26=3;26%#!"&5463!463!2!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
���8(�@(8��
@

@
�
@

@
�
@
&�&&@8(�(8@&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
��� (88( ���

�@

``

��

``
-�&&& (88(��&@����<c$4&"2!#4&"254&+54&+"#";;26=326+"&5!"&5#"&46346?>;463!2�KjKKj�����KjKKj�������&��Ԗ���Ԗ�&&�@�&�&KjKKjK��
��jKKjK ������.��&j��jj��j&4&�@�@&&���#'1?I54&+54&+"#";;26=326!5!#"&5463!!35463!2+32����������� \��\����8(@(8�\  \����������\@\���(88(��\����:
#32+53##'53535'575#5#5733#5;2+3����@��E&&`�@@��`  ����  `��@@�`&&E%@�`��@ @ @��		 �� � � � �� 		��@ 0
@��!3!57#"&5'7!7!��K5�������@ � � @���5K�@����@@��� �����#3%4&+"!4&+";265!;26#!"&5463!2&�&�&�&&�&&�&�w�@w��w�w���&&��@&&��&&@��&&��@w��w�w�����#354&#!4&+"!"3!;265!26#!"&5463!2&��&�&��&&@&�&@&�w�@w��w�w�@�&@&&��&�&��&&@&:�@w��w�w��-M�3)$"'&4762	"'&4762	s
2

�.

�

2

�w��
2

�.

�

2

�w��
2

�

�

2

�w�w

2

�

�

2

�w�w
M�3)"/&47	&4?62"/&47	&4?62S
�.

2

��w

2

��
�.

2

��w

2

�M
�.

2

��

2

�.

�.

2

��

2

�.M�3S)$"'	"/&4762"'	"/&47623
2

�w�w

2

�

�

2

�w�w

2

�

��
2

��w

2

�

�.v
2

��w

2

�

�.M�3s)"'&4?62	62"'&4?62	623
�.

�.

2

��

2

�.

�.

2

��

2�
�.

�

2

�w�

2v
�.

�

2

�w�

2-Ms3	"'&4762s
�w�

2

�.

�

2�
�w�w

2

�

�

2
MS3"/&47	&4?62S
�.

2

��w

2

�M
�.

2

��

2

�.M
3S"'	"/&47623
2

�w�w

2

�

�m
2

��w

2

�

�.M-3s"'&4?62	623
�.

�.

2

��

2-
�.

�

2

�w�

2���/4&#!"3!26#!#!"&54>5!"&5463!2
��

@
�^B��  &�&  ��B^^B@B^ @

��
M��B^%Q=
&&<P&^B@B^^�+3"&5463!2#3!2654&#!"3#!"&=324+"3�B^^B@B^^B��
@

��
`�^B��B^�p�^B�B^^B�@B^`�@

�
�S`(88(``  ��'$4&"2%4&#!"3!26#!"&5463!2�&4&&4�
��

@
�^B��B^^B@B^f4&&4&��

�@
��B^^B@B^^/$4&"2%4&#!"3!264+";%#!"&5463!2�/B//B�
�


���0L4�4LL44L_B//B/��

�@
M   �4LL44LL���  >& $$ ������(���r���^����a�a��������(���^����a�a����!C#!"&54>;2+";2#!"&54>;2+";2pP��PpQ��h@&&@j�8(�Pp�pP��PpQ��h@&&@j�8(�Pp@��PppP�h��Q&�&�j (8pP��PppP�h��Q&�&�j (8p��!C+"&=46;26=4&+"&5463!2+"&=46;26=4&+"&5463!2Q��h@&&@j�8(�PppP�Pp�Q��h@&&@j�8(�PppP�Pp��@h��Q&�&�j (8pP�PppP�@h��Q&�&�j (8pP�Ppp@�@�	#+3;G$#"&5462"&462"&462#"&462"&462"&462"&462#"&54632K54LKj=KjKKj��KjKKj�L45KKjK�<^�^^��KjKKj��p�pp���\]��]\��jKL45K��jKKjKujKKjK��4LKjKK�^^�^��jKKjK��pp�p�r]��]\����� $$ ���^����a�aQ�^����a�a�����,#"&5465654.+"'&47623 #>bq��b�&4�4&�ɢ5����"		#D7e�uU6�&4&��m����1X".4>2".4>24&#""'&#";2>#".'&547&5472632>3�=T==T=�=T==T=��v)�G�G�+v�@b��R�R��b@�=&����\N����j!>�3l�k����i�k3�hPTDDTPTDDTPTDDTPTDD|x��xX�K--K��|Mp<#	)>dA{��RXtfOT# RNftWQ���,%4&#!"&=4&#!"3!26#!"&5463!2!28(�@(88(��(88(�(8��\�@\��\@\��\���(88(@(88(�@(88�@\��\�\��\ �u�'E4#!"3!2676%!54&#!"&=4&#!">#!"&5463!2!232�5��([��5@(\&��8(��(88(��(8,�9.��+�C��\��\@\� \��6Z]#+��#,k��(88(@(88(��;5E�>:��5E�\�\��\ �\�1. ���$4@"&'&676267>"&462"&462.  > $$ n%��%/���02�
KjKKjKKjKKjKf���ff�������^����a�a�y��y/PccP/�jKKjKKjKKjK���ff���ff�@�^����a�a�����$4@&'."'.7>2"&462"&462.  > $$ n20���/%��7KjKKjKKjKKjKf���ff�������^����a�a3/PccP/y��	jKKjKKjKKjK���ff���ff�@�^����a�a�����+7#!"&463!2"&462"&462.  > $$ �&��&&��&KjKKjKKjKKjKf���ff�������^����a�a�4&&4&�jKKjKKjKKjK���ff���ff�@�^����a�a���#+3C54&+54&+"#";;26=3264&"24&"2$#"'##"3!2@������@KjKKjKKjKKjK����ܒ���,����������gjKKjKKjKKjK�X�Ԁ�,�,��#/;GS_kw�����+"=4;27+"=4;2'+"=4;2#!"=43!2%+"=4;2'+"=4;2+"=4;2'+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;54;2!#!"&5463!2�``����``��`��``�``�``�``�``�``�````�p`���K5��5KK5�5Kp``�``�``��``�``�``��``�``��``��``�````��`��������5KK5�5KK@���*V#"'.#"63232+"&5.5462#"/.#"#"'&547>32327676���R?d�^��7ac77,9x�m#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�h[ 17��q%q#:��:#5KKu�'t#!X:	%�#+=&>7p@���*2Fr56565'5&'.	#"32325#"'+"&5.5462#"/.#"#"'&547>32327676@��ͳ�����8
2.,#,f�k*1x���-!���#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�e�`��v�o�8�t-�	�:5	��[�*�#:��:#5KKu�'t#!X:	%�#+=&>7p
�3$	"/&47	&4?62#!"&=463!2I�.

2

��w

2

�
-�@�)�.

2

��

2

�.
�-@@-��S�$9%"'&4762		/.7>	"/&47	&4?62i2

�.

�

2

�w�
E��>

u>

��.

2

��w

2

�
�2

�

�

2

�w�w
!��




�h�.

2

��

2

�.
���;#"'&476#"'&7'.'#"'&476�'
�)'�s
"+5+�@ա'
�)'����F*4*E�r4�M:�}}8��GO
�*4*������~�
(-/'	#"'%#"&7&67%632���B�;><���V�?�?V�� -����-C�4
<B�=�cB5���!%��%!�b 7I�))�9I7���	#"'.5!".67632y��(
��#

��##@,(
�)���8!	!++"&=!"&5#"&=46;546;2!76232-S��S����������S�

		��S��S�`���`���		

������K$4&"24&"24&"27"&5467.546267>5.5462 8P88P88P88P�8P88P�4,�C��S,4p�p4,,4p�p4,6d7AL*',4p�pP88P8�P88P8HP88P8`4Y��&+(>EY4PppP4Y4Y4PppP4Y�%*<O4Y4Ppp���
%@\ht�	"'&4762"&5462&#!"&463!2#"'&'7?654'7&#"&'&54?632#!"&463!2"&5462"'&4762��		

	����@U�SxyS���R���#PT����('�#��TU�SxySN���@����		

		�		

		
3��@��xS�SUO#���'(���V^�'(���PVvxS�SU��i��@��		

		
`�<+"&=46;2+"&=467>54&#"#"/.7!2���<'G,')7��N;2]=A+#H

�
�0P��R��H6^;<T%-S�#:/*@Z}


>h���.%#!"&=46;#"&=463!232#!"&=463!2�&�&&@@&&�&@&�&�&&&��&&�&�&�&&��&f�&&�&&b�#!"&=463!2#!"&'&63!2&�&&&'�'%@% �&&�&&�&&&&�k%J%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Sin�1KXL7觧�*		��#��&		*������@jC?.>!&1'\%Awc8^;:+<!P��%I%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Pln�EcdJ觧�*		��#��&		*������-@jC?.>!&1'\%AwcBiC:D'P%!	#!"&'&6763!2�P������&:�&?�&:&?����5"K�,)""K,)���h#".#""#"&54>54&#"#"'./"'"5327654.54632326732>32�YO)I-D%n "h.=T#)#lQTv%.%P_�	%	
%�_P%.%vUPl#)#T=@�/#,-91P+R[�Ql#)#|'�'
59%D-I)OY[R+P19-,##,-91P+R[YO)I-D%95%�_P%.%v���'3!2#!"&463!5&=462 =462 &546 ����&&��&&��&4&r&4&�������@����&4&&4&�G݀&&������&&f��������
��sCK&=462	#"'32=462!2#!"&463!5&'"/&4762%4632e*&4&i����76`al�&4&���&&��&&}n�

R

�

R
�z����f�Oego�&&�5�����`3��&&����&4&&4&�
D�

R

�

R
z����v���"!676"'.5463!2@�@w^�Cc�t~55~t�cC&�&@���?J���V��|RIIR|��V&&��#G!!%4&+";26%4&+";26%#!"&546;546;2!546;232�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�� �� ��N�4LL44L`B^^B``B^^B`L����L4&"2%#"'%.5!#!"&54675#"#"'.7>7&5462!467%632&4&&4��@�o�&�&}c ;pG=(
8Ai8^�^.�&4&&4&`��	`f�s��&& j�o/;J!#2
 KAE*,B^^B!`	$� ��-4&"2#"/&7#"/&767%676$!2�8P88P��Qr��	@
U���	@�
{`P�TP88P8�����P`��
�	@U	@�rQ���!6'&+!!!!2Ѥ���
8�������̙�e�;<*��@8 !�G��G�GQII���� %764'	64/&"2 $$ �f��3f4�:�4����^����a�a�f4334f�:4�:�^����a�a����� %64'&"	2 $$ ���:4f3��f4F���^����a�a��4�f4���4f�^����a�a����� 764'&"27	2 $$ �f�:4�:f4334����^����a�a�f4��:4f3���^����a�a����� %64/&"	&"2 $$ -�f4���4f�4����^����a�a��4f��3f4�:w�^����a�a���@��7!!/#35%!'!%j��/d��
�jg2�|�8�����������55���dc ��b���@��!	!%!!7!���FG)��D�H:�&�H����d���S)��U4&"2#"/ $'#"'&5463!2#"&=46;5.546232+>7'&763!2�&4&&4f]w�q�4�qw]	`dC���&&�:F�ԖF:�&&���Cd`�4&&4&����	]����]	`d[}�&�&�"uFj��jFu"�&�&�y}[d�#2#!"&546;4 +"&54&" (88(�@(88( r&@&�Ԗ8(��(88(@(8@����&&j��j�����'3"&462&    .  > $$ �Ԗ������>a��X��,��f���ff�������^����a�a�Ԗ�Ԗ�a>����T�X��,�,�~�ff���ff�@�^����a�a����/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88(�(88(�(88(�(88(�(88��/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88�(88(�(88�(88(�(88���5E$4&"2%&'&;26%&.$'&;276#!"&5463!2KjKKj�
���
��
�
f���	

�\�
�
�w�@w��w�w��jKKjK"�G

�
ܚ

��f


�
���

	�@w��w�w�����  $64'&327/�a����^�����  ��!  ����^����a�a��J@%��%	6�5��/	64'&"2	"/64&"'&476227<���ij��6��j6��u%k%~8p�8}%%�%k%}8p�8~%<���<�ij4j��4����t%%~8�p8~%k%�%%}8�p8}%k���54&#!"3!26#!"&5463!2&��&&�&�w�@w��w�w�@�&&�&&:�@w��w�w����/#!"&=463!24&#!"3!26#!"&5463!2���@�^B��B^^B@B^��w��w��w@w��@@�2@B^^B��B^^���w��w@w���+#!"'&?63!#"'&762�(��@�	@�(@>@�%����%%��� ���!232"'&76;!"/&76 �
�($��>��(����
		��J ���&%�����$%64/&"'&"2#!"&5463!2�ff4�-�4ff4f�w�@w��w�w��f4f�-�f4����@w��w�w�����/#5#5'&76	764/&"%#!"&5463!2��48`���
#�� ����\�P\��w�@w��w�w���4`8�
��
#�@  ���`\P�\`�@w��w�w�����)4&#!"273276#!"&5463!2&� *���f4�
'�w�@w��w�w�`�&')���4f�*�@w��w�w�����%5	64'&"3276'7>332#!"&5463!2�`��'(wƒa8!
�,j.��(&�w�@w��w�w��`4`*�'?_`ze<��	bw4/�*��@w��w�w�����-.  6 $$ ���� �������(�r���^����a�a���O����(��������_�^����a�a�����
-"'&763!24&#!"3!26#!"&5463!2y��B��(�(�
�@

�
�w�@w��w�w�]#�@�##� �

�@
�@w��w�w�����
-#!"'&7624&#!"3!26#!"&5463!2y(��(@B@u
�@

�
�w�@w��w�w��###��@���

�@
�@w��w�w�����
-'&54764&#!"3!26#!"&5463!2@�@####���@��w�@w��w�w��B��(�(������@�@w��w�w����`%#"'#"&=46;&7#"&=46;632/.#"!2#!!2#!32>?6�#
!"'�?_

BCbCa�f\	+
~�2�	
��
	�}0�$

��
q
90r�
�

�pr%Dpu���?#!"&=46;#"&=46;54632'.#"!2#!!546;2��D
a__����	g	

*`-Uh1

��������

�߫�}
	$^L��
���
4��b+"&=.'&?676032654.'.5467546;2'.#"�ǟ�
B{PDg	q�%%Q{%P46'-N/B).ĝ
�9kC<Q
7>W*_x*%K./58`7E%_���
�	,-3�
cVO2")#,)9;J)���
�"!*�
#VD,'#/&>AX��>++"''&=46;267!"&=463!&+"&=463!2+32��Ԫ�$
�	��	
p���U�9ӑ
@�/�*f�����o�	

VRfq
�f=S��E!#"&5!"&=463!5!"&=46;&76;2>76;232#!!2#![�
��

 ��

��
�
�%
)��
	���

��"

��Jg
Uh
B�W&WX���
hU
g��
�84&#!!2#!!2#!+"&=#"&=46;5#"&=46;463!2�j��@jo�����
������g�|�@��~�v����v�
u�n#467!!3'##467!++"'#+"&'#"&=46;'#"&=46;&76;2!6;2!6;232+32Q�Kt#�� ��#F�N�Qo!��"�դ��ѧ����!�mY

�Zga~bm]�

[o�"�U+��������,����� @��h��
h@�@X
��h��h
��@�8���3H\#5"'#"&+73273&#&+5275363534."#22>4.#2>��ut
3NtR�P*�H�o2

Lo�@!�R(�Ozh=�,G<X2O:&D1A.1G$<2I+A;"B,;&$��L��GlF/�����3�D�����;a��$8$��".�!3!
��.�3!#!"&5463!���8( 8(��(88( ��h (8��(88(@(8�(8H!!#!"&5463!54&#!"3!2654&#!"3!2654&#!"3!26��(D 8(��(88( 8��@��@��@�$����(88(@(8��(8� @@@@@@"�}
$BR3/&5##"'&76;46;232!56?5"#+#5!76;5!53'#3!533��H��
��

�����D��q		�x7��	���K/�/K��F��h�/"���		@`����Z		s�Y��w�jj��jj��j"�}
$4R%3/&5##"'&76;46;232!53'#3!533!56?5"#+#5!76;5��H��
��

��������K/�/K��F����q		�x7��	�h�/"���		@`����jj��jj��j�Z		s�Y��
w"�)9IY%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
��

����� ��@������@���`��		@`�����������"�)9IY#!"&=463!2%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2��� 
��

�������@��������@ ��r��		@`��r������"��
$CV%4&#"326#"'&76;46;232%#"'&'73267##"&54632!5346=#'73BX;4>ID2F��
��

������8PuE>.'%&TeQ,j��m{��+�>R�{�?jJrL6V��		@`��7>wmR1q
uW�ei��/rr�
:V��r"��
$7V4&#"326#"'&76;46;232!5346=#'73#"'&'73267##"&54632BX;4>ID2F��
��

������+�>R�{�8PuE>.'%&TeQ,j��m{��?jJrL6����		@`���rr�
:V��r3>wmR1q
uW�ei����@�\%4&#"326#!"&5463!2+".'&'.5467>767>7>7632!2&%%&�&��&& &�7.'	:@�$LB�WM{#&$h1D!		.I/!	Nr�&&%%��&&�&&V?, L=8=9%pEL+%�%r@W!<%*',<2(<&L,"r�@\#"&546324&#!"3!26%#!#"'.'.'&'.'.546767>;&%%&�&��&& &i7qN��	!/I.		!D1h$&#{MW�BL$�@:	'.�&&%%���&&��&&�=XNr%(M&<(2<,'*%<!W@r%�%+LEp%9=8=L ���	+=\d����%54#"327354"%###5#5#"'&53327#"'#3632#"'&=4762#3274645"=424'.'&!  7>76#'#3%54'&#"32763##"'&5#327#!"&5463!2��BB��PJN�C'%!	B?)#!CC $)�54f�"��@@
B+����,A

A+�&�+A
�
ZK35N #J!1331�CCC $)��w�@w��w�w��2��"33�F�Y�F~��(-%"��o�4*)$�(*�	(&;�;&&9LA38�33�4��S,;;,W��T+<<+T;(��\g7�x�:&&:�:&&<r����%-�@w��w�w����	+=[c}���#"'632#542%35!33!3##"'&5#327%54'&#"5#353276%5##"=354'&#"32767654"2 '.'&547>76 3#&'&'3#"'&=47632%#5#"'&53327�''RZZ�:k��id YYY.06�	62+YY-06	R[!.�'CD''EH$��VV�X:���:Y
X;��:Y
�fyd/%jG�&DC&&CD&O[52.
[$�C-D..D�^^���* l�y1%=^�I86�i077S
3
$EWgO%33%O�O%35	��EE�F�W�t;PP;p��t;PP;p�q��J�gT��F�Q%33&P�P%33%R�
7>%3���!+}��{�'+"&72'&76;2+"'66;2U
�&�
��	�(���P

�*��'�e�J."�-d�Z��-n �-���'74'&+";27&+";276'56#!"&5463!2�~�}�		�7��e �	���۩w�@w��w�w��"���
$Q#�'�!#
����@w��w�w��
�I-22#!&$/.'.'.'=&7>?>36����9II ! '	$ !�����01$$%A'	$ ! ����g	
\7@�)(���7Y
	
 \7@�)(���7Y
@����	'5557	���,���VW�QV���.R���W��=���?��l��%l`��������~����0��!#!#%777	5!	������R!!�XC�C��fff�݀�#�� `��,��������{��{{�`��������Og4&"2 &6 $"&462$"&62>7>7>&46.'.'. '.'&7>76 �Ԗ�� ���HR6L66L�G�HyU2LL2UyH��HyU2LL2UyHn
��X�6X��

��X�X��
Ԗ�Ԗ�����H�6L66L6�L2UyH��HyU2LL2UyH��HyU2L�n�6X��

��X�X��

�����2#!"&54634&"2$4&"2�w��w�@w��w�|�||��|�||���w�@w��w�w����||�||�||�|���	!3	37! $$ �n6^�5�5^h
����^����a�a������M�1�^����a�a���P��
*Cg'.676.7>.'$7>&'.'&'? 7%&'.'.'>767$/u5'&$I7o�b?K�\[z�H,1���+.@\7<��?5\V
,$V��g.GR@ �7��U,+!�����
	#	"8$}�{)�<�?L RR;kr,yE[��z#	/1
"#	#�eCI0/"5#`�	��"8���4~&p)4	2�{�H-.%W.L>���':Yi4&67&'&676'.'>7646&' '7>6'&'&7>7#!"&5463!2PR$++'TJX�j7-F��C',��,&C
."��!$28��h�/���"�	+p��^&+3$
i��0(�w�@w��w�w��+.i6=Bn\C1XR:#"�'jj�8Q.cAj�57!?"0D��$4"P[
&2�@w��w�w��D��"%.5#5>7>;!!76�P�Yh�pN!�HrD0�M��
 C0N��#>8\xx: �W]oW-�X���45���/%'#.5!5!#"37>#!"&5463!2p>,;$4
��5eD�+W�cE���w�@w��w�w�K�()��F
,VhV��^9tjA0/�@w��w�w���@�#"'&76;46;23�
��


��
	���&��

��� ���++"&5#"&7632�	���
^


c
� �&�

��@�#!'&5476!2� &��

����
^


b	���'&=!"&=463!546�
��� �&�
�
��	���
��
��q&8#"'&#"#"5476323276326767q'T��1[VA=QQ3���qq�Hih"-bfGw^44O#A���?66%CKJ�A}}�  !"�䒐""A$@C3^q|�z=KK?6�lk)���%!%!��V��V��u��u�u^-�m5�w��}�n�����~7M[264&"264&"2"&546+"&=##"&5'#"&5!467'&766276#"&54632�  �  ��*<;V<<O@-K<V<�<+*<J.@�k��c�lG
H_�_H
�<+*<<*+<    �<*�R+<<+�*<�f.@�+<<+��+<<+�@.��7�uu�7�
�**�
���R+<<+�+;;	��"%3I�#5472&6&67><&4'>&4.'.'.'.'.'&6&'.'.6767645.'#.'6&'&7676"&'&627>76'&7>'&'&'&'&766'.7>7676>76&6763>6&'&232.'.6'4."7674.'&#>7626'.'&#"'.'.'&676.67>7>5'&7>.'&'&'&7>7>767&'&67636'.'&67>7>.'.67�	\
��
	U7	
J#!W!'	

"';%

k	)"	
	'


/7* 		I	,6
*&"!

O6*
O $.(�	*.'

.x�,	$CN��	
�		*	�
6
		
7%&&_f&
",VL,G$3�@@$+
"


V5 3"	
""�#dA++
y0D-%&n4P'A5j$9E#"c7Y
6"	&
8Z(;=I50' !!e
�R
��
"+0n?�t(-z.'<>R$A"24B@(	~	9B9,	*$		
		<>	?0D�9f?Ae �	.(;1.D	4H&.Ct iY% *	�
7��


��
J	 <
W0%$	
""I!
*D	 ,4A'�4J"	.0f6D�4p�Z{+*�D_wqi;�W1G("%%T7F}AG!1#% JG3��� '.2>Vb%&#'32&'!>?>'&' &>"6&#">&'>26 $$ *b6�~�#��= ���XP2��{&%gx|�� .���W)o���O��LO�sEzG<��	CK}E	$MFD<5+
z���^����a�a$�MW�M��1>]|�YY�^D
�եA��<��K�m����E6<�"�@9I5*�^����a�a�����>^4./.543232654.#"#".#"32>#"'#"$&547&54632632�':XM1h*�+D($,/9p�`D�oC&JV<�Z PA3Q1*223�I�oBkែhMI����oPែhMI��oP�2S6,M!"@-7Y.?oI=[<%$('3 -- <-\�%Fu���Po��IMh���Po����IMh,���#?D76&#!"7>;267676&#!"&=463!267
#!"'&5463!26�%�8#!�
��&&Z"�M>2!��
	�^I7LRx_@�>MN�""��`�=&&*%�I�}��,
	�	L�7_jj��9����/%4&#!"3!264&#!"3!26#!"&5463!2�� ��� ��&��&&�&��������&&�&&��19#"'#++"&5#"&5475##"&54763!2"&4628(3�-�	&�B.�.B�&	�-�3(8Ig�gI�`������(8+U��e&��.BB.&����+8(�kk��`�������%-"&5#"&5#"&5#"&5463!2"&4628P8@B\B@B\B@8P8pP�Pp�����@�`(88(`�p.BB.�0.BB.���(88(�Pppͺ�������!%>&'&#"'.$ $$ ^/(V=$<;$=V).X���^����a�a��J`"(("`J��^����a�a��,���I4."2>%'%"/'&5%&'&?'&767%476762%6�[���՛[[���՛o��
�ܴ
 
���
��	��	$
$�	"	�$
$	��	�՛[[���՛[[�5`��

^�

�^

2`��
`2

^��^

��`
�����1%#"$54732$%#"$&546$763276�68��ʴh�f�킐&^�����zs��,!V[���vn)�	�6���<��ׂ�f{���z����}))N�s���3(@����+4&#!"3!2#!"&5463!2#!"&5463!2@&�&&f&��&&�&@&�&&&�4&&4&�@&&�&&��&&&& ��`�BH+"/##"./#"'.?&5#"&46;'&462!76232!46 `&�C�6�@Bb0�3eI;��:�&&�&4�L�4&���F���
�Z4&�w�4�) ���''
�5�r�&4&&�4&��&4��������}G�#&/.#./.'&4?63%27>'./&'&7676>767>?>%6}�)(."�2*&�@P9A
#sG�q]
#lh�<*46+(
	
<
5�R5"*>%</
 '2�@� 53*9*,�Z&VE/#E+)AC
(���	2k<X1$:hI(B
"	!:4Y&>"/	+[>hy
	���K
!/Ui%6&'&676&'&6'.7>%.$76$% $.5476$6?62'.76&&'&676%.76&'..676�#"NDQt	
�-�okQ//�jo_	������	���%&J�������Ղ���YJA-��.--
9\DtT+X?*<UW3'	26$>>�W0{�"F!"E �

^f`$"�_]\�<`�F�`�F�D��h>Cw�ls���J@�;=?s
:i_^{8+?`
)
O`�s2R�DE58/K��r	#"'>7&4$&5m��ī��"#���̵�$5���$�"^^W����=���ac��E�*���c������zk./"&4636$7.'>67.'>65.67>&/>z X^hc^O<q����+f$H^XbVS!rȇr?5GD_RV@-FbV=3!G84&3Im<$/6X_�D'=NUTL;2KPwt��Pt= 

�&ռ
,J~S/#NL,��8JsF);??1zIEJpq�DIPZXSF6\?5:NR=��;.&1��+!"&=!!%!5463!2�sQ9����Qs�*�*�*sQNQsBUw��
wUBF��H���CCTww���%1#"&=!"&=463!54632.  6 $$ �	��	
��

`?��������(�r���^����a�a�	��	
�
�
�
���(��������_�^����a�a�����%1#!#"'&47632!2.  6 $$ �
����		@	
`
��������(�r���^����a�a�
�
?		@	
���(��������_�^����a�a�����/#"'&476324&#!"3!26#!"&5463!2&�@�&
�@

�
�w�@w��w�w����&@B@&���

�@
�@w��w�w�����"&462  >& $$ �Ԗ��*�����(���r���^����a�a�Ԗ�Ԗ �������(���^����a�a���]�6#"$54732>%#"'!"&'&7>32'!!!2�f:�л����Ѫz��~�u:�
(�(%`V6B^hD%��i�(�]̳ޛ	��*>�6߅�����r�#�!3?^BEa�߀�#�9���#36'&632#"'&'&63232#!"&5463!2
��Q,&U�#+'
 �;il4L92<D`����w�@w��w�w�����`9ܩ6ɽ]`C4�7�7�&�@w��w�w����D+"&5#"'&=4?5#"'&=4?546;2%6%66546;2�������
	
��
	
��w�ww�w�������cB
�G]B
�G��t�y]t�y�
���#3C#!+"&5!"&=463!46;2!24&#!"3!26#!"&5463!2���@��`@`�^B��B^^B@B^��w��w��w@w��@��`@`���2@B^^B��B^^���w��w@w�����'/?P+5#"&547.467&546;532!764'!"+32#323!&ln��@
:MM:
@��nY*�Yz--zY�*55QDD�U���9p��Y-`]��]`.X /2I$�	t�@@/!!/@@3,$,3�$p$0�0��&*0��&���&��
!P@���RV2#"&/#"&/#"&546?#"&546?'&54632%'&54632763276%�>S]�8T;/M7��7T</L7�=Q7,�i�<R7,�5T</L666U;/M5�<U<,�i���6i���Q=a!;�;V6-�j�;V6-�5	P=/L596Q</L5�<U6-�i�;V7,�7O;-I6��8��i;k���)I2#!"&5463#9"'.'.'3!264&#!"2>7%>�w��w�@w��w�!"�5bBBb/�/*
8(@(87)��(8=%/�'#?��w�@w��w�w����#~$EE y &�L(88e):8(%O r		

		�O�?GQaq47&67>&&'&67>&"&#6$32#"#"'654  $&6 $6&$ Co��L��.*�KPx���.*� 
iSƓi
7J?��~�pi{_Я�;��lL�������UZ=刈�����刈�����_t'<Z
�:!
	���@!
��j`Q7$k�y, R����f��k*4�������LlL��=Z=刈��������&$&546$7%7&'5>�����]���5��%��w�����������&��P�?�zrSF�!|��&0	##!"&5#5!3!3!3!32!546;2!5463���)�
)����;)��);;)��)���&&������&@@&�&��&��	�
6 $&727"'%+"'&7&54767%&4762������֬>4P���t+8?::
	�	
::AW��``���EvEEvE<�.���"�e$IE&�O�&EI&�{h.`��m���"&#"&'327>73271[
>+)@
(���]:2,C?��*%�Zx/658:@#N
�C�=�E�(�o��E=��W'c:������#!#"$&6$3 &#"32>7!����ڝ���yy��,��{��ۀ�ہW�^F!�L�C=���y�:�y��w���߂0H\R%�"N^ '&76232762$"&5462"&46274&"&'264&#"'&&#"32$54'>$ $&6$ G>��>0yx1��4J55J�5J44J5�Fd$��?�4J55%6�E��#42F%��$f�������LlL�q>>11�J44%&4Z%44J54R1F$Z-%45J521��Z%F1#:��ʎ 9�������LlL�����#Qa"'&7622762%"&5462"&546274&#"&'73264&#"'&&#"32654'>#!"&5463!2�

5�5

*�*��.>.-@-R.>.-@-�<+*q�6�- -- 0�<�o,+< ��3�w�@w��w�w��

55

**�.. -- .. --G*<N�' ,-@-+*��M <*2
z��z
1�@w��w�w�����0<754&""&=#326546325##"&='26 $$ bZt�t&�sRQs��Z<t�sQ���^����a�a�>OpoO��xzRrqP6�z~{{Prr��^����a�a�����]054&"#"&5!2654632!#"&57265&<T<����H<T<������H������<T<8v*<<*������
��+;;+l���:�������=:��*;;*���
%!!"!!26#!"&5463!2��@� ]���]�@�w�@w��w�w�����]� �@��@w��w�w���	
%)3!!#335!!5!5!%#!!5!5!%#H��H{����R��H��H{���G��G{�)���q���G����R�R�q���R�R�q�����	#0@#"'632#"'632&#"7532&#"#7532#!"&5463!2L5+*5��L5+*5~�}7W|�3B}��}JC��7=}�w�@w��w�w�D�ZQ�[�1�N:_��)�i�$��)���@w��w�w��
)�	�����������6.#&#"'&547>'&#".'&'#"&5467%&4>7>3263232654.547'654'63277.'.*#">7?67>?>32#"'7'>3'>3235?�K�cgA+![<E0y�$,<'.cI
	,#� '!;7$�=ep���	��/�/7/
D+R>,7*
2(-#=
	/~[(D?G  �|,)"#+)O��8,+�'�6	y{=@��0mI�#938OA�E`
-�
)y_/FwaH8j7=7?%����a	%%!?)L
J
9=5]~�pj

 %(��1$",I 
$@((�
+!.S		-L__$'-9L	5V��+	
	6�T+6.8-$�0��+
t�|S1��6]�&#"'&#"67>76'&'&#"67>32764.#"#.32>67>7 $&54>7>7>7�rJ�@"kb2)W+,5/1		#

Z
-!��$IOXp7s�LCF9�vz NAG#/ 5|����Հ';RKR/J#=$,�9,�+$UCS7'2"1
 !�/
,

/--ST(::(�ep4AM@=I>".)x��ls��Y�|qK@
%(YQ�&N
EHv~����<Zx'#"&5467&6?2?'&"/.7.546326#"&'&/7264/7'764&"'?>>32.��A�UpIUxYE.A�%%%h%����%hJ%�����D,FZxULsT�gxUJrV�D�%hJ%�����@/LefL.C�%Jh%�����C�VsNUxϠ�@.FZyUHpV�A�%h&%%���%Ji%�����C�WpIUybJ/��Uy^G,D�%Jh%�����@�UsMtU�C�%hJ%�����C-Kfy�EX[_gj��&/&'.''67>7>7&'&'&'>76763>7>#&'&'767672'%'7'+"&'&546323267>7%#"'4'6767672,32�,+DCCQL�Df'
%:/d
B	4@}
�&!0$�?�����J�f�d�f-�.=���6(��:!TO�?
!I�G_�U%
����.
k*.=;�	5gN_X��	"
##
292Q41�
��*����6���nA;�|�
�BSN.	%1$����
6	$��nk�^�'7GWgw�����2+"&5463#!"&5463!254&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26#"&=! B^^B�B^^B�:F�j��B^8(�(`�(� ������������������`�(8���^B��B^^B@B^�"vE�j�^B(8(�`(�����������������������8(����/?O_o��������/?2#!"&5463;26=4&+";26=4&+";26=4&+";26=4&+"54&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26@&&�&&�@@@@@@@@�@@@@@@@@@@��@@@@@@@@@@@@@@@@@@@&��&&�&��@@��@@��@@��@@��@@@@@@@@@@���@@@@@@@@�@@@@@@@@@@@��`'	"&5#"&5&4762!762$"&462���B\B@B\B��O�p�P����������.BB.���.BB.8$P��O広�������3CQ#".54>32#".546322#"&#"#"54>%".54>32%2#"&54>&X=L|<&X=M{<��TML�FTML�F�v�"?B+D�?B�J�p��H=X&<{M=X&<|dMTF�LMTF�(<kNs�I<kNs���Pvo�JPwo�/��s.=ZY�VӮv�Nk<J�sNk<I�shwPJ�ovPJ�o@��+"&7.54>2�r_-$�$-_rU���U��%��&&5%ő������'-
"'.546762����@��F�F�$�@B�@$.&�,�&.]]|�q����#<���<#(B�B��B%'-%'-'%'-"'%&'"'%.5467%467%62����@��l�l����@��l�l,���@��G�G�&!�@@�@�@@�@!&+#�+#�6�#+�$*`�:�p������:�p���x�
�p����=�`$>����>$�&@��&@�

�@&�p�@��	&.A!!"!&2673!"5432!%!254#!5!2654#!%!2#!8���Zp��?v�d���Ί�e�ns�6(���N[�����RW�u?�rt1Sr�F���|��iZ��@7�����މoy2���IM��C~[�R �yK{T:���%,AGK2#!"&5463!!2654'654.#532#532"&5!654&#"327#2#>!!�w��w�@w��w��~u��k'JTM��wa��|
DH��������>�I1q�Fj?����w�@w��w�w�����sq�*4p9O*�¸Z^���qh LE
�������"(nz8B
M���'?"&4624&#"'.'324&#"3267##"&/632632.�ʏ����hhMA�LR vGhг~��~������K„y���O^
��ʏ�ʏ��В*�LM@!<I�~��~����������t\��0�������CM4&"2#"&'676&/632#!"&=3267%2654&#"&#"%463!2"&4632�r�qq��tR8^4.<x3=RR��w�@w���_h�
Y��Ӗ���	K>�שw�w���ȍ�de�)�qrOPq�Ȧs:03=<x!m�@w��w�E\x�g�ӕ��є��%w�w����d��Ȏ��V��
-<K\%.'.>7'.?67'67%'>&%'7%7./6D�\$>	"N,��?a0�#O���1G�����9�'/���P(1#00��
($=!F"�9|��]�"RE<�6'o��9%8J$\:��\H�iTe<?}V��#�oj��?���d,6���%N#"
Hl��S��VY�]C

=�@�C4&"2!.#!"4&"2+"&=!"&=#"&546;>3!232�^�^^���Y	�	^�^^��`p�p�p�p`�]i�bb�i]�~�^^�^�e��^^�^���PppP��PppP��]��^^�]��3;EM2+"&=!"&=#"&546;>;5463!232264&"!.#!"264&" ]�`p�p�p�p`�]i�b���b�i���^^�^d�Y	�	!�^^�^��]��@PppP@@PppP@�]��^��^�]� ^�^^��e��^�^^� ��3$#!#!"&5467!"&47#"&47#"&4762++�&�2
$��$
�2&��&��&�4�&��&��Z4&�&##&�&4�&4�&4���4&�m4&�m���+DP4'&#"32763232674'&!"32763 3264'&$#"32763232> $$ g����* �o�`#�ə�0#z��#l(~���̠)���-g+����^����a�aF s"	+g�(�*
3#!|
#/IK/%*%D=)[�^����a�a����	!!!'!!77!���,���/���,�-���a��/G��	t%/;<HTbcq������%7.#"32%74'&"32765"/7627#"5'7432#"/7632#"5'7432#"&5'74632	#"/6327#"/6327#"/46329"&/462"&/>21"&/567632#!.547632632
	
	*


			��X		�

^

`		���

^b
	��c�
	f�u��
U`�59u���

���

4�J���
	
l�~		~�	F��	
��	�2�����

�
�	��	�m����|O�,��� ����	

���
��������

ru|	��u�
�
"�����
)9 $7 $&= $7 $&= $7 $&=  $&=46��w���`���w���w���`���w���w���`���w��b����`����VT�EvEEvE�T��VT�EvEEvE�T*VT�EvEEvE�T*EvE�EvEEvE�Ev�#^ct�#!"&5463!2!&'&!"&5!632#"&'#"/&'&7>766767.76;267674767&5&5&'67.'&'&#3274�(8(��(88(�(`�x
��c�`(8��!3;:�A0�?ݫ�Y

	^U	47D$

	7�4U3I�
|��L38wtL0�`(��(88(@(8(D��9�8(��Q1&(!;��
(g-	Up�~R�2(/{E���(Xz*Z%(�i6CmVo8�#T#!"&5463!2!&'&!"&5!3367653335!3#4.5.'##'&'35�(8(��(88(�(`�x
��c�`(8�iF������F��Zc�r�cZ�`(��(88(@(8(D��9�8(���k�k�"	��kk�J	 	!��	�k�#S#!"&5463!2!&'&!"&5!%!5#7>;#!5#35!3#&'&/35!3�(8(��(88(�(`�x
��c�`(8�-Kg
kL#D��C��JgjL��D���`(��(88(@(8(D��9�8(���jj�	�jjkk��kk����#8C#!"&5463!2!&'&!"&5!%!5#5327>54&'&#!3#32�(8(��(88(�(`�x
��c�`(8� G]�L*COJ?0R��\wx48>�`(��(88(@(8(D��9�8(���jj��RQxk��!RY�#*2#!"&5463!2!&'&!"&5!!57"&462�(8(��(88(�(`�x
��c�`(8�������P�pp�p�`(��(88(@(8(D��9�8(����������p�pp�	�#*7JR5#5#5#5##!"&5463!2!&'&!"&5##5!"&54765332264&"�����<(8(��(88(�(`�x
��c�`(8����k�ޑc�O"�jKKjK�������������`(��(88(@(8(D��9�8(������SmmS?M���&4&&4�#9L^#!"&5463!2!&'&!"&5!#"/#"&=46;76276'.'2764'.�(8(��(88(�(`�x
��c�`(8���������6dd�WW6&44�`(��(88(@(8(D��9�8(��.��	����G���5{��{5�]�]$59�95�#3C#!"&5463!2!&'&!"&5!2#!"&5463#"'5632�(8(��(88(�(`�x
��c�`(8��4LL4��4LL4l	��		�`(��(88(@(8(D��9�8(���L4��4LL4�4L��	
Z
	�#7K[#!"&5463!2!&'&!"&5!>&'&7!/.?'&6?6.7>'�(8(��(88(�(`�x
��c�`(8�`3��3��3��3�v
�
?
�
�`(��(88(@(8(D��9�8(���&��&-��&��&�
?


��
'���6#'.
'!67&54632".'654&#"32�eaAɢ/PRAids`WXyzO�v��д��:C;A:25@Ң>�����-05r��n������`��H(�����' gQWZc[���
-%7'	%'-'%	%"'&54762�[������3[��M���N�����
��3"��,��""3,3"o�ng�$������߆���]�g�n��$����+��)��

")")"

��x#W#"&#!+.5467&546326$32327.'#"&5463232654&#"632#".#"o���G��n\�u_MK'����̨|�g?CM7MM5,QAAIQqAy��{�b]BL4PJ9+OABIRo?z��.�z��
�n�6'+s�:�������z�cIAC65D*DRRD*�wy�al@B39E*DRRD*��'/7  $&6$ 6277&47' 7'"' 6& 6'�lL������������R�R����ZB|��R�R��>����d�ZZ��������LlL�Z����R�R«����Z��&�>���«|��R� � ��! $&54$7 >54'5��������P���f���f����P�����牉�@��s��-����ff���`-����c6721>?>././76&/7>?>?>./&31#"$&��(@8!IH2hM>'

)-*
h'N'��!'Og,R"/!YQG<I *1)

(-O1D+0�n�������z�3fw���G2'3�rd1!sF0o ��.q"!%GsH8��@-!5|w|pgS=
"B2PJfh�G���d�R	�(P]ly��&$'77&7567'676'"'7&'&'7&47'6767'627''6$'67'654'7&'7'&'&'7&'5&$  $6 $&6$ j��j:,A��A��S9bb9R#:j���8AܔA,z��C�9Z04\40Z9�C��!B�;X0,l,0X;�B�*A8ܔA&#9j`b9S$#R99#&A��8A�`
������䇇�<Z<䳎������LlL�fBϬ"129�,V<4!���!88dpm��"��BV,�92[P*V*P\M�C�

�C�M\P*V*P]L�D�

�D�L&BV*�8*8!����f�!4<gmpd88!&!8*8�*VB�Z<䇇�����䇇��������LlL�����9Eis�%#"5432#"543275#&#"3254&'.547>54'63&547#5#"=3235#47##6323#324&"26%#!"&5463!2F]kbf$JMM$&�N92<Vv;,&)q(DL+�`N11MZ
%G���&54	#	i�<$8&@��0H12F1d�w�@w��w�w��B?@�UTZ3%}rV2hD5%f-C#�C@,nO	�a7�.0�x2	yR�uR/u�%6;&�$76%$56S�@w��w�w��D��<Hlw%4#"324&#"32!".5475&5475.546322#654'3%#".535"&#"5354'33"&+32#"&54632S����;<;||w
$+�|('-GVVG-��EznA�C?H_��`Rb���]Gg>Z2&`��9UW=��N9:PO;:dhe\=R����
+)�&')-S9��9kJ�<)Um�Q��/��-Ya^"![��Y��'(<`X;_�L6#)|����tWW:;X���	#'#3#!"&5463!2)
p�*�xeשw�@w��w�w���0,\8�����@w��w�w��9��I#"'#"&'&>767&5462#"'.7>32>4."&'&54>32JrO<3>5�-&FD(=Gq���@C$39a��LL��²�L4

&)
@]��v�
�q#CO���!~󿵂<ZK#*Pq.���%
L��²�LL��arh({�w؜\���i&5467&6747632#".'&##".'&'.'#".5467>72765'./"#"&'&5
�}����1R<2"7MW'$	;IS7@�5sQ@@)�R#DvTA;
0x
I)�!:>�+<B76:NFcP:SC4r�l+r �E%.*a-(6%('�>)C	6.�>�
!-I[4&#"324&#"3264&#"324&#"326&#"#".'7$4$32'#"$&6$32D2)+BB+)3(--(3�1)+BB+)�4'--'4��'���#!0>R	�H���MŰ9�o�u7ǖD��䣣���
R23('3�_,--,�R23('3�_,--,�����NJ
������?u�W�m%������#"'%#"'.5	%&'&7632�!�
�;�
	`��u%"��(����!]#�c�)(�	��� #"'%#"'.5%&'&76	�!�
���	�(%#�#���fP_�"�(���!�)'��+�ʼn�����4I#"$'&6?6332>4.#"#!"&54766$32#!"&=46;46;2z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������@����z��
�	
_hQ��н�QGB�'(&�*�eozΘ�@@`���  >. $$ ����ff���ff�����^����a�af���ff�����^����a�a��>�����"&#"#"&54>7654'&#!"#"&#"#"&54>765'46.'."&54632326323!27654'.5463232632�,�-,�,",:!
%�]&
%@2(/�.+�*)6!	<.$.�.*�*"+8#
�
#Q3,�,+�+#-:#"</$�)

w�

���
,*

x9-.2"'
,,
���@�&,,
��Qw
,����,#"+"&5#+"&5&'&'&547676)2�%2$l$�#l#�b~B@XXyo2�$CI@5��$$�>$$�/:yu��xv)%$	��/?CG%!5%2#!"&5463!5#5!52#!"&54632#!"&5463#5!5`���&&�&&������ �&&�&&�&&�&&@������&�&&&���������&�&&&�&�&&&��������%2 &547%#"&632%&546 #"'6���������\~����~\h�
���~\��h\�������V�
�V�������V��V���%5$4&#"'64'73264&"&#"3272#!"&5463!2}XT=��=TX}}�~�>SX}}XS>�~�}�w�@w��w�w���~:xx:~�}}Xx9}�}9xX}�@w��w�w���/>LXds.327>76 $&6$32762#"/&4762"/&47626+"&46;2'"&=462#"'&4?62E0l�,

*"�T�.�D@Yo������oo����@5D�

[		

Z
�Z

		[	 ``��[



Z

	�2
,�l0
(T�"�.�D5@������oo��oY@D,

Z

		[	�		[		

Z
��``EZ

		[		
�5%!  $&66='&'%77'727'%am��lL�������m�f�?���5���5>�f�F�tu�ut�F������������LlL�H�Y�C�L|��|L����Y�˄(��E''E*(�/?IYiy����%+"&=46;2+"&=46;2+"&=46;2+"&=46;2%"&=!#+"&=46;2+"&=46;2+"&=46;2+"&=46;2!54!54>$ +"&=46;2#!"&=������@�������&&������@��������������3P��
>��P3��&��&��r���r��r���&��&���r���r��r���
he

4LKM:%%:MKL4�W��T�&&��%/9##!"&563!!#!"&5"&5!2!5463!2!5463!2�&&�&��&�&&���� ��� ��&��&&i�@����&&@&7�����'#5&?6262�%%�o����;����j|/����&jJ%�p��&j;&i&�p���/|���j�ţ���%Jk%�o��%��	:g"&5462#"&546324&#!"263662>7'&75.''&'&&'&6463!276i���~ZYYZ~�@O��S;+[G[3YUD#o?D&G3I=J�y�TkBuhNV!WOhuAiS�y*'^C�C^'*SwwSTvvTSwwSTvv���WID\�_"[�g��q# /3qF��r2/ $r�g�%4
�HffH�J4d���#!#7!!7!#5!������VF��N����rmN�N��N����������N���!Y���+?Ne%&'&'&7>727>'#&'&'&>2'&'&676'&76$7&'&767>76'6�#
<�;1�1x��#*#
�G,T9�3%�/#0v�N�Z;:8��)M:(	&���C.J}2	%0����
 	^*
J�F	
&�7'X"2L�DM"	+��6�
M2+'BQfXV#+]
#���'
L/(e�B�9
�#,8!!!5!!5!5!5!5#26%!!26#!"&5!5���������������&4&���&�pP��Pp������������������@��@&&@��!&�@PppP@�*
��	9Q$"&54627"."#"&547>2"'.#"#"&5476$ "'&$ #"&5476$ (�}R}hL�K�
N���N
����U�d:�
�x�x�
�����8���
��
�
� ,, |2222�
MXXM

�ic,>>,�
����
�	����	�
��̺

�
��'/7?KSck{4&"2$4&"24&"24&"24&"24&"24&"24&"24&"264&"24&#!"3!264&"2#!"&5463!2�KjKKj�KjKKj��KjKKjKKjKKj��KjKKj��KjKKjKKjKKj��KjKKjKLhLLhL��KjKKj�&�&&&KjKKj�L4��4LL4�4L5jKKjKKjKKjK�jKKjK��jKKjK�jKKjK�jKKjK��jKKjK�jKKjK���4LL4��4LL�jKKjK�&&�&&��jKKjK�4LL44LL	��'E!#"+"&7>76;7676767>'#'"#!"&7>3!2�W�",&7'�	#$	&��g�pf5O�.P�q�ZZdS���-V"0kqzTx�D!��!8�p�8%'i_�F?;�k��R(`��
!�&)�'�
(2!&6367!	&63!2�!
`�B��1LO�(���+#�=)�heC��Qg#s`���f�4#����6�������q�'���X�|0-�g��	�>IY#6?>7&#!%'.'33#&#"#"/3674'.54636%#"3733#!"&5463!2��4��:@��7�vH��%�h��EP{��0&<'VFJo���1,1.F6��A��#���L4�4LL44L"%�	
 
7x'6
O\�JYFw���~�v^fH$ !�"xdjD"!�6��`J�4LL44LL��	�+3@GXcgqz�����-<JX{�&#"327&76'32>54.#"35#3;5#'#3537+5;3'23764/"+353$4632#"$2#462#"6462""'"&5&5474761256321##%354&'"&#"5#35432354323=#&#"32?4/&54327&#"#"'326'#"=35#5##3327"327'#"'354&3"5#354327&327''"&46327&#"3=#&#"32?"5#354327&3=#&"32?"#3274?67654'&'4/"&#!"&5463!2_��g��QQ��h���^_�~\[[\]�_^���h��QQ��g�e��<F�$�$$��� !!�&&�/!/

!!�

00/e&'!"e$�
		'!!�''�
	8''NgL4�4LL44L�UQ��gh��QUk=<Sc���cc,-{k���jUQ��hg��Q��



�9

,&W &$U�K$$KK$$KDC(>("
!
=))=2�( '! '�L#(>(
&�DC(>(z�L#�DzG)<)�4LL44LL��	�
BWbjq}��+532%+5324&+32763#4&'.546327&#"#"'3265#"&546325&#"32!264&"2%#'#735#535#535#3'654&+353#!"&5463!29$<=$�@?�SdO__J-<AA@)7")9,<$.%0*,G3@%)1??.+&((JgfJ*�A�������!&��j�jj��GZYG�иwssw��PiL>8aA	!M7�7MM7�7M�3!�
4erJ]��&3YM�(,
,%7(#)
,(@=)M%A20C&Me�e��(X���0&Ėjj�jV��	8Z8J9���N/4���$�8NN8�8NN��	�#&:O[���	$?b3'7'#3#%54+32%4+324+323'%#5#'#'##337"&##'!!732%#3#3##!"&53733537!572!56373353#'#'#"5#&#!'#'#463!2#"5#"5!&+&+'!!7353273532!2732%#54&+#32#46.+#2#3#3##+53254&".546;#"67+53254&.546;#"#'#'##"54;"&;7335wY-AJF���=c�(TS)!*RQ+��*RQ+�Y,�B^9^��Ft`njUM�')	~PS�PR�m���٘���M7�7Mo7�q

@)U	8�"����E(�1��++��NM7�7Mx3�7��8�D�62��W74�;�9�<�-A"EA�0:��AF@�1:�ؗ����B�f~~""12"4(�w$#11#�@}}!%+%5(�v$:O�\z��K��?*$\amcrVl��OO176Nn�<!E(=�<&l/������<<������
[ZZYY�89176���7OO7�==..//cV==::z,,,,aa,,��7OO7�Z::��;;Y
fcW�(		"6-!c�(		!5	#
b�t88176����tV:
&$'*9	%e#:
%'*9B����<<��;
&(�����	�#:Sn�����#"&54632%#76;2#"&54632%4&+";2?>23266&+"&#"3267;24&+"'&+";27%4&+";2?>23266&+"&#"3267;254+";27#76;2#!"&5463!2�3%#2%%,, _3$$2%%��M>�ALVb5)LDHeE:<
E�Mj,K'-R
M�~M>�ARVb5)LEHeE:<
E�
JAB�I*'!($rL4�4LL44Lv%1 %3!x*k�$2 %3!�;5�h
n
a�
!(lI;F	
	
��	r�p
p8;5�h

t
a�
!(lI;F��`	#k�4LL44LL
��	�
2HW[lt��#"'5632#6324&'.54327&#"#"&'32767#533275#"=5&#"'#36323#4'&#"'#7532764&"24'&#"327'#"'&'36#!"&5463!2=!9�n23��BD$ &:BCRM.0AC'0RH`Q03'`�.>,&I / *�
 /

��8/��n-(G@5��$ S3=�,.B..B�02^`o?7je;9G+��L4�4LL44LyE%#	�Vb�;A
!p &'F:Aq)%)#o�rg�T$v2�� 8�)2����z948/�{�8A�B..B/��q?@�r�<7(g/��4LL44LL��?#!"&'24#"&54"&/&6?&5>547&54626=�L4�@�ԕ;U g3
��
T
�2RX='�8P8|�5�
����4Lj��j� U;Ig@
	��
`
� "*\���(88(�]k
��&N4#"&54"3	.#"#!"&'7!&7&/&6?&5>547&54626;U gI��m*��]�Z0�L4�@�ԕ���=o=CT
��
T
�2RX='�8P8|�5�
� U;Ig��Xu?bl3���@4Lj��j��a���`
	��
`
� "*\���(88(�]k����/7[%4&+";26%4&+";26%4&+";26!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���0
��
o`^B��B^`5FN(@(NF5���@��@��@�u		�@�LSyuS�@�%44%����,<H#"5432+"=4&#"326=46;2  >. $$ ~Isy9���"SgR8v�H����D�	w
����ff���ff�����^����a�a�m2N+��	)H-mF+1����0*F		+f���ff�����^����a�a�����b4&#"32>"#"'&'#"&54632?>;23>5!"3276#"$&6$3 �k^?zb=ka`�U4J{�K_/4�^����W�&	vx :XB0���܂�ff���)
f������zz��X��lz=l�apz��o�b35!2BX���
�G@8��'	'=vN$\f���f�	1
	SZz�8�z�X�#("/+'547'&4?6276	'D�^�h

�

i��%5�@�%[i

�

h�]��@������]�h

�

i��%�@�5%[i

�

h�^�@@������)2#"&5476#".5327>OFi-���ay~�\~;��'�S���{�s:D8>)AJfh]F?X��{[��TC6��LlG��]��v2'"%B];$�-o��%!2>7>3232>7>322>7>32".'.#"#"&'.#"#"&'.#"#546;!!!!!32#"&54>52#"&54>52#"&54>52�-P&+#($P.-P$'#+&PZP&+#"+&P-($P-.P$(#+$P.-P$'#+&P-.P$+#pP@@Pp�H85K"&ZH85K"&ZH85K"&Z����@��Pp��@��@��@pMSK5, :&�LMSK5, :&�LMSK5, :&����!!3	!	�����@�����@@�����	#"$$3!!2"j������aѻxl���a����lx�a�a����j������!!3/"/'62'&63!2��'y��

�`�I

��y�����My��

�`�I

��y'W`#".'.#"32767!"&54>3232654.'&546#&'5&#"

4$%Eӕ;iNL291 ;XxR`�f՝�Q8T������W��iW�gW:;*:`�Qs&?RWXJ8�oNU0�J1F@#)
[�%6_PO�QiX(o�`��_?5�"$���iʗ\&>bd�s�6�aP*< -;iFn�*-c1B���Wg4'.'4.54632#7&'.#"#"'.#"32767'#"&54632326#!"&5463!2��#$(	1$6]'
!E3P|ad(2S;aF9'EO�Se�j]�m�]<*rYs��hpt.#)$78L*k�h�w�@w��w�w��B

%
$/$G6
sP`X):F�/�fwH1p�dl�qnmPH�ui�kw_:[9D'��@w��w�w��34."2>$4.#!!2>#!".>3!2�Q��н�QQ��н�QQ��h�~w��w�h���f����ff����н�QQ��н�QQ��н�QZ����ZQ�����ff���ff�#>3!2#!".2>4."f����ff�����н�QQ��н�QQ���ff���ff��Q��н�QQ��н�	,\!"&?&#"326'3&'!&#"#"'  5467'+#"327#"&463!!'#"&463!2632���(#�AH����s���9q � ci��<=�
#�]�<������OFA��!�������re��&&��U�&&![e��F �������U?���g�����4_���������a�?b�+��r7�&4&��&4&�p,�+K4&"2$4&"2.#!"3!264&#!"3!2#"&=!"&=#47>$ �KjKKjKKjKKjH#�j#H&&&������KjK�KjK�g	�V�	ijKKjKKjKKjK���..n((�[���5KK5��5KK5�[po�Nv<<vN�:f���.R#!"&463!24'!"&5463!&$#"!2#!32>+#"'#"&546;&546$3232�2$�B$22$�$�*$22$�X�ڭ��ӯ�$22$�tX'���hs2$���ϧ��kc�$22$���1���c�$2�F33F3VVT2#$2����ԱVT2#$2��g���#2UU���݃
�2$#2UU�1݃���2��,u�54#"67.632&#"32654'.#"32764.'&$#"7232&'##"&54732654&#"467&5463254632>32#"'&�ru�&9��%"*#�͟ <yK0Og�" 
&9B3�;��㛘8��s%+DWXRD= @Y%�	!Q6R�!4M8�+6rU^z=)�RN��.)C>O%GR�=O&^���op������C8�pP*�b�Y
_�#��$��N Pb@6��)?����+0L15"4$.�Es
�5I�Q"!@h"�Y7e|J>z�iPe��n�eHbIl�F>^]@����n*9
���6[_3#"&54632#.#"32%3#"&54632#.#"326%4&'.'&! ! 7>7>!���������
�=39?
6'_����������
�>29?
5'17m-V����U--,�bW.�������뮠@Fyu0HC$������뮠@Fyu0HC$L���=??
<����=! A	<��`�;+"&54&#!+"&5463!2#!"&546;2!26546;2���p���Ї����0�p�����p���@��I�������pp���>Sc+"&=46;254&+"&+";2=46;2;2=46;2;2%54&#!";2=;26#!"&5463!2���A5�DD�5A7^6a7MB5��5B7?�5B~�`��`��`0`��rr��5A44A5�����v�5AA5�f�*A���`��`0`�����	!!!!	#!"&5463!2��ړ�7���H��7j�v�@v��v�v��'���:��@v��v�v���MUahmrx���������������#"'!"'!#"&547.547.54674&547&54632!62!632!#!627'!%!"67'#77!63!!7357/7'%#	%'3/&=&'	5#?&5476��!�p4�q"���"�"�6�"� ��'������h*�[���
��|�*��,�@���?wA�UM�pV���@�˝�����)��Ϳw����7(�{��*U%���K6������=0�(���M���		��"!O		dX$k
!!��!
����b��	
���[�����TDOi
��@��6��b��xBA�ݽ�5
�
�ɝ:����J���+���3����,��p
x�1���������Fi
(��R��
463!#!"&5%'4&#!"3���`����а@.�.@A-X��f�B����$��.BB.�.C��}
)&54$32&'%&&'67���"w�`�Rd]G�{��o]>p6��sc(��@wg����mJ�PAjy���YW�a͊AZq���{HZ�:�<dv\gx�>��2AT�Kn������+;"'&#"&#"+6!263 2&#"&#">3267&#">326e��~�└�Ȁ|��隚���Ν|����ū|iy�Zʬ��7Ӕ�ް�r|�uѥ��x�9[��[9�jj��9A�N��N�+,#ll"���B�S32fk��[/?\%4&+";26%4&+";26%4&+";26%4&+";26%#!"&5467&546326$32�]]��ee��ee��ee��$��~i
�qfN-*���������#����Sj������t�2"'q�C���B8!�'�>	
!%)-159=AEIMQUY]agkosw{��������!	%!	5!#5#5#5#5#57777????#5!#5!#5!#5!#5!#5!#5!#5#537#5!#5!#5!#5!#5!#55#535353535353%"&546326#"'#32>54.&54>3237.#"����������Q%%%%%%%%%?iiihOiixiiyiixii�Arssrrssr��%s�ssrrss�Ns%%%%%%%%%%�����������'<D<'paC_78#7PO7)("I$	75!����RA��b��(���ss�ss�ss�ss�ss�"/!".""."
!."".!/^.".^.".]/".�$$$$$$$$$$$$$$$$��Os$$$$$$$$$$$$$$sO$s�ss�ss�ss�ss�ss#��������}$)	13?*
,./:
-�s�*4&"2$4&"2#!"&5463!2!5463!2_��������?-��-??-�,@�@,�-?����pq�8��,??,D,??,��,??(�Z2#".#"3267>32#".543232654&#"#"&54654&#"#"&547>326���ڞU�zrhgrx�S��Пd�U <e�����x՞����Zf��_gן:k=2;�^��9��Œ��7\x��x\7����K=5Xltֆ�W����W{e_�%N��%,%CI��%���#+W4&+54&"#";26=32"&462"&462!2#!"&54>7#"&463!2!2�&�&4&�&&�&4&���KjKKj�KjKKj� ���&&�&%��&&�&&4&�&&�&4&�&&��5jKKjKKjKKjK��%z
0&4&&3D7&4&
%&���'S4&"4&"'&"27"&462"&462!2#!"&54>7#"&463!2!2&4�&4&�4&4��KjKKj�KjKKj� ���&&�&%��&&�&&4&�%&&�ے&4��"jKKjKKjKKjK��%z
0&4&&3D7&4&
%&��	&	!'!	!%!!!!%"'.763!2�o���]�F������o�������oZ��Y��@:�@�!�!�g���������������f�/�/��I��62'"/"/"/"/"/"/"/7762762762762762762%"/77627&6?35!5!!3762762'"/"/"/"/"/"/%5#5!4�ZSS6SS4SS4SS4SS4SS4SS4�ZSS4SS4SS4SS4SS4SS4S�-4�ZSS4S@������4SS4�ZSS6SS4SS4SS4SS4SS4S@�����ZSSSSSSSSSSSSSS�ZSSSSSSSSSSSSSy�ZRRR@%:=
:+������:
=���RR�ZSSSSSSSSSSSSS���������Cv!/&'&#""'&#"	32>;232>7>76#!"&54>7'3&547&547>763226323@``����`
VFaaFV


$.


.$

��y��y�	.Q5Z���E$ ,l<l, $E���R?Y*��@���@�2	!#""#!	��y��y=r�na�@@(89*>�*%>>%*�>*98(QO�!���L\p'.'&67'#!##"327&+"&46;2!3'#"&7>;276;2+6267!"'&7&#"(6&#"#"'�D��g��OOG`n%�E������LL{�@&&�N�c,sU�&&�!Fre&&�s�����s���#�/,�������<=�
#�]�g��L�o�GkP�'��r-n&4&2�-ir&�&�?���o 
��������4_�����5OW! .54>762>7.'.7>+#!"&5#"&5463!2"&462�{�����{BtxG,:`9(0b��Կ�b0(9`:,GxtB��&@&�&@&K5�5K`�����?e==e?1O6#,
#$
,#6OO��&��&&�&�5KK���������?!"'&'!2673267!'.."!&54632>321
��4��q#F�""�8'g��o#-��#,"t�Yg��>�oP$$Po�>�	��Z�e�p#����)�R��0���+I@$$@I+����+332++"&=#"&=46;.7>76$  ������@����ᅪ*��r���������@��@�����������r���'/2+"&5".4>32!"&=463  �&@��~[���՛[[��u˜~���gr�������&�`����u՛[[���՛[~~@��r������=E32++"&=#"&=46;5&547&'&6;22676;2  >�����``@``�ٱ��?E,��,=?��r�������H�����@``@�GݧH`�j��j���r������BJ463!2+"&=32++"&=#"&=46;5.7676%#"&5   &@�~���``@``�� �v�X����r�������&���������@``@����+BF��`r������ks463!2+"&=32++"&=#"&=46;5&547'/.?'+"&5463!2+7>6 %#"&5   &@�~���``@``��~4e	
0
	io@& �jV	
0
	Z9�������r�������&���������@``@�G�ɞ5o
,
sp� &@k^
,
c8~~��`r�������8>KR_32++"&=!+"&=#"&=46;.767666'27&547&#"&'2#"�����@�@���'�Ϋ���'������sg��gs�����ww�@����sg��g����@����@���-ss��ʃl������9���9��������OO���r9���9��FP^l463!2+"&=$'.7>76%#"&=463!2+"&=%#"&54'>%&547.#"254&' &@�L?����CuГP	��v�Y�� &@�;"����������ޥ�5݇�����ޥ���5�`&����_��ڿg��w��BF�@&����J_	s���&��&�����?%x���������%x��JP\h463!2+"&='32++"&=#"&=46;5.7676632%#"&56'327&7&#"2#"� &@�L? ���ߺu�``@``��}
�ຒ�ɞ���������ue��eu�9����ue��e�&����_��"|N�@``@��"��"|a~���l����o����9���9��r9��@�9���;C2+"&5"/".4>327'&4?627!"&=463  �&@Ռ		.	
�N~[���՛[[��u˜N�		.	
����gr�������&�`֌
	.		�O��u՛[[���՛[~N�
	.		��@��r������9A'.'&675#"&=46;5"/&4?62"/32+  ��'��֪�����\
	.		�4�		.	
\���r������|��ݧ���憛��@�\		.	
��
	.		\�@��r�����~9A"/&4?!+"&=##"$7>763546;2!'&4?62  m��		-

���@���ݧ���憛��@&�

-		�@r������m4��

-		����ٮ*�������		-

��r������+"&5&54>2  ����@��[���՛[�r�����������dG�u՛[[���r������  ".4>2������r�[���՛[[���՛�r������5�՛[[���՛[[����$2#!37#546375&#"#3!"&5463�#22#�y��/Dz?s����!#22#�2#��#2S�88�	����2#V#2��L4>32#"&''&5467&5463232>54&#"#"'.K���g��&Rv�gD�
$*2%	+Z hP=DXZ@7^?1
۰��3O+�l��h4���`���M@8'�+c+RI2
�\�ZAhS�Q>B�>?S2Vhui/�����,R0+	ZRkm�z�+>Q2#"'.'&756763232322>4."7 #"'&546��n/9�b�LHG2E"D8_
p�dd���dxO�"2�xx��ê�_�lx�2X	
!+'5>-�pkW[C
�I
I@50�Od���dd��˥�Mhfx�����x^���ә�	�#'+/7!5!!5!4&"2!5!4&"24&"2!!!��� 8P88P�� 8P88P88P88P����������P88P8 ���P88P88P88P8� ������������+N &6 !2#!+"&5!"&=463!46;23!#!"&54>32267632#"_����>�@`

��
�
��

`
�
� L4Dg��y� 6Fe=O���O�U�4L��>����
�
��

`
�
`

��4L�2�y5eud_C(====`L4����3V &6 #"/#"/&54?'&54?6327632#!"&54>32 7632_����>���		�	
	��	
	�		��		�	
	��	
	�		��%%S��y� 6Fe=�J�%��>����	
	�		��		�	
	��	
	�		��		�	
	��%65%S�y5eud_C(zz.!6%$!2!!!46;24&"2!54&#!"�&���&�&@�Ԗ��V�@&&�@��&&�Ԗ�Ԗ@��&���3!!!	!5!'!53!!	#����7I�e�����eI7��CzC�l��@�����@������@�#2#!"&?.54$3264&"!@������մ���pp�p���������((��������p�pp����#+/2#!"&?.54$3264&"!264&"!@������մ���^^�^@����^^�^@���������((��������^�^^�����^�^^�����v(#"'%.54632	"'%	632U�/�@��k0�G��,�zD#[�k#�
/t�g��
F��
����Gz�����	#'#3!)
p�*�xe���0,\8�����T���#/DM�%2<GQ^lw�����
&'&676676&'&7654&'&&546763"#"'3264&7.>&'%'.767&7667&766747665"'.'&767>3>7&'&'47.'.7676767&76767.'$73>?>67673>#6766666&'&6767.'"'276&67&54&&671&'6757>7&"2654&57>&>&'5#%67>76$7&74>=.''&'&'#'#''&'&'&'65.'&6767.'#%&''&'#2%676765&'&'&7&5&'6.7>�&5R4&5S9
W"-J�0(/�r
V"-J�0(.�)#"6&4pOPpp�c�|o}vQ�[�60X�Q��W1V�	
#5X		N"&
.
)
D>q J:102(z/=f��*4!>S5b<U$:I o<G*	,
&"O	X5
#!

��	R N#
C
83J*��R	!(D
#%37	�;$-.�
(,��覦�6ij
�	���"���)9
E�%����!B83
	j9�6/,	:QD')yX#�63V
��b�a	,
Ue��LPA@���*	̳�`Xx*&E
V36��%	B3%	B3XA	
#!.mU"A	
#!.mUB-#2+Jii�i�m-C<I(m��8qF/*)0�S
		
I
E5&+>!%
(!$p8~5..:5I

~��T�
4~9p# !
)& ?()5F	1	
	
� d%{v*�:
 @e
s|D�1d {�:�*dAA|oYk'&��<��tu��ut�&vHC�XXTR�;w��
��71™
Z*&'
1	9?	.

$��Gv5k65P<�?8q=4�a	
SC"��1#<�/6B&!ML	�^;�6k5wF1<P�C	�;$"&462"&46232>.$.�`�aa��sa�``��Z9k����'9؋ӗa-*Gl|M�e_]`F&O������ܽ�sDD!/+�``�aa�``�a1<YK3(
 /8HQelA�Z3t_fQP<343J;T7Q�+?Kgw  $6&$  $&62+"5432+"&=.54  $;26=462;26=4& 4&#!"3!26)����߄��4R4߄��mlL�������r {jK#@#Q�a����^�����@���@���`&��&&�&�������߄��4R4�Ď������LlL�N� �@K5#:rr:#5K���^����a�a��``]��]``����&&�&&	/!3#4&#!"3!265##!"&5463!22�������@K5^B��B^^B@B^5K���� �@���5K�B^^B�B^^B�K	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	+2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@�K5��5K�B^^B�B^^B�`� �@ �{#!&'#"'&547632m*���
�0���((�'(�$0K
��*�*��% 3#!3# '!#53 5#534!#53 6!3@����@@@��pp��@@@����@@pp@��`������� �����	�+/7;A#3!5!!3#!!5!35!355#%53#5!#35#!!!!!!!!����������������������������������������������������������������������
�	#'+/3?CGW#3!5!!35!!3#!!5!#!5!3535!355#%#3%!53#5!#35#!5##5!3!5!3!5	����������������������������������������������������������������������������������������������������������������!"&5463!2!"!�`(88(@(8�`(8�}2�2R �`8(@(88(�`8HR2�2���##6?6%!!!46#!"&5463!2x���� ��8�(�`(�(88(@(8�
���� (8��(`�(8(@(88��	�'ATd+5326+5323##"' %5&465./&76%4&'5>54&'"&#!!26#!"&5463!2�
��

���i�LCly5�)*H�celzzlec0h�b,,b�eIVB9@RB�9�J_�L4�4LL44L44%��2"��4��:I;p!q4b�b3p(P`t`P(�6EC.7B�I6�4LL44LL��	�.>$4&'6#".54$ 4.#!"3!2>#!"&5463!2Zj��b�jj[���wٝ]�>o��Ӱ�ٯ�*�-���oXL4�4LL44L'�)�꽽�)�J)���]��w����L���`��ֺ��۪e���4LL44LL�;4&#!"3!26#!"&5463!2#54&#!";#"&5463!2�
��

@
�^B��B^^B@B^���
��

��B^^B@B^`@

��
M��B^^B@B^^>��

��
�^B@B^^��5=Um	!	!!2#!"&=463!.'!"&=463!>2!2#264&"".54>762".54>762��������?(`��`(?��b|b��?B//B/�]�����]FrdhLhdrF�]�����]FrdhLhdrF@�@��@�(?��@@?(@9GG9@/B//B�aItB!!BtI�Ѷ�!!��ьItB!!BtI�Ѷ�!!��ь�-M32#!"&=46;7&#"&=463!2#>5!!4.'.46�ՠ��`�@`ՠ��`���M�sF�Fs�MM�sFFs�M����ojj�o��@@�jj�@@�<���!(!���!(!�-3?32#!"&=46;7&#"&=463!2+!!64.'#�ՠ��`�@`ՠ��`��	�	Dq�L�L�qD����ojj�o��@@�jj�@@B>=�C�����-3;32#!"&=46;7&#"&=463!2+!!6.'#�ՠ��`�@`ՠ��`��UVU96�g�g�6����ojj�o��@@�jj�@@β����**ɍ�-G32#!"&=46;7&#"&=463!2#>5!!&'.46�ՠ��`�@`ՠ��`���M�sF�Fs�M�k�k�����ojj�o��@@�jj�@@�<���!(!3��3!(!�9I2#!"&=4637>7.'!2#!"&=463��@b":1P4Y,++,Y4P1:"�":1P4Y,++,Y4P1:"b�@@��@7hVX@K-AA-K@XVh77hVX@K-AA-K@XVh7����Aj"#54&#"'54&#"3!26=476=4&#"#54&'&#"#54&'&'2632632#!"&5&=4632>3265K @0.B @0.B#6'&�&
l
@0.B 2'	.B A2TA9B;h" d�
mpP��Tl��L�c�_4.H�K5�]0CB.�S�0CB.�/#��'?&&)$�$)�0CB. }(AB.�z3M�2"61�d�39�L/PpuT(If�c�_�E�`1X"#4&"'&#"3!267654&"#4&"#4&26326#!"&'&5463246326�\B B\B�&@5K�&@�"6LB\B B\B ��sc�i�L}Q�P<m$��3�jN2�c�B.�p.BB.���3K5+"�3,"� �.BB.��.BB.���.�G=�c�i�(+�lOh7/DVj�"�c�=���&5Jb�#"'&=.547!"&46;'.54632!2327%.54&#"327%>%&#"!"3!754?27%>54&#!26=31��?>I��j��jq,J[�j.-t�j�lV��\���$B.R1?@B.��+?2`$�v5K-%��5KK5�.olRIS+6K5�̈$B\B 94E.&�ʀ�15uE&
�Ԗ�Pj��j�dX�U�GJ7!.B
�
P2�.B
�
%2@	�7�K5(B�@KjKj�?+f�UE,�5K~!1��.>F.��F,Q5*H��$b2#!"&=%!"&=463!7!"&'&=4634'&#!">3!!"3!32#!"3!23!26=n$<vpP��Pp���Pp�w�*�Rd�ApP�]��'@�A&
3@��&H-�[(8@
2�EB^&1
=&�&81����PppP��pP w���cOg Pp��c�
4& #.& &,,:8(�%^B &�
.�&&��2t"&'&54'&5467>32>32>32#"#.#"#.#"3!27654&#"547654&#"#654&�Mye
t|]�WS�Sg�SY�\x{
70"1i�92�DU1&=	��	=&0@�c	>&/Btd4!�*"�8K4+"��@H@/'=	t�?�_K�93-�]�
UlgQ���QgsW
�]#�+�i>p&��3�0&�VZ&0B/
���%3B.�"t�o ){+C4I��(
/D0&�p0D��3[_cg"'&#"3!2676=4&"#54&#"#54&#"#4&'2632632632#!"&'&5463246#!#!#�5K�)B4J�&@�#\8P8 @0.B J65K J6k�
cJ/4qG^�\hB�2<m$��3�iG;��     �K5����6L4+"�3p`b�)<8(=0CB.@Z7OK5`:7O��k�EW�^�tm��@Q7/DVi�##j�������������%4Ia�2#!"&5&546325462632"32654&"3267654&76;74&"#.#"2676=#"&'+53264&#!"3</�U�X�dj���jP��ԖEu�!7JG72P
�
B�%
�
B.!7�	@�A�f+?�jKjK@�B(5K,EU�H*5Q,F��.F>.��1!~K5y?��^\��Vl�j�t-.j�[J,qj��j��I7$��?1R.B�+��.B$`2?g�vEo.�5KK5��%-K��6+SIR[��&.E49 B\B$���5K�G#!+"&5!"&=463!2+"&'+"'+"'&5>;2>76;2Y
��
�
��

M	

�.�x	�-�
	N�	�


�	�
�u
��
,
u
�?

L�W���

���#	�	*:J4'&+326+"'#+"&5463!2  $6& $&6$ <!T{�BH4�	�›�&�>UbUI-����uu�,�uu�ڎ������LlL�AX!��J��m����f\�$
6u�����uu�,�K������LlL���-[k{276/&'&#"&5463276?6'.#"!276/&'&#"&5463276?6'.#"  $6&  $&6]�h-%Lb`J%E5
,5R-����h
-%Lb`J%E5
,5R-���'����uu�,�uu��lL�������/hR

dMLcN����hR
dMLcN����1u�����uu�,��������LlL�@��� 	'	7	'7	�����`��`H� �����`�`H� �!`��������`H� � ���`�`�`H���`��'%		7'	7'7	' $&6$ ���X�`��(W�:,�:��X�`��(WL�������LlL�X�`(W��:�B����X�`���(X�������LlL��
��	$%/9ES[�#"&54632$"&4624&"26$4&#"2%#"&462$#"&4632#"32&! 24>  !#"&'.'#"$547.'!6$32�7&'77'&7�7N77N�'q�qq�q�qPOrq��E�st�����ts��st���}�||�}�������uԙ[W��Q���~,>	n������P/RU P酛���n	>,m�����'77'&77N77N6^Orq�qq�qq�q�t��棣棣�(~|��|on[��usј^�~���33������pc8{y%cq����33dqpf��	L 54 "2654"'&'"/&477&'.67>326?><����
x
�������,

(-'s�IVC��VH�r'-(

$0@!BHp9[�%&!@0$u
��
������]\��\]��-$)!IH��V
D��
VHI!)$-#3���6>N"&462."&/.2?2?64/67>&  #!"&5463!2�]�]]�3
$;
&|�v;$
(CS�3�1	=�rM=	�4�TC(G���z�w�@w��w�w���]]�]��($-;,54�0=	�sL	=�45,;�����@w��w�w������(2#"$&546327654&#"	&#"AZ�������\@�/#�%E1/#����#.1E$�!�[A�����懇�@�@\��!�#21E!��6!E13"�|!��	gL&5&'.#4&5!67&'&'5676&'6452>3.'5����A5R��V[t,G'Q4}-��&�<C!l n?D_@Փ>r!�
��G;��>��!g�1�����2sV&2:#;��d=�*'�5E2/..F�D֕71$1>2�F!���&12,��@K�
r��#"&5462>%.#"'&#"#"'>54#".'7654&&5473254&/>7326/632327?&$  $6 $&6$ �!&"2&^	u��_��x��^�h
;J݃HJǭ
q�E
Dm!
M�
G?̯'%o�8
9U�������(F(�ߎ������LlL��&!&!SEm|�[��n{�[<ɪ
"p� C
Di%
(K�HCέp�C
B
m8	
@Kނ
H�F(���������������LlL���"*6%&6$	7&$5%%6'$2"&4}���x����3��n��QH������:dΏ���Xe�8�����z��'	������l�i���=!��7�����S�o�?v�������M '&7>>7'7>''>76.'6'���El:F�gr
*�t6�K3UZ8�3P)3^I%=9	)<�}J���k+C-Wd��	&U���-��TE+]��Qr-�<Q#0
�C+M8	3':$
_Q=+If5[ˮ&&SG�ZoM�k���ܬc�#7&#"327#"'&$&546$;#"'654'632ե›��fKYYKf�¥y�ͩ���䆎�L��1���hv�v��ƚw�wk��n�]��*��]�nlx��D��L�w�����~?T8b��b9SA}����+5?F!3267!#"'#"4767%!2$324&#"6327.'!.#"��۔c�2�8�Ψ����-\���?���@hU0KeFjTl�y�E3��aVs�z�.b��؏��W80��]T��Sts�<�h�O��_u7bBt���SbF/�o��|V]SHކ�J�������34&#!"3!26#!!2#!"&=463!5!"&5463!2
��

@
�^B� `��`� B^^B@B^ �

�@
�@B^�@@�^B�B^^����>3!"&546)2+6'.'.67>76%&��F8$.39_��0DD�40DD0���+*M7{L *="#
U<-M93#�D�@U8v�k�_Y	�[�hD00DD0��0D�ce-JF1BD����N&)@
/1 d��y%F��#"'&'&'&'&763276?6#"/#"/&54?'&763276"&'&'&5#&763567632#"'&7632654'&#"32>54'&#"'.5463!2#!3>7632#"'&'&#"'&767632yq������oq>*432fb������a
$�B?
	>B
BB
AA�.-QP���PR+	42
%<ci���ђ:6&h�HGhkG@n�`��I���Ȍ5
!m��(|.mzy�PQ-.	
	je����	
�����q>@@?pp�gVZE|fb6887a
%RB?
=B
ABBAJvniQP\\PRh!cDS�`gΒ��23�geFGPHX�cCI��_ƍ��5"	
�n�*T.\PQip�
[*81
/
9@:��>t�%6#".'.>%6%&7>'.#*.'&676./&'.54>754'&#"%4>327676=
>���vwd"

�l����"3	/!,+	j2.|��%&
�(N&w���h>8X}x�c2"W<4<��,Z~�fd�aA�`FBIT;hmA<7QC1>[u])		u1�V(�k1S)
-�	0�B2*�%M;W(0S�[T�]I)	A 5%R7<vlR12I]O"��V/,b-8�/_��#3CGk2#!"&546;546;2!546;2%;2654&+";2654&+"!32++"&=#"&=46;546;24LL4��4LL4�^B@B^�^B@B^�@@�@@�����@��@L4�4LL44L`B^^B``B^^B``�� �� ��@@��@���#3W#!"&=463!2!!%4&+";26%4&+";26%#!"&546;546;2!546;232���@�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�@@��� �� ��N�4LL44L`B^^B``B^^B`L��#'7Gk%"/"/&4?'&4?62762!!%4&+";26%4&+";26%#!"&546;546;2!546;232W.	
��
	.		��		.	
��
	.		��	� ����@@@@�L4��4LL4�^B@B^�^B@B^�4L�.		��		.	
��
	.		��		.	
��
��� �� ��N�4LL44L`B^^B``B^^B`L��(8\	"'&4?6262!!%4&+";26%4&+";26%#!"&546;546;2!546;232�

��		.	
��
	.	�`����@@@@�L4��4LL4�^B@B^�^B@B^�4L<�		 
	.		��		.	�:� �� ��N�4LL44L`B^^B``B^^B`L�2632632#!"&5463�&&&&��&&&���&���&��&&�&�#27+"&5  %264&#"26546��>&�&T�,��X�������q&&�1��X��,�LΒw�%��%;#!"&5463!546;2!2!+"&52#!"/&4?63!5!�

�(��&&@&�&(��&�&@&&��(�

�(�

�&&@&&@��&&�&�&�

�����#''%#"'&54676%6%%�������
�hh �@�` ���!�� ���!� ��
��
��
�
������
�#52#"&5476!2#"&5476!2#"'&546
� 
��
� 
���
�
�@�
�
�@�
��
�@

�
� 84&"2$4&"2$4&"2#"'&'&7>7.54$ �KjKKj�KjKKj�KjKKj��d�ne���4"%!������KjKKjKKjKKjKKjKKjK.���٫�8
!%00C'Z���'���.W"&462"&462"&462 6?32$6&#"'#"&'5&6&>7>7&54>$ �KjKKj�KjKKj�KjKKj�h��я�W.�{+9E=�c��Q�d�FK��1A
0)����LlL��jKKjKKjKKjKKjKKjK���p�J2`[Q?l&�����٫�C58.H(Y���ee���	�

			���Y'����w��(�����O��'��R���@$#"&#"'>7676327676#"�
�����b,XHUmM�.�U_t,7A3ge
z9@xS���a�Q�BLb�(�	����V���U�����
!!!�=�����=���w)��������AU!!77'7'#'#274.#"#32!5'.>537#"76=4>5'.465!��KkkK_5 5�� �#BH1��`L

I���&�v6��SF���!Sr99rS!``� /7K%s}H���XV
��P��V	e��		V�d/9Q[ $547.546326%>>32"&5%632264&#"64'&""&'&"2>&2654&#";2���P���3>tSU<�)tqH+>XX|W��h,�:USt��W|XX>=X*
)���)
+�^X^�|WX=>X�:_.2������//a:Ru?�
	
Q%-W|XW>J�(	�=u��>XX|WX�`

*((*


+2		2�X>=XW|E��03>$32!>7'&'&7!6./EU����noh��i����I\�������0<{ >ORD��ƚ�~�˕V�ƻ��o�R C3��7J6I`��Tb<�^M~M8O����	�	
5!#!"&!5!!52!5463	^B�@B^���`B^�^B `��B^^"�����^B��B^��0;%'#".54>327&$#"32$	!"$&6$3 ##320�J�����U��n��L�n��ʡ���~~�&��q�@�t�K�����L��}�'`� -
-�ox����nǑUyl}��~������~�F����ڎ�LlL��t�`(88( ��	7!'	!���\W�������\���d;����tZ�`_��O��;���}54+";2%54+";2!4&"!4;234;2354;2354>3&546263232632#"&#"26354;2354;2354;2�````��p�p��`�`�`� !,! -&M<FI(2�`�`�`�����@PppP���pppppp�#  #
�
�pppp��p	�j#"'&=!;5463!2#!"&=#".'.#!#"&463232>7>;>32#"&'#"!546���	��%. `@��` :,.',-���Xj��jX�h-,'.,: kb>PppP>bk .%Z �&�
�:k%$> $`��`6&L')59I"Tl�ԖlT"I95)'L&69Gp�pG9$ >$%k:��!+32&#!332 $&6$ ~O8��8���O�����������LlL�>pN
�����
i������LlL����	'':Ma4&'#"'.7654.#""'&#"3!267#!"&54676$32#"'.76'&>$#"'.7654'&676mD5)
z�{��6lP,@Kij��jOo�Ɏ���ȕ>>��[t��a)GG4?a�)
ll
>�;_-/
9GH{�z�yN@,K�ԕoN��繁������y��!
?hh>$
�D��"
>��â?$��	n"&5462'#".54>22654.'&'.54>32#"#*.5./"�~��~�s�!��m�{b6#	-SjR,l'(s�-6^]It�g))[��zxȁZ&+6,4$.X%%Dc*
&D~WL}]I0"

YYZ��vJ@N*CVTR3/A3$#/;'"/fR-,&2-"
7Zr�^N��a94Rji3.I+

&6W6>N%&60;96@7F6I3���+4&#!"3!26%4&#!"3!26 $$ ��������^����a�a`@��@����^����a�a�����'7  $ >. %"&546;2#!"&546;2#/�a����^�����(�����������������^����a�a����(������N@��@�����4&#!"3!26 $$ @��@����^����a�a`@����^����a�a�����'  $ >. 7"&5463!2#/�a����^�����(��������n@����^����a�a����(������N@���%=%#!"'&7!>3!26=!26=!2%"&54&""&546 �#��#]V�TV$KjK�KjK$��&4&�Ԗ&4&�>��9G��!�5KK5��5KK5�!��&&j��j�&&����#/;Im2+#!"&'#"&463>'.3%4&"26%4&"26%6.326#>;463!232#.+#!"&5#"�5KK5sH.�.Hs5KK5e# )4# %�&4&&4&�&4&&4&` #4) #%�~]�e�Z�&�&�Z�e�]E-�&��&�-EKjK�j.<<.�KjK��)�#)�`"@�&&�`&&�&&�`&&�)#�`)"�d�Xo&&oX�G�,8&&8!����O##!!2#!+"'&7#+"'&7!"'&?63!!"'&?63!6;236;2!2�@�@�8��@7

8��Q�
	N�Q�
	N��
	8G@��

8GQ�
	N�Q�
	N7
	�������8��8��H��H��k��%		".>2I�������2�0�]@��]��@o�����o@@o�����o㔕����a�22���]����]�p�^���|11|�9�9�|11|�(��%7'7'	'	7T���� d���lt��l)q��n�������luul�������)1$4&"24&"2 &6 +"&5476;2 &6 LhLLh�LLhLLhL����>�
�� �&
  �&�`����>�hLLhLLhLLhL�����>����&�&�����>��G��
	.7)1!62	1!62h��e�������2�20e���2�2>�	v
+4�	[��d����+
���d� �135#5&'72!5!#"&'"'#"$547&54$ ���Eh���`X����(����cY���z�:L:�z���Yc��������\$_K`Pa}��f��iXXiޝf���a���	���(+.>#5#5!5!5!54&+'#"3!267!7!#!"&5463!2����U�`��`' ����� �����j��j�V>�(>VV>�>Vq����������������(^����(>VV>�>VV�=&'&'&'&76'&'&.' #.�h8��"$Y
''>eX5,	,Pts�K�25M�RLqS;:.K'�5�R

Ch���h�����R�t(+e�^TT���u B"$:2�~<�����2�Hp����wTT�� V�/7GWg. %&32?673327>/.'676$4&"2 $&6$   $6& $&6$ d-����-�m	
	,6*6,	
	m���KjKKj�o������oo���K����zz�8�zz�Ȏ������LlL�U4>>4-.��YG0
)�xx�)
0GYޞ.�jKKjKq���oo��oo�lz�����zz�8�0������LlL��D��/7H#"'.7'654&#"'67'.6?>%"&46227#".547|D,=),9#�7��[͑�f�x���!X: �D�$+�s)�hh�i��jZ������t�<��F/��*8C,�q؜�e���\�r,W�BX���/C2��h�hh���=�t������Xm�����>NZ+"&=46;2+"&=4>7>54&#"#"/.7632  >. $$ p��=+& �35,W48'3	l
z����ff���ff�����^����a�aP���2P: D#;$#
$*;?R
��Cf���ff�����^����a�a��'�Y	>O`"&5462&'.'.76.5632.'#&'.'&6?65��\\�[�<C��z�C
25�U#
.�ZK ��m+[$/#>(	|�	r���[A@[[@A�#2#�
����7�*
<Y���$
+}"(��
�q�87] F 	_��1)
��	�	#1Ke34&+326+"&=!#!"&763!2#!"&5463!2#>?4.'3#>?4.'3#>?4.'3��Xe`64[l�����7
��
,	L;�����=+3&98&+)>�>+3&98&+)>�=+3&88&+)>	�Wj�|r�>Q$��~���d$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY���J\m�4.'.'&#"#"'.'&47>7632327>7>54&'&#"327>"&47654'&462"'&476'&462"'&47>&'&462i$		$^"

%%

"^$		$W "@9O?1&&18?t@" W�&%%&4KK�6pp&4���6ZaaZ&4mttm�^x	-���-	x^=/U7Ck���kz'[$=�&5%54'4&K�K�4r<r4&��X��4[��[4&m����m��'/7?GOW_gow����"264$"264"264"264$"264"264$"264"264"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462�^^�^��^^�^^�^^�^��^^�^��^^�^���^^�^��^^�^^�^^�^� p�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp�`^�^^�^^�^^�^^�^^��^^�^^�^^�^^�^^�^^�^^�^^�^^�^^���pp�pp�pp�p��pp�pp�pp�p��pp�p���pp�p��pp�p���pp�p��pp�pp�pp�p��pp�pp�pp�p	��LTi{�"&4626"&462$"&462#"&4632654>7>54 "&54>2"&462%"&54&#""&546 %#"&'&'.7>#"'&'.7>�&4&&4�&4&&4SZ��&4&&4�4$#&�&&j�3$"('$������&4&[���՛[��&4&&4F&4&�]\�&4&�$��
	!D�4�%	,\�4�4&&4&�4&&4&-�Z�4&&4&;cX/)#&>B)��&4&�j9aU0'.4a7����&&u՛[[���4&&4&@&&]��]&&��Ώ0
�u4��0
)�4���#g�&'.#"32676%4/&#"326'&#"2632#2+&'%#"'&6?676676632%#"'&6767#"&'&6767#"'.7>327"#"&'&6763"'.7>;7632;>%5K$
"0%>s$
"0%>;;>%5K�VL#>H30
\�($$(�\���(�є�yO2F/{�(?0(TK.5sg$��є�y#-F/{�$70(TK.5sg$L#>H30
\�($$(�\#�(@5"'K58!'"5�8!'"55"'K#dS$K		K$Sdx#@1
w�d>N;ET0((?
-
2K|��1
w�����d#N;ET0$(?
-
2K$#dS$K		K$Sdx�DN\2654& 265462"2654 #"32654>7>54."/&47&'?62 &4&���&4&���h�՛[&4&r$'("$3�j&&��&#$4[����"�@��GB�[�
"�&&��Β&&]���[��u&&����7a4.'0Ua9j�&4&�)B>&#)/Xc;u՛����"�"
�G�i[����Xh#"&54676324&'&#"'>54#"32#"54>54'.#"32>7>767632326#!"&5463!2b
)
:4FD�N

[�1�,^�J��K-*E#9gWR�Yvm0O	��w�@w��w�w��C2�2c@X�&!�9{M�A���_��"S4b// DR"Xlj�PY<	�@w��w�w��%���e4.#"32>7676#'.#"#"&54>3232>754&*#"&54>763 >32�
''il$E/
@�P@��
^��`��'W6&�!.. ! -P5+


�E{�n46vLe�Vz�:���,SN/
M5M[��
	]$�[��^��5�iC'2H&!(?]v`*	��l�	��b��$9>
���=R�2
#"&5467%!"&7>3-.7>;%.7>322326/.76/.'&6766/&/&#"&676	&676&6766/&672? �=1�(H/ ��	'96&�@)9<'���)29%
�&06#���#��$� J� �07j)�5@�"*3%�"!M
��%#K�"%N�e8)'8_�(9�.<�c +8 8(%6 <)'4@@)#-<^
?%$-`%.
}Q!&�}%&N�-l���IJ�;6>/�=*�%8!Q ���#P"�\Q#N&�a��)<9�bR]mp%"'.'&54>76%&54763263 #"/7#"'#"&/%$%322654&#"%'OV�9
�nt
|\d
ϓ[��nt
|@�D:)��	
;9�8'+|�j�," �41����CH^�nVz(�~R	�9�\'	�r�

@����L��@�
	@�w4�6�HI(+�C
,��55,��
f[op@�\j�;(zV~����i/5O#"'&54>32&#" 654'67'"'>54''&'"'6767&546767>7���蒓��`V BM���R� B9)̟�!SH-77I�Xm�SM�H*�k#".o;^J q�ן���ד��>@�����YM
$bK���d ��ү[E"����;���Kx%^�6;%T,U:i�m=Mk���).DT4'"&5463267&#" 6;64'.'4'>732676%#!"&5463!2),�蛜s5-<A���4ϲ
2W9
�&P:\�3)SEPJ��D4:3NI�w�@w��w�w��NE	2@u��us�+,�����/?x�sa�tmP�'�)fHVEA(%dA4w&4J5*�@w��w�w�����O[4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76 $$ �Cf'/'%($�U�L
(
#'/'@��3#@,G)+H+@#3
����^����a�a�X@_O#NW�#O_�.*	##(��^����a�a����q�[632632#"&#"#".'&#"#".'&54767>7654.54632327&547>P��9	B6?K?%�O4�T% >6>Z64Y=6>%S�4N�$?L?4B	@���{:y/�$ ,'R�!F!8%
#)(()#%:!F �Q'+%�0z:�z���O_4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76#!"&5463!2Cf'.'%($�V�M
)
#'.'@��
3
#A,G)+H+A#
4
��w�@w��w�w��XA?4N$NW�&M&L�/*
##	+�@w��w�w����	O$>?>762'&#"./454327327>7>	EpB5
3FAP/h����\�/NG�S�L�	� ���R�P*��m�95F84f&3Ga4B|wB.\FI*/�.?&,��5~K %
&��Y."7n<	"-I.�M`{�ARwJ!�FX^dj''''"'7&'7&'7&'7&547'67'67'67'63277774$#"32$			*��'ֱ,?�g=OO&L&NJBg�;1��'����'ֱ.=�gCIM
$'&&NJBg�=.��%�����w؝\\��w�
�I�o�o��<�<���-NIDg�=/��%����(ײ+A�hEHO*"#*OICh�=/��'����(ֲ/=�h>ON.��]��xwڝ]��������7��e��[���@�����)6!!"3#"&546%3567654'3!67!4&'7S��gn�y]K-�����#75LSl>�9���V��%�cPe}&H�n��_�HȌ����=UoLQ1!��4564���7U�C"�
�!-9[nx��"&46254&"326754&"326754&"26754&"26#".547632632626326'4#"#"54732764&"264.#"327632>#"'"'#"'#"&5#"'67&'327&'&54>3267>7>7>32632632T"8""8�)<())�(<)))�)<))<)�)<))<)T�د{ՐRh�x=8 78 n 81
p��H_6�S��oc
�F@b@?d?uK�bM�70[f5Y$35KUC<:��[;+8 n 87 8/8Zlv]64qE 'YK�0-AlB;
W��#;WS9
&�(#-7Z�://:/�Tr++r,,r++r,,r++r,,r++r,,ʠ�g��xXV�ע��e9222222^�K�Vv���F0�2OO23OO��`�lF;�mhj84D�ro��B@�r+@222222C0DP`.�r8h9��~T4.&o�@9��1P���%14'!3#"&46327&#"326%35#5##33 $$ ����}Pc��c]<hl���ࠥ�Ymmnnnn���^����a�aw!�LY�Ə;ed����wnnnnnv�^����a�a��%�'#"$#"#.5462632327>321��I��U�Π?L���L?��cc�4MX�&��04;0��XpD[��[DpD,)&&�Q	9V\�26&".'&'&6?.#"#26327677>'32>&3#'&+"?626&"#!'.'!"&5463!>;26;2!2�P  P 	
92#.}S�P9:�:%L\B�� )spN/9oJ5 
!+D�`]�Bg�Y9�+�,�9%
Pk4P  P &�NnF!_7*}B<�{o0��&&�B;*<@$ucRRc�#@16#37c&�@@@
J"@*4�^`E�D�B�����o/8927
*@O�LC�!T!32�3X$�BJ@@@��&AS
0C59"'D/&�&D488$5A&�%O#!"&547>7>2$7>/.".'&'&2>^B�@B^>FFz�n_0P:P2\n�zFF>��R&�p^1P:P1^��&R
P2NMJMQ0Rr�.B^^B�	7:5]yPH!%%"FPy]5:7	���=4�QH!%%!H�t4=�<"-/ ?�1Pp+".'.'.?>;2>7$76&'&%.+"3!26#!"&54767>;2�'
+�~'*OJ%%JN,&x�'%^�M,EE,M7�ZE[��P*FF*P��:5
�
�^B�@B^){�$.MK%%KM.$+��X)o3"�a  22!]�4	I�>"">�,�&�S8J�B##B��12�`
��`B^^B�8&ra#11#$��R&��"&.2v%/%''%/%7%7'%7'/#&5'&&?&'&?&'&7%27674?6J�"�����0�<=���_gNU�?D��f���u�Y����G�b���7=^H^�`	�=v~yT������3����G���D��P�O	4F��ѭ����q������i_w\ހ�!1u�S���%V_-d�
���1=U{J8n~�r����'U4.#".'"3!264&"26+#!"&5463!232+32+32�0P373/./373P0T=@=T��֙�֙|`^B�@B^^B�B^`````*9deG-!

!-Ged9Iaa�l��lk���O��B^^B�B^^B�������	+Yi"&54622#!"&54>;2>+32+32+#!"&5463!2324&#!"3!26�֙�֙0.I/ OB��BO	-Q52-)&)-2�
``

``

`^B�@B^^B�B^`
�
�@

�
|k��kl����"=IYL)CggC0[jM4				
�
�
�
�
�B^^B�B^^B�
�@�

�@
���!1AQu4.#".'"3!24&"254&#!"3!2654&#!"3!2654&#!"3!26#!54&+"!54&+"!"&5463!2)P90,***,09P)J66S�����"��@��8��@^B��@�@��B^^B�B^U�kc9		9ck�U?�������@@88@@N�@B^````^B�B^^���!1AQu�#!"&4>32>72"&462#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!546;2!546;2!26#!"&5463!2J6�6J)P90,***,09P)������"��@��8��@�
�@

`@@`
�^B�@B^^B�B^ՀUU�kc9		9c�������`@@�88�@@�2�

�@
````�@B^^B�B^^�(%.'"&' $&  #"$&6$ ��wC�ιCw�jJ~J�����>��������LlL�ś�JSSJ͛����>����6������LlL���$,  $&6654&$ 3 72&&  �lL������m�z�����z�B�l������>�������KlL�G���zz���G���>�����'7#!"&54>7&54>2  62654' '3�/U]B,ȍ����,B]U/OQ��н�Q������>�+X}��������}X�0b�Ӄ��ۚ�Ӆb0}�h��QQ��h�����>��f����f��#=#!"&4>3272"&462!3!26#!"&5463!;26=!2J6�6J)Q8P�P8Q)��������
�
�^B�@B^^B`�`B^V�VV�ld9KK9d��������`��
�@B^^B�B^``^���+;K[eu4.#"'"3!264&"254&#!"3!2654&#!"3!26%54&+";2654&#!"3!26!54&#!"!#!"&5463!2�"D/@�@/D"?,�,?�p�pp�p�@�����@����@����@�^B�@B^^B�B^D6]W2@@2W]67MM��pp�p��@@@@@@@@n`�@B^^B�B^^���+;K[eu#!"&54>3272"&462#!"&=463!2%#!"&=463!2+"&=46;25#!"&=463!2!3!26#!"&5463!2�?,�V,?"D/@�@/D"�p�pp�p�@�����@����@���
�
�^B�@B^^B�B^D7MM76]W2@@2W]֠pp�p��@@�@@@@�@@��`��
�@B^^B�B^^��A#"327.#"'63263#".'#"$&546$32326�������J9"65I).!1i���CC�u
+I�\Gw\B!al���݇���y�ǙV��/]:=B�>9�����+<F+a[le���Pn[A&JR7t�)��+�tH�������kFIK�e	� .��#"'&'>32%#!"&5463!2#"&54>54'&#"#"54654'.#"#"'.54>54'&'&543232654&432#"&54>764&'&'.54632� ?c��'p& ?b1w{2V	?#��&#9&�CY'&.&#+B

: &65&*2w�1GF1)2<)<'

(
BH=ӊ:NT :O	�)4:i F~b`e!}�U3i?fR����UX|'&'&I�c&Q
	*2U.L6*/
L:90%>..>%b>++�z7ymlw45)0	33J@0!!TFL����� P]=GS�-��kwm	!����*�(%6&692? $&6$ ��	' ����al�@l�������LlL���,&��EC
���h�$�������LlL���
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&5467534&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��d<M�-PppP�-�M����������Dž����9���������	+/37%"&54624&'4&" 67 54746 #5#5#5�p�pp�p�D<p�p<D�
����������
���������PppPOqqOM�-PppP�-�M����������Dž����9����������&.6>FNV^fnv~����"/&4?.7&#"!4>3267622"&4"&46262"&42"&4462"$2"&42"&4"&46262"&4"&46262"&42"&4$2"&42"&42"&4�

��

R

,H8Jfj��Q��hj�G^�R,

!4&&4&Z4&&4&�4&&4&��4&&4&&4&&44&&4&��4&&4&Z4&&4&�4&&4&��4&&4&�4&&4&��4&&4&&4&&4&Z4&&4&Z4&&4&

��

R

,[�cG�j�h��QRJ'A,

��&4&&4Z&4&&4Z&4&&4Z&4&&444&&4&�&4&&4Z&4&&4Z&4&&4Z&4&&4�&4&&4Z&4&&4Z&4&&4&&4&&4Z&4&&4Z&4&&4�%-5=EM}���������+"&=#!"'+"&=&="&4626"&462&"&462"&462&"&462&"&462#!"&=46;4632676/&?.7&#"!2"&462&"&462&"&462"&462&"&462&"&462"&462&"&462"&462��@?A�A?
@
�@R.�..R�@`�jlL.h)*��*$	%35K���..�..�.����u�vn�u���....��@@�j�N *��*.t2#K5���..R..R.��
@Hq '&'&54 &7676767654$'.766$76"&462&'&'&7>54.'.7>76�����������ȵ|�_ğ��yv���/ۃ�⃺����k]
:Bu�q��
CA
_k�ނ���XVo�bZZb�nW��|V	0 	Q2��-�
l��}���O		/	:�1���z	
q��%������z�G
4(

6�Ro�aą\�<

)4	J�}�������%!!#!"&5463!2�^B�@B^^B�B^�`�@B^^B�B^^���%#!"&=463!2^B�@B^^B�B^�B^^B�B^^�&))!32#!#!"&5463!463!2��`B^^B��^B�@B^^B`^B�B^�^B�@B^��B^^B�B^`B^^���#3%764/764/&"'&"2?2#!"&5463!2��

��

�

��

�

��

�

��
s^B�@B^^B�B^ג

��

�

��

�

��

�

��
�@B^^B�B^^���#'7"/"/&4?'&4?62762!!%#!"&5463!2�

��

�

��

�

��

�

��
�
�^B�@B^^B�B^��

��

�

��

�

��

�

��
��`�@B^^B�B^^�	! $&6$ .2�r��`�������LlL�f4��������LlL���#.C��&>"'&4762"/&4?62'"'&4762%'.>6.'.>6'>/>76&'&.'&7&'">?4'.677>7.>37654'&'67>776 $&6$ (4�Z�##
&##
&y�"�6&.JM@&� "(XE*$+8
jT<l$3-V<
2'.


-1
%#e"!Z�
+*)H	 8
(j

	#*
-ƷVv/kh?'��������MlM�$($�R#

&
"
#'#vZ@+&MbV$
�
G7
--)

R2T�
313dJ6@8lr2_�5m/."�G:=	)%5f0gt*2)?;CB66&, �	`48]USy������LlL���G6?>?3#'.'&!3!2>?3.'#!57>7'./5!27#'.#!"g�%%D-!gg<6W��WZe#1=/2*]Y3��-,����C1/Dx���] VF��I�q-H�����D2��NK'>*�%�R=f
07���=.
fD�]\|yu���,0>Seu#2#"'&5<>323#3#&'#334'."#"+236'&54.#"5#37326#!"&5463!2�		<	��zz�j��k-L+� )[$�8=".un/2 �^B�@B^^B�B^�5cy	
�
��(�ݔI�(8��?C�(3�>�� #"��($=�@B^^B�B^^0�K�S�&'.'&'./674&$#">&>?>'76'# "&#./.'7676767>76$w
.~ku�BR�]� T%z+",�|�ޟ���j<���)(!(	~ˣzF8"{���%%#5����)��}''�x��JF��0"H[$%��EJ#%
.Gk29(B13"?�@S)�5" �#9����dm�W"��;L�65R�A0@T.���$�}i`:f3A%%
BM<$q�:)BD	aa%`�]A&c|	�M��s!
Z
2}i[F&���**
< ��ʣsc"J<&Ns�F%���0@Wm6&'.6$.7>7$76".4>2.,&>6'"'&7>=GV:�e#:$?+%

q4����g
&3h�T`Zt�Q��м�QQ��м�pA������P1L������K!:<��}҈`d��l��b�,�9'


%%($!
���a3���)W)x
�������
о�QQ��о�QQ���cQ����ǡ-�җe)U�s2����XD\���ϼ�Yd����/?O_o���#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543%#!"&5463!2++532325++532325++532325++532325++53232�p00pp00pp00pp00pp00�8(��(88(@(80pp00pp00pp00pp00pp0� � � � � ��@(88(�(88� �� �� �� �� �/�Q�/&'%&/"&=.6?&?&'&6?'.>-#".6?'.>'&6'.>54627>%>76#"'%
%6��

2�7
2G
f���!)p&4&p)!��f
G2
7�2

��	*6���	"��
4�7
2G
f�!)p&4&p)!�f
G2
7�2

��"	���6*	�!k
3

j�&3
%,����*��&&ր*�9���%
3&�j

3
k!./!>��>$,*!k
3.j�&3
%�Ԝ9�*��&&ր*�ǜ,%
3&�j

3
k!*,$>��>!/.�&6.'&$	&76$76$�P��utۥiP��u��G��xy
��Զ�[xy
�-���_v١eN��uv١e	��=��u�ʦ�����[t7��8�X�
&6##'7-'%'&$  $6 $&6$ ��3��1�N��E0�����g��R�=|�����||�">"��������LlL����^��v!1f2i��Ђwg�fZQ�Q^>"�||�����||�w������LlL��&�Z�Xblw��������.'&>'&'&".'.'&&'&'&7>767>67>7626&'&>&'&>'.7>.676'&'&'&'.67.>7>6&'&676&'&676.676&'&>&'&676'.>6/4-LJg-$	6)j2%+QF)�b3FSP21DK2�AW")")�$??8A&A�E5lZm��=g�G2Sw*&>$5jD ���GH�yX/4F �r	1
	1�"�"!�l=6>��	6
,5./��'e



.*�|�Ed!
u&�&%&��	&��5d	
���))66@�C&8B@q��L?P^7	G-hI[q��:<�rS	U~97A_�IR`gp1	1	�;"("j?>"�T�6
,6 
&/`���LwQ'�	
��A	^	�	�	"�		$&	_	��	y		�	*�	<Copyright Dave Gandy 2016. All rights reserved.Copyright Dave Gandy 2016. All rights reserved.FontAwesomeFontAwesomeRegularRegularFONTLAB:OTFEXPORTFONTLAB:OTFEXPORTFontAwesomeFontAwesomeVersion 4.7.0 2016Version 4.7.0 2016FontAwesomeFontAwesomePlease refer to the Copyright section for the font trademark attribution notices.Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeFort AwesomeDave GandyDave Gandyhttp://fontawesome.iohttp://fontawesome.iohttp://fontawesome.io/license/http://fontawesome.io/license/����������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab�
cdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������"	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS�TUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������glassmusicsearchenvelopeheartstar
star_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflag
headphones
volume_offvolume_down	volume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_height
text_width
align_leftalign_centeralign_right
align_justifylistindent_leftindent_rightfacetime_videopicturepencil
map_markeradjusttinteditsharecheckmove
step_backward
fast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_left
chevron_right	plus_sign
minus_signremove_signok_sign
question_sign	info_sign
screenshot
remove_circle	ok_circle
ban_circle
arrow_leftarrow_rightarrow_up
arrow_down	share_altresize_fullresize_smallexclamation_signgiftleaffireeye_open	eye_closewarning_signplanecalendarrandomcommentmagnet
chevron_upchevron_downretweet
shopping_cartfolder_closefolder_openresize_verticalresize_horizontal	bar_charttwitter_sign
facebook_signcamera_retrokeycogscomments
thumbs_up_altthumbs_down_alt	star_halfheart_emptysignout
linkedin_signpushpin
external_linksignintrophygithub_sign
upload_altlemonphonecheck_emptybookmark_empty
phone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificate
hand_right	hand_lefthand_up	hand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilter	briefcase
fullscreengrouplinkcloudbeakercutcopy
paper_clipsave
sign_blankreorderulol
strikethrough	underlinetablemagictruck	pinterestpinterest_signgoogle_plus_signgoogle_plusmoney
caret_downcaret_up
caret_leftcaret_rightcolumnssort	sort_downsort_upenvelope_altlinkedinundolegal	dashboardcomment_altcomments_altboltsitemapumbrellapaste
light_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefood
file_text_altbuildinghospital	ambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_down
angle_leftangle_rightangle_up
angle_downdesktoplaptoptabletmobile_phonecircle_blank
quote_leftquote_rightspinnercirclereply
github_altfolder_close_altfolder_open_alt
expand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcode	reply_allstar_half_emptylocation_arrowcrop	code_forkunlink_279exclamationsuperscript	subscript_283puzzle_piece
microphonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchor
unlock_altbullseyeellipsis_horizontalellipsis_vertical_303	play_signticketminus_sign_altcheck_minuslevel_up
level_down
check_sign	edit_sign_312
share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfile	file_textsort_by_alphabet_329sort_by_attributessort_by_attributes_alt
sort_by_ordersort_by_order_alt_334_335youtube_signyoutubexing	xing_signyoutube_playdropbox
stackexchange	instagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_down
long_arrow_uplong_arrow_leftlong_arrow_rightwindowsandroidlinuxdribbleskype
foursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380
plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629uniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BBuniF2BCuniF2BDuniF2BEuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C6uniF2C7uniF2C8uniF2C9uniF2CAuniF2CBuniF2CCuniF2CDuniF2CEuniF2D0uniF2D1uniF2D2uniF2D3uniF2D4uniF2D5uniF2D6uniF2D7uniF2D8uniF2D9uniF2DAuniF2DBuniF2DCuniF2DDuniF2DEuniF2E0uniF2E1uniF2E2uniF2E3uniF2E4uniF2E5uniF2E6uniF2E7_698uniF2E9uniF2EAuniF2EBuniF2ECuniF2EDuniF2EE����=���O<0�1h�PK�uKX��;_����;spiko/assets/css/font-awesome/fonts/fontawesome-webfont.svg<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg>
<metadata>
Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
 By ,,,
Copyright Dave Gandy 2016. All rights reserved.
</metadata>
<defs>
<font id="FontAwesome" horiz-adv-x="1536" >
  <font-face 
    font-family="FontAwesome"
    font-weight="400"
    font-stretch="normal"
    units-per-em="1792"
    panose-1="0 0 0 0 0 0 0 0 0 0"
    ascent="1536"
    descent="-256"
    bbox="-1.02083 -256.962 2304.6 1537.02"
    underline-thickness="0"
    underline-position="0"
    unicode-range="U+0020-F500"
  />
<missing-glyph horiz-adv-x="896" 
d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
    <glyph glyph-name=".notdef" horiz-adv-x="896" 
d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
    <glyph glyph-name=".null" horiz-adv-x="0" 
 />
    <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" 
 />
    <glyph glyph-name="space" unicode=" " horiz-adv-x="448" 
 />
    <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="glass" unicode="&#xf000;" horiz-adv-x="1792" 
d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
    <glyph glyph-name="music" unicode="&#xf001;" 
d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
    <glyph glyph-name="search" unicode="&#xf002;" horiz-adv-x="1664" 
d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
    <glyph glyph-name="envelope" unicode="&#xf003;" horiz-adv-x="1792" 
d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="heart" unicode="&#xf004;" horiz-adv-x="1792" 
d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
q-18 -18 -44 -18z" />
    <glyph glyph-name="star" unicode="&#xf005;" horiz-adv-x="1664" 
d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
l502 -73q56 -9 56 -46z" />
    <glyph glyph-name="star_empty" unicode="&#xf006;" horiz-adv-x="1664" 
d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
    <glyph glyph-name="user" unicode="&#xf007;" horiz-adv-x="1280" 
d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="film" unicode="&#xf008;" horiz-adv-x="1920" 
d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="th_large" unicode="&#xf009;" horiz-adv-x="1664" 
d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
    <glyph glyph-name="th" unicode="&#xf00a;" horiz-adv-x="1792" 
d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
    <glyph glyph-name="th_list" unicode="&#xf00b;" horiz-adv-x="1792" 
d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
    <glyph glyph-name="ok" unicode="&#xf00c;" horiz-adv-x="1792" 
d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
    <glyph glyph-name="remove" unicode="&#xf00d;" horiz-adv-x="1408" 
d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
    <glyph glyph-name="zoom_in" unicode="&#xf00e;" horiz-adv-x="1664" 
d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
    <glyph glyph-name="zoom_out" unicode="&#xf010;" horiz-adv-x="1664" 
d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
" />
    <glyph glyph-name="off" unicode="&#xf011;" 
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
    <glyph glyph-name="signal" unicode="&#xf012;" horiz-adv-x="1792" 
d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
    <glyph glyph-name="cog" unicode="&#xf013;" 
d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
    <glyph glyph-name="trash" unicode="&#xf014;" horiz-adv-x="1408" 
d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
    <glyph glyph-name="home" unicode="&#xf015;" horiz-adv-x="1664" 
d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
    <glyph glyph-name="file_alt" unicode="&#xf016;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
" />
    <glyph glyph-name="time" unicode="&#xf017;" 
d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="road" unicode="&#xf018;" horiz-adv-x="1920" 
d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
    <glyph glyph-name="download_alt" unicode="&#xf019;" horiz-adv-x="1664" 
d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
    <glyph glyph-name="download" unicode="&#xf01a;" 
d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="upload" unicode="&#xf01b;" 
d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="inbox" unicode="&#xf01c;" 
d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
q25 -61 25 -123z" />
    <glyph glyph-name="play_circle" unicode="&#xf01d;" 
d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="repeat" unicode="&#xf01e;" 
d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
    <glyph glyph-name="refresh" unicode="&#xf021;" 
d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
    <glyph glyph-name="list_alt" unicode="&#xf022;" horiz-adv-x="1792" 
d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
t47 -113z" />
    <glyph glyph-name="lock" unicode="&#xf023;" horiz-adv-x="1152" 
d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
    <glyph glyph-name="flag" unicode="&#xf024;" horiz-adv-x="1792" 
d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
    <glyph glyph-name="headphones" unicode="&#xf025;" horiz-adv-x="1664" 
d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
    <glyph glyph-name="volume_off" unicode="&#xf026;" horiz-adv-x="768" 
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
    <glyph glyph-name="volume_down" unicode="&#xf027;" horiz-adv-x="1152" 
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
    <glyph glyph-name="volume_up" unicode="&#xf028;" horiz-adv-x="1664" 
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
    <glyph glyph-name="qrcode" unicode="&#xf029;" horiz-adv-x="1408" 
d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
    <glyph glyph-name="barcode" unicode="&#xf02a;" horiz-adv-x="1792" 
d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
    <glyph glyph-name="tag" unicode="&#xf02b;" 
d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
l715 -714q37 -39 37 -91z" />
    <glyph glyph-name="tags" unicode="&#xf02c;" horiz-adv-x="1920" 
d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
    <glyph glyph-name="book" unicode="&#xf02d;" horiz-adv-x="1664" 
d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
    <glyph glyph-name="bookmark" unicode="&#xf02e;" horiz-adv-x="1280" 
d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
    <glyph glyph-name="print" unicode="&#xf02f;" horiz-adv-x="1664" 
d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
    <glyph glyph-name="camera" unicode="&#xf030;" horiz-adv-x="1920" 
d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="font" unicode="&#xf031;" horiz-adv-x="1664" 
d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
    <glyph glyph-name="bold" unicode="&#xf032;" horiz-adv-x="1408" 
d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
    <glyph glyph-name="italic" unicode="&#xf033;" horiz-adv-x="1024" 
d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
    <glyph glyph-name="text_height" unicode="&#xf034;" horiz-adv-x="1792" 
d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
    <glyph glyph-name="text_width" unicode="&#xf035;" 
d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
    <glyph glyph-name="align_left" unicode="&#xf036;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="align_center" unicode="&#xf037;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
    <glyph glyph-name="align_right" unicode="&#xf038;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="align_justify" unicode="&#xf039;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
    <glyph glyph-name="list" unicode="&#xf03a;" horiz-adv-x="1792" 
d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="indent_left" unicode="&#xf03b;" horiz-adv-x="1792" 
d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="indent_right" unicode="&#xf03c;" horiz-adv-x="1792" 
d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="facetime_video" unicode="&#xf03d;" horiz-adv-x="1792" 
d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
q39 -17 39 -59z" />
    <glyph glyph-name="picture" unicode="&#xf03e;" horiz-adv-x="1920" 
d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="pencil" unicode="&#xf040;" 
d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
q53 0 91 -38l235 -234q37 -39 37 -91z" />
    <glyph glyph-name="map_marker" unicode="&#xf041;" horiz-adv-x="1024" 
d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
    <glyph glyph-name="adjust" unicode="&#xf042;" 
d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="tint" unicode="&#xf043;" horiz-adv-x="1024" 
d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
    <glyph glyph-name="edit" unicode="&#xf044;" horiz-adv-x="1792" 
d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
    <glyph glyph-name="share" unicode="&#xf045;" horiz-adv-x="1664" 
d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
    <glyph glyph-name="check" unicode="&#xf046;" horiz-adv-x="1664" 
d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
q24 -24 24 -57t-24 -57z" />
    <glyph glyph-name="move" unicode="&#xf047;" horiz-adv-x="1792" 
d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
    <glyph glyph-name="step_backward" unicode="&#xf048;" horiz-adv-x="1024" 
d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
    <glyph glyph-name="fast_backward" unicode="&#xf049;" horiz-adv-x="1792" 
d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
q19 19 32 13t13 -32v-710q4 10 13 19z" />
    <glyph glyph-name="backward" unicode="&#xf04a;" horiz-adv-x="1664" 
d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
    <glyph glyph-name="play" unicode="&#xf04b;" horiz-adv-x="1408" 
d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
    <glyph glyph-name="pause" unicode="&#xf04c;" 
d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
    <glyph glyph-name="stop" unicode="&#xf04d;" 
d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    <glyph glyph-name="forward" unicode="&#xf04e;" horiz-adv-x="1664" 
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
    <glyph glyph-name="fast_forward" unicode="&#xf050;" horiz-adv-x="1792" 
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
    <glyph glyph-name="step_forward" unicode="&#xf051;" horiz-adv-x="1024" 
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
    <glyph glyph-name="eject" unicode="&#xf052;" horiz-adv-x="1538" 
d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
    <glyph glyph-name="chevron_left" unicode="&#xf053;" horiz-adv-x="1280" 
d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
    <glyph glyph-name="chevron_right" unicode="&#xf054;" horiz-adv-x="1280" 
d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
    <glyph glyph-name="plus_sign" unicode="&#xf055;" 
d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="minus_sign" unicode="&#xf056;" 
d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
t103 -385.5z" />
    <glyph glyph-name="remove_sign" unicode="&#xf057;" 
d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ok_sign" unicode="&#xf058;" 
d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="question_sign" unicode="&#xf059;" 
d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="info_sign" unicode="&#xf05a;" 
d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="screenshot" unicode="&#xf05b;" 
d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
    <glyph glyph-name="remove_circle" unicode="&#xf05c;" 
d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ok_circle" unicode="&#xf05d;" 
d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ban_circle" unicode="&#xf05e;" 
d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
    <glyph glyph-name="arrow_left" unicode="&#xf060;" 
d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
t32.5 -90.5z" />
    <glyph glyph-name="arrow_right" unicode="&#xf061;" 
d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
    <glyph glyph-name="arrow_up" unicode="&#xf062;" horiz-adv-x="1664" 
d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
q37 -39 37 -91z" />
    <glyph glyph-name="arrow_down" unicode="&#xf063;" horiz-adv-x="1664" 
d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
    <glyph glyph-name="share_alt" unicode="&#xf064;" horiz-adv-x="1792" 
d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
    <glyph glyph-name="resize_full" unicode="&#xf065;" 
d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
    <glyph glyph-name="resize_small" unicode="&#xf066;" 
d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
    <glyph glyph-name="plus" unicode="&#xf067;" horiz-adv-x="1408" 
d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
    <glyph glyph-name="minus" unicode="&#xf068;" horiz-adv-x="1408" 
d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
    <glyph glyph-name="asterisk" unicode="&#xf069;" horiz-adv-x="1664" 
d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
    <glyph glyph-name="exclamation_sign" unicode="&#xf06a;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
    <glyph glyph-name="gift" unicode="&#xf06b;" 
d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
    <glyph glyph-name="leaf" unicode="&#xf06c;" horiz-adv-x="1792" 
d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
    <glyph glyph-name="fire" unicode="&#xf06d;" horiz-adv-x="1408" 
d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
    <glyph glyph-name="eye_open" unicode="&#xf06e;" horiz-adv-x="1792" 
d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
    <glyph glyph-name="eye_close" unicode="&#xf070;" horiz-adv-x="1792" 
d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
" />
    <glyph glyph-name="warning_sign" unicode="&#xf071;" horiz-adv-x="1792" 
d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
    <glyph glyph-name="plane" unicode="&#xf072;" horiz-adv-x="1408" 
d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
    <glyph glyph-name="calendar" unicode="&#xf073;" horiz-adv-x="1664" 
d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="random" unicode="&#xf074;" horiz-adv-x="1792" 
d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
    <glyph glyph-name="comment" unicode="&#xf075;" horiz-adv-x="1792" 
d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
    <glyph glyph-name="magnet" unicode="&#xf076;" 
d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
    <glyph glyph-name="chevron_up" unicode="&#xf077;" horiz-adv-x="1792" 
d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
    <glyph glyph-name="chevron_down" unicode="&#xf078;" horiz-adv-x="1792" 
d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
    <glyph glyph-name="retweet" unicode="&#xf079;" horiz-adv-x="1920" 
d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
" />
    <glyph glyph-name="shopping_cart" unicode="&#xf07a;" horiz-adv-x="1664" 
d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
    <glyph glyph-name="folder_close" unicode="&#xf07b;" horiz-adv-x="1664" 
d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
    <glyph glyph-name="folder_open" unicode="&#xf07c;" horiz-adv-x="1920" 
d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
    <glyph glyph-name="resize_vertical" unicode="&#xf07d;" horiz-adv-x="768" 
d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
    <glyph glyph-name="resize_horizontal" unicode="&#xf07e;" horiz-adv-x="1792" 
d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
    <glyph glyph-name="bar_chart" unicode="&#xf080;" horiz-adv-x="2048" 
d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
    <glyph glyph-name="twitter_sign" unicode="&#xf081;" 
d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="facebook_sign" unicode="&#xf082;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
q0 119 84.5 203.5t203.5 84.5h960z" />
    <glyph glyph-name="camera_retro" unicode="&#xf083;" horiz-adv-x="1792" 
d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="key" unicode="&#xf084;" horiz-adv-x="1792" 
d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
    <glyph glyph-name="cogs" unicode="&#xf085;" horiz-adv-x="1920" 
d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
    <glyph glyph-name="comments" unicode="&#xf086;" horiz-adv-x="1792" 
d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
    <glyph glyph-name="thumbs_up_alt" unicode="&#xf087;" 
d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
    <glyph glyph-name="thumbs_down_alt" unicode="&#xf088;" 
d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
    <glyph glyph-name="star_half" unicode="&#xf089;" horiz-adv-x="896" 
d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
    <glyph glyph-name="heart_empty" unicode="&#xf08a;" horiz-adv-x="1792" 
d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
q224 0 351 -124t127 -344z" />
    <glyph glyph-name="signout" unicode="&#xf08b;" horiz-adv-x="1664" 
d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
    <glyph glyph-name="linkedin_sign" unicode="&#xf08c;" 
d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="pushpin" unicode="&#xf08d;" horiz-adv-x="1152" 
d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
    <glyph glyph-name="external_link" unicode="&#xf08e;" horiz-adv-x="1792" 
d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
    <glyph glyph-name="signin" unicode="&#xf090;" 
d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="trophy" unicode="&#xf091;" horiz-adv-x="1664" 
d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
    <glyph glyph-name="github_sign" unicode="&#xf092;" 
d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="upload_alt" unicode="&#xf093;" horiz-adv-x="1664" 
d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
    <glyph glyph-name="lemon" unicode="&#xf094;" 
d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
    <glyph glyph-name="phone" unicode="&#xf095;" horiz-adv-x="1408" 
d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
    <glyph glyph-name="check_empty" unicode="&#xf096;" horiz-adv-x="1408" 
d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="bookmark_empty" unicode="&#xf097;" horiz-adv-x="1280" 
d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
    <glyph glyph-name="phone_sign" unicode="&#xf098;" 
d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
" />
    <glyph glyph-name="twitter" unicode="&#xf099;" horiz-adv-x="1664" 
d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
    <glyph glyph-name="facebook" unicode="&#xf09a;" horiz-adv-x="1024" 
d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
    <glyph glyph-name="github" unicode="&#xf09b;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
    <glyph glyph-name="unlock" unicode="&#xf09c;" horiz-adv-x="1664" 
d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
t316.5 -131.5t131.5 -316.5z" />
    <glyph glyph-name="credit_card" unicode="&#xf09d;" horiz-adv-x="1920" 
d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
    <glyph glyph-name="rss" unicode="&#xf09e;" horiz-adv-x="1408" 
d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
q187 -186 294 -425.5t120 -501.5z" />
    <glyph glyph-name="hdd" unicode="&#xf0a0;" 
d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
    <glyph glyph-name="bullhorn" unicode="&#xf0a1;" horiz-adv-x="1792" 
d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
    <glyph glyph-name="bell" unicode="&#xf0a2;" horiz-adv-x="1792" 
d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
    <glyph glyph-name="certificate" unicode="&#xf0a3;" 
d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
    <glyph glyph-name="hand_right" unicode="&#xf0a4;" horiz-adv-x="1792" 
d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
    <glyph glyph-name="hand_left" unicode="&#xf0a5;" horiz-adv-x="1792" 
d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="hand_up" unicode="&#xf0a6;" 
d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
    <glyph glyph-name="hand_down" unicode="&#xf0a7;" 
d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
    <glyph glyph-name="circle_arrow_left" unicode="&#xf0a8;" 
d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="circle_arrow_right" unicode="&#xf0a9;" 
d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="circle_arrow_up" unicode="&#xf0aa;" 
d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="circle_arrow_down" unicode="&#xf0ab;" 
d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="globe" unicode="&#xf0ac;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
    <glyph glyph-name="wrench" unicode="&#xf0ad;" horiz-adv-x="1664" 
d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
    <glyph glyph-name="tasks" unicode="&#xf0ae;" horiz-adv-x="1792" 
d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
    <glyph glyph-name="filter" unicode="&#xf0b0;" horiz-adv-x="1408" 
d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
    <glyph glyph-name="briefcase" unicode="&#xf0b1;" horiz-adv-x="1792" 
d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
    <glyph glyph-name="fullscreen" unicode="&#xf0b2;" 
d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
" />
    <glyph glyph-name="group" unicode="&#xf0c0;" horiz-adv-x="1920" 
d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
    <glyph glyph-name="link" unicode="&#xf0c1;" horiz-adv-x="1664" 
d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
    <glyph glyph-name="cloud" unicode="&#xf0c2;" horiz-adv-x="1920" 
d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
" />
    <glyph glyph-name="beaker" unicode="&#xf0c3;" horiz-adv-x="1664" 
d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
    <glyph glyph-name="cut" unicode="&#xf0c4;" horiz-adv-x="1792" 
d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
    <glyph glyph-name="copy" unicode="&#xf0c5;" horiz-adv-x="1792" 
d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
    <glyph glyph-name="paper_clip" unicode="&#xf0c6;" horiz-adv-x="1408" 
d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
z" />
    <glyph glyph-name="save" unicode="&#xf0c7;" 
d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
    <glyph glyph-name="sign_blank" unicode="&#xf0c8;" 
d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="reorder" unicode="&#xf0c9;" 
d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    <glyph glyph-name="ul" unicode="&#xf0ca;" horiz-adv-x="1792" 
d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="ol" unicode="&#xf0cb;" horiz-adv-x="1792" 
d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="strikethrough" unicode="&#xf0cc;" horiz-adv-x="1792" 
d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
    <glyph glyph-name="underline" unicode="&#xf0cd;" 
d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
    <glyph glyph-name="table" unicode="&#xf0ce;" horiz-adv-x="1664" 
d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
z" />
    <glyph glyph-name="magic" unicode="&#xf0d0;" horiz-adv-x="1664" 
d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
    <glyph glyph-name="truck" unicode="&#xf0d1;" horiz-adv-x="1792" 
d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
    <glyph glyph-name="pinterest" unicode="&#xf0d2;" 
d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="pinterest_sign" unicode="&#xf0d3;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
    <glyph glyph-name="google_plus_sign" unicode="&#xf0d4;" 
d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="google_plus" unicode="&#xf0d5;" horiz-adv-x="2304" 
d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
    <glyph glyph-name="money" unicode="&#xf0d6;" horiz-adv-x="1920" 
d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
    <glyph glyph-name="caret_down" unicode="&#xf0d7;" horiz-adv-x="1024" 
d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
    <glyph glyph-name="caret_up" unicode="&#xf0d8;" horiz-adv-x="1024" 
d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="caret_left" unicode="&#xf0d9;" horiz-adv-x="640" 
d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
    <glyph glyph-name="caret_right" unicode="&#xf0da;" horiz-adv-x="640" 
d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="columns" unicode="&#xf0db;" horiz-adv-x="1664" 
d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
    <glyph glyph-name="sort" unicode="&#xf0dc;" horiz-adv-x="1024" 
d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="sort_down" unicode="&#xf0dd;" horiz-adv-x="1024" 
d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
    <glyph glyph-name="sort_up" unicode="&#xf0de;" horiz-adv-x="1024" 
d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="envelope_alt" unicode="&#xf0e0;" horiz-adv-x="1792" 
d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
    <glyph glyph-name="linkedin" unicode="&#xf0e1;" 
d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
    <glyph glyph-name="undo" unicode="&#xf0e2;" 
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
    <glyph glyph-name="legal" unicode="&#xf0e3;" horiz-adv-x="1792" 
d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
    <glyph glyph-name="dashboard" unicode="&#xf0e4;" horiz-adv-x="1792" 
d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="comment_alt" unicode="&#xf0e5;" horiz-adv-x="1792" 
d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
    <glyph glyph-name="comments_alt" unicode="&#xf0e6;" horiz-adv-x="1792" 
d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
    <glyph glyph-name="bolt" unicode="&#xf0e7;" horiz-adv-x="896" 
d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
    <glyph glyph-name="sitemap" unicode="&#xf0e8;" horiz-adv-x="1792" 
d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
z" />
    <glyph glyph-name="umbrella" unicode="&#xf0e9;" horiz-adv-x="1664" 
d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
    <glyph glyph-name="paste" unicode="&#xf0ea;" horiz-adv-x="1792" 
d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
    <glyph glyph-name="light_bulb" unicode="&#xf0eb;" horiz-adv-x="1024" 
d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
    <glyph glyph-name="exchange" unicode="&#xf0ec;" horiz-adv-x="1792" 
d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
    <glyph glyph-name="cloud_download" unicode="&#xf0ed;" horiz-adv-x="1920" 
d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
    <glyph glyph-name="cloud_upload" unicode="&#xf0ee;" horiz-adv-x="1920" 
d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
    <glyph glyph-name="user_md" unicode="&#xf0f0;" horiz-adv-x="1408" 
d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="stethoscope" unicode="&#xf0f1;" horiz-adv-x="1408" 
d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
    <glyph glyph-name="suitcase" unicode="&#xf0f2;" horiz-adv-x="1792" 
d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
t66 -158z" />
    <glyph glyph-name="bell_alt" unicode="&#xf0f3;" horiz-adv-x="1792" 
d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
    <glyph glyph-name="coffee" unicode="&#xf0f4;" horiz-adv-x="1920" 
d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="food" unicode="&#xf0f5;" horiz-adv-x="1408" 
d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
    <glyph glyph-name="file_text_alt" unicode="&#xf0f6;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
    <glyph glyph-name="building" unicode="&#xf0f7;" horiz-adv-x="1408" 
d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
    <glyph glyph-name="hospital" unicode="&#xf0f8;" horiz-adv-x="1408" 
d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
    <glyph glyph-name="ambulance" unicode="&#xf0f9;" horiz-adv-x="1920" 
d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="medkit" unicode="&#xf0fa;" horiz-adv-x="1792" 
d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
    <glyph glyph-name="fighter_jet" unicode="&#xf0fb;" horiz-adv-x="1920" 
d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
    <glyph glyph-name="beer" unicode="&#xf0fc;" horiz-adv-x="1664" 
d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
    <glyph glyph-name="h_sign" unicode="&#xf0fd;" 
d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="f0fe" unicode="&#xf0fe;" 
d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="double_angle_left" unicode="&#xf100;" horiz-adv-x="1024" 
d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
    <glyph glyph-name="double_angle_right" unicode="&#xf101;" horiz-adv-x="1024" 
d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="double_angle_up" unicode="&#xf102;" horiz-adv-x="1152" 
d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="double_angle_down" unicode="&#xf103;" horiz-adv-x="1152" 
d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    <glyph glyph-name="angle_left" unicode="&#xf104;" horiz-adv-x="640" 
d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    <glyph glyph-name="angle_right" unicode="&#xf105;" horiz-adv-x="640" 
d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="angle_up" unicode="&#xf106;" horiz-adv-x="1152" 
d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="angle_down" unicode="&#xf107;" horiz-adv-x="1152" 
d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    <glyph glyph-name="desktop" unicode="&#xf108;" horiz-adv-x="1920" 
d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="laptop" unicode="&#xf109;" horiz-adv-x="1920" 
d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
    <glyph glyph-name="tablet" unicode="&#xf10a;" horiz-adv-x="1152" 
d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
    <glyph glyph-name="mobile_phone" unicode="&#xf10b;" horiz-adv-x="768" 
d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
    <glyph glyph-name="circle_blank" unicode="&#xf10c;" 
d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="quote_left" unicode="&#xf10d;" horiz-adv-x="1664" 
d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
    <glyph glyph-name="quote_right" unicode="&#xf10e;" horiz-adv-x="1664" 
d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
    <glyph glyph-name="spinner" unicode="&#xf110;" horiz-adv-x="1792" 
d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
    <glyph glyph-name="circle" unicode="&#xf111;" 
d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="reply" unicode="&#xf112;" horiz-adv-x="1792" 
d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
    <glyph glyph-name="github_alt" unicode="&#xf113;" horiz-adv-x="1664" 
d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
q0 -87 -27 -168q136 -160 136 -398z" />
    <glyph glyph-name="folder_close_alt" unicode="&#xf114;" horiz-adv-x="1664" 
d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
    <glyph glyph-name="folder_open_alt" unicode="&#xf115;" horiz-adv-x="1920" 
d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
" />
    <glyph glyph-name="expand_alt" unicode="&#xf116;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="collapse_alt" unicode="&#xf117;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="smile" unicode="&#xf118;" 
d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="frown" unicode="&#xf119;" 
d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="meh" unicode="&#xf11a;" 
d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="gamepad" unicode="&#xf11b;" horiz-adv-x="1920" 
d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
    <glyph glyph-name="keyboard" unicode="&#xf11c;" horiz-adv-x="1920" 
d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="flag_alt" unicode="&#xf11d;" horiz-adv-x="1792" 
d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
    <glyph glyph-name="flag_checkered" unicode="&#xf11e;" horiz-adv-x="1792" 
d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
    <glyph glyph-name="terminal" unicode="&#xf120;" horiz-adv-x="1664" 
d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
t9 -23z" />
    <glyph glyph-name="code" unicode="&#xf121;" horiz-adv-x="1920" 
d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
    <glyph glyph-name="reply_all" unicode="&#xf122;" horiz-adv-x="1792" 
d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
    <glyph glyph-name="star_half_empty" unicode="&#xf123;" horiz-adv-x="1664" 
d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
    <glyph glyph-name="location_arrow" unicode="&#xf124;" horiz-adv-x="1408" 
d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
    <glyph glyph-name="crop" unicode="&#xf125;" horiz-adv-x="1664" 
d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
    <glyph glyph-name="code_fork" unicode="&#xf126;" horiz-adv-x="1024" 
d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
    <glyph glyph-name="unlink" unicode="&#xf127;" horiz-adv-x="1664" 
d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
    <glyph glyph-name="question" unicode="&#xf128;" horiz-adv-x="1024" 
d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
    <glyph glyph-name="_279" unicode="&#xf129;" horiz-adv-x="640" 
d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
    <glyph glyph-name="exclamation" unicode="&#xf12a;" horiz-adv-x="640" 
d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
    <glyph glyph-name="superscript" unicode="&#xf12b;" 
d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
t-65.5 -51.5t-30.5 -63h232v80h126z" />
    <glyph glyph-name="subscript" unicode="&#xf12c;" 
d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
h232v80h126z" />
    <glyph glyph-name="_283" unicode="&#xf12d;" horiz-adv-x="1920" 
d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
    <glyph glyph-name="puzzle_piece" unicode="&#xf12e;" horiz-adv-x="1664" 
d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
    <glyph glyph-name="microphone" unicode="&#xf130;" horiz-adv-x="1152" 
d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
    <glyph glyph-name="microphone_off" unicode="&#xf131;" horiz-adv-x="1408" 
d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
    <glyph glyph-name="shield" unicode="&#xf132;" horiz-adv-x="1280" 
d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="calendar_empty" unicode="&#xf133;" horiz-adv-x="1664" 
d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="fire_extinguisher" unicode="&#xf134;" horiz-adv-x="1408" 
d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
    <glyph glyph-name="rocket" unicode="&#xf135;" horiz-adv-x="1664" 
d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
    <glyph glyph-name="maxcdn" unicode="&#xf136;" horiz-adv-x="1792" 
d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
    <glyph glyph-name="chevron_sign_left" unicode="&#xf137;" 
d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="chevron_sign_right" unicode="&#xf138;" 
d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="chevron_sign_up" unicode="&#xf139;" 
d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="chevron_sign_down" unicode="&#xf13a;" 
d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="html5" unicode="&#xf13b;" horiz-adv-x="1408" 
d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
    <glyph glyph-name="css3" unicode="&#xf13c;" horiz-adv-x="1792" 
d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
    <glyph glyph-name="anchor" unicode="&#xf13d;" horiz-adv-x="1792" 
d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
    <glyph glyph-name="unlock_alt" unicode="&#xf13e;" horiz-adv-x="1152" 
d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
v-320h736z" />
    <glyph glyph-name="bullseye" unicode="&#xf140;" 
d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ellipsis_horizontal" unicode="&#xf141;" horiz-adv-x="1408" 
d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
    <glyph glyph-name="ellipsis_vertical" unicode="&#xf142;" horiz-adv-x="384" 
d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
    <glyph glyph-name="_303" unicode="&#xf143;" 
d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="play_sign" unicode="&#xf144;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
q16 -8 32 -8q17 0 32 9z" />
    <glyph glyph-name="ticket" unicode="&#xf145;" horiz-adv-x="1792" 
d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
    <glyph glyph-name="minus_sign_alt" unicode="&#xf146;" 
d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
t84.5 -203.5z" />
    <glyph glyph-name="check_minus" unicode="&#xf147;" horiz-adv-x="1408" 
d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="level_up" unicode="&#xf148;" horiz-adv-x="1024" 
d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
    <glyph glyph-name="level_down" unicode="&#xf149;" horiz-adv-x="1024" 
d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
    <glyph glyph-name="check_sign" unicode="&#xf14a;" 
d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="edit_sign" unicode="&#xf14b;" 
d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_312" unicode="&#xf14c;" 
d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="share_sign" unicode="&#xf14d;" 
d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="compass" unicode="&#xf14e;" 
d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="collapse" unicode="&#xf150;" 
d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="collapse_top" unicode="&#xf151;" 
d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_317" unicode="&#xf152;" 
d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="eur" unicode="&#xf153;" horiz-adv-x="1024" 
d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
    <glyph glyph-name="gbp" unicode="&#xf154;" horiz-adv-x="1024" 
d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
    <glyph glyph-name="usd" unicode="&#xf155;" horiz-adv-x="1024" 
d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
t53 -63.5t31.5 -76.5t13 -94z" />
    <glyph glyph-name="inr" unicode="&#xf156;" horiz-adv-x="898" 
d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
    <glyph glyph-name="jpy" unicode="&#xf157;" horiz-adv-x="1027" 
d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
    <glyph glyph-name="rub" unicode="&#xf158;" horiz-adv-x="1280" 
d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
    <glyph glyph-name="krw" unicode="&#xf159;" horiz-adv-x="1792" 
d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
    <glyph glyph-name="btc" unicode="&#xf15a;" horiz-adv-x="1280" 
d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
    <glyph glyph-name="file" unicode="&#xf15b;" 
d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
    <glyph glyph-name="file_text" unicode="&#xf15c;" 
d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
    <glyph glyph-name="sort_by_alphabet" unicode="&#xf15d;" horiz-adv-x="1664" 
d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
l230 -662h70z" />
    <glyph glyph-name="_329" unicode="&#xf15e;" horiz-adv-x="1664" 
d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
v119h121z" />
    <glyph glyph-name="sort_by_attributes" unicode="&#xf160;" horiz-adv-x="1792" 
d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
    <glyph glyph-name="sort_by_attributes_alt" unicode="&#xf161;" horiz-adv-x="1792" 
d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
    <glyph glyph-name="sort_by_order" unicode="&#xf162;" 
d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
    <glyph glyph-name="sort_by_order_alt" unicode="&#xf163;" 
d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
    <glyph glyph-name="_334" unicode="&#xf164;" horiz-adv-x="1664" 
d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
    <glyph glyph-name="_335" unicode="&#xf165;" horiz-adv-x="1664" 
d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
    <glyph glyph-name="youtube_sign" unicode="&#xf166;" 
d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="youtube" unicode="&#xf167;" 
d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
    <glyph glyph-name="xing" unicode="&#xf168;" horiz-adv-x="1408" 
d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
q25 45 64 45h241q22 0 31 -15z" />
    <glyph glyph-name="xing_sign" unicode="&#xf169;" 
d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="youtube_play" unicode="&#xf16a;" horiz-adv-x="1792" 
d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
    <glyph glyph-name="dropbox" unicode="&#xf16b;" horiz-adv-x="1792" 
d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
    <glyph glyph-name="stackexchange" unicode="&#xf16c;" 
d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
    <glyph glyph-name="instagram" unicode="&#xf16d;" 
d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
    <glyph glyph-name="flickr" unicode="&#xf16e;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
    <glyph glyph-name="adn" unicode="&#xf170;" 
d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="f171" unicode="&#xf171;" horiz-adv-x="1408" 
d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
    <glyph glyph-name="bitbucket_sign" unicode="&#xf172;" 
d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="tumblr" unicode="&#xf173;" horiz-adv-x="1024" 
d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
q78 2 134 29z" />
    <glyph glyph-name="tumblr_sign" unicode="&#xf174;" 
d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="long_arrow_down" unicode="&#xf175;" horiz-adv-x="768" 
d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
    <glyph glyph-name="long_arrow_up" unicode="&#xf176;" horiz-adv-x="768" 
d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
    <glyph glyph-name="long_arrow_left" unicode="&#xf177;" horiz-adv-x="1792" 
d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
    <glyph glyph-name="long_arrow_right" unicode="&#xf178;" horiz-adv-x="1792" 
d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
    <glyph glyph-name="apple" unicode="&#xf179;" horiz-adv-x="1408" 
d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
    <glyph glyph-name="windows" unicode="&#xf17a;" horiz-adv-x="1664" 
d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
    <glyph glyph-name="android" unicode="&#xf17b;" horiz-adv-x="1408" 
d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
    <glyph glyph-name="linux" unicode="&#xf17c;" 
d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
    <glyph glyph-name="dribble" unicode="&#xf17d;" 
d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="skype" unicode="&#xf17e;" 
d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
    <glyph glyph-name="foursquare" unicode="&#xf180;" horiz-adv-x="1280" 
d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
    <glyph glyph-name="trello" unicode="&#xf181;" 
d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    <glyph glyph-name="female" unicode="&#xf182;" horiz-adv-x="1280" 
d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="male" unicode="&#xf183;" horiz-adv-x="1024" 
d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="gittip" unicode="&#xf184;" 
d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="sun" unicode="&#xf185;" horiz-adv-x="1792" 
d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
    <glyph glyph-name="_366" unicode="&#xf186;" 
d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
    <glyph glyph-name="archive" unicode="&#xf187;" horiz-adv-x="1792" 
d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
    <glyph glyph-name="bug" unicode="&#xf188;" horiz-adv-x="1664" 
d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
    <glyph glyph-name="vk" unicode="&#xf189;" horiz-adv-x="1920" 
d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
q39 5 64 -2.5t31 -16.5z" />
    <glyph glyph-name="weibo" unicode="&#xf18a;" horiz-adv-x="1792" 
d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
    <glyph glyph-name="renren" unicode="&#xf18b;" 
d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
    <glyph glyph-name="_372" unicode="&#xf18c;" horiz-adv-x="1408" 
d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
    <glyph glyph-name="stack_exchange" unicode="&#xf18d;" horiz-adv-x="1280" 
d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
" />
    <glyph glyph-name="_374" unicode="&#xf18e;" 
d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="arrow_circle_alt_left" unicode="&#xf190;" 
d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_376" unicode="&#xf191;" 
d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="dot_circle_alt" unicode="&#xf192;" 
d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_378" unicode="&#xf193;" horiz-adv-x="1664" 
d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
    <glyph glyph-name="vimeo_square" unicode="&#xf194;" 
d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_380" unicode="&#xf195;" horiz-adv-x="1152" 
d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
    <glyph glyph-name="plus_square_o" unicode="&#xf196;" horiz-adv-x="1408" 
d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_382" unicode="&#xf197;" horiz-adv-x="2176" 
d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
    <glyph glyph-name="_383" unicode="&#xf198;" horiz-adv-x="1664" 
d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
    <glyph glyph-name="_384" unicode="&#xf199;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
    <glyph glyph-name="_385" unicode="&#xf19a;" horiz-adv-x="1792" 
d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
t273 -182.5t331.5 -68z" />
    <glyph glyph-name="_386" unicode="&#xf19b;" horiz-adv-x="1792" 
d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
    <glyph glyph-name="_387" unicode="&#xf19c;" horiz-adv-x="2048" 
d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
    <glyph glyph-name="_388" unicode="&#xf19d;" horiz-adv-x="2304" 
d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
    <glyph glyph-name="_389" unicode="&#xf19e;" 
d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
    <glyph glyph-name="uniF1A0" unicode="&#xf1a0;" 
d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
    <glyph glyph-name="f1a1" unicode="&#xf1a1;" horiz-adv-x="1792" 
d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_392" unicode="&#xf1a2;" 
d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_393" unicode="&#xf1a3;" 
d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="f1a4" unicode="&#xf1a4;" horiz-adv-x="1920" 
d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
    <glyph glyph-name="_395" unicode="&#xf1a5;" 
d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
t84.5 -203.5z" />
    <glyph glyph-name="_396" unicode="&#xf1a6;" horiz-adv-x="2048" 
d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
v-369h123z" />
    <glyph glyph-name="_397" unicode="&#xf1a7;" 
d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_398" unicode="&#xf1a8;" horiz-adv-x="2038" 
d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14
q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24
q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33
q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5
t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43
q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5
t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13
t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
    <glyph glyph-name="_399" unicode="&#xf1a9;" 
d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10
q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14
q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14
t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44
q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
    <glyph glyph-name="_400" unicode="&#xf1aa;" 
d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z
M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5
t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5
q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126
t135.5 51q85 0 145 -60.5t60 -145.5z" />
    <glyph glyph-name="f1ab" unicode="&#xf1ab;" 
d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5
q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28
q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z
M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11
q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5
q20 0 20 -21v-418z" />
    <glyph glyph-name="_402" unicode="&#xf1ac;" horiz-adv-x="1792" 
d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48
l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23
t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128
q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128
q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
    <glyph glyph-name="_403" unicode="&#xf1ad;" 
d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9
t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64
q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9
t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64
q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9
t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
    <glyph glyph-name="_404" unicode="&#xf1ae;" horiz-adv-x="1280" 
d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152
q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="uniF1B1" unicode="&#xf1b0;" horiz-adv-x="1664" 
d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5
q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819
q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5
t100.5 134t141.5 55.5z" />
    <glyph glyph-name="_406" unicode="&#xf1b1;" horiz-adv-x="768" 
d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
    <glyph glyph-name="_407" unicode="&#xf1b2;" horiz-adv-x="1792" 
d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z
" />
    <glyph glyph-name="_408" unicode="&#xf1b3;" horiz-adv-x="2304" 
d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67
t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70
v-400l434 -186q36 -16 57 -48t21 -70z" />
    <glyph glyph-name="_409" unicode="&#xf1b4;" horiz-adv-x="2048" 
d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658
q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204
q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
    <glyph glyph-name="_410" unicode="&#xf1b5;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5
t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217
t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
    <glyph glyph-name="_411" unicode="&#xf1b6;" horiz-adv-x="1792" 
d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5
q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89
q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
    <glyph glyph-name="_412" unicode="&#xf1b7;" 
d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5
q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5
q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z
" />
    <glyph glyph-name="_413" unicode="&#xf1b8;" horiz-adv-x="1792" 
d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188
l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5
t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1
q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
    <glyph glyph-name="_414" unicode="&#xf1b9;" horiz-adv-x="2048" 
d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384
q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5
l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="_415" unicode="&#xf1ba;" horiz-adv-x="2048" 
d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5
t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z
M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
    <glyph glyph-name="_416" unicode="&#xf1bb;" 
d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384
q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
    <glyph glyph-name="_417" unicode="&#xf1bc;" 
d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64
q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37
q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_418" unicode="&#xf1bd;" horiz-adv-x="1024" 
d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
    <glyph glyph-name="_419" unicode="&#xf1be;" horiz-adv-x="2304" 
d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11
q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245
q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785
l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242
q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236
q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786
q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
    <glyph glyph-name="uniF1C0" unicode="&#xf1c0;" 
d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127
t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5
t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
    <glyph glyph-name="uniF1C1" unicode="&#xf1c1;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197
q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8
q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
    <glyph glyph-name="_422" unicode="&#xf1c2;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5
t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" />
    <glyph glyph-name="_423" unicode="&#xf1c3;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107
h-290v-107h68l189 -272l-194 -283h-68z" />
    <glyph glyph-name="_424" unicode="&#xf1c4;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
    <glyph glyph-name="_425" unicode="&#xf1c5;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
    <glyph glyph-name="_426" unicode="&#xf1c6;" 
d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400
v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79
q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
    <glyph glyph-name="_427" unicode="&#xf1c7;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5
q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
    <glyph glyph-name="_428" unicode="&#xf1c8;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
    <glyph glyph-name="_429" unicode="&#xf1c9;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243
l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
    <glyph glyph-name="_430" unicode="&#xf1ca;" 
d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406
q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
    <glyph glyph-name="_431" unicode="&#xf1cb;" horiz-adv-x="1792" 
d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546
q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
    <glyph glyph-name="_432" unicode="&#xf1cc;" horiz-adv-x="2048" 
d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94
q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55
t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" />
    <glyph glyph-name="_433" unicode="&#xf1cd;" horiz-adv-x="1792" 
d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194
q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5
t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
    <glyph glyph-name="_434" unicode="&#xf1ce;" horiz-adv-x="1792" 
d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5
t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
    <glyph glyph-name="uniF1D0" unicode="&#xf1d0;" horiz-adv-x="1792" 
d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41
t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170
t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136
q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
    <glyph glyph-name="uniF1D1" unicode="&#xf1d1;" horiz-adv-x="1792" 
d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251
l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162
q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33
q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5
t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF1D2" unicode="&#xf1d2;" 
d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85
q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392
q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072
q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_438" unicode="&#xf1d3;" horiz-adv-x="1792" 
d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58
q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47
q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171
v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
    <glyph glyph-name="_439" unicode="&#xf1d4;" 
d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="uniF1D5" unicode="&#xf1d5;" horiz-adv-x="1280" 
d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5
t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153
t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
    <glyph glyph-name="uniF1D6" unicode="&#xf1d6;" horiz-adv-x="1792" 
d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5
q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20
t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5
t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
    <glyph glyph-name="uniF1D7" unicode="&#xf1d7;" horiz-adv-x="2048" 
d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25
q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5
q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109
q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
    <glyph glyph-name="_443" unicode="&#xf1d8;" horiz-adv-x="1792" 
d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
    <glyph glyph-name="_444" unicode="&#xf1d9;" horiz-adv-x="1792" 
d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137
l863 639l-478 -797z" />
    <glyph glyph-name="_445" unicode="&#xf1da;" 
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23
t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_446" unicode="&#xf1db;" 
d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_447" unicode="&#xf1dc;" horiz-adv-x="1792" 
d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15
t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2
t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160
q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5
q0 -26 -12 -48t-36 -22z" />
    <glyph glyph-name="_448" unicode="&#xf1dd;" horiz-adv-x="1280" 
d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179
q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
    <glyph glyph-name="_449" unicode="&#xf1de;" 
d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256
q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
    <glyph glyph-name="uniF1E0" unicode="&#xf1e0;" 
d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5
t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
    <glyph glyph-name="_451" unicode="&#xf1e1;" 
d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5
t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_452" unicode="&#xf1e2;" horiz-adv-x="1792" 
d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5
t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91
q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9
t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
    <glyph glyph-name="_453" unicode="&#xf1e3;" horiz-adv-x="1792" 
d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323
l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
    <glyph glyph-name="_454" unicode="&#xf1e4;" horiz-adv-x="1792" 
d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23
zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5
t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
    <glyph glyph-name="_455" unicode="&#xf1e5;" horiz-adv-x="1792" 
d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z
M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_456" unicode="&#xf1e6;" horiz-adv-x="1792" 
d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234
l401 400q38 37 91 37t90 -37z" />
    <glyph glyph-name="_457" unicode="&#xf1e7;" horiz-adv-x="1792" 
d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5
t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z
M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7
t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
    <glyph glyph-name="_458" unicode="&#xf1e8;" horiz-adv-x="1792" 
d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
    <glyph glyph-name="_459" unicode="&#xf1e9;" 
d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36
q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5
t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87
q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
    <glyph glyph-name="_460" unicode="&#xf1ea;" horiz-adv-x="2048" 
d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19
t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
    <glyph glyph-name="_461" unicode="&#xf1eb;" horiz-adv-x="2048" 
d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121
q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z
M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
    <glyph glyph-name="_462" unicode="&#xf1ec;" horiz-adv-x="1792" 
d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5
t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5
t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38
h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_463" unicode="&#xf1ed;" 
d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246
q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598
q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
    <glyph glyph-name="_464" unicode="&#xf1ee;" horiz-adv-x="1792" 
d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640
q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
    <glyph glyph-name="uniF1F0" unicode="&#xf1f0;" horiz-adv-x="2304" 
d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27
q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128
q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_466" unicode="&#xf1f1;" horiz-adv-x="2304" 
d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249
q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z
M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32
h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4
q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75
q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14
q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22
q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12
q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122
h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5
t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_467" unicode="&#xf1f2;" horiz-adv-x="2304" 
d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42
q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604
v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569
q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73
t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
    <glyph glyph-name="f1f3" unicode="&#xf1f3;" horiz-adv-x="2304" 
d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z
M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260
l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279
v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040
q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168
q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5
t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21
h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5
t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
    <glyph glyph-name="_469" unicode="&#xf1f4;" horiz-adv-x="2304" 
d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16
t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76
q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59
t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489
l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66
q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_470" unicode="&#xf1f5;" horiz-adv-x="2304" 
d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109
q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118
q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151
q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31
q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_471" unicode="&#xf1f6;" horiz-adv-x="2048" 
d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5
l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5
l418 363q10 8 23.5 7t21.5 -11z" />
    <glyph glyph-name="_472" unicode="&#xf1f7;" horiz-adv-x="2048" 
d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128
q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161
q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
    <glyph glyph-name="_473" unicode="&#xf1f8;" horiz-adv-x="1408" 
d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704
q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167
q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_474" unicode="&#xf1f9;" 
d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5
t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5
t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_475" unicode="&#xf1fa;" 
d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53
q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24
t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61
t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
    <glyph glyph-name="_476" unicode="&#xf1fb;" horiz-adv-x="1792" 
d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10
t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
    <glyph glyph-name="f1fc" unicode="&#xf1fc;" horiz-adv-x="1792" 
d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5
t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
    <glyph glyph-name="_478" unicode="&#xf1fd;" horiz-adv-x="1792" 
d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5
t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38
t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448
h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5
q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
    <glyph glyph-name="_479" unicode="&#xf1fe;" horiz-adv-x="2048" 
d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
    <glyph glyph-name="_480" unicode="&#xf200;" horiz-adv-x="1792" 
d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_481" unicode="&#xf201;" horiz-adv-x="2048" 
d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9
t9 -23z" />
    <glyph glyph-name="_482" unicode="&#xf202;" horiz-adv-x="1792" 
d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20
q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50
t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1
q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
    <glyph glyph-name="_483" unicode="&#xf203;" 
d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73
q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110
q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_484" unicode="&#xf204;" horiz-adv-x="2048" 
d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5
t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5
t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
    <glyph glyph-name="_485" unicode="&#xf205;" horiz-adv-x="2048" 
d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5
t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
    <glyph glyph-name="_486" unicode="&#xf206;" horiz-adv-x="2304" 
d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94
q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469
q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400
q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
    <glyph glyph-name="_487" unicode="&#xf207;" 
d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5
h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
    <glyph glyph-name="_488" unicode="&#xf208;" horiz-adv-x="2048" 
d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327
q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5
q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
    <glyph glyph-name="_489" unicode="&#xf209;" horiz-adv-x="1280" 
d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119
t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5
t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14
q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88
q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5
t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
    <glyph glyph-name="_490" unicode="&#xf20a;" horiz-adv-x="2048" 
d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206
q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307
t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14
t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
    <glyph glyph-name="_491" unicode="&#xf20b;" 
d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5
t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_492" unicode="&#xf20c;" 
d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55
q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410
q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
    <glyph glyph-name="_493" unicode="&#xf20d;" 
d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
    <glyph glyph-name="_494" unicode="&#xf20e;" horiz-adv-x="2048" 
d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335
q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5
q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438
h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66
l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946
l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82
zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
    <glyph glyph-name="f210" unicode="&#xf210;" 
d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
    <glyph glyph-name="_496" unicode="&#xf211;" 
d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384
q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
    <glyph glyph-name="f212" unicode="&#xf212;" horiz-adv-x="2048" 
d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021
q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25
q209 0 374 -102q172 107 374 102z" />
    <glyph glyph-name="_498" unicode="&#xf213;" horiz-adv-x="2048" 
d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101
q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284
q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
    <glyph glyph-name="_499" unicode="&#xf214;" 
d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34
l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114
v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z
M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378
v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51
h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5
t-43 -34t-16.5 -53.5z" />
    <glyph glyph-name="_500" unicode="&#xf215;" horiz-adv-x="2048" 
d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832
q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
    <glyph glyph-name="_501" unicode="&#xf216;" horiz-adv-x="2048" 
d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5
t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113
t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5
q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
    <glyph glyph-name="_502" unicode="&#xf217;" horiz-adv-x="1664" 
d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
    <glyph glyph-name="_503" unicode="&#xf218;" horiz-adv-x="1664" 
d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
    <glyph glyph-name="_504" unicode="&#xf219;" horiz-adv-x="2048" 
d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20
l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
    <glyph glyph-name="_505" unicode="&#xf21a;" horiz-adv-x="2048" 
d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83
q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314
v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
    <glyph glyph-name="_506" unicode="&#xf21b;" 
d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14
t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5
q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31
t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
    <glyph glyph-name="_507" unicode="&#xf21c;" horiz-adv-x="2304" 
d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5
t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105
l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226
t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
    <glyph glyph-name="_508" unicode="&#xf21d;" 
d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12
q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384
q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5
t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="_509" unicode="&#xf21e;" horiz-adv-x="1792" 
d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221
q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124
t127 -344z" />
    <glyph glyph-name="venus" unicode="&#xf221;" horiz-adv-x="1280" 
d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292
q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
    <glyph glyph-name="_511" unicode="&#xf222;" 
d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5
q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_512" unicode="&#xf223;" horiz-adv-x="1280" 
d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5
t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_513" unicode="&#xf224;" 
d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_514" unicode="&#xf225;" horiz-adv-x="1792" 
d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9
t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5
t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_515" unicode="&#xf226;" horiz-adv-x="1792" 
d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23
t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391
q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391
q0 -226 -154 -391q103 -57 218 -57z" />
    <glyph glyph-name="_516" unicode="&#xf227;" horiz-adv-x="1920" 
d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230
q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9
t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128
q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
    <glyph glyph-name="_517" unicode="&#xf228;" horiz-adv-x="2048" 
d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23
t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9
t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5
t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
    <glyph glyph-name="_518" unicode="&#xf229;" 
d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5
t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_519" unicode="&#xf22a;" horiz-adv-x="1280" 
d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22
t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5
t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_520" unicode="&#xf22b;" horiz-adv-x="2048" 
d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5
t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5
t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_521" unicode="&#xf22c;" horiz-adv-x="1280" 
d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5
t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_522" unicode="&#xf22d;" horiz-adv-x="1280" 
d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123
t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
    <glyph glyph-name="_523" unicode="&#xf22e;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="_524" unicode="&#xf22f;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="_525" unicode="&#xf230;" 
d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
    <glyph glyph-name="_526" unicode="&#xf231;" horiz-adv-x="1280" 
d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5
l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5
q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
    <glyph glyph-name="_527" unicode="&#xf232;" 
d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5
t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233
l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
    <glyph glyph-name="_528" unicode="&#xf233;" horiz-adv-x="1792" 
d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216
q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
    <glyph glyph-name="_529" unicode="&#xf234;" horiz-adv-x="2048" 
d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5
t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5
t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
    <glyph glyph-name="_530" unicode="&#xf235;" horiz-adv-x="2048" 
d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136
q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69
t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
    <glyph glyph-name="_531" unicode="&#xf236;" horiz-adv-x="2048" 
d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704
q-26 0 -45 -19t-19 -45v-384h1152z" />
    <glyph glyph-name="_532" unicode="&#xf237;" 
d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
    <glyph glyph-name="_533" unicode="&#xf238;" 
d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56
t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
    <glyph glyph-name="_534" unicode="&#xf239;" 
d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47
t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
    <glyph glyph-name="_535" unicode="&#xf23a;" horiz-adv-x="1792" 
d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116
q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
    <glyph glyph-name="_536" unicode="&#xf23b;" 
d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
    <glyph glyph-name="_537" unicode="&#xf23c;" horiz-adv-x="2296" 
d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5
q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5
q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42
q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37
q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5
q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139
q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8
t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132
q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132
q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z
M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86
t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103
q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4
l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130
t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150
q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12
q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
    <glyph glyph-name="_538" unicode="&#xf23d;" horiz-adv-x="2304" 
d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5
t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5
t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
    <glyph glyph-name="_539" unicode="&#xf23e;" horiz-adv-x="1792" 
d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348
t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23
t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96
q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512
q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
    <glyph glyph-name="_540" unicode="&#xf240;" horiz-adv-x="2304" 
d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113
v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="_541" unicode="&#xf241;" horiz-adv-x="2304" 
d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_542" unicode="&#xf242;" horiz-adv-x="2304" 
d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_543" unicode="&#xf243;" horiz-adv-x="2304" 
d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_544" unicode="&#xf244;" horiz-adv-x="2304" 
d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23
v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_545" unicode="&#xf245;" horiz-adv-x="1280" 
d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
    <glyph glyph-name="_546" unicode="&#xf246;" horiz-adv-x="1024" 
d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
    <glyph glyph-name="_547" unicode="&#xf247;" horiz-adv-x="2048" 
d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128
h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
    <glyph glyph-name="_548" unicode="&#xf248;" horiz-adv-x="2304" 
d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256
v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
    <glyph glyph-name="_549" unicode="&#xf249;" 
d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
    <glyph glyph-name="_550" unicode="&#xf24a;" 
d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68
z" />
    <glyph glyph-name="_551" unicode="&#xf24b;" horiz-adv-x="2304" 
d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5
t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88
t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90
t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_552" unicode="&#xf24c;" horiz-adv-x="2304" 
d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294
t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z
M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_553" unicode="&#xf24d;" horiz-adv-x="1792" 
d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113
zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
    <glyph glyph-name="_554" unicode="&#xf24e;" horiz-adv-x="2304" 
d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64
q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91
t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5
t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
    <glyph glyph-name="_555" unicode="&#xf250;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5
t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
    <glyph glyph-name="_556" unicode="&#xf251;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
    <glyph glyph-name="_557" unicode="&#xf252;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
    <glyph glyph-name="_558" unicode="&#xf253;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196
h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
    <glyph glyph-name="_559" unicode="&#xf254;" 
d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87
t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9
h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
    <glyph glyph-name="_560" unicode="&#xf255;" 
d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25
q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27
t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21
q72 69 174 69z" />
    <glyph glyph-name="_561" unicode="&#xf256;" horiz-adv-x="1792" 
d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33
t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52
h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
    <glyph glyph-name="_562" unicode="&#xf257;" horiz-adv-x="1792" 
d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668
q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17
t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5
t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5
q0 -42 -23 -78t-61 -53l-310 -141h91z" />
    <glyph glyph-name="_563" unicode="&#xf258;" horiz-adv-x="2048" 
d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32
q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68
q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
    <glyph glyph-name="_564" unicode="&#xf259;" horiz-adv-x="2048" 
d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79
t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24
q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26
l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" />
    <glyph glyph-name="_565" unicode="&#xf25a;" horiz-adv-x="1792" 
d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5
q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5
v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32
v-384h32z" />
    <glyph glyph-name="_566" unicode="&#xf25b;" 
d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181
v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46
q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5
q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308
q0 -53 37.5 -90.5t90.5 -37.5h668z" />
    <glyph glyph-name="_567" unicode="&#xf25c;" horiz-adv-x="1973" 
d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5
t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141
q13 0 22 -8.5t10 -20.5z" />
    <glyph glyph-name="_568" unicode="&#xf25d;" horiz-adv-x="1792" 
d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109
t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640
q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_569" unicode="&#xf25e;" horiz-adv-x="1792" 
d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78
q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5
t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376
q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191
t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
    <glyph glyph-name="f260" unicode="&#xf260;" horiz-adv-x="2048" 
d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
    <glyph glyph-name="f261" unicode="&#xf261;" horiz-adv-x="1792" 
d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191
t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_572" unicode="&#xf262;" horiz-adv-x="2304" 
d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57
t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197
t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5
t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5
t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5
q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
    <glyph glyph-name="f263" unicode="&#xf263;" horiz-adv-x="1280" 
d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5
t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94
q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
    <glyph glyph-name="_574" unicode="&#xf264;" 
d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32
q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5
zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_575" unicode="&#xf265;" horiz-adv-x="1720" 
d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33
l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
    <glyph glyph-name="_576" unicode="&#xf266;" horiz-adv-x="2304" 
d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540
q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81
l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
    <glyph glyph-name="_577" unicode="&#xf267;" horiz-adv-x="1792" 
d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640
q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5
t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5
t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5
t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191
t191 -286t71 -348z" />
    <glyph glyph-name="_578" unicode="&#xf268;" horiz-adv-x="1792" 
d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962
q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
    <glyph glyph-name="_579" unicode="&#xf269;" horiz-adv-x="1792" 
d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5
q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5
q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
    <glyph glyph-name="_580" unicode="&#xf26a;" horiz-adv-x="1792" 
d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339
q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z
" />
    <glyph glyph-name="_581" unicode="&#xf26b;" horiz-adv-x="1792" 
d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606
q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z
M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
    <glyph glyph-name="_582" unicode="&#xf26c;" horiz-adv-x="2048" 
d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23
v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="_583" unicode="&#xf26d;" horiz-adv-x="1792" 
d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34
h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100
q-68 175 -180 287z" />
    <glyph glyph-name="_584" unicode="&#xf26e;" 
d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6
q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13
q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249
q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183
q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46
t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
    <glyph glyph-name="_585" unicode="&#xf270;" horiz-adv-x="1792" 
d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z
M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30
q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57
t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133
q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
    <glyph glyph-name="_586" unicode="&#xf271;" horiz-adv-x="1792" 
d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9
h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224
v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
    <glyph glyph-name="_587" unicode="&#xf272;" horiz-adv-x="1792" 
d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23
t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47
t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_588" unicode="&#xf273;" horiz-adv-x="1792" 
d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z
M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_589" unicode="&#xf274;" horiz-adv-x="1792" 
d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23
t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47
t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_590" unicode="&#xf275;" horiz-adv-x="1792" 
d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
    <glyph glyph-name="_591" unicode="&#xf276;" horiz-adv-x="1024" 
d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249
q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
    <glyph glyph-name="_592" unicode="&#xf277;" horiz-adv-x="1792" 
d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768
q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
    <glyph glyph-name="_593" unicode="&#xf278;" horiz-adv-x="2048" 
d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173
v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
    <glyph glyph-name="_594" unicode="&#xf279;" horiz-adv-x="1792" 
d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472
q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
    <glyph glyph-name="_595" unicode="&#xf27a;" horiz-adv-x="1792" 
d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5
t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37
t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
    <glyph glyph-name="_596" unicode="&#xf27b;" horiz-adv-x="1792" 
d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5
t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5
t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51
t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
    <glyph glyph-name="_597" unicode="&#xf27c;" horiz-adv-x="1024" 
d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
    <glyph glyph-name="_598" unicode="&#xf27d;" horiz-adv-x="1792" 
d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246
q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
    <glyph glyph-name="f27e" unicode="&#xf27e;" 
d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
    <glyph glyph-name="uniF280" unicode="&#xf280;" 
d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72
h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275
l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
    <glyph glyph-name="uniF281" unicode="&#xf281;" horiz-adv-x="1792" 
d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5
l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44
t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106
q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
    <glyph glyph-name="_602" unicode="&#xf282;" horiz-adv-x="1792" 
d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53
q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
    <glyph glyph-name="_603" unicode="&#xf283;" horiz-adv-x="2304" 
d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
    <glyph glyph-name="_604" unicode="&#xf284;" horiz-adv-x="1792" 
d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308
t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20
t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" />
    <glyph glyph-name="uniF285" unicode="&#xf285;" horiz-adv-x="1792" 
d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
    <glyph glyph-name="uniF286" unicode="&#xf286;" horiz-adv-x="1792" 
d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96
q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5
q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96
q16 0 16 -16z" />
    <glyph glyph-name="_607" unicode="&#xf287;" horiz-adv-x="2304" 
d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96
q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5
t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
    <glyph glyph-name="_608" unicode="&#xf288;" horiz-adv-x="1792" 
d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348
t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_609" unicode="&#xf289;" horiz-adv-x="2304" 
d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22
q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5
q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13
q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
    <glyph glyph-name="_610" unicode="&#xf28a;" 
d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83
t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20
q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5
t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
    <glyph glyph-name="_611" unicode="&#xf28b;" 
d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103
t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_612" unicode="&#xf28c;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
    <glyph glyph-name="_613" unicode="&#xf28d;" 
d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
t103 -385.5z" />
    <glyph glyph-name="_614" unicode="&#xf28e;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
    <glyph glyph-name="_615" unicode="&#xf290;" horiz-adv-x="1792" 
d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5
t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="_616" unicode="&#xf291;" horiz-adv-x="2048" 
d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5
t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416
q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441
h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
    <glyph glyph-name="_617" unicode="&#xf292;" horiz-adv-x="1792" 
d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12
q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311
q15 0 25 -12q9 -12 6 -28z" />
    <glyph glyph-name="_618" unicode="&#xf293;" 
d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5
t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
    <glyph glyph-name="_619" unicode="&#xf294;" horiz-adv-x="1024" 
d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
    <glyph glyph-name="_620" unicode="&#xf295;" 
d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5
t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="_621" unicode="&#xf296;" horiz-adv-x="1792" 
d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" />
    <glyph glyph-name="_622" unicode="&#xf297;" horiz-adv-x="1792" 
d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111
q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" />
    <glyph glyph-name="_623" unicode="&#xf298;" 
d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14
t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" />
    <glyph glyph-name="_624" unicode="&#xf299;" horiz-adv-x="1792" 
d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57
q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285
q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" />
    <glyph glyph-name="_625" unicode="&#xf29a;" horiz-adv-x="1792" 
d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42
q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298
t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_626" unicode="&#xf29b;" 
d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300
l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z
M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" />
    <glyph glyph-name="_627" unicode="&#xf29c;" 
d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5
t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5
t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5
t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_628" unicode="&#xf29d;" horiz-adv-x="1408" 
d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457
q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521
q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661
q3 -1 7 1t7 4l3 2q11 9 11 17z" />
    <glyph glyph-name="_629" unicode="&#xf29e;" horiz-adv-x="2304" 
d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10
t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5
t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5
h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96
t9.5 -70.5z" />
    <glyph glyph-name="uniF2A0" unicode="&#xf2a0;" horiz-adv-x="1408" 
d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5
q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127
l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272
t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249
q-18 -19 -45 -19z" />
    <glyph glyph-name="uniF2A1" unicode="&#xf2a1;" horiz-adv-x="2176" 
d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352
q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864
q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136
t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56
t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56
t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136
t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" />
    <glyph glyph-name="uniF2A2" unicode="&#xf2a2;" horiz-adv-x="1792" 
d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z
M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72
t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45
t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4
q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" />
    <glyph glyph-name="uniF2A3" unicode="&#xf2a3;" horiz-adv-x="2304" 
d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55
q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5
q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101
q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35
q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5
q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" />
    <glyph glyph-name="uniF2A4" unicode="&#xf2a4;" horiz-adv-x="1792" 
d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19
t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74
t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233
l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" />
    <glyph glyph-name="uniF2A5" unicode="&#xf2a5;" 
d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2
q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10
q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5
t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="uniF2A6" unicode="&#xf2a6;" horiz-adv-x="1535" 
d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5
l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5
q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9
q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" />
    <glyph glyph-name="uniF2A7" unicode="&#xf2a7;" horiz-adv-x="1664" 
d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37
t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38
l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148
q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26
l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" />
    <glyph glyph-name="uniF2A8" unicode="&#xf2a8;" horiz-adv-x="1792" 
d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5
q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841
q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5
q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" />
    <glyph glyph-name="uniF2A9" unicode="&#xf2a9;" horiz-adv-x="1280" 
d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5
q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z
M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" />
    <glyph glyph-name="uniF2AA" unicode="&#xf2aa;" 
d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z
M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5
q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
t84.5 -203.5z" />
    <glyph glyph-name="uniF2AB" unicode="&#xf2ab;" 
d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114
q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5
t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
t103 -385.5z" />
    <glyph glyph-name="uniF2AC" unicode="&#xf2ac;" horiz-adv-x="1664" 
d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35
q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5
t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" />
    <glyph glyph-name="uniF2AD" unicode="&#xf2ad;" 
d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115
q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15
t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960
q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="uniF2AE" unicode="&#xf2ae;" horiz-adv-x="2304" 
d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7
q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158
q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" />
    <glyph glyph-name="uniF2B0" unicode="&#xf2b0;" 
d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104
q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108
l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z
M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" />
    <glyph glyph-name="uniF2B1" unicode="&#xf2b1;" horiz-adv-x="1664" 
d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5
t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" />
    <glyph glyph-name="uniF2B2" unicode="&#xf2b2;" horiz-adv-x="1792" 
d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5
t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114
q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50
q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5
t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46
q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5
q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177
t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" />
    <glyph glyph-name="uniF2B3" unicode="&#xf2b3;" 
d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110
h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="uniF2B4" unicode="&#xf2b4;" 
d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5
q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" />
    <glyph glyph-name="uniF2B5" unicode="&#xf2b5;" horiz-adv-x="2304" 
d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66
l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180
q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z
M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421
q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" />
    <glyph glyph-name="uniF2B6" unicode="&#xf2b6;" horiz-adv-x="1792" 
d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107
t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39
q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" />
    <glyph glyph-name="uniF2B7" unicode="&#xf2b7;" horiz-adv-x="1792" 
d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5
l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5
h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94
q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" />
    <glyph glyph-name="uniF2B8" unicode="&#xf2b8;" 
d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465
l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161
q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74
q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" />
    <glyph glyph-name="uniF2B9" unicode="&#xf2b9;" horiz-adv-x="1664" 
d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576
q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216
q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" />
    <glyph glyph-name="uniF2BA" unicode="&#xf2ba;" horiz-adv-x="1664" 
d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5
t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96
q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216
q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" />
    <glyph glyph-name="uniF2BB" unicode="&#xf2bb;" horiz-adv-x="2048" 
d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z
M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568
q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9
h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2BC" unicode="&#xf2bc;" horiz-adv-x="2048" 
d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925
q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568
q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5
t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113
t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2BD" unicode="&#xf2bd;" horiz-adv-x="1792" 
d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5
t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2BE" unicode="&#xf2be;" horiz-adv-x="1792" 
d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61
t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" />
    <glyph glyph-name="uniF2C0" unicode="&#xf2c0;" 
d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5
t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145
q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" />
    <glyph glyph-name="uniF2C1" unicode="&#xf2c1;" horiz-adv-x="1280" 
d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5
t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352
q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2C2" unicode="&#xf2c2;" horiz-adv-x="2048" 
d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56
t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23
v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728
q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2C3" unicode="&#xf2c3;" horiz-adv-x="2048" 
d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z
M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64
q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47
h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2C4" unicode="&#xf2c4;" horiz-adv-x="1792" 
d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117
q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5
t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" />
    <glyph glyph-name="uniF2C5" unicode="&#xf2c5;" horiz-adv-x="2304" 
d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21
t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46
t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54
t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29
q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5
t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314
q2 -42 2 -64z" />
    <glyph glyph-name="uniF2C6" unicode="&#xf2c6;" horiz-adv-x="1792" 
d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2C7" unicode="&#xf2c7;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2C8" unicode="&#xf2c8;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2C9" unicode="&#xf2c9;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2CA" unicode="&#xf2ca;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2CB" unicode="&#xf2cb;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z
M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" />
    <glyph glyph-name="uniF2CC" unicode="&#xf2cc;" horiz-adv-x="1920" 
d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41
t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19
t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768
q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19
t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384
q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" />
    <glyph glyph-name="uniF2CD" unicode="&#xf2cd;" horiz-adv-x="1792" 
d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9
t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9
t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42
q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9
t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23
t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" />
    <glyph glyph-name="uniF2CE" unicode="&#xf2ce;" 
d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5
t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70
q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20
q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5
t72.5 -263.5z" />
    <glyph glyph-name="uniF2D0" unicode="&#xf2d0;" horiz-adv-x="1792" 
d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D1" unicode="&#xf2d1;" horiz-adv-x="1792" 
d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D2" unicode="&#xf2d2;" horiz-adv-x="2048" 
d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47
t47 -113z" />
    <glyph glyph-name="uniF2D3" unicode="&#xf2d3;" horiz-adv-x="1792" 
d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10
l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D4" unicode="&#xf2d4;" horiz-adv-x="1792" 
d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D5" unicode="&#xf2d5;" horiz-adv-x="1792" 
d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2D6" unicode="&#xf2d6;" horiz-adv-x="1794" 
d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12
t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5
t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5
q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5
q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34
q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5
t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2D7" unicode="&#xf2d7;" 
d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89
q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5
t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" />
    <glyph glyph-name="uniF2D8" unicode="&#xf2d8;" 
d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7
t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5
h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113
v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D9" unicode="&#xf2d9;" horiz-adv-x="2176" 
d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584
q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5
q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15
q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82
q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104
t302 11t306.5 -97q220 -115 333 -336t87 -474z" />
    <glyph glyph-name="uniF2DA" unicode="&#xf2da;" horiz-adv-x="1792" 
d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178
q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199
t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297
t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208
t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" />
    <glyph glyph-name="uniF2DB" unicode="&#xf2db;" 
d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16
q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28
t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32
q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16
h48q16 0 16 -16z" />
    <glyph glyph-name="uniF2DC" unicode="&#xf2dc;" horiz-adv-x="1664" 
d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45
t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33
q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313
l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106
q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" />
    <glyph glyph-name="uniF2DD" unicode="&#xf2dd;" horiz-adv-x="1792" 
d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321
q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" />
    <glyph glyph-name="uniF2DE" unicode="&#xf2de;" horiz-adv-x="1792" 
d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62
t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71
t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2E0" unicode="&#xf2e0;" horiz-adv-x="1920" 
d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3
t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53
q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5
q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5
t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5
q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z
M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21
q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16
q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" />
    <glyph glyph-name="uniF2E1" unicode="&#xf2e1;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E2" unicode="&#xf2e2;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E3" unicode="&#xf2e3;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E4" unicode="&#xf2e4;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E5" unicode="&#xf2e5;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E6" unicode="&#xf2e6;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E7" unicode="&#xf2e7;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="_698" unicode="&#xf2e8;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E9" unicode="&#xf2e9;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EA" unicode="&#xf2ea;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EB" unicode="&#xf2eb;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EC" unicode="&#xf2ec;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2ED" unicode="&#xf2ed;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EE" unicode="&#xf2ee;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="lessequal" unicode="&#xf500;" horiz-adv-x="1792" 
 />
  </font>
</defs></svg>
PK�uKX\�DŬ���;spiko/assets/css/font-awesome/fonts/fontawesome-webfont.ttf
�PFFTMk�G���GDEF��p OS/2�2z@X`cmap
�:��gasp���hglyf���M�L�head��-�6hhea
�$hmtxEy��
�loca��\�maxp,8 name㗋�gh�post����k�uː�xY_<��3�2�3�2���	�	����	��'@i��3��3s�pyrs@ �� �pU�]�����y�n�����2��@������
��������z���Z@�5�5
���z���ZZ����@���������,_���@������s���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-����`��b����
���$����6�4�8�"�"""""���@�D@���,,@� ���������	m��)@�@	 	' D9>dY*	'						�	��	��T										�@	f�	%RE	 		$!k(D�'	��	�%��	�%	��	��0%�/�&��p@0 �����!"""`���>�N�^�n�~��������������.�>�N�^�n�~��������������>�N�^�n�~������������ �����!"""`���!�@�P�`�p�������������� �0�@�P�`�p��������������!�@�P�`�p�������������\�X�S�B�1����ݬ

	����������������������������������
�
	,,,,,,,,,,,,,��t�L�T$�l	x	�
T(��
d����l,����4d�pH�$d,t( � �!�"0# $,$�&D'�(�)T**�,,�-�.@.�/`/�00�1�2�3d444�5 5�5�6 6\6�7H7�88`8�9L9�:h:�;�<p=p><>�?h?�@H@�A0A�BXB�CdC�DLD�E�F�G0G�H�I�J8K�L�MdN,N�N�O�P`P�Q4Q�RRlS,S�T`U0W�X�Z[@[�\<\�]�^(^�_�`pb,b�dd�ePe�f�g`g�iLi�jDkk�l�m@n,oLp�q�r�sxtt�uD{`||�}}�~��������H��������l�@����������l�H� ���T��H�������`����@�����$�\�X��D�������T�X�����D�P�,���8���d�\����������������H���x��� �t���X���p��d��������x�t�������������@������Œ�\� ļ�ŸƔ�0���d��ʨˀ����͔�x��ϰЌ�,ш�҈�ӌ���8�,՜�`���l�Hش�`���Tڸ�۔�@���l��ބ�߬��l�p� ������������������������������4�����X���$�l���(����`����������	d

��
,�,��8��(�X���x|T�@��| �!�"x##l$$�'h(�*L,T.L1t1�2�303�4�5t6T7$89H::�;�<�<�?X@A�B�C�D�EHFHGpHHIxJ J�K�L�MN@P@Q�R�SDT ULV`V�WXX4X�ZZ�[d[�\|]�^�`�aHa�b�cXd�etfhg�h�i\jxn�p@s�vw�x�y�z�{h|�}}�\���l�t���4���������t���8�8���L���T�������������|�������|�������4�x�����L����������X�(� ������� ������@�����l���t����$����x�L�L��� �H������Ġ�T�(����ʈˠ��ϔ�l�d���P�Մ�x�p���ڬ�T�T���ވ�L�����<�H��$���l������4����������� �P�l����,���x���p�,�x�t��d����4���4,h�P	4
��
�4�<,,408$�8�T� |!h"�$L%0&H'�(�)�*0*�+�,�.$.�0�1�2@2�3�4t5$6�9 :�:�;;�<(<�=4?�@�A�C�D�F�H`H�I�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�p7!!!���@p�p �p�]���!2#!"&463!&54>3!2�+��@&&��&&@��+$(�($F#+���&4&&4&x+#��+".4>32".4>32467632DhgZghDDhg-iW�DhgZghDDhg-iW&@(8 ��2N++NdN+'�;2N++NdN+'�3
8���!  #"'#"$&6$ �������rL46$���܏���oo��o|W%r��������4L&V|o��oo����ܳ��%��=M%+".'&%&'3!26<.#!";2>767>7#!"&5463!2� %��3@m00m@3���% 
�
�@
���:"7..7":�6]�^B�@B^^B�B^ $΄+0110+��$�
(	

�t��1%%1��+�`��B^^B@B^^���"'.54632>32�4��
#L</��>�oP$$Po�>���Z$_d�C�+I@$$@I+��������"#"'%#"&547&547%62���V�?�?V��8��<��8y���
���b%	I�))�9I	����	+	%%#"'%#"&547&547%62q2�Z���Z2Izy���V)�?�?V��8��<��8)>~��>��[��
���
2���b%	I�))�9I	���%#!"&54>3 72 &6 }X��X}.GuL�l�LuG.�����>�m��mU��mE��Em�������>����/?O_o���54&+";2654&+";2654&+";264&#!"3!2654&+";2654&+";264&#!"3!2654&+";2654&+";2654&+";267#!"&5463!2�&�&&�&&�&&�&&�&&�&&�&&&�&�&&�&�&�&&�&��&�&&&�&�&&�&&�&&�&&�&&�&�^B��B^^B@B^@�&&�&&��&&�&&��&&�&&�&&�&&��&&�&&���&&�&&&&�&&���&&�&&��&&�&&��&&�&&���B^^B@B^^��/?#!"&5463!2#!"&5463!2#!"&5463!2#!"&5463!2L4�4LL44LL4�4LL44L�L4�4LL44LL4�4LL44L��4LL4�4LL��4LL4�4LL���4LL4�4LL��4LL4�4LL	�/?O_o�#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(88(��(88(@(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88�/?O_#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(88(�@(88(�(8�8(��(88(@(88(�@(88(�(88(�@(88(�(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88y��"/&4?62	62��,�P����P&�P��P�,��jP�����n���#$"'	"/&47	&4?62	62	�P���P�&���P&&P���&�P�&���P&&P���&�P������#+D++"&=#"&=46;546;232  #"'#"$&6$ 
�
@
�

�
@
�
�������rK56$���܏���oo��o|W�@
�

�
@
�

��r��������jK&V|o��oo����ܳ�����0#!"&=463!2  #"'#"$&6$ 
��

@
�������rK56$���܏���oo��o|W�@

@
�r��������jK&V|o��oo����ܳ����)5 $&54762>54&'.7>"&5462z�����z��+i *bkQ��н�Qkb* j*����LhLLhL�����zz���Bm +*i J�yh��QQ��hy�J i*+ m��J��4LL4�4LL���/?O%+"&=46;2%+"&546;2%+"&546;2+"&546;2+"&546;2��������������`��r��@�@r�@��@����n4&"2#"/+"&/&'#"'&'&547>7&/.=46?67&'&547>3267676;27632�Ԗ����#H
	��,/
�1)�
~'H�
�(C
	�

�,/
�1)�	
�$H�
Ԗ�Ԗm�6%2X
%�	l�2
�k	r6

[21
�..9Q

$�
k�2
�k	
w3[20����/;Cg+"&546;2+"&546;2+"&546;2!3!2>!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���@�`�0
��
o`^B��B^`5FN(@(NF5 ��@��@��@���L%%Ju		�@�LSyuS�@�%44%�f5#!!!"&5465	7#"'	'&/&6762546;2�&�����&??�>

�L�L
>
� X ���
 � &���&��&AJ	A��	J
W���h��##!"&5463!2!&'&!"&5!�(8(��(88(�(`�x
��c�`(8��`(��(88(@(8(D��9�8(����� ,#!"&=46;46;2.  6 $$ ����@��������(�r���^����a�a�@@`��(��������_�^����a�a��2NC5.+";26#!26'.#!"3!"547>3!";26/.#!2W
�
��.�@

��

�@.�$S

�

S$�@

���9I


�
I6>
��
��>�%=$4&"2$4&"2#!"&5463!2?!2"'&763!463!2!2&4&&4&&4&&4�8(�@(88(ч:�:��(8���@6�@*&&*�4&&4&&4&&4& ��(88(@(8�88�8)�@�)'�&&�@���$0"'&76;46;232  >& $$ `
������������(���r���^����a�a`��		@`��2�������(���^����a�a�����$0++"&5#"&54762  >& $$ ^���
?@�����(���r���^����a�a���`?		����������(���^����a�a��
#!.'!!!%#!"&547>3!2�<�<�<_@`&��&�
5@5
�@����&&�>=(""��=���'#"'&5476.  6 $$ � ��  ! ��������(�r���^����a�a�J��	%�%���(��������_�^����a�a�����3#!"'&?&#"3267672#"$&6$3276&�@*���h��QQ��hw�I
�	m�ʬ����zz���k�)'�@&('��Q��н�Qh_
	�
��z�8�zoe����$G!"$'"&5463!23267676;2#!"&4?&#"+"&=!2762�@�h���k�4&&�&�G�a��F*�
&�@&��Ɇ�F*�
A��k�4&���nf�&�&&4�BH�rd�@&&4���rd
Moe�&�/?O_o+"&=46;25+"&=46;25+"&=46;2#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!26#!"&5463!2�
@

@

@

@

@

@
�
�@

�

�@

�

�@

�
�
�@

�
�^B�@B^^B�B^`@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�3@

��
M��B^^B@B^^��!54&"#!"&546;54 32@�Ԗ@8(�@(88( p (8�j��j��(88(@(8������8@���7+"&5&5462#".#"#"&5476763232>32@@
@
@KjK�ך=}\�I���&:�k�~&26]S
&H&�

�&H5KKu�t,4,�	&� x:;*4*&��K#+"&546;227654$ >3546;2+"&="&/&546$ �<��X@@Gv"D�����װD"vG@@X��<��4L4����1!Sk @ G<_b������b_<G �� kS!1����zz�� �"'!"&5463!62&4����&&M4&���&M&�&M& ��-"'!"&5463!62#"&54>4.54632&4����&&M4&�UF
&""""&
F���&M&�&M&���%/B/%���G-Ik"'!"&5463!62#"&54>4.54632#"&54767>4&'&'&54632#"&547>7676'&'.'&54632&4����&&M4&�UF
&""""&
FU��
&'8JSSJ8'&

����

&'.${��{$.'&

����&M&�&M&���%/B/%7���;&'6���6'&;��4�[&$
[2[
$&[��#/37#5#5!#5!!!!!!!#5!#5!5##!35!!!����������������������������������������������������������������������������#'+/37;?3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3????  ^��>>~??�??�??~??~??^??�^^?  ^??������������������������������������4&"2#"'.5463!2�KjKKjv%�'45%�5&5L4�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'��k�54&"2#"'.5463!2#"&'654'.#32�KjKKjv%�'45%�5&5L4�5�&�%�%�'4$.�%%�5&�5�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'45%�%�%54'�&55&�6'
��y�Tdt#!"&'&74676&7>7>76&7>7>76&7>7>76&7>7>63!2#!"3!2676'3!26?6&#!"3!26?6&#!"g(��sA�eM�,*$/
!'&
�JP��$G]��
x�6,&��`
��
h`
��
"9H�v@WkNC<.
&k&
("$p"	.
#u&#	%!'	pJ�vwEF�#

@

��

@

���2#"'	#"'.546763�!''!0#�G�G$/!''!�	
8"��"8
 ��X!	
8"	"8
	����<)!!#"&=!4&"27+#!"&=#"&546;463!232������(8���&4&&4�
�8(�@(8�
qO@8(�(`�(@Oq��8(��&4&&4&@�`
�(88(�
�Oq (8(�`(�q���!)2"&42#!"&546;7>3!2  I��j��j��j��j�3e55e3�gr������`��I�j��j��j�j��1GG1���r��������P2327&7>7;"&#"4?2>54.'%3"&#"#ժ!�9&W��B03&�K5�!�)V�?�@L��'�	
>R�>e;&L:�:%P�>��vO
'h�� N��_"�:-&+#
��:��	'	����+a%3 4'.#"32>54.#"7>7><5'./6$3232#"&#"+JBx)EB_I:I*CRzb3:dtB2P���$$5.3b�ZF�|\8!-T>5��Fu��\,�,j�n OrB,<!
5�4wJ]�?tTFi;
2�3j.�p^%/2�+
	S:T}K4W9: #ƕd�fE���:7>7676'5.'732>7"#"&#&#"OA
zj=N!�}:0e��%	y�
+t�D3�~U#B4#
g		'2
%/!:
���T	bRU,7����}%2"/&6;#"&?62+326323!2>?23&'.'.#"&"$#"#&=>764=464.'&#"&'�!~:~!PP!~:~!P��6�,�,$�$%*'
c2N 	
(�$"L��A2�3Yl�!x!*�%��%%��%��
p�P,T	NE	Q7^���oH!+(
3	 *Ue�eu
wg��a�32632$?23&'.5&'&#"&"5$#"#&=>7>4&54&54>.'&#"&'2#".465!#".'&47>32!4&4>Q6�,�,Faw!*'
=~Pl*	
(�$"L��A2�3Yl	�)�!*<7@@7<
�
<7@@7<
 p�P,T	MF
Q7�47ƢHoH!+(
3	 t���JHQ6wh��',686,'$##$',686,'$##$�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&�&&&&�&&&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&��&&�&&��&&�&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&�&&&&�&&&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?O_o%+"&=46;2+"&=46;2+"&=46;2#!"&=463!2+"&=46;2#!"&=463!2#!"&=463!2#!"&=463!2
�

�

�

�

�

�

��

@
�
�

�

��

@

��

@

��

@
�

�
s�

�
s�

�
��

�
s�

�
��

�
s�

�
s�

�
�/?O#"'&47632#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
	��		 	
�
�@

�

��

@

��

@

�@

�
�
	 		 	��

�
s�

�
s�

�
s�

�
�/?O#"&54632	#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2`	��	

	 �
�@

�

��

@

��

@

�@

�
�	��	
@
	��	�

�
s�

�
s�

�
s�

�
#"'#!"&5463!2632'
�m�w�@w��w�w��
'���*��w��w�w��w������."&462!5	!"3!2654&#!"&5463!2�p�pp�p��@���

@
�^B��B^^B@B^�pp�p���@�@� 
�@

�
 �@B^^B�B^^���k%!7'34#"3276'	!7632k[�[�v
��
6����`�%��`�$65&�%[�[k����
�`����5%���&&�'���4&"2"&'&54 �Ԗ���!��?H?��!,�,Ԗ�ԖmF��!&&!Fm�,�����%" $$ ���������^����a�a`@������^����a�a���-4'.'&"26% 547>7>2"KjK��X��QqYn	243nYqQ�$!+!77!+!$5KK���,ԑ�	���]""]ً�	��9>H7'3&7#!"&5463!2'&#!"3!26=4?6	!762xt�t` �� ^Q�w��w��w@?61��B^^B@B^	@(` �`��\\��\P�`t�t8`� �� ^�Ͼw��w@w�1^B��B^^B~
	@��` \ \�P�+Z#!"&5463!12+"3!26=47676#"'&=# #"'.54>;547632��w��w��w�
M8
pB^^B@B^�
'���sw-

9*##;No��j�'
�#��w��w@w�
"^B��B^^B�

	��*�����
"g`�81T`PSA:'�*��4�/D#!"&5463!2#"'&#!"3!26=4?632"'&4?62	62��w��w��w@?61

��B^^B@B^	@

��B�RnB�Bn^��w��w@w�1
^B��B^^B�
	@
���Bn���nB�C"&=!32"'&46;!"'&4762!#"&4762+!5462�4&���&�4�&���&4�4&��&4&��&4�4�&���&4�4&��&4&��&4�4&���&����6'&'+"&546;267��:	&�&&�&	s�@�	
�Z&&�&&�Z
	���+6'&''&'+"&546;267667��:	�:	&�&&�&	�	s�@�	
�:�	
�Z&&�&&�Z
	��:
	z����6'&''&47667S�:	�:�	s�@�	
�:�4��:
	�|�	&546h��!!0a�
�
�
$���#!"&5463!2#!"&5463!2&�&&&��&�&&&@��&&�&&��&&�&&���#!"&5463!2&��&&�&@��&&�&&���&54646&5-�	��:	s��:	
��:4�:�
	���+&5464646;2+"&5&5-�	�	&�&&�&	�:	s��:	
��:	
�&&��&&�
	�:�
	���&54646;2+"&5-�	&�&&�&	s��:	
�&&��&&�
	62#!"&!"&5463!2�4��@��&&�&&-��:��&&&�&�����	"'&4762����4��4����4��4��4Z��f�	"/&47	&4?62S�4����4����44��4���#/54&#!4&+"!"3!;265!26 $$ �&�&�&�&&&�&&@���^����a�a@�&&&�&�&�&&&+�^����a�a�����54&#!"3!26 $$ �&�&&&@���^����a�a@�&&�&&+�^����a�a�����+74/7654/&#"'&#"32?32?6 $$ }��Z��Z��Z��Z����^����a�a���Z��Z��Z��Z�^����a�a�����#4/&"'&"327> $$ [4�h�4[j����^����a�a"Z�i�Z��J�^����a�a�����:F%54&+";264.#"32767632;265467>$ $$ ���o�W��	5!"40K(0?i�+! ":����^����a�a����X�R�dD4!&.uC$=1/J=�^����a�a�����.:%54&+4&#!";#"3!2654&+";26 $$ `��``��������^����a�a�����������^����a�a�����/_#"&=46;.'+"&=32+546;2>++"&=.'#"&=46;>7546;232�m&&m �l&�&l� m&&m �l&�&l�s&�%�&�&��%�&&�%�&�&��%�&&�&l� m&&m �l&�&l� m&&m �,�&��%�&&�%�&�&��%�&&�%�&���#/;"/"/&4?'&4?627626.  6 $$ I�

��

�

��

�

��

�

��
͒������(�r���^����a�aɒ

��

�

��

�

��

�

��
(��������_�^����a�a����� ,	"'&4?6262.  6 $$ ��Z4��f4�4fz�������(�r���^����a�a�Z&4f�f4�(��������_�^����a�a�����	"4'32>&#" $&6$  W���oɒV�󇥔�� z�����zz�8�����YW�˼�[����?����zz�:�zz�@�5K #!#"'&547632!2A4�@%&&K%54'�u%%�&54&K&&���4A��5K��$l$L%%�%54'�&&J&j&��K�5�K #"/&47!"&=463!&4?632�%�u'43'K&&%�@4AA4���&&K&45&�%@6%�u%%K&j&%K5�5K&$l$K&&�u#5��K@!#"'+"&5"/&547632K%K&56$��K5�5K��$l$K&&�#76%�%53'K&&%�@4AA4���&&K&45&�%%�u'5��K�"#"'&54?63246;2632K%�u'45%�u&&J'45%&L4�4L&%54'K%�5%�t%%�$65&K%%���4LL4�@&%%K'���,"&5#"#"'.'547!3462�4&�b��qb>#5���&4�4�&6Uu�e7D#		"�dž�&����/#!"&546262"/"/&47'&463!2�
���&�@&&4�L

r&4���

r

L�&�&�
���4&&�&�L

rI�@&���

r

L�4&&
���s/"/"/&47'&463!2#!"&546262&4���

r

L�&�&�
���&�@&&4�L

r@�@&���

r

L�4&&�
���4&&�&�L

r��##!+"&5!"&=463!46;2!2�8(�`8(�(8�`(88(�8(�(8�(8 �(8�`(88(�8(�(8�(88(�`8��#!"&=463!2�8(�@(88(�(8 �(88(�(88z���5'%+"&5&/&67-.?>46;2%6�.@g.��L4�4L��.g@.
��.@g.
L4�4L
.g@.���g.n.���4LL43�.n.g��g.n.�34LL4�͙.n.g����-  $54&+";264'&+";26/�a����^�����
�

�


�

�����^����a�a��
�
fm��
@
J%55!;263'&#"$4&#"32+#!"&5#"&5463!"&46327632#!2���$�$�8�~+(88�8(+}�(�`8(��(8`�]��]k=��=k]��]��8���,8e�8P88P8�����`(88(�@���M��M����N4&#"327>76$32#"'.#"#"&'.54>54&'&54>7>7>32&����z&^��&.������/+>+)>J>	W��m7����'
'"''? &4&c��&^|h_b��ml/J@L@#*
#M6:D
35sҟw$	'%
'	\�t��3#!"&=463!2'.54>54''�
��

@
�1O``O1CZ��Z71O``O1BZ��Z7�@

@
N�]SHH[3`�)Tt��bN�]SHH[3^�)Tt���!1&' 547 $4&#"2654632 '&476 ���=������=嘅�����}�(zVl��'��'���ٌ@�uhy����yhu����9(�}Vz��D#���#D#�������	=CU%7.5474&#"2654632%#"'&547.'&476!27632#76$7&'7+NWb=嘧�}�(zV�j�\i1
z,��X��
Y[6
$!%���'F��u�J�iys�?_�9ɍ?�kyhu�n(�}Vz����YF
KA؉L�a
�0��2�-�F"@Q���sp@�_���!3%54&+";264'&+";26#!"&'&7>2
�

�


�
�
#%;"�";%#<F<������7


���??""??�$$ll2#"'&'	+&/&'&?632	&'&?67>`,@L�����5
`		��
`	�����L�`4�L��H`
����`	��
a	5�
��L@��#37;?Os!!!!%!!!!%!!!!!!!!%!!4&+";26!!%!!!!74&+";26%#!"&546;546;2!546;232� ��`@���� ��`@���� ���@����@�� ��@����
@

@
� ��@��� �� 
@

@
�L4��4LL4�^B@B^�^B@B^�4L� �� @@��@@ � � � @@  

��
��@@ �� � 

��
M�4LL44L`B^^B``B^^B`L���7q.+"&=46;2#"&=".'673!54632#"&=!"+"&=46;2>767>3!54632�<M33K,��	��	
 j8Z4L2B4:;M33K,?		��	
�0N<* .)C=W]xD��0N<* .)C=W]xD?\�-7H)��	��	
�".=']�-7H)�
��w	��	
�<?.>mBZxPV3!�<?.>mBZxPV3!�
���&#"'&'5&6&>7>7&54>$32�d�FK��1A
0)����L���.���٫�C58.H(Y���e����#3C $=463!22>=463!2#!"&5463!2#!"&5463!2���H���&�&/<R.*.R</&�&�&��&&�&&��&&�&������Bɀ&&�4L&&L4�&&f��&&�&&��&&�&&Z� %"'	"/&4762��4���4��4�ͥ���5��5Z����	"'&4?62	62��4��44���5����5��%K%#!".<=#"&54762+!2"'&546;!"/&5463!232
�@�&@<@&�@	����:��&���	�
��& 

��&���&���
����&��	

��`&���:$"&462"&462!2#!"&54>7#"&463!2!2�LhLLh�LhLLh�!��
�&&�&��&&�&4hLLhLLhLLhL��%z<
0&4&&)17&4&
&&��#!"&5463!2!2��\�@\��\@\��\���@\��\�\��\ �W�*#!"&547>3!2!"4&5463!2!2W��+�B��"5P+�B@"5����^�=���\@\� \�H#�t3G#�3G:�_H�t�\��\ �@��+32"'&46;#"&4762�&��&�4�&��&4�4&�&4�4&&4�@�"&=!"'&4762!5462�4&�&4�4&&4�4�&��&4&��&����
!!!3!!��������������������������0@67&#".'&'#"'#"'32>54'6#!"&5463!28ADAE=\W{��O[/5dI
kDt���pČe1?*�w�@w��w�w��	(M&
B{Wta28r=Ku?RZ^Gw��T	-�@w��w�w�����$2+37#546375&#"#3!"&5463�w��w���/Dz?s�����w��w��w�@w�S�88�	�����w�w����#'.>4&#"26546326"&462!5!&  !5!!=!!%#!"&5463!2�B^8(�Ԗ���������>��������@�|�K5�5KK55K�^B(8Ԗ�Ԗ�€>�������v����5KK55KK�H��G4&"&#"2654'32#".'#"'#"&54$327.54632@p�p)*Ppp�p)*P�b	'"+`�N*(�a���;2��̓c`." b
PTY9��ppP*)p�ppP*)�b ".`�(*N��ͣ�2�ͣ����`+"'	b
MRZB�����4&"24&"264&"26#"/+"&/&'#"'&547>7&/.=46?67&'&547>3267676;27632#"&'"'#"'&547&'&=4767&547>32626?2#"&'"'#"'&547&'&=4767&547>32626?2��Ԗ���LhLKjKLhLKjK��	�"8w
s%(�")v

�
>�
	�"8x
s"+�")v
�<�
��3zLLz3��
3>8L3)x3
��3zLLz3��
3>8L3)x3
�Ԗ�Ԗ�4LL45KK54LL45KK���
#)0C	wZl/
�
Y�	
N,&�
#)0C	vZl.
�
Y�L0"��qG^^Gq�q$ ]G)Fq�qG^^Gq�q$ ]G)Fq��%O#"'#"&'&4>7>7.546$ '&'&'# '32$7>54'�����VZ|�$2$
|��E~E<�|
$2$�|ZV���:�(t}�������X(	
&%(H�w�쉉��x�H(%&	(X�ZT\�MKG���<m$4&"24&#!4654&#+32;254'>4'654&'>7+"&'&#!"&5463!6767>763232&4&&4�N2��`@`%)7&,$)'  
%/0Ӄy�#5 +�1	&<��$]`�{t��5KK5$e:1&+'3T�F0�h��4&&4&�3M:�;b^v�+D2 5#$��I�IJ 2E=\$YJ!$MCeM��-+(K5�5K�K5y�*%A�u]c���>q4&"24&'>54'654&'654&+"+322654&5!267+#"'.'&'&'!"&5463!27>;2&4&&4�+ 5#bW���0/%
  ')$,&7)%`@``2N��h�0##�T3'"(0;e$��5KK5 t��ip��<&	1&4&&4&�#\=E2&%IURI��$#5 2D+�v^b;�:M2g�c]vDEA%!bSV2M�K5�5K(,,��MeCM$!I��@�#"&547&547%6@�?V��8������b%	I�)���94.""'."	67"'.54632>32�+C`\hxeH>Hexh\`C+�ED���4��
#L</��>�oP$$Po�>��Q|I.3MCCM3.I|Q����/����Z$_d�C�+I@$$@I+� (@%#!"&5463!2#!"3!:"&5!"&5463!462�
��w��w@

��B^^B 
���4&�@&&�&4 ` 
�w�w�
 
^B�@B^24��& &�& &�����%573#7.";2634&#"35#347>32#!"&5463!2���FtIG9;HI�x�I��<,tԩw�@w��w�w�z��4DD43EE�����ueB���&#1�s�@w��w�w�����.4&"26#!+"'!"&5463"&463!2#2��&�S3L�l&�c4LL4�4LL4c����@��&��&{�LhLLhL��'?#!"&5463!2#!"3!26546;2"/"/&47'&463!2��w��w��w��@B^^B@B^@�&4��t

r

��&&`��w��w@w�@^B��B^^B@R�&��t

r

��4&&@"&5!"&5463!462	#!"&54&>3!2654&#!*.54&>3!2���4&�@&&�&4 s�w��

@B^^B��

@w��4��& &�& &��3�@w�
 
^B�B^ 
�����
I&5!%5!>732#!"&=4632654&'&'.=463!5463!2!2�J���J���S��q*5&=CKu��uKC=&5*q͍S8( ^B@B^ (8���`N��`Ѣ�΀G�tO6)"M36J[E@@E[J63M")6Ot�G�(8`B^^B`8	���',2��6'&'&76'6'&6&'&6'&4#"7&64 654'.'&'.63226767.547&7662>76#!"&5463!2		/[		.
=���X��Ě4,+"*+, 1JH'5G:�:#L5+@=&#���w�@w��w�w�P.1GE�,��ԧ��44+	;/5cFO:>JJ>:O9W5$@(b4��@w��w�w������'?$4&"2$4&"2#!"&5463!3!267!2#!#!"&5!"'&762&4&&4&&4&&4�8(�@(88(�c==c�(8��*�&�&�*�6�&4&&4&&4&&4& ��(88(@(88HH88`(�@&&�('��@����1c4&'.54654'&#"#"&#"32632327>7#"&#"#"&54654&54>76763232632


	N<�;+gC8�A`1a9�9�g��w����|�9�8aIe$I�VN��z<�:LQJ
�,�-[%	061I��(�)W,$-������7,oIX(�)o�ζA;=N0
eTZ
	 (���O#".'&'&'&'.54767>3232>32�e^\4?P	bM��O0#382W#& 9C9
Lĉ"	82<*9FF(W283#0OMb	P?4\^eFF9*<28	"��L
9C9 &#��!"3!2654&#!"&5463!2`��B^^B@B^^ީw��w��w@w�^B��B^^B@B^���w��w@w�����#!72#"'	#"'.546763���YY�!''!0#�G�G$/!''!�&�UU�jZ	
8"��"8
 ��X!	
8"	"8
	���GW4.'.#"#".'.'.54>54.'.#"32676#!"&5463!2 1.-
+$)
c�8
)1)

05.D
<9�0)$9��w�@w��w�w�W

)1)
7�c
)$+
-.1 �9$)0���<
D.59�@w��w�w��,T1# '327.'327.=.547&54632676TC_L��Ҭ���#+�i�!+*p�DNBN,y[����`m`%i]hbE����m��}a�u&,�SXK��
&$��f9s?
_���#"!#!#!54632��V<%'����Э��HH���	�(ں����T\dksz�� &54654'>54'6'&&"."&'./"?'&546'&6'&6'&6'&6'&74"727&6/�a���49[aA)O%-j'&]�]5r-%O)@a[9'
0BA;+


>HC���U


	#	
	
$				2	
AC: �����oM�=a-6O�UwW[q	( -	q[WwU�P6$C

+) (	
8&/
&eM���a�	
&
$	

��%+"&54&"32#!"&5463!54 �&@&�Ԗ`(88(�@(88(�r��&&j��j�8(��(88(@(8��������#'+2#!"&5463"!54&#265!375!35!�B^^B��B^^B
�

��
`���^B�@B^^B�B^�
��
�
`��
�������!="&462+"&'&'.=476;+"&'&$'.=476;�p�pp�p�$���!�$qr�
�%���}�#ߺ���pp�p��!�E$�
�rq�ܢ#���
%�
ֻ��!)?"&462"&4624&#!"3!26!.#!"#!"&547>3!2/B//B//B//B�
�@

�
�2�����^B�@B^�\77\�aB//B//B//B/�@

��
��

�~��B^^B@2^5BB5��2���.42##%&'.67#"&=463! 2�5KK5L4�_�u:B&1/&��.-
zB^^B���4L��v��y�KjK��4L[!^k'!A3;):2*�<vTq6^B�B^�L4�$���)��*@��A4#"&54"3!4."#!"&5!"&5>547&5462�;U gI�v��0Z���Z0�L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig0,3lb??bl3���4Lj��jL4*\���(88(�����\���}I/#"/'&/'&?'&'&?'&76?'&7676767676`�
(�5)�0
)��*)
0�)5�(
��
(�5)�0
))��))
0�)5�(
��*)
0�)5�(��
)�5)�0
)*��*)
0�)5�)
��
)�5)�0
)*���5h$4&"24&#!4>54&#"+323254'>4'654&'!267+#"'&#!"&5463!2>767>32!2&4&&4�N2��$YGB
(HGEG  H��Q�#5K4L��i�!<�����;��5KK5 
A#
("/?&}�vh��4&&4&�3M95S+C=�,@QQ9��@@�IJ 2E=L5i�>9eM��E;K5�5K	J7R>@#�zD<����5=q%3#".'&'&'&'.#"!"3!32>$4&"2#!"#"&?&547&'#"&5463!&546323!2`  #A<(H(GY$��2NL4K5#aWTƾh&4&&4�K5��;����=!�i��hv�}&?/"(
#A
 5K��2*!	Q@.'!&=C+S59M34L=E2 JI UR@@&4&&4&���5K;E��Lf9>�ig�<Dz�#@>R7J	K�5h4&"24#"."&#"4&#"".#"!54>7#!"&54.'&'.5463246326326&4&&4��IJ 2E=L43M95S+C=�,@QQ9�@@�E;K5��5K	J7R>@#�zD<�gi�>9eM��Z4&&4&<�#5K4LN2��$YGB
(HGEG  H��V���;��5KK5 
A#
("/?&}�vh��i�!<��4<p4.=!32>332653272673264&"2/#"'#"&5#"&54>767>5463!2�@@��2*!	Q@.'!&=C+S59M34L.9E2 JI UR�&4&&4&��Lf6A�ig�6Jy�#@>R7J	K5�5K;E@TƾH  #A<(H(GY$��2NL4K#5#a=4&&4&�D��=�i��hv�}&?/"(
#A
 5KK5��;�����+54&#!764/&"2?64/!26 $$ &�
�[6��[[j6[��&���^����a�a@�&�4[��[6[��[6�&+�^����a�a�����+4/&"!"3!277$ $$ [��6[��
&&��[6j[
���^����a�ae6[j[6�&�&�4[j[��^����a�a�����+4''&"2?;2652?$ $$ ��[6[��[6�&�&�4[���^����a�af6j[[��6[��
&&��[��^����a�a�����+4/&"4&+"'&"2? $$ [6�&�&�4[j[6[j���^����a�ad6[��&&�
�[6��[[j��^����a�a������  $2>767676&67>?&'4&'.'.'."#&6'&6&'3.'.&'&'&&'&6'&>567>#7>7636''&'&&'.'"6&'6'..'/"&'&76.'7>767&.'"76.7"7"#76'&'.'2#22676767765'4.6326&'.'&'"'>7>&&'.54>'>7>67&'&#674&7767>&/45'.67>76'27".#6'>776'>7647>?6#76'6&'676'&67.'&'6.'.#&'.&6'&.5/�a����^����D&"	


	4
	$!	#
	
		
	



 
.0"�Y
	+


!	
	

$	
	"
+


		
	�Α	
		
����^����a�a��

	

			
	

	

		
	
		P� '-(	#	*	$

"
!				
*
!	

(				

	
��$�
		
2
�~�/$4&"2	#"/&547#"32>32�&4&&4��V%54'j&&�'��/덹���:,���{	&4&&4&�V%%l$65&�b��'C��r!"��k[G�+;%!5!!5!!5!#!"&5463!2#!"&5463!2#!"&5463!2����������&��&&�&&��&&�&&��&&�&�������@�&&&&�&&&&�&&&&��{#"'&5&763!2{�'
��**�)��*��)'/!5!#!"&5!3!26=#!5!463!5463!2!2���^B�@B^�&@&`��^B`8(@(8`B^��� B^^B�&&�����B^�(88(�^���G	76#!"'&?	#!"&5476	#"'&5463!2	'&763!2#"'��c�)'&�@*������*�@&('�c���(&�*�cc�*�&'
����*�@&('�c���'(&�*�cc�*�&('���c�'(&�@*��19AS[#"&532327#!"&54>322>32"&462 &6 +&'654'32>32"&462Q�g�Rp|Kx;CB��y��y� 6Fe=
BP���PB
=eF6 ��Ԗ��V����>!pR�g�QBC;xK|��Ԗ���{QNa*+%��x��x5eud_C(+5++5+(C_due2Ԗ�Ԗ�����>�NQ{u�%+*jԖ�Ԗ��p�!Ci4/&#"#".'32?64/&#"327.546326#"/&547'#"/&4?632632��(* 8(!�)(��A�('��)* 8(!U�SxyS�SXXVzxT�TU�SxyS�SXXVzxT�@(� (8 *(���(��'(�(8 ���S�SU�Sx{VXXT�T�S�SU�Sx{VXXT���#!"5467&5432632�������t,Ԟ;F`j�)��������6�,��>�jK?�s��
�!%#!"&7#"&463!2+!'5#�8Ej��jE8�@&&&&@������XYY�&4&&4&�qD�S�%��q%��N\jx��2"&4#"'#"'&7>76326?'&'#"'.'&676326326&'&#"32>'&#"3254?''7�4&&4&l��
�NnbS���VZbR��SD	
zz
	DS��Rb)+U���Sbn�
��\.2Q\dJ'.2Q\dJ.Q2.'Jd\Q2.'Jd`!O�`��	`�����&4&&4�r$#@�B10M�5TNT{L�5T
	II	
T5�L;l'OT4�M01B�@#$�*�3;$*�3;�;3�*$;3�*$�:$/� @@�Qq`��@���"%3<2#!"&5!"&5467>3!263!	!!#!!46!#!�(88(�@(8��(8(�`(�(8D<���+����+�<��8(�`(��8(�`�8(�@(88( 8(�(`�(8(��(������<��`(8��(`����`(8����||?%#"'&54632#"'&#"32654'&#"#"'&54632|�u�d��qܟ�s]
=
��Ofj�L?R@T?��"&�
>
�f?rRX=Ed�u�ds���q��
=
_M�jiL��?T@R?E& �f
>
�=XRr?��b���!1E)!34&'.##!"&5#3463!24&+";26#!"&5463!2����
��
08(��(8��8(@(8��
�

�
�8(��(88(�(`(����1

�`(88(���(88(@

��
�`(88(@(8(��`���#!"&5463!2�w�@w��w�w�`�@w��w�w��/%#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&��&&�&&�&&�&&�&&�&&��@'7G$"&462"&462#!"&=463!2"&462#!"&=463!2#!"&=463!2�p�pp�pp�pp��
�@

�
��p�pp��
�@

�

�@

�
Рpp�p��pp�p���

�
�pp�p���

�
�

�
��<L\l|#"'732654'>75"##5!!&54>54&#"'>3235#!"&=463!2!5346=#'73#!"&=463!2#!"&=463!2}mQjB919+i1$AjM_3<��/BB/.#U_:IdDRE�
�@
�
����k*G�j�
�@
�

�@

�
TP\BX-@8
C)5�XsJ@�$3T4+,:;39SG2S.7<���

�vcc)�)%L�l�}�

��

�
���5e2#!"&=463%&'&5476!2/&'&#"!#"/&'&=4'&?5732767654'&��@�0��2uBo
T25XzrDCBB�Eh:%��)0%HPIP{rQ�9f#-+>;I@KM-/Q"�@@@#-bZ��$&P{<�8[;:XICC>.�'5oe80#.0(
l0&%,"J&9%$<=DTI���cs&/6323276727#"327676767654./&'&'737#"'&'&'&54'&54&#!"3!260%
<4�"VRt8<@<
-#=XYhW8+0$"+dT�Lx-'I&JKkm��uw<=V�@�!X@		v
'��|N;!/!$8:I�Ob�V;C#V

&
(���mL.A:9 !./KLwP�M�$��@@
��/?O_o��%54&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!26#!"&5463!2��@��@��@���@��@��@���@��@��@�^B��B^^B@B^�����������������������������N��B^^B@B^^���#+3	'$"/&4762%/?/?/?/?�%k��*��6�6��bbbb|��<<��<�bbbb��bbbb�%k���6���6Ƒbbb��<<��<<�^bbbbbb@��M$4&"2!#"4&"2&#"&5!"&5#".54634&>?>;5463!2�LhLLh����
	�	LhLLhL!'�Ԗ���Ԗ@'!&	
�?�&&LhLLhL�	�	
��hLLhL��	j��jj��j	&@6/"
��&&���J#"'676732>54.#"7>76'&54632#"&7>54&#"&54$ ���ok;	-j=y�hw�i�[+PM3ѩ���k=J%62>Vc��a�aQ�^��� ]G"�'9��r�~:`}�Ch�  0=Z�٤���W=#uY2BrUI1�^Fk[|��a�����L2#!67673254.#"67676'&54632#"&7>54&#"#"&5463�w��w�+U	,i<��F{�jh�}Z+OM

2ϧ���j<J%51=Ub�w��w��w�@w�zX"�'8'�T�yI9`{�Bf� 
,>X�բ���W<"uW1AqSH1�bd��w�w����'74'!3#"&46327&#"326%35#5##33#!"&5463!2����0U6c��c\=hl���ࠥ�Ymmnnnn�w�@w��w�w�w&�46#�Ȏ;ed����wnnnnn��@w��w�w����	]#/#"$&6$3 &#"32>7!5!%##5#5353����Е���tt����u�{�zz�{S�ZC�`�c�����o���t�*�t��q|��|.EXN#�??�������,<!5##673#$".4>2"&5!#2!46#!"&5463!2��r�M*
�*M~�~M**M~�~M*j����jj����&�&&&�`��P%��挐|NN|���|NN|�*�jj���jj�@��&&�&&@�
"'&463!2�@4�@&�Z4�@�4&@
#!"&4762&��&�4�Z4&&4��@@���
"'&4762�&4�@�4&@��&�4�&�@�
"&5462@�@4&&4��4�@&�&�@����
3!!%!!26#!"&5463!2�`��m��`
�^B��B^^B@B^���
 `���@B^^B�B^^��@
"'&463!2#!"&4762�@4�@&�&&��&�4��4�@�4&Z4&&4��@��
"'&463!2�@4�@&��4�@�4&@
#!"&4762&��&�4�Z4&&4��@��:#!"&5;2>76%6+".'&$'.5463!2^B�@B^,9j�9Gv33vG9�H9+bI��\
A+=66=+A
[��">nSM�A_:��B^^B1&�c*/11/*{�'VO�3��@/$$/@�*�?Nh^��l+!+"&5462!4&#"!/!#>32]��_gTRdg�d���QV?U��I*Gg?����!�2IbbIJaa���iwE33����00� 08����4#"$'&6?6332>4.#"#!"&54766$32z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������z��
�	
_hQ��н�QGB�'(&�*�eoz�(���q!#"'&547"'#"'&54>7632&4762.547>32#".'632�%k'45%��&+�~(
(�h		&

\(
(�		&

~+54'k%5%l%%l$65+~

&		�(
(\

&		�h(
(~�+%��'��!)19K4&"24&"26.676&$4&"24&"24&"2#!"'&46$ �KjKKjKjKKj�e2.e<^P��,bKjKKj��KjKKjKjKKj��#��#���LlL�KjKKjKjKKjK��~-��M<M�(PM<rjKKjK�jKKjKujKKjK�������L���< 6?32$6&#"'#"&'5&6&>7>7&54$ L�h��я�W.�{+9E=�c��Q�d�FK��1A
0)���������p�J2`[Q?l&������٫�C58.H(Y��'����:d 6?32$64&$ #"'#"&'&4>7>7.546'&'&'# '32$7>54'Y����j`a#",5NK�
����~E�����VZ|�$2$
|��:
$2$�|ZV���:�(t}�����h�fR�88T
h�̲����X(	
&%(H�w��(%&	(X�ZT\�MKG�{x��|�!#"'.7#"'&7>3!2%632u��

�j
�H����{(e9
�1b���U#!"&546;5!32#!"&546;5!32#!"&546;5463!5#"&5463!2+!2328(��(88(`�`(88(��(88(`�`(88(��(88(`L4`(88(@(88(`4L`(8 ��(88(@(8��8(��(88(@(8��8(��(88(@(8�4L�8(@(88(��(8�L4�8����OY"&546226562#"'.#"#"'.'."#"'.'.#"#"&5476$32&"5462��И&4&NdN!>!
1X:Dx++w�w++xD:X1
-�U��
�!�*,*&4&��h��h&&2NN2D&

..J<
$$
<JJ<
$$
<J..

��P���bb&&�7!!"&5!54&#!"3!26!	#!"&=!"&5463!2��`(8��
�@

�
+��8(�@(8��(88(@(8�(��8(� @

@
�m+�U�`(88(�8(@(88(��
�h`���(\"&54&#"&46324."367>767#"&'"&547&547&547.'&54>2�l4

2cK�Eo���oED
)
�
�
�
)
D�g-;</-
?.P^P.?
-/<;-gY�����Y�

.2 L4H|O--O|HeO,����,Oe�q1Ls26%%4.2,44,2.4%%62sL1q�c�qAAq����4#!#"'&547632!2#"&=!"&=463!54632
��
��		@	
`
	��	
��

`?`�
�

@	
	@	
�!	��	
�
�
�
����54&+4&+"#"276#!"5467&5432632�
�
�
	`		_
�������v,Ԝ;G_j�)��``

��
	��		_ԟ����7
�,��>�jL>���54'&";;265326#!"5467&5432632	��		��
�
�
�
�������v,Ԝ;G_j�)���	`		����

`������7
�,��>�jL>�����X`$"&462#!"&54>72654&'547 7"2654'54622654'54&'46.' &6 �&4&&4&�y��y�%:hD:Fp�pG9�F�j� 8P8 LhL 8P8 E;
Dh:%������>�4&&4&}y��yD~�s[4D�d=PppP=d�>hh>@�jY*(88(*Y4LL4Y*(88(*YDw"
A4*[s�~����>�����M4&"27 $=.54632>32#"' 65#"&4632632 65.5462&4&&4�G9��������&
<#5KK5!��!5KK5#<
&ܤ��9Gp�p&4&&4&@>b�u��ោؐ&$KjK�nj��j�KjK$&����j��j�b>Ppp���
%!5!#"&5463!!35463!2+32����@\��\���8(@(8�\@@\������\@\���(88(��\��@��34#"&54"3#!"&5!"&5>547&5462�;U gI@L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig04Lj��jL4*\���(88(�����\��@"4&+32!#!"&+#!"&5463!2�pP@@P���j�j�@�@�\�@\�&��0�p����j��	��� \��\�&��-B+"&5.5462265462265462+"&5#"&5463!2�G9L4�4L9G&4&&4&&4&&4&&4&L4�4L�
��&���=d��4LL4d=�&&�`&&�&&�`&&�&&��4LL4
 ��&�#3CS#!"&5463!2!&'&!"&5!463!2#!"&52#!"&=4632#!"&=463�(8(��(88(�(`�x
��c�`(8���@��@��@�`(��(88(@(8(D��9�8(��`@�@@�@@��/?O_o��������-=%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!!5463!2#!"&5463!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
�����
@
&�&&&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
����

`��&&�&&
��/?O_o�����%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!#!"&=!!5463!24&+"#54&+";26=3;26%#!"&5463!463!2!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
���8(�@(8��
@

@
�
@

@
�
@
&�&&@8(�(8@&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
��� (88( ���

�@

``

��

``
-�&&& (88(��&@����<c$4&"2!#4&"254&+54&+"#";;26=326+"&5!"&5#"&46346?>;463!2�KjKKj�����KjKKj�������&��Ԗ���Ԗ�&&�@�&�&KjKKjK��
��jKKjK ������.��&j��jj��j&4&�@�@&&���#'1?I54&+54&+"#";;26=326!5!#"&5463!!35463!2+32����������� \��\����8(@(8�\  \����������\@\���(88(��\����:
#32+53##'53535'575#5#5733#5;2+3����@��E&&`�@@��`  ����  `��@@�`&&E%@�`��@ @ @��		 �� � � � �� 		��@ 0
@��!3!57#"&5'7!7!��K5�������@ � � @���5K�@����@@��� �����#3%4&+"!4&+";265!;26#!"&5463!2&�&�&�&&�&&�&�w�@w��w�w���&&��@&&��&&@��&&��@w��w�w�����#354&#!4&+"!"3!;265!26#!"&5463!2&��&�&��&&@&�&@&�w�@w��w�w�@�&@&&��&�&��&&@&:�@w��w�w��-M�3)$"'&4762	"'&4762	s
2

�.

�

2

�w��
2

�.

�

2

�w��
2

�

�

2

�w�w

2

�

�

2

�w�w
M�3)"/&47	&4?62"/&47	&4?62S
�.

2

��w

2

��
�.

2

��w

2

�M
�.

2

��

2

�.

�.

2

��

2

�.M�3S)$"'	"/&4762"'	"/&47623
2

�w�w

2

�

�

2

�w�w

2

�

��
2

��w

2

�

�.v
2

��w

2

�

�.M�3s)"'&4?62	62"'&4?62	623
�.

�.

2

��

2

�.

�.

2

��

2�
�.

�

2

�w�

2v
�.

�

2

�w�

2-Ms3	"'&4762s
�w�

2

�.

�

2�
�w�w

2

�

�

2
MS3"/&47	&4?62S
�.

2

��w

2

�M
�.

2

��

2

�.M
3S"'	"/&47623
2

�w�w

2

�

�m
2

��w

2

�

�.M-3s"'&4?62	623
�.

�.

2

��

2-
�.

�

2

�w�

2���/4&#!"3!26#!#!"&54>5!"&5463!2
��

@
�^B��  &�&  ��B^^B@B^ @

��
M��B^%Q=
&&<P&^B@B^^�+3"&5463!2#3!2654&#!"3#!"&=324+"3�B^^B@B^^B��
@

��
`�^B��B^�p�^B�B^^B�@B^`�@

�
�S`(88(``  ��'$4&"2%4&#!"3!26#!"&5463!2�&4&&4�
��

@
�^B��B^^B@B^f4&&4&��

�@
��B^^B@B^^/$4&"2%4&#!"3!264+";%#!"&5463!2�/B//B�
�


���0L4�4LL44L_B//B/��

�@
M   �4LL44LL���  >& $$ ������(���r���^����a�a��������(���^����a�a����!C#!"&54>;2+";2#!"&54>;2+";2pP��PpQ��h@&&@j�8(�Pp�pP��PpQ��h@&&@j�8(�Pp@��PppP�h��Q&�&�j (8pP��PppP�h��Q&�&�j (8p��!C+"&=46;26=4&+"&5463!2+"&=46;26=4&+"&5463!2Q��h@&&@j�8(�PppP�Pp�Q��h@&&@j�8(�PppP�Pp��@h��Q&�&�j (8pP�PppP�@h��Q&�&�j (8pP�Ppp@�@�	#+3;G$#"&5462"&462"&462#"&462"&462"&462"&462#"&54632K54LKj=KjKKj��KjKKj�L45KKjK�<^�^^��KjKKj��p�pp���\]��]\��jKL45K��jKKjKujKKjK��4LKjKK�^^�^��jKKjK��pp�p�r]��]\����� $$ ���^����a�aQ�^����a�a�����,#"&5465654.+"'&47623 #>bq��b�&4�4&�ɢ5����"		#D7e�uU6�&4&��m����1X".4>2".4>24&#""'&#";2>#".'&547&5472632>3�=T==T=�=T==T=��v)�G�G�+v�@b��R�R��b@�=&����\N����j!>�3l�k����i�k3�hPTDDTPTDDTPTDDTPTDD|x��xX�K--K��|Mp<#	)>dA{��RXtfOT# RNftWQ���,%4&#!"&=4&#!"3!26#!"&5463!2!28(�@(88(��(88(�(8��\�@\��\@\��\���(88(@(88(�@(88�@\��\�\��\ �u�'E4#!"3!2676%!54&#!"&=4&#!">#!"&5463!2!232�5��([��5@(\&��8(��(88(��(8,�9.��+�C��\��\@\� \��6Z]#+��#,k��(88(@(88(��;5E�>:��5E�\�\��\ �\�1. ���$4@"&'&676267>"&462"&462.  > $$ n%��%/���02�
KjKKjKKjKKjKf���ff�������^����a�a�y��y/PccP/�jKKjKKjKKjK���ff���ff�@�^����a�a�����$4@&'."'.7>2"&462"&462.  > $$ n20���/%��7KjKKjKKjKKjKf���ff�������^����a�a3/PccP/y��	jKKjKKjKKjK���ff���ff�@�^����a�a�����+7#!"&463!2"&462"&462.  > $$ �&��&&��&KjKKjKKjKKjKf���ff�������^����a�a�4&&4&�jKKjKKjKKjK���ff���ff�@�^����a�a���#+3C54&+54&+"#";;26=3264&"24&"2$#"'##"3!2@������@KjKKjKKjKKjK����ܒ���,����������gjKKjKKjKKjK�X�Ԁ�,�,��#/;GS_kw�����+"=4;27+"=4;2'+"=4;2#!"=43!2%+"=4;2'+"=4;2+"=4;2'+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;54;2!#!"&5463!2�``����``��`��``�``�``�``�``�``�````�p`���K5��5KK5�5Kp``�``�``��``�``�``��``�``��``��``�````��`��������5KK5�5KK@���*V#"'.#"63232+"&5.5462#"/.#"#"'&547>32327676���R?d�^��7ac77,9x�m#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�h[ 17��q%q#:��:#5KKu�'t#!X:	%�#+=&>7p@���*2Fr56565'5&'.	#"32325#"'+"&5.5462#"/.#"#"'&547>32327676@��ͳ�����8
2.,#,f�k*1x���-!���#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�e�`��v�o�8�t-�	�:5	��[�*�#:��:#5KKu�'t#!X:	%�#+=&>7p
�3$	"/&47	&4?62#!"&=463!2I�.

2

��w

2

�
-�@�)�.

2

��

2

�.
�-@@-��S�$9%"'&4762		/.7>	"/&47	&4?62i2

�.

�

2

�w�
E��>

u>

��.

2

��w

2

�
�2

�

�

2

�w�w
!��




�h�.

2

��

2

�.
���;#"'&476#"'&7'.'#"'&476�'
�)'�s
"+5+�@ա'
�)'����F*4*E�r4�M:�}}8��GO
�*4*������~�
(-/'	#"'%#"&7&67%632���B�;><���V�?�?V�� -����-C�4
<B�=�cB5���!%��%!�b 7I�))�9I7���	#"'.5!".67632y��(
��#

��##@,(
�)���8!	!++"&=!"&5#"&=46;546;2!76232-S��S����������S�

		��S��S�`���`���		

������K$4&"24&"24&"27"&5467.546267>5.5462 8P88P88P88P�8P88P�4,�C��S,4p�p4,,4p�p4,6d7AL*',4p�pP88P8�P88P8HP88P8`4Y��&+(>EY4PppP4Y4Y4PppP4Y�%*<O4Y4Ppp���
%@\ht�	"'&4762"&5462&#!"&463!2#"'&'7?654'7&#"&'&54?632#!"&463!2"&5462"'&4762��		

	����@U�SxyS���R���#PT����('�#��TU�SxySN���@����		

		�		

		
3��@��xS�SUO#���'(���V^�'(���PVvxS�SU��i��@��		

		
`�<+"&=46;2+"&=467>54&#"#"/.7!2���<'G,')7��N;2]=A+#H

�
�0P��R��H6^;<T%-S�#:/*@Z}


>h���.%#!"&=46;#"&=463!232#!"&=463!2�&�&&@@&&�&@&�&�&&&��&&�&�&�&&��&f�&&�&&b�#!"&=463!2#!"&'&63!2&�&&&'�'%@% �&&�&&�&&&&�k%J%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Sin�1KXL7觧�*		��#��&		*������@jC?.>!&1'\%Awc8^;:+<!P��%I%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Pln�EcdJ觧�*		��#��&		*������-@jC?.>!&1'\%AwcBiC:D'P%!	#!"&'&6763!2�P������&:�&?�&:&?����5"K�,)""K,)���h#".#""#"&54>54&#"#"'./"'"5327654.54632326732>32�YO)I-D%n "h.=T#)#lQTv%.%P_�	%	
%�_P%.%vUPl#)#T=@�/#,-91P+R[�Ql#)#|'�'
59%D-I)OY[R+P19-,##,-91P+R[YO)I-D%95%�_P%.%v���'3!2#!"&463!5&=462 =462 &546 ����&&��&&��&4&r&4&�������@����&4&&4&�G݀&&������&&f��������
��sCK&=462	#"'32=462!2#!"&463!5&'"/&4762%4632e*&4&i����76`al�&4&���&&��&&}n�

R

�

R
�z����f�Oego�&&�5�����`3��&&����&4&&4&�
D�

R

�

R
z����v���"!676"'.5463!2@�@w^�Cc�t~55~t�cC&�&@���?J���V��|RIIR|��V&&��#G!!%4&+";26%4&+";26%#!"&546;546;2!546;232�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�� �� ��N�4LL44L`B^^B``B^^B`L����L4&"2%#"'%.5!#!"&54675#"#"'.7>7&5462!467%632&4&&4��@�o�&�&}c ;pG=(
8Ai8^�^.�&4&&4&`��	`f�s��&& j�o/;J!#2
 KAE*,B^^B!`	$� ��-4&"2#"/&7#"/&767%676$!2�8P88P��Qr��	@
U���	@�
{`P�TP88P8�����P`��
�	@U	@�rQ���!6'&+!!!!2Ѥ���
8�������̙�e�;<*��@8 !�G��G�GQII���� %764'	64/&"2 $$ �f��3f4�:�4����^����a�a�f4334f�:4�:�^����a�a����� %64'&"	2 $$ ���:4f3��f4F���^����a�a��4�f4���4f�^����a�a����� 764'&"27	2 $$ �f�:4�:f4334����^����a�a�f4��:4f3���^����a�a����� %64/&"	&"2 $$ -�f4���4f�4����^����a�a��4f��3f4�:w�^����a�a���@��7!!/#35%!'!%j��/d��
�jg2�|�8�����������55���dc ��b���@��!	!%!!7!���FG)��D�H:�&�H����d���S)��U4&"2#"/ $'#"'&5463!2#"&=46;5.546232+>7'&763!2�&4&&4f]w�q�4�qw]	`dC���&&�:F�ԖF:�&&���Cd`�4&&4&����	]����]	`d[}�&�&�"uFj��jFu"�&�&�y}[d�#2#!"&546;4 +"&54&" (88(�@(88( r&@&�Ԗ8(��(88(@(8@����&&j��j�����'3"&462&    .  > $$ �Ԗ������>a��X��,��f���ff�������^����a�a�Ԗ�Ԗ�a>����T�X��,�,�~�ff���ff�@�^����a�a����/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88(�(88(�(88(�(88(�(88��/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88�(88(�(88�(88(�(88���5E$4&"2%&'&;26%&.$'&;276#!"&5463!2KjKKj�
���
��
�
f���	

�\�
�
�w�@w��w�w��jKKjK"�G

�
ܚ

��f


�
���

	�@w��w�w�����  $64'&327/�a����^�����  ��!  ����^����a�a��J@%��%	6�5��/	64'&"2	"/64&"'&476227<���ij��6��j6��u%k%~8p�8}%%�%k%}8p�8~%<���<�ij4j��4����t%%~8�p8~%k%�%%}8�p8}%k���54&#!"3!26#!"&5463!2&��&&�&�w�@w��w�w�@�&&�&&:�@w��w�w����/#!"&=463!24&#!"3!26#!"&5463!2���@�^B��B^^B@B^��w��w��w@w��@@�2@B^^B��B^^���w��w@w���+#!"'&?63!#"'&762�(��@�	@�(@>@�%����%%��� ���!232"'&76;!"/&76 �
�($��>��(����
		��J ���&%�����$%64/&"'&"2#!"&5463!2�ff4�-�4ff4f�w�@w��w�w��f4f�-�f4����@w��w�w�����/#5#5'&76	764/&"%#!"&5463!2��48`���
#�� ����\�P\��w�@w��w�w���4`8�
��
#�@  ���`\P�\`�@w��w�w�����)4&#!"273276#!"&5463!2&� *���f4�
'�w�@w��w�w�`�&')���4f�*�@w��w�w�����%5	64'&"3276'7>332#!"&5463!2�`��'(wƒa8!
�,j.��(&�w�@w��w�w��`4`*�'?_`ze<��	bw4/�*��@w��w�w�����-.  6 $$ ���� �������(�r���^����a�a���O����(��������_�^����a�a�����
-"'&763!24&#!"3!26#!"&5463!2y��B��(�(�
�@

�
�w�@w��w�w�]#�@�##� �

�@
�@w��w�w�����
-#!"'&7624&#!"3!26#!"&5463!2y(��(@B@u
�@

�
�w�@w��w�w��###��@���

�@
�@w��w�w�����
-'&54764&#!"3!26#!"&5463!2@�@####���@��w�@w��w�w��B��(�(������@�@w��w�w����`%#"'#"&=46;&7#"&=46;632/.#"!2#!!2#!32>?6�#
!"'�?_

BCbCa�f\	+
~�2�	
��
	�}0�$

��
q
90r�
�

�pr%Dpu���?#!"&=46;#"&=46;54632'.#"!2#!!546;2��D
a__����	g	

*`-Uh1

��������

�߫�}
	$^L��
���
4��b+"&=.'&?676032654.'.5467546;2'.#"�ǟ�
B{PDg	q�%%Q{%P46'-N/B).ĝ
�9kC<Q
7>W*_x*%K./58`7E%_���
�	,-3�
cVO2")#,)9;J)���
�"!*�
#VD,'#/&>AX��>++"''&=46;267!"&=463!&+"&=463!2+32��Ԫ�$
�	��	
p���U�9ӑ
@�/�*f�����o�	

VRfq
�f=S��E!#"&5!"&=463!5!"&=46;&76;2>76;232#!!2#![�
��

 ��

��
�
�%
)��
	���

��"

��Jg
Uh
B�W&WX���
hU
g��
�84&#!!2#!!2#!+"&=#"&=46;5#"&=46;463!2�j��@jo�����
������g�|�@��~�v����v�
u�n#467!!3'##467!++"'#+"&'#"&=46;'#"&=46;&76;2!6;2!6;232+32Q�Kt#�� ��#F�N�Qo!��"�դ��ѧ����!�mY

�Zga~bm]�

[o�"�U+��������,����� @��h��
h@�@X
��h��h
��@�8���3H\#5"'#"&+73273&#&+5275363534."#22>4.#2>��ut
3NtR�P*�H�o2

Lo�@!�R(�Ozh=�,G<X2O:&D1A.1G$<2I+A;"B,;&$��L��GlF/�����3�D�����;a��$8$��".�!3!
��.�3!#!"&5463!���8( 8(��(88( ��h (8��(88(@(8�(8H!!#!"&5463!54&#!"3!2654&#!"3!2654&#!"3!26��(D 8(��(88( 8��@��@��@�$����(88(@(8��(8� @@@@@@"�}
$BR3/&5##"'&76;46;232!56?5"#+#5!76;5!53'#3!533��H��
��

�����D��q		�x7��	���K/�/K��F��h�/"���		@`����Z		s�Y��w�jj��jj��j"�}
$4R%3/&5##"'&76;46;232!53'#3!533!56?5"#+#5!76;5��H��
��

��������K/�/K��F����q		�x7��	�h�/"���		@`����jj��jj��j�Z		s�Y��
w"�)9IY%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
��

����� ��@������@���`��		@`�����������"�)9IY#!"&=463!2%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2��� 
��

�������@��������@ ��r��		@`��r������"��
$CV%4&#"326#"'&76;46;232%#"'&'73267##"&54632!5346=#'73BX;4>ID2F��
��

������8PuE>.'%&TeQ,j��m{��+�>R�{�?jJrL6V��		@`��7>wmR1q
uW�ei��/rr�
:V��r"��
$7V4&#"326#"'&76;46;232!5346=#'73#"'&'73267##"&54632BX;4>ID2F��
��

������+�>R�{�8PuE>.'%&TeQ,j��m{��?jJrL6����		@`���rr�
:V��r3>wmR1q
uW�ei����@�\%4&#"326#!"&5463!2+".'&'.5467>767>7>7632!2&%%&�&��&& &�7.'	:@�$LB�WM{#&$h1D!		.I/!	Nr�&&%%��&&�&&V?, L=8=9%pEL+%�%r@W!<%*',<2(<&L,"r�@\#"&546324&#!"3!26%#!#"'.'.'&'.'.546767>;&%%&�&��&& &i7qN��	!/I.		!D1h$&#{MW�BL$�@:	'.�&&%%���&&��&&�=XNr%(M&<(2<,'*%<!W@r%�%+LEp%9=8=L ���	+=\d����%54#"327354"%###5#5#"'&53327#"'#3632#"'&=4762#3274645"=424'.'&!  7>76#'#3%54'&#"32763##"'&5#327#!"&5463!2��BB��PJN�C'%!	B?)#!CC $)�54f�"��@@
B+����,A

A+�&�+A
�
ZK35N #J!1331�CCC $)��w�@w��w�w��2��"33�F�Y�F~��(-%"��o�4*)$�(*�	(&;�;&&9LA38�33�4��S,;;,W��T+<<+T;(��\g7�x�:&&:�:&&<r����%-�@w��w�w����	+=[c}���#"'632#542%35!33!3##"'&5#327%54'&#"5#353276%5##"=354'&#"32767654"2 '.'&547>76 3#&'&'3#"'&=47632%#5#"'&53327�''RZZ�:k��id YYY.06�	62+YY-06	R[!.�'CD''EH$��VV�X:���:Y
X;��:Y
�fyd/%jG�&DC&&CD&O[52.
[$�C-D..D�^^���* l�y1%=^�I86�i077S
3
$EWgO%33%O�O%35	��EE�F�W�t;PP;p��t;PP;p�q��J�gT��F�Q%33&P�P%33%R�
7>%3���!+}��{�'+"&72'&76;2+"'66;2U
�&�
��	�(���P

�*��'�e�J."�-d�Z��-n �-���'74'&+";27&+";276'56#!"&5463!2�~�}�		�7��e �	���۩w�@w��w�w��"���
$Q#�'�!#
����@w��w�w��
�I-22#!&$/.'.'.'=&7>?>36����9II ! '	$ !�����01$$%A'	$ ! ����g	
\7@�)(���7Y
	
 \7@�)(���7Y
@����	'5557	���,���VW�QV���.R���W��=���?��l��%l`��������~����0��!#!#%777	5!	������R!!�XC�C��fff�݀�#�� `��,��������{��{{�`��������Og4&"2 &6 $"&462$"&62>7>7>&46.'.'. '.'&7>76 �Ԗ�� ���HR6L66L�G�HyU2LL2UyH��HyU2LL2UyHn
��X�6X��

��X�X��
Ԗ�Ԗ�����H�6L66L6�L2UyH��HyU2LL2UyH��HyU2L�n�6X��

��X�X��

�����2#!"&54634&"2$4&"2�w��w�@w��w�|�||��|�||���w�@w��w�w����||�||�||�|���	!3	37! $$ �n6^�5�5^h
����^����a�a������M�1�^����a�a���P��
*Cg'.676.7>.'$7>&'.'&'? 7%&'.'.'>767$/u5'&$I7o�b?K�\[z�H,1���+.@\7<��?5\V
,$V��g.GR@ �7��U,+!�����
	#	"8$}�{)�<�?L RR;kr,yE[��z#	/1
"#	#�eCI0/"5#`�	��"8���4~&p)4	2�{�H-.%W.L>���':Yi4&67&'&676'.'>7646&' '7>6'&'&7>7#!"&5463!2PR$++'TJX�j7-F��C',��,&C
."��!$28��h�/���"�	+p��^&+3$
i��0(�w�@w��w�w��+.i6=Bn\C1XR:#"�'jj�8Q.cAj�57!?"0D��$4"P[
&2�@w��w�w��D��"%.5#5>7>;!!76�P�Yh�pN!�HrD0�M��
 C0N��#>8\xx: �W]oW-�X���45���/%'#.5!5!#"37>#!"&5463!2p>,;$4
��5eD�+W�cE���w�@w��w�w�K�()��F
,VhV��^9tjA0/�@w��w�w���@�#"'&76;46;23�
��


��
	���&��

��� ���++"&5#"&7632�	���
^


c
� �&�

��@�#!'&5476!2� &��

����
^


b	���'&=!"&=463!546�
��� �&�
�
��	���
��
��q&8#"'&#"#"5476323276326767q'T��1[VA=QQ3���qq�Hih"-bfGw^44O#A���?66%CKJ�A}}�  !"�䒐""A$@C3^q|�z=KK?6�lk)���%!%!��V��V��u��u�u^-�m5�w��}�n�����~7M[264&"264&"2"&546+"&=##"&5'#"&5!467'&766276#"&54632�  �  ��*<;V<<O@-K<V<�<+*<J.@�k��c�lG
H_�_H
�<+*<<*+<    �<*�R+<<+�*<�f.@�+<<+��+<<+�@.��7�uu�7�
�**�
���R+<<+�+;;	��"%3I�#5472&6&67><&4'>&4.'.'.'.'.'&6&'.'.6767645.'#.'6&'&7676"&'&627>76'&7>'&'&'&'&766'.7>7676>76&6763>6&'&232.'.6'4."7674.'&#>7626'.'&#"'.'.'&676.67>7>5'&7>.'&'&'&7>7>767&'&67636'.'&67>7>.'.67�	\
��
	U7	
J#!W!'	

"';%

k	)"	
	'


/7* 		I	,6
*&"!

O6*
O $.(�	*.'

.x�,	$CN��	
�		*	�
6
		
7%&&_f&
",VL,G$3�@@$+
"


V5 3"	
""�#dA++
y0D-%&n4P'A5j$9E#"c7Y
6"	&
8Z(;=I50' !!e
�R
��
"+0n?�t(-z.'<>R$A"24B@(	~	9B9,	*$		
		<>	?0D�9f?Ae �	.(;1.D	4H&.Ct iY% *	�
7��


��
J	 <
W0%$	
""I!
*D	 ,4A'�4J"	.0f6D�4p�Z{+*�D_wqi;�W1G("%%T7F}AG!1#% JG3��� '.2>Vb%&#'32&'!>?>'&' &>"6&#">&'>26 $$ *b6�~�#��= ���XP2��{&%gx|�� .���W)o���O��LO�sEzG<��	CK}E	$MFD<5+
z���^����a�a$�MW�M��1>]|�YY�^D
�եA��<��K�m����E6<�"�@9I5*�^����a�a�����>^4./.543232654.#"#".#"32>#"'#"$&547&54632632�':XM1h*�+D($,/9p�`D�oC&JV<�Z PA3Q1*223�I�oBkែhMI����oPែhMI��oP�2S6,M!"@-7Y.?oI=[<%$('3 -- <-\�%Fu���Po��IMh���Po����IMh,���#?D76&#!"7>;267676&#!"&=463!267
#!"'&5463!26�%�8#!�
��&&Z"�M>2!��
	�^I7LRx_@�>MN�""��`�=&&*%�I�}��,
	�	L�7_jj��9����/%4&#!"3!264&#!"3!26#!"&5463!2�� ��� ��&��&&�&��������&&�&&��19#"'#++"&5#"&5475##"&54763!2"&4628(3�-�	&�B.�.B�&	�-�3(8Ig�gI�`������(8+U��e&��.BB.&����+8(�kk��`�������%-"&5#"&5#"&5#"&5463!2"&4628P8@B\B@B\B@8P8pP�Pp�����@�`(88(`�p.BB.�0.BB.���(88(�Pppͺ�������!%>&'&#"'.$ $$ ^/(V=$<;$=V).X���^����a�a��J`"(("`J��^����a�a��,���I4."2>%'%"/'&5%&'&?'&767%476762%6�[���՛[[���՛o��
�ܴ
 
���
��	��	$
$�	"	�$
$	��	�՛[[���՛[[�5`��

^�

�^

2`��
`2

^��^

��`
�����1%#"$54732$%#"$&546$763276�68��ʴh�f�킐&^�����zs��,!V[���vn)�	�6���<��ׂ�f{���z����}))N�s���3(@����+4&#!"3!2#!"&5463!2#!"&5463!2@&�&&f&��&&�&@&�&&&�4&&4&�@&&�&&��&&&& ��`�BH+"/##"./#"'.?&5#"&46;'&462!76232!46 `&�C�6�@Bb0�3eI;��:�&&�&4�L�4&���F���
�Z4&�w�4�) ���''
�5�r�&4&&�4&��&4��������}G�#&/.#./.'&4?63%27>'./&'&7676>767>?>%6}�)(."�2*&�@P9A
#sG�q]
#lh�<*46+(
	
<
5�R5"*>%</
 '2�@� 53*9*,�Z&VE/#E+)AC
(���	2k<X1$:hI(B
"	!:4Y&>"/	+[>hy
	���K
!/Ui%6&'&676&'&6'.7>%.$76$% $.5476$6?62'.76&&'&676%.76&'..676�#"NDQt	
�-�okQ//�jo_	������	���%&J�������Ղ���YJA-��.--
9\DtT+X?*<UW3'	26$>>�W0{�"F!"E �

^f`$"�_]\�<`�F�`�F�D��h>Cw�ls���J@�;=?s
:i_^{8+?`
)
O`�s2R�DE58/K��r	#"'>7&4$&5m��ī��"#���̵�$5���$�"^^W����=���ac��E�*���c������zk./"&4636$7.'>67.'>65.67>&/>z X^hc^O<q����+f$H^XbVS!rȇr?5GD_RV@-FbV=3!G84&3Im<$/6X_�D'=NUTL;2KPwt��Pt= 

�&ռ
,J~S/#NL,��8JsF);??1zIEJpq�DIPZXSF6\?5:NR=��;.&1��+!"&=!!%!5463!2�sQ9����Qs�*�*�*sQNQsBUw��
wUBF��H���CCTww���%1#"&=!"&=463!54632.  6 $$ �	��	
��

`?��������(�r���^����a�a�	��	
�
�
�
���(��������_�^����a�a�����%1#!#"'&47632!2.  6 $$ �
����		@	
`
��������(�r���^����a�a�
�
?		@	
���(��������_�^����a�a�����/#"'&476324&#!"3!26#!"&5463!2&�@�&
�@

�
�w�@w��w�w����&@B@&���

�@
�@w��w�w�����"&462  >& $$ �Ԗ��*�����(���r���^����a�a�Ԗ�Ԗ �������(���^����a�a���]�6#"$54732>%#"'!"&'&7>32'!!!2�f:�л����Ѫz��~�u:�
(�(%`V6B^hD%��i�(�]̳ޛ	��*>�6߅�����r�#�!3?^BEa�߀�#�9���#36'&632#"'&'&63232#!"&5463!2
��Q,&U�#+'
 �;il4L92<D`����w�@w��w�w�����`9ܩ6ɽ]`C4�7�7�&�@w��w�w����D+"&5#"'&=4?5#"'&=4?546;2%6%66546;2�������
	
��
	
��w�ww�w�������cB
�G]B
�G��t�y]t�y�
���#3C#!+"&5!"&=463!46;2!24&#!"3!26#!"&5463!2���@��`@`�^B��B^^B@B^��w��w��w@w��@��`@`���2@B^^B��B^^���w��w@w�����'/?P+5#"&547.467&546;532!764'!"+32#323!&ln��@
:MM:
@��nY*�Yz--zY�*55QDD�U���9p��Y-`]��]`.X /2I$�	t�@@/!!/@@3,$,3�$p$0�0��&*0��&���&��
!P@���RV2#"&/#"&/#"&546?#"&546?'&54632%'&54632763276%�>S]�8T;/M7��7T</L7�=Q7,�i�<R7,�5T</L666U;/M5�<U<,�i���6i���Q=a!;�;V6-�j�;V6-�5	P=/L596Q</L5�<U6-�i�;V7,�7O;-I6��8��i;k���)I2#!"&5463#9"'.'.'3!264&#!"2>7%>�w��w�@w��w�!"�5bBBb/�/*
8(@(87)��(8=%/�'#?��w�@w��w�w����#~$EE y &�L(88e):8(%O r		

		�O�?GQaq47&67>&&'&67>&"&#6$32#"#"'654  $&6 $6&$ Co��L��.*�KPx���.*� 
iSƓi
7J?��~�pi{_Я�;��lL�������UZ=刈�����刈�����_t'<Z
�:!
	���@!
��j`Q7$k�y, R����f��k*4�������LlL��=Z=刈��������&$&546$7%7&'5>�����]���5��%��w�����������&��P�?�zrSF�!|��&0	##!"&5#5!3!3!3!32!546;2!5463���)�
)����;)��);;)��)���&&������&@@&�&��&��	�
6 $&727"'%+"'&7&54767%&4762������֬>4P���t+8?::
	�	
::AW��``���EvEEvE<�.���"�e$IE&�O�&EI&�{h.`��m���"&#"&'327>73271[
>+)@
(���]:2,C?��*%�Zx/658:@#N
�C�=�E�(�o��E=��W'c:������#!#"$&6$3 &#"32>7!����ڝ���yy��,��{��ۀ�ہW�^F!�L�C=���y�:�y��w���߂0H\R%�"N^ '&76232762$"&5462"&46274&"&'264&#"'&&#"32$54'>$ $&6$ G>��>0yx1��4J55J�5J44J5�Fd$��?�4J55%6�E��#42F%��$f�������LlL�q>>11�J44%&4Z%44J54R1F$Z-%45J521��Z%F1#:��ʎ 9�������LlL�����#Qa"'&7622762%"&5462"&546274&#"&'73264&#"'&&#"32654'>#!"&5463!2�

5�5

*�*��.>.-@-R.>.-@-�<+*q�6�- -- 0�<�o,+< ��3�w�@w��w�w��

55

**�.. -- .. --G*<N�' ,-@-+*��M <*2
z��z
1�@w��w�w�����0<754&""&=#326546325##"&='26 $$ bZt�t&�sRQs��Z<t�sQ���^����a�a�>OpoO��xzRrqP6�z~{{Prr��^����a�a�����]054&"#"&5!2654632!#"&57265&<T<����H<T<������H������<T<8v*<<*������
��+;;+l���:�������=:��*;;*���
%!!"!!26#!"&5463!2��@� ]���]�@�w�@w��w�w�����]� �@��@w��w�w���	
%)3!!#335!!5!5!%#!!5!5!%#H��H{����R��H��H{���G��G{�)���q���G����R�R�q���R�R�q�����	#0@#"'632#"'632&#"7532&#"#7532#!"&5463!2L5+*5��L5+*5~�}7W|�3B}��}JC��7=}�w�@w��w�w�D�ZQ�[�1�N:_��)�i�$��)���@w��w�w��
)�	�����������6.#&#"'&547>'&#".'&'#"&5467%&4>7>3263232654.547'654'63277.'.*#">7?67>?>32#"'7'>3'>3235?�K�cgA+![<E0y�$,<'.cI
	,#� '!;7$�=ep���	��/�/7/
D+R>,7*
2(-#=
	/~[(D?G  �|,)"#+)O��8,+�'�6	y{=@��0mI�#938OA�E`
-�
)y_/FwaH8j7=7?%����a	%%!?)L
J
9=5]~�pj

 %(��1$",I 
$@((�
+!.S		-L__$'-9L	5V��+	
	6�T+6.8-$�0��+
t�|S1��6]�&#"'&#"67>76'&'&#"67>32764.#"#.32>67>7 $&54>7>7>7�rJ�@"kb2)W+,5/1		#

Z
-!��$IOXp7s�LCF9�vz NAG#/ 5|����Հ';RKR/J#=$,�9,�+$UCS7'2"1
 !�/
,

/--ST(::(�ep4AM@=I>".)x��ls��Y�|qK@
%(YQ�&N
EHv~����<Zx'#"&5467&6?2?'&"/.7.546326#"&'&/7264/7'764&"'?>>32.��A�UpIUxYE.A�%%%h%����%hJ%�����D,FZxULsT�gxUJrV�D�%hJ%�����@/LefL.C�%Jh%�����C�VsNUxϠ�@.FZyUHpV�A�%h&%%���%Ji%�����C�WpIUybJ/��Uy^G,D�%Jh%�����@�UsMtU�C�%hJ%�����C-Kfy�EX[_gj��&/&'.''67>7>7&'&'&'>76763>7>#&'&'767672'%'7'+"&'&546323267>7%#"'4'6767672,32�,+DCCQL�Df'
%:/d
B	4@}
�&!0$�?�����J�f�d�f-�.=���6(��:!TO�?
!I�G_�U%
����.
k*.=;�	5gN_X��	"
##
292Q41�
��*����6���nA;�|�
�BSN.	%1$����
6	$��nk�^�'7GWgw�����2+"&5463#!"&5463!254&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26#"&=! B^^B�B^^B�:F�j��B^8(�(`�(� ������������������`�(8���^B��B^^B@B^�"vE�j�^B(8(�`(�����������������������8(����/?O_o��������/?2#!"&5463;26=4&+";26=4&+";26=4&+";26=4&+"54&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26@&&�&&�@@@@@@@@�@@@@@@@@@@��@@@@@@@@@@@@@@@@@@@&��&&�&��@@��@@��@@��@@��@@@@@@@@@@���@@@@@@@@�@@@@@@@@@@@��`'	"&5#"&5&4762!762$"&462���B\B@B\B��O�p�P����������.BB.���.BB.8$P��O広�������3CQ#".54>32#".546322#"&#"#"54>%".54>32%2#"&54>&X=L|<&X=M{<��TML�FTML�F�v�"?B+D�?B�J�p��H=X&<{M=X&<|dMTF�LMTF�(<kNs�I<kNs���Pvo�JPwo�/��s.=ZY�VӮv�Nk<J�sNk<I�shwPJ�ovPJ�o@��+"&7.54>2�r_-$�$-_rU���U��%��&&5%ő������'-
"'.546762����@��F�F�$�@B�@$.&�,�&.]]|�q����#<���<#(B�B��B%'-%'-'%'-"'%&'"'%.5467%467%62����@��l�l����@��l�l,���@��G�G�&!�@@�@�@@�@!&+#�+#�6�#+�$*`�:�p������:�p���x�
�p����=�`$>����>$�&@��&@�

�@&�p�@��	&.A!!"!&2673!"5432!%!254#!5!2654#!%!2#!8���Zp��?v�d���Ί�e�ns�6(���N[�����RW�u?�rt1Sr�F���|��iZ��@7�����މoy2���IM��C~[�R �yK{T:���%,AGK2#!"&5463!!2654'654.#532#532"&5!654&#"327#2#>!!�w��w�@w��w��~u��k'JTM��wa��|
DH��������>�I1q�Fj?����w�@w��w�w�����sq�*4p9O*�¸Z^���qh LE
�������"(nz8B
M���'?"&4624&#"'.'324&#"3267##"&/632632.�ʏ����hhMA�LR vGhг~��~������K„y���O^
��ʏ�ʏ��В*�LM@!<I�~��~����������t\��0�������CM4&"2#"&'676&/632#!"&=3267%2654&#"&#"%463!2"&4632�r�qq��tR8^4.<x3=RR��w�@w���_h�
Y��Ӗ���	K>�שw�w���ȍ�de�)�qrOPq�Ȧs:03=<x!m�@w��w�E\x�g�ӕ��є��%w�w����d��Ȏ��V��
-<K\%.'.>7'.?67'67%'>&%'7%7./6D�\$>	"N,��?a0�#O���1G�����9�'/���P(1#00��
($=!F"�9|��]�"RE<�6'o��9%8J$\:��\H�iTe<?}V��#�oj��?���d,6���%N#"
Hl��S��VY�]C

=�@�C4&"2!.#!"4&"2+"&=!"&=#"&546;>3!232�^�^^���Y	�	^�^^��`p�p�p�p`�]i�bb�i]�~�^^�^�e��^^�^���PppP��PppP��]��^^�]��3;EM2+"&=!"&=#"&546;>;5463!232264&"!.#!"264&" ]�`p�p�p�p`�]i�b���b�i���^^�^d�Y	�	!�^^�^��]��@PppP@@PppP@�]��^��^�]� ^�^^��e��^�^^� ��3$#!#!"&5467!"&47#"&47#"&4762++�&�2
$��$
�2&��&��&�4�&��&��Z4&�&##&�&4�&4�&4���4&�m4&�m���+DP4'&#"32763232674'&!"32763 3264'&$#"32763232> $$ g����* �o�`#�ə�0#z��#l(~���̠)���-g+����^����a�aF s"	+g�(�*
3#!|
#/IK/%*%D=)[�^����a�a����	!!!'!!77!���,���/���,�-���a��/G��	t%/;<HTbcq������%7.#"32%74'&"32765"/7627#"5'7432#"/7632#"5'7432#"&5'74632	#"/6327#"/6327#"/46329"&/462"&/>21"&/567632#!.547632632
	
	*


			��X		�

^

`		���

^b
	��c�
	f�u��
U`�59u���

���

4�J���
	
l�~		~�	F��	
��	�2�����

�
�	��	�m����|O�,��� ����	

���
��������

ru|	��u�
�
"�����
)9 $7 $&= $7 $&= $7 $&=  $&=46��w���`���w���w���`���w���w���`���w��b����`����VT�EvEEvE�T��VT�EvEEvE�T*VT�EvEEvE�T*EvE�EvEEvE�Ev�#^ct�#!"&5463!2!&'&!"&5!632#"&'#"/&'&7>766767.76;267674767&5&5&'67.'&'&#3274�(8(��(88(�(`�x
��c�`(8��!3;:�A0�?ݫ�Y

	^U	47D$

	7�4U3I�
|��L38wtL0�`(��(88(@(8(D��9�8(��Q1&(!;��
(g-	Up�~R�2(/{E���(Xz*Z%(�i6CmVo8�#T#!"&5463!2!&'&!"&5!3367653335!3#4.5.'##'&'35�(8(��(88(�(`�x
��c�`(8�iF������F��Zc�r�cZ�`(��(88(@(8(D��9�8(���k�k�"	��kk�J	 	!��	�k�#S#!"&5463!2!&'&!"&5!%!5#7>;#!5#35!3#&'&/35!3�(8(��(88(�(`�x
��c�`(8�-Kg
kL#D��C��JgjL��D���`(��(88(@(8(D��9�8(���jj�	�jjkk��kk����#8C#!"&5463!2!&'&!"&5!%!5#5327>54&'&#!3#32�(8(��(88(�(`�x
��c�`(8� G]�L*COJ?0R��\wx48>�`(��(88(@(8(D��9�8(���jj��RQxk��!RY�#*2#!"&5463!2!&'&!"&5!!57"&462�(8(��(88(�(`�x
��c�`(8�������P�pp�p�`(��(88(@(8(D��9�8(����������p�pp�	�#*7JR5#5#5#5##!"&5463!2!&'&!"&5##5!"&54765332264&"�����<(8(��(88(�(`�x
��c�`(8����k�ޑc�O"�jKKjK�������������`(��(88(@(8(D��9�8(������SmmS?M���&4&&4�#9L^#!"&5463!2!&'&!"&5!#"/#"&=46;76276'.'2764'.�(8(��(88(�(`�x
��c�`(8���������6dd�WW6&44�`(��(88(@(8(D��9�8(��.��	����G���5{��{5�]�]$59�95�#3C#!"&5463!2!&'&!"&5!2#!"&5463#"'5632�(8(��(88(�(`�x
��c�`(8��4LL4��4LL4l	��		�`(��(88(@(8(D��9�8(���L4��4LL4�4L��	
Z
	�#7K[#!"&5463!2!&'&!"&5!>&'&7!/.?'&6?6.7>'�(8(��(88(�(`�x
��c�`(8�`3��3��3��3�v
�
?
�
�`(��(88(@(8(D��9�8(���&��&-��&��&�
?


��
'���6#'.
'!67&54632".'654&#"32�eaAɢ/PRAids`WXyzO�v��д��:C;A:25@Ң>�����-05r��n������`��H(�����' gQWZc[���
-%7'	%'-'%	%"'&54762�[������3[��M���N�����
��3"��,��""3,3"o�ng�$������߆���]�g�n��$����+��)��

")")"

��x#W#"&#!+.5467&546326$32327.'#"&5463232654&#"632#".#"o���G��n\�u_MK'����̨|�g?CM7MM5,QAAIQqAy��{�b]BL4PJ9+OABIRo?z��.�z��
�n�6'+s�:�������z�cIAC65D*DRRD*�wy�al@B39E*DRRD*��'/7  $&6$ 6277&47' 7'"' 6& 6'�lL������������R�R����ZB|��R�R��>����d�ZZ��������LlL�Z����R�R«����Z��&�>���«|��R� � ��! $&54$7 >54'5��������P���f���f����P�����牉�@��s��-����ff���`-����c6721>?>././76&/7>?>?>./&31#"$&��(@8!IH2hM>'

)-*
h'N'��!'Og,R"/!YQG<I *1)

(-O1D+0�n�������z�3fw���G2'3�rd1!sF0o ��.q"!%GsH8��@-!5|w|pgS=
"B2PJfh�G���d�R	�(P]ly��&$'77&7567'676'"'7&'&'7&47'6767'627''6$'67'654'7&'7'&'&'7&'5&$  $6 $&6$ j��j:,A��A��S9bb9R#:j���8AܔA,z��C�9Z04\40Z9�C��!B�;X0,l,0X;�B�*A8ܔA&#9j`b9S$#R99#&A��8A�`
������䇇�<Z<䳎������LlL�fBϬ"129�,V<4!���!88dpm��"��BV,�92[P*V*P\M�C�

�C�M\P*V*P]L�D�

�D�L&BV*�8*8!����f�!4<gmpd88!&!8*8�*VB�Z<䇇�����䇇��������LlL�����9Eis�%#"5432#"543275#&#"3254&'.547>54'63&547#5#"=3235#47##6323#324&"26%#!"&5463!2F]kbf$JMM$&�N92<Vv;,&)q(DL+�`N11MZ
%G���&54	#	i�<$8&@��0H12F1d�w�@w��w�w��B?@�UTZ3%}rV2hD5%f-C#�C@,nO	�a7�.0�x2	yR�uR/u�%6;&�$76%$56S�@w��w�w��D��<Hlw%4#"324&#"32!".5475&5475.546322#654'3%#".535"&#"5354'33"&+32#"&54632S����;<;||w
$+�|('-GVVG-��EznA�C?H_��`Rb���]Gg>Z2&`��9UW=��N9:PO;:dhe\=R����
+)�&')-S9��9kJ�<)Um�Q��/��-Ya^"![��Y��'(<`X;_�L6#)|����tWW:;X���	#'#3#!"&5463!2)
p�*�xeשw�@w��w�w���0,\8�����@w��w�w��9��I#"'#"&'&>767&5462#"'.7>32>4."&'&54>32JrO<3>5�-&FD(=Gq���@C$39a��LL��²�L4

&)
@]��v�
�q#CO���!~󿵂<ZK#*Pq.���%
L��²�LL��arh({�w؜\���i&5467&6747632#".'&##".'&'.'#".5467>72765'./"#"&'&5
�}����1R<2"7MW'$	;IS7@�5sQ@@)�R#DvTA;
0x
I)�!:>�+<B76:NFcP:SC4r�l+r �E%.*a-(6%('�>)C	6.�>�
!-I[4&#"324&#"3264&#"324&#"326&#"#".'7$4$32'#"$&6$32D2)+BB+)3(--(3�1)+BB+)�4'--'4��'���#!0>R	�H���MŰ9�o�u7ǖD��䣣���
R23('3�_,--,�R23('3�_,--,�����NJ
������?u�W�m%������#"'%#"'.5	%&'&7632�!�
�;�
	`��u%"��(����!]#�c�)(�	��� #"'%#"'.5%&'&76	�!�
���	�(%#�#���fP_�"�(���!�)'��+�ʼn�����4I#"$'&6?6332>4.#"#!"&54766$32#!"&=46;46;2z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������@����z��
�	
_hQ��н�QGB�'(&�*�eozΘ�@@`���  >. $$ ����ff���ff�����^����a�af���ff�����^����a�a��>�����"&#"#"&54>7654'&#!"#"&#"#"&54>765'46.'."&54632326323!27654'.5463232632�,�-,�,",:!
%�]&
%@2(/�.+�*)6!	<.$.�.*�*"+8#
�
#Q3,�,+�+#-:#"</$�)

w�

���
,*

x9-.2"'
,,
���@�&,,
��Qw
,����,#"+"&5#+"&5&'&'&547676)2�%2$l$�#l#�b~B@XXyo2�$CI@5��$$�>$$�/:yu��xv)%$	��/?CG%!5%2#!"&5463!5#5!52#!"&54632#!"&5463#5!5`���&&�&&������ �&&�&&�&&�&&@������&�&&&���������&�&&&�&�&&&��������%2 &547%#"&632%&546 #"'6���������\~����~\h�
���~\��h\�������V�
�V�������V��V���%5$4&#"'64'73264&"&#"3272#!"&5463!2}XT=��=TX}}�~�>SX}}XS>�~�}�w�@w��w�w���~:xx:~�}}Xx9}�}9xX}�@w��w�w���/>LXds.327>76 $&6$32762#"/&4762"/&47626+"&46;2'"&=462#"'&4?62E0l�,

*"�T�.�D@Yo������oo����@5D�

[		

Z
�Z

		[	 ``��[



Z

	�2
,�l0
(T�"�.�D5@������oo��oY@D,

Z

		[	�		[		

Z
��``EZ

		[		
�5%!  $&66='&'%77'727'%am��lL�������m�f�?���5���5>�f�F�tu�ut�F������������LlL�H�Y�C�L|��|L����Y�˄(��E''E*(�/?IYiy����%+"&=46;2+"&=46;2+"&=46;2+"&=46;2%"&=!#+"&=46;2+"&=46;2+"&=46;2+"&=46;2!54!54>$ +"&=46;2#!"&=������@�������&&������@��������������3P��
>��P3��&��&��r���r��r���&��&���r���r��r���
he

4LKM:%%:MKL4�W��T�&&��%/9##!"&563!!#!"&5"&5!2!5463!2!5463!2�&&�&��&�&&���� ��� ��&��&&i�@����&&@&7�����'#5&?6262�%%�o����;����j|/����&jJ%�p��&j;&i&�p���/|���j�ţ���%Jk%�o��%��	:g"&5462#"&546324&#!"263662>7'&75.''&'&&'&6463!276i���~ZYYZ~�@O��S;+[G[3YUD#o?D&G3I=J�y�TkBuhNV!WOhuAiS�y*'^C�C^'*SwwSTvvTSwwSTvv���WID\�_"[�g��q# /3qF��r2/ $r�g�%4
�HffH�J4d���#!#7!!7!#5!������VF��N����rmN�N��N����������N���!Y���+?Ne%&'&'&7>727>'#&'&'&>2'&'&676'&76$7&'&767>76'6�#
<�;1�1x��#*#
�G,T9�3%�/#0v�N�Z;:8��)M:(	&���C.J}2	%0����
 	^*
J�F	
&�7'X"2L�DM"	+��6�
M2+'BQfXV#+]
#���'
L/(e�B�9
�#,8!!!5!!5!5!5!5#26%!!26#!"&5!5���������������&4&���&�pP��Pp������������������@��@&&@��!&�@PppP@�*
��	9Q$"&54627"."#"&547>2"'.#"#"&5476$ "'&$ #"&5476$ (�}R}hL�K�
N���N
����U�d:�
�x�x�
�����8���
��
�
� ,, |2222�
MXXM

�ic,>>,�
����
�	����	�
��̺

�
��'/7?KSck{4&"2$4&"24&"24&"24&"24&"24&"24&"24&"264&"24&#!"3!264&"2#!"&5463!2�KjKKj�KjKKj��KjKKjKKjKKj��KjKKj��KjKKjKKjKKj��KjKKjKLhLLhL��KjKKj�&�&&&KjKKj�L4��4LL4�4L5jKKjKKjKKjK�jKKjK��jKKjK�jKKjK�jKKjK��jKKjK�jKKjK���4LL4��4LL�jKKjK�&&�&&��jKKjK�4LL44LL	��'E!#"+"&7>76;7676767>'#'"#!"&7>3!2�W�",&7'�	#$	&��g�pf5O�.P�q�ZZdS���-V"0kqzTx�D!��!8�p�8%'i_�F?;�k��R(`��
!�&)�'�
(2!&6367!	&63!2�!
`�B��1LO�(���+#�=)�heC��Qg#s`���f�4#����6�������q�'���X�|0-�g��	�>IY#6?>7&#!%'.'33#&#"#"/3674'.54636%#"3733#!"&5463!2��4��:@��7�vH��%�h��EP{��0&<'VFJo���1,1.F6��A��#���L4�4LL44L"%�	
 
7x'6
O\�JYFw���~�v^fH$ !�"xdjD"!�6��`J�4LL44LL��	�+3@GXcgqz�����-<JX{�&#"327&76'32>54.#"35#3;5#'#3537+5;3'23764/"+353$4632#"$2#462#"6462""'"&5&5474761256321##%354&'"&#"5#35432354323=#&#"32?4/&54327&#"#"'326'#"=35#5##3327"327'#"'354&3"5#354327&327''"&46327&#"3=#&#"32?"5#354327&3=#&"32?"#3274?67654'&'4/"&#!"&5463!2_��g��QQ��h���^_�~\[[\]�_^���h��QQ��g�e��<F�$�$$��� !!�&&�/!/

!!�

00/e&'!"e$�
		'!!�''�
	8''NgL4�4LL44L�UQ��gh��QUk=<Sc���cc,-{k���jUQ��hg��Q��



�9

,&W &$U�K$$KK$$KDC(>("
!
=))=2�( '! '�L#(>(
&�DC(>(z�L#�DzG)<)�4LL44LL��	�
BWbjq}��+532%+5324&+32763#4&'.546327&#"#"'3265#"&546325&#"32!264&"2%#'#735#535#535#3'654&+353#!"&5463!29$<=$�@?�SdO__J-<AA@)7")9,<$.%0*,G3@%)1??.+&((JgfJ*�A�������!&��j�jj��GZYG�иwssw��PiL>8aA	!M7�7MM7�7M�3!�
4erJ]��&3YM�(,
,%7(#)
,(@=)M%A20C&Me�e��(X���0&Ėjj�jV��	8Z8J9���N/4���$�8NN8�8NN��	�#&:O[���	$?b3'7'#3#%54+32%4+324+323'%#5#'#'##337"&##'!!732%#3#3##!"&53733537!572!56373353#'#'#"5#&#!'#'#463!2#"5#"5!&+&+'!!7353273532!2732%#54&+#32#46.+#2#3#3##+53254&".546;#"67+53254&.546;#"#'#'##"54;"&;7335wY-AJF���=c�(TS)!*RQ+��*RQ+�Y,�B^9^��Ft`njUM�')	~PS�PR�m���٘���M7�7Mo7�q

@)U	8�"����E(�1��++��NM7�7Mx3�7��8�D�62��W74�;�9�<�-A"EA�0:��AF@�1:�ؗ����B�f~~""12"4(�w$#11#�@}}!%+%5(�v$:O�\z��K��?*$\amcrVl��OO176Nn�<!E(=�<&l/������<<������
[ZZYY�89176���7OO7�==..//cV==::z,,,,aa,,��7OO7�Z::��;;Y
fcW�(		"6-!c�(		!5	#
b�t88176����tV:
&$'*9	%e#:
%'*9B����<<��;
&(�����	�#:Sn�����#"&54632%#76;2#"&54632%4&+";2?>23266&+"&#"3267;24&+"'&+";27%4&+";2?>23266&+"&#"3267;254+";27#76;2#!"&5463!2�3%#2%%,, _3$$2%%��M>�ALVb5)LDHeE:<
E�Mj,K'-R
M�~M>�ARVb5)LEHeE:<
E�
JAB�I*'!($rL4�4LL44Lv%1 %3!x*k�$2 %3!�;5�h
n
a�
!(lI;F	
	
��	r�p
p8;5�h

t
a�
!(lI;F��`	#k�4LL44LL
��	�
2HW[lt��#"'5632#6324&'.54327&#"#"&'32767#533275#"=5&#"'#36323#4'&#"'#7532764&"24'&#"327'#"'&'36#!"&5463!2=!9�n23��BD$ &:BCRM.0AC'0RH`Q03'`�.>,&I / *�
 /

��8/��n-(G@5��$ S3=�,.B..B�02^`o?7je;9G+��L4�4LL44LyE%#	�Vb�;A
!p &'F:Aq)%)#o�rg�T$v2�� 8�)2����z948/�{�8A�B..B/��q?@�r�<7(g/��4LL44LL��?#!"&'24#"&54"&/&6?&5>547&54626=�L4�@�ԕ;U g3
��
T
�2RX='�8P8|�5�
����4Lj��j� U;Ig@
	��
`
� "*\���(88(�]k
��&N4#"&54"3	.#"#!"&'7!&7&/&6?&5>547&54626;U gI��m*��]�Z0�L4�@�ԕ���=o=CT
��
T
�2RX='�8P8|�5�
� U;Ig��Xu?bl3���@4Lj��j��a���`
	��
`
� "*\���(88(�]k����/7[%4&+";26%4&+";26%4&+";26!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���0
��
o`^B��B^`5FN(@(NF5���@��@��@�u		�@�LSyuS�@�%44%����,<H#"5432+"=4&#"326=46;2  >. $$ ~Isy9���"SgR8v�H����D�	w
����ff���ff�����^����a�a�m2N+��	)H-mF+1����0*F		+f���ff�����^����a�a�����b4&#"32>"#"'&'#"&54632?>;23>5!"3276#"$&6$3 �k^?zb=ka`�U4J{�K_/4�^����W�&	vx :XB0���܂�ff���)
f������zz��X��lz=l�apz��o�b35!2BX���
�G@8��'	'=vN$\f���f�	1
	SZz�8�z�X�#("/+'547'&4?6276	'D�^�h

�

i��%5�@�%[i

�

h�]��@������]�h

�

i��%�@�5%[i

�

h�^�@@������)2#"&5476#".5327>OFi-���ay~�\~;��'�S���{�s:D8>)AJfh]F?X��{[��TC6��LlG��]��v2'"%B];$�-o��%!2>7>3232>7>322>7>32".'.#"#"&'.#"#"&'.#"#546;!!!!!32#"&54>52#"&54>52#"&54>52�-P&+#($P.-P$'#+&PZP&+#"+&P-($P-.P$(#+$P.-P$'#+&P-.P$+#pP@@Pp�H85K"&ZH85K"&ZH85K"&Z����@��Pp��@��@��@pMSK5, :&�LMSK5, :&�LMSK5, :&����!!3	!	�����@�����@@�����	#"$$3!!2"j������aѻxl���a����lx�a�a����j������!!3/"/'62'&63!2��'y��

�`�I

��y�����My��

�`�I

��y'W`#".'.#"32767!"&54>3232654.'&546#&'5&#"

4$%Eӕ;iNL291 ;XxR`�f՝�Q8T������W��iW�gW:;*:`�Qs&?RWXJ8�oNU0�J1F@#)
[�%6_PO�QiX(o�`��_?5�"$���iʗ\&>bd�s�6�aP*< -;iFn�*-c1B���Wg4'.'4.54632#7&'.#"#"'.#"32767'#"&54632326#!"&5463!2��#$(	1$6]'
!E3P|ad(2S;aF9'EO�Se�j]�m�]<*rYs��hpt.#)$78L*k�h�w�@w��w�w��B

%
$/$G6
sP`X):F�/�fwH1p�dl�qnmPH�ui�kw_:[9D'��@w��w�w��34."2>$4.#!!2>#!".>3!2�Q��н�QQ��н�QQ��h�~w��w�h���f����ff����н�QQ��н�QQ��н�QZ����ZQ�����ff���ff�#>3!2#!".2>4."f����ff�����н�QQ��н�QQ���ff���ff��Q��н�QQ��н�	,\!"&?&#"326'3&'!&#"#"'  5467'+#"327#"&463!!'#"&463!2632���(#�AH����s���9q � ci��<=�
#�]�<������OFA��!�������re��&&��U�&&![e��F �������U?���g�����4_���������a�?b�+��r7�&4&��&4&�p,�+K4&"2$4&"2.#!"3!264&#!"3!2#"&=!"&=#47>$ �KjKKjKKjKKjH#�j#H&&&������KjK�KjK�g	�V�	ijKKjKKjKKjK���..n((�[���5KK5��5KK5�[po�Nv<<vN�:f���.R#!"&463!24'!"&5463!&$#"!2#!32>+#"'#"&546;&546$3232�2$�B$22$�$�*$22$�X�ڭ��ӯ�$22$�tX'���hs2$���ϧ��kc�$22$���1���c�$2�F33F3VVT2#$2����ԱVT2#$2��g���#2UU���݃
�2$#2UU�1݃���2��,u�54#"67.632&#"32654'.#"32764.'&$#"7232&'##"&54732654&#"467&5463254632>32#"'&�ru�&9��%"*#�͟ <yK0Og�" 
&9B3�;��㛘8��s%+DWXRD= @Y%�	!Q6R�!4M8�+6rU^z=)�RN��.)C>O%GR�=O&^���op������C8�pP*�b�Y
_�#��$��N Pb@6��)?����+0L15"4$.�Es
�5I�Q"!@h"�Y7e|J>z�iPe��n�eHbIl�F>^]@����n*9
���6[_3#"&54632#.#"32%3#"&54632#.#"326%4&'.'&! ! 7>7>!���������
�=39?
6'_����������
�>29?
5'17m-V����U--,�bW.�������뮠@Fyu0HC$������뮠@Fyu0HC$L���=??
<����=! A	<��`�;+"&54&#!+"&5463!2#!"&546;2!26546;2���p���Ї����0�p�����p���@��I�������pp���>Sc+"&=46;254&+"&+";2=46;2;2=46;2;2%54&#!";2=;26#!"&5463!2���A5�DD�5A7^6a7MB5��5B7?�5B~�`��`��`0`��rr��5A44A5�����v�5AA5�f�*A���`��`0`�����	!!!!	#!"&5463!2��ړ�7���H��7j�v�@v��v�v��'���:��@v��v�v���MUahmrx���������������#"'!"'!#"&547.547.54674&547&54632!62!632!#!627'!%!"67'#77!63!!7357/7'%#	%'3/&=&'	5#?&5476��!�p4�q"���"�"�6�"� ��'������h*�[���
��|�*��,�@���?wA�UM�pV���@�˝�����)��Ϳw����7(�{��*U%���K6������=0�(���M���		��"!O		dX$k
!!��!
����b��	
���[�����TDOi
��@��6��b��xBA�ݽ�5
�
�ɝ:����J���+���3����,��p
x�1���������Fi
(��R��
463!#!"&5%'4&#!"3���`����а@.�.@A-X��f�B����$��.BB.�.C��}
)&54$32&'%&&'67���"w�`�Rd]G�{��o]>p6��sc(��@wg����mJ�PAjy���YW�a͊AZq���{HZ�:�<dv\gx�>��2AT�Kn������+;"'&#"&#"+6!263 2&#"&#">3267&#">326e��~�└�Ȁ|��隚���Ν|����ū|iy�Zʬ��7Ӕ�ް�r|�uѥ��x�9[��[9�jj��9A�N��N�+,#ll"���B�S32fk��[/?\%4&+";26%4&+";26%4&+";26%4&+";26%#!"&5467&546326$32�]]��ee��ee��ee��$��~i
�qfN-*���������#����Sj������t�2"'q�C���B8!�'�>	
!%)-159=AEIMQUY]agkosw{��������!	%!	5!#5#5#5#5#57777????#5!#5!#5!#5!#5!#5!#5!#5#537#5!#5!#5!#5!#5!#55#535353535353%"&546326#"'#32>54.&54>3237.#"����������Q%%%%%%%%%?iiihOiixiiyiixii�Arssrrssr��%s�ssrrss�Ns%%%%%%%%%%�����������'<D<'paC_78#7PO7)("I$	75!����RA��b��(���ss�ss�ss�ss�ss�"/!".""."
!."".!/^.".^.".]/".�$$$$$$$$$$$$$$$$��Os$$$$$$$$$$$$$$sO$s�ss�ss�ss�ss�ss#��������}$)	13?*
,./:
-�s�*4&"2$4&"2#!"&5463!2!5463!2_��������?-��-??-�,@�@,�-?����pq�8��,??,D,??,��,??(�Z2#".#"3267>32#".543232654&#"#"&54654&#"#"&547>326���ڞU�zrhgrx�S��Пd�U <e�����x՞����Zf��_gן:k=2;�^��9��Œ��7\x��x\7����K=5Xltֆ�W����W{e_�%N��%,%CI��%���#+W4&+54&"#";26=32"&462"&462!2#!"&54>7#"&463!2!2�&�&4&�&&�&4&���KjKKj�KjKKj� ���&&�&%��&&�&&4&�&&�&4&�&&��5jKKjKKjKKjK��%z
0&4&&3D7&4&
%&���'S4&"4&"'&"27"&462"&462!2#!"&54>7#"&463!2!2&4�&4&�4&4��KjKKj�KjKKj� ���&&�&%��&&�&&4&�%&&�ے&4��"jKKjKKjKKjK��%z
0&4&&3D7&4&
%&��	&	!'!	!%!!!!%"'.763!2�o���]�F������o�������oZ��Y��@:�@�!�!�g���������������f�/�/��I��62'"/"/"/"/"/"/"/7762762762762762762%"/77627&6?35!5!!3762762'"/"/"/"/"/"/%5#5!4�ZSS6SS4SS4SS4SS4SS4SS4�ZSS4SS4SS4SS4SS4SS4S�-4�ZSS4S@������4SS4�ZSS6SS4SS4SS4SS4SS4S@�����ZSSSSSSSSSSSSSS�ZSSSSSSSSSSSSSy�ZRRR@%:=
:+������:
=���RR�ZSSSSSSSSSSSSS���������Cv!/&'&#""'&#"	32>;232>7>76#!"&54>7'3&547&547>763226323@``����`
VFaaFV


$.


.$

��y��y�	.Q5Z���E$ ,l<l, $E���R?Y*��@���@�2	!#""#!	��y��y=r�na�@@(89*>�*%>>%*�>*98(QO�!���L\p'.'&67'#!##"327&+"&46;2!3'#"&7>;276;2+6267!"'&7&#"(6&#"#"'�D��g��OOG`n%�E������LL{�@&&�N�c,sU�&&�!Fre&&�s�����s���#�/,�������<=�
#�]�g��L�o�GkP�'��r-n&4&2�-ir&�&�?���o 
��������4_�����5OW! .54>762>7.'.7>+#!"&5#"&5463!2"&462�{�����{BtxG,:`9(0b��Կ�b0(9`:,GxtB��&@&�&@&K5�5K`�����?e==e?1O6#,
#$
,#6OO��&��&&�&�5KK���������?!"'&'!2673267!'.."!&54632>321
��4��q#F�""�8'g��o#-��#,"t�Yg��>�oP$$Po�>�	��Z�e�p#����)�R��0���+I@$$@I+����+332++"&=#"&=46;.7>76$  ������@����ᅪ*��r���������@��@�����������r���'/2+"&5".4>32!"&=463  �&@��~[���՛[[��u˜~���gr�������&�`����u՛[[���՛[~~@��r������=E32++"&=#"&=46;5&547&'&6;22676;2  >�����``@``�ٱ��?E,��,=?��r�������H�����@``@�GݧH`�j��j���r������BJ463!2+"&=32++"&=#"&=46;5.7676%#"&5   &@�~���``@``�� �v�X����r�������&���������@``@����+BF��`r������ks463!2+"&=32++"&=#"&=46;5&547'/.?'+"&5463!2+7>6 %#"&5   &@�~���``@``��~4e	
0
	io@& �jV	
0
	Z9�������r�������&���������@``@�G�ɞ5o
,
sp� &@k^
,
c8~~��`r�������8>KR_32++"&=!+"&=#"&=46;.767666'27&547&#"&'2#"�����@�@���'�Ϋ���'������sg��gs�����ww�@����sg��g����@����@���-ss��ʃl������9���9��������OO���r9���9��FP^l463!2+"&=$'.7>76%#"&=463!2+"&=%#"&54'>%&547.#"254&' &@�L?����CuГP	��v�Y�� &@�;"����������ޥ�5݇�����ޥ���5�`&����_��ڿg��w��BF�@&����J_	s���&��&�����?%x���������%x��JP\h463!2+"&='32++"&=#"&=46;5.7676632%#"&56'327&7&#"2#"� &@�L? ���ߺu�``@``��}
�ຒ�ɞ���������ue��eu�9����ue��e�&����_��"|N�@``@��"��"|a~���l����o����9���9��r9��@�9���;C2+"&5"/".4>327'&4?627!"&=463  �&@Ռ		.	
�N~[���՛[[��u˜N�		.	
����gr�������&�`֌
	.		�O��u՛[[���՛[~N�
	.		��@��r������9A'.'&675#"&=46;5"/&4?62"/32+  ��'��֪�����\
	.		�4�		.	
\���r������|��ݧ���憛��@�\		.	
��
	.		\�@��r�����~9A"/&4?!+"&=##"$7>763546;2!'&4?62  m��		-

���@���ݧ���憛��@&�

-		�@r������m4��

-		����ٮ*�������		-

��r������+"&5&54>2  ����@��[���՛[�r�����������dG�u՛[[���r������  ".4>2������r�[���՛[[���՛�r������5�՛[[���՛[[����$2#!37#546375&#"#3!"&5463�#22#�y��/Dz?s����!#22#�2#��#2S�88�	����2#V#2��L4>32#"&''&5467&5463232>54&#"#"'.K���g��&Rv�gD�
$*2%	+Z hP=DXZ@7^?1
۰��3O+�l��h4���`���M@8'�+c+RI2
�\�ZAhS�Q>B�>?S2Vhui/�����,R0+	ZRkm�z�+>Q2#"'.'&756763232322>4."7 #"'&546��n/9�b�LHG2E"D8_
p�dd���dxO�"2�xx��ê�_�lx�2X	
!+'5>-�pkW[C
�I
I@50�Od���dd��˥�Mhfx�����x^���ә�	�#'+/7!5!!5!4&"2!5!4&"24&"2!!!��� 8P88P�� 8P88P88P88P����������P88P8 ���P88P88P88P8� ������������+N &6 !2#!+"&5!"&=463!46;23!#!"&54>32267632#"_����>�@`

��
�
��

`
�
� L4Dg��y� 6Fe=O���O�U�4L��>����
�
��

`
�
`

��4L�2�y5eud_C(====`L4����3V &6 #"/#"/&54?'&54?6327632#!"&54>32 7632_����>���		�	
	��	
	�		��		�	
	��	
	�		��%%S��y� 6Fe=�J�%��>����	
	�		��		�	
	��	
	�		��		�	
	��%65%S�y5eud_C(zz.!6%$!2!!!46;24&"2!54&#!"�&���&�&@�Ԗ��V�@&&�@��&&�Ԗ�Ԗ@��&���3!!!	!5!'!53!!	#����7I�e�����eI7��CzC�l��@�����@������@�#2#!"&?.54$3264&"!@������մ���pp�p���������((��������p�pp����#+/2#!"&?.54$3264&"!264&"!@������մ���^^�^@����^^�^@���������((��������^�^^�����^�^^�����v(#"'%.54632	"'%	632U�/�@��k0�G��,�zD#[�k#�
/t�g��
F��
����Gz�����	#'#3!)
p�*�xe���0,\8�����T���#/DM�%2<GQ^lw�����
&'&676676&'&7654&'&&546763"#"'3264&7.>&'%'.767&7667&766747665"'.'&767>3>7&'&'47.'.7676767&76767.'$73>?>67673>#6766666&'&6767.'"'276&67&54&&671&'6757>7&"2654&57>&>&'5#%67>76$7&74>=.''&'&'#'#''&'&'&'65.'&6767.'#%&''&'#2%676765&'&'&7&5&'6.7>�&5R4&5S9
W"-J�0(/�r
V"-J�0(.�)#"6&4pOPpp�c�|o}vQ�[�60X�Q��W1V�	
#5X		N"&
.
)
D>q J:102(z/=f��*4!>S5b<U$:I o<G*	,
&"O	X5
#!

��	R N#
C
83J*��R	!(D
#%37	�;$-.�
(,��覦�6ij
�	���"���)9
E�%����!B83
	j9�6/,	:QD')yX#�63V
��b�a	,
Ue��LPA@���*	̳�`Xx*&E
V36��%	B3%	B3XA	
#!.mU"A	
#!.mUB-#2+Jii�i�m-C<I(m��8qF/*)0�S
		
I
E5&+>!%
(!$p8~5..:5I

~��T�
4~9p# !
)& ?()5F	1	
	
� d%{v*�:
 @e
s|D�1d {�:�*dAA|oYk'&��<��tu��ut�&vHC�XXTR�;w��
��71™
Z*&'
1	9?	.

$��Gv5k65P<�?8q=4�a	
SC"��1#<�/6B&!ML	�^;�6k5wF1<P�C	�;$"&462"&46232>.$.�`�aa��sa�``��Z9k����'9؋ӗa-*Gl|M�e_]`F&O������ܽ�sDD!/+�``�aa�``�a1<YK3(
 /8HQelA�Z3t_fQP<343J;T7Q�+?Kgw  $6&$  $&62+"5432+"&=.54  $;26=462;26=4& 4&#!"3!26)����߄��4R4߄��mlL�������r {jK#@#Q�a����^�����@���@���`&��&&�&�������߄��4R4�Ď������LlL�N� �@K5#:rr:#5K���^����a�a��``]��]``����&&�&&	/!3#4&#!"3!265##!"&5463!22�������@K5^B��B^^B@B^5K���� �@���5K�B^^B�B^^B�K	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	+2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@�K5��5K�B^^B�B^^B�`� �@ �{#!&'#"'&547632m*���
�0���((�'(�$0K
��*�*��% 3#!3# '!#53 5#534!#53 6!3@����@@@��pp��@@@����@@pp@��`������� �����	�+/7;A#3!5!!3#!!5!35!355#%53#5!#35#!!!!!!!!����������������������������������������������������������������������
�	#'+/3?CGW#3!5!!35!!3#!!5!#!5!3535!355#%#3%!53#5!#35#!5##5!3!5!3!5	����������������������������������������������������������������������������������������������������������������!"&5463!2!"!�`(88(@(8�`(8�}2�2R �`8(@(88(�`8HR2�2���##6?6%!!!46#!"&5463!2x���� ��8�(�`(�(88(@(8�
���� (8��(`�(8(@(88��	�'ATd+5326+5323##"' %5&465./&76%4&'5>54&'"&#!!26#!"&5463!2�
��

���i�LCly5�)*H�celzzlec0h�b,,b�eIVB9@RB�9�J_�L4�4LL44L44%��2"��4��:I;p!q4b�b3p(P`t`P(�6EC.7B�I6�4LL44LL��	�.>$4&'6#".54$ 4.#!"3!2>#!"&5463!2Zj��b�jj[���wٝ]�>o��Ӱ�ٯ�*�-���oXL4�4LL44L'�)�꽽�)�J)���]��w����L���`��ֺ��۪e���4LL44LL�;4&#!"3!26#!"&5463!2#54&#!";#"&5463!2�
��

@
�^B��B^^B@B^���
��

��B^^B@B^`@

��
M��B^^B@B^^>��

��
�^B@B^^��5=Um	!	!!2#!"&=463!.'!"&=463!>2!2#264&"".54>762".54>762��������?(`��`(?��b|b��?B//B/�]�����]FrdhLhdrF�]�����]FrdhLhdrF@�@��@�(?��@@?(@9GG9@/B//B�aItB!!BtI�Ѷ�!!��ьItB!!BtI�Ѷ�!!��ь�-M32#!"&=46;7&#"&=463!2#>5!!4.'.46�ՠ��`�@`ՠ��`���M�sF�Fs�MM�sFFs�M����ojj�o��@@�jj�@@�<���!(!���!(!�-3?32#!"&=46;7&#"&=463!2+!!64.'#�ՠ��`�@`ՠ��`��	�	Dq�L�L�qD����ojj�o��@@�jj�@@B>=�C�����-3;32#!"&=46;7&#"&=463!2+!!6.'#�ՠ��`�@`ՠ��`��UVU96�g�g�6����ojj�o��@@�jj�@@β����**ɍ�-G32#!"&=46;7&#"&=463!2#>5!!&'.46�ՠ��`�@`ՠ��`���M�sF�Fs�M�k�k�����ojj�o��@@�jj�@@�<���!(!3��3!(!�9I2#!"&=4637>7.'!2#!"&=463��@b":1P4Y,++,Y4P1:"�":1P4Y,++,Y4P1:"b�@@��@7hVX@K-AA-K@XVh77hVX@K-AA-K@XVh7����Aj"#54&#"'54&#"3!26=476=4&#"#54&'&#"#54&'&'2632632#!"&5&=4632>3265K @0.B @0.B#6'&�&
l
@0.B 2'	.B A2TA9B;h" d�
mpP��Tl��L�c�_4.H�K5�]0CB.�S�0CB.�/#��'?&&)$�$)�0CB. }(AB.�z3M�2"61�d�39�L/PpuT(If�c�_�E�`1X"#4&"'&#"3!267654&"#4&"#4&26326#!"&'&5463246326�\B B\B�&@5K�&@�"6LB\B B\B ��sc�i�L}Q�P<m$��3�jN2�c�B.�p.BB.���3K5+"�3,"� �.BB.��.BB.���.�G=�c�i�(+�lOh7/DVj�"�c�=���&5Jb�#"'&=.547!"&46;'.54632!2327%.54&#"327%>%&#"!"3!754?27%>54&#!26=31��?>I��j��jq,J[�j.-t�j�lV��\���$B.R1?@B.��+?2`$�v5K-%��5KK5�.olRIS+6K5�̈$B\B 94E.&�ʀ�15uE&
�Ԗ�Pj��j�dX�U�GJ7!.B
�
P2�.B
�
%2@	�7�K5(B�@KjKj�?+f�UE,�5K~!1��.>F.��F,Q5*H��$b2#!"&=%!"&=463!7!"&'&=4634'&#!">3!!"3!32#!"3!23!26=n$<vpP��Pp���Pp�w�*�Rd�ApP�]��'@�A&
3@��&H-�[(8@
2�EB^&1
=&�&81����PppP��pP w���cOg Pp��c�
4& #.& &,,:8(�%^B &�
.�&&��2t"&'&54'&5467>32>32>32#"#.#"#.#"3!27654&#"547654&#"#654&�Mye
t|]�WS�Sg�SY�\x{
70"1i�92�DU1&=	��	=&0@�c	>&/Btd4!�*"�8K4+"��@H@/'=	t�?�_K�93-�]�
UlgQ���QgsW
�]#�+�i>p&��3�0&�VZ&0B/
���%3B.�"t�o ){+C4I��(
/D0&�p0D��3[_cg"'&#"3!2676=4&"#54&#"#54&#"#4&'2632632632#!"&'&5463246#!#!#�5K�)B4J�&@�#\8P8 @0.B J65K J6k�
cJ/4qG^�\hB�2<m$��3�iG;��     �K5����6L4+"�3p`b�)<8(=0CB.@Z7OK5`:7O��k�EW�^�tm��@Q7/DVi�##j�������������%4Ia�2#!"&5&546325462632"32654&"3267654&76;74&"#.#"2676=#"&'+53264&#!"3</�U�X�dj���jP��ԖEu�!7JG72P
�
B�%
�
B.!7�	@�A�f+?�jKjK@�B(5K,EU�H*5Q,F��.F>.��1!~K5y?��^\��Vl�j�t-.j�[J,qj��j��I7$��?1R.B�+��.B$`2?g�vEo.�5KK5��%-K��6+SIR[��&.E49 B\B$���5K�G#!+"&5!"&=463!2+"&'+"'+"'&5>;2>76;2Y
��
�
��

M	

�.�x	�-�
	N�	�


�	�
�u
��
,
u
�?

L�W���

���#	�	*:J4'&+326+"'#+"&5463!2  $6& $&6$ <!T{�BH4�	�›�&�>UbUI-����uu�,�uu�ڎ������LlL�AX!��J��m����f\�$
6u�����uu�,�K������LlL���-[k{276/&'&#"&5463276?6'.#"!276/&'&#"&5463276?6'.#"  $6&  $&6]�h-%Lb`J%E5
,5R-����h
-%Lb`J%E5
,5R-���'����uu�,�uu��lL�������/hR

dMLcN����hR
dMLcN����1u�����uu�,��������LlL�@��� 	'	7	'7	�����`��`H� �����`�`H� �!`��������`H� � ���`�`�`H���`��'%		7'	7'7	' $&6$ ���X�`��(W�:,�:��X�`��(WL�������LlL�X�`(W��:�B����X�`���(X�������LlL��
��	$%/9ES[�#"&54632$"&4624&"26$4&#"2%#"&462$#"&4632#"32&! 24>  !#"&'.'#"$547.'!6$32�7&'77'&7�7N77N�'q�qq�q�qPOrq��E�st�����ts��st���}�||�}�������uԙ[W��Q���~,>	n������P/RU P酛���n	>,m�����'77'&77N77N6^Orq�qq�qq�q�t��棣棣�(~|��|on[��usј^�~���33������pc8{y%cq����33dqpf��	L 54 "2654"'&'"/&477&'.67>326?><����
x
�������,

(-'s�IVC��VH�r'-(

$0@!BHp9[�%&!@0$u
��
������]\��\]��-$)!IH��V
D��
VHI!)$-#3���6>N"&462."&/.2?2?64/67>&  #!"&5463!2�]�]]�3
$;
&|�v;$
(CS�3�1	=�rM=	�4�TC(G���z�w�@w��w�w���]]�]��($-;,54�0=	�sL	=�45,;�����@w��w�w������(2#"$&546327654&#"	&#"AZ�������\@�/#�%E1/#����#.1E$�!�[A�����懇�@�@\��!�#21E!��6!E13"�|!��	gL&5&'.#4&5!67&'&'5676&'6452>3.'5����A5R��V[t,G'Q4}-��&�<C!l n?D_@Փ>r!�
��G;��>��!g�1�����2sV&2:#;��d=�*'�5E2/..F�D֕71$1>2�F!���&12,��@K�
r��#"&5462>%.#"'&#"#"'>54#".'7654&&5473254&/>7326/632327?&$  $6 $&6$ �!&"2&^	u��_��x��^�h
;J݃HJǭ
q�E
Dm!
M�
G?̯'%o�8
9U�������(F(�ߎ������LlL��&!&!SEm|�[��n{�[<ɪ
"p� C
Di%
(K�HCέp�C
B
m8	
@Kނ
H�F(���������������LlL���"*6%&6$	7&$5%%6'$2"&4}���x����3��n��QH������:dΏ���Xe�8�����z��'	������l�i���=!��7�����S�o�?v�������M '&7>>7'7>''>76.'6'���El:F�gr
*�t6�K3UZ8�3P)3^I%=9	)<�}J���k+C-Wd��	&U���-��TE+]��Qr-�<Q#0
�C+M8	3':$
_Q=+If5[ˮ&&SG�ZoM�k���ܬc�#7&#"327#"'&$&546$;#"'654'632ե›��fKYYKf�¥y�ͩ���䆎�L��1���hv�v��ƚw�wk��n�]��*��]�nlx��D��L�w�����~?T8b��b9SA}����+5?F!3267!#"'#"4767%!2$324&#"6327.'!.#"��۔c�2�8�Ψ����-\���?���@hU0KeFjTl�y�E3��aVs�z�.b��؏��W80��]T��Sts�<�h�O��_u7bBt���SbF/�o��|V]SHކ�J�������34&#!"3!26#!!2#!"&=463!5!"&5463!2
��

@
�^B� `��`� B^^B@B^ �

�@
�@B^�@@�^B�B^^����>3!"&546)2+6'.'.67>76%&��F8$.39_��0DD�40DD0���+*M7{L *="#
U<-M93#�D�@U8v�k�_Y	�[�hD00DD0��0D�ce-JF1BD����N&)@
/1 d��y%F��#"'&'&'&'&763276?6#"/#"/&54?'&763276"&'&'&5#&763567632#"'&7632654'&#"32>54'&#"'.5463!2#!3>7632#"'&'&#"'&767632yq������oq>*432fb������a
$�B?
	>B
BB
AA�.-QP���PR+	42
%<ci���ђ:6&h�HGhkG@n�`��I���Ȍ5
!m��(|.mzy�PQ-.	
	je����	
�����q>@@?pp�gVZE|fb6887a
%RB?
=B
ABBAJvniQP\\PRh!cDS�`gΒ��23�geFGPHX�cCI��_ƍ��5"	
�n�*T.\PQip�
[*81
/
9@:��>t�%6#".'.>%6%&7>'.#*.'&676./&'.54>754'&#"%4>327676=
>���vwd"

�l����"3	/!,+	j2.|��%&
�(N&w���h>8X}x�c2"W<4<��,Z~�fd�aA�`FBIT;hmA<7QC1>[u])		u1�V(�k1S)
-�	0�B2*�%M;W(0S�[T�]I)	A 5%R7<vlR12I]O"��V/,b-8�/_��#3CGk2#!"&546;546;2!546;2%;2654&+";2654&+"!32++"&=#"&=46;546;24LL4��4LL4�^B@B^�^B@B^�@@�@@�����@��@L4�4LL44L`B^^B``B^^B``�� �� ��@@��@���#3W#!"&=463!2!!%4&+";26%4&+";26%#!"&546;546;2!546;232���@�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�@@��� �� ��N�4LL44L`B^^B``B^^B`L��#'7Gk%"/"/&4?'&4?62762!!%4&+";26%4&+";26%#!"&546;546;2!546;232W.	
��
	.		��		.	
��
	.		��	� ����@@@@�L4��4LL4�^B@B^�^B@B^�4L�.		��		.	
��
	.		��		.	
��
��� �� ��N�4LL44L`B^^B``B^^B`L��(8\	"'&4?6262!!%4&+";26%4&+";26%#!"&546;546;2!546;232�

��		.	
��
	.	�`����@@@@�L4��4LL4�^B@B^�^B@B^�4L<�		 
	.		��		.	�:� �� ��N�4LL44L`B^^B``B^^B`L�2632632#!"&5463�&&&&��&&&���&���&��&&�&�#27+"&5  %264&#"26546��>&�&T�,��X�������q&&�1��X��,�LΒw�%��%;#!"&5463!546;2!2!+"&52#!"/&4?63!5!�

�(��&&@&�&(��&�&@&&��(�

�(�

�&&@&&@��&&�&�&�

�����#''%#"'&54676%6%%�������
�hh �@�` ���!�� ���!� ��
��
��
�
������
�#52#"&5476!2#"&5476!2#"'&546
� 
��
� 
���
�
�@�
�
�@�
��
�@

�
� 84&"2$4&"2$4&"2#"'&'&7>7.54$ �KjKKj�KjKKj�KjKKj��d�ne���4"%!������KjKKjKKjKKjKKjKKjK.���٫�8
!%00C'Z���'���.W"&462"&462"&462 6?32$6&#"'#"&'5&6&>7>7&54>$ �KjKKj�KjKKj�KjKKj�h��я�W.�{+9E=�c��Q�d�FK��1A
0)����LlL��jKKjKKjKKjKKjKKjK���p�J2`[Q?l&�����٫�C58.H(Y���ee���	�

			���Y'����w��(�����O��'��R���@$#"&#"'>7676327676#"�
�����b,XHUmM�.�U_t,7A3ge
z9@xS���a�Q�BLb�(�	����V���U�����
!!!�=�����=���w)��������AU!!77'7'#'#274.#"#32!5'.>537#"76=4>5'.465!��KkkK_5 5�� �#BH1��`L

I���&�v6��SF���!Sr99rS!``� /7K%s}H���XV
��P��V	e��		V�d/9Q[ $547.546326%>>32"&5%632264&#"64'&""&'&"2>&2654&#";2���P���3>tSU<�)tqH+>XX|W��h,�:USt��W|XX>=X*
)���)
+�^X^�|WX=>X�:_.2������//a:Ru?�
	
Q%-W|XW>J�(	�=u��>XX|WX�`

*((*


+2		2�X>=XW|E��03>$32!>7'&'&7!6./EU����noh��i����I\�������0<{ >ORD��ƚ�~�˕V�ƻ��o�R C3��7J6I`��Tb<�^M~M8O����	�	
5!#!"&!5!!52!5463	^B�@B^���`B^�^B `��B^^"�����^B��B^��0;%'#".54>327&$#"32$	!"$&6$3 ##320�J�����U��n��L�n��ʡ���~~�&��q�@�t�K�����L��}�'`� -
-�ox����nǑUyl}��~������~�F����ڎ�LlL��t�`(88( ��	7!'	!���\W�������\���d;����tZ�`_��O��;���}54+";2%54+";2!4&"!4;234;2354;2354>3&546263232632#"&#"26354;2354;2354;2�````��p�p��`�`�`� !,! -&M<FI(2�`�`�`�����@PppP���pppppp�#  #
�
�pppp��p	�j#"'&=!;5463!2#!"&=#".'.#!#"&463232>7>;>32#"&'#"!546���	��%. `@��` :,.',-���Xj��jX�h-,'.,: kb>PppP>bk .%Z �&�
�:k%$> $`��`6&L')59I"Tl�ԖlT"I95)'L&69Gp�pG9$ >$%k:��!+32&#!332 $&6$ ~O8��8���O�����������LlL�>pN
�����
i������LlL����	'':Ma4&'#"'.7654.#""'&#"3!267#!"&54676$32#"'.76'&>$#"'.7654'&676mD5)
z�{��6lP,@Kij��jOo�Ɏ���ȕ>>��[t��a)GG4?a�)
ll
>�;_-/
9GH{�z�yN@,K�ԕoN��繁������y��!
?hh>$
�D��"
>��â?$��	n"&5462'#".54>22654.'&'.54>32#"#*.5./"�~��~�s�!��m�{b6#	-SjR,l'(s�-6^]It�g))[��zxȁZ&+6,4$.X%%Dc*
&D~WL}]I0"

YYZ��vJ@N*CVTR3/A3$#/;'"/fR-,&2-"
7Zr�^N��a94Rji3.I+

&6W6>N%&60;96@7F6I3���+4&#!"3!26%4&#!"3!26 $$ ��������^����a�a`@��@����^����a�a�����'7  $ >. %"&546;2#!"&546;2#/�a����^�����(�����������������^����a�a����(������N@��@�����4&#!"3!26 $$ @��@����^����a�a`@����^����a�a�����'  $ >. 7"&5463!2#/�a����^�����(��������n@����^����a�a����(������N@���%=%#!"'&7!>3!26=!26=!2%"&54&""&546 �#��#]V�TV$KjK�KjK$��&4&�Ԗ&4&�>��9G��!�5KK5��5KK5�!��&&j��j�&&����#/;Im2+#!"&'#"&463>'.3%4&"26%4&"26%6.326#>;463!232#.+#!"&5#"�5KK5sH.�.Hs5KK5e# )4# %�&4&&4&�&4&&4&` #4) #%�~]�e�Z�&�&�Z�e�]E-�&��&�-EKjK�j.<<.�KjK��)�#)�`"@�&&�`&&�&&�`&&�)#�`)"�d�Xo&&oX�G�,8&&8!����O##!!2#!+"'&7#+"'&7!"'&?63!!"'&?63!6;236;2!2�@�@�8��@7

8��Q�
	N�Q�
	N��
	8G@��

8GQ�
	N�Q�
	N7
	�������8��8��H��H��k��%		".>2I�������2�0�]@��]��@o�����o@@o�����o㔕����a�22���]����]�p�^���|11|�9�9�|11|�(��%7'7'	'	7T���� d���lt��l)q��n�������luul�������)1$4&"24&"2 &6 +"&5476;2 &6 LhLLh�LLhLLhL����>�
�� �&
  �&�`����>�hLLhLLhLLhL�����>����&�&�����>��G��
	.7)1!62	1!62h��e�������2�20e���2�2>�	v
+4�	[��d����+
���d� �135#5&'72!5!#"&'"'#"$547&54$ ���Eh���`X����(����cY���z�:L:�z���Yc��������\$_K`Pa}��f��iXXiޝf���a���	���(+.>#5#5!5!5!54&+'#"3!267!7!#!"&5463!2����U�`��`' ����� �����j��j�V>�(>VV>�>Vq����������������(^����(>VV>�>VV�=&'&'&'&76'&'&.' #.�h8��"$Y
''>eX5,	,Pts�K�25M�RLqS;:.K'�5�R

Ch���h�����R�t(+e�^TT���u B"$:2�~<�����2�Hp����wTT�� V�/7GWg. %&32?673327>/.'676$4&"2 $&6$   $6& $&6$ d-����-�m	
	,6*6,	
	m���KjKKj�o������oo���K����zz�8�zz�Ȏ������LlL�U4>>4-.��YG0
)�xx�)
0GYޞ.�jKKjKq���oo��oo�lz�����zz�8�0������LlL��D��/7H#"'.7'654&#"'67'.6?>%"&46227#".547|D,=),9#�7��[͑�f�x���!X: �D�$+�s)�hh�i��jZ������t�<��F/��*8C,�q؜�e���\�r,W�BX���/C2��h�hh���=�t������Xm�����>NZ+"&=46;2+"&=4>7>54&#"#"/.7632  >. $$ p��=+& �35,W48'3	l
z����ff���ff�����^����a�aP���2P: D#;$#
$*;?R
��Cf���ff�����^����a�a��'�Y	>O`"&5462&'.'.76.5632.'#&'.'&6?65��\\�[�<C��z�C
25�U#
.�ZK ��m+[$/#>(	|�	r���[A@[[@A�#2#�
����7�*
<Y���$
+}"(��
�q�87] F 	_��1)
��	�	#1Ke34&+326+"&=!#!"&763!2#!"&5463!2#>?4.'3#>?4.'3#>?4.'3��Xe`64[l�����7
��
,	L;�����=+3&98&+)>�>+3&98&+)>�=+3&88&+)>	�Wj�|r�>Q$��~���d$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY���J\m�4.'.'&#"#"'.'&47>7632327>7>54&'&#"327>"&47654'&462"'&476'&462"'&47>&'&462i$		$^"

%%

"^$		$W "@9O?1&&18?t@" W�&%%&4KK�6pp&4���6ZaaZ&4mttm�^x	-���-	x^=/U7Ck���kz'[$=�&5%54'4&K�K�4r<r4&��X��4[��[4&m����m��'/7?GOW_gow����"264$"264"264"264$"264"264$"264"264"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462�^^�^��^^�^^�^^�^��^^�^��^^�^���^^�^��^^�^^�^^�^� p�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp�`^�^^�^^�^^�^^�^^��^^�^^�^^�^^�^^�^^�^^�^^�^^�^^���pp�pp�pp�p��pp�pp�pp�p��pp�p���pp�p��pp�p���pp�p��pp�pp�pp�p��pp�pp�pp�p	��LTi{�"&4626"&462$"&462#"&4632654>7>54 "&54>2"&462%"&54&#""&546 %#"&'&'.7>#"'&'.7>�&4&&4�&4&&4SZ��&4&&4�4$#&�&&j�3$"('$������&4&[���՛[��&4&&4F&4&�]\�&4&�$��
	!D�4�%	,\�4�4&&4&�4&&4&-�Z�4&&4&;cX/)#&>B)��&4&�j9aU0'.4a7����&&u՛[[���4&&4&@&&]��]&&��Ώ0
�u4��0
)�4���#g�&'.#"32676%4/&#"326'&#"2632#2+&'%#"'&6?676676632%#"'&6767#"&'&6767#"'.7>327"#"&'&6763"'.7>;7632;>%5K$
"0%>s$
"0%>;;>%5K�VL#>H30
\�($$(�\���(�є�yO2F/{�(?0(TK.5sg$��є�y#-F/{�$70(TK.5sg$L#>H30
\�($$(�\#�(@5"'K58!'"5�8!'"55"'K#dS$K		K$Sdx#@1
w�d>N;ET0((?
-
2K|��1
w�����d#N;ET0$(?
-
2K$#dS$K		K$Sdx�DN\2654& 265462"2654 #"32654>7>54."/&47&'?62 &4&���&4&���h�՛[&4&r$'("$3�j&&��&#$4[����"�@��GB�[�
"�&&��Β&&]���[��u&&����7a4.'0Ua9j�&4&�)B>&#)/Xc;u՛����"�"
�G�i[����Xh#"&54676324&'&#"'>54#"32#"54>54'.#"32>7>767632326#!"&5463!2b
)
:4FD�N

[�1�,^�J��K-*E#9gWR�Yvm0O	��w�@w��w�w��C2�2c@X�&!�9{M�A���_��"S4b// DR"Xlj�PY<	�@w��w�w��%���e4.#"32>7676#'.#"#"&54>3232>754&*#"&54>763 >32�
''il$E/
@�P@��
^��`��'W6&�!.. ! -P5+


�E{�n46vLe�Vz�:���,SN/
M5M[��
	]$�[��^��5�iC'2H&!(?]v`*	��l�	��b��$9>
���=R�2
#"&5467%!"&7>3-.7>;%.7>322326/.76/.'&6766/&/&#"&676	&676&6766/&672? �=1�(H/ ��	'96&�@)9<'���)29%
�&06#���#��$� J� �07j)�5@�"*3%�"!M
��%#K�"%N�e8)'8_�(9�.<�c +8 8(%6 <)'4@@)#-<^
?%$-`%.
}Q!&�}%&N�-l���IJ�;6>/�=*�%8!Q ���#P"�\Q#N&�a��)<9�bR]mp%"'.'&54>76%&54763263 #"/7#"'#"&/%$%322654&#"%'OV�9
�nt
|\d
ϓ[��nt
|@�D:)��	
;9�8'+|�j�," �41����CH^�nVz(�~R	�9�\'	�r�

@����L��@�
	@�w4�6�HI(+�C
,��55,��
f[op@�\j�;(zV~����i/5O#"'&54>32&#" 654'67'"'>54''&'"'6767&546767>7���蒓��`V BM���R� B9)̟�!SH-77I�Xm�SM�H*�k#".o;^J q�ן���ד��>@�����YM
$bK���d ��ү[E"����;���Kx%^�6;%T,U:i�m=Mk���).DT4'"&5463267&#" 6;64'.'4'>732676%#!"&5463!2),�蛜s5-<A���4ϲ
2W9
�&P:\�3)SEPJ��D4:3NI�w�@w��w�w��NE	2@u��us�+,�����/?x�sa�tmP�'�)fHVEA(%dA4w&4J5*�@w��w�w�����O[4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76 $$ �Cf'/'%($�U�L
(
#'/'@��3#@,G)+H+@#3
����^����a�a�X@_O#NW�#O_�.*	##(��^����a�a����q�[632632#"&#"#".'&#"#".'&54767>7654.54632327&547>P��9	B6?K?%�O4�T% >6>Z64Y=6>%S�4N�$?L?4B	@���{:y/�$ ,'R�!F!8%
#)(()#%:!F �Q'+%�0z:�z���O_4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76#!"&5463!2Cf'.'%($�V�M
)
#'.'@��
3
#A,G)+H+A#
4
��w�@w��w�w��XA?4N$NW�&M&L�/*
##	+�@w��w�w����	O$>?>762'&#"./454327327>7>	EpB5
3FAP/h����\�/NG�S�L�	� ���R�P*��m�95F84f&3Ga4B|wB.\FI*/�.?&,��5~K %
&��Y."7n<	"-I.�M`{�ARwJ!�FX^dj''''"'7&'7&'7&'7&547'67'67'67'63277774$#"32$			*��'ֱ,?�g=OO&L&NJBg�;1��'����'ֱ.=�gCIM
$'&&NJBg�=.��%�����w؝\\��w�
�I�o�o��<�<���-NIDg�=/��%����(ײ+A�hEHO*"#*OICh�=/��'����(ֲ/=�h>ON.��]��xwڝ]��������7��e��[���@�����)6!!"3#"&546%3567654'3!67!4&'7S��gn�y]K-�����#75LSl>�9���V��%�cPe}&H�n��_�HȌ����=UoLQ1!��4564���7U�C"�
�!-9[nx��"&46254&"326754&"326754&"26754&"26#".547632632626326'4#"#"54732764&"264.#"327632>#"'"'#"'#"&5#"'67&'327&'&54>3267>7>7>32632632T"8""8�)<())�(<)))�)<))<)�)<))<)T�د{ՐRh�x=8 78 n 81
p��H_6�S��oc
�F@b@?d?uK�bM�70[f5Y$35KUC<:��[;+8 n 87 8/8Zlv]64qE 'YK�0-AlB;
W��#;WS9
&�(#-7Z�://:/�Tr++r,,r++r,,r++r,,r++r,,ʠ�g��xXV�ע��e9222222^�K�Vv���F0�2OO23OO��`�lF;�mhj84D�ro��B@�r+@222222C0DP`.�r8h9��~T4.&o�@9��1P���%14'!3#"&46327&#"326%35#5##33 $$ ����}Pc��c]<hl���ࠥ�Ymmnnnn���^����a�aw!�LY�Ə;ed����wnnnnnv�^����a�a��%�'#"$#"#.5462632327>321��I��U�Π?L���L?��cc�4MX�&��04;0��XpD[��[DpD,)&&�Q	9V\�26&".'&'&6?.#"#26327677>'32>&3#'&+"?626&"#!'.'!"&5463!>;26;2!2�P  P 	
92#.}S�P9:�:%L\B�� )spN/9oJ5 
!+D�`]�Bg�Y9�+�,�9%
Pk4P  P &�NnF!_7*}B<�{o0��&&�B;*<@$ucRRc�#@16#37c&�@@@
J"@*4�^`E�D�B�����o/8927
*@O�LC�!T!32�3X$�BJ@@@��&AS
0C59"'D/&�&D488$5A&�%O#!"&547>7>2$7>/.".'&'&2>^B�@B^>FFz�n_0P:P2\n�zFF>��R&�p^1P:P1^��&R
P2NMJMQ0Rr�.B^^B�	7:5]yPH!%%"FPy]5:7	���=4�QH!%%!H�t4=�<"-/ ?�1Pp+".'.'.?>;2>7$76&'&%.+"3!26#!"&54767>;2�'
+�~'*OJ%%JN,&x�'%^�M,EE,M7�ZE[��P*FF*P��:5
�
�^B�@B^){�$.MK%%KM.$+��X)o3"�a  22!]�4	I�>"">�,�&�S8J�B##B��12�`
��`B^^B�8&ra#11#$��R&��"&.2v%/%''%/%7%7'%7'/#&5'&&?&'&?&'&7%27674?6J�"�����0�<=���_gNU�?D��f���u�Y����G�b���7=^H^�`	�=v~yT������3����G���D��P�O	4F��ѭ����q������i_w\ހ�!1u�S���%V_-d�
���1=U{J8n~�r����'U4.#".'"3!264&"26+#!"&5463!232+32+32�0P373/./373P0T=@=T��֙�֙|`^B�@B^^B�B^`````*9deG-!

!-Ged9Iaa�l��lk���O��B^^B�B^^B�������	+Yi"&54622#!"&54>;2>+32+32+#!"&5463!2324&#!"3!26�֙�֙0.I/ OB��BO	-Q52-)&)-2�
``

``

`^B�@B^^B�B^`
�
�@

�
|k��kl����"=IYL)CggC0[jM4				
�
�
�
�
�B^^B�B^^B�
�@�

�@
���!1AQu4.#".'"3!24&"254&#!"3!2654&#!"3!2654&#!"3!26#!54&+"!54&+"!"&5463!2)P90,***,09P)J66S�����"��@��8��@^B��@�@��B^^B�B^U�kc9		9ck�U?�������@@88@@N�@B^````^B�B^^���!1AQu�#!"&4>32>72"&462#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!546;2!546;2!26#!"&5463!2J6�6J)P90,***,09P)������"��@��8��@�
�@

`@@`
�^B�@B^^B�B^ՀUU�kc9		9c�������`@@�88�@@�2�

�@
````�@B^^B�B^^�(%.'"&' $&  #"$&6$ ��wC�ιCw�jJ~J�����>��������LlL�ś�JSSJ͛����>����6������LlL���$,  $&6654&$ 3 72&&  �lL������m�z�����z�B�l������>�������KlL�G���zz���G���>�����'7#!"&54>7&54>2  62654' '3�/U]B,ȍ����,B]U/OQ��н�Q������>�+X}��������}X�0b�Ӄ��ۚ�Ӆb0}�h��QQ��h�����>��f����f��#=#!"&4>3272"&462!3!26#!"&5463!;26=!2J6�6J)Q8P�P8Q)��������
�
�^B�@B^^B`�`B^V�VV�ld9KK9d��������`��
�@B^^B�B^``^���+;K[eu4.#"'"3!264&"254&#!"3!2654&#!"3!26%54&+";2654&#!"3!26!54&#!"!#!"&5463!2�"D/@�@/D"?,�,?�p�pp�p�@�����@����@����@�^B�@B^^B�B^D6]W2@@2W]67MM��pp�p��@@@@@@@@n`�@B^^B�B^^���+;K[eu#!"&54>3272"&462#!"&=463!2%#!"&=463!2+"&=46;25#!"&=463!2!3!26#!"&5463!2�?,�V,?"D/@�@/D"�p�pp�p�@�����@����@���
�
�^B�@B^^B�B^D7MM76]W2@@2W]֠pp�p��@@�@@@@�@@��`��
�@B^^B�B^^��A#"327.#"'63263#".'#"$&546$32326�������J9"65I).!1i���CC�u
+I�\Gw\B!al���݇���y�ǙV��/]:=B�>9�����+<F+a[le���Pn[A&JR7t�)��+�tH�������kFIK�e	� .��#"'&'>32%#!"&5463!2#"&54>54'&#"#"54654'.#"#"'.54>54'&'&543232654&432#"&54>764&'&'.54632� ?c��'p& ?b1w{2V	?#��&#9&�CY'&.&#+B

: &65&*2w�1GF1)2<)<'

(
BH=ӊ:NT :O	�)4:i F~b`e!}�U3i?fR����UX|'&'&I�c&Q
	*2U.L6*/
L:90%>..>%b>++�z7ymlw45)0	33J@0!!TFL����� P]=GS�-��kwm	!����*�(%6&692? $&6$ ��	' ����al�@l�������LlL���,&��EC
���h�$�������LlL���
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&5467534&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��d<M�-PppP�-�M����������Dž����9���������	+/37%"&54624&'4&" 67 54746 #5#5#5�p�pp�p�D<p�p<D�
����������
���������PppPOqqOM�-PppP�-�M����������Dž����9����������&.6>FNV^fnv~����"/&4?.7&#"!4>3267622"&4"&46262"&42"&4462"$2"&42"&4"&46262"&4"&46262"&42"&4$2"&42"&42"&4�

��

R

,H8Jfj��Q��hj�G^�R,

!4&&4&Z4&&4&�4&&4&��4&&4&&4&&44&&4&��4&&4&Z4&&4&�4&&4&��4&&4&�4&&4&��4&&4&&4&&4&Z4&&4&Z4&&4&

��

R

,[�cG�j�h��QRJ'A,

��&4&&4Z&4&&4Z&4&&4Z&4&&444&&4&�&4&&4Z&4&&4Z&4&&4Z&4&&4�&4&&4Z&4&&4Z&4&&4&&4&&4Z&4&&4Z&4&&4�%-5=EM}���������+"&=#!"'+"&=&="&4626"&462&"&462"&462&"&462&"&462#!"&=46;4632676/&?.7&#"!2"&462&"&462&"&462"&462&"&462&"&462"&462&"&462"&462��@?A�A?
@
�@R.�..R�@`�jlL.h)*��*$	%35K���..�..�.����u�vn�u���....��@@�j�N *��*.t2#K5���..R..R.��
@Hq '&'&54 &7676767654$'.766$76"&462&'&'&7>54.'.7>76�����������ȵ|�_ğ��yv���/ۃ�⃺����k]
:Bu�q��
CA
_k�ނ���XVo�bZZb�nW��|V	0 	Q2��-�
l��}���O		/	:�1���z	
q��%������z�G
4(

6�Ro�aą\�<

)4	J�}�������%!!#!"&5463!2�^B�@B^^B�B^�`�@B^^B�B^^���%#!"&=463!2^B�@B^^B�B^�B^^B�B^^�&))!32#!#!"&5463!463!2��`B^^B��^B�@B^^B`^B�B^�^B�@B^��B^^B�B^`B^^���#3%764/764/&"'&"2?2#!"&5463!2��

��

�

��

�

��

�

��
s^B�@B^^B�B^ג

��

�

��

�

��

�

��
�@B^^B�B^^���#'7"/"/&4?'&4?62762!!%#!"&5463!2�

��

�

��

�

��

�

��
�
�^B�@B^^B�B^��

��

�

��

�

��

�

��
��`�@B^^B�B^^�	! $&6$ .2�r��`�������LlL�f4��������LlL���#.C��&>"'&4762"/&4?62'"'&4762%'.>6.'.>6'>/>76&'&.'&7&'">?4'.677>7.>37654'&'67>776 $&6$ (4�Z�##
&##
&y�"�6&.JM@&� "(XE*$+8
jT<l$3-V<
2'.


-1
%#e"!Z�
+*)H	 8
(j

	#*
-ƷVv/kh?'��������MlM�$($�R#

&
"
#'#vZ@+&MbV$
�
G7
--)

R2T�
313dJ6@8lr2_�5m/."�G:=	)%5f0gt*2)?;CB66&, �	`48]USy������LlL���G6?>?3#'.'&!3!2>?3.'#!57>7'./5!27#'.#!"g�%%D-!gg<6W��WZe#1=/2*]Y3��-,����C1/Dx���] VF��I�q-H�����D2��NK'>*�%�R=f
07���=.
fD�]\|yu���,0>Seu#2#"'&5<>323#3#&'#334'."#"+236'&54.#"5#37326#!"&5463!2�		<	��zz�j��k-L+� )[$�8=".un/2 �^B�@B^^B�B^�5cy	
�
��(�ݔI�(8��?C�(3�>�� #"��($=�@B^^B�B^^0�K�S�&'.'&'./674&$#">&>?>'76'# "&#./.'7676767>76$w
.~ku�BR�]� T%z+",�|�ޟ���j<���)(!(	~ˣzF8"{���%%#5����)��}''�x��JF��0"H[$%��EJ#%
.Gk29(B13"?�@S)�5" �#9����dm�W"��;L�65R�A0@T.���$�}i`:f3A%%
BM<$q�:)BD	aa%`�]A&c|	�M��s!
Z
2}i[F&���**
< ��ʣsc"J<&Ns�F%���0@Wm6&'.6$.7>7$76".4>2.,&>6'"'&7>=GV:�e#:$?+%

q4����g
&3h�T`Zt�Q��м�QQ��м�pA������P1L������K!:<��}҈`d��l��b�,�9'


%%($!
���a3���)W)x
�������
о�QQ��о�QQ���cQ����ǡ-�җe)U�s2����XD\���ϼ�Yd����/?O_o���#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543%#!"&5463!2++532325++532325++532325++532325++53232�p00pp00pp00pp00pp00�8(��(88(@(80pp00pp00pp00pp00pp0� � � � � ��@(88(�(88� �� �� �� �� �/�Q�/&'%&/"&=.6?&?&'&6?'.>-#".6?'.>'&6'.>54627>%>76#"'%
%6��

2�7
2G
f���!)p&4&p)!��f
G2
7�2

��	*6���	"��
4�7
2G
f�!)p&4&p)!�f
G2
7�2

��"	���6*	�!k
3

j�&3
%,����*��&&ր*�9���%
3&�j

3
k!./!>��>$,*!k
3.j�&3
%�Ԝ9�*��&&ր*�ǜ,%
3&�j

3
k!*,$>��>!/.�&6.'&$	&76$76$�P��utۥiP��u��G��xy
��Զ�[xy
�-���_v١eN��uv١e	��=��u�ʦ�����[t7��8�X�
&6##'7-'%'&$  $6 $&6$ ��3��1�N��E0�����g��R�=|�����||�">"��������LlL����^��v!1f2i��Ђwg�fZQ�Q^>"�||�����||�w������LlL��&�Z�Xblw��������.'&>'&'&".'.'&&'&'&7>767>67>7626&'&>&'&>'.7>.676'&'&'&'.67.>7>6&'&676&'&676.676&'&>&'&676'.>6/4-LJg-$	6)j2%+QF)�b3FSP21DK2�AW")")�$??8A&A�E5lZm��=g�G2Sw*&>$5jD ���GH�yX/4F �r	1
	1�"�"!�l=6>��	6
,5./��'e



.*�|�Ed!
u&�&%&��	&��5d	
���))66@�C&8B@q��L?P^7	G-hI[q��:<�rS	U~97A_�IR`gp1	1	�;"("j?>"�T�6
,6 
&/`���LwQ'�	
��A	^	�	�	"�		$&	_	��	y		�	*�	<Copyright Dave Gandy 2016. All rights reserved.Copyright Dave Gandy 2016. All rights reserved.FontAwesomeFontAwesomeRegularRegularFONTLAB:OTFEXPORTFONTLAB:OTFEXPORTFontAwesomeFontAwesomeVersion 4.7.0 2016Version 4.7.0 2016FontAwesomeFontAwesomePlease refer to the Copyright section for the font trademark attribution notices.Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeFort AwesomeDave GandyDave Gandyhttp://fontawesome.iohttp://fontawesome.iohttp://fontawesome.io/license/http://fontawesome.io/license/����������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab�
cdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������"	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS�TUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������glassmusicsearchenvelopeheartstar
star_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflag
headphones
volume_offvolume_down	volume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_height
text_width
align_leftalign_centeralign_right
align_justifylistindent_leftindent_rightfacetime_videopicturepencil
map_markeradjusttinteditsharecheckmove
step_backward
fast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_left
chevron_right	plus_sign
minus_signremove_signok_sign
question_sign	info_sign
screenshot
remove_circle	ok_circle
ban_circle
arrow_leftarrow_rightarrow_up
arrow_down	share_altresize_fullresize_smallexclamation_signgiftleaffireeye_open	eye_closewarning_signplanecalendarrandomcommentmagnet
chevron_upchevron_downretweet
shopping_cartfolder_closefolder_openresize_verticalresize_horizontal	bar_charttwitter_sign
facebook_signcamera_retrokeycogscomments
thumbs_up_altthumbs_down_alt	star_halfheart_emptysignout
linkedin_signpushpin
external_linksignintrophygithub_sign
upload_altlemonphonecheck_emptybookmark_empty
phone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificate
hand_right	hand_lefthand_up	hand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilter	briefcase
fullscreengrouplinkcloudbeakercutcopy
paper_clipsave
sign_blankreorderulol
strikethrough	underlinetablemagictruck	pinterestpinterest_signgoogle_plus_signgoogle_plusmoney
caret_downcaret_up
caret_leftcaret_rightcolumnssort	sort_downsort_upenvelope_altlinkedinundolegal	dashboardcomment_altcomments_altboltsitemapumbrellapaste
light_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefood
file_text_altbuildinghospital	ambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_down
angle_leftangle_rightangle_up
angle_downdesktoplaptoptabletmobile_phonecircle_blank
quote_leftquote_rightspinnercirclereply
github_altfolder_close_altfolder_open_alt
expand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcode	reply_allstar_half_emptylocation_arrowcrop	code_forkunlink_279exclamationsuperscript	subscript_283puzzle_piece
microphonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchor
unlock_altbullseyeellipsis_horizontalellipsis_vertical_303	play_signticketminus_sign_altcheck_minuslevel_up
level_down
check_sign	edit_sign_312
share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfile	file_textsort_by_alphabet_329sort_by_attributessort_by_attributes_alt
sort_by_ordersort_by_order_alt_334_335youtube_signyoutubexing	xing_signyoutube_playdropbox
stackexchange	instagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_down
long_arrow_uplong_arrow_leftlong_arrow_rightwindowsandroidlinuxdribbleskype
foursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380
plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629uniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BBuniF2BCuniF2BDuniF2BEuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C6uniF2C7uniF2C8uniF2C9uniF2CAuniF2CBuniF2CCuniF2CDuniF2CEuniF2D0uniF2D1uniF2D2uniF2D3uniF2D4uniF2D5uniF2D6uniF2D7uniF2D8uniF2D9uniF2DAuniF2DBuniF2DCuniF2DDuniF2DEuniF2E0uniF2E1uniF2E2uniF2E3uniF2E4uniF2E5uniF2E6uniF2E7_698uniF2E9uniF2EAuniF2EBuniF2ECuniF2EDuniF2EE����=���O<0�1h�PK�uKX3{��~�~<spiko/assets/css/font-awesome/fonts/fontawesome-webfont.woffwOFF~�
��FFTM0k�G�GDEFL �OS/2l>`�2z@cmap�i�
�:gasp��glyf _yL����Mheadb�36��-hheab�$
�hmtxb��
�Ey�locae���\maxpl� ,namemD�㗋�posto`�u�����=���O<0�1h�x�c`d``�b	`b`d`d:$Y�<��x�c`f�d�������b��������ʢb��l��|6F�0#�F��nx�͒�J�q��gje�>�"�D���>�{�E�O >�����,"�u�^�[[[���j�os���_�M��%:0g80������B�.L�s�zðפ 1Y��lKWv�es�t��)Mk^�Zֵ֪�m���׉Θb�k̳�2����6���>'�Y�Җ����jukZۺ�g�m2� ����(�4�-iEk�Жv��}�X�B��Y`���`����c��9�Z�JV��5�e�Y߆6�G΂�`3�|6����[uI�p�n�-�����[pL��0�Lp�;��׸�%���8�o��>F8�	��G8�`�W�ί�����"�E^�_�=(K,F�K�+�y�b�����x���	�TՕ0��o�}{�uuuwUWի�n�njmz-��nv�E�EAAJ!*�(��hD�2c�%F�ʦ�Ebb6���$&�����7�߹�UUW7
��t�w���{�9���8�m�8b�I�	ڃ�����݌7�S�E�G�!�3�����j�㔐=w;�P�^I�A;RR�n��k��LS�.��)�o8G�([��)�9O,,�At�S�
��h
y�u�jZupPGx�N�o��n��{��ho2�A�D�-r��]��u��5��e��^��dM�X�8=���r5ͻ^Q\�~��2��V�0 �o�0kC� qA跍����G<�
�9���v�`�|N�X�W�I�:"�'�a��W޺O=}��k�#�"�7�e	��%Vs�~-�y$ŵ������X��w&'q��.n.�E��K�#��JD�ڝn봽7����=�|�w�L:Ӎ2vmrRv:=0P�@D�ۓ��V�Z7eO��d��7�HM�SY�|�[o��f'B��L}��Ʒҗ�V����^�+�{W�=���uҤ֦='j��,�|;�v�A���o=��0�q8"�I³��8���yZ�6Ǵo9��q<i3���k������1%�&��
���u���k�����{H}��@΁W�—^q�Է��4;gg7���N�y��/��
q���P���OЌL�4��q�,���ԇ�"�Sv�=jL�/U�jC�-w�o���ȍn���j�̮�{�j\��
��vE��k

���z�>p�n=�^=�ajID(����෠���qu��F;э�5֮�s7;QC7�U��[����׈���yZIۘ�ػ�*�!$	�dⵄ��Ŗ�-ˇ?��{��m������f6��po��~�mԽw��o���G6M��oz�a�--�m#]?]?V��k�z��ܥܵ�.�>�)�9NH%�&T/� ��_���I�Ax���O��B��]8(���.v��)�G=���H�P�S�U��P���>f�F�E�-G�G�s|���'?~z�I*���R�|��[`���-V�'ݙG�P3b�'\R��I̞#n�;W��ٟD�T��ѹb8�0�^s6,rȥ��i��������sm15kk��,}��q��Wȝ;�t�s��e�Yq�qC/���0�q��|>��
3������W�/�ը��s�F�"���s��I�oAHI� 8��C�„���w���~�@
����_�(�]h=������r�9���p!�;�H���-[If��w;%=�d��꯵���bmH)��k=o��\���h�E�i�7i:-!mn:`[�G�]���GE,�;��s�yH6�2�ƈs�՗:��I��@�^\�w���OV�õ������<�g?]�Y{?qK�g�H�[��X��&�td�n�[�,�Z�!H�6#�=nݳ����;O��W�U����G4]]�6�ٰp��7��[�aM�5P���B�]?����4�����P呂����7o\�!׺ߜ����ؤ������
��2>8�/p�2�h@�k~ھ��B~�a�[�r��=Pr8�S�e�sc�F�
ӗ�� �S�#P��|0z��'�z��S��)��8aFB�FE	��V�r�J��(E���fDp���U�\���'h4P�� 	�j��<t�$>d3}Cv�f���M�}Zlf���,.��p��j1��t�Y�j�2�lƗ,U������<:�z��t[�%�Y!1v��M�frc:_n�"��7z�w�v��m�
z�ui��dt���O��.3K��<y��d0��3l�Ll؞�Y�ĭ~�bg�#8H7��J�C*gY��_��YKi�n��0�AQ���PiMg-c�����)<�9ܹ��JH�X-��o��w��aX�;�����<z�̳�@)��*��rw��|u�`���l�c����߸m1�:���H2yΡ�ؕ�d��Yנ�E�+�G�Z��Q
k��P*��.�6�O����W�=���n���u��B��d�u��8�<�7�4~c�8�(bK]4�x�~�*x�=��¿���1T��2��Gߡ}S�}����J�X��ùP��@z${P�™��"h^���b�ؙJr����`R_3���@|8~� v:G�E8�c�i�]5&4�t��َS��צ��	#�������5���jQ ��0즰���N`��v�!
�Ry�S(v
]wB}J]�>u��=�.#Cjn(,THu��_Z���	6�q���hh�P�4#J�H�%jt�3�M�)�#��z���z���dt��1Dn~�9�/��ȋ������B��@NV?�p'r��f:�;�b�B�QHb�$h�3�CG|��#v2�y�d�m)�e��sv��w�~٬�fp�~��DG�	�r�0��^Xzˣ����Շ��c���l&
 \�`\�8HHa��IC?������6���:5�H;�l��ވ�4C����&�\�F����jԬ,�|MC�ݔ��/f8��ܮ2���	�.��ҍl
_/��A���kT�V�Νg�~T��΂<`2����Q�&;�X�A�W@��@g��j{��j,�	�s�uuE
����֟���:�A��
8,&���ռ
}|��b0��lFQ$px=��4ddm7��nru"�N:O�u^��x@񝂍��C�G����*�%F�>Tm��?��2.�o��p������ˮ�1�r�\T��١K+L�؜c���n��:8����q�y�N��\Dv�j���[��ܦDy/�*=H	�[0�l�8=���`�D��d&�<����qR�}~��|m?9[�Y
{�H�I��FP��H�p;@���Y�����[D��]j��}�*ÞhJԆ�'v^��6XD��L���V�a@XF�k�<������N����.���pV�e�u���p����+O�;����FG�\E��нb�kfy
z��s��

	X����k��M֊P����Y�_g��#�f��}{���Lh.tMV((���/���4u�X�4u�<�k%�Ņ��s=x�f�Ȍ�ݐ��P��(�.(��q\��+����i}��J�/[��O��k<Ew{W%��҂p�RJ�
˙��$["�H�6#] �F���C�֫C�_c����|=�F�2[�#�\��eyÃ�.�a��nơz�K�9řeN��Ԟe����Uտx��Uw�Ϋ�m>����76�t�O�d�٧�,崅v���2+�׷� TU[�NHN8�W|���fG{�ܘlT�_��Z1 ���8j
�`A����r��㼌��`h�*�b��
���#����ռ��B����j���0s$n�^�7��w�$�Gɡ;�N
.�A>3;M��y��?��zpͥ�Ι��4�aqp҃GF��w�|]��֯�!��ؾ�bv�q8�e�+�)��h.,U~�4]�h.�P4s��)��+k�q�D2�u����ϸu��E3V�⭯�ҟ�f�S��8��/D�]5���ޖ*xWG�j���}�l&k�lnçi��Pv'�6#�������(%��)>q��E��o6U+�6�ŋ�8ۢ��lޏ>���`����M���n'���'��zB-t�/ꬱ����3ik�3
���55��Z	1ao�|+�
őm��
��0$Yə�Oa��1ag�9��up�9Gת+����b��=H߀��Q1h�T��]�Ғ�Q���^��?������s9��ػ��� ��l��B�|4�TN���YBL�,�
g�#�5��A�㉐=!�7~=�/X]W��uw�ZW����避[��Ꞟ�W�d==B��m®�ҏ΋v�?$���
E#
�L�!7���ط��!����T��RR�I4��)���H#��l*�:#��H.���)����pӇ�
źR�M�B���=�ƅ��(ǂ�͵���˥�>A��,�_��2�%�5�p�yn�6/���Mb�t,�L֮���l+�9�Q�Gb]*�D;�
����{PZ!�*��U1���|���s��{�"�3�\�g�������Gχy��G:�-nQg7��`ԏ3�x���Ax�%ÏU���XMZ�&HX9�>o��s�Ga��
��'��!�lü��|�EW-��e�b��bxs��Y0��6E��>�)�V��H��߰}��V=��G~�Yk�h��/;��ۇ��0�{4.c��\h`�5���
F�A��5��Tg�[4��#���S�o3��yuy��=����<'j{�	h�N�k�6�	�@1c/��5-T:��`Y�X]��g~���i��l�p�!��e>�1x06�?�e�oA�s�b���̪fy�b3�@B�߂�Yq�?;�m)�h4s�k�P�����UfW��62��c�>8F�(�t*G�C	ym
s��r�p�?��I��C�Y:ϻ&͜9��9T�Y�-k���%�)�@�|FF�h�9*��(Rt���K��ǻ�T��XM-IP.%�C"���?�,+ˆ�=��	��>�t�����U�gQ���W��w#�Υ7݋���[��P�	��ޮ���'j7��7̗�9Z���I
�S����O4YkDE�͂�B~�`�Ig;�m�����u�֢z�Sg)����r��E܉�=m�K��9�ZD�]�4����~7߉R6Hۂ(��j��i!�BldpӜ^���zz拾�g�F:�qꢝk�Wl�/С��uX2�r��TsB�נ�����ͫڂ�t�}}ƶ��_5�	��k�4���	�A;oH�L�Ϲ�)�z�.�qu���A�z��yx�j�k5�F�-��@�lҙ��c�ڗ�җ\6�=�
���O]9�/�5ڔ�볝�\tO���C�T3�f(i
]�w�P��iQ���w�γ�=J�ߌv�Gޮy���[�[���,��Et&Q��o�c�Â��yb66k���MK|�֋$Y��z%���P��(���^�87D�rK��`��%�5�.�:��	�Ďx=m��n�ً���m]�Ю�&�2G�(-@�Q7xu3%@�p���~н��t���S�]���=�)AG�����A��Vg;��*=�$mz
�-|_E�Z�ˢk�<�5U5�fF�I�j����`�=H}���)0��~�F�,"���N�6�k��"��}�Ṓk���T�"$��mZPc�',�ϛ�tz���Յ��];+�j��+�NG�>K#�h-zp�6\��;y��b�~�9�.m�	�\�=�qrqü�=fS
6�u(����؍��3���#����0����
:�Nz{S�M�]"��`R������.C���r`-��U{낍�z�n�q��	t�x��
�ic+Ԛ:3Y��㳙N��*�a�V��P��
�`�1�Q�b���@fc^X�9�̼���ܶ����jtҜYӂ��hھ����3�	i�js��+\�8Tv��i|�Q<
v��߹c�8�1���-��t�������\1����6���G���I��n�J�:̇�h�X��G��r�+��<�O�|a��l�yxuco���7狿P�'�j{���G�w��s��ʥ���s�����
?��?kL5>4��Hj��v4���l���!���,��c�C�5�4{�ٱ�4d��R��~��p�*;9n����C%d��}�d�A4Q8�i��O�i	���T����gd��ul�U�S���A�q�$.j6U;�MǶ�ۏێ�ۏ���j�9J�D�vAF��b�m�LOI=`�j�f:��>Iǁ�J!�
�6T�xư�qn���̓��S9�ĀM|�!ґ8X)��h�ͅ��ͳ�(����,�ӌ���2����+l�D���3Qɕp�$`�Pt�[��� ���DV��2�op��o%x�Z)�����n�:p4�N)�F Նt�T7M�u`8��P*r
>�(��O^����tX�i(��M4!
t(�>h��cU��<�@��ܦç��$�M'���(��J�׳��Q�܃�<8�Vj��j7P�?Ͼ;�������_��!Q����.h|:B��)Ӓ��xܘs��_���d9��aN=�.WO.�\|�_O&t�k.�".D�p53�͓	6�`8���I�u�����Kj��k/�����wi�U��S��us��U�lr
̥;��ѠMe`�T���B�&��n¦\�	g2pd���[0��O�v�z����I�'m%�4���1}�@�€:įZ���/r
@1m8_.���W�R���lv(F5A�ս���~]*@Qؿ
V�����g��M܊�����:M��ʞQZ�㖵��.
H��f��J�wK�IA��\������f7�z��l��}5�V��z����G����Ɛ�
u̻vߋ�a��ɰ��Z(�S6W�z���7e��k���[j�����#6[���6i���Sڣn��@�d��`�[��}�i�]<{b�N&k��G�[�Q������`E�������k�$|'������GO���R��4:	y��X��1d��hz3T�ʷL-�3��D�G%�Z
��b锥�3�I��陌R�^cy,�3��P!�@�ieNq좀FS'}@4�шÏ~�����*�T(�P���Y+�=�!?�}>�Ю�+�����w*�3�U�����sƽ ��i[�9�a���\��u�We�Y5���	���+����,��iK�\��ʚe�<����z��K�C�&�Hd�bktݩ7<��Gh���
�f�O��fp�+d<�8�Y��X��(�ϴ�s�>!;B�TR@J	vK��U�8�bU�H^Q;O�k�b%�[Q�H���O�9谉����0r�0��}����U��>�ʔV5^����ܵ�����}ecF���mۈr���qLEl��	"�I5��ڦ�fU���2c��W+�O,
���MJ񝁧6���y�?*�0&N�ݚ�xq?�)��>�e�(�	@��qT�Vx��>sjA�i�2W@�W�<K������P
+
�i
���4�(ا����	�
����xA��̓��	1Jz'O����?�<L0,;V|'[�9;j:[��B��خRk�nC�.и�iޱ�T���ݝ&[h��5V�,�R��I��N�{oF|Tn�_|Q�W��>��U����{L�Г�K^A'�96&�E[h8�����J*�X�>�w��yW��+��V���c�*��Y���P����!���3�
��^������%�"��`�ɒ�R������cD@�2�ܵG��5g��L6}*X�l틵�\�"������*����p9������B4M�z�A����65L��.���2�k,0���^�>�G@���@H�ty����Z4iepWt��A�h,8�<{9Ƚ��ǷƶwZ��OY�E�<���Z�)��t#�/�崐�\F7ʔ�B>(���&��6�ld�i��t��/���=�n�>?&s��]@Ν�0Z.3Ĥ�9M�G�6�XI�J�H�Xa�:��C�}��3����6��~>�D��3��U�O>[vZ_�}ס�qN!ʃ�
��-�W� �������
S���Ha)Y���'l�g8=�`z��(bwv�����i:2E�!��`�;x�,����Y ������ߩ����
=��Іj^ǻ��Q�^��_�Yy`���Q����[&aY��Q
u�s0{&m胑*����j)���T�C��$YQ�>*�P����}H��������˥��_�7��!n?Vا(s����O�GRB�X���bG/*󨴉b����E��(��"�lrʔ$Ϋ����dJ�wGp6���
P�/�#j��mtC�R0�}B�j̣R��X�v��I�>(�j=���:E�C�t�V�:O[h[5�"u�E�3W�.
f�[eܫ8�P)�e
�0Rԁ��d.ُ:~}����t<)��/Q
c��O�B��GGp�<��"-G�-b΢�y3�b�#����5�RPCk{d˚� ح6�d��]������L�d�Lu鋶
��LCz�Ӯ��IYs�;�A��@*n�yڢ�����Kˏɩ���E���W���eM����â��x�[�*u����-z��җ�rizH>�������2$�����=�_�����j7�{�!�h7Ύ�|p�fs%9LA�Q,��2��WH�(EEug��&�/�
$̃cm$0^(K_�C]D����i����+�/�TR�hOJ?��N���ޛ j�;�쁳�#��ISm0Q�4W�����Տ��5_��fd���"0�ԏ� ��~D}��R'��k ��GK1(���_/�T��F�Ȥ8��>��Q8����m�.m���s��t�Á��-��`wZ�a���x��x�";ͯ��2�o2�:�h*4X���-hW�3sn���P,ɞ
��"ޗ`7�Nw8ɐ�D\���	�(,f鄝�	��I�M�|؟��ն���k��ÿl�5�n�v�xL/L��M}��ݻ/�Е�um�.�u��m�d>�Nh���&k�Ե-h���#�
+���q����s�}v.��L��8�c|�P=/2�,��T�,��\f��x���P!:*���}��uL�v�yj{C��[��	���^�܋�����lV�͛C���Z��k������9�~�_��+�2_�ʗ����7��%�\~�N�V�w�|�:$^�fH����-œl6��[D���n��i�D�>�=�}4b��=�U{��x�C��u���:����6ݨ�18�=�Z��%�ܓ��&��?i*�V�߻"��z��,K���=�,�5keb �PÒ��}aM)d��Ő".Aǝ�2�An�K%
���%7;��QΤx9:�J'���s�������9��:�(��w��̿s��lt�W�����N�~�+lA�ڏ��m[w�7���7n\����W<9��-N�߹t���i�?��"�;�i�w�[��;L�vP�2�z����r�g�k�cl;#��E�*��b��8�*�<~h!������:�Q�@�qӼek�/��#�@w��ꪫ'���	���r���*2_�2mp�pm��"Oގ�:�wFgR��ۜ����������{z�h?U_3�������m3�ؾ)��[�_�.��/��d��
j�����G�̨�.��+{����7g�|�6w6؟>d��5��;{O"�-��<���+�jaW2�2�����p�����W�a��g��y6&�Bh��I2%��1���S������*�[Ϥ��F��۷�%nwT��	Q��Ķ!=����00!�dP��$O����j!%��l�6bd������[6�,6��`^H�fɖ3V߶[��8|\��M��Q
���lƜYxj�?KO�3��ٲ�%)���)JrGƼQ��̼)���2c�"����^�–�;��@Y5��u�!���'�h��VGTi M9��#�(ן<�4�s�{��������@�e�fQ`�Gy�
�8�L��"KB3�+��fOx����_�c`=C@�d�-T�Oj�+�Jw�]��f1���򉠦J��� ��-�L��[,�Əv�u�&}��z�)Aԫyz�X߶"��M�Ww�P-蒺Mr�k����
4�4L�ZvɎiZcK���U/N��j�a,�a����!"Y<��]�K�����-��������{S��&�,�-��l�5�V�(��DSJZ�������U����+�6��U�Ԥ)�j�ȀMXju5xk�O�x�kC��f���>���v;o�Ău)O[���H<t��_X���4�i�+*�d��Ԓx7)�l��O=��R�|O��h�\��ؼ��E�RD*c R?ʇ�﫯��"��bL�+n�wSB��IZ���^��ģ|��r#R�e���A�>����%��rJ���r�ZN���C�Q�n�?|��x�����_B��*k��gY�n��3:B��4Wͤu�Q�������.�R�M�F�2���>��8�G�3J<ZŠ�r���Vŗ�Y�~P�9��w�;�<
+�iչ+�5�D��D�hp,;ʹ�j���fƼ=䵫9�� �3�Ƒ,�@�('h:���Ƌ&m��TkP�q�8�󨴱�!�ä.���#��Q�{�=����=4��V���#��m���x	�_�)If�C�#y��F��N�������
u����Q�R��PQ��y��Q
�u�:�]�g�*O<�j,0?��g`O�N\Z��\�F�k�rIݝJ%QM	$%G�/-�S_hz��t�>U����֧�c��'��P���fՅԭ���ں�o�>x�,u�����P^��"���������yXdc�i+�Y�_'�z�����6~(+q$��U�;{S<�^x�Gn}���ou�vXt%�&3`�.:gA����'�%��O�0j�@E�w���:���м�jd���q�g��e��<TCB=�nҗ��Cq�+���d������)Ӫ�L�Z��&��ίYْ�bv���sm��������k'm�xl�0�k"���ȓU��\��{ӲY�zY��.T���Yt|�"�������cK����:6�.4L�S��z�D&D��LJa|��+Q����h��_�}�e�Ξ��z�_���
b"	P8^����Џ��>�����4c�&ū��Y3�]��*��tI�*�
r6% ���&A�R�^3��$�p��,a2GÇ�}O>W4�7�6Ո�n7[�Y��Nq����O�e�cu/=�cm:&�4���C�o��<���}��i�A�O6�ă�N�Y�����m�:�̲f3�J�"M��K:�Ek���:e-O��7�
�6��;k�h}x�?�1�/\���g^��y}7�|�4����q���'�7o^�� o.�Uξ&�d�5���v��� ���3�_P� Mp���Ĺ�V�jl�U�	��a^vqǹ�܈\��?虽쪰��:���Oo���b2AL2���9�zXv��Q� VUq��^�k%@���$Ǡ��#�o}��Ts�cFW}�$y��F����$y^2:�����l4�/�m�a���Խ�&�o�L�3Ѥ�N��Iq�!�#��ĺ~������N>�0=�ٞ��bD�A�w�	���O��h��C���Tѡ�
�����֩F�I��.��M[�V�#�Œ�3�z�e�{��EvceR]�
�
�ecsER����n��`{ah��Z]���'3W�0v��Ix�V[mQ�8��f6�4�Sc%�Wr��F.aR�6�a��Lv0�n���=,L	�Z�BU\���]�a�JX��L���7�e銛
ljQƀ�c��H�j\���}MG����ޛ
�[X@"�W�dNS<���+�������#(���;<�"w�~o�myL�'�D���pEb�Y?�~�{{����,o,�RD��(J�bC�>�ܶ�_�dՇw��f�f�s�ܦk3�ގ&��~�L	�=�$&���Cyd�"�le��؄� ��tQRʉ�@*����΋����7����JՄpC��#5-�V�g�o��!G�i
4�&��N�pO���o޴խ�9�k�'y=JS4���/�;�٬����v�Y��3M�iB<�
���(Yuv<�9_�m��@|zU��
_<'�;��^;��#�b})�K�yw���n����o�%���6��,i7�-+v�(�k6i�c"Ym���=t#WRT�����m���R[����na��<���j
X�)G�VX�,��gB���&blц�*�ϸ"^(���^�Bk(tǒD�>f�ʭk��l�W�޼����(�I��d�r�U��U5=^�Df�j}-���:�$r�p(��<M����zM���Ư:|�%7L�>%\�x�+>w�W�؄	O��u���
gq�/�,��W:˺/Ɏ��+�����y+�&��Lo)�	���@�[�@e�x���b�i�u;���:��Ykw�[50��x:��r���s�S&_Xx��f[b�T���:7ak�}���Yx���<5����r'���(>q�-��p�r���o��ɴ2��H��U&�I-K������m�h�ɠ\���YF���Y`��|fM0]63���B�w5�%#�'iH(�8�[*�k�.�Etc&a���Nm�V�JQ�K�T�M��b�X4�?��#4c�왓Q�,<��v�5���?J��	[��J�s'�ڛ�iӒ��Ӈ�C�>�䶵���h��Mz__�m2�7��b�2�HC'���
 j
,J�N؋����
��Luq�M�Z�W7��'./�^L^�DL���%S�	������n��4:O�W���^�o�f߷Rпl�q�{��\�PȖ叙y4*x�Ba�v���� k��x@͗qY’.3�HQ�F����|�:r�Ɣ���9`P_�SRL���
6b�|jAn~<D��N��"�u���0��Q����\�� W��u�ާ��fn6�oH�玤�N	N'�S;���)̓vG�vejO��XJUP��s�p�����s<���׷4�����}��a��m}S�j�T���Y�Cheubm���20�~�t��'r3��:_H7��M�笜�Y���rN:1��!-��z��\�M�a��P}���l��&pq�6�*_U�Y�IG�~O����_KU8��FT{��t��(���av"CBf���_F��;Q��n�qӳ�B$MU*r��g,�^��GD�,I�H:7FD�	�Jl���k6��c'�]�u��;��&��Fb���F��iB�"�&͙Myk�U�����P�\�M���]J��~q��Z JP�$5K���?��1/,#	K:I�)�D�o�Y��:Mg�!'�S��$���M� }��Ê�N��~�$��Ū��3�w��m6�]r׊s���O^�
��ll
6�H�{R�vB����o���Lg(�i��Z�hVd��˂��]�w!��r�<3��H�/����7Cy�Y�N9���Y����@��Lc���eY�֖�Y���$�rz�2�d��k`����8v1�gI1�"0��k�~��,��c�$����ty��h2�^/�sv���骩m{��T���UM~{�W���Ï��ɿm���k�U�ٹ������?��΅s�4a��:���Z�D�g�;�@�V�ם�4����`�gلw]x�/���g�o��L���v�w�'v��ڟ��ڔ��y���K<+<f�>�Ǟ�����~NF�=ΐ7�.'�h��ٖ�}�t�)v�SK4�Yԉ����s]kW��N��-Я��K�`~k��R�-^���"9BF%`%5��S'$��^\o��;��NKM#_5y�<C$(V��*ޖ��Zj�����/��IV�Z��et�M��k,��x�C_m��{�ۏ\�ʶ�k@1�R�+ې�.����臬������t�и�����l���=C;�x�|^c&�a=w���9�9��p�t袋�Š��7���1��R���1@e��a�����<�3�w6��Lj�(
~���n0K��M.��
�E�aR��I��W�1[S���,9p'��Y���P�M>�r��֖
�j����K�g�M�dn7Y
n� Nl��ݮ��m�G��Y��N�̂0�9E&W�K��b�K�|�ĸ������JﱵWr{�ݷ���kQ�cZ\2�R�؛�O����ۡ��_��h]��Ը��y��&܈V��;~��M��/�׭�n�߮>�_���[.��/m�2������A	�q�J���{�>��L���M���8�A��f��]��'�v�HTUO��μ�Ń���̚u\�eA���b�~�u��:�y���nw��������ݥIٸ��$j[Q�����V*b�聇nE�C�*�ZɭE�o?҃�&k=�t��#��=�K��T�rf�W�Q�jJN^yٔ������Q�W/����O��o�^�rr��j��;�N�M4I���`0wϚ� _���ߜ����!Io���uz�#�3�tz�i
��k�j��m��f�L�'��k�
^9�u�Dћ������Vn�Ǽ^����߲r��n_����CSC ���"�6�Gi1#�W���0=p�'��]�@8z}�Q/
F�"�̒��&=�lF�w�d�F3v1��F�uDFY�V�'F���`.bN�u�䡁��V�l�|I׀��ɷ�*�~���)���Z�*�!+��u��Qv���C�M/��vԂ.q��c���Ys��,������wD������iN6� Y���r�L����U߲�[cr�c�q5)V��!�c0�31;�B0ތeG͝Ua�V��NU�e�	�(��;�;��|d���;��_T��A"�?/}�M�i	���;]��w�t7W�Y㰛�n�����Ng��h7���E��B��7_R�E=S�x�V�5P�s���m�`�ržYa�������z�Ra�t��	�k�����_�F�=���dVٿgC��j��߇%��T�}�[��n.�Z$��Uq�:�ۛ*<gg�n�Gh�(U?.b�=Ђ� z��3ek�
4��	v^�QVJR�T����+N�1�E�y���D���;Y�C�+�dN�A݇n$9�M���Ay��hpJ����=^�蹭�%[ҫ{���\r8L^Rڠ����g8�ޥ~�a�d8U=�gP��'�1�.#l�
��=ΑѬzR6��np�~[�E��fn��G�+y��|:���f���E˻�~E׶�M�ʟ�]�����f�}jE�3�qMOϚ���{��d?]u���U?���#�/;��s�~���򹃫ؚǀK��-�6�B��'闘̵�L��gc��g&�=��G��'�
���}�S�唩���VC�I�s�y�����RCM�)�r�d��7&UC͝w�4�N�sc�a7�fl���]t��Tw�ݵFè4�o��u��֍�2�B�>#o7(���J~j�E(�EM���-P<��n}�en�pt^���
�^<���5�fͬ�>3���/rQQ@��Wヌ�����(�Q��Um��)!s���G��7����ꜜZ�4���	��…U��l���ڟ��p�d��:�Cc�e���'s2�E���;�u�*�'����$�]"���c4��}�
v�zyDz�ɨ�n4��bTF�.b4R#�P*��~6��t�jt���ŋd�ۥ�y1W!�ןD}g��lْW_A�4R�/�u|��]���P	�Ǯ~��:t���[�����94{-�.�ǀ���y�A��0�� �x��6-NMv�M$�c50g���hQ6����1���B��n����W_u�s��;B��E���g��}\���"\�a���Q=�#���ͧ���վv����1�ŊS�Y(R.i�[��9��Jd��QӜ<0@B�Nya�)�j0Vh�2쬄�s��O�eP5>I��~���1!���-�A8ag�j�Nq^7�6��e��/�쾇ݳRuԢ�Z&�U�EJ��l�p�Yo�<2�"_���:��97�9f���阎���.�!
hI��4
Rk��Cj�G�Bu+b���tQ�P�u�/А1��TZ5�����V:+�zp��8��j����y\ST��!�zr��u8Y۸$��Յ�F�uFY���Tj
+[k�j`�GŦ��+�yl�֦Y닍�4R����,�+��h"�)=��U�>���yV�˕!��V]�Z�8G_
jW��p��H�� ֬Q6P��8=w�Q9�]W���80��9���{��z$�5��p�+��҃D%ꔒ�-��R`5CbJi��h�EI@����x�Q@��-�J����h�n��א!7���#ם��Y
ѣX�����2��M��n��Ɣ���i&�#i�x2n�B��~��#��}2n)Ͱ�.w��o��B��(��Y�k�"��5n��G
PTF����;�N�Q@�(�奣$���%l7Q?��lR��P�fB!w�ҤJƝa�îG�ٍ�J� �vK�g�WOӬ��L_�$��t���a��[!i&�M�>J�LBf�R����%�ۣ6!�o����"$�,J�{�l2"Qo����#BQ'!"#����H�:�.	o	��<�9*a$
<1ʔ/-
᪠(J&���$�
f^o�ћ�<o���n�!����A���E
fl��5
��H�<�o!ͭ�(�p�N��tH¼բ��.�a.�&3�!"I�:L�fsZ�0A�:�A� RE�E�b"`��\�`qbѦӻEA��lr�Zg0��_
�X0JX�	�Щ��9�1��"BN,�b�q�H/b�I����2&0�6�IM�U��%U��	l�I:D�Y%�Y�K�xí�AЛt�PG$Lx7��0lĤ'vluۏ�x���!"Io#�E�NF.�`�E�b�Uo���˘'�\�y�
����~ّ��$�(�d�Fnd3Haz���I��+F��#�&�z��h$�Yg�u.����X���l��b%��N���[/���*W8����BV���0f�^�@�`^y'/T�z��:h��M�#�$��<E�H,0���A��o�a�,0�(�i"!1”_E�63�;�x���Mr��X�v�uaQ2���C_�yY��#"/輘�X�Hp#9x���1@1@�
6�	Z ����m��݆�Q���D/��.T;O|�`1�e7J:�^G�	:^��&#�a�A��$è
:d�z+
a�(�~�d�D[��i��F�XVX��DX�F�'�
:Cqs�����jӎp�q��2��E5!K(����K�Wk̙�g�ط(����h���P+���R���^Q���-O˻�h�@�&�l�o�%<x��j/ޅ��G6R-V|l��ht��iL�`���xlhY9��U~�S�㨆ӵ(�`*�J�|�u���(��xn\T�"K��L?�
gKl/j����P�[�&�cr�n�l�*�oEŅ��u�̬۝�dU���F�W
5�\�1�v��C@��4P�b�|�M��e�^I�]%�S!W�}�`��*�_��U�<���(�cnu/�Xxh�w���
���)��k�0T�$׻Z3
^�^v����1e�F��g'P��JAR�#F��,+E��Y�@�'��C�K�_}B}�~:@ŏݏ.��g2��K�.�L�KZy��,��ߍ��6:&5Fs��n���-Ț\%��۹I�dn
��[ɸ��@�i��5�]�i��v�$��t��W3�L\�	C^\L�>}��6�,����+�7���
�g��2�.��;����H\Ұf��,-Jǒ��Ew\��B�wjǎ>�fM�.��.kl�Dj�.Xv�}����mW\:5֔j����K�ضV�3�B������S��$l��&�ijD�YdIO�~q��!�rW��)\�3�
H��.iT2�R
˔D��'�i���>-�(*�Q�����o�c��$`������g�#A��ꆘ���0�����ߨn������7.>�x��;w,yc�?�Ơ��3����6I6��1�q���	���($�����,��Njwܴt�r(y��h�2�l{s\p�@5�H?��]�J�Hʽ���<l��n�h��'�1��P�mϣ�So���7i��$��½݇�����a͙�~}�Z}gP��$���6M��h������M_:�~z�{�dZK�e���:s�/޵�bR��+ʤm��.F_�����-m�AE�L��ǭ��s;�;��\�激��q9��:��L0��hֳoȰ�h�mS!��S�b���f�D"N��� (����(�YqG�"�Č��;Ck%�mD��D�͙mvKa�5:p�5��<p��Fi͢=Oӛw�4�->�g�Ihh�h�{�� ���e��f��
�zUs|�+�D�W��xst����-�}�"��<;�p>�#��?���X;$}�u�pȖ�ow/�&�ν'�dޒ���M-�3�g�֛떤������$y���I��E�uR�
;�5�It��Б��f<�n;u->b��{g���-:��6ާ���>�k�0ڹQ��s.A�,1��xB��U\�tBBA=
��)~�3�.{�ҍPa�~�OBP��:s��QS�=��:Uf�s1�K�ɗM
�@����P����s�y���gQ'�)�_�@\l`�|N�1�6f�p�p3��,Y��,w�Z�1��~ט���On���oy�'�Ǘ�lfC��W�?�Ot=��Kz
����(U�QC��dP��n��.<����=y�]��S����d�2�K�Zu���{�d���^�&P�^	q��h��E�AakF�Q���7>�<�~̈^�=Qby��A�s�X� Gr9�A���ժ���`�	����Ε�Mʆ�돱��,����,)���4K���ݑ�Y���Z���?0J�d\;|���h��~��ki��?�e��v��宰�����K��v��2�)i�9J��cj��~�Uivo��	V޴�ʍX�~�eC�k�ˆ���Ɔ�K�ڰZ�n�߹ZX�ko�n�퀭���:�h7Τ�����G�+Ș��}I��]Sfn"u�!�`*��ئ(E3	��M�N�4���j�nRX�M��Gs/Mtb������RS���{i��+�-��v	��a�J���u�3�Z/�WS9ZK��]>�Ɵյ�68N^~�i�>v$�$�&x���;�ό/n�Tu�������
�_�p��d���R7���#ƌ��]��Kqk�^:J�1�)Ǥ5���$�2
;�ʗ$X��[���Z(ޜ�h�J���7*�%2E叙#����z�g��{��hLK,����M�������#�ǤOkdւ�n�n��V����Z��Ħ��پ�[���ȷ����kV���%��ʂ�:�@S>Զ��}��S���~�.��vm[k������l&�ż��V�L��s��H��uvM[2���/z9ն���.�S<#y\�6 n�G����fmȬ@���xʃEӻe���iwX��D��v
[#:b��L�_�hkm[-�Nٌ�E��Z~�emM����%Y��뛮��%���Zbt�h%:���9}6xn��.��^%,uXF>�.1^�x��o��U��Q��O7��������}����\�1�B�,53V̒ׄ���'Ō�z�w6�7Oi�6��o_���rU���qp��,�1���qOi#*�n�;6������F(�Ny�'�+ܣcT��q�<e����LA�"qe���޲Sq�x�LPQ�W��Q�W�y�h�Bf��M���(��[�vL#���ۛ�Q�}�;��Ε��˒-�$�glY�o+�s8q�N�er:��@B���p��&�*АB�y	�����RZhMKy-Gۗ����̮!��>������3��3�3��~x�h�4[� �A�=,O�c⋢�rx{�+=�.z���f�G�A=��SM�ϒk߉�kѥ1|���u�g�<D�k~>�\==j��=$��rR3�,��xٰ�U`B�!��"LQ�� �Jc@(��{˯��F�/�����4��3�i��bM6A�
>A� �0Z��������(�	��zc��d�I
Q&������Z+8L�T�W���&�� ��a�Q<a���"�*F�S)1�^T�}uМ�5`��-q'6nh���־�ڻ�O׬��%��3<h��%r�ܿ�e��	:b��
VY���z�l�N�]6��p�/oyiOc������5x����r�M��{�>_�ؾ��v��5������>9�X�ru�ʓ�3�r0�rd���e��t�|��¶����L�d_���*�5�hct,g�}��W��i��\�<�c�s���p=�i�v6��l��۽�N��8��E�߹�����ٿ}aq̈́�s���+Wߚ
D�ٶ�D^�؉>[DP�jq\j3t��h �d[�)��7r��h����UW]�jiK�97���
X|����/����>g],p�K�4�Y�W_�ځ��/&���-�.S���0����+���0:��A��H4bc���7o��|~۶�F�y�W��ub����^yV{1���
�o�8�����S8#(�緥~���w�޹�jҢ����6��ĉ�"�h0P�T�	u)�� �$�`]+�E:�E��q؎�W7jD����-7�(3�uŲ{�Q�l`Y��$����OC�oɊ���= ��;h�>���E3g^tP��e����N�B*���ʘ��!x�%�	�֙�Y}IK %�ep��H�	�ZR�́�H�+!)�ʵ	*	1B�1ˬ�B`�>� &�)ç��	&��
���)��,~�)|H}��ؚ"����od�A��[�aO:)�禓�G����wLr��(y����ļ��C��g�Q���#[U�N��84��~��c�!yz��ݰ��ҔZ�3�;z�ss��.�F������M�ؾ�1F�SI`A	��4Q�ByE軼a�"�Oi���P��S�b�nByḰ��XK���G�����`SVЍC/|WM�߫ʪkj��v�!�:�|uQ�(�U�Ϝe׷��]N�#h<;�����v�U{�}���f��j�H�%X&?	V�u����~���V~j����6���A'��MY�v�M��!�GP۹re紳�� ����D��k�����/�s�)�k�q8vI8��#x�
���G,�c�?��;_�?��!��sy�ٯ3��ηw�>w`����||����t���u�P~I�����hh�nE/�&�j��y+���ٸ�uT��S6�o�o�O�oh-N�p8ޗU��2$�u�]������v$0$��
c���߂��S��T�6��h�Bڭw�.ci��[����ҙ-:g������<F�=�*ǫT���9� ���r��%@+�2�u!t�ޮՒ�2#��ލn�A7�A���YQ��Ⱥ�U���ax(�Ę�[6��b��œ�8���{`.�92q��+vK��$	2�+���p��*~M�r����Vs\IΤ_!���j)p��j�f�]_^ș�P�G>��*�K���h�q��{F�A��
�lW��?}�'�M��R~<3.(�[v<�QHPC����c
}I�br`\~`8��{�;N\�w��Yu��I-��U'N��y]��9
��Kp;�+��I^����^�V۳dv�9!Ns�߁��_倻l�1p�~�G��� p�F#�:��:ԅ�[���	H��˯�����쀿�":s�-@w��;1n��3�+���U�&���97��ϳJ�:���W���ja�3�,���)���a>�� ��'Tgx4J�A�]ԧ?21:��yA�c4�Qd�8�`��b���4�D�lu�*�l��.]�&'� ��N�Y	�?�_EJ�OG�#�y�n�	^��TA��/UB
{d��Ȏ��U�}xX�1r_i}~8b*��=�^]W*s->��K��d��fgQ�U�(��s,�Ze��M\�����]2�)�1
��$l!?OnG'o~��P]h�꙾V�'���E���6Fo���/�q��+Z����jz�*�S`�O�Ɓ�| M�U�a�����{o���0�3g��}�(骪�5�J8��+�5O�OWU�$#��+�����Z	�J,�2Y��i�n���>Ŗ��X���p�'E!��4�l񺻜��i��	S�(�߁T��R_ʠ�̈́�$^����ŊM����O�wޯ,�cӊф惞�\I�`�T)���&IX��3��W��
Sv$F�ݸ{�e�1�fH�ț�aw�(Q �\�9u�\����O�x���7N�Ѝ�%��hۑ\W���TT۪��˻�Um�ʂ�j���r����S�-���kU-����n�E�*+g]4u�,}���뮻mf��msM����X���9�U�uu�UNGQ>+���U���UG7O���(��Y�A!��9ې�#I�%�y���\��gf<�/
��Z-H��L�HP&O���E�Z�:�3.&0B�}�H������`n�(�.�Y�2�,L�~�]��Da��x�Q�`2�:��6_u>�6��)+���{?�D�C�<���Uk��mb��~�c|T��`�ᾮ����&��
>E�7�"B����1�����;��/��� ʤ�A�$v�Bf�������Ytج�G_))P@	p�7�:�z3hfa2
������:v(�^&��m胍���ɛ�7Mi(�&�+�;��v�v��&����1��S���	{��\ر���%���W��[�7m�nYm}������5q�oqQ��ˊc���^��nBq]�dZ������CG6�\i�9I/�����`��b��}��ޥ7���5!���pa�r�H�ٰ�)
|��\����n���@s�؇Ӂf��s�޿j��Z�V��+m�#~xd���	���Iq�|Y�;$���`k�G^i[ي�F�T�X�
*�Ql�N��+����xD�Ց������-M��L���[J�� ��ϧ����},��i.F,2"B�G�щ�����0��~�Ie�O��Ö��[咛���o���}�T�a>��ľ��/���o���z>�E}ʋ�`v�z%5Q��l��ҥH��+�+��l6g���S�Ô|�B��h�8��ڱ�t}C_Ꮐ֣*�=��d�[™��M{�W�J���fw.a4��4���D�o��*��V��VA�8�sP-��Ҟ�}��A���"�
�@�"Ȥ�����t0���+|�|E�4N��Ł�ݓ1	�9��)*���Y��Ѷ����QoP��@�	�J�2��::b��?2�H���ϴ����3�Y_�n�x[��b¼�Y1-��M�ҧ���i��.�#?<���e���n��g���_�+�w,��1���?�Q�`���tt@��܁�
�w|3OQ�������ozi�/#����@ :�ۨDl���#����w��w
k�h�i��Sy�I����M�@�$�I��g�QC�3I/���Iү�RО��c����}>�\!��Б��c�k3Fʷ�׌8'�חe�d($lٷYS �hC�:Sl��i�,�ɯ�䝂�<d)r�$�S����Ib��T�^K���p�+Vu	i����A�>F�i��$��柌��t���n�_=���Pp��T
�;�(�3V�{I�D{��iEZL�I
��sҢ�c����"3�[*8#��^NG#�c�`4�cCf4q���&������E�:��r�@B��$�=��D���M�RI��'���04	�'yP^�?R���xS^�3�Ԡ��j�"�����!���p��sm�h��g8�����G41$�G>Lx���Ny8���.'R�ԇG@"�L��C�8S1�I�.u�ߣB�G�?>�����sj��6�خ0FƆ�{�1�7qD����X�SJ�Rʳ�R%F�L!sM(�~l^0�������a�v$.��X�V]�Υ��t:�J��t����1�"GЏ�e��C7�aR.#*�f�E�|[r���X�\�p���M�[�\c�3�����`�Z�*�؇q�fPW3f��!�u������6�����1SJ���rm�o��XQ�N[�1�c�_.ʁ6�a<������K�#�QGRs�7�gc7�P߀s���ޝ�to��s02z�r�����{V�{n͕�{6>]y��T�Њ�X����(�|�'��׵�h����%"� ���׫��{�i���`./Md�!����]Ђ�[�x��C9w�<�X�c�pKC�a��bP�#lm�Пur�8�/�^�W`���Mfs��(=TA��{r���\�X݃f��?8��:4�g����d��<�Pm#�4Vo-Y@PV��p	�׆9�1JȺ�C�F?��!i�&0���I��SH��H�o
7A?�U'S��C]�
7�4���O��z�C$���=*E�L��@1NfY�oȒ�:4�����#�}n,�uN���\}Za�gi���~��@S���d�&l�'�Y��p}�@�&:y�0�o�)�@���}H�U��q����Ss��G��|����@S�
��$q�Os�I�#KH�OsY�d�Y/�R�����&5�@�ѩ�Ff����k.�`����G뺦��Ÿ~%�0iB�7}�y����1_��w�lᆬ��q�_�M��R�uŐ���p�t�����{��JH��E�2#�f�,��t��D%Q}�:�0�Z`�1��
b������W6K�+���b�d�
f��e�+7�r�JLZ+S�!�}w�P�3�wi-V�6�u���o�+6�]�
�`W��d�d)���P��L �#,{yi��*�+��ӕђ�����	g,cʺ9^V'��0Y�2����[��g�?��)M�������~0�9?8�21�����^:3y��+�|�W�#�ܻ�oط��
���{^GǼ�?]�M��=p��K�W
B��K�捋fljh9i\��	���ȜE��Κ�Ι�v���ÿ+~긇���}�$���9�3&�E�4ɹDR�u$���c���<�a!�;���Ă��Ȃ!ŕ�1/嗋X�v��`�t�K��e�K@H���2؅�Ѐ�8�6T��jLeˍ4�T�,�	.��7:́�b���x�*GASt�=����I��,�"���G^H�Pu�e��PCn��A�	�G���W�fD#��OR~^�e����*��\�����NY���LW|i��=��<��ѵh�ώ~<�h��o��Btt��U��]Ns5x�O��|�2�lm�6h��ݎ]7;��S���.���i����ZU��\W9�?�[��ڜ���Uj��u��rl��!�.������D߄I����D1
�'�G�W�<�Qf���BŒ��*1S8�)�Z:!
)QH
��I„Zu#��v���Ro�o������ 5��\G��zx��dT�f17e�E�X����\9�ZAm�vP����{�Lj�	
��t8/��Ҩ���9��ӥ��%���}�����	�{��_�<`F��=�2!���1��������ʔ��ۢ�n�|�����o	v&F��H�/�~�_�:$���n��Q��$�ǟ%�~��:���٩2j��2�A���l0�l�Z3�q�єɢGĉ�k&b
����i[���cu<~��x����sE��U@}�Mt��nZ4�01yS�Z��&�l�^}o�_l
Ev�k�����`�oM���M��`�7-�����҈����lXd�m��)\Ԩ�HA�q�j+o	�ƥM�,Zq�O��,�eT-5�ڂ�C���$���(*��9l�R�:��j���j:��+�=����ҟ��F���k�*WE���pIk�� Y�j.8��J�
����
:S�5��G^М��F���m���.䜼����CcT��@��%������kKH.!�%
��ud�)�kAA�T��1��x�7�*�\�y��p���g�
*����5�U�ftL���1���ń��Zm�I���j42`���W�Y��c�D1��_��-����D�w���|㟥lS�2�4�B���a"
�OR��z#2���(Klq�h\X�*I��_-�4V�.��7&޹kxp�����1��*{cG�I�	0��ݻ�
�q���M�e�O>Y��c��
O���*Eu�DmO[,���	�f<�a�#$�K�0w �>�s�	�6�W�X�����6�����b%���֢Bۇ�ߕ"l?Y�k�Z��&��|�l�
��!��\I�8�����
�|��`�&��1���1�P�/��IK)����){@'ZY�hv�&��g�
@6`�	wE�&yI���IJ9D�I=A���b̚�|�/����H���u<��R	禓���̘*���Y.�F�E���vP�ߡ��<�ݓg�Z�E��=tL�T�"&ǣ2=��"��ǾG
GL `D݋g�9��X�F��Me������
8�~ErnE�F�*�Mlu|BWY�Bv���i��J~{��^*/m��*X\�wt��˥e���R,k��T��$�ӈ�� �t�R��6j����<ڭ�'������E6���ZhP��q;��q>D���@&� ��찇��NQz�^�~y�
��@^,,�Q��`q�q__X(.l�{^��/�/T8 �c�#*b�i����&�O���a�S�	�l"y�$�&̲D�s7P�u��
=j\.Qܑ?�҆���|r���z�4�ʻ�}��ǃ��u�fůs���fB�Q���B���Ev^M9�4�$?��8<�"<.��L��3�j��L(L5��FV��w߽wpf.p©��M�n�c^��8(Uν>�n�.K�e���y�@��{SF׆�{�`�|���73���7K��ݒ�pȕHd��Q"�p�(@dY��T
c�T�YKKJ�+�V�O�wd�C$Zѧ�tH��ο����n� ���w��?�&i��G,���
蛙�������|шD�>y��A�-@K��#��L����җ|sĩ�i@3@g�M��/<�X��6t��\��_���e���y�̺�q�*�������+j�/������2�����<y?�1!�Ak(���+����݅b�������	��K�Ev��_��X���V�!���{Q�:�_���׍��u�{Zf��u�>�+&�Z=�9s��{�]	F�l�Ǝp7�@��Ŭ�7G��/Ð"�^9M��4%?�}e�%C�i*�fFi�i�&8{L�?�p���G[m�����Xګ`d�l�'k��&���cb5n����cd`A0g�	-������X
R��Y�<��z�ŽU-���̞w�'�
v�8�
j�BX���V�����>�ג�k5`Y�TT�j���,O�Ƨ.
�f�ء�6;*;��Z�dNywM���"��0ԈKՒ4D=#���eL�p�E�H�6_�-�8��(�u��wʫ���%S���$��#0��z�ޓ���d%NQ��o�c�[:��@~ƹOq���S>P����䬕�}Ǐ�{�"�f+�wm�3;�a�8Z�x����
9�a>�n
���
f�|��}�X���<C�;�>�ϓѸ?G�c�"[yg�����g�Y�Q�@z䛒��K=�"�aU5v�:t��o�p
��I+<I~��}���*���2�E�$�Ď�K��ڿmO�l(4��{��_ծ8��L^�6�i��4��K/���Œm��9]��e`T�%*��������~�?"bH�)Ԣhr9�>���'���	/N����AO٠#HzK/� �]^z� 1Q�8��0�)�]��h"� ��+�_Ta�U8�i�cm<����ǥe�}�d���@ų���Ac`h9�NQ�S&�ݫ�M���XK���X�~�����JЃ͠�X��)��=Pԯu<�u�LU���A���i>M�7�:u��&�e�V�b�{��u+9���de�n���W���jdS���X	6>�A8ozt�+�$�5�Fv��_��iN�&,�����>�V�2��
���7>��#_f�
0Z�Ҭ�`>�&$+H
кe���H�!oڇ����և�h���N�+?����]����¿�0Ck~��\�,���������?0evg�φ����
�cuH��`�s$%��C_�V���@D��b��Q���R���Uͫ�YA��$|E���{Z|u���a�ޡU���_C�Sn�n"�k� ���ǥ�ES��ʇ�8��A<��vQ �#��\�W)WI0���#F`�w�i~m�!F���Q�R^�ȥ��H#�|ap�m� �#���gaH���F�A�>�
2}桫��j����>��M_d���d2���/��?�(�J�t5X�O�wN���n�
���r>-�|<��+��> ��z?=y
W~>����<����W䯀������\0�gj[�y��c~޷��CՀC��C��<�9O�E2VnK+�g�j�2*��j�~�y�\'oޱL+0+1{��iu�W7*�v���o�ܨ��U�j�Fc=��|LƦ�~�߮��e����˴P9i�̫���ˉ�~��d�
9y��r }�u���f�**�?��8��?'a"U�[/�͑zyU�@��ʙ�p��y=�K��.��۳�H+9�ې�3۽��R�NgQ l�]�}g+D�d���3E�
d�٠�C|=����"�猖���D�$����1���K��/%���c�io&5�O���p�F��r���r��re�+��9�Sn*���Y�L�I�D�#�#�@	fq �패����a�#���'��b��}=�I�\̮��'�
Z�h|,=��:=(��T"����)F`E�E��V��j��,���Q��|�FQ��_�/���a��|2�r�K�bIx�X��^��b����I�&��$J�t2(i��]�NE�Wؗ�,�ޥ���x�V��c�m�pF&+a�)
�����z؇d�=�>���>1F_9�=�!��~S��`�����;{�L��|c���pn|U�^;�-�.�߄�m���"��;�aX�(��Ȑ�1|Y�Yz�_-�^U��{����3�u��!��C+Hn9��d>�)Ȯ�˵�U�I�ͧ@E�$*}���*�~�� V���9�_��X��AW6��Я5�D�T��@BlE��M��+��Ք��d0X�v������mRf�Fu%�T��c^�*-q�)tS9岠G�)A�o�jYJ����}A�8�I}J�J�e��<Y�s�����\�����X&Z��?�kUY�Q2�*�?���q�C#�M}�;�x�~Z�T2#�h�n���o	��Q���E�^y =@'��\�]��ce}�溞z�F|�`ė��з)���芛����/�����%�g��@Y@�k�K��ӟ*
�E����{R"��p>�r(��Z`Y~Ir��Ximf�)~�U�(�0�$���(���@z)��p�_\zv�Ow�^�9;]�W��U����5�c(?	z���?ܶ�g��'�h��N�rG]u����a���!z�"�!�`4y��p
�A72E{�\G9 �T2	f��t�B��IQ�
W���sxn�R��P>�#G����\(:�4Q�S�R
��7�~�F��9�����r����@ ��:b�Q&e�P�3��R�N�ZD�%&J ��~�2�{�@1H��r�X��/�SV�18c����Y�Ϸ����w�5��m��4�����y�� �/T�4"9�	|�O��"u(�M�(�֍�nb.e1�"���r%��	�ӆ���ڠg��t� }*�ݶ7�DH��B�lg�]��rt9m72��Z�.��T�6ku��u�N������^�=���Œ�B��a�F�_�l���cY����@2n6J
�Ea� �(z��6���i��d0[\����Ioھ�fЅ�<����j���W��}�q�G��9�aM�\WWr�!���(�^�k���=s��F��-멜�jH ��NQ���k��p�è�],/�?��nM��b=�Z��dy׻�p�Q�/{B5T�)�~�+�������0�c�ы�[�p��kM��[��J%����~uD.7Jwuw��:�l���{��ٻ<��X�rf��qU���bÆ�f��fkL��v�[����R�^U��O
���[>p=�[�amEeĉ�u�B=\��,�UX�簙ŀ�b\CӴq��<�a��23'Z����@�cA��"�H��Qj��H}g{�;k�����*Sp�
g���Y&���3����֚������J��K�V~c}l�w�]�O���h���p�h�}Rm9������x�q��fQ4���j��sD��,/�yQ�e�H@
���ʋ�u_@�WaJ��M9j1�2R_%�F�j$��l�g��P� 1���l#�L�щ��t�JA�8�g��,:�F�ջ����-�
�&
��|Q�5Jp��l兡��Ep�d,��$c� Η��Q~�(�����QOtu��1WJ~ɲ�1��dSʨ�H{�pTWؘ~I~|K,y�x�D��[C�K�.��.y��?ґ
��}� ��i(�v
�h{�R@�[u1)�s�"�>�� 倢#Ҥ��Za����͍�t��a[;Ogxl����Ll��{�]W&�#3�l�����w��G��O܏�z���a�5xs�bV�3�w�g�ug��=N~%8w��o���%q���1c>(G�3��J&�i�J��t�X2�E�4}��	{ѯ���D�VV��"���o�N��`4���~[�b���1BM%�CvL|"0�-��m�}Fq$Y"��;(:j�ш-��P=4]W�	im+�w�ԀvZ9�Z���ی|d涋���]v�8Uz�xc����]�N�n�Sz묝�-'<S����hC5�j<Ҕ������	<��X�*��]����r��j;sjQ��Sp��{�~5�7���������A�ǀf
f��
|�:�54=hGq���A�%�xIl�w�J�`ޔ�Pv�,��K�7�E��oA��������瑽o)�n��6u�,T~x���.��{�>{=��.t������(F������~>WZ�Y��fu3 �����i7�Q�K���T��
�h2
SF}R&�U���*�0����,	6�1*a��p������2Հ���:��:�A/��J\���`�����`�A�I��_/�q�ZΤ��oޒ�W��z������]����aГ�2KV�@o��/��,h�Z�[��8��F�CwЗ�<�����O~��p���z���7Q3�;��{��a��N�
�j�i�Z�C��1�j��v���WqӰ^�@ub��w���+#!δƮ2��_Y��~�t�$ّI�)�s�";�g�Z�A���Ie���ߔ���Z��=F���a�V�;vk��u��v�f��e��[���ϳ��}�{���X�O��V���`^B5�	�����5յvv�NN�y�J���>���)�M�`h�3�ͮ��sw�����׈�sR����7mKWl�Xu���8wN�Y�o����k׬?��޲<�;Y��(6.x&��U�8����ǹՓ��9�G��̯�/��!��?��C#��F�l�ndB]�]�y����u?��y;��x��m/1HB�
D_���A//Q!�;t�B�!�Ll���
1�q]e������e%]���/��+�
�8{k:|�K��V�U�Y�3i�$���a�m�b�A���l�]�V��j�oin���ݮr�.xIA�-��>�9X�h�J����f�3�U��Va�����1s�8�ٗ7R��mD��C�1�/Th��&���Dc5��[O���`�L�o�F�E�
�&_ug�K��y��%�:jz�%!W`׌��O�t�\�hԆMKMgZ"��
H{<ܲh���䂥3BNOsim�M�6W�˂͢oab��x�+@��]�&m
6����b��Z��ؑʩ�������;�G�_^��W�"Z-�F��E�/�.�[X�Ge��#^e�Y3,1h@$N�E `���u�:�i��4jA���y	:�
~�%���|8@�0mLtJ<����,�a �Z��Z�Qx7Y�fK��'�_�6��=�i��V;h�
���vo�8?i�;ZWd��u�.�;9 _�H@���X~��w��+*&�V݄�0����Ƴ�G�3y�&��|�����fsGj�lO��8�vN����_��Z�?��dy1������BK��:��87����+��UZf{R[$��Ґ��&w(T��5!�����=��.M�dnEk2�M�=2�������M��t,u�������E��F�q7�-�_���	���h��᢯��!���ZE�S�Q=��w�"���6�x���o�גyyQ�;�����aZ@dԋ�c�?ڭ%�<�%]C��^�%=Dhtw��2}O�g�����+a����9g�5ԸA~i�j�]���i�Xc�Ǵ�Xm��ŕ�c-��
kU�����¢�HQ���.aQ��i�Ӎ��.�nz
~L�C������}S������Paa��#Tf-��V5K-�=��?����QU�qx������l��#_X��,��U{/�~|<�k��J&-\7+�gC��ۭ��֤IoMN/�t[S7g�q�M�>�i�j�Q����?�iځu��o'?<]�~��d�l���p@����`��K�ys�MI8�p��j���
�2�2 �A8_��;�ͪKp�A�u|Q�_���_�n�Ng���)!(��N��iU~�[�^��T	V�mCg��-V���祯�̌���$e�E�z� �h΁���v@�ba��p�(��[�Ӣ���~^�՘�)��8oy�#�k��m�>-��<n�~�"5
>��
�����`,�g�0�}�`���O��1k(O1�F�N��/�2���+l�ESs����_��*3	��- D��[�H�
|$>�h��^���zN
�R �%� x�N!�+ސ�_SR���C�Ap��4X�e��tf��+XO\7��뮋/F�ä�hZ�,����:o��EJ���R�b[���hX`l�� �@��6�)��?��l�lG���z��0=,�E��l�#;��B�cY�[�7�?�6��s��>��9=����1���,�	���?䟃"z��s��`<�h\������Ȥ��?,�/gyLI��h�k��������h��6�ҋ��;��^׮}|���GioH'a��n��C���ҧvѻ���KN�u�����u9/�m��Br��h��S�����ڱ��t���b9���y�97�e�4��O�1�
�ĺb�.y�p����vY�&�k�[�j��_8��ӟ�籺��\$�����%i�2NC;q��*O��<$����~J>o�Iz�wm"8#�e"���L�
�:R�4p�E�\t�#����)_�����/�9�^�\�-��}�\��_���r9*G��B��pH~}>���jƊO�f/a�A���l�}ع0�3��wW��r�KDoSB﹄E�;N#iQ"�H���������܅ :��3�3#^�b��Z�=.*�t�7
/�l�N3�/]��#�Ԋ�����Yo�������d�/���2'a-�r�a|�ƙ�p�g+�}C��2ٌ,��KK��K<���]`�m�f�k��Z�̱��&ˆ-�NZ��hn�;������]�-_T���Dך�N�jڢ��������n����NO]�eOȽ�P4�]��}i�CS]��I_%VuY[	��4d�oD:9a�*�X����P}	�3��FU�.
����!n��S`9^ik��3XWG	��sJ�Ayx�4͢}}4�WN��Ik{��+B�6c����[���z=k�K���L�w|���c�\k)��[�����#��^�
'�?�'����xP:̚wky�ݺ^t�Z&�gX�^��Z<4�\k�r|�Ur�H�`��4͇��>�pk�lw�*iB�U����
~�u��㪗K�:�_�m-\b��l@jG�C��1`�Y�����*IbQԟ ��X=��G��,�=�i�[:�[Y�3�
fȏ���g��Y����\���.۸����EC铞���|;�� FS[�Z|Q�Ё>	��Y�`�-tSkESI]��S�q
`�k:��/�mդ���7�);p��s�k~&�*�.(�O^ް�o���P�T�Q�1j�}l�~e6�w댂N�è�ZU�@����N�fIb��b0�SB�4��T�V���q5H������`9�;Xed$i�8p3!3@7��f�%�St��3�����w(�<�K0�Pp`�3V
��2���zO�.==��pF�
^���NA�_�@Y�ͨ=C$�QU簰��0�J�Xf'��
2ܪ
ѝ�jg7��]��Y�`B��ّ�o�~��S��+W���cy]ݬ���E��X,�NO����3a���^�����A���P�h�,�|ы�Ζ���b����
�h3�����\�(`	Z����?J/�\rh;v�bz�rX	�+}.��w}��H�7�1��u+���2�"Itҁ(�6F�'Fݲ�,�tnʒT�`u�,.���Zb�z��Z��p�8O��è������{�v�ch���iAs33+Q9�yA���f0�*�!9�*y��`䧮x{�T�h�a|�����)r�(��h.��77���5K�U�?�?+��*x+�1���/�/5�a_Y�>��7f�*ojB�(���%�&�4H��� x*L�T��B<��q����J7����;x��Ē��B1u9�hԏ���0��P7����@š!O��v���)��c?���p��Y"��h��#^��ކV�!ю��@JI�+��h��
X�jȏ3n�A�V�p���Z�C�/��LU�:4�q�aE�aa. `�M���1�8�@���
�a�)�p#`�DIq�hފ�����ո>I��P���!`6���N$Or[�F�Y��-�a�Mz-�J�RƤsjh�6��4��2@ =?��4
y��i�o�O.6��&�@��ƪ��8
g/��"�*,v�h��_�.�@k�u��-X�+v�&��N����8,s{Y����k���UCӂ�����v#���tᬘ�Vf����(:fi �46/9�����-e�h�t�GS&T�#h����*zD��l�B��J@���]���BZG�z���ղ��2Q�\g�9��Fc��6i�,
�2�F���V;䝎�+�	�(��
���S�@�VL)�ݛ�%�NV�
�:a���E���(B�?M�����'8��iѪ�p|G��A����5A{�z�```]wxB���a��U��&$n�unw�/�E��!�l�t�g�6�tF���^���`r��� ΀vM����s��²=j_��/ʷ�NS��\������ֶ���B�rgU��X4��9��m�_C{������3	�Sj�Қ=&�@�
h(6UCZ�E���J�`p��j&=�`�Z��JBsŌ� 	�aLfɤe��e����2�[��4_�6���{�A\�qڊ�
%�	k^�q��TUJ��j����Z��l��pU�Hݖ�ym��ĠWO�Y\jY`��B����x�q�z�0`�4?������1F��Q���K���n�EF��6�Ȏz2zK�����g,z�B�y|�Dk`t���鳲��T�9
v��C�h�
�h��nB��Ӻi~��l/�t�kc�k�6�x֮r(r��X�c�7�L)��D���ElP���{��W(@�*��M1G<n�I��Dz�@y�]E�R���U�l��ct(��,�P��X�
/�� �|���;�a�P_EF�VP�a�ae+!4�n�sE���Zl^���a������BAF\w�ER^PE��֯��x��?Фg=�M׬K�N�9���}h���wO*��%3&w4G�=��#�|%g�������e�pч�߶�C0�7��7�7}�\����B��u�J?z�5)�l��}

���2։����4��~��r�T��s'Gj=��{���!��-�[���;J+T��8�4���a�(�	E�=��n\4���SX&��w��T��6=�ӑ�������Yvo���욲ڢ��?���������y�<��Fs��X�ޫ��p�<o6�,3�>�3Q_\Uܶ��eIsP(���p�[Y�m�\zip�G>�6o|��v��ݫ�ȃx���Hwx�IJ�Q$�*c�|�ZBSʳr����_�	��t���B[��Q́����F��&��F��D�Ǧ���ݵ>�F�F^n�4Ļ���H��dZg03�����LE��-6tmYQ�y��[���n��[uZ�]�k�]������O-�\J�XwP4�Q��g�8�vi"3��b����N��~S��Q��K.���B.S(W�����b�
��d'~L��Y��R4@�lm$�����/����kmȕ�X�_51�
i���sQ�����u ��Pf���������`�>y�It��/�&N��K4���G��K�� �a��t�=��K��2��A≫
���l�6��Q����K'�?���
�ݛ�R:!+<y=C�HIޔ��-}P&��{�&�Z��{�aV� ꒡p(�j��쎒�,7[��K�8K��J�-�UY�̢̧�=���b�WJK��U�3�~�cD�/�fO�~ԉW�aj[A
+8�-$1�,q��'�3�A�#��	�<��a�#��Φ��Χ�ܶDـ��Y~�h��yu���&����a��?�e3(A'A��Z��qP�N��$��n�6Q�#�n������,�t:3��aM�7���,�U��Y�ut�l���������Q��x\��GF�HmI�cԡN��IC|`�a"�3��꟔_~��ק��l�A4_��˗
܎)f���[*,�o��C'o8��q��	�M���}�����ѵ�~�ʿv�
o�8^��q�g������"b�P�`�q)զ]�z0s�o���ؖD�\���3'��`�P������‚�p8���T?�æ����"���n%�����W���bPI��%���b���zB���7%I��/���ĕ㓑5�M��)k�S�h�ˍ
��1)T'���Iu!�؀K��N>t�³�BGw���$Iz�5��08�;6
o��b��-��b!�B�6�� uٳϢ��)
�)�e�g���K�Y@��\͍4�VB���}��f�$��9�z��x+C�#�…{
�i������<�A���ǜ�J=żT�g�յ4�k�B�(g�j�t7Lp�:�d<È��So^�,��齺��S
v�5k�u&sQ����9Q�c��s�F�l��ǜ��-�	�EЈ���`s5�Dr�Yu����o{���wi�g�����a��m��j
`��I���hf܄v�SWzM?�6�YNB�&C�m�
����@S���Y:�h�k�]һ 0��b_c�␾�_]����|Ik�:�dMZ��#�kv:�##^55�ZO]��ƬN�gc�D��#���5XJx��b<VDz/ql��v�:�Nk�(�>[�ZBPCcH�TT� 9F�Xe�*:��~g��b��m�Q(�-��D�6n�]]}�o�
�#�˧�Q������A������?�����W&��M�d8��qW�������а�cۼIS�@�.js�1����/����1����������
Ņ��9�l\>�$��6��e��b��/_�S�fŲ��'�{n�,8>;�l�����O��0�0-q�`@�6��m5
zԡ���wգ��2���ӝ�X㬞�V�K�u�y�cRT��9��|�b��$�O�m���k��Ǥ�%�̣��bgD�ܣ/<�/��_ʷ�_}�~P�D�x5�(�߿|��o��m��C�٫��g��ߤ�俾�
�F~VY�C��N$�m�k/4U9�'(h, 6�q�p��i�ĢU,�i8hx�k#��9�dwz-�]�|V�ٲY>��rI�@�ڒ���\0׷�˷�D]�}JNJ9���W.h���,cи���	�H��%,g5<R���آ�t�p���,G-�޽c�5�'��Z���)��>���Px� j��̭�fvU\�hH[��m�\h��5��՘�;;9�i�6_�Q��}֢��c&���;ڢ���1��9-}>�W��Ab�
�.c)�In%�UD���>��,�/h�021�:�AJ1{+��������[�{��q��`�)���~�jo��cG����j��1iL�	�b�*�i�dS!2}���5c�����a2�Z��l��d��iˊ9KqsT��ɴ�;;��afT��U>���%�+k��b���GY���jQ��,VC�j)�[eP�����G<����\�x�՞[�]�jt=�~'}�����6*�#A�8����ϭT�2�
�X���bK��p��D�Z�(�����׷���e�!�?�����x�2�K-_ȥ� �5‚���Ap���~Uj�,{��?���?�Z/���g�o�~�ڒ�����[
"m�'N:����L�a:����h�x�>�,j�Q����
�8�;Ѡ;�_�+B��U�����۴�}���K�Pkj6u���O{�{�i�I=
�?��s~����^�X����@����,h*�*#���Q԰��Q��3aXHp)Brk�$,1J=�$�����_ߥ9���$�t�0��us0�(L�L>��(�U�3'�)˲��X�|bk�{.�$�#��{��b�*��M
3R*���V��.+��r?Q~{���3F���O��]��j\��x�	�_�b}�*JpPh���=�->"�WT������>��#��БZ: a�^�a"�/�9��$����3yɘH�y����❕�;�/)��������a��Pp-��YVt�E�z�����k;K�KC�m�?���9��i�N_u"��iS���"b��Pɦ��˿	��w:�W(x�7��(c�غ��D��d��b
Q�"!�2��4�:��n�H��%Ux;�R<�4�~�:w�C��������r\3��������2;^q���]��9�;�ʉ��4�q���6{��;���������-g����*����{���t�G�w�GUe��{�{�7�f��'3���N���zh�w	 ahb��(Qv,(�Y�ZP��ς����� s���L�t?��?0���}��s�9�eq�r��>��rt<�gn)�Ȼ=!^�?TG/�J�鹠b��{5ق&�:"@�vd_Ү�C���i�I��M��@%����})6��~Z�s��yi��
�&��zåU���C�C��-F����
���uMΜ�|�:��AY���A)j!�ff���íYKl���dD��x��y8��%
�,�̓��Tj1E�xB!�D?A���Ax'�?���ą�h≩}�7��5[���X	����� ^n�T�?��A��M�����JY��δ��
rx5Ͽ9l�R'�5�����Ӹ,�\0���b�<��0J���$�0�6tϥ�Ly���+��@��۷���!�A'���+>A/����;w��S��@ʇ*���]N���r J=�R��ҵ�Ԟg�u�H(-�]�R���R�$l^����}��{���n�"<̩'��T]���Gh=�:6�'cğ0J��1�HC1��T��O�k��0�q�)�}F?H}wÊہ�
�4i؟�q�O�m�'���ێj��%#��=k3:��)%���ї�¾�袺�s�ql&�{��d��ܑ�xMJf�W8�O�
	��
%E��T
��O�'%�_�I�h�N��$t�Ϛ"������58>��s�dO2~�$��3џ�~�烌V�JLL��L�dR��Jj�ˡ\����䰼�N1=f21]8��GЋ���A���R�yã�[f��
��j�S�G����Z3GZ ]����&�D��� �g`6Ko��$XL��	����ZU�}xRy$��f��s�w�,��J���6�ؐ�R(���K |�F��K�dU����X�:4��r��i�8���Je�~Y�h���O!y�΢��R>�z�Vt��UG��V���w�<�����0v��&���7TG����8����Vl����Ƣ!;�^�8O�W/�&H#LD90((ѓ���?
�a��)A�m�!�L<|ئ���%\��ÌL4⏕`n�?`�������V�Wk���h��b�+i�Ś��b�%8t�i���5���@�/th��$�pK�套��s�����G�X����h%��bɻ�b�/u�5K:����`��Ěc�bֈ^�:Mžr�ݹ��׶gY5e�\pA:K#xs"��N�t;�f
d����B�C	3�v���Dk��/���U��1��ղ9GsX-B�����C<��27ǽ�� �M�.E�guL�͋\y��Y6��{�Zbu��y���E�5%���.wA�P3}�S�nc�e����z�5�2�QYͫx`�բ*'/Η���C�i�~��E�'`ciE�*������&9��ҞKA��#��
�\���:+/�c)q!�r�^=�{�p�n7�\ݱdq;������z������kڗ,\�Ր9�N.�N�[�EZ4��w^/<4�z29愘�+GU�=��0R=��9��#}�^�)t�r�����grt:��".����^Q~;���3�ʪr�mNEE�@~��}P�f\t�z���Mբ�I�`/81iS���N��M�PV�v�<_aO�6)��h��N�v�9dy�X�O�JA�1�`S�N�F�0d
���7�����`z�$�
8g0:�a�ї
���Z\f0<\o�����qg�~1�?8`|�l�"�[��nb�1 �Mys���B�'F~���Zb�vGN���u_f�͉�k�E�/���˚�>����6��D٘����HN �T1P>G��O��6g��\��=������WNe��qo�t#u�z�:J�O���'�)�%��A]4Q�WC���MR�&
�$%�j��¢
�7�Hl�%�Gm�P�P�F� ���@9sBM�\���+�,u�`4c�NZ#�,�U̥����.a�L��Q<4I&ũ1��@��aWN�]��P9�h�^^�=T0}�\��$y����'�Ѿ�Y!�aE�D��*��n�Ĉ\n�E���*���e����S���4Op����D��1���K��r�2B��}���qj���1�Ʀ/T���
7�8K�YY&�駵��l�W�S�J9�=�4OG�:�ٝf+\����*Z8�N�ʢ�g^�@��$�|%�-ϦWH�M��VLR:/Q�J�h{8�s*dX�J�5`��j�[p��k��&UY��b���d`l�&��L�S�Tr��@���t�ڞ�)�{i�E���ڲ��Z�w�:��0Th���	&�!̀\��V`)��;^��L1�C�|]ߢ����r.-��8��e�u�J�|�W>R���N��r �8x�A���#��b�+�<���SfL�M�6�e-��
!��d#_��Ԛ�Q&��q����qPB�k����A��(#Zq�Ɨ!���Jp��l"�1ײ�kI�ZV��p@�?-�=6�S��s���,��e:3���eZ5���R9+7�N�9��In�ۇםX��gCSٮ嫳lmu�
��,�3��m�9z��O�PEǰ�B^��r�������F&B^m�c� �r�4�s�ͅj�\�g1H9T1rFBC�Z��0JPh��w����an��]b�յ�P5��ނ�G���n��W��g��k�uʥC��?■�ͮ��|��@�-^%;��x>�@5e�yA�U�9��54mƄ�Wbp�\!,�G��hD"��	3!�
鄛HT\�6H8�`9L�E5t�V�\�)���{`��{����
ꔻ�@`N�����{��9�瞞ݷ�v5�ٛ:W�nY�u?={���%�1�4*ve\{z�?gm��e&��b+hP��9B��{�
O�Q,m��ճ�U[`l�\5zH�ṽu�=���`��zr�������X
~�UӚ
�gv�^5y�#�Q(2'}CW��Ks륊�O6��7�Րo6k��C��D��&PS���<�J�N��,\ՅDe�PZC1$ӡ� *r���1ѽ�c�ȅOQe�4}�TB��%"�9:���v̀��OHn! ˆ�"B]b���	��PIH'h�$tl$gup;0y�\#��0�¸iI�q�Z����!����-z9$Ey�(�WȬi�����*/c�[4��\6����P��u𹚫��H53�g=>㯳�X�N�o�Q�5���\�8<��O�n�����}�թN��h
f ft+x��2�����mS4���8�vו2�
)ѻ����$:(��Z�1��F������bpB�2k��Yc�ÐQ+Ꮏ�n�#�4w��ݩ�/��+�kO�T=�#�ʶN��=;��3��3�Q�
@&.֯ɗ/�oD�{����L��=a���M�M=I�����;�eχ,'���d<�FO�c�J��wy^��@��L�{��i׼���ɥa��r�q�SY��<�.��'\�J2���+��]>(E��5�^B�K�1��g��Հ�bAt������p��7o�C/�Ҳ�j8�Q��Q��ޢ>”�Y�nPj.����$Qlw�����[�Dž@>����|���rF�R�=�v�?$k�sH
�L�k꿿��
�N	�\|D g������C ]<xF�L��_�=�	�g�L/ۅGI��^�TGd�e!�ɐ�2e���Ӻu�}��9�qt�t�;�GT�{����Z�DIA���I�ɓ��'�n���L�S���h��|�	_D_1 ���FO,*������4&0�4�	�aDr
�g�ส����غ��7��eS�pW-���5���_�ԧ���m0�j\�rM+9�3ZG5mj!&\9�m�ޡ�xK�X��E{��W,�����҂*��s��1�\~�m~e�-K�q�ޥsV�7�]�����E��,�/p���ț������g��K��C����S���u߮���׿�{]��^�>�ݭ�~wS$cw��T<б�|�"QDRMc����jI�d*Y�N5����~w��Q�Hպ�A�k�3��`�$0	��t1B�(_�%�Z��U�h*\��Tz�R׋Py��Rя�9�h����`A����s�d�Ӭb ��ဟRX|�
N�j��hZ��; �'���h0{*�A��Z+�ehȦ��`�<����r�����^P����Hm˄V���}��T��WkO��' �#gm��k�O���W.���Q���ZQ����{�p������=4A6
Ҙ‹B�3?��#9���Db%>O�Cxu�'@<�����>W�8���-{�j��>���9أW�9�.Yz&�o����m�C}�s�1��e5�\Z<rI�)u+�Z�ǹ�/���M�7��/o���Թ���}蹡���Ѱn��YV
[3�ܖ����L�����\�����[ 
�/�)UC���2�x���&�#fz�QJŽ�m`ݲ�k燚G�>|犩��]�C�-`���.��*����
�4�5��K��}_.]|[NIw��z�������d��6?rp����%�K끼5�kq��Ag�Z �3�g!B��E	��R�Ǖ�>C�l)I���]{�k�m;���sZ���=-�C��s�[����֯{l���|~󪧭�[�OV�ƀ�#@��I�k�<��I�{wKk�[�V�?Z�����E?��oxtϥ��A�� E?P��R�>
Tk	�l�R"7(�/��C��m�Ue�@$��8��} ��,�	a�[ҳxq�^�Q:�ZRP��j�Vu�t��%n�2�f9��ر]7�~,�U�����n�6c�6:�g���ѫ����+-.?�M�&��fv߱����s#zV�wq:꙱m۫۷��c$_�g)��O&�&�\@�b�d�3�4�n�'B�X̡�<i �!�h%�D�ĩY.�St A��8��Mt���x�+8�����P3��M3�� '�
�F�<�,�o���w���R����dž����Wd)����+L����Ӥ����>����1�R�;�q�"��LN�,`/m�O䔰m�8���F0�V���\6&�������yhM&��t�3J0��`���g�����@���5��zzX�—#�Ն1�o�ԠRڮ�T�}�V*�y���p-����"D$ן2�pԓ1 �8��G����0��7O��y#��xh��(���������>
��M�s�wL��iw��:&m�H����)�yi�*F)�I�$q�����K��wN^�~2��I�����6JU`>�u���<����I{�2��Yp���)\֤M}��$/p��3�7��`r�$����k�㹗8AȬ�UP��L`��}�QLda��~��TW�l�i	�f�Gџ0Q"�쉠
E��oE�V���-ȃ�Ǘ�1I`�|�؁����%Aݶ�����8���C���D�À��H�R��.L4I���f��N�H�Ry����K3�{>0P5m��h��9v��y����ռ��%��M��|Vεz0�cQ[}��У��cvg��-�����3���盲��^Y��)��Vؿ�娢V�ԳV��B��a�\��Α���.ї-�&<���_6��0�¡��0z�̈���B�@�}
��0�g�I=�FS]�+(��]`��\x�����\J��
K<�WRC�Q�4j:�s�ۨ�ۨ�T/�.�Ez����Gq3���h�9�< Fv��Ķ7a&�8�P����3���(���e�ӊ;8�sd���g$�"ٔ�0&FD��2@�l��D�i�az��s�B�x�_�o�:�@	B
Z�IH�\�V��Jf9
�J����\!��2ٙ/��:T��٠Tf6ˤ�v�jUȡ���f3T��F������ �����(��KZN>��R�q�bN3�8��ʔ�ʗ5
f	�j�A3]�֚�@�Z��Oj�M$%��RN
�Y���[�w��z�t��e�r�Z������l�JYV�����9��q*� �N&[��5���L��[2<2?��K����l�*�}*�g?je܏�Id���?r
��`�^1�}/U�߃wyE�|k4~N�T��~��Wr�Z�@
�څ_(�Z���V���T�%��ZZ#�X�>u㲻�^Eo2˽�T����'��v�����	<Ր�*`��c�N-FK�+���P���
��W�A�v4?JScF�'�c�7���3 ���SR��Ӏ�\��Q>j2;�ⱳ�I�ܯ3s:�,([.�edW��=s
~��=; �!F�Kl*`D��ǯ���P 1�I����𿐁�I����
�Ș,a�8���p�c3X)W�W�`:�5KQy��7��j$uE��|p�M�5*`�l�h��$��J�6�R/#�������4*�8B��ݺ�ؖ���WX.m)R3�fa�-�v4�+�JP�<�g(b�v��#l.�؄�+�a���攀��³�eGw_���HXc,�@�u���-���ѫs:�f��p{����(nX8fQ����:����h�o�6���֏E��:�~�D|%�5V'���8��jK�mڿ/�ѐ�K'��oB�vNg!d��K�uK��,`�靿�����|��Zh�����Q��f$�v�,�>��%F������v��ځ���'�C7�8-6��F�
�@���6��a�Y9�_��,G�o���Чͳ%�{#Q�kA6>��oh���ͻ�㥌��d�����͟���_G����蓌���/t�k`�R�Ӎ)
��|:2r	�⯿s<�ʖ����5E躉�]���]Z�m/x�Ɯ�����O�	X�R����\�r��o�yt�X�Q]��$��^����Ӎi���ܠ���*�nR� gf�5�/C�7A5(�1���������G��u@����|,J�$�4
�DI������ID�m��x��8=9��="�zc�����q2���wНv�ȅGZ�5�5��!��_�u��*�Zm�ߴN3^#�7$��Q��LZu%!^AI1)��91�C|G�D�M��߰A7Y݌:֨�n;VB�������NRS�q%y��o|�&5ز��g��t1��cL���0�o�1Cٍe��^w�>����½!6�jf4��K��	Gzi��d�ߴ���L]���/y �r�E��F�~ӛU�Q@�߉��`��1q��Uwb���\L(�bY�����%�)�
Z��Rlҿ��˪��0-Wi�UФ�I�S��+�_!���y���]����+���r�=`�'tv7{�������}��1���{\ǃ��$
��c�ϜZ��;
�;usg,�kv۸U��߻|�oz�r��PQ�w�Gb�����
���"]lɵ\��{h7���{�‡{8ֻo=`����#�vN���_�2}N��$�sSz̙Z	6t6��@f��n:6�i�!�T��$"�W8=�����(}�mZ�x}}5hK�ż�{�8P�޾7�yƾ7�^:�8,B����7l�{�8���O<�Ĥ��lt	�j��C`�)7�a�9��J��l��6C/��?4g�Z�+q�+�Ia���Ʌ��������q&�g����w���.���yE�Z�EW~q7������K&*�/��:�;,w��oܳ����eCk��5�7��n��u��g͵�&շ��7����ڱ�f�}����?��u���P��;�o>r;��N�}�z�t�Pu]C<֘���јs�Uۧ.����
��o bo���?�7�g�W�� ,I�$Z*�!N�|˲f<s&|헪��m�����:�?������^K���g<���CB]DSX�I*᪤�hs�9!?+K��_���_�%9����@�s
Nz��O|��j������ĕ�D�������A���i���������$���ڇ��~�>��z��Qtc���+���k����x>�7n�鸧��H1���L"�b�N65�|#.h��d
�`/�0�뉚�]R�>�[�K�����R;tHdNk�Vrh�*�<;?G��j3� d4���	ьi��1;����^C�g���&c�P��S��V�9y8xqcn���蒳�ѡϷ�]�j<B��Y+��<08Һu��%3\Nk��&�,�5��E���O>^���	�閪�8�����w<:ml튵ݳGV�t*�魏�7Ϛ�q0J����g�!�=B_Sb>7L�S���*�J�&�o#�'����q��&���]+F.O��	s��!����qLCDk�tK���||<Q����~J����%�� U�Z�+P�a�8�<5xz���y�μ���ե�6�d/�6���w�Xi�<t�ۥu��o��[��Z�/w��΢��%E�e��R�?���W�� �h\��z�SWJ�}e�@��Vf7��:xW���$7)�{t�֓�Et�xr�֓�t�ʓ�]d�̪��u�[)�'o���%�C��C��Rnj��_ރoI�rL�=e8�=gLN���;�������h�($Mj��Q��\�������19���z����:�)�t�^�=�QZ�	zpƽ9c����ɶ|Z��b��dY��T� j.��h7DJ���)��2j�F��O^��d8�P��
����7lLč���1I#n��5�peZ�����.PaӤ��f��[[��me��1�+�ًÍ-�'����ŭ���+!���]x���ds�k�J?���{ӻK���բ!ő�b8c�H�d}M-�9zTg4p�ӹdLd���5�,t`V~�O{��Vͺ-yR�%�-�jO�MfsZ��2v|�u,��e4�����O��X|����CGl�����ZA�z��ĿMV$ #C�. ��F��+�&��K����#Z��(Q�T��.�
����D��U�ΐ��?8���X�vP�s�;ֆC��nj��vZ}I�
5C�<wMW�4�ć�!'
�]�qJ!g��]��K�ה�G��J}�VV�>���4c�LzbU�[���)���3K�!w����Y�޶��o������X�q��¾���é���	�[�?�b(\�5�La�乖�/{�s�a��t���q�/�Rˀ�Ɠ���/�=����V�!疕��	�r�R�|��B�DP�xt���|߳eg)����V��A"#�^A����qF��$ڻ"��d���b&B��%�+�ձ�����a�6��U���{�����n�m0�Y�o��M}4�Ғ|�y|*������I{���6�b=�}
��6d1y�ݰ��=���s�/�}q���U�|gF���OS��1�
j~��;q/^��u� 5�eZ�XnK�Dk��c`LSU���xM��֔v)#(���&:�!��PU����Ԥ:��ˮ>�eKqGe��6(ABO3�cC~�QgTh&�*�F&��ak�[:�V#U�J���5.Ugp+*�¢�*���f����=�c(ך��W����1^��4���٠.Q�K�� w�ƐetC��<�(�a,��z�B��0�������V<[M��>CwUc:�y'܃i���9�}��^<� C��08C\�OPE��^1��sZ�R5��Hvn}}n6m����p�b1,	��P	��������؊����������A�1���e�Wv5�wǽ����#
��h�#/����_]�ps3:��������u�8��i�fٟ�>�0��[�v۶�D��Y�4���a�g
�"DR�9K�v���H�R�]�S�Pŷz�Jƛ�3�в
����?X§)�V�F���1�I��o���0O����%�eœh�yw����	x������A�;�2ބ���I�>��g�vz
�_�a�p����^�i5��ҕp}��ϛwJ�9���ˉ�lԔV�4��W5q��H�>.{�C[�|_B�>�N�=�^[��r����9�^5b�U�Ιv��J��ڂ�k�|�߰8��Ng��NJh��J����,�J��A��9���*��r��D��x��0s��{P�6_WF����j��pm8Ϛl#�)k��u?���!K�́�Г��
V�{=��ӓi�3a��3�	`�F�`v�i�n`�n7�<2n���7�un�h�C�"�$T/^B��dG�#�y�Yl޼r�U 5)� ����������嘭���C�/Y�Z��,�[,�r�ͱZ����h��XqE�~D�jŗ�=�k����q�W[Y�$9.��v1r�q�j�3�܈�m7�%���q\���b�r��2:�.�G�!�D�8��<��%r�ըר�i��^��`:�X����+�r:]�<c�r6� ��yi���䜂��?D��E;�x6��@K��Ih�u���϶��aں��q�V-���6u��U;����V�3���V��Z��������G�>E
�;B4�����1zb�_h
{b��#g�¼��p9�t�(��J��8!�RY'�%��saX{�D_�!"8�d����r50�.&ʷӾ�6��ې������9�p:��X�	�q�w�3Ϡ��h��u8�e�D0�7D{ s&B�yf��th�sȤ��'�7VT����
l�L������.�/!�”��.7����5��^����FV�=.H*�^W�R�֮,_�0.�iW�]��ee+�ܸ���&��w��o]M�P��{�(a�W���80�=���p���\�����qZkք�΁���w��3�V]��"�K��f��E����J���ne��*����k��T�7�*��>q{-��ȕ*��Ln�w��WX�r��.� �ҫ�.��z���=���b6���9b��X`-���Q�
�@�w�����?qm��Ep_���|#�KW�W�%eB�3µ{ҷ��e(�K@ږ��˃K{�[@ Ǹys0df		��Q�9��)��8��{!�����p笯k.�U}�>�}�kk�׳v�@�՗.�q٥W�&���o����E�3C^?C�?�G[��۷��={b<}��a��A�� ���ui���������p�(u����iW����2JM�_+��X	���^]��"�~ǡ@�)��<��MN=�B�ó�M-�L!�mL!]�}�c@���ж���\��%��:����%K��o�`���*�*�|3�*]I˰��@��uXK	{��(|I|�~�_� hq���%� A_&A%D̠ڍ��ޠ-hCxB>�Y����3�=��8�:Y�7bzS8?%,���S���/�ҋ^$(3H�ݝ��H�
��$��#�BL�*��f@��p��O ���UF����ٳ\��@ݟ����� ��e
�
E��H����q��uA�o=���S��g���DQ.����b�&.�{���f�׋�w	Z���%��0���.7�s�?��?���~���u�?s�Ȋ�	�'D�;F�F�����El��188:����UgFͯ_6�m�0c��YV7w�U֜��'70�6L6�rh��+F�Z�|T��~����815��5ipM��V���OKZ�۲s6���ž���b����D
��K�읁;���!�f
I5k�%��f�poZNK�$p�܉���7&�x8"~����}���3c@�qL4����GK2m�
<J~))��g�y�8s_�����#���g{�œ`.��ڨ�d����"J�ϐD��1��x1"".@�P��9�~����O����QO�mUP���h��P��O����
*4�V�}]�}���JV����7�l�˸{����B5���寷I�N���].�g����[h���`����/����]�����,�lr�ƨT˛k�2y�dB��H�㍰թ��rё��
j�[�c����	��eЍ�c|��I�O����!��E#�� )����Kx���2��_��$ϳ}�S>L��5��	T�N�y���#4��I���� <1�BD��,5X
a���y���$y�R��c����T��P��YL�єP�����Z�Wfj��z�A�3��*S��Us(�go����.K�Z�!���Jڊ&A� 0���%Έ��-B:�)NゝKg��u\6��߸~��-o��_��wSg�+��g��g�C�.�f�$����]H�x�G�h�c
�n���@d���V�`����2���]z��uܸV�J�h�s��UW���+�w��,W�D���}�n���O���Ӥ т�f�}́R�j5��Nͧ��y�O8�<lH�.�6�N;@{ ��È^x]8!�D�h"=�eN��2�3�x,>
I����$�,>�扵��pB��]41����+�R���KH���)'!G��,�~%!�z��}���< A���
 ��&�d!�t2�B�	��&Jd4�1Q���4y�A�I@6d=c��2��/c����~�{V̢4�������Wwv��Ñ@������|'�]_41�z�J������qKOtT����)��j$4�+���ӎ0�K��Q�1��sm|�~2���k����<L�*3�{ �̟��t<��$E�4�ou�ఇ�.T��k��@�/n�H�9��� ׇ���̙ـ޷�`x-�m�K�.�]g�àD�C���<��'�Ap-:���bxJ��qh-,�
��Z�̀f���h7��,��8�z�	b��ҸorL@p�G�}�`)B����0g�������w�f��h"j2G/��ܓW�KhFI+Oo,WԢ�!H�:��![l�pϠ�5{�Q��i2��m�^S�W\�׀�d���}ﲚ��-%?�I����.�g�+A(�>5�oZ�DnH�����g
1���,��:/X9c^��k4y�UzK<u���L?F�+�MK�k�\*J�bN�	fS����^�)���P+n�J�Ɓ5�j��q΁�� �'$Po��aȤ������@4�3F�0F|K�1s4AsA���H4/)�\�E�%�B}��cĹ�����
y��4O�ő���Zl6�������IQ"��r��c|Ւh�	���%PL6��;I�9!�
��%�6y��d�y�H;c�E�B�N�sw�W1�3C�I�p�oz^�tf&��Ȗ�
0��	�'�p5"���ϔ�M���bĈ+�̹)�i�;�M��~����6N��)yӜ#$���7������+����a���	(���gL&^o2�ypW%���0}��O��f�+љ$�Ȟ;`�P	��G\Nk�F�h\.���qp:u6�hġy�Pm��
J���*TY�V���qz6JU*����pg:�!�Ǥ���L�&���rʥ2�>�q�j�No6�y����u�4vg(�t����N')&]�tjJC!�S�F4�!�H!C3�Ą'$O={�b���j6i���A�9C�N��@������<Rb�l\��8M�*�A�R�2H�Y@ZA��-V=o��V��������C�n�3���,�v�0��56h
���@F�QX���uj�΢�r�*{v��*�=��
�&�G��[|�����-J���̥Vg��n\=ؐ]�m��#-�� �CA�0��
D���\ dz����RӨyx&�����Y�rHa��!�Cx]�9<��!��
)�Q��q-�*A��V�eЩ���s�B@�D�'��K�@Tм"���Bj��J����|]�jN��1|ʔ�JW]��N8�v����.˫����Td����@vqMMAn0n�=�9���nz݋I<�`��v͛���w����V,]��)��}nKu��:�&~�&Z[�ωV�S�c{��V��\�<	=����
��z��h�$¾l�J�4�y�ڪ��@]��!�j��cf�I�	�۱ᚢ |��t��9q�'+�,m.C�]�m+,A�m��3�Ҷ�R�{|$举��AL��1��xs�é	�Q�oxg��A
�FQ|4d2��Z�3���7O@<��q��BF_��x��E�	`P3� �C&��	\���E�����txa4s=&����L��g���TH�^!��B�y��s�'� Ẹ���B�IO��6H8pb�t
�(AD'���h!�Lv�<&Ap;0A�+Q��D�o��@�(��IyD:�h]�9����
��"!�Nl�|X��t��j���Q#��'�cD.������L���&o�n�6]�uɼѭp�B簄,ٲu�#�R�i�xk!���=7�Ⱦ+��Eք�=~�:�r`6�f��YK��>q�z�|jP���8uMn�˦{��n�2�z$aF/�K�17~��;��D�1c��A����2�=��|�ɪ��x��\T�>�m�:��V�����b̗����o�}Y��n��[�7��}_Yj/��c
�������7N\��v�u؆-5\�ƭ�I�~�ĩ�/��,H]>|xq"�v��JϠ��
|�.(D߼��*+��੧R�\���N�?��h�p��;�$�O�UU��Ӂz�Y��������&�7uj^�c`+)��4�������U��3ұ�sX&�:��t�q�{,8�q�d>�I�M�L]��Z��
�E�M��1�V���C9eV�H꙾r�J	XE�E
�֣o_��r�Uxv��|0�'�5�#G�T�O�|x\��.��P������ި�D�K�8�ć���GK��g�d,�Xo�3.A	�5 $@���k3�7_� ��c%ByN�;I�p�M����h��Z��UT�M6��;�$��=��=<�RI��R�5�c��X6IQ��!3�;*��j����
n^��JC��C���Y���z�A�H����El��E�z@.�Y!��ᩡl�I����%�����Y�@Գ2��+���^�����D*��ԿV"���h��2-0�e򽻴2.��tKUr�]�����U��т�@�@]��������b��ҿk�5���ԥ���-�:�TB�����
�nz��҈܄�
�n"������(E�.VX��䫋\I^X�+�PM2q��2$��E��)�2����(O\"�DO}Q���
���:Z��B�"g�[?�kDQ3[]����Ь�,e�R��*��7�jw킗��Ƥ�w��FF�P^A}AA=�pQdrע�ļ�ڲ��3�3<�KZ5(�p���iE�UeR�<�Y�PSy�Emֺ���فl�[�ոD:�F�]��\�%��t��e��=���겒����nEix�ܹ}���v�de"<���j��y��Ԙ'�VB	� +�ͤ��~p���c��2�D`J[����f����^��D�^b������zw'�V[1:k6������Q8�4�W��9ii{�t�s1p΁��WKZ���9�Z��ْZ�]v�>)�w��gys&�p߷W���7�z��0	��D{�s�a�tD�����]3jA��%<A:�'���b��*CS?�s�2��"�7�;��U��Q����_|��fڂ(J�Z��7<�S�^枮���l�_Ε �C�w�0��D��_�	�f�
�ė���q����.�40�:z�89zA�ы��.с� p�&M[Ԇ�4M ��@A�����0��e2e;q��e�e#駄��()	ܭ�e�'h:]9D��.��PNު��R��O:(̺�KW�����׽#gw�j�k7
��'�7^#����~MG]i����ׁVf���P�m�-~r�r�8���5-��rx5��*���l�Y�l�g��֯^@��=q�Mx�$eq��R��d�$p���r�~c���Ӫ�O��
K��\3L�sS
lɾɷ?��o[�^�
 c��R�d�Y��q�Eh?z?�	��M�-P>���������SVW-80�{��Wt�N�B�D���[�����|�D�`��-��
�BU��0�?1�D�ɠ�X�T�Fv�K�R�8�������|dO�2i�M�A�<�xaC<��2FI��ϑ�(����
�^?K�&p�\1m�G��^����^	u�4�98�r�l�P�DŽ�Bڜ�'�����Ȑ ��N����^;��L��h�]�D5#�47�2uպ�'�u}O�����/k�[Z�5�Vk��ֺ�Ys$Ԥ��q���L8�>9
6��ز�4�O�Iw��������I~�y��~4=�:"`h��0*� �6���4`��F��)b�r���#��!�f��"G#jS1�s2�_F8���t�r}������]Fs���u9��b�W�������&S���e!��n�%~����g�!��a�����?F�D��[�&����N��תM8�!�
!P�+�:lb�mV������̯�ֶ�s�Y���[�cD󂼊%t��H�@`������u*	za-�N2T_⾗���+��Z�R���>�Y-�{���=MA�<�ɭ���;�����S�;xށ��>\�23��[�'��4�'��͝y6�d��F�[Ha��,��rTH�*��OQW/J��UZ�<�֋�p�uB�L!�LH����Q�X��P���u�%!�]��D��kա�m["��)���\0$��R.w��`б�s�Z"e�bEVŸ�]�ӭ��(���8�&t���{�+s�^7{lyEN����K�5c�5�*���.J���`s�����Z�ϙmW�'|�������/w��;.��Ѯ�����x�`�m����i3._�#�����,�9�bn�Vw�~�6�(���b#0֟��d�D�0T�پ�0)�H�-^�L��*K��l�D?t�0̹�Ep�|��e,��u��O
�=���k�v�g8b#+�6��B��'G�|b�Lzp�ӓ�ʜ%���?����ϔ�O�����3�<?'����R@�F��;
K�9m�8�T�ȶ��M�bHq�S3��'_b�,l�ಹ��_a�R>��1d�~r������Q�|ϻ~���!*L�G�Z<�C-�%<
2ɴ�x��X�n��W��<{�;dmKQ�U�&!h9W!s�Dߣ7��#�w_@�'��|�Ļ����_�������o����P����F����>�K��*��5D"ђ��b2x8��@������
Yx
�">�!���~�S�&�����J��Z4O���>ˑ�!��ټ��;�֗�� eM�kd�#�+���M�O��#@
*�)���T���=/���9�N��W
�� 	����1ń��A�)����_���$7��"���>s�Z�̔����JS���rm��X�ē��`����;o�]5'�\��G] O�3`T�D����.ķҕ�'13��0#�n�CX��o���a�.&�
��aH%
�&
� )���!i�-{�`D6��P	�f�ӌ���xI��;RRw%cÆŒ�N�^^n[^Y��
��օ+p��[�����0-�XE=J0#�,��!�1@Q����8T���� <��OF��z$����ܗC��5��{<��=d��L�.Bl���9`iĿI��}���?��ӟ%��q���9��?���6Enj�#���z��Lx�C߀;���w��>���#~!�?؄~<!v���C���q�_&`��f}󆂭t~5��d&{ZpNM�Wd]��i�V\WB�Q��F��ID�$��#N�$���5L����]q�PXT�M�jV�DI�h��>�d�]�2t��x�9>��>]��rհ"�0|�f�ڜ�
��;
�۬�n��-{�w*EXP*sǎ�pj9�V�8��j�h�J��G�;�H[K�·���%�';VW9���h��J
���w�TO��oϢ��1�����Ҿ�vi�r�e/g���}}?�\cS[ڲڧ��ѭ�5���^s�Z��1��8x��<�w�L��+����J(?
9ul��^O�r�N�p|b�Z[��z���>3��N�]�3�L�5i�'O�݅���$����#럍�8��\�|�Տ,t�����'
z�������"`�Հ�4,�{K}��;?}͍��^g��e5r[<4�����L�Lu���B�	�Н/�8�ԭ�kG�V�$��ʗ�͒<��p�X֢c\�?SP{��z����mZ��hH���Z�x��*�Rkj�JZ��;o�R%U�YOV�V�*_�_?M��̺�v�vqR��c =8���0���j�Y�3��}B�-�Ӎ��a{��- ���VTD�8h�{�}�
e���9�$!��[N��;��#�g�V�[�eɲ$W�Ȓl�e٘bl��f�馛N���$@BO�@�R)��0�KB
�A�8�4�\��Kli���J�l��}����������̛7o�<Pف��*aOiaZ6�$H4x��ڱ��U���Q\�֭���NEr/��ރ�IKIz'�bA�h��m��X��*
ĺOH��FK�$���*��B���S���[�:�7m���4m��[�s���,.���_㸯;�K�*+}p���Lv%}���-��i45c-B{
����
wÏv_�
_���u|i$���L����u��q�(��?�����q5��D5Ss���r�
�@�A�Q�QG�����ԓ����k�i�]�!�Ll�.�?��1���t�8J�mv?�	�:�����b��k
h�"�MN�'���@@g~΋V8&#c�x�F�2i��&�9�� ��n
�{�I�O�^ø����:�W�NL~1e֟e���{R��h�5p��lJgO듙s���[ �}6�dւmj�ܥ�wo��/�#n������X@�W��BM?W�Fg�oչ�
i���T��+�0Hi�H��E�dW�{���GX ~̺d}�{���Y������gft��u��a��K����(�ǖ��=�<�vG�5���>�D�NO�Ŧt�^��'��`���H�T.M�ҀF���-'�
�=I$��ݨP�Wش�Y0V3V"�ར�����4h=sF�1\�U�	��l�?|�U��'EX^*��Փb�h�V�
|�(��S1�6�mZ�y|�^�v��'�`K�€�,,,�/�_>�_G�_��?���)e�gΌ������1�(�;��	�xϯ��Mϯ��}���Bh�*�����
���!��(�0�zO�ެG��vJJ<{cyK1�qA|��^t��@K9�#����72����e����|�:�?\}c��`�G�0%S	��в��O?���\0�=C}%7�6�
O�uL:{g���p�1`]��L��K��X��c���r��,��w�'c�AL�� �����/?d�$��{mX����3x���9O�C��&~���Ϝ�bϞ/N�	�����W
�{�C�{�m߾�7[5�Ƽs��O�?�ӧ�,\������x�]�!.�g��R�ښY�:*�d���oarrs�3[�{VE�y����>����v�[���ˡo��XM@Z!��
�+V�x���V�4Fx��an�wud<�����,�>8d��7�[���1���j�:pBZ�����<��p	�"�}��C�}���7���~��?��*�LamI�FP$��~��S���jˣ
)UJ�S�T_��塈2���#�<��MͧQ˨��BoDz;��{���1�"X��$G�݀��L=���.������	��[��q���Xi�����ԧ"���o4y^��ȵ�������>�~f�3��B5S��~VrnV
�����n��#��~0,���/�x��聞�?^ԙ�3�e�/�]����wuow�$3��gbj�����4�ר7�!�*�Fyj�gQ�;����9�?�2�~~�hў�������tO:�)��t�=�'݃���=�=��Cu�Y4$�[����:���,	t�BoE�Ԙ����LoHMe@��-5��,B�o;�{���q^̍,f4&��v�p��h�Ȼv)��"<��
�'�*�|�0Nز�0[�JnEE.W����
:��LD�.��D��8�ߵ?O���DP�I1����We�s��烏�8�ba���v���zig��������k6~���[~��΍�����q�D��>M���f��U��^OM8�R����u���6.x~���j��T�A��k����Mg�z�և�:j崉a�U�����3�iP�R��t��LU�xY���`�(��@|R��*���EDzgcg�@�
��'uA`�2+���,vЋ�ć/	D�t�U�wm���Kb��I"��et�'��&�d���{��b���D�r�RINf��$U`�>��[�2ThӌN�Յk��-��z�*�FO<����(��:s��X��v7b2u����Tt�\k�.��7�ǻt(���?���GC�߱7N9�5C�t����%��igC��̉g�S`/�@χ�U0>��`;lc�(��������|0��v0���:Җi#!5�a��
�*:���0,����O <R�|M���YJ���)llj*������S��nE�뇀`�O��Do�k��ͨC�b
��+��z%089�fx���1Æi��a�P��p�_�?�=/!U���z2,l�OZ��t�9���@`������~��m�nC�N�NPf.���l/�I���M���l��LX��\ܗKj)E�u�%u*bN �c� 7��kg1( �;�p{1��-�g1�@�\����2t��	7D�	P4-�oo�'�)%z�2���9�L�5)2<:�B&�)�:O�¤������T�]�E�ݶK����~�M�[�uN�9�\[F_���)6T��V��p�H��tK�u4�ӬV��<k��z^βɎ���tG2��y=���<�H"Go������1o��J($�g��fwd;�Ag��`viI��!����;�oE��q�-��EIc�
�(!"PG����in�Mv/���^;��1�b�Mx�	q���"���3��&�8*�^���|��ҿi�3�շS^W���Yb�iJn*M-��ű���]�o�.e��_����k=e�o:�Z���
��…����2w�����/�����/ץ���y�ԥ��yV��2s����:Q�b���9?͖�VtX�JOq{̿���;τv���yhOÈ�l�,oe�'t�ALAV��qҩ��1��ʳ?��Ϯ�Z���9����eM��*�L^w�©u���,m*3�ql�����U0�2�'�z�>��6_W����ʧU�;�(+��4%ɤfei�^o�H���$S���;�C�!;��竭�>��N�5)D{ʎ!�K�}� �rљ��y�V��Ќ�w�1�H�d�����e�;����N
\��D�FC�hW��vπw�;ty���9rӹ�p��\;�>#�~��`�)��a��h��Z�b��iz�Y�jq�;~���\l��ЛS����+�rjB���k���oPl���
�)^��NA]'ޮ�h�}��f�"�c����.�!��ok岭�o<���PB��{?L�'�Eԗ�
�D��	�=���]*�.�g�����J�Ŷ��}Bo�t��&�&��
e��\��E^׭{��/�NK޽��DX9#^4x�C_
jK"���w���C��j�M{��.��(,����ր���+M�sQD�Q��c�T�P^/4�y5���@^+/��'w��4}
����Zsũ���"�`W%��
�y��GIpC���0��:E?kݺY��Ɏ+	U"���5U�@��Sx�W�����.�0p���Ka����X}����:���]z����I��nN�6����C�̦�߾uQ'�|䘔U��V�є���N���=�?��v7�	9l�&m�O�N�b��{#p���G^]<Mb�H�d�|r!��q��؍1�����a+�n�a�|)�S��Z6�>/��	�SJV������N\�*��T-�@vf���V��O��!h�4Rh�t��LaH\d�,�Ӏ"F�'aKDP��o�(�z�
p�=��c��wd7b]Z�8p`�"2����X��:�"�ŋ��׃�'��H�����-2����s֯�{�/�Ǿh{�ThrĐ��!CT0b����/��b�
����	Ԝ[�9�>�(^��0a�tv�av؀ńQ1�So4�V�x��E
�Nl�n=��˜z�x�ϒ��Œ;�ؼ��Ѥ�$���.	)����_$��1(�}�5$ӊE��P۔��&�~F̩��8���ޫ�`(1���E(ѻ��&�G"�T��¹|���b,i��(��(��1��8��W����0w#BS��GX��K�{_g�S�.�ф6��g?{i�֛��뷛��⥶�v=�vlTRa���dځӖ�Ȕ
��\v��힁���U�U7V͋ ����*5}�$2��uC0w�҇A�å�ήC�v��E���L�SY��>{�4&��<zq�D�ADh������B����>�~�MjF	%ۇt�_��O\�'�,}�%�l)��h�z�%ۺZ���y�I�F��]݂�Շ_�'��7~�U�)�<2N(�;h-��P�q�]�aV%�?y�y�N���M��	��َ��y[�{[�h�1r�#�}B+:>̮�ׅ���N �"
��	ܖ���7A�q0������t�#I�$O*}~�����T��w���D�E�	7^� ���ٝ�#D�(�%�M�*�6X>$�@p^ ���
��")	zA��G���%b�>�>�T�^}��;�
�O��ǘQ��;c-/
^��#7w�Vt	s&��G'*�-#�צ�����Q%��^M'p�c��"��-�W��+*m9z�LԎ�p�������힒�{ɑ]�}}��(�b��0}��;ax]����t�[)��Q��@��]�g�Д����vÉ7g�㮆�'fToJ�fȬ��"�R���ۚ�˫DŽ*
S?u�=95�j�U�!9F�9��j.��4�p|�P�{wΔ���"Nz(m�W`���yخ����`Ű���Kf�?~F��m(ȑX�0���s�r���6��D#�P2	�='����H���BL"�-0j�0d�NG����̏r�F=/�t��u�?�"J�u*���/�^]2Q.U�����ԩ�\��|�O�Y�w�/^���p�9�ߡ�%�Ԟ��v��%���(�-��FʋkB��e�Nk�=vuP37g���,��	�}��Q�įKL����Z��>��:M���N�⏆���/�"[I}II}{R…�w�u
�R�_����Kn��x�RFmX`HS]��}G�ŝ�-g(�K�qA��M�"�����qpn��8o|�5R�g����1:?M
�N���
<�/@����U=��x���oZ�N?䞧���m�Yq���o~Z�7�Z\�Cѝ���-�:�O����4��u����y��	��=Q��W\A�F[%2|���	�BbE�6RM�|u������B)�~]�T� ��u:�L�*|<��YR-fgg}����L�b�u�}�aLW�W�ЈR<v�3A/VK�	�"�������g�Ԥ���7�vDȉ��o�n��GC�#��&����}��?G�p�.�cF���x
v�n�Kp_w�}^������
�8
D�������P�X�@j�%C���H+�O�5�����8}ރ���,�ψ�!��Bp�����=��z����x�Zm�h3����@|ُĉ���7F��^��Qef���^XDŽ7���J|6��ީo.��9�4����O�˲|!�,
E�(�4
a+�[Kp�
^�Ŋ&^�j�Dth)�b!�72A��yc!��$��y��� D�#��4j�oH��Vp�	����ٖ�O'Go���Z�P��T��1;�!�*�7����
��9�t��/��W���ȩ��
Ze���n�ꪞ��vMOL�v��:{\�~K�����n���jj"�)���|o����x\W���a�4�I3rXڍ=1�]�	�f"!
V@��7����cۙ�.��⃴#❍B���8����xq;�[�/6��P���.���]�ĞC�>��1a�%O0�<�;�,�A[w��*�
X�'����!(�=��i��}��&?��#�^$	^�2)�m4��sD��E|g�P�b�2�Dq>�����n.*�?�W̸x��(Ļ8�s�D���SD<\��"�5�3PsA90�7�@�R���F�q1x�od�YХ&���]�b�nʁ�db��zy�a(r�j�~���}@��8��
��	>���>4��J�.]���R��RŨ�2��*F
A�6�r���]��eH}KK۔��J��ҡ�ObƆ�������L�
G�hN'%+Sx�̒jU�,�V/�}�2�D5�NwY8�G���,�Je���A�h*c�幔‚�����wޡ�.���0��{D�x��Sf�Ѣ��2�w�$�F�-�:W�Y\���D,o�Iy�ך��nN�I��	�,i��)�m�#Y�Ǫ��j�U�-3���Y$v�%%3�Z��p��V򒲗.#�cNf.�5��d�$��C}���,�KSצIX�$fX�͊D��M�^uV�J�0R���s0=t�@k�T�o��RZ$��b�X��*e�V�E�W��ϕ�5��T0��T��nk��ޑ
��7&�$2�iy�ThF7�����u�bqe�y�#l�R�*[)I����M��k\���a�#��u[�N^��3Vq�אnL��(v�\���f�T�GQ�I7p��=3?��קw�(sn�Y�IS��M�g''g��aFm�L*1��J�J�2U,��O����}}���]�&k9-��D�����i-%�}jS*0������XX���W��b%��c��R�LR)��$M�����NK�,N����c�إ�Udf��I��$�D�Ģ�*$R�� f�LM�Mu�LձK�7�)lJeh�Z%�V1՛
�ڒS��.u��4e��l�J=�RS�j>��r�l��ڮ��b���4����%ǎ-Y]�#�,E�J����؈�]?��S�gz-K���=��:�b�����+4�A|h��FCR�(��"���F'ch�)���=
Ejj�����R��7�﫧��W*J�o��J����L2�lX����B��a��a��r��:���Z�cůM��?�'�-�V���<C	�^%�y/�ϻ����v�YYL�� �A���iˤI[��&mij�S:{��=ܠ���?�3)���?gՠ��N���%r�|^���E�����$��$����Zo�I�IM���C�ͩ<4ƻx���ij�V[��{
���r�T�Zj��Bu�T���4�+��v4�{Y�X�;�	X����ڸͳ� ��	 ׈�_�l��X�l|��ن
��b��q(:�f��j�M�+g�:R�?�1T�l��J@�׿����+�&�9��s�>��x��n����]m�P��Q�Y��5eS��0� ��Ư_?^�:w.rMP	ToܞL"�ʛ_��b^��GS�7e�ZUd����<Z�i�׈<Ol�k}���VM�PŇ�&�jY
��V�����j��dI|���Q���2��=�`H7��E���R�("*E��z!�Խ���Q-m�*�8���Н�1�QK�OJ"��R0���,�cW"�a!(�赺��L����nb���ޖ�N&�N�3:�\��)��h��Vw&�@ѵ�6���i���l
��,��>
l�X�������>�ͧAGM1	������0�B�ǖ�c(B�0lEguKP��pl
G��»v��h[!A�9�v
qo9����b\����#�}v�@�0�4>���
B4ZQ)�?ݘ�:>�u��X� vn�(��z�HE�~���Jń�s�(�7Pz�Xx��@�?n;����E)҃�4�E�J��ACuJ�yc>,Fu�U��i���Z:^�����{��P?��cY�ոOB�k����3Xt�5�P��T�Er�ׁn�*~)pD�����M�0��;bMA�폨p�[인�ւ��	4��]�Lv�ky��4a.�YB\��UE/5lbK2#M%P��J����vW�θ��n�p�����k����'`�@��ɴ�`iʌP�W��8Ġl�%�t�	%ʌ�SQ~V����pj*���$�w��^#G���1i��6��}��"vw�"��b��<nc?��ͦN��i&�t�~�ؤ���֭��:f~Y�g�m�-Y�`�ΔisV��3mJA�Ų�ɹ���_3��YUj�B�$,8�;DQq�����ܓE�,X�6P�+��բR`_P̋'�4Y�{[�*�e�7-n���w��r���'PŠuw
��?�u��:0S*�{����?E<�y��N�!7�Pղ��A�&��1�6l�'o�5�=���C��oJ�2�����x
^~�	���[���Acb-��~6��?���������u������!X��燚�������G�cD�q��n��-���&�h��ˀ�Hp�����:EG+�n�!�.<����zMh���9�l��b�젮�@�ȑ��p,.��U�i7�e�Q��j.��`)Ƒ�t�;��h��yAP��IظLK�q!���"���zF�Z�c
J�g��4�����F7eV(���`1L^5��B�+�������ڽa�]�-���j�l�ԅ�:�[Ų!�}!b�(����8z)	���_J�|�}dR��*��jq�l�Ͻ���KϽ�Mv��Dg5�Z5��q��.\jm�Ek6��md|v4�MVlq�dvԵ���_<r��&��M�ל`Oy���E�~�vҙL:|�Ư�0��g͂�aG:v��p	(M�S�<�ӆ
?=�&��g���<2��j��z��N�n�߿�V[��0?H�l���nۂ��&U��>�zrMZښ�]�].����?+;�z�����#��#J���z�����~:��vv��ۻ������$���3�1�~e�����ݹ�+t��J�G;�I	���mW�y�ؤ�q�k�*�dƜ^VX_<:7''wtq}aY��a#����TH��3:��#C�y�V��Z�Wj��U֕�?��;A�Y|�.d�7�R]���&�ODh<*z@��	i݉Aw�N�A�%L
@�v�I0�c���*�T����.3����9R[�VJЩ���,��՜�b��M1W�R
�߫�>EƉ�N,�`õ��>U8�z����/{��2�3Y��h�확b��^�āpQ����{�/�RX��_߲d8Ȭ��6e;���зk��	}�B
r�fq� � �Hˠf�ŬD	�ζ��%�,�Ĭ��m
?sx\��j\�W�W�UqC�S�~����m�lY��3M�>�q����s3`ػo���SL�4.\剶�jl��u�[��I��77쵥������������S4�m3�23��ȧ�ꑳ�����lg��@��͢��؏1��W��%`T�;�����ω�
�ExC�t�#�8*g��3�0Gx{�!w>滢x�i$�pl�ɣ�`
;f��7kA��fy���h�3>>��G�U�4V��O-����H�M֌o�K����<'���)m��?����%�{[2p������;��>κ��K���>�e}��}����ڸ�0�D���2`�TIH�nP(�A!6�Ƣ��2�h��k}�U�3��Y��ެș�t#d}s�|����'��s�|�\�P_��ξGփ�$��į8;���Bh�Q�",Ƙ��{5�k'Z�Uָߚ8��~�)��A�^�R�-��-�.fG��W�ԋZ�G�E*�.F��zӘP��������.$-J�}�&��\�V��T�Tnv�������?a�/'�n��-{4�yʐ����`ʡ5���e�9<�4��e�U斕d�T���	U6��?��AX&�튨Řf�5?M��A����6�eb�$�d�`�t��%Q��p3�`��s�b3�N����n�MSp��U�5�G
[�6C�n���q��Ҁ� �0y��"�U�(t�K\�SR�*1�S$AW~��g�S��v���t�QR[������
��%������Z��ԛg��X�o���3c(|�:c�(����s�V�l��`�n����Hz���*_��~�uz�<J9L�,���,3X�ӧ����X �
�,����t�RYP�����%$S׭)]��d��K���nB�d&�n&|���)�ò�{���
����K*�/���~4Y���k�N�_��J�u�q��h�@����kߟm���84@
����"�b-M�/g�.�,��@hL`H���.	�}��k�o�py�\�#4T �3�qЎY��cvh�/a_�I��N��O+�U�i��
S�V1���O�!�D�t%C��ԯP4`��@|��&��8CP_�º�OV*��^��w�v������Y����7�~�E�U������zD���4:
f�b��ʃ��HB��k�s*�DT�6tFY��e-�}e#t�5�}CŹ�Ο��z�B��Zs�����	���#��C��8�3k�؁�0!�\M �z�`E!hЛ=U����~��VФ�U�Ƥ�Ҿ�=Wi���0�t�ն�ş��4���<}�K񬗱���ā�a)*��[k�9��'�n�JG'�������Pٔ�	�0�u
��V�Y��T�J&Y�c���D��$�ϫb�r��<��oVH%��.��T�(�O$��
-ӶD��\ �jK�Z�4R��I5r����cѧ��Tɜ�kt�kI)�CB�u������P�T�`���8�M����.o� �0��$T�	�0a����W>P5���X"�ݫ�~P��]���#jDy���%K�j��$��-v!��F�~3�2ܪQ�5`.|�ap���>nw���/y��#?X�##J�w�5��(
�����Nx�4슩q�V��^�����=~�R�'Ҫe,�ҧX����M�}�j�J-�)T�:�א��w�3r�T�'�����x�}scF�y��7k�
�V0�\���S�M�(�2@��u�:-YzǮS8���W���[4;0���q��Ʒr6�SBIX��qL���t&t�&��#M�
�����G�#�&t
ڠ�4�7�0݆���I���p�X2���M Lu��w��Do2�`
�%\��7߳��g�
^mlm�W�)s�X��7a�o`B���f�b�nQ��1J�)�?F�T�7ѣ���;��C6���XV}EBq��:��ٗ�zh��W���*S/�'��W
I��~F,��앀��Ud�
�A:�ɫ�+�z:�b��4'�Ŵ���؉�szk��ܮ�.08q/8���k�Y��H���E��>��Qv��ŋ����g�O�~aժ��b��x.��쨽���'��T�Y�&7(�w^;�����[�Ս��$�\0w/��6p'�"�>@�'�w.XHZɋ��(���j����X�yc\X��{'Dy�>z-�z�x�y�>xm˔���ۜS��^��O]Ђ���{��E�&`��`�w)�+��ySL��>c���u�a=$+�h)V,��7�R�H�֯a=�U���<��35@f���F��9N��i@6�݅�L�D�Q�s��-�cr�졂z	���
��W^׏�~���чS�2���5�$��Z}�݊#q~��d{VF^�ުԚY��l�&'��Jk~O�� �V���{��W��|šG&�$��d�]���8��/�v�Dj��&���7��x��Ҥ�U떦���ʐ3���{W��(1�O-����T��}2�����k@N�H�:e �i|�}�,N���j��$}^�\�����X��,_+V�r{-���s�v�7d/�zk�ux�C4�9�9/���%���V���<��S���[ƅ����ٷ��_��:<�}3�^;[��l�z��A�)���d���}���-��U�������}�����sQ������H���:�z��3
\D��_�+B��3F�	xh�&��>����ϕ����4�]����j3�=/�#���T�Q��c�ϱͫH��Bw��_��Ee�^f�[�џ�3���76N3�w���\�"�R���1��v�/}}�"�O{<��Z���@!�g�(��E��=
5�uW� ���n��&�iK�$j!�jw%P<��T�<�N=���Q��Z�UA�nŀ82�+�^Ra>?�1	�E>��9�|�.�mV�
�
40
����l�<kO6�ҋP�$K6m�����
�&�w63�dV�k�'�Ո!���o=�t
4H���Je\�r.mOa�z���
*Z�ҩ�W���[.s�ߟV"����k>���K�҇k�|2A?���g��`�f.�}�W<wպ���+�����~�8�U)��-�l}P�ժ����*R3���7�9~�>�F�\���[XQ:�J1�D��~�NN�*(|C^�&�@���G���j��1:�;kN�\�	0�ƅf�Ө��p?���$��0����o�G�G�߽�0���Cは/�������z�����F�4X�~�d�IE���[��.����9љw�I���`� 샧�'�a��b��$~�+�/�m��`��.-�� Q�b��'͛�"+6�XJ̓n+�fA0�����H+�l�_��sʴ��!�-Td�ؿ�O����dɜiL�j�����N�q��J��ɘe���O�;;%G�'o����;"),=�K��
�][��� g<�F�h�.��~�[�?�
u��}r�����f�2h^�3���s�j��ƾ���5��q0f� 8���u�Ĕ�,'���5�D�k��)@?\��a��^�=M��Z_1�&����c���M�Ͳ�k���׏��>��|���M�o<�<
���4/�c遷�<�l�ٛ��,�v�߾={{��5���Y�{~�'��=	,�\k����^&�'0�tX���Dl}�F��G*��QT?���.�ZۂK�
�u-Z���Rhu���0��!$7@d~X��ɢŎ���xx��+x����4����V^�Vu��P��i�f
���w�z��9i�{V<��ї�Kw�#=��`������~ёޏ��_���ф3,1&W->�xj��~����ܱj�a>�t�x�k���la^�3�qn��i�i�З�1M��Ɏ�H�͌�و������
KQ�j�1$a�g2g#��K|�!�y�eD��Q�Lx�X��{i�4�{{V�����N��l�	��Ѩr��|�_I�G�$iu,�N�?TW�߂bt*x�����A��u���t�A�Տ�7���Ѐ�\84�d��ه&��I~�Xsu��l����0eZ�~�rsUJ�kG����
)�2S~�m��Vy��n#�~�c�hV��A+�c%�YY�� Z!���W1������t���A�1y51�+A�E��8��ICo.��V�3��['��1�;��S�v2Q��:p�ؽ{�/f��b/�����vܽ1<I$U�
�PUa�hTRI����ԴV\U��j"��RkMoy���Ӈ�
9* ).�:{f��=�Ͽ���oQ��j�%k�1���y���T�}�[g���h��n4�4�\�5rd���]qۇ�C�<i�̬�𳦅�l\��E�O����C&Z�*ZZv�i�-��w�����*1��t)����S�*%/��R�j��J�5e��y3�֏W��l�S4j˔j0���4�ܮ��ղ"��aDwϘ֯��F8�Oͦ�&��}�6_:-�HŜIE?�2̓���u�q�Cg���b�Za��f�J�j�4T��L�
J�c���X����h:p�{�[`���:�N�6�84�����J&�n�F�ٗ�,-P2d��_
'1@�2�'��r�dD*�Q�����e?<slj��I\��x
�+��ӽ�Đ��vs�.��b	'���YE�UpC�ӥT�)s�N'S��mٱ�9X�x��mS��D��Ž���1�ON������hS����Ve�湕�E�T�:0�Oap��Y���§Ff~��]8,K)���7��BTpK��/��Ue�dm�Az���kT��`��c�o_�e��k*m>��l��^:����f���������y%����6?a2Gy������8�r�mng�ô��0.�ׂ~�X�nj����cpD1�N70%��p{����UWܥ�҄�oS�(آ�	�v-6=�C=s"�n�"^�D�͐8'��ݿ��
�ڊE�BTPAE��U!�DwU�I�O�e��p$�F���Zo��|놪��'܈s!}��q�"T��P��d����(le��+�����
V���W^�Dl�Y��s��:�a����h�I�`�X��k�����Uq&HI�R�&�
����5�R	�	
�r#�F����<oj��25�O	�	�jv�IS��2_'z�"�e�l�+]f(�:�xt䊬��!^G��@��<~�$;%�"#?xmC��}��\x6�4�+��֢}����+��B�6��ԡ{�v�d�d�N�?&s����T����ca��x���i����R�vKf;�7�C�U*�i��U�व�fZ���4j[���o�`@H��2�,W����i�Pr���U���)����L	{�<��\\c�@���sN�D�:�_Z��h8))zo�^�R�A�4����f[G�h�ml[���Yoo�m�
J&��N��s��KŁ���/��e���(���i�lX�J��7x���$*��1�p<�p�iJ��@/F'�Ƴ�v��xD,�)�N!At!f�=��ΣCs�^p�gs��������߯��x�c��b{xT���N��S�@�`%	��I�S���O?©�7�q�^�.�3l�T�Uf�����>�-���M����>/?�}�D��Le��J�����{L��'����:�y��!��=l��g�w��K�sC�8��3�j�wV˩}.�����'v
c���U����Q)I�{W�-Ly�}0W�_훰���S%�����YIV١g�D�7�;���;Z�X�4vh��H��;��n}5���>J1�3��U!�P�3�xd��}�?1mډ��w����E��R`*�A �36��?M~h����Ix�Y=	2��8L��q,�6�h=΅��P�t����{k0f���7?��rF��R�����8`�vG<����ؔkTzgL+V����aL�wp
�#�
��&�ɼS,Y�~>�o~3b��!w�cE.�� k����,��)���O��>�������e �1z<���g�T%5"�<O0��;���J7�Քc� ���vZub�o���9�� 
|DIϧ���\,.�M^��<{vrZ�|���l��	GՀ���RE
h�+�hN���,#O���y��ߛ����~��l�}��������MMGm��@�S��a1\���q���r`}X$b�SRRe�ߎDK!F.��ӌ�ޥ�В�Bݧ��{�b/�Xϐl��b�01�v�.LQ-�c��dX����B��G��������AWZ�S����Xw^�y������Z�$)�퀜`c�Q��f��qوa�����1X�� �^j�e9r$Kf��d9�Lh�p�qը��`#�t��dO�Axm�~ >���<��aIŽRZ�P3C�y(�Q��0SrO��
yI#l�YeRivff�T*M��I$E���F�"}��
Z�2j�,}2x
k:ح����~�(����a��
�/P��{���7w3��߮��l�g������J�-8���h�|���W��yw��?���W�m���x��@�_�~�>���	�V*1���'�_�n��F�BQ���X
�!�I'��P��!q`3�Q���ltS���tb‚�����	���/��<�;ɖ��?��&%�yD,eOp8jb�>��
�@T����ᄊc�η歿Z��y�w~?��z���E���g�Z��sq	�s��n��ݴŖ'��2��;�����͹�����G�z�,>���#Q�Q��?_���bN��Ɇ���Ӎ��i���v��njj��~���w`�GS�^`�=�O3c��M#�!�ȧt�xۄ��~����.k:��D!�,茮�?�:�A���t�$6p9�*�> bi(�[�nϠ�A#�鰺I��h*~��[��Dqt珓�j`���my.� ��7���e5/����6u�_T
BXa
��?��-t:������U��fr�4R�J��J��o��E-���-j��#髳,��*v����>�&�$Q?㰗.;Q��<a�U (�b���t%�ա��G1*l�%�:�ӣ֤��l�&ĩ���d��,�cqku&Kn^��xg#V�i��؜��k1�n�'��6�09�+�l����|4j��cS��]�V��j�e��A[��)��V٤O���Y�Қ��s�]�7gxzM�/�]���K���ҿT�af8g���zYw��b;�I����6@^�ԲzHI4Z����!�D�ћo��l��}!
0��'��\F�ō��2j5�� v��MxK�UM�ܻ�-~���C�g&�
<~L�vU��3
�� �[���|V�\�f��V|�r��9��ܐ�v&��q��o����G<�7���kZ��}�)+Ig�k���ʋ+���ɔeҙ�9s�
�9���h��O�0�Rk�+�_��6�`S(�X������:��G�i|�K��o�_���v�����fs0Ca��&����������<�7(�
ه���H2��*�2b6��4����OR֍��}q��rdK,��WS+c���+��Y���W��:������Ē7lVCn��d���\�O��0�ƢZ|׌�����Z����1.k�?WC�t���E�jt:��dK]իG��>�� ]'��׬=f͚S�'�
��3rx�W�˯�f8�{���)VLo0�床��|`��;&ޱ~Riqì�^OMN�T�u�G��:���I.A���R(��_�M����o�=p��Nt�M�j�7���#�~��s��&#�K(�=<kw�r��M�X�wZ�S� P{����D_i����5��ݦ��v��K�~�eh�*9p=��Į�Χw+zB���=�Ԓ�\��s���V7�ӣ}�i�m5�Uk����	z�G9�r�k�A3�W��'Z܂|�Ȉ�C�'<�FB�o3�>q0:]�p�N�8D�G^>��HY4���׻�]�F�#��
÷,F��h�L��u�O�'zܴ��%���*����cvv�d E��lg���:�1h�r3�5kg��Fa�t�u~��ˆ�����m�>џ�z�9q�L�I)U��<�g�x�
_�ifm����љ�`��.���l��8�s��dg����鶍yX�Wx�6ݴ
�e}�ư_("�/�[0:�ӻ��އ��6:���l�6%��P�,4���
P8�u�,:��N/6�Ƿ�7���.A�ߎ��gd
6{�r0x���؋LF"\b�6(����%D��"`�F��v�p�g!b`	�_��J*eK83|q(�Ԧ�J���>W����R��!&)A��|r�*�2�H�8���%ݠ�Je[|MojP?�C[�8����ra�9�3{c��bqo�5&��0�
4���%�e��ٳw��<<�`��� [�S7�߇�?�����C��Ӟ�̶�{"��yP�����n����)�hAc���W�z���Z*����y�b.u��rܚ�[�%Xq��Ꮳ605����n���'N�y'ND����~^���%s�%��藂]ML��c��B��uJ�D�O��_D~��_�8��;U�\W��#'��s�o���MgC=P���9���NWǐ�u0-�ת׶�Nn�k9tz9M�F̍��(�"���QIS�?�E�@!&O�"��>H@!�����}Z%?
�����?�	��q�x�6r�D.�L0"��*r�8"���GO5E7�9���?Е)A�ֆ��u)�~Q}@l��� Lrz�\�'��I���,�\z�ӷy���M��ڞ�0�`�����V�+����έxFGO�_�C?ҭm��2h0���~����|l��C��l�q槇�L?���d�n��O�u���D��`�mp�t����GD������Vf�롷G3�H��	>F`��h㖋mp��M6�\.f/�ђ�E8��	:|12ؑ92�^
����ԍ5k F?��p�A��
��Иwd�<�	����w=6���J��@l�^�������}SCG�mr�������f��%[ϧg����i��\	�[�x����,�ރ
u��*�Ժ�0:
|W�l�rJ��i���6��}�w
�,�i2�ִ�i&׈��y|�[��I�0�������C�^ym�r򑯎�i���&�"H����m$��ۖOv���y�x��t)�^��F�(  
�buroQ ���i7��c#���R�s��M��a�v���)����)f�DjL�(s�b�&[��s��d�Tb1��s_7�牀��:�U������_��UX�/ϭXqX@	��Й[�F���AQJq��#?����)��ߺ|�V}+-H6���a�Gt��S�x�Yq~�ㅰ�Vjh��W#��r���#1�!���w�48Q{�n/��������i=(
�U�-�z�FnU5�˖g���R�qw`�c���4�����g�e���j+�6C��9e�in�33�Ѭ1[w���c�⭽�ҿ�ˏ^�.L�\�x��K��1m��s��\�rG���U5�^4�Z��!�Oѷz�h3Φ���w��ye��ƹ;�R=}�&��z���(��6�It���}	|����ZieݲNˇdK��ۊ�8�'�slj��	9I�!��R �j�p�%�p�%�H�Z�޶�(���h���ʎ�Ҿ�~ߗX;;�������<���<�4�kA`��6KTV2�^4���"��?K/�A��nyܵE!��JbG��*/����J�Z�X���?��3ҹO�;��OCBp�`����D8o�r[Lf����5��~���V;������>Qq�����J������D>�C\K7���]�A-�a�oy�@]
"
;�v�sHH��'����&����!�zX��X5���g�ԞNpCM�N���14�^4���x��F���~Fe2��1����)�^p?�#fJZRԙ���1]�����顕j3�R�%��i5��!���̐�?�����B{��WJ-�sv���a����{>�Zi�9O?��W�������'+�Ӽ�Q�J0]z�L�BVQ=>�J�}FS*)ƉFZ5�˨Vj�	�p4����]��!n
s��Ds4���3�Q:�pӞ#�
���'��N%;g_��=� �.�2I_Y-,V��H���>{L�Bg6��ep�;k��J���W��"u.#|
��]H�������(Pڰ��������F����t�oQ���,�V�XST�fA�ápuN�\[;o�����l��BME��hZ���ة>g�6	%�ؑY�$h�0g��gyX$�^�T���D�V��Å� �b��$R�rIh���;�,J�>`���i9�� P�*N����J���}�׌���.G��Be���i:㳙���CB0�1�Z[-O�L��|9���uG�̘1G�\~��;�]k�L�C�S�Y��bz�	ɪ�:���Q��R�����n��NH_�X�>�����҇B�B�)�,l}�U�1ƙ[	jV�]Ҥ]/��?�ϝ8i	��~%���I7モ���l�4U��b��5��˨5��Q7Sߣ�;{��ȅ0N��|�v4�-�]�����$����e�q�����2\Ni�%b�d�.�3�]��@�8m@�n�|7��\9+�إ2�9�e�9���?�G-���n@�@��R�H���T�lI[���RV
w=b�C�����A9MVꐗ#�bPƝ����&�b��f.A���@�c5I����ؚ�=����>,�/�eM|ဌ����b7dI~Ќ��Ӧ^���@�5p��|��n��`LZ�A�Ŧ���*�C���}d��.y��<5P��U=kR,��5D��«2+g�/
G�3�2�
�S�}r��.q���nƬ�(^��*p���ٍ���9=\�<����,�Q?"�|��p�)�+F�kr�x���o>.�����|4߅�A��d
)S:�ƦI|*���Έ� q�Gs�6;^O�~+r.�uD� �뻐�%WC���A�QTیu��ր�W�3��e�gչ+��H��D)����)0:&��p�L�N��t��~�N��m���yF�yOs�[
���`\k���y;�h_���e��0�@�.ӿx�9�?f`�/�Z^���}�W�BHR��o7z�`��@�Q�4��Άб�����L��w�l_7�^=t�=�SU���Z7HGq���g�E�G�J}9�R��c�jB<�T��M��B�>=)Ĝl
#=�v�~�����x�q�vwo������D��k(���k��.�	�@���@ºk!��}��!��HZ;wg_8�}V��ܯ�pt��>���׵>x4G�;r�>�p<8"���d4\:~F�B���/�P�Gb�fU�ޓ��J�i8�ۆݹ��uM�5|35��.a��xn�o��X�0f�1K�����4?��szRG|���{G�gjC��B��*���:����m�6H�}�W�u{ˁ�6���֒B��-�yC=�Jۼ�;&[8��ի���4�|r�q^��9������pH�/U�`mP<=�c�x�O����A����X^�kC��]M�I��h'����P?�Lq�A�C�`�S6ħR�_�h fA
��tL2�jX�BZ����`�͘�p��iDl��JA�Lx�f�ˮ����Ѻ�������ԘUА1����3�CO�9�Ka��|�{۾��T���z�%��E"˫T*��7C�xvi2V�d�9'�a=�z�ˣ�VI���x��F���:��x-�
�i
!p����;�m/�Y���p|x(��~���B%��W��~�FA)�1S�~�����?E4���=K�R���0j*^F�R0*9GH�g�PR�
�Ar��X㲁�xkҽ��쯎����[��q���-E%�C!P�L�4"�z��ڲ��\̛���_�L�#e"�ք���D�WT�SҁP)ǥ���
`�Uo~گ�9,O�`g
��^O��&����W��K5�0��<�0�Ħ��������]o�G���p�
���+���
*��H��EL��� �b�5�pd�L�_Rӥ�J`wD��c�C�l��<�lV�s'`a�bpH���������؃���Y��"⺽�~p��.��|�T0�?�(�CҌ��Y��d�T�c���ؙ�kMC�ba�2x�GM�x��ؚ��6�HF"�"���v G�h��]~l�K���$n(L�bn$E�-��ѐ�po��aT��3�'�f��r�I�a�l���4�;�%�Ն���WE��Qj�+i�"\�6�u�2O�����,�G�>n�%-u�'�w8_iJ�qX�����l0kD��>��%����K�>��g���g^Қ�(a
��󬬔���H���΂�l#�*�~������)���e�,�3L]�,�.p��`v:�W62|���]�����ţ��^J+���q�XrJ�Ű�/�a��b�
��`�ݰZ�<��TVb�;o�ßv�����	^���Ї�@�IoCe�W���\�c7
/����-��dǶ�.���}���.GK�w����������e����O?}pr�60�����l�zo���v��>|�t�y�ֵ��B׭�Tup���m_��%�m�z�c���NE�(�O�D}�˹�8%ٛ�	�/V���a�M�r��8NJ
�,�3R,���w_V^�Xk���� ��a���'VZ,��CL{�TpU"2vh{^�scS�*1�b#�O�QCm�xf���.{@(*��Fz孷A6/V����f��p���'�wG��`�)gI�	%[�?�hN�}��Do.�ۇ�̡c��ܴ�m}��J'cy� �
��*2u��=/6�u��X8h��kll��eT��ŏ���P�7h:�xX�hxQƯKh
:����a׈�~RF���%
6�.����x��0����F�s�u.V��l��t���Oa.`Epv�:��V�v����q�dE&�;HpYs�`P�k��3��$7�L�X�ʎ&�x9ݾ��J�R�35�\���zMp�hg�>�0[��Ġ�[����JN�M�y��F�Y�������ԏ�O��
f�N�ȼ��믨Z��w��b!��;;��kԜ�9_]Բ�?R�pD�,�V��]�Z�n�6yA;S�k����Wi`���� ��@]�!t�e�Km&N��̈� tpT�ڄ�?D��!~mR��+�u���&
�Z�9"�O�
 "��FB�M&�A�J&�PD��zP_�N"��ce��`��:P��K�'�`.
c Y�D��D��g��:1�Jj��rQ�U	��yH�"6_zH���7c��aO��2�i�s+�����sz�Dm���^��uK~�
���I�\J��lذ����S�G�8ӧQW}���{��J����ޠ��9Q-r�y�!pF}F�KA
P�}%#��2m�W�2�cMK~??X͈g�f�63F�{��/��C�xU��~hx���_�D���0	D/�(�g�[��~���=�jG�օF�t�Z��.;�NX8�)˞9�3Dk��k��pHα�6���A���#}�w�{{�N��ޚ�@�gDvYv��,[��a�%���ģ5�	�;�nP��s�;sZ(x�pѐ���+�u�G4�߇s�����>=%�s8V�o~��Q:Ot?����5'��f=tg�t�%���_���4�-�9���\��G�p�Oϒ�E��7�s�0H��u�L�c�W��@B�T�]��n�����yK���fm-���1�����V�|���u+�f�Ï��'�����7��6g#�w����v��7��
/������F�)ˇ/��N����w�'�gH��\��Ǩ^_�9]>3�O�P�h4\J��n��x���I���A4�]:2�p97�i4T�z��YS��FMa,�qXK����AJ��9%��+dDF��������ر��DBF�t(LF_2��d���u"�ၝ���E9���*���D\���5����A�5�Ќ���o��a��Zwm�ۛF��^w��L��ꛆ��S��c�X6K+5gff�g��U�ߛ�vK��sn��1Qδ��ƚ*�L'S]�+ �~��)�WOK%W��'�-�3�Y�P-
Vh�U�<�į����V�-"��aO��_����*��}3n���Ƚ�]\�g���=tr�	?|���[s*������Z9��	�7ݶ�wͥ�p|��xb�h�d�}����-��P�*�vsӋ+�I�4d��ʢ�|ciS;<�|��ʊ����}帤�F�9}4d^v
��dy֨��A�����2��
-�d8ߒ�S���80De�D���o�[�Ā=��9i�o4�g�pìi5�߾�����L^�d)�L�X�&�s���7�ts���X��5KI�Ճ�<7s�e���ajE�o��9'��F^1#��L9�����>�k��G��Y�ܝ�f�^L�MR_g����S��du��v�mySgOOg�r[S�FL���������8��J�FQ�x
u6ʆe��z��>z�7Ʊ����1ɰ]5��Cքя�ҡLؤMf)7�&\
Cʓ'ky�D�=X!.�M�Xuutpsر��^o��S�*�qT�8�l{%�zT�
�TOmػ��j:�D.[>*V���Rn�BU~Q����{ڞ�y�&W���(�Z��
ɮ�v�k�:	(R,P���(�����
5�\��T:%�E���5��k2�U�::f�g�R���޳�!Г�d8m�/S�����t=��Z
`���I��;�B��������VUaft��e�������	�0)/p�������!cU����JƧ7ŀ=d���!]�3iu�+*4ƀ��3��s$\�(��R�g��E��������m�p���X7��y���LC�ZQgin^�Rvzi{U{|*����͖:�:�+�w�iEHaW�q9�U���u�O�Q�Q����=>���mLi��\�@���W�icU��u���`��̶��V^eL���?�U��IT�ch|58��rTVRmS�TQ�+Ř�~��cՎ%p����������"�覫!V��S�`D/��\d������߄[�Vy!��UE��d…�[�[F�ص�¨�A�C��V<4����m,�i���)C;�w��f��\�N����r������+�K\ �֊�lm��N�����}W͠�޸��0Ӯr��a�#2u��SǼT���!z�؊�?����n���+�k�s��~�����W�V���_��W�w>ҁɅRS���I?�;�|Tɢqj5"#kU+�+A�14�r�F�t�y+IN�y�����0�MYcX����p���dW>��q++Zb�m�bilˊ]m`A�Z^�L���ޒ�|X�b"ku�~p�t8Bf�x>[�&�cf��0{
����]�����3�̟y~&�H�3P���|m][`7T�GY�rfn��,������k��f�x�/oK�_���
��*{���t����@�����2��#g��=��/���{��Lg�5S?�(�lK?òc��!_0��3�	�γ%��
�
�ɰRO׎��-S������m�r��;�<����ɪ)��1X��ɫ��l�̊%�"a ���	ΘG՞��v'b�X����Z���ȝ�܉�������l� fm�"&�}GPX9{ΰ&ߐ�R��asfW��1�^|���q�4���t��؍�Dӻ'w��'�wTRE�dj���i����}�GU7�c.�.}�!.zs�Em��j��1��ݐ=�0Z�,S��qK�+��J,q����&ʹ�V�
�)A{���0�7�Ы.B�,=�1yd�q޼��΅mIƣ�*�?����	2�|��*�0����V�B'G!�$�h�B��Va{�(�H���e��Rz�q�#.O��b��{�o�2E�+�RGqaaa����l��ZR�J���-[~����[�ٗ��V�-T��l"���C"�,zw0�gѬJƩ7+�f������g<�Džo�����*p��RG�oҟ&���%c^�~[�$��[⑩.wػ�<�G�wą�u	���a���D�Z.n��&E�uF���C~����L_��3��ϐ��v�5䙾��/�\�!���̫zB��kh�y�8!�� ��G��JR�^ό�*�_���4>��S�k6�A��\��6��n�Lz��#��UC�ر-�Ww���a
�HI�I?�� ���2P���j�&����%v�sh1[M	ћ��r����%݈$wH���d��~A���7�ś? Wa�º�G~�*|�M���^��nY�R���o^�zz�j=��#[ۀC^�W��b�H�Ro�0�
sd�y46~ZC��7�{�Ɨ�����sݳǟ�n�8d]�I��U��֝{6N���Jgnys�]���7��,�m�9�F7��	���|s�湟3�i/�峹7���fe6ʏ�z��&1>�+a��K;��i�
c*��k�پ�m۞Ρѕ���s��0���HzBτ	=�gW��V�OR>���#9��~��Vs#�y��nIUM�R��<��}H$���ո��6����K��.^�P�����}M�̓�X�O__,��!�0�r��I���]��^�H@���L�d���\LӤ����)5mb<��O��J����D�F:ya�������/,%�׿���v�#�!�oS���� 
؋��Kn�biBq}���c�׈丣���&�v龖�V�^p���%�Bڹ�L�YL��LH|��F��N�
��F�	;9d��3Y�	o�#A����b玲I$^9J ^�o����Z*E_�|D$�_��k56�����2�Ʃ��Lmȟ�x����m��n_�ɱ;'�.6���~�ģJ�%�E�g�/�E5�E.Ì��sn��8ڗv	�t���Dx�r������礟/j��;�QR�nʋ$�;��O�6�^G ��Ez��Y���g��&��UuB�����W����Y{o���3A����c5�Y�Y"q�.��SF�/��Meg�H����4��N�^��3��\�m:���������.��z��69lP�P�i}���Vi�D����Ty��7`�k�(�\fs9�H�&Rv�Pi�*��@�h^߼N�5�kpW�V>IV-��ZP+�B�3�5p�%��oN�����ਟ�q��o��D�
6q�+���uVh�Y�ᔅ��ё�BVӊ���*��b�K��h�.8���̲�6���_�^�d�dy�ԠԘ]B"ђ)��,��i��37�ܿM:�_�i��~�X�@����,�-�Ѭ��,}�pa���<2����8����<�|{����ޝʰ��~�Ő�;,j^-�@��d.��=���4�cj��
u
V%]��8���})��Ϸ���$'*��K��	�X1��l8HH̛J����41��E!gy��,�U=U�=M5账��z�GV��!�=G�?l�^3�B_n�evM����IY�dkۖg����5�:�ñl�fp�l\Cl���;�>��m���J������_����$�\������?�7��wj=zŊ�q�
}Lx�	{�o�FQ�.j.��ZM]Im�n�vQ{e���W`�el�|cΑJJ�b�L�sI���R���0)���-����
�;U��M*��C�*.T��]��<���
�z��]ʗu��@V��ޗSޕ5����3J'�Grd�)��,���ꁪaWw�iְ]�"Fs�-aאb�J:D�r�1I���'.J	]��-[�|����:�j�6"y�F�vju/��c�Y��x��|�P�/���A�ޡ\(��.�]V��H���!��O6q���r�����q�Gv�X?$K
���q3̘�&����丣߹|d:dnI&�.���B�Zz�b@�&�[1�㹞��~�_��OG�>����բ��h��^��Q�|��w4]���`��]��w`増�s��^toǿL��ψu)VB�l�N��u�x$�V��6����}y�q�c�<$^�G�VM�)$��U�e_y�[��ń�$�`xK)J�_Sn@�6z�D霘�1���-��=F]` P�{����7�>0����!Mz�m��)��?�������7?�y����i
��XyUUê�Vl9�U5Q�y,4(�/��5\}�?o�&,{w�)3�]:�~@}.m�@k��&�^I��'%���ŏ�q���i�%O�(5L��A١���z�j�q� ~������q
U�@�J��X����g[��_�RE�J�rb����r�ֿ�|��v���� �e4L�E�Cލ��f?��_^r9�-R��7~��'�rfna����@S4�S`�@4z��9���Me�`(x$������[vrQ���
�p������
AW�_v����.L��1@!��Cd/;)̡�X��?x��{;T��?V�v�a�vՠ8������m�rqF�ߦt����>��_�A��?���P5(~N{�'\:o_\z���ʬ�c<�%�}[��J�5��<<���_����yR6$��k�j�~F���Lt���ɦq�N���DrÄ{��� ����x!E��:��0���r ��D�8���ҡ��hWaY[�p���q.�p�Qr�Fv:
�:&!=Q�Ί�PXǠ&e":�آ}0���hԺ�A����
oU�{��6���:��+D�޷3�2-m�y���,ͿH[�>�`�P�P���tQ�Z8�f�����	:g�AQ�V�*)�Bȃ��&���1�^o)*���k�V�y,Z��/X��V˸E���J?m��N+���g�jGl����ч|}���kC_��s&`4��l�-�B!�W;�ZmH��5��ƿ�+qJ�(�l�9��@gQY�9O2�]:�jXڠUPRb��Ty�q[T|�,1�%�g2�WZ�B�����bh����u�aI,�{b�A�1٪D�P놜�z�|$X>�t��B�����wʞ�N���j�a��Nn��6~,
��Kڠ��uX�h�}y=HЂ�h$�����A�T��g��wLa엪�͏�1a�x�r�
�J���t�<��&5Q���)`���6/4M��%���go��oj,
Z
cM��Z���p���Lh�֩gGdW��a����75Ł"�֨VFm���:jYh�ڴ�i��6�͛�q4e�Mݰn�1�Bt\�T1U�x�;$��1��H�kh�b�Ą�Џ��H�����1�S�[.�s���Kګ�d:�I����J����,
�~�~=8�p�Ӭٻ�ddx��
&�%b�(�Ns�
�ZF�sE=����X�x�-9��FTx
ʡ�6��u���sJ�n����Ԭ�xO*��(��^��F��fа4JH�۷���}wI�@-m��R�硢��'��,����(1&^�D
+1��/������������J_�i�^F"�����5<�M�ҍ�œ�KѾ���0�5J�@��c�����"f
�j�W.Z�1�mҴ�m^�d�����
oJ��)�m�[_s��E
��}�/�of��+�~��`P��]�q)��H����׾x�Ego��륾ᝁ F�i���� <���]4d+�>�P0�c#ۜ�z�w/��]�=�s@+ܳ�<4���-���#�H�w�4�f�EEi�xk��!���+T�-
m5�_Vq��&[�A)�f�����ӆ�5��,�(���>�,_mW�`
Ђ���v��9t�͛�Eo�s84*O��{����l�ӧo�	��LjF�/x^ý����^��&�S�P8��>��A&���::�ف V�7C3�!D6d���!X�|y:E��_%7���gk]�&Tm�c��VO�#P_�3k�*�"��_�/�o>|�����������1�r�'���X>�ҧ�/��%�H���yӳ�>����Z�j4һ�T@h��n�u����/~�L�y�C�a��aU�4�Wi���@~�d���y��G������Z�qi�$ݥ9p�C�@����&�sr��<>K1�ѿK�;J����D���,~�t���&�<��g��OvL���;^��I�C��J=��^FmB}d�C�,~�P�xG�2�?���XVD~��h"^�?�]n(5����2?�(8w�L�3�1��[H����E��l�7�?���+�G(���6}�[0�)��ư4
�A�k߄b�؝��k�Ŋ��uX��U�#�)V����7Ń��D��e��t�[���ٙ�>�@����84�� �-9����Z�.n}:���Ε�z���#��dh�!��
ǥ����k�O[�:���!�]Y�)�
�t��dO��r�����rv��P2�+�2�*T���EڄUj�PB�wK�Θ
=�����|�Ǥ<��3��n魠*ڿ�fMh�s�X>W�gO����N'$�u7��tAұ�A�����q��h�͌̇��D0��'�*��&4�0<BXFF�V�}�o�q|���߻�Gg�^��ä�kש�G������NrJ��w��s`Ϗ���U�L��:��J���^��	��c�k@�� }ߓ��M�$�?��t�^"�Y���S�N[yļ�+��]p}�L���FY>�HCA���qp��y��M?�x��	MzA���
�>Dm�7�r)y��蒾V�͍������l�1ύ�"wm�_\s	�ɬ�?�=OM�fR��5�U�C��ԫ�{�G�����eHa[�y����
�=sD� R�U�W%Rd1�'�=�uR�(/_� �9�ַܺI��
�"�%����;�0��ݎ����b�+M���G`�p�\�{��?sX΁R�K����V7��M3��y��>��
��s���h�)wd���c���yt�\��̌m��7�x���5~ng��l4mp‰�Ѩ�!k	ԣI�dBG�4CB�s�5C�OYb�jo��۰8=vMa�.��/l�n�����M�q�f���J��,�i��a��s2�`0:�{�Y�),fs~v�A�t��T��1��2?�+E1�V��h���cO=��B@����U�
X��y$c9��h���
����h�ׂU
��ׇL_�CAkHq�>�������yJ-��-?��I'��<��TJ#�2v��$d��1��h0�Y!}=��n�b�J0�d��N݊�T�l_9V9��Jk����m���{\n.ӡ�&GTA�B0��f�s�f�X
|,c�:��k;�u>Cv����F�ގ�sZL��W�T�x�c`d```a<=�|Ed<��Wnv�b|�F�������
��``b�d#�x�c`d``c������8�"Ȁi+{
�x��VKkA�y�<��,�5VIL�,���E����"�E"�'sj�����J��U3U=ߴ��K>�����Փ��g�_��(�ET��u���=O�'{?<c|u�>�Law��]+t�w���^��nD.�}k�zՇ��쯍U}ɩ�o9�:�΋���;��FШ����O��;��XS�B�[x���e#2U�o�ا�C��������??✼	9�Xz{w�>�	O3��E��*��De�[�=픖wE�:s�e�I5o�ÞR݇�G����=SB�P�s�|W�+�Ⱥ�	��}[0��l�]�1V����~�ٴ�F�o���M���r�����;�'�����O^gL���y�h�o����l7��/���ӌr�q3}=vC����C��HF=�ǡv���@�i�lr�.�r�4�C���үV����ldV¬�L�[�e��N���0WԿ�o�ϓ�iosW�wz:�z���Q��Y��Y��3���R�y��K �>?��+#�B����|�J���zj�����6�]@�UD-�P�v�>n໌u�;���W����O���MeFY�г���\�l@���*�!����u?�'�m������
�'�18��>�w��C�Ú\f�M��c}��~5���l���mo,.�}��Y��r�[�K����f\�y���B�G�y���o����C[�����
����|�E�E@
����\}�d<�z��/�
|�x���{T�g����N.��i�B�d�b!���3�i�M��e�$׹4��M�=�'4r���i�!�e������������}Nҿ�1��H6dH��A�T8T*�
�H�GJ%��K�^�
������2	RY����HY��Ryr*УB�Tq"(�*ѯ��T���D�S�Tu�T-�I����z
�jp�E/�N��:�R]ɕW����gKn�l7w��S�G�G�{�o�x���D��J�=é	=���Ż7����,5�w�0@N386C�����&�9^5��;�J-�H~�i	>��j�^+z���O��P�u/�/��w�R+�����=q� �v@G�S�LLgr���<��IR�B��]�<�1���ug���fO|�E���_�P;�ap�K\?��G�������ǁ�\���Ti5��s܇�}8�A�p	�O�?������Ͽ���R� �Kr�Q'�s�?�YO�w���1��IN���0��EQ
�S�9�?�'���0��i�O��do91�1��ٜ�X�Ų�X�b9�s�?��84�Q+����q>�_��:K�ຈ��L����zK�[�w˘Y<����r4/G�
f��+��*�$p�V�{"��r
�kr���Z��u�1	nI��x���c�7�l��Fzmd���f��L�-�ڂ[9�[�L�6�i{�[�G
�w�o:wSo3܇��j?�R镊���:�g&
>��u�:��s�GXK�˟���Qt�����8�;��<O��$�'�|
ON������2�Ltg��k��uo����\�G���|�؋輄���]書竬_×�h�ιȆ�
�o2�[�ݢw� ��q���L�g��<D�#r�=��'�|J~>��S�g�9�^г�o��/��/�
ͯX{]\Fe�l�)�H�X�L��eJ�dJ9�8+eJ{Ȕ�*.-��o�x���2|@6�t�L%7@l�^�@���(��ce�E�T�q>%S��IN-��bυ����!�.�ꎔqeϕ��ʸ�ȸ�xP�!�Fލ��4�I2^	2ެ7%���w�i$��<���_�L+8�;�гu�L�X�-��@��2A<;���@c'8��3�tAC�.3���=P&��p�(ۓ��1�����o���������O��)2�	ye�e0ڇd�eN��d��gF�{u�B��p��o����q�D��>�*3��	�s3������=��6��(���T~G�7�����7��L4���Y�C�ٜ�9��񜋮��z���]�����%�q	���ϖ1�T���e�W�e}�(�=��dr��w���s�oWs�e
\����迎�$�H�}nEc2�pϘ��o�����K�S
}w�o����Z{�/��o?9��w*z�� ��%
އ�a�a/�G�|���<�lO0��!�������r���Q&�<�/P3\�w��D��p����ˆ�
�n��܂�-��?�3u�>w�y��wᘋ��ɀ��u}�є��<��m�󐼇����O�~�p���)>���k�y�g���{ü�,��Ǜ��u���β�<d�-rJ�X�l	�K���l�<ٲN��Xs̖��'[��J���lOY'٪��բe���&ٚ� ]�%R�6��$ʺ˾C|� �ĺ=�m0C֝5�,�w�d=x6�V�\YO�(J��?(�m�,�!��~Sr��������~n S�%�Z�@6m�e�ю��p@~����e��tx�c`d``:�$ɠ�L@��`>(Mx����jAƿݤMk�`�R��AD��ݴ��7�?�Mhb�W�6;I�&�av��k_@��+@���U�o'c�BMH�7g�����<�������d�E	�,p?-QvZ^��S��J��r	/�g��p�}oyw�/��x���G��Y��:w�LƜl�e��>[.�1�[.b�q-��	u�y��זK�輵��mwfy����x�~������b�b�Ї��1BL I���vQ����K^��I��k��&���LŽ���D��0�fb����`0�(JfRMdD��I/��DK1�Z��`*�t�M��Ƭ d.�do<U��ڨ�U�ڴ��Mr�;�g�zpXm�k'�F�}���FUF��]�=j;௲��K��i"���bD�.x�B$�d��y�&��_j����Q�>��º\ՒO���-�9"Z��mW���j��\DI�滎��Sid�IΩ+�Щ�})��dG�»�2']�Z����J�Z��rl�$��;2��V���z���n�M�"�L4�R�+�_�
���e�k=��~^^8����D�9�yW�y�1�E&���ϋ�x�}Wt�ȲuU�b'X��̔ؖ�,O`����ݶ5�-� 0����̏��1�}�̰�����L�s~N�$ݾ�}oW))L��?����nJ]��.uc�ԭ�R��n�4d 9����0����
X	�ư	l
���l	[�ְ
�	���`{�v��`g�v��`w����`o���1����P�	���`8���`8V�L��¡pG��p
��p'��p����p�g��p�
�P��zj4�Fj�-hClX
]p�}p��5�C!D0���·�B�.�K�R�.�+�J�
��k�Z����F�	n�[�V�
n�;�N��{�^���Ax�G�Qx�'�Ix
��g�Yx���Ex	^�W�Ux3��
o���;��.x7������!�0��������	�$|
>
���������"�_�/�W��5�:|�	߂o�w��=�>�~?��O��3�9�~	��_�o���~�?Ÿ����+�
���¿����/��0��b�pX�a�Q\��q�čpc�7��ps��ĭpk�߄��v�=�;�N�3�n�;�{�^�7���c	�XAM��N�~�?��Ax0��p
�qg�P<�#�H<
��c�X<���D<)�:����x��g�x����X����:6��
[��ڸ��`�袇k��C�p�qq-���x^���x^�W�x^���x^�7�xތ��xގw�xލ��xޏ�>���>�O�>���>�/�����f|�߆o�w�;�]�n|�߇����C�a|
?�ŏ����I�~?��������E|��_Ư�W�k�u�~������w�{�}���?Ɵ�O�g�s�������o�
�����?��/�W��������?�_JQ�2���i�
T�a�QZF�i���hcڄ6��hsڂ���hkچ�D��v�=�@;�N�3�B��n�;�A{�^�7�C���S��T!�L��M�~�?@�At0B�h��i�f�P:��#�H:���c�X:����D:�N�S�T:�N�3�L:�Φs�\��ydQ��$E-jS�lZM]r�G}rɣ5�S@!E4G�@���Χ�B��.�K�R��.�+�J����k�Z�����F��n�[�V��n�;�N���{�^����Az��G�Qz��'�Iz���g�Yz����Ez�^�W�����cA�v#(�ot�?��S���tZ~A���y�b:
��n�N/vj������� D���UϝS���۫�|\�QHn��
�v�r��3�o�t��<Ϧj��C��Ҿk5���|����l�I���uw��9�b�a�
G1���0竖��N^�O踍n��X�o��uܾ

s��T��S�M!���ˮ�nS��V\Sh������Kѳ�n���~�mX=�[������ڡ�؍b��ZG��NX���v3��Y�_sT+N�
��_L:��>��WGAh�Ӳ���o�{	N��wG[VCɩ���rs��#_e=�o�N�gy5Y��VS&��u��f���L����D�� T^�n5���iY|��^~�Hˡg<�M��p�\�e|8~}Љgҝ�Z��0��n��A'��DAM�Q��}�,&&��9��#k"�G�8�
�������T?�ሆ%�b`�*ԭ��i��;���4�U�v���#�#�r{���"���g9�r��p���nY��b�)��w�Wy��Fc5���p�@
���~;~=���W���~���o��\��X�l�j�UX�W�;GY�=�W*�{�L��;�b*?!+�,a�^���C�W�~��l_�b���$��C�er�b2�}�N_crߥ�ZL�m�z�H؉z���*�L�d���I�rZ�8�$1%'�r�q�~�͙e΋�ok�o��9l��qB�~�ɽ�b�m3C=�A�&��p�c�'D��˛t�	��p~��l2s6�K)����7��4�R����r�bC����B�e��\܊�dDdE���zG��`$�`�C��!H����Uv��;�ɄV�
�Qy3Cu�V����87�'���F^Z�2���ٺ�8BP#
YJ�O��b��^:��TAΧVg�v�q��~��A����]vx�vg(����PwT��k78�G�������;�����y7�b@q�@�5T�>s�;�'M��I#��I3>+�7�A:p}��=�[|y�-N*��y�.��orJ���qQ�Y�X;�(�C�k�8����>koqD�Wpd5�E=�q�un���k�6�t��$��z�"cÎ��|١(�S	c���J)�0.Geɔq:�-�#�����$�Y=f��
��f��-Y��V�t�y�����XK�h�Q]�ԗ����H�
���e_����`~�(�5�TA��Fֱ<�b���=�.��o�w�š�
��I3љw���f�w3���ł|0˗��8-	��/�Ona�.�%�e�/$��է�����<���0�"/���h܈C����3��e9i�b�į9���;�8�$�"���G�!�H��J�aW�k��dqIf)�H���Ƕ��I�_�({�ڵrv�j(N�2���f-�����i�M����j�&�Pd>Q����ij�hr���&|���`D��C�����	{��nA9���YH��61G&Ύ��m/��%	iź�A�J��c��O��� �wt��C�����ŗ^l�4b�&��ψ8��W�V/��g��|�%�%Y����]%�Ԯ{M��>��ɏ���6�3Y
�����8Tcx��7�V.M�\7r8�G�
6��C����p�WlЋcS�\�Ha/r6��z#��^`����ޑ��5�,�Q�!����������^��ߴ]��&����h�����#���*Z�L�>K�,�G�ҧ��K�����\w>��5�]���-�2�䖠��qRs#?X�b�9�Vq�-ˎJK!	<�=
"��4s�ύ=���q���Wv�����/TK���k���Xe�dI���$9G��M7\�@�&��S��J�5����H��⁚+C%)�R�V��U)&���E}���Uc|��8�L
h�,]M
hR@����d�V�ui��(KQIf���)EU�	)4>&�<и��+RRb\��k�ӵ�J�+	�$���J�+	�$��0���,�� ʂ(����	g�u�!в��1tm�Z&��a�kEX+��V4tV�
!6dZC@��2dȐ���0a
����zh�L@f�ϻ?PUTTPUT��*4US^nHKh���Ą ��EE|Q_T��EE|Q�Ĥ &!��L
b��n�b�܊BLa�)���$EY����U)&����)��K2�!�0��X�Kb	C,a�IIHJ�3bC�`�1�!f0����3bC�`�	_FYeA�!0ʂ��"�� DzC�7DzC�7DzC�7*�0!���!���!���!���!���!���!�� LA��)S,z��.��sK"�!�UAT!�"�!�"�!�"�!�"�!�"�!�"�!�"�!�"�1)��DC"����JU۴41�kƙ"�)қ:�&]�2X�bB
�3�K��o����o����o����o����o����o����o����o����o��f)���Uz���u]�uY�z���RW����zB׃�V�zJ�Ӻ��lROi�)�;�y�4��ҼS�wJ�Ni�)�;�y�4��ҼS�W�Ҵ�ּӚwZ�Nk�i�;�y�5��ּӚwZ�Nk�iͫckI��Ҍ�Ѽ3�WGؒ����;�yg4��Ѽ3�wF��h�Y�;�yg5��ռ��wV�ΊS&5�&�դ��tV��j����	�PK�uKX��Uh-h-=spiko/assets/css/font-awesome/fonts/fontawesome-webfont.woff2wOF2-h
��-�?FFTM `�r
��(��X6$�p� ��u[R	rGa���*�
�'�=�:�&��=r�*
��]t�E�n�������1F��@���|��f�m�`�$ؑ�@d[BQ$([U<+(��@P�5�`���>�P;�(��1��l�hԨ��)��Yy��Ji�����|%ہ�^�G��3�n���ڕ�
�͐D��p\Yr �L�P���t�)����6R�^"SL~�YR�CXR	�4���F�y\[��7n��|s໌q�M��%K�.ۺ,����L�t�'���M,c��+b��ׇ�O�s�^�$���z.�mŠ�h&gb���v���'�6�:����s�m�b�1بm0"ǂ��*V����c�$,0ATPT�1��<�;���`�'�H?�sΩ:�ND����I�$�T�[��b4�����,�μ�」bl6��IL�i}ی&�4�m,'���#�ץ�Rw�bu��,K����v��m_-���\H����HH������?���m�9P���)9�J��$ƽ����8������~�;�r�n�=$��Nddn!'����;��8��'�N��!-Jʶ�.����X�=,��"`:��		 {�����K!'��-FH��	�#$~�Z_����N5VU8Fȯ��%P�ݫ���Cp$Q�����r��ʽ��k�k��3ٷ�:R%��2{�ީ��h%�)8����
ILK�6v�#��,;Ц6��N�2�hv�����OO��t#��xT��Bf���q^#����?{�5b�I��%-WZ��b�A�^�1��n5���צNQ�Y'�������S��!t" `b3�%���35��fv;����lά�9�:jgf?gr��p�x� �|� $ e��Z(�$w(ZrS��v+�Z���q�M������ݙm?&s[��t�S�Sj��9���?�|��
���>G�,bDշ^��^���:l�3��NA�`�5�26�L�pS�	Aߧ/U�
�֘����'9\��Նt���!������l� PMR���9n�
�`(�@� Hy)M�dM�
�5�ԤH'ґ��mS<���q&k�)\�{;�1��m��8�{��X�1�-3ǚ��)�B(��,�%���������w�o~��t��HW8l��Z	r��=e���1+�/Ɏ1W?ְr�89PL��>uo9 �1 tØ��uc�����@��]KR�bN���v������(�"��y뽻{c�����scz�&�p5���,j�n �kN�!�.�n^��Uu@|�?v�>�����rUa�HR ����Ց��I
D��ˋQ��~p�
�܍;;�n���L$�t�	:	hFCY���TO�FNN~}�1"`�����a��(�?H ����\���u�0LԵ��'���͔PbnmO������Jl�?��s���0,8�x�B�B��F��_�RiZ����~e#j��w�hOc*&F6�Yq��{�}?��>�u��.�4�h%g�`�&�� ��)��R5�H�}���ˤ�kܩ��'J��O�I����_��qOb'�HǟBYEM�6�v��5�NJ
�O�NFNx(1�:\�߫C�k�c�b8Q�	d�[L(el+2u-��a֘d��5;�N$�"�H���SF�o�2i�"��\�h7I���<SCO���ȐH��Ew!.��!BSC�gĝ�c���s*էs�(5m�=q�ʊe���Y�$�\>fN8�q��x�#v
�6um�	���`�NM-J\�F��r�D��Z�0�#'ꥈn��GjL�چXʌ�A���gYs�*�Y���^ٵ�;"�$hb=�ϛ�0�vH<�Vv�c�_\Y���w;dB��N��3!$������I|P� ~&�d�.�԰�-a�a	++��9�.mR��4�cy���#�U��FW�u�
�	i/𜯔f~�4��l��XS�9Ä�1E��3@���k��@'#���c���n� ���S_;�%��I��+��.�L�Cx�����ꆱw	��Vۂ������Exf~H`��0�!d��@Q{Oh1��H��Fë�zs�7�݉��Ɯtrv���k���heS3�ۇv�9�q|�O��K)�U\�A�%����o{l<��K����͎���i���H�G�I�z�=6�WWo0��|�%A�jdD)!
��pw���_���;���c�D#�ˁM���Nz���p�^�CDx��xj)�5O�9�
�`��EDX�x� ݒGU��˯ę����ډ�.%
���Έ�~��=�Co�)
F�7���$Z��(�g��oB��
�Ɯ�@��&���e�{��厣�l��f�_�Rx�N[�]��8`-3�s����{Pj��Wuc9���[>�-�.D�܎Y����d������+^{���C��m����,��@N<������.��V��M��S�+�\D�+��R�|�6��'q\T�����9�D�X<$�p���"�酦��$�ҷ�,�p�s��T����b���NkI�_�`��
F��W��V��%��w�~���DԐ����*�xi��y[rZ���[S%�G��s`F<ㅣ��� ��V�+��!+������؍�9y�k�fb�82�s�}l;[)e$��T���k����)�v���9����{�u�u�t��޳@E��>|C��<\4%�Rv���������@׺C�8\��~)#k|��.a�o����00G�q0%����hp���
L���"�+>���%�^Mˊ�N�s��q��=�����䦆�K4r�-*��%��h#�%;pP馔h�C=����
��&)�ba��KL�@����t�!�~2�S]rYl�Z6�3ўJ�o��O�V�;�h&gO5�RT�/}����{���AZ�&�S���t����ͯ�P��C���0��D,�pbpз�z)� ]�I�>Q\Bl�"��^3R>r�*��C>����xPU�z�}Y=�̕�}�ж��
�
6-`/"H
o�&�D�I0�E2Xa��-�{5���<
,}��``6����ji���im<UujY�Z�jB\@�g�3Ejfp����:����W�Ǯ���߳����p�ij3ao���1�da�� ��ݫ����J�ײ? j�q7��M���ff�Y�f��s�$��	��H���l��������(%.�r��w?�m=~�y�cY�bg)<�W� /Vx�k���$��B�r~����9�6�0�&��_vMY�%��ҝ{�E�6<������%�%�4���ߠO�@��N����"Z��OD{u3S��W�M��R��3s<���س
����\I0��.��-2ݭ��ㄭ;�	�0��}N�/b���N{�I��|b_r�e��_pSi���>'�w�5��RF,ч�%SY����Wh�6L_i샣=���i1�3�YI7N�Cp�I��Ĕ��(�r���0��{j����r�K����Тo)l���3na�T1\��IE(�m����߃���D�l��e����$Å�wX���U��(@����M�a"n�,�*vG���̨x���>�G�S����g�̉"�Q�v�b0*z��PE�y�ɉ�?7�$����%��G����p�dY�&f�!��a6��|�)�;u7#�3�4�mJij�
o���O�p�ȁ�v8j��x(K�/Z�d���x�Ń�m7V�_\�f�L�7p�X�z�H7�-���,(1KHb�e��,r-��p�L����3=�T��2�t�2ټX�k:����Z�5��s�p��SsT����:.]��D"�@��-�E�̑!�A��2�ɶ-�F}�˒�2Bǃ��Q���)t�ç|�#4�|�\�㨀��`�fc,��#�g��1:�-����ty �]�����2�Z~��.)�����nj�����%R�K����(y�`�8��C��֍���z���K-N����`^+����n���3��ϴ����T��3�tQ�أ�4<>:J0È%�ݑZab`��vͬ��a�T/Z��aޝ�ГIi	�W1���_��>)���H"�����p���|7mF�^Z��~f�0J��^�I��3V�!���{�<e�/=�p`���q��8^����K8��O�9�w0��Z��|��v?�n�	�3��f�!��߷�~��T� ������ Jӛ����5��p���V	��3�˫����.=����-}��[�g�R�5���n�B8���3.��8	Yg�#0�&���S�/.fg\
E�f�}��,k����g��$�?XY�*������1��p��E(����RS��Q��t��6,�Q�j\��</]N�s���;�'HX]�E�29��d�kY�
�j���R6���Q!���� V���
%"^�`�N3O�����[�v:�ʄ:��^ڜr׿�@���
�F�_���Nc�B���8p�\i����7��g�*���,�C����[�6�T�?����%�z��@jApBN5�"4T����"�}0uJ􇏞�Ȝ~3���{}uW����M�j�9�-�]����'lS� /�R><�+�O����eB#�Bc���jL\��-�Zh�[�I<����q�v�~�k]�G���TD�?S����/�-��%ݒ����7��w�i|C�I��q�wc��W�x�� �/7�x��HO/���o]���G]�y�߃��#��7��b��$�t��R�$ ���]�a7�F�Ѯ���,n!r��I|2���8�x�6�gS�h�	��R^^�D.�x�M�MS?漞'G�#�~�+�����v4�d!FyT�9�-�fVa7h�B��4�����,�2�Ɖ�&vTHMqp�4?R\�����Xa<��4�@Mi�H�D_��	�Eg��R�y�M���lT�ؠJݮ
��yc��"�HJ�, 6�u�/ڴ��������y��V���nJn۟H\P�R�Bd|�4�_�$k����.��w��™I�pS��$��|}j���9������m�|�1�ߘ����n�93�9���5qS�|���xW�9�����B��VZ!����m�K/�Ln;i��u��$�*�t3�Ͷ��@}���B{�Y���ԑ�z�2J�u@�a�\M���R7o��dz����e��7�/$4]^���2k�h$�=%��1�I�B�؃ ��H|�N.[�M\L���b����1Mg��:�NV._0�,�+�,��h�t7�l8�s~IV^
N�˼M���ؑj��ك-�	oܮůQ�o[m��j�=r��m>�~z4$M��}z �s�h""���u7�V{Rûݦ�O-��D9V�٥g�IʎK�Lg۶B�T��P�'�K��̦�
qW�֒�3e����p�&���ے��L�hp����N�aS��w��
&���;e(�,-7v�x�-��w$W��nX�U��������t8�����Y���?KM�ct�Y؃�p*Շ�����-���БfL�|�[nL��
}4�{5�頠�3᧌�n���$$,+�DNԄ-H�V>��H����Os\���-�;�W6N��M��8��Fi���;���7k�2�6%֒�a],:!�ʲڽE,��{U��naw����Ng��.��I9r:j������<IE�1�`$`Lbrǒ��ם��]�x�9=Rv&*Q5�0z��y<���`M|�ԙ�dO�٥iZ���$���+#KH�F
��������	������)-	�:M$�yc��E�%Ai��2]���l嶨����8�I�y��ZGJ����\�2֙Xb�L���I�A-�GrR!�0���L+�Qh�S�Y����S�5�_�(�poF��T���#kN۾�l|r�n�d�H���yۊ����&ۆx�p�����[�8G���dt�����z찃٦	8��B��KP"@2e�e��y�x��j����JKˆh�XŬB�}��6�â��`?�i�*�[9e+b�VL�aL͙����dBYp.�ψ
�n\4�糅Ƥ���d�<w��W"��? �'�O%�a2N�9��,�ߟ���!���.�y�Z��%�4�U�^��u�φ�g�)M%��C��V����M!z�&�����|D�,�i�~R,%��|O"�����h\3+��a����������i8��\$!1�L��a6s�
z+M�R�b��_
k�v�j���U��裒-��jX�Gt������b�~�˚��ꖺwt���͝�SkP�2���(=cvt�"�[3��&��h�DN�=�򈎋Pɛ�A�G���'_�R#��M:.���3�	���tJ~��3zwx ���;�7��O�8��Y)
�DSE����/����7�i��!wy�6��$��8E0�Taތ�|@�
g����.;m���9�9�s�HrL7&�����3Bs�|[o&ou�Sg�խ�+{�AE���kZ�	�"N�d�5��:��IV��ڊ�>�F�b�K��Ψf)*c��G5<��C����.g�]��k��
��� A0�-��٣��v�T �d4K(��Yq`���(u��{,�:0*$|2����/I��,�`E�����xP��#q�����`��/�:�����';�ىV�D)˴�r��89�w�}[��F����ޜη���+��šh�KH�\�ǚU���䬂J�V$pUj�|c0���{���L��A��?�V�=�4���S�Ŵt`���d���o��d�bUP���J�x�g��JR�r�O���s	�����4Mw���
�""�42����`M��D�/N!��v�3չ���.�f+�@xO�V�q�j^�Cߪ�Km���,�8H9�Z��<&�o��(�@��k����M5����]�M��U2=vpB6DXj`�r��<�w��1�Y�:� �o�<�9�;����F���$;2֜�j���޺�x,�ʁ�C�Rĉt��$�VJf�f��9�)�a�9P��&���6Oo��l�<������ds=#3�s��P-�bD��"��[:�wɺ^j��Ӂ��Qej`���Tq�=����H&�o��kĉLD�W�O������*J3s[�6�j1�@��nr<�ξۇ�#���@	�0��c	���?ﵝ<2�D�Ӧ	��}��Ts��S��"�R�
���.}�oZ���Fo*���ݗ������:�������7��H��䍚�x��]���a6v5�R��̾e1��$XL����
J�aa�݆,��섐�"3-�G�!˥8���8
|�T:S�P������pMR�Y�b��{�+�O�eۛ2���g���u��V=�U>-�kb6U���ЩpZ�M��O�`���$W�D�y���A߻�[�4��a��J?�fD?=�d��(KD䴱:�D�/[�#��$A�#KH.:��x?%��V�r�@[B$�}�c�o��S6`LPfM&ɔ��A<:��v��Ú
Q�~P�w���[��+�������`+j� V��+��R*���u�l!���|�+'�KY�6�6��_�ud�}_���[�yuۘ�j����o$��Y=�yjR�i)��b�ԋLaD(�X�U�wI�ڻZ�$�7ڻ�9��&��4Z���'��DF���[N]�~�dD?V�Q�W��Ͳ�}vS>�Nm���+S�q�H��a���U!�Β����Wb_+�����U�O]�^���l59	@��1�'���A�^��m����o�:��9�ף�s�-�N:���tD-�zkS��j�a4�rc�zF�ۻ ޿�x��v��7[�äC8�#7�p5�+��� �~*�bJJY�zֳw+�����-��p�/L�L[cg���n�lc��a�P����H�F����$}�9`������\
��83�Ym�1b>�~ƽJ��؂�Ϗ�yBs="�����f�(zK��M�"�H`��w�c�Ed��:b8�6(9��<��c�l�ݘ/���k��g�G���������^ESE)5�G�_^��k߇�v���̚�}T3�;6� WvTCP_���k���._e��єNJ�L{T�!��6�j>h��0��#���[��㗚����K��z�,�!�3���2����:6d>�himE�\�=�H��Z+{6��@W�ʯ&lC'�,��rX !8�(\�̭2�-�P8h��@�C4��<~����Z7j%)e����eF�pZ�'15��^6B���3�nc�o#~���²q��R�@!ա�� z�^�Ks]T�@�TN�T �,S*@7��C���ī�Ʌ����L��iQ�N�,��	#:��RѪ���j��9��1�-�Y��P�N¿�\&�yL8�ӹ��&0�c��v�Ɖ\�����J�A��;��Q;�]���I�M8	�s���Mf�?԰�I��r�r!�K�9я8p�}Q�콍��g�-�*sm�~�X�P0d�M^��?D�dI�m<��p;�y�,"ۦ�6��v�pT\^�n���3m�>8�eC���N}����cà�٭$s7ۼ��#յ<SF-A����z��≱�
�B�	*{�6cg���Tz�GX2+�����a��0����;� �EEaG�d�Θ׿�[�M���
�i���g��:B�[�	U���3�J9�
0��I�2'	o����\e�%4^5}����5��� �0=�
��J�}m�y�&����"��.cւ	V��}e�J���:42q`G�O�-���-B���J�F��Y�۾�3|��|)��������IG��a����+�*��ttPb��A�Do?C��g�t��;��I�]G��2RE<^�mK3����+��;�
�[���3���[1����y�v���
#��p�<j�iC�af�~\�G�C�4���dubt B�K��бQm�=�a���Tq<��^z�ء�(�޹�G~QۼZoO��c��r>R�{b��4���vM�q���l)<�V�{ě晐�2P��T�'D�
Vt�������oP�aU���6`���"�Qe�]ka-�^<xj�<�G.���~��������5۹�ۯ]�V��`8Ϧ����%���r�y�v����;��pc���������`�٘�uҙ��9q��q�E���ҹ���B�����6�Ǒa�e��E�ثO�Y���Ǒ#:y�p���/!/��5s���U'! ��"|���B㡪�
�t\�T#���ҝM�$+2n_��� ���b���^�&��������e��i��c�I�=��u%E���ȭ�֓
���fj�aظ֐����E�ӝ��_�e���(r}�mo9��UP6zH$g�4�ٺ6�P�@@�X
(1�Θ��x_	Jy�{�3���',����M�1n���>v�O��ճ����j���ְr�1�f4cs�_%v%l��K�ZNi�+V��3�'�����~��N�M�G@H��B�b+���v�VFq@�ݱuKZ�h�p@��E0�����ua����SXd��U���K}ԯ�8G�X�KiI���%���uR)�E��I-�ږ8��|1��G�Ξ��f6�Ȁ�=!K�F6�Qf[X���~��_��j�\^�͋^k����`����D��s�G]~�㤛yo�}��;+i%�N}�Q��0��ԥ�U��u)M��[�Z`"�7
��?/[C�{�l�)�$Mr����|^��	a�����:���"�֊��a	�l�>�h��y��a��{�2>��CP����L� �j?�ntg���]��S����{�UӇ�('��b�'f��g0Ӄ����LPA�Mtd�)�2ú�Y!�v�&`o���2P[�aޔ��5��S�|#+��7J��
#ȸ�_��dU��6#VD����B"K���|�����)o���tk�l���,��l���U�)ݹe�5�<A��\0��_�7���^~{�$
qR�ΰf���P
a!f���XU���hX�l۽^��:(�m�?��@=bhg��O͖{-�i�:�'�A�8?g��zHFz0�[D#�A�.��%'��w�=23�ɸ��Z'�Hx�����&I��4�1I�Ji����e�z����͏��o�ٴ��{�����i�ß8	0[�K�/�n*�a5���ᰉ�,c������+��A��BDrlDo���"$Th�T����9�$�岣�'���0V�'|�"������
���S�AJ!�Տߑ�6�F6R\�6\��9�-�_=��Q�"9IW.\.zmkz�F͵U�x<9��ɑ�$�7i�FS����ʧb߂@�ۨ�}��u��o���Ͼ��Ѫj�4=���oeUK�xd�W�뻸1nD�X���y�"���5倘�ʂ����K�����-�o7B"��ě)��uW��E�h9��b)P�%.�$�G��(@(��u��R��fLT ϪJ6
���)H*y����=���Q/����uI.��<���,��r#�y|�l�<`��Q��=���F$��A�t阍2��d6c��Wǥ䇣4~�%�vb�a�Е_Cծ�Y�l�̨�vq��s$m:�G���\�W[����C	�l��}�R�^�2J�I6�X�l9��=��`t�ӑ�/���P��jes"��_�
L��w�m��~��X���N�M�1x���ٛ#��NmzS�%b��,���Ž�~�B��	`�9�Vu6U�}ֺG��u�n�wO�����fsC�\������g�������V��Φ��@����:�_`c+}�L�<�[��#U��*|�歺[��[姙�ԧo��ɼ��\=GR�K,![<��H�?��;�9���:��Iͣ+��a���!���*��?#�'G��=���Q6�,�g�m&;���������X故0��
�������;qW�q�'�4��I�C�g���΃Y�`�~`6ix0OG�g`���[~��?NC�Q@�Ȅ6�N΁���A}j��Ba�3�ť)���˴:q�I���gZ�2�vlf,�У��Y��Ѯ��bԩ����Xo�Iė˜�X���_'���5��]J���2P�92��C͉���@�C�����6E�e�B@���A�9�߇���Ǵ�y]�H�	�-� �b��9
��O�0uw��I���7J�x�ū2��\�Vf=nV�V����"#9���v8x
��mpAh���y�3��pQ	%��t^��� |�‚]�YB8jC׬n�#&�ɇ��ʴv�˒P�>�O�������y�UAt2�_�������n53e*��1���v����(K_H�vV�ʉ3},��A�C�Uƍ؂�Cu���t��i�-]�`�����7�]R�
!zs�N��t���&��̉̄k)��SL����̹�y7��$��ϥDJ�N�d��"��9�
�31 I��Z(^(
lw6
/�@�Y�B�^���}�OT~9c�c��]���{�)��}�D8�${����yc�,ʤ�{�tA�W3zHI��m��D�4ܤU��T3d�I���D�)
��I۬�.d�~�[-�K�^2�Zc��
�8��u�,Y�^\�_��ԁ�_�+�cJ��$�\2:ZW��b�B��w=��[1'N�YVz4�;��(�fzN���U��f(p֙�!x�#����L�=#ŋT�hn�b��a˳"��,�T�\o�!��@@sN%��|
���t��Xj�	j��	�Qo5��������o�eF)o�� �9˷�:�h*'cJ�孏��[��{ȄNf�nz�]8F�/�|��1�v��g@�J:�Y��նNu�:�d��hH���o
����t�M��`��R̍�R�i�:|N�_P"����B@���� m`a����:M���	c2�Ũ<���ؓ��U�O�S�\��%a\A�p���ꄯ�e�\��A�����.̰{���w�ǿ~<dXIh��RN�gkv��o�{n�Ԝ�}���H|e�iV�W����?��#�(K:��m`�&�L�x^F��+'�����؜Z慉��ŏ1?^�E�(�ݝ�D��u��6��T˜��LS��6O�am��d�ʙy�2���|�^�S�K�}*�2L/Ř)�h~����\1�� 
D�̅���$��1�G/Εo��0^����_|q,��|��`�ܷ*z�|���'�usv�j(q�R��zL>��6������	�;s2�ŋ`���W�`�TyP�g�ee0����00�}/ǔ��;h[tG�D�5�^E��#�h�ȍ:f?	�u3z0�ڎ�$�T���^T�Ahz�	�x
�I{��5�������'�r��K
��z�o l֢<���Nl���f��M*�~�Uʏ�W��_�?�v;(A���ͺ�R�^� 3�=6�6=2�n�~}c���O7�X���d��J�|��LP�ޝ~ͅ���8�+QD���\���ҭíS�\�=�U�v�
M䅚c"a��K;�A�=ԨĚ����k�J�N�p��M%AR`�و;�(���5�W���=���Y �g-�^v4��X�ى��J�@��=�c�3���}�*)u���b�T�F�'�|�N3����E����9��ڪ)1��!G���k8��6�D�
~H���Gp�%�Fz3�2��M�J�aZ��?�c��n0�)?�h�N��u�����m3H�~����1rD�'����1������Kr�t�sJ�Js������ָU�����2��r^�+hNzg��l0'\/e��tXԐ�v�l �j�cm}!Q�ϼ��t#��z��#]����ϕ��O��ׇjE�:�#	�6�n:<�N���u�i�����{�z���1ʞ����UV��l�+�a�N��W���h��)O�2ymEl٤�A��7���YQp���fB��<8����;����'gKR5n�����T@	�n�*��!=a5��������Z~CW��P^DX-Xf�j�N�ű�q4�O�I@��S����}�Xh/�>�,b����89����-:G|W��)��b��A��5G��<*ٕ��:ğ�!]gj~�O�&��U�N뢹8�� ����g�]-WW(W�NI�3��N��gr�3|��m
�m��'=[n�힬M,?�$��HD��D�-��O?5uX�]˓��3�7�>�*�w�g?���*!��JyT�@U�g��z��I��_��7�&�\t��H.Y�Z�(4Y'�d��T�
�F��s�-�qy�a�7�
[��67K&�J�/$�c/��x���[���ᶏ;�Ī�z1Fv��]G�'ڏ�Q�BSO�������І$�y�(��TS��-;�hűz��T��%D��ts��"��=�gwU�uD?b�$Zr�9�G���<��&�Ña<�v5��0�]f%S��an*���؊���oмb���8pJ9����⠚�'�-s�@�r��넅��T���AX��I�\8m]{�Of�`#��X�T^f�5��''������W�2Ϸ v�sE�\��Qs��(�ː@A�jR*Z���a��̳�Slі�R�[�ܜd�*)�ɩ���P�¢ĽHt�o��5��8��.��]�h�\s�І؋����?�Vs���h-U�'�#E�g�m]��2NjWl�rm�Z������#2�BE75^^��a4��wU��K�'g?ge���213����Ǹ�o`��lKzP6^� �$�$9N���Wvg2�HϏ���CR�ߜa7F�/��3�\8���F�\�/zP��/?������{x��Ӽ�]�������/�^9�@7c�ޥG<Ho~�F��!�6�:�j�*��Nb�lNy����C�cG��d2[d7�W4]�
�5�4i�2���*��h��p�*�9���mYmط��kh"ɋŊ�W�!��A�an��J�|�V�N�c|�u���j+�'���7������('tcnV��d�Uc���)�I╵��8()�K�Ζ9�U'���պ�j��?Vפ@B�O�E�G
,�cC�"Q[b�$�9td҆�=��X� �dL���M���͋��h��~���l�c�.��ж�t�q�?Y'{'ވ�A�cS�V�M�%�kD�
�{Ʀ�X�=�:��*|�ͼe"������~��Ov	;�G_RϞ��\���G�$4<��ie�f3���Ph�H��b0��6ĎU����s����LӨ���Q�|_P�����3�0����D���C��H���,A1^'�M4������]%�EJ53�蕂
+ͪBP�^$R��R
DB+�M-�	�s��b�R�VFeP�;7����I��o��m��^��M����k��++_�����[9K����W��R�vۧ�?f�q2�s��}�X�@y�f��������H�/=�����֯�A~ ��0�̜�xra� GD�v�l�Q���Z\\�D,h�i�J�]&(A/�"Fb��a�ƚ�
��m2�l]��x$��E5x�Ð1x��{�����A�1>^2���_���Be�;b��~�փ)�Ό2�j��� �r�8]'�7��
���� b�C�h�T��d���)�+���mD)���.5�1�-���|Yy���*��o�ڤ�L ���4A她=
��T���@|�X$�in.K�I|�R���@�P����@���P��*���a����k@�۟�������=I��	�=�l����[���ג"�h�X0�QҜf��˒��펖�c�<#9`|cO}$o>e�X<�`,�o���_��K�3�����p�{Y����An[�9�M�
�T(!"��?Z�]�iE�m�Ğ�>�'����{G�t�� ��*~���y���`�'�A�?٘#��)�o�($��ȉەL���vYO1o���_<�/ǐ�M�(���W�藑Q�'^�#0�M|�3}x7t��<��a��@�̻�H�l�1�>���& .�m�v��!*��)$�z��mr��t���(�:���G�G�beV�w�i$C�O1� ���c�Z�Z�<Gc<z��@�:�J-����_`�8���~�چ��M�	���)
uE����sY1�B��7�4w�0�G��5��z��A0�|Р��[��@��V��ܟ�Q�q^@W�r-���U��O���$9'��IBjf`5
�"ѦYx�Z�� �U�O/&83��,�8�k�2�&�� '�?�eEv�$��L`�B�%�=�T��ftF5対8�.���<1=>�0�G� 7z@Jy��~��p)g�,g��YL.$�,�� ��-�<�k��{�y�c*0�2�/q1��������g������K���M&�R<���7xC�y[M�ʛ
#ͺ����Dya���3\��wf�wr�F<G�W>�ĸ��M�]\��N���s�Wݍd�<ӡ���W����064�t�ȴ��v�Ȼ0>ԯ����; ��)f�#�*	�2<�h�� �~'B�w���m�H/��������wqM����o�gC)̵67�#�B�S��>_-[��L|R�R����lQ�}�\T�H)
�9Fa��"^�b�A:�ݳQ4��' �=�sO	���'�@.���Y&8z
�,i7����3y�;���U}p/�I��xV�x��il�F�Z��f���hX�c����.b��B*�|&��|g��e/�k�u��v\_H����b���d�p�G��/�A�}�㬬'�xȜ�Ջ�;�E����
�!W�����j��{���ZI$�z�{O�p�;�x��=׺�q�{�����5�l2�3O��=�@�j�j#�GY�T�n�>�&ެ��#��CBϩ�zLuy���lS�a�a���0�LTv��3��,�2
�sdTr�U}E����l1�z�`Xa*h{�qiuU�\��"L��д@�T��X�RU��Fg�]s���E���5�V0��X��/��u��k�z��B��'ك�J�x����	�Iz����7�������Y��Ε�1t���y���Κ_}��|�xm�[�xJ}z�l��D��V���r��csdsq�v�[��&��`�oU���l�?<j�C�!	OeqB��=�J�\�`��Lr�孈�d1Mh�o�w�ѹKi�ģ�d��*;^ҋ��$��xH���U��U`]G�kC�ꆂ�����O��QS�C��w�o�g~�yG8P�{{H��.$���6�!}d4,q>�`�ll�UMBR��Pe�2�A�1R���H�q��lB�Q���$�W�%��b�hB���ÚV@(?��F��A�Q}<GD�2�:�e@�f�$"�8�ȍF����f��5`��{���K�uv�\��X�+���vj��^4=��03O��(���0-I��fK�R���o���O���i�2�)؆�G�Ǟ
X<�ǘe�l��m��S�\��P��!!�ox�$�+��>dl���+��b���NIM�dT"+�ƌ��o0��`�89����\|5 ޣ�ئ(������y�j�q�m(����<\G�	�2���dT��P��0���$���n��@�
Ē!�X�㺕�����N��kճ�xiki����ݝͨћ"0?�^2�XF�,{s��r_e@V�����y�g����N�_�i����wq�;X��ED��\��b1G��(����Rs���T����<\ډQ���2tT	�;��`���[�,��Ak��K��bDl#�b8�,]�i\����|kC����xLq~r�
�Ά>|�ž�B����a��b�?a��ag3�0����(	j��"F�A*�{ߣ�d�]ř+XH�z�s����Z�S��L�u:��˅�)�Ҳ��n�J�EBnS����>Ħ�����	m�h,�R����T�~}�9,	�/������.��H�~�!���`��E���x��O�ۖ �mwI�l꧴ёUz�z�k*�*|m��*.?���~�
��c��hp��?e�Y�]�*H|̛1���e?�V;	ا	2�PQV���lW6m5O�3'�^���x�,�ҹ�a)T��eU��s10����ft9�����T��{�!��L���@�OL���tǽ!���^�L!t��i ���^��:C��R��	����K��
?2T��Yx�۩Fq#0���
<��hѭ����)���kes�a�T�l��
x����9���d��%+��b8X�Z� ��;g�v8n7�ϻ��a��&�^���o�b{w	OO��7�jϯ�زΞ��,�~��WY��ػqÎz����Voλ�g�'5�(��"ե�
�A�Ӄ[�:��P��|�Ӓ+>��#�2?$Mnd�u�e�S�J%����e؞~��U�q����
�޳�҈z�Rn�п,7��˱������>`�
�/�uFg��Og)P�J�\)X�k VF"��\t����r�#��wE]�s�:Y�#n��8��Lm"6D��
�Vġ�H`Q ௢��ү�QkG�]�<2�N�?����U
��&��|�a���_G܏�}�di�!�:`Ⱦ�����[�\,Y��]J����Ϲߐ���ì~���O���A%>���]��2P�l5p��O��ѐ��[ʀ4O@�¡,�Ҭ���-�,�4��X7�-#?�3��{���M·�C��1�8�a��Y)�M�"k��a�_=4�JqM��?��nh6�k�ɜ��P� 	�2�;�3�g�4ՍZЦө�GZ�k(m�p�v��riZF�}���i:�/��czP��uV�Q9E��&'�/���v��<�2���ۊ����YQ)�j.�HN����11�s��ʗ���؋�{�
��'|�k��lT�%�1�ꪋC���g�QUJ[�'��U�ؔ�̝�ֶ{�81� ��r�n���ҹ��}��
:,�й�6X7����f��e�'
NM�2p|�4��p6��Vn듁p&S=�[- ߞ��~�Nj�I���Y�/c`YAq6�-��Y�30#V~hs��EPT;�u��b6��WD#�N1o>��)Θ��Cx4�$�/jl1�
y�.�/���,���Rr���[YE*GЕ�Km/�|7�����SI��SƗ�q�F��㍹���6��:c�Vs�@��w��+�k�1��c��aí�����w0:Y5�Q�"
���+g"%*�2�t��`�G��ݴ�
�f:hN3�3�^�~<PM��Z�*w�����Ґ�I0�p!"`�PS�L�6
6�O��{&���`(�ۅ���Mq�aP����=P��Z_]��pv�W�{m�h:
�Uu,
A�j9�^��*��7#�C�f��]��gr�{NY��� 5���$�O�e�
Gn��s��$��\�i�`�D�����?�߾;���w���5U�xj~�̦�ܵ����֝�>�yө��)�o)l*��H�-�;���+�|��+[��-��ZG�X�f~<F���_��̝����r�f^R��
߂�4/)+��1La1PEv~�:+L>�M�e�b75���[	�Ho}pi8�;`�$�7��~�Yw�4��RypJ�s�������}�!*Yf�~����W��]�TKV�0Fy��l��$"��\��A��E?���W
,�[b�0q���.�|��x�Z�/�ˁ���]���P*4�$*(����R7��L�&����`goTܑ.�$�V̇�h�U�L�Hn�e��i_�"���o߁��e*mb��D2���u{��ݹш
߶\����ؿ����Z�D�ܚ��
v�z�1Ul��Rl-wk2V�x�Ց;�؀4�00�=ԑx�~޽ګ��o2R�mԔ��=��_��r���Z&�ן/߸�����(��[��C{�%b[f�.��<Nc0G2�ڼj��~H��iDP��ce�|:P�7i�/q���-ڏ���\�b�7R�>�\l$}�V����چU���*B3�l�RPf�	�d�'���<j�E����x���}�6f�s�(İS���e~4�U���)�C1�i�s%C��r�H"�3���؃)	��L[��ө)�mj��U��ٜ"����I��R��6�W3��nP���H����ߛ5Q7s\�@��Sw���RhƄ�eq�܍G0?޽~�ؑZ>���GL������c[�d�N
�%C9�X�<�Q��^i����p,U ȑTÉ�~��U�2('w|�/��B3�����J,�t
���WgLN$� [�V�|޾�v�h0X�X�����<�j�h���j0��{rLNm���[[L�3S�$Y����ʈ~
߇���K������!�QE(؋�����P:&��{�ƼӬ4sœ��WL3A�6�R
iv-7S:�L�3��e���=^�����Ŧ4˳�4�OC��R~ܐ��NK0+c$&3�M����u<:�"Z���,���n2N����EG���%Wթ!`�4ى‡��_��`��}�.�Kq���~�J�k��t��k�S�y*�
��)�I��k$Q��r�q3�T��)A
Rs��=[D�
j9q���v�C�no�KR2�v�)���1d�c}D�2k<9?�];�8����BR)x�ˣ;H�i�}{�74���4Ϗ[��:g�V-}@� ݡ_׀JPz�������X;�)aDJ�?���\#X���r��w�m���A�Ў2\�
�=�69j�R�Lm���.I�eG��R�'��v�$�	P�>5h_
��c�ҠW�?��+��������`ރχ�#C�����B��W'B��~����c�b
���5~}`��A�E((r�{2me5�
t>`v���d,p*=�ϕƼ'�� o�$ݥ�;f�`�̢�t��ɟJ�$��H��Z�K��Ԋ���k�+Lm����R2��1�,�q������F���p�̹-��J%b�����=g�V���^�y���~��׼�0~-P��ת{�ƛB���2X�Z�?�oG!x�n.��}%�}Oo	_�?b�J���N��v�$bl;z��`�&K��x^]"���d�+�geI2����� �B#�(ijNN>SwF�W��|�b�	���W�oW^\q�?��1>BL�/=�iR��,����cykW�Z)�BU����kjy�4X���K��,
3�
�F��9�pK�u���շ����q�@���OAv�yG4����.,m��#D"^�ѣ�8l�QZ��1���C����\�4oJܨ��힊������dD6�h[��|��L�]�V�~�.��:������0z*��HX�,�Ͽ�7��z��U�QN�e.7$:���.��0֣M��j��9�g�{2ڬC���O��墸���N٘�@.��W�1D�z[���[�M%V�5�r!4&U�r�
s�7%y�N�J(?�nYm�"T�C�Mmr�.�ݴ{bSNT��]*}�v`������1�^H����v�No�UۆAS6W�Oىe[(��B�͝�to1bϫZH��{���~�N�}Vˋٹo��<�>#��o���TFD"�%7�3���.�(?�f������]��`!��������1%U��qL:蜧�ϸ|��@8'�+��V��Wu۠��0��} +T/��Qn���l�~�c��{�p��a�=��V:#vm��~���1���t	0�SPH�]�/�j�g/!���{/�c �j���h���[�=�U�@ʍq�Ig6�M������mq�%Y8�dc�`"��X�t�������>�"��{��ri���P�O?��0=�/�9��F�nV}�OY[՜���"I��
�{GEz	`)Ӈr���OoK�Y꺧�S����4;�������L'�>�c���N@����8 �ʋ�{삕zb�8_xV������(X"]Δ�ěM6w�,�f�gf��+͜)T��JUt>
-�]z}�o�*�mGŶ�1�S��<����۵��&��:��Q�z�H��j��l�j��L�
�F,����a�Y�"'Lˬ�ɴ��bJp{���6�ի�h���]��m�
�E�=��~��f���Fv���E�`EWinux�8!GVY�??7K^�+�[2���%_�mw�s�Z���MZ?�v�l���9��f��O��{���,�'9�/}
T}�����6��V�zô�vU�[��dT,_u�V���E�+B:�x��a�Y.L4�r�P�1�"��n��j[)Xs�54��� �4s�S�6����{�(,�kW���
�:Dm�3����/
�T�*���z'�1�o�'3��o�w|Ћ��=�Y�<
a�D�m�?F_�Y3�f^�L�f�f'@�&M7�F0{���G���T�B����/�f��zqc�].L.I�n^����W�k��(�h��c�!Ȝ��|�%�?%��\��6�Q��n*��0��'�'����W�hĩ�=��ŝL��CgR񛙌��9V��玫؛A�ӚT�Q��y�č&i�٣h���QJ,#�|d驺z���|yYH�����{�FI%��O���RD�&�k�'�	��(����k�ͷ_�u�XT��4�J�o���tǠ��`X����l�/��-�ԩ����
TBIj�ԛ/�
��J�n0,�ħXB��U��H�h�Fe�%�6�%�/���:&zLl�dKT��
�^�Gv͊��SA4�:�D�I����ʯ���<��!.�1?nT���zhԓ尵�Z�B�����Cn���I������~+��sm�8�T��=f!c�(�KH���S���H7!L�S�.D�4�$��~]��ٴa�G��s�iK7���"dϸ}�����|�{���ܰQ�7�r-�y����̂z�RaV�]v4t��������2�����-��讨YD�ی�S�@�%_�B(F���Hke%&5��='�jF,�����G��oW�9�;�(�ڤ���X�3z`�f�M��<�~�1��bR�6t��0l�u�F���Ij˯���Jo��I�q���Ĵ(��cǘ�U��@���Ѣ#e�&��V������y(�	�{̧Ku���WKe��Z
^>(wDI���߹}x��
��ƺ�5�gY�G2�2��&���sσ!q��\	�������C�P%U�
fb���S����'�H�Lbi�,�s��F���6���7߼D�
�g̣oGa)j�S-&�>7��y���CCΖi�]MR���A��0��
Kf��F=z��gg��tf�7Kx �[��L^.[��ԭ>�Z�c�7���36�c͗��q��w��*CC�V<��])E��9��)�ϛ�0l�SM�.$�bAS��Hib%z�qݓV��޷ʀ7�+8�{
\�H�A�Z#[�8��0�*��r[-�swn�xP+HEl���Y./�k6wKb�?�8�8G�I.�u���r޼�l9�Eiޜ����`�"�ƃ���ȇ�˺�&v��I��բu*J\[�^en�Q%j	?{�nW+��1��Z���C��	�$��3��!��6���/�SG� @�4ΌE�!�Rd�8hg?��J~���u?Zi��D��4��K{j%)�'�x��Ma��YvkEt�,l���c:��w�Xk||2��$�.Ey�=x��*-LM��_���xC���{�t��4.��<�P�r�͙��s�1��/��N8�uu��.ӿS�_r�j�]�\���av^�����s��Q��ZŜ�-��D�u�S��g�6����{${�r�2����5�>���,	��hc�b�J֊�?${ou�o>ͨ��vCl��(��<�/0�x�(D'aԧ�R�0��"�o@����>N�9ߖQ�]��}��3�(� z^)(Үe�}E1\�p�B�(y��f̷�H����Y��/HI��;,���q«=���d��<zl�hi f|A��f�g]y\��:e���}���կ�F��M�.M�-L�C��E�f麬��u��\Q(K�ۄ�Rj���R�Ǐ��/��[��uTOb��D;Cطc�E���E�TSq��h3d��-{�fXp���6��h]���V�Ha3<���v��J@X�����M�zdR�Lb�3��/�����dz�"���?Ԁg�:D_���P��7���_٠�Sc}����ߨ�ʕ�0�$��0��s���MG%^��X��5��Tn;���>&T�<��)3SfV1��ړ'���vh���D���n�$4n���'�r}b0��D�xo�V���U�JgIN����}��4��/��|ߥ\��$M��y��"�j�}j����ib�!�NӽSB�v�C9�wp�7}��5�����q2�Ѫ��Ҵ�UÍ�,��鼁I��}�;��Y͜ȝ�DJm[���O��sޥ$Fl�X��~�=/_��S�L��J���&��^(
qwv#��	�꒎��.�P���:bB��fV�2q�gn�ٙ��l8VӅ��b��0�aG-OTlO=A�f��W�O׭OJ��{��̑Ͳ�g�� k:���I��3��*z�A$���̊k�P
�`��n�FGx)�G�RPE%�5�\�}������3۵Ruu��W�-�������2�����G��������%v�oM���k x��B�uF��N7ׂkV)12�dB!4
��.
��N�8O,f����2TiV
u����d�L��zy���u�g��’�;�Ks�'^���y+�7UUO���B��ж�+�$�%O�9elե*��c@��F��c6gg�MU_�~1f��v�V�5
��-V
��0�� )_D�{��Գb1�#Q|�k�9=�?���Po���c�s��$&��}�BoWT��"M���=�Dy$,I��N,چ�	w�I�x�E���6��x�n�C�C-���,�ϕ��̲Y
:�y�~��ʝ�،��=Y���c�,Txe�qU�k���*O��Tq�\�E���*��/ؒ/��NS�Uf:��b��?�ī�H�t$ٶUfu��dH"��$�2kQ�/���WiX���N��x
�r6���_y{?2�ڽ��C~{���u�8�|�܁�Sf��+��{��3�0`�wbcC���Q��+zƪ\T�-�{�]��ξ6�Ѯ�c�?�8�Z~|�&�e��D��9qW�2R,Y+���y<`Ow�A�bz6|�]�:q��Z�O�V�gM��̥ic�kJ�0�=,������4�,am"����RC#��,c�f���Z6RcG�Ţ:�)e�		���eI��r6.��Z;��P�+O�)��$\�wI�V��(h�`z�{%�fp��xl	}�o��nr
��7�%ӧ��{��
��x�m���1o��i��q�� J���O��'V!��"��=�$

ї4��KS�+���&Z�ۙ��'�憥Y���^��e���~���}�,��x'"s�o߮d����߽}{.�k���TJY;ff��j�KV���B�+�j��qM�WL�"�e�/�׶�߻Yf����xw�I��:k�I��q.��Dz�dLWim��]ɗ���]
f��)�B��{l�ֻ��`�j�~�ކ��;ā;~�7��-zA����X�'��tb����WO�.��$�GS0R��a�#�Q���P�O�|�P[����%`C)c���"�ͽdD1�xp_s*5�ac<�v��P��c�q`{D8�Shv��i ���W�	��w�pk���R|��O�2/n�@�6M��R�իB|��\Un��^�l�s���=[{���A�?��zJ_R6��SA���	�������o���wn���~��GK+�(uhK�7���,���H��⺔���Q��/��,���Z��y�(NZ��y
����ɧ���e+u�h�C�<�/�,s	wy��#�j��I��诵�{�Ҏ����,ٿ�%�`S"[;��_~`!>�]�܎*��t]8J�u׷�uO�
��աH>��h�Lkq7g��R2�,ʪ��Z]�|��$�CZ���m
������q�X��	�LrS���Kb��홞���%H���/���w�>G�9�(|�v�v�NnNvX
N
Ѐ`p�����+�{(��u\� s��Q��p�ݨ3��q�\��͟��$�ﵧ�;Q�Sřz��[jl	�6n� 8�DT�}��㔨�P�E	%��BW�ح�Y�w��.�����!����/^�mdSZ~j=�*Qgd�⨎�0t���]�����q�-�.P�JBp��1	�ث��at�l�/���y�p�q�{~��TOH���6���	u�N���wY�|�
A�Vr��wDh4Kk���+
�/�@
@��O�����J��ZB1[�?l{�JՊ���q�9Pv�oY6�CJ������������$���H`7Ei���)*eK��؂Y8��{V���)b��pNv/A�%�;�uh�(w̃�l}�*�4�y|uV:&�*P;L�Q���g*}O��W;xT�!���F�[���o�
l���*�����K��K��Uv�ܼƌ٫NY4�$Gd+�3�$K�VZ���F&FuR��j.GN��ۖ�5ƴ�revv�v���Ȭ2M��C[�)�|��eGyb�{�)ڻ���.I{l�1����C��e�sZ�t��h��ɻ�RæGp��7?��(�d��W�^=�

���&�f�V��͞�iϟ\���G��6$��$��uP=o�u87����[�%>`<�.��$�Mtӗ�B)G�jS�Q���Ud�`��S�"��3��ɽ�}Mױ�Tth?�7���]�����i�EH���zş��|�-���td���ۑ,�:�D�����j7l��D6٧-�����+�}ZU4�^��xO�ݼ��f��QH����U;"I{�)��1��Z���.����@�2󄖩b+q�z�V��s^�>��V[ŵ���-5�v�����]蚮���c��"��"f���\�߬��<�ۋcy��#��Qj�6dr#�ȑ���J��4l�O���(y��N��}$m�[�-�|�Ԉ*��S�\�ќ��臉@��@
���ie'�m��'q$��s'B���੻A��d�)��.�*	�_y��#z_Ы_����{��_a�_=+䊒ӌϞ'P�ܺw
G�J��l.���r�q�Z�vD(�DCG�&�C�ر�!��=�ǣz4���v(�$;�{�2 @�iǘ�u��pc�E��
	hh	s��>
��L�^�f�ڻw�
TWޟ��R�
�/_�I�Ħ�M'B.���,P�-�H�j)��%P����Dp2��^�^w�`K֫�K�Pa>ξ﫥jϨg�)�KS��ټ�dGFYG�$����X`�7%�Ҁc�K��QO����"BաB�'��^.�`"�;�G����leԒ�O^l��:�Q�>�45e�=[7$z�����i��F�\*B�'ǝ�A�ko����MFc�������3|�Ӭ%v�>!���]�€����'!	��}:xi�/�xcR�^W��I������C��z��_`~c���V��Fvf�]5On��C��?��ҷ�7�9��']�/g}��փi��UIȃ��O�t��̒�?��k���:����[��>TSi������E<7�E-�N	ؐw;�mD��u���[�����z�+9��g_PO$��UYN��[�#j���I&���3�\e4n����)Rvcx�/�V�C�?�K�����g{G��X����"b��(�6��ʛ�|����	R�r�I���&�-Nձ��*�?��2BpEYP�[��.���r?�gO�h��/%l�RO�E�
�f N=d&�u_qb�?X°��f:��J/��}?(u�6����P�"��L~�iV-�g1��YBg�	�����}H�K2�4鵖r)�ۡ�#|ti�@@��J�R[��k
x����cE^����I2߸�dVo�qP���kZa2��H�/�=(�c[lW%i����cX�c���hP�q���6�c�M�?�}iSh�Rm��]��6;���?'����B}g��M�m��Ǟ���Cj,v���Ա��>����G��+zYl?G�ܦ*{��.�m7�A�T�^1D�"�;R�Ur��"bh��lqw$���/gy�R�mZp�%�0B�ϝ#4�b���\q0n�	�N]M�<�q��N��{Ԉ��h�@��1?��~�t����6͜��T��k���̆ҙ҇�\M�|�t �5O<4> J�}��,�QrQ*ͯ��A\'�)yz�'�KdخD��Wdi�@gzu'1\}�^q���I<>e^�h)�Q*��lz�B�l?g�������G��Z���0`��~���9�<!:���+��xۣ""p�[�W�}��"�Y|ʒ��>�/ie+U�r�W���Ws6
�g�*�D}�z�yn+ህwUӋ։��f�G�%!���L[#��"�h2�fmh��|Fqb}*�H��#z���nV˴��]�xA �1����m��k�
	ׂV|=�@�=��OB�z�P�d��5Vrl$���ZՄ8����8^Ϗ�qp(:A6J5PY2		èV��'G����pe�᝭\��hj���p�1a���w�ʓS�A$�|�H��E#7ч����|��p��*���
�`�D]Z�B-��\6�iWẍG������GG��׮~�Y�J��T7Mq^��#�0����õq������b�0�KVot�[
�Ֆm^�k k��-d�p�ݟ��^J��d�3��ݕF�F�T�Ϻۗ�9o�\S�8��qk�"�σxL_:��P��Lh��0!��iˌ�{��8�:���zE
 �Oy���/�l
,)�G�����q��Q��R�`��\J�>[����ip&Հ@�����
��$��:�Q8���Bt:@`{>���'�a�ޝu9��9�'��L�cи�đHh��d͞���YG�f�������/�	N�=�Sf�0T�;WJ&� �I�2����31��kÉr`��}��A̶���������d���@\q-�9(�B�,vѣ�ALX�q�H[�!�f�-t|����n�PΤR^�b����GO�f�=+����h���W�D;Kf�x1��^U�]�3�@j�K8{V�. "k5���h�G¾�pC鹒�*�6i��S+п�u4495�dj�+��Kk��Nq�B��M�++?{�2M��NJV�u�90�$#dV�/�,)��
Ak0�Ƃ^����F�ߛ����n������<%��J�����vq$������d	@�ww��?��R��s�
D1�F-�_�E1}�zc�ƝZ�h��[����$��&DWx&fe�%�� ~)	~��XL�t˛�҅��JK�//(�F[�KY=;��ؕb����~$Vd�]��8��|��bJ�):v ���3R�R�Q��}˺�O��	k�UP��}��SV����xsQ�ro���3��z�2�F���'֯���nN?��{"]�1B+�յ�
�;*�
���eO]���-��N~���2�̜�u%l�(Z�����b�9M�h]Z3')�9�#�>�*�<c�;�Ԛ}l>�%�)�V`leY�.5*���D~�-��d5J��Z�!Q��Ӧ�^fP��/fj��T�X��X&(f!�Ý^�g/j<	�/��륃S'J֓5�V^	���ߟ��^�m�{��2��;��
0i7$�&⩵�ӵ�����XEOS��x�5DZ�يt"�h��v�_C���S���~A$�<�@���f�\;S�a�)��6C��_���Ίg0(4i-k�<
#5t�\CC��h�>;�!`���� 3��-�6�ht�D]�S�eN����
�}�}�����"����#Qn����`F:��>�79$lV��e~���̈Ja�%��q~�ܣ�˴��^l�C��
f+/����eBa��<�'� \*F�C�;��|�c
��ڀ�N��f�!�L2i~�<[
����p�&�ѕA�kn�n��r�틧���n&�fvnjn�-��2�5(!�������rC~��D���"`\T�'j	��P`�0i�O͚�F�krf�uə��کj\'�3�!B�IEl�Q?��m12<T���R礥|�X}���v��f�*�?_�K|IY������{�%m`*5�D���`��N��9$#�c�����z�K����t�؀d��k؁�7��[�3�z�ܐ,����b<�|S<�~غ-VE�l̤��iA@O[��.5>�pQ����e�>��R�w�تD�.ۋ���
XN#�'N���jj��о4�!��tK_���f�R��!@棼C�J-�ja�H*�����N��p�@w�V�[;��
��➄s�q���H��l��ڜA�?�y�	"�j�!���<�U�?�h����k�1��oa޻���e�8S��1�Н䋄��!���9�h��I
��B��
9K�o_([f0���o!����31�C���;X�Ih$�ɀ禹@��@0Wl
�]�&)s6��4w�Y�3c.��Mg^��1���O�qs#Ms�3ZNLMi�}���
�9�U�~��x~{�$6���F�ɬQ�Ei�2Wv�YF�A��Vl�����VDXer�(���Z�e���Ͱ�3)��\t��5\^�"r�Ш�s�
�w�P�5��f7�N�K$f��^q{�"L���]��z`@��DQh���6f���~h�G�5�uU7G�����~�
���.�#3�P��TV�!�n���ژPf6�Չ>l�6	9@�Җ������5Ϛ62�t@7
��L��2	�� t���'ԯ�bH���Լ�w��Wf��Ɋ7=��.=bx
%d?
���a��� �9�e�p����H�ҩK��\��ۏ������$����C%�0����
������ntv��:��M�`᳑B���asp�&)"-qc���	��@�I����bk������3eP�F8��ZmUL(�(qP05�n'���C���V���i��������j���ɿX?q�g^:ӛ�[[P�V8�����6��=Iɉ(�c�G���@���Lb!l�l��8߬Mv���vVb�q�~��/���%�Ii����҂ϡ֣T�=�!B��PS:�m�u�v��P��s�ϥ�;����Z|s,G��:��pH���g��Vu��ZR>f��@��e⋮@F�<6�Ͳ�.��L�
�/�)�X�3"LN>�^�m��w'����>��\�C<��C�Kb`�(.��u�ְ����T�'� �o���MG�{x�$
v��9�
�|�F���x�ʀa@QI�֧�'�=�z|Q�o�^B�f��,�Zf�W�4�#�4��y�I���9#��5ZڭE���2�p�'��B��~���U�j}ۣWwE�`�	
m�'?�!�@ ��C 2C���pc��lݻOš�{(�C2��kC����k��'�U�"��C?�T�Q^��ڝ��kK��m�3��m��$�۝��ͮ��]�<i(Q&wldmY�1� s��3�hOJ����:�N�I��7N��$�zڸ��##ot4zϊ�p��驚�0��k�x�ȬU����ÜF~:(|�B�����n��m�	`N-���d�l��9�/\T�&1����9�V<vn�:};B+ׇd�S�\H���l5� j���fe_�����Ńa�8��||g���x��WF�i��%C�F#�Mk��1����wJ%"�\Ӿ7����R
��6�;�{<�UK�9`�;$�Ѿ�<�{b�a*MwfԱ���O_�g�2��Ej�]V��4�X�*��g�S0�K���c��A��T�P�ݏ�`~�e?�F�[��n�jX�nر�U��5Z �"��p�ss���41�@�����Gi�<J��<{��z���ޢM�}�a��!Be:�܍o�`-�C\�.yk��$��exdz�N�H���(���_����!�KF���otvW��w-��s�L�>��]9b�	�Jn�)sn�t_���_xEK��D� ��B	�$gY�A�V>g$�%L�0L#��{&Ν��Ftd�\��P�=��a4��
�8"�<ܝ��s�L^^N���Ec��v���H-_>���֋��;|+�c��!�������8�O/�.规��Jn�8�&�,���%�s�t�]6(k�H6��Fq#(ۉ[�y����{��0(�^��ֿ�b��ף�Ŭ�����������&f��zCqI���<Μ$��((h\�ED�C�������c_�x�/��E�.:���i^��+�Ο�1צ��҂Ji4@`l�xN�L$搘6��T���.��?���4]�X�1h|}g8<1Ȥ<�@K��/��/��5�p�ל�o��t��p�a j�t�bE��E�y��&Ц4`د���$�L���"����Jvi��l�j�Z%=')��8�e���`8�T����*�M�8���.������w�~��\(H�t�vr�"jDo�GG
�i���lHe��%ia&9�d���d>�-i
�lM�ܰ��TA�$��VHG|��
�$��:�1Rs\�Z $�Pj�ۇ��]ً�g�8`簆 �zߒ��V�X��ݕx�rtX/�A�p�2�^[1~R{�뚬���ɇ�:kCU'5n��%�'�CXP06G�ۮ��l[�<�N�scOFeQ��-�gi$�RN���o7�Wz�
_t��"?�z<Q��l&��B,5�"�}\��i^�|}��R�����l;$��ѻ�'dxw��A*�ͺ1_w�f$or�w�V�$
��T�Hi�����L����lVc\����7O슚��ŹR�D)�]��B����=3���qF�MM��ȓ�B�g����
�OM[�԰`�W[pBΉt��i�\��`�{X���/)�ƩcD�R��Pvz�x��49H�_��ه�#�1��&��P�/��֡��&�U��u���)��l9�Э�:!�}ɑ�=[�*��;����u{����.��p��"�!��,��|v�nN�K�63ud>��6����y/H�}���ё�{qL���$��
��-���a��[���st�nS�n2�ğ�@���ѷ�����xHNp�������2���&��3	�����f��x�)�WP'h�7f�>�� �s!�;�p��&Q����cN>OgdH�E�1u	{��^�گ�V�}���2�@�J�H�S��>!~��L�^d	��r��5/��GyNW�-�`����ɚLJ��=��(R�V2�ȏ�M;�:�-��A0<Ȥ	L�1L<F(�J��L��Cl�Y���N��_7�:*�\8͏�w��
d5'L�����H�s5M �2ID�%��WP\pyr�~��ҍ�)qN0�E�|)�(�@��(";�JGZ�!���U��,WL�#E׬�E�����O5.K��������Slso��z�d�7��ӳ;%n<�5�*���iu���?o��mI��"m��.�XL���F������r��s������
8�!���{N�c�yٗ����Nf��2�!�n"5hU�F��J'�d�B�2��sv5�	�����C�r>~.���ܤ�kg��LinN�d����u'����f]��B�sL��A�5S�h�K�v�vn-�_e�9e�V"m���B:�GΫ�x�c�ZX
���o��y����HKgT�~cN¸���OZK:�b�A�%9C	]��o�ʗ����w�1��)(�t��^�?��u�Ʀ�-A���9�����9N�لL����#�A2Yu����5��/_=fql��j���އ���ˡ?u��Ar�Z����]�A�X _�v�M��1V��&P\���6X��2��m7䥱[lҏ'�A��Q6R�S�Q}�딭S��e���S\D-wLrTC]�ӎorly�݂X���J^fo�-���˰��(�X3�R>\�#�	9��VP饘QՐۑ,a�e���X�#�*���gV�Tnq���GL�(��Z)�o�M�i��!#Z��H.��$�ɀW�����\�p���*ȶ��/��.g��y 9��L2��p�(�#Z-)i�����j��jԭ=�0b���`n�0�a]�k2�I)�X�E�8f�nD�η�%8�CS.�o��ě�Ng�'d�p�-��J�=a���Y<l��Ǡ�OYdb�Hl_LC
^]����o����>�ɹب��Nk�Y	��Ե=�����f��N���H�^�����f�<���(|�E��(SL��\���>�u�4vdN��~�HN��[�nD���eh/ڈ(2�1�he_ʔQnV=�C��H�E��gi~�%�B��15���czŕv
�>a�Y��%�e�&c!��pIB
�8г]~A-l�64�1���/�[\\ZI�
T4�W���aa8'l��xRY��N�e��j3:��-:G��6�v��ad$$`�M,ܔC�z�3�!q�1�����]Ӌ��n#x��B����l]��K�^�t����_@Y�u�gS��k��]�OƤ�&v:��N��a�L�ewɋ��-hY}:��xi O� ��x|+^�ñ�Cq%��]{[[�q"�	�x@L�upՔ��j����-��[=�����ئ�\�e��jq[�%��^W���'�Hj�y�c��%J8�Imx���=�C/�].&�w4�D��,Ƙ��3���"�z���`�U���
|M:3Qc!�_ǣ��W(Wj���q��S�#f(G4GޗI>�����n�ڄE��٩����^�����˗��<D$>n�HG[�M�'�C�&�Ǹ'o�rUm�����N��ݾwJ?��6�\A<��N���ZK5�D�)����Hi=�i�qlS��:�B2�&yY��^�bخu}�Y+lc��Z�mL��%9��s��̪Y�O�1�ߺYD2L�
���ʢ%���c+7�V�_.rsIq
pש�� >�bG�Nz�Ž2�q�X��D�I��a����'H�V�T��으���E�t�|��G�3�(
oOtrJl�s<�;���3)YQ��`gw�8"o�&��7>�cѭ��^��@&��t�T�}g��$�}��0h�h�)�GT���s��y4r��
 o�
M�H;Φw�~|� !(���������ad�"	���-sQg#�,1M��|��/�u�h�R���-�.k$G�K,݅1a=a���YP�A�,q�%!�
ONzvN6�^��>��ƬA�v�J�F�ӽ�)��
/���ުl̒�B3GM��'[�,n\��\k�ѣ
m1�hm�o�>!����jM0C <����埵��ߎ\������`K|_xN�`ǀ���pWJ�jHL�M�<��_���=����C��M@Wޅ�%ꉷ��dž���f���%�Mn�p�Z�3�@>'�M��d
�Y�,BT��u��J�:����o>��b^չ�ȑ�ދGx��_W�`�H��"=�ϟ��z&=�@�%ӌH���qi�x�DH�Xx�jꄯK |@QT��P��+�:u�c�}О�T�����B5�ڨ�81��hȩ����a��Fu�XLc[�nNרxtN�D�X��*N8������s7�|����2
�R{>}78��.��G���yՂ��Og�#�Q���q�'�g
�f����K�Y��`�9�h�2�„�6�$}�� ��(�T?��}A�`�7�8��LHFR�G�
E�FJXw!S�K�r���@EKa��2�'��ʌ�%v[؟[7��S�F�j��j��[5�h�Mt,���^���i#��Co���q§�Z�e���t��e�Wi�����p_�t��^*>����Vlh�Z�Q�jX��B�㨪�9�q7�@������'������[=e��H+^ї����a/�G�6�z�<�6)yж��DH�wF����v�2nF�)%�d�����.�)��ەP6^÷r	��{�h��<�L�?�Ih.�����dht[$���]	��fŘ�9&4.�;�s;�B�����
�k�����~�>�j)ϰy"T�㝼j�MU��d΂M�ݱ��[��D�g4{+�ݝ���:�<�9q���A��w	L}��A=£6�۠ev��Au�+U�_��Q�3f�?���R�\�0R�
�R^ �,���V�w��W����2�`A	�v�G�<9��4nX;�?��?�*uV0�����{[4"��΂,���qӼ��<��RK�+���k5�WxcF��PO�=*��;E����D�~��:�	�m\A��p�����\XX�d����+�Hk6��Zb���WsX�/��$_��Q��Z_���hh�L�u|��8�
	���Z����}�IH�:ƋoK}��
�a/-�k��xVq0��r��LC�_�D6h&軓S�q}pߨ�=��~38���^x�Sߡc���8Um��e~7����VUZ�:�vƯ�[m�>���?�
��p}�_�gKB���_
%�_�g=�Ih|.ݥą�V^1䓺0	"{��7��m�s�9�ꛦ���B��N��I�p��i{
]J� ��:M����y�%��u�����G��Vց����kk<o)�{<O�GJץ�xCNj3-˪���W-739�Bƒ(T
`�P���X�i��wQ�:����6�)"S #�-��,�"v	��\��d~n��2rr2Ob�6�[�T���
R�Kc�Y�犋��4c]�>����py��jp:G]�Z����$0
��_�N+M7�Y2l
@x��6q��	��4���59O�Т�}T��r�f5��2�k t�߲�}�p�U\�ur����sVl�ת�a���޲�
}Vm���~3�gm���,\7m}�-���*�,EH�q�$Yx�=E���_V'��C��R�i�ND��9���/Cb����x��@8`�2I̪,!���f݄�nE��8�b�+Q��2쪘�CZ^?G��Vf��砱��(B��Ie�+�9��:
A���
��v����4�RB�H �z�ѳy�|�x���֣�W?�E�t��FO�ܔ�c��=��1E�$V(T��}�rY�!HhQ!.F/
d���իG���0����;j86t��������	8��y��QG��/Z��a3=
���O����_�ؤJ��Pג�I�Rs�Z=��|ڼA#������#�su��曻;.�����.t�ש:�KIT'�6���m7��"�:���s�b�q�yL�@Z,Y�	bg����,���n����{O�;]�ɪ!_�"=c�Ӻ���dij�2�G�B�X�$���|��i�!���*nT�%��;�*���^3�/c�E��s�4��CwLj})���<(��YpHw���W�^��HL�-v��p��đ@w��Пp�̹�U�K����>1뷀��L˾�f�0p��Ύ�=�_��!	9�q�[���ƭ��t�-c\
�	@�q�]���CAJ��p�Pao|y�lN��{F��*3�F��xLTv���0ԛV,�������jH�A(\���x�����xtP�
���R�^����S��h"�H��Jn#_p�.�$���s2�i��B����{T�uZKt\�LI�%���*���P�={�b�"U�Q�"V�R}	>Z������ŊN��Vݮ�-�J��hσ��
�^����;��FQ��,*+�"�"�00)�:;:V��P8*e(7�Jl�����0oHe^Ɗ��y%�`��4��Y�[eX}�6K�J˩���^#<ɝ��I�_/�23-@�l�4��`��P�=�K&=.)��՜XvL���f�o���BG]ޮ��+��؂Py��I�n�V`�k-~S��d��d��cU��.�gƗ'� 1N����0P!��ί��H��]Hf��[�Z�x���\.� ��+�\_4b��Ov�����#������v!�l�,�x<�DxIN-F��e,/�\m���d�Py��Ir��ǐ&$�G�K�K��և1�q�zG�!����A��38�̍�97U;ȴVe�g ��݌�L��ΐo�tp�R<s��k0U�-������=C���C����WjA����Oi�ퟌ��il0Gtc=T�	�u5�<ل�'M�>#��
�A�D���䶅�)�m�"Ǜ�X!-�Μa�R�����_��});�;6��П�(��o:֔�qC^��Ǖ��۵�A=�z�O�b�	�d�~���������hz�n/J~�ǪŤzS�,J��J#2ŭ��i�Z~_�{c��]o�bR:�v:��?e?	tZ]ָ�ՠ�gժMk�&�zz�q��%�UCW\Y�ڻes���7iv����Z�d��T�V�Q�C�$mČk�i�w�ƿ#��;�̋�	%y�G�8@5:yq)���|⌬N��=������Bց�^\��S�8]�]�?{��rW����[-�+W�q�)^2���-��KK�0g4�LҼ�&O��SP�d���Ş-m���>����n�x�QyY崎b��y�CQ����A��)��B��D`<`���������7����%f"�Y����>���ШG]�T}�_�����T�,a���^&xԠ���,v�4�EpW�¶��S�A�N�Ⅽgj�)����&��d��5�4��(���$���sD�Bݦx��O�h�XQ��L�w��`�q�nP�sT�s��'@�Tz��,�2��J�*njވ�4_�}3�����י�j�ҫ-�%i����
����P�O�F?��kjS�#�G�'��p�1��J�m�b���a[�2��?kKq��!��@-^Y97�*��o0�i�M�l�=�ߺ��������(�7g���_��Ǚ�W�أ��..��
�p���k�����#��c]@��q�o�s]�vK��i]�C+�K6�-�/'S���{V��F#pƦuO&��g�z��u��t��xeL�.��v�s�Mf�џ@/��)�u����A�)0!۽�)/Y���_$mU?S^�	Gq����Vċj.v���UH��0��mǕ��*3����bt3����(��$F#��P�hzZ���o��\��d�沠pmL�~�Ljb�mmK���	�qsN�"Q_Qh9�	-��㳟CU�џ��O�=ކ�y�5��Yk�����N.eu�i�#u��ڒࠠ���p�*��!��C_߻3��Q�p�azm�g�-���	�-���k
8��Z��莧�YP�d�M����`TG���hѤ]:�d���VN�vc�W:w��|kҁ.:ӫ�O�ڑs�w pT����%z΁ه�*�0)��A&3��PPQ_i.�-Z�!���%�Tt���f3�k״�+��f���6������6mP�яH4�ׇ��2��
�umMCͥ�pm*Y˭���9�_����J[���.9��&��,r�H�i߃8Ʌ��a������[�N�n��<�CrxL��r�J2�vc��>x�	�����J�#u��:nY���}l�z�Ӯ��^Y;���z��Ӊ�1�`7z�v/��_眓��{��='T� `Jټ]�ȇU�)K{v�[���՝y�`�-0-�?���^����[�mSƐ�=�O#_D���q�q�mR0���)�
i�bJ��}���<�w�o�a�6�[����^D���Zz`����̶.D�K���=b�	����b��l�޲w헂M���7dֆ������#wQ]!���˘��g1}BJ�9�����Ԏ�I��=CVR��%�L�MU�]C(�+#O�1Q�dj�2��~&�B'٩p��c�Q�4�1#���qʸL��̮�L�➒��GZt*j�I�`��Q���/�HJe�l���豎���x[0�D�֌1�STK�af�;���3`L��}�{اJ&5������J�^����G������&���x��%n�q##�G��7���p(/8����ʶJGy���8�?�����+>I�����克W�T�m
Aj��/b����YFNG�uc����\�����:�i%���fU,p�I�p ��^y���B�cx�2�����
Vb�6N�d�ٍәT���l�W�{tĈT{��S/�Q�Y��K���7��#��pQcGo���g�Q��G?e<���t���J���8�3�Y��ި�F^:�̊�|�ʚ8`r}�Q�hF�4�뢺j"�:k�2;k��.,�&��z�TIF�Ty�=�K��;�pr$�Ѳ�8f_��TIV[��[�ź`���.N0�U���8IY��
�D5�7�o-
!�mv9��\/�KR����!���6���b��\�+'I�e/��a��Fzͷ��{���P|�w��4ej-��t�۠^�\�SK�+'�J�R��S�f����4��Ԗ+�e���"Ӄ�j\��ʌ�E�.�>p���!�\�B���}vچN!"f���R�0r�G�߻�*�� ����/J����6�M���n���~��}}<��o���lϸ�p�f%��n~��W�X�U�lA!�ˍ!ӫ��8�iD*�z3��@��EYo�J�N�C8f���,�R	�Ə�m�w�E��(�i�wL��e��7�xЬ���2��Lz� B��,�'\n@Oޤl�o<i���YU��ʣ�:�8��p�u��Z�8�&>�s4PcX�Y��������}t�p�-�	��yC&��z���
Z`7�)�<i���6Oggtx�
hTI�w1a�r���3;e����0t����Ysmv�YE����{)�K���Yh�&�ۑǶ��X����>T)�0�jJ���ׯ�$7
�����۷o�Uck��w��Y;8��>���+g�6w&$�>ނu���>�
�VZ�J�����g�˿�=���>O��i�]@����QY������O�����ƽAI�N%F(��Y�9�9��J�C4�Q@J���9��u�3p=�0A��1
��,^�>�(��HR��Bx��Lԇ�j-���a�p3���7ub�NV4|u��砋ale��z���J@��5���y�C�Q@RRq�O���</�&�IG&-p@_S/�mn�����c��Z5;�<y	��/骞P��e ��������P.Wk�Y�D4�<�A������NǬ��i�D��N$�7 �.� �+�gI�g��:�#?ḤPuG�q+5<(��ڮ-H�JD����U1&g�ξ#Y�#}ă��-�s�<I�ʹ�`�{6p�S���uA�mm�G�p<��s�Oic0ʶ�u�����f�5o#������.�o]�l�<(I�Ֆ+� [D-���d���qꝻ�)�<UPqyoQ^49K�#	*���%^��"Vv�*-���s�y1"N�!�4��\U$џʋ[��M}�ߑO�r=��K-�
��82I��+��(�Ydmh����La��$U�T��
��C�(����' H(x��
��=��<XU��Q�����L)FM��^�>�¼�p����1�B��j�*�O��|O�,������0�߰�ʹн�,u����
�Hs�5��IJ��R���(���+��F�L�?Fh#~J��1�������p)O"�-J��q
�Ƀ7�u6��(ۄ������!P@��>Á1�
�&'�s3�ه�X,�9Y�|�s��A�CEvp�|̺%��3�7�_*xC��8�
<�"�'"G�����!�£���V�볩�s�&<6D-m�������t�t�z�q5��"m����J���}_�(^�m�'V����s�۴F�>}*s�V�Ӈ"����m��������9oq�����{��o��!<�]w�@a�#a���Y�Y}i����|#�r��\��I�_ߙ�W+��"푎��Nܞ�0�|��9�8�ֽ
.�yf����n�sˡ�b���~p*5E#�s
�vN�9>�c���QG�!�Ú��8��Њ�y�6&���-2�~Q����[�aṖ��о)5�����_[��z�_i�t���b(߭O��=�C/�����P4?9�T�,�1��լ��9��"�f���P]S���Ԝ(0v4�s�Jsb��nQ�{��}�#�@����ɏ���U����^��R+�/6�'
������Kh��-��F�s�5�X��ޖX�yXQ�3����
����WK���b"��&�â�{�[�m�p��Z���ֶ/ʲ��Z[��Z-l$�N�e�WHW�M�_�
Vӧ�x�s�䀱X
)���o�C&�6�l�ktIp��].@?wS���h�s-�$�9��n�P[������p�Y�ӲG�:������E�t����b&�<
�E�_���p�0Jtz�X��B����.R��
.E��Ď��u-0OSBþm	���Ǣ�����]v��d�`��ÝX�P���[
��V�C�4O�������0&z��u��4�&��E�ʙ't�A��B��%�+�DˎG~A�x��CPKZ��n���Rg��x�+��i|�o�ʜ��8��o�qJ�`��G��~��ɕo P
�8�yuq�뢵����𐠵�������Ռ=ƶ��T�·n2p���aA/�F[
]+p^��F���(���?ɬ3gg���Q)���Ċ�DLm4��G;�?81�[ѫ�T�> =�Q8��)ʒ�5��ck+gdR�����A|�v��a�kBcz���[���C8�^'�դ���O�S0��* )�5r��|��Ȥ��^�?�z}�[�SWU�����T}��?L���U�^����}L	�6h�8�
�b�ǎEڰn�/�M��A��6����6Mk<��u9�o5)?q�	#�019u�A.�mX�iȪ�fg�Q���Wo�g�@��u�;�	�o#���&�o4�O�:on��M^���;>��r�0�.'�}�)X��"�9��O����~�.7@3����_~I*���`���֣��q���^Q(T����ߠ1�``��w2����u���Փ��أ���0�F�(zc<��mL�hc�-p�:�|m��.Ǣ�VfhJ��M�~� �[е�}��r��2��~��wzJ�:Ս{�s	�3��xԺ�,G� �MKd���v%b�o���|��l6�z	^aCG;zVl� |_����m௷E�ZQl��Z��>g��sSo���l���P��8�C�4>@���e1bς���	 ��z���F]�5�Qƃ�/Y
�vAfG�WJ;��=�yw@�R���q�\kK0{2tv�0="w
0�N����r
�D�n��J`3�7�%/-�*�R��.U+�[l�Q��7H����0x�/{džq���8>6F��'0*G\�Q�a�$;�h�fEB���C����-`0��)�y�[hʑ����V�
H2�pC��xQ�P¥��9�>&zgိ�*�+kɼ�'���W_�~I����Pg_�CO{b���̖���aշ�N�� ���
��~A'�/I��팟o����"��ܬ*0w�����K�OLx���i1�M*ˀzܗ�{� �m�eJ�!,O'��Z2N�m��:���ܢ*G�`��x]sҶ#fD\�����FI��Hw��]���I���?�7#ȂU�.�5w5ɮ�R?7�����0�:�3��np&9&�Vup���AFs���Uc;I}�!\��Uv���}��b���z:���9y�! R����ξ�����
N@)�0ߗDd;(A�Xr�[B�N�a+��{��?X����/��Jڽ՜v�ݶ�6�lҤg���O%���P
(�/V�� �j��>MT��c74bɤ^�~^�()y�I����Єe7a'x�U$u8���/����N�Ψ'n���h贑�51��;�^n4�8�ߖS�q�F;� Jx�����]�]��Y ��MG-WM���_�	K���V�gGg����>���W&��i�&
�əۣκ5�X�n��F>gla�⧲�0���x){���8��}>;|��9	i� 7?��kN���W����� ��A��P�Ej��p�Y�rҊ���J�p7�~V����8��o�?������� ����3#JF	;Sl6QA�i����C��fT0Y�w�I���+~��[��kB��4�1L��[�*��;/j�LAM0X�}>������.�tغu��tj���iZ���6��)���u�d���n�������?������
�|n4oZ��8H�/��h�!��}�I>����d��	�_�Y�3�rD�wc6�Z���K�ج���A�;��T�� GXKb4�p:I9��m��{#?{��X%��C��KM;���E�({vT6La�Y}�j�O��ѭT�в�`u ������J��ۃ�2f�1��D���/�M��R�1�Cb� @#�^$yH"�c�%߀��.Mt��B��l7 ��^���]]]�*��e�g^1:��	v"t���2��=M@f]�M�̟D_��w`tј������m�����uJw�"Bh����O;��ֽ.��w�3,�eJ�VKm�C2LCyӝO�L��U�{�/\"����K�	h����	�bxZ���LR���i�O�(=�|���V}��)�׾��[[��P�[����n���2�6Y�K��	�UL�}�W0$ڃR:���O�3Ij�(ΒRօJ���)��������H�I���n�S�(�g�K�p���2�\���oN��ya軚����8�'��p��%�K�EE�gO�[:*�׸�p��ⳇW�����F��t��!W�o�ڧ�"�˲"Cրo��o��B�J�d��;'K͒�__���h�v�+���d�����ލ�� '������V���m���I.^�˅	��8��B��s�f�G0�8�ռ�*ʮ ��꩐�Tҕ��c��6�s~���Jim���xY~��V�)�I��ƛ��+��h���Μ�;]��E���BAАQ��l"�U����,�C�)��'f�C{�KD�]�p#(^�����y�s=��=U��jon��lVe�u�iJ+$��d�U�#�;��O��
	?9�2��<�;�q>o	T�r�x&�
[��'-�x�p�0j�[�;3�Iw����6N?;��<m'*�xD�?$A�ʂ�8�f""0���ZI�;�� _ߢUcGk�"�#�+QE	��p�Xd|ĭ̧�!x3�f2��[��F����K��oa���K~�۷R�6	�Y�cj��<��L]��%���TS˶R�O��Wöbc�£�e�P�}�S���\��
��T���u� h���Ыk��.x�{���zZ	JTo�;�8��H�����P^EsT
'K�@�����
�t��B�%Fj�dC���ת
o����@XV+���z.�T��"!"�����B����F�.~�_��ac�a;��
�;%#	O6�L��=B
dX���o�
�ߡ�s���L�!.�A2�R�  �4
����:g�_�*[t���S*]��6�,�O9�3����5��ؖ#^��l��m��[�e��П��W�
=�68u�P�ݤ�_��
��M��p�"K�}q��fn�V}[�[�!q�e���*`g if��|T��/\w�G3�	��zC�Ulr������QH�$q�}r`���og�՚g�O3�=���+����ƻ��{�N�b��-p�g[r�:�􏃽����~Df,�!�>��K���9YR2��v�r�D3��'�
��K�gՂ?h?�r_��K&`t͡񟞉���y7��&.�>�t��u�4�ߛ�G�
���:�^M�pv��wڴ�Yz~ڇձ�M٪�!�RW�d�;�#��	^�z�ʈ����Q��t\�Wy�\OJ14��:5�\���SXT��� ݓ��g�v�V9�UkX,m�iM�\����(n��>E�I� a���I�i�_��,������(�
;.s�)�=5�A�I��(��wX�g�}4Y����Dp�4��{�jq(Q
̷ZJ�U�Zf�K��*�xC~p"�2��r�#�$!�J��zZY�.�^|h�}���z���Xa�I���E�Xg�t^4�R{��f�L�y�p�ᚚ�1ި|�O
�2��5�"�t�U�A�ޗ�@��u�R�PN�X�1�ZN���/�ܨ�x�����IQ�×��_�y6�EK���� /������ cuD�o���7դ�	���|2��V�C��f+H��
�:`�w��i��y�~wk���t@�4OE],�<����ͦ?s��b1-��
�J����A�������A2��-=��t�칙C�õ̍�:�
�Ba�;�W�CE�Ξr��{�`�&��,'��t�����[8�q�u�
-(�J�]��4
����ʹ5���ay��
hh�Y����.��4�j&���4��a����q�'(��5���s�X�G�jWB���~����cm۶�/��.6�a�_A5���+=d���>Ĺ_.�h����8tB�s��0�HJ��l��l[UH4�v.	��>]�(
k�9.� U�A:,A-���w�yʰ�҉��V�jVU�^���}�|wTH�Ә,Aq�0;,�ZD*��#{���l�H7��bRX�0C��d�uBѢ�5�d�=�V�\T=�Q3�7o�qA̐A���O��l�ܿ���!��{_uDG_���rk��ߘT�^���}W�o).8����|gWP�Ce�J����x�6N����(�~v�_�;�Ξ���S?���W#M�˿��^��S����mG�
θJ��Q50 �i�<�&+��;��V=�K�rU��
�e������#��,�t��F�jë��Γ�U��|N'uL�����x��&�)
�6wrroG�4
���L�R��	gn��Za�����#t+2�>if!ϥ�)Ǿ�>0$&��q�����qJY\���I�S(�ˤ7�^+�'����w�ٚ�ze�!�e��-���ݙ{��a��wτ� ��K"�Jd
��Ly"F��ջ�P�n�)�ж��w�-YU��6L�8"�!ѡ��|�F�j=c��Ƞ���E����R���z!�<�nU<�Qc������o+�-`(|ɍ ���O,�tcR҇�ӆ���/j�n�@<�Q�g�����4�6���W=Z�ڒ�9���4cK���&{���}�8#Z�X��WUU+�QG��Q�����3,��/�%�Eo�����އռ���d�7z}
#O�t{yD"3����K��d��� {Cu7��'�
C)n�0{�4�k���(|	u(5��u)"�|�V ��Wr���e��n�n���XW�O�{���Bu�WU���,2L!�(�K}���=��	�[�MP)�s2��l�6%�j
#\Jg1a^9Q�.���F�/
�
y|x��&�>z�|%%N��{�9��c׉S'I�#�ܳ&�QF��n�๕��!JƄe�e�o},��X�M0c�s9]��e08u�x���޾�B䦂��@h~T$�%
?��-&�=���Es��nϨ��f'$��Є`9��w����vȒ�ߖ���$sNy�7zԯ�3.ɉA�>��c���,v��A���?p-?�#�G�v˧�hm,�Qv��G�=KԾ	��n�k@p*�;r��Q���w�Z�*ړ�Ǥ��� �3ν�եwR�-�`Qz\�ӧ�v��c�<�s���*)���%m�gNܦIy�~#��+U`~�U����獫l'�-q�'��֣����h&ɚ,�B�L��<�g�MIM	٧����@nf��\��}��do�‡���[6[�B$��9-��R]Ղ��T�}�uA$�+�eҢ4�k���v'����^K����6
a;8d-x+���J_�u_2΢G��re=�?���(�����w��//�(�_`�5�w�/�/+:X}�Z�X��.ruȐQ����W&��eUs?�z�N��|jj_�Mw31���#qJ[u�WF�x�Ԏ�}�y}M�r�.)r�1+��)	�Qn�"|D�U)^8s6���c��#���A�;}�/�
��	���?��K��θĻ�G���Mg�i��9^#0��;؎�Jb��ꘙ��#�<���M�z}tum��k��p��aS����� 2�p.A^S1�_.wGao%7�,SUW��Օ
7�md�%E�=,�P���[Ұ�劚���l����K�=3�>h:pZ7ן�g~��#��;xD�t��O���|��tҺ}��&Y9����ƮpbuU[]���T���ι#��U�Fo~�y�ե��j��`a����~�.;&\UB�D����<��j���5y�уo�)]���,���+�]�*�D��89�ż���mS��T�I�9⺹���"����_KKgh��&�\^a=�X���(�u`��mgO,�Ӊ�h}����y�$�ے�$�E�[��b����\ڊ�xl~[����l:�鈼�,����g�\j��gY�	��'��&f)�GL|�ƭ*�Q��pr���~�;�Z��I]��
!<�aPB�I��b�CUxЏ��Eg��C�(�<g�d���РrM{LWҮGh7�9�W�Fɜ,sR��ߕzH7�zϙ�FrcHK����oS���Fa0��z���h�C���:+/����ҭ�[-W�� p���3v��\uq�GG+ԛDX)��'��&M�uƗ�Û~E��ވ�Wp���5J�pGՠ���0��_�ԍ���qW�Ę��
]5�x�����1�yu�&��8Hȏ'��;��@�<Q�v�8�����uV�<�ɦEY)+��tn��|�߲�K������3*����"���ޫ##���
�ЎN�i"MC�F�Z�uT
���7���y\=�ц�ёc�XY$*�^�IN�h�q��h�<��쇢��[�筆��%���UY��A�G�8�m^��s��u�¶��$6	y�7YVP�߾���tF�(j�:���ڸ�$j����{w%ph�B�L���\=@�"0���4)U�w�' �O�w4��#��N>q��٘���>��0S|�_Ae�g�<2�8�@�+�5�	3�gKp:���E�L�Bv�K����j�:��*&z����0�V >��G�X�CJ��I�O��Er����W����b�$�W+�^j�ɒ�����ϖ����6�H�X#18�ˌ5����ԋ���`�֩�wG�U�,�03	�������̵1��Q�&���g;!��]v�X��~0�a������	��\�M�����F4C&h� �V�Ӿӗ|���怙w9�}��9�/��H�Y����1��˚�W�(�u2igo�}9�~!V7�;�:H�	�xǗ�~㲿��vW�ز�j��
�w�$��kʪe���1Z^�W$S�+ļњ,�-�3��!�cm�h��9����% Q*;%�_���8�FV(����s�߷f�8d�����شgm5@@7V։��!)���^`��#m�܊����G�k�!��y�u訦���(+�q��:�­�D݉5/��b��w������b+�b��ᎁ���6�}�H�Л�m$��te�1-ě
���G]i�ܘ��$��Q:npy�s�ǩ��B��q8��H�r-;�-c�N�*�r�J]c����G�Y���ucyUk�u���DQ�)��:4^���K<|�XE�ޚ.Hx�r亞�j�Κơ���-�]��eU6���x�bk���_lo��Ⱟuv��oL�zA+�$^ҕ\w�%>�[�P��G<����2���<�U����w�����+=ܧT�2bwݠwx����
�ay�#G���t�s+�s������[�U�Y1��n,�,(�4��c$�U�S��9���B�%�Z�H�\R�׮��m�YZ�,]�KH�[�E�ÿ��/l;�f��
�$�6��![aB�r���d�Z���V�zoْ��n�H��K�VU�%����)G��B�$�E7\f�YֵT���
�Kg��ɷ;�7� w��Bh�)�k���4�����\�r<�zu��t�S�o�?(#�"�*G����<K?�'<i��T?����Zm
l��ױ�k�ưC��d�	@�P�J�����uU� 7"C*����l�e����A�I����̮BZ|G�~ۙ���Q����ec)XH��#�����k�����3��KV� =[����X�_��ߐ���W�Co����F�x�#)ȁt8�6�]��H��w3,ky��ѡx���,A�׷	e��#��/��t�su��#���8������;g̗��]�[�d`�o��A�l��g#� o�@�^��vI�C������k��r��k�Mp�Ԁ��K���mnJ�6���!�	{�zQIVN�r�rE�Z��p��W�w([y����
*
N�C�S��!!�أc�����-q���UwJ�=j,�������l�[^sM��u�;כΧ�:}�Ҝ�	�	qg������cNh����T�v�)W��d���]�]�*I����n����M�:�2�ұ�ux�v�>����F��n�D!�$S�x8��;����;�(���~
�Wou�\�Ht�*GĞv�:��[�L�r��-���y�G�m
k�-6K�=�9�D>�Gk����aD�l9�<j�U�r��7����j��*�Nl�����)8�j�2��b��S�-a��s���4d ,�`�8j0_FC*�6���*�[$_\ q';C2lD�I�=#��:�Vp-(_��Ha̹$�$=w�#mC*A�1J��P�%�s�d*�:��%	}���4�AR8������zø���=�?Eu,q-��أ����÷���,!�p��N��:��Ő5��V�I4����?>�*K2����J8Os������P"偙�bN�%�
�p�xc��N�&ay�{M�lƪ3#L�mN̕&�>��4w��ՙި���|3����}+�e�}����_���,�,A�L��u�[����ϲQJ5�'z���@Nԝ�Z̉�ED�@�(PVdl��\8N�&,��)I]�d��N���Y8+�ʞ�_�w���u⥊�8�#��+�1d�8s6����Ǭ}壯����Uy��fc����+��!)�Ȧ��1���[�N����}3ǮIG��u]��x~�^�ʔ�4
���qd���[>�,{�1#�^3��ID��=�q$�%�ɥ��:A*��Cg
R��@�B��H���@�!Tn���w�l��˭��a�]���ɬ���z5����{z���1�R&��l�\Wџ��g���EIّt)���8�R�Tp*YM�ڋ�FfR�8V�Y�bJir5Fč	N4e�gH%�<�ټ�
��n�j�c*v��<᧼ /���U��jao.lG��vA�vP���ؠ�Z�j����9�IdA��v�Ɖ<��jO��3��j�5�Kh�iMt|��en�*=-AB��Q����׍.|�"?��Ïs���\Z��%�g��t2^L�#;K�0>;���!���SSI��!!��H�>�S��|�B�ϵŵQN�,$�,J��,��y�a�>A���"T�S�M���K�����"�I쫈�+�;;�Ӽ�[���5��*^�1!��;m�--?wb^e��Ci�O{�*���N�C/���.M�s'������f+v�S�'�̘��
T�kO�H�L��T�pR��s�#2�Y��@�2��N�6^T��)u[�>4(n#�*w�²Jb����$Ȥ��F�TxM3,"&
�ܴy��Wm�����k!o� ��	��,˒�e����6�G�G\r]U2%��8�WH��
C����Qo娣�)���*�[zb�2�n����ʹ�.CL?��g��l�2�\��#�.W���Y`�WG��>r8��e1����j��B����
��U���q8�`{l_d<C�hj�h��|�v�o��L9����g���䇄�b�%�&��h� �x��L��){(fo���P�H���~l����8� -s�3�(!���Ckb���er�
A�E�H��Њm�q�ؠ̮�x���+9&V��HLa������jK##0c�e��[abh�@�/9�����Jy1�MK��:�5b�oN�K�T��hw���Q��	��)坁�(
�i�Ƕ&p9������F�d�I���S�z��Ԣ���uq�g�ݴ�VD�Z�&`�W�::�*�^�!�V��p}�����a���,?���8��晛�K��_���7�g�?�r�W.U�[���c�>��9)\�<����r�.-�^�
�BtR@�͓�f�8�w��<_I���a���Ɵ̢��(��C�U��/)�\R�~���?~ۨ
ÿ�dZ��ZەGƐ�����rg���Jp_�"}�Ie�g�����̒6-G�;����K�>�$n�����+��L�[��o�"�N�>��e��Y�f��C-��\Qz��%��se�g����@��%��� I���^؄������*�Ӭ����D��<�����!��0�O!
�w!����ޞ{����D�S����r.��~���B�z��+�B�mA�*�+y����(k����w�_�3d���V��y��4/ܺ��Y���hs�v�zJ�0�a�p67��X��6����	��y�n�o���}l��k�n�r7
yyh�D�bK��S�OR5p�8�.T�a[��Y�hKHCJ]c@�/�s-`ϼ���E��a�Gk�Yr�ʇ�K<�E�e��W�V�RP���t�G+$�д� ����R��b��͇P��TE[j҅�
���*���NU��Z��{�V<�����Q�����w�*�?�Ӄ7N�s�O��	j�$�0`۱���/�N�K�]ϫ�]
iZ?;:w���<����7҆�҇��ߦ�٨nV�wl�}D��A�%�yv���+�w$,��Xl>�/j�1�'$Y�F���\��(���AЃ�]x�i�Zk���$5��U܈�?Z��N�:5�Z��C�'Z�ܤ�}w���~HE���VN'�O:�R��|J%�ء��C.^��ڎ�`��g͐(3!��a
�[0ɘ»#��c]j��)��`��rsJ!�*j�c�f`��o�+�
���;mx���x�� �2<s�5��@�HT�}��^��P��:u{��P'����/���>=
}JKo���
a
��XN�-��K�;xL@@����a��,�����u]Ϻ��U,Y�;I�a�˯�%y��\	��#�2"�d���aE޵>P�~�?nŠv]wZ���Y׬���a)���3�3t2������T��۷MN�6=�?Cݹ�ސ�d�}1�y"9�gV��˚!Z1�qz&�W��w��-f�R��C|K�>���'�cwA?`6$,�|C�kٝ��0�->\�#�˽�����5K�Li�Tom��\[کNJXu�}ꕵۡ�x���[@4�u�	�g�����@���+�"��R.AS�T�+�8S���3r
P,qݕV^�f���b��ڝ]d|k�
xtQ�ä=�:�qC/Ѿ�K�6�9@�̦��8ۃ�)��6m�k�ϋ�z{�v����C��G���v�̠d���
lC�ȇ�`�h��r�����.�S�F�m�إ>2푈��n��\�y
���3�k��43b�?��s�Nj����T����%�a�)���2��}7
��� I���
}A6m�"o'�iLI��I5��y��?����|��Ue-�Ң�hb��=Ϫ۱_�*'�{��h�3r����y":�U@>�q��|J�!����׎���72ZΝ��	]�p%}��,r	�T���āe�u�1't�̖X�m�٩X$:Dl>�O������KX[�;���4E�h!�BA���j�Z�<|:f����^�O��h5��a� ����K�����u����/bz�t��w~�8i$��oo��t�^3Q?r��Lˊ�f��o��In�H���i�qUgg��)Ӈ�i�-a��ui��4,a{� n�Y$����H�kJc��J8@�t1A�y��8�RQ�)(�
�qr�<���'T��2QUE��T�����ԫ
���*D<!�⥘`��]�0^ߢ+=ǫ��I|	^�O�ax��'��D�TSR<=�O+_.��㨊����d��'��	tl�9���e5��,ƙOv'zz�{�S�]���x����j
D]�âKqo"
���M~���7��*5ׯ��S�p�E���B>WV-J(��YWZ~]�^��oP�6{
�[���=<ozQ%��g�fx��>���ʤ�Ɣڗ��>�����!���C�/�9���ky�y�r�L+>;��ʒ����[�/�	�f�n��>�O<�1�#r��y�w�70"���a�YM��0Ib�8H^-r�i�
a�޴B��7�N9�!��gI 2�iOB���*{Ȫ!�&�F�s��S�����mt�*V��ch|��ʢ�&E=��E�+��BJ�&Q"/q�d��"�8Yn�����$�:����W�|�8���a�%	�F������~�\����\� ���=��w��帙�"��i�4��}B��W3�߬���[o4Yf��"����31Doڔ��r�]C���pϼAyl��k�7S L��j��
�@�>��s�%���0�)u�A� �9��-^{#x�/�ަL[`�0/��(��?¨Y�)�؛a
�wI{�d�dC1������ڐ�G�d�j��<����R��0�*eYC�NsI(~.�D<��ouwϪ/۟EP�q�{��cۉX$6����i��E���<�-����o�mp�V�tX�b�K�ͻ���/�mjh��o��2,;W�́�x�I�gƭ،90s��Q�NO�� �HP�1�'�gK�,-���"�z2��ט�m���q
Z�(Ez�QNe�sD���=Ն;�,c�P�_"bpy�Ik<Ɖt�,_��B����-�q��� ��ܐ.�_����h�"{��g�G�j����y����;!X�;����C
H��*g�r-��;2I;���d�T��X��%\�fT����ǚRs��m��-�/,���;U��U�����v-{���=�nO	9���k�U�땐������(�ndz�Ii���P_�
�k��a��6d>*;��	ڻ�{�V���q��S���[�B�O�l]yW��MRZ�$.��%������qj"�̙��.��9*����H*�:�H��fc�Ep��R��o���Q#"h��tL��\�V�	���Of������}=Q]��L���H��|�<l�%��C�6h�%`t4�5{�)�D�$�C���W2M���F���D���p����VI4e@� ���G"�����S�]}��ۅ��M�b�F�)�Ktݸ�����Mq9%qc+���9����sf�
Ѷ����b�!�t�Oe�
�^7u|�P����^g-jъ(B�	q
7�~���?V\x]�oF�og&�w5O��o�,3�۪lLT���õ��Nn�U`z�\T����d��S���\��k��+](PX����x%2��_�垘�2g@�E����g��Hj��t�M��M�6�FN�
�c^���ٲ���c���-J�D�_�.+�LQl�O��d�`u����;��֦U�b�h�+�}O�]�����ډõ!�bh�	�����y2/�$}-4���-�����}��|�~\��/m�ڈϱ� ^�$2�͔�5#��\�P\�kX����txM�)ƕOl�)^�V9f+�ts�j���˗##��x���?g�B�P|�Cv
޶�q�?/�&�����yt�g"�g']�OIi�W�vd��/����n����)�0���P#X2?�Bdž��)�5�sb�b{t�c�zc�7�U�A�Ԓ1)!��(����S���,�4���H�C�$np?$�=��i[��~�׉�����YX���A#�_0�����j�%#J��8_���f.�����-Ί^�.��'
�du�����x,=r�#�e������*AZ��݅�[S*k����촀��HN�T��%�E����v�A���c�R�Y�6��d�̻�Yܲ��������G&�c�<��o���&�l�wu��?LHZ���n���M)D/�U�qֲ;���;�
�쏌���g������)��ݢ�������yw|^~d�l�&ɾ@��S
�lև�΍r�S�Z�.b~��
�~��ey�ye���f�i���S��ԑDT�����M���O%�,%d,�L�=�B��-��1�;,��{�}�,Ҝ�=��s��n��=ǺOI;�$���p���'i&k��7���G.�����t�0�r��
'��b\9��r���
lgjO��-r��l�c���7icm+�!�D�]���a1=Ѥ5q��l��l��գ�%���ґ�j�	G�dT
�v/��	��#����N޾�^�x���B�:��W�ڼɏ��E�vR4q�U=zjUdARK�]����hl!�W���uB��
m(c��'
He��t��o{R�}$oEb��?����ˬ�A�y�f���C/Ο�{�ֳu7z䒏���XG�v�����-W>���_~�kϣ��񏈔�v�rți�&!�*)��rI���b@�쪖%M5Нs�!N���=�3h�%`�U3����yV|���p��k,6��խ�]+{���EΗ\��^����yn۔.*Qz�MO��տ��D���'�T��S\�0�WU'5���:�#�h΅A%�EZ�ʜ5b�Ҝ�6M.�^q���Ӷ�X��(��1���]l���(4��A���Ң�ۋ���VXkv)^ۚ�n6�e�Q�~�q`�a4E������l�Z{!����e�ٹ�R��fm��wš|���N�wda{%Q�	c�y��g��R�����A9z�X�BN�|5�ّ��O��49_w��9������.���f�o��(�D��\EPl��~�P��ˢA�'��Ǐm���� |��)�]ˍ��1��<|`){��y?�J;|Ɠ�=���J7��M��MA���~we����H��b^;+��4���T��1纲ѳ�'ZNWR�f�Z�x��
R���}�����E�ڢu^���}�
����=ּ3�CA�lC\�'EΩ)�.�b.-��GB���؄��HA|ZE�y�˭�y�H��:��$��'�X��v�3&�y�VQJ/����I^����	�'4Z�Y[}>�ēn�����ѭ�ţv�To�w(�kxǂ� ��Կ�^gWzۼ�r�1k
}Pc�.f�ŝ��L@�^�-��7�pj�o����rͤ�DⶴppKt��r��U}�$gmJt�AP���v���h*ٲ�͛-���Z�v&�dH�j|4�P�9���?]]zw�� �w���L�����z� z�����Щ!�.+',z�b8����*߮$����jΆ,��7�bC���o�/�]�E�h+��#PN��:
��<�D�S_S4;��LG������V_�!G��8��ʜ%���gq]�wX���\z]�B�W���λ�z��TS�v��l�������V�+#��ᡜ��������L ��W����ϛ=�u5�f�]�Y:�5tgq8hĢ)����+��<5d��P�:9�?tun$�{`�Y���?!�&]ܳ��p�a���R�<�ұ�nk}�DpzawY��$�z�:�ߓ�Hz�����dY�Gj�a�r�>��q͸E@��G�4�����+������5|��"�E@������8�x�y>�XqI��3%�4&���Ueѣx�ޜ+�V[
W�?�$�U����7���H���2�ܘ�m
�&�{}�3�}�������`RU��=}ii*��"Q:��, !8��6�ܤP�'�T�s���rvw���MDKOx���inM�'\W��	mF���f�P��O�V�
	��\����`���%~�J�JvCm�8�kv9�E��g�fv�G١�w2�0�$�-�\��I�MD7�Oۺ��rU��:Qڃ�1<;�	-���:�z�^%�q��B�ZK�QD���{җ�x�oe%�*p�7|�-t<^�xأ�bT��*n��}�ۙo��˞�(��ﴲ����\���^(�Zn��3�f��Z�,2��:����"��n�@{��8,�-�^��wQ���R����E~����'>�@^U�>���W5��%3#X�5�"߶縵�mw���#,�,�C�8閅�W��O=Ļ��H�7��=ζ��:+�
ᓞ(N�<��n"];٬�D


+�M}�Y`��*L��vl �q����Zf���u&��-��A8�M���������6u
t2i{�5���k���
	�v@����Jgv;1ph�Pu�2[�p��C��Um��
�^H��n�|:�}���Jt�8��2E����l=�U-�ӭ}����0��s�	.>Q����x��T��a7$�m�}�;aÿ�mk.�4���7���Kt݋�B�{����Z=���+�I�����w��oN�.��R�"k�O5h��a��C�K�0O���P�$�/�{q�u[��_f�_".�w�y$�8)"oX�;3�4Z'��G&���o��5��gȬ	[�푂p�x�$~VlYy�?A:�O0O.?Iv�{��~l�z]%��x��դ�1�G2��
ͯ�4`1w����^��"B�~��<׎k�h�:���&�9D�ɗ��@	�I���4<�l�C"�`��6���7Ћ�콀{�=V�+��
`��T�U0딎��s*Oʏ�tj���y�2�Ϡ��|*(Tw�l�d��b�nQ/��7Z[�i}�hím^��W�L�m�?�,/okkX�Ft�����+�-��{V���X7�NFd���39�ȑ�V��{\��o��o���7*:�^�.f��=g���
;:uP[�u�+�Z��P��ϸ�u~({��������R���ʑг%�?�L��'m�O#��8�x
��$N>�|�ߖ^��y~r���׮ۙ|�,y-�n��Q�ߖB�N�"n���%;Ts��B֭f� =3�EXX�7�W
��s	��i*(*+"AC.��ڥ�+�:����WR^m�SQM��z+�.� �sS��!�F]��bZxL�}N��N�
�$��pgv��E��mA~D���Ph#�.�0k���㲧�o�n��?��֭l���/Ox��$]��L�`.\(�P�+:rj{�x}cO���#V ��̥)�:��f���(ý�Q�� �ǀ�*��[�յ����~�-`h��1):����ҙ���n@-��݁�'>c(�����>,����U0�.Q����/��sU*�k�ޑR1&&;{�=<�	Q���dÅR%����R�	�����F@"��z��EG1�M�}<*:Q�5	��zW���՟���D��Kj~�_������[#������Z���/��9XMF��ۇ{��7�ș���ک�����+�h����sDf!!/���y��{ܸ��=��g0<���)�8�4�T�Mʦzj�^K"��$L�+�܏�!^��\*��d%\��%��N��s���$���Z��:˼��&�,�t'U�}�~�#���
�\���ɝ��/!-�mY�V�B-Ei8ɷ9���2<��S~N	K۩�p�'�Â���*�֜�wcWF�c���K?�ZAJ�ƺ�p7Է��b �i����KL�`]��gɎp$l)�q�����ҍV�B�C�*c�K�irz!�3�ڇ���|0��F��
`�Z�B�Q^��z}"!թM���r"�[�R���M?����� �7���	�dLdH+X��Tp�����;��߻W����3��k>j��W]�[��т�QT~�79�E�<�r���jO>�3�Sѧ�B0�n+�\q�\Xh�;ed���I�x��6�>� ��XC���Vr�pN�F��K�|99QP�ba-�~
$�GnX��?:a.pf.!®C�f��߄Z$����
���ݞ\؉j����rv�b�1��F4
%B �B
k"�r�,$��$��\�7K��5�s��n_���+����v��� ��P$�ϩ3�/��x�>J��aw/��T�i�X�F�N��)@��ԅA����K$r>�G�nc	Q�R]
��]e\C w^�ʺ�𑞯W6ު}LB|��ұ���61�R
��pn=��b�>@k��D�R��ƌB�<d�D�OK���gzJ�2�mo��zMnE�}EKG�W�䷔H�C�	i���3��<I>�MQ����n�h��5�0�qb9jC_�~P�o��a��ʀ�1�>bש����i�v���63u_��;fj�/1'y�9�D8�a� ��n+.Z��fq��>�Z���T��Οά�s6����
���w�V�@)������w1����`�h�	�|Zw������U��i�a�{�]�"��5�X� �M��DXfl|6�b��3��Z=c�d�dž/��bWO�����g�L �Á^�~Їo�;Lx��0e�_�Z��,���Cõݷ%�"����({���>��9�6?���������C��`/���}�G�(?���Zi�	�6�m��	v{L��3�Z�[a��x���'�96!��1�2�'�p���ͥ�[�˔�)�)�L@ƙV~+r���2��ʑkk��9�Z��	0NG����2�5r�aQJ�#�+�Z�,�O���h�O
�:��X=`�O��0���ߋ��W<�N�;��{[�����e0�^�G���ݬ�-{:�&ܖ�V�O=t]����4ƏKF}1Q�WP�y�@O�~k��[�+��c��D�����@��k,�UB�#ű&�rC��e�,�/at[XOd�Ԛ{-�@�a�i` Q�/�
��B�X�I�HU�,}�Ȥ]�Oy�,�����tGd���.@�뾄���}�ۀ���9S�U�W�!O��ҕ��`h��?�/�=���
 �o�"���:8��A6VK�#��X�����Iq�q�K����y,Ѹ�:^PAu~���[��5���<�`d��l2u���v
6�5b��ǭ���K�v����o�����
�o��
Iѐ�8��0���M����	S��N����&Q�%�����x["��:�v�EbJړ�0��K"�`�G^���!�ܾ�3#G����WT�b�Aý'���4I��Io��5�K@�d)ƻ�H9eW�`��p�[��':��q�\}���4=�@D7�Z���w�Y5����06���Ә��В� �*)����z�G�S<.F9"��Ca�!z����[�~�P>��ݴc��ZB��b�4l’ٟ��s���ԳܻY���j(J��՜�:�qZo%9" ����]c,:�Zr�PA<�@p�/�"����
��g�]�[u�o�W�(�AǸ3aI�L/��)^j��_��s��;�_"����K�Y�		mĄ�"�oj��=1H��f�Τ;F ��
U\V>��{��9Yc6J�?x�̀W�0M-��7�ؙ���HrV�2
��I��<�����(�����
5uywjBt����A���֏o��\e3Y��L\�ʺkl#s�s���˯�G�b�/k���BZ0��r�D�h�D�q9�W���z�C�8 @���C�4������.7��U�{_�\���_}#!|z�(12�O������d�@�C?�x7�N.?y�jvGC��Ҍ��"�ʚY�lC�`���2�'%��b[iܫ6���hLF�
�HO]������
�M���"��U��1�P��
[���9���������X��
�|U��B���� S~z|.�4���TP��{.��b9�p�y�-�~^z��
�\��@J��X`n�bDWpk9_c,:�2�Ya��FμҦ׭b�1���DLc�a�u"ҝT�T�7+ov�z�Ӏƣ<�n�siDw١/�ţ�����3mW.�{2+ا���t�b��J���c�"��9����ʓ�����8�lɭ@��Ѥ̤%�>i�����O��������~��}$��f}e���]�Է��9��9y2�6WL���u�SMv����q��9t�)iG׉��0���6��G	-0I�#�u��1��}ŭ[c���z���6WŁ!-pi?K����8�'`�PCrr������p\���B;�k�i��~8�߯I��{'�D����ʪ�J�"am@!�B��S҂��� �?{���łk}�Mq�W���W�,/���R+O��C�[��Yw3|c����k=}Q����c;Y�4���������ed6n���گlc`��,�ɩߤ@7iM��=���Gs��4g��%�rG���p�H�C5p�#��S/ڝ*���	ϓ]6��}�N�x����������Er�P?Sr��b���O�{Q��p���h*L���b���YS�n�
/�BZ�;}�m~9a�4����-�h�[�����͎ϭ�J$�1��N�&�|'�c�䬥/ʺ��&᧥�,��/�94�
�g��)^D��/�P"�܈Edӽ&S#��pK���D��D��
�Ț���M�9B��4G��e@�f�~޻;a~�WOk
�CL�� T��|�;��v�)␳aH������z�=lyN��S^���xG��0�f��x!e�Ƹ.�9����\(
�(noAiO�@ut:)�S�P�U6�&*��B�v���pF~�[����@���]���J��a0��dT�x͊Z�С���q0.�W2v���1hd�-CZ�V�A@�G�ñ|g;��=E�4�'K<�@��|��4^�q	|�\���V���1p�%[�#S���#�F����#��-�C�I����̥�+\),�Wyy�:#��s�Q�����P^<���E�/�P����Ny����ߞ�?)��e��S��b:	jw�na����\�T�]n>,��Jz���F "穼�ƹ0-���h�����q�(B?���Z{)���6{�o���ݔ��2WC��tˋ��g�5�T8�����,+O�e0HU�ܺ�vRrA�D�
��6���ř��!��D)n:��nc	�a��=2�ݫ��ws9�O�Y�V@^��XI�{+���#��b�����W��y+@%
��0.�{�'~{d�z�r��/�ێl����L��*b��d�_����Ec�f����a�"�sص�-	��v�$�95�]�&,�̋�P��L�Y��$8�>���=��[��w�<*	C~�$\���Y�Y7��W$Y���^��q�F%E����A�W�Q�7�{����EH2�C�)C��u͔��.w9A�Yȓ�K������c������d
�Ị�<����w��TPN�wb���ԡ���"~H��6�6�_�0wnDKAAN���e9������iFVg�?����#���|�����ּ^2�|�Ś{�A&�X�|��[QhY�^���oG|���#W*��fe`-�ޣ�\�6�i��˺�.tu/^��y���kA�������/�˙��5��n�nמz�]1���Z[ϝomV95˅_�6�	e^�^��!M���M���H�чVx]m$��Տ�KJM�4F-��oQ�C����2����3q/�T�]�)�<6.jxo�/|CA^�[cB�2��|A	�{o�1��K{�2A`O��F8��;��' ��9ƀ@bR�]ʷ�q,V�o�<*�l�^�ܫ�QcT��_�5?$�U�0_9׊ f��)��C��ץ��)���י�P�["q,6��
���<sZ�mNv.
���.'��
Ԝ����}9��P̂�$
���h?���˃2=��+.�#G=wO��G>�#�a���cd$�\�ـ����ݻ���g�y�Z�g��v�b���Էaz8�{ț}Bh�A�{mD�����.��'*K��Oik;��D �#�����/h����;�@��±
!��+�ګ�-�c�kn.���v�$?:���ܗ���b�{��az�K���ޣd�GkyVֶ����Z��ͥ:��'Z�sg�.�O\/+�i�.��5j�>(��=��>��v
��w=7\�4���߈y�~)��qNKs�s~�9<��k
��{d����o�Þ;���Z荄��A�R�4�vríḾ�Ѳ�ʀ���&�_>�p<a\&�R�_q���o
@X"P]TU�0y��v�v�w��t�]�U՗�i��<C���i�x=c1v79�(f�
�M�k�ڄ:�'ڪ
�I���`|y�9D��5�n��U:�C+/>9U�F(#eI�|�K!����l0��36��n�LG�e*6Ne
/ˌ�Ԏ�Ūjj՚�w����e��7r|т���֔������讞��
�A�Z�S�Cr
֔B�I��nt���~�-�#Z�V����v��L��Br��"9ŗ5���9��8V��x�h�_d^�:�|xmW(��~��
�M�y�+�)#%ʂ��u�����~ޯ���щ�*���K��X����<���g��7|`����z��H0���ikY�=2�����n
_��u�X��GWVҹ����Y]/K<J�Tdn���Y���JM6@��rݍ��N�bj���D8�| ��'�+^�j��t}���΁�bFAGĊ���̃��/��c�D�;'f�{s�)y��'�	�K17���E��m�蘷Ҕ�k�<#���ꨏS�I��V�:�	�e�8Z�(t i��@>�8[���4XL��{��J.��.
5|E��^]sҝc�C~���L@�!=�I�uz�m�ʐ^��IU:���d���݌a?a2h/���i�y�;��nQ����o �(�����&�=X;-�?�vkC�)���fm9��ҟE��f^��-MזJ��=�4o,q�˒�i^�X\lX޳�ۓ����{-:�������V{��??�&��*_i��]�Ţ@����T~�9{��U�p��M��Xא�j���S雩W::��@V�Vپ��=-��}_e���y{�Ď�^�g�if�h�j�r�Ԯ���0(��w90���{�T�,OT�<~
����>ϷXVX���8��^tΪ���/�����y
�F&��$ZL����ȏ!D����Hn˃8�m�����L����:�d�J'�!c\?�<ƶ}���@}���������݁
"'�||�2�_}��W	3:����}6)X�.�邈�I���e�mś�[�:ޝ��r�m��L#hd ��c^o����;�6��a�!m����L�S���
>�n��N-���j'�9BP�B��"7�%"���J�<��Z���)�
}�B	�[S�����gԓd%���7
�O�M�mf�Z�dQ?��8k����
��8V��jW��{z�
�5�zՄ���ff2!�]�J�7�����3��Cƅ2P����,�Mw��ǹ���*)��5H�����% s�9ҏt�I�TH��'�~�ic��K�"�~X��=~KH�^�!O�q&�
�"�^���S9c*l`t��12�2�Q�d�@���Z1�N���[
:����H\��t܆���Ce�S�S�R|D��XECyd�hp�9@<(�+�����$̙4���;.9댋)5��d�e�s׷z$���U��f����{��<&�v�$���b�)K��W��T�����R�8Y�j���'��?K^GW��{�o%8���dw������J�g�M�z	3.��7S�[�^�n�?�ԣ��l���C9�Xd��C?��5{/�����{/���{� �2D{D
u�wo����̧���
�Cj�c���T�#Ț����y+L��@w1�����c�@�]��?�|���K��9��d�X�����e,r���755���뼼�ِ���\\5A���	�7�	�[��B�~����b��s�^w�E)`sOrя)eަlCZ�@Kg���ߝ��z��/mi�M)�|D�R�ѿ��=���/��|��pzW�PC<��x�u=(9�m8m؊�-LW��.n:�Z}w杠6�
w�$"��O5��t�5����Nց�;&̢� '|^0���R�.�T(|$p��Ȳ���!��M:�
toTĦK���MH'������O��|2�6N�5�k 1J-�1�YYs��ViU�8o��fYp�s�*�l	�/�Evs2J��/�?|��Ÿ�F�b-�VAcF��:���l�l��{类�.K�M(6MYW��,3��w���Ec©Q���<
���CT?�l�7UZ�����*��{E��ipCT�4�c)f�(1/�Z,�O��,��T�eE��C���kؖ��K�,�KH:�&��#H���D5mrH���?3�Q�F"���D�Љ���6��ŷP�>���	!�Uq�u�.��f�c�^�t��X�\ZZ�J��9V]�бو+|�f��q�,��ҏ��A�_/儘�(#� :�Γ��k�Q�n��~C�
����<�ϳM�f��ɥ�$<;���e����ڤ1%��i���EUg�q*;�R��1=X��hW`�VU�r7���.Y"�q��y�W�(�M��&��q��ψ��b�)�c�����Anj�I�W4y��tҝ�1���Q�܃��j�	6���W!h�d77�"N���˴��:�C�M\t��i1r��[?Ѓo�{�TEz�r�	�6��k?Z���Q[���7�/�����V�{.�=ծ�"�+����9=� K�Le,`S��w�9oW͡ɓ�l��
�_��G�׆aR�0��e����_ǁu���5��X2��k�>���[�:��k�ї/7:�YÒ���+W.1Ad�e;�f��4�����Y.����H:��^����θ`"<�H�W��G!�u�M�,�Z@LT7�cC����ގ���
��>�7%1��$E5��:D�kP����2r�@����5�����ݕ+�Z����f}��G�
7���R=�4GOb��T˷�
��ώ�#_�w�Taҳ�j���t��[����H�	�-ys���G�d�h�Au.Z�54N^�����R�ӲG�2Qё��\I����>�]zP����=�>';��r���?�8D�x[k5j�4I�T�U	�W�0�*����hڬ�Fg��LRg�X,���cA�!����*��}%��s�Y|�{�F����+���u]�$�_oI�r+sź�v8��s����R���?,%_��'N,�8+ ���kħ�F�gd/$[�5�'��Z�ǡ)���A�{P���
{�2d��fܥ�C(���QU�g1�r�\;�H��b��b�τ�����e+lI�"�"�Ӝ��
�.�?��>ik����V2Y�r.��6�ы�<�OF}K��lc�+$�#˧{ɘ
6S�9Ґu����d���`���*�ٕX���5�=��e���ou7~�4�-�x��f��&�|ۼc���;¼�,�Z�_ݥ�&k㯩���\&��cwF��c렮7��ؔ���WK��]�}Q�Y�:��HA=r/KuWT�7���Voi�������;�Ս��+�ݖO?e������m�+�9W���*�3���M��u=��-�ZR)����Q�v!E�Qa�(9�P+Bv�{@�E5�*q�]?�����vS���!W㐸�7g!�N���£Ir��WO���ԇdmb���W�B���M�!��*I��>t�3<Z��o��30X������ܧ�?�y��I=�5`ռ�4�j�M,��Cy�=�o݉�TpGX��Fo���~U�o���+ZmG��z-�V-���;z�i���ʁ@�5~c8{���n�PL�T�{���+�<�T4��B��-ܾ[�@A��d/y@e��A�*m�hɛ��03�N>�9� �3��D��˓���ʬ�������y�*{+�I�fD$5w����[E�G�e��L�e�ur�H����1�����T�~ΧtWyw�$vsj�f2(�d���F�g]kSz!~�']:4`�lyi1�Yʸ��7y��T��)IJ��u�� ����^��ճ�ķ�'^D��v������IwN{+$>�|��ؿ�z�Fd����a�����O��bDL�{̬��o���<5|�ʐ��-DI��ߚk���y�BoW�+�o���^��'^N?�� =8\|7rp0�~Iq��X��������3�
X���dyz��l���0�E�p)��K�d��BĔ,�D�K��Ξk���m���?^$�fRd9M"Q��%��ƨѣf�H��ç�]�9_R�U��Aq�}<����=�^��F-ڋ�V���욽Vq�*ĝ�/s�r��������u!`D����[I�w�=)	Ek�v���kȿgou�S�,`����*糣:�g<�N����Ͼ${֩ڗm��ߕ�˻:7m�L̝VP�	���Zo�x��\�b'C��L}zq!=Ew�
h8���t��[�F3Xc���Xru�.�$K|�3�b��8���r�ҋ���?Mzbި�A�ԧ?�k+Q��=�JZ;T�gr��]M{C�}BK��&0��F~~�Y��:�P]�\��
B���T�*&��,F�u�U�y���`H��n�
n��
F��|�K�ln��x��\.���H|���Im�,�i]�&�+C��9�DZ���7�+�g����Ds��>���������mb�|{�{q�Ouye�ڬ(+7��oʈz0'�#2�VQ���ǗM�E��}�
��LK�4��~�I�:�ֲnj5'J�e9wse>{hP��g���,��f!�k���土^��Ɔ��l|�w�u|Ñ߬�<e��͛�ԝ|wZ@O�iP��	�l�ns��S�֔���L��|���Br��%I�Р�u֡;E��R,���Mj7���l}�-[���`�p���ɮ�0ف.u��I"uCC6�L���N��-�J�b�;B�!� ��~)����4dn�dNj7s�'�E	o�9J�	n0���p�3�;����̝�07*]�R݇�Ɖ�C�� ܙ<?��4���?�{t�q����������b�X��ݰ���e��m�7��	�	w�v�C��l�W�j�m'�|[d��>���D�Q�x3Ck�p)���e���C>��Ԟ$�2f=����:H�h5ڢ��hF��L�,@��:�����E��~7��BV?Q#���3QA�.јڬ��xW�uj�T�a7`N�"�*�kKbY��JD�:
��,T����3sq�%̓!L�ooP�M�Z~8_BU�h�2|��H@�����m�Ej]<��m��	wFɇ�|�![��$��Q��#�z����T�֞N��6�		�讎�HNb!b'r�V���!R�n�&>w���w�������)�rR`�><\��|�a� 	��+��Q۹o���=b$Jh��ܒ"A丄�uu?�\��hG!�7�˽&K>��p50�E��*���~#>ĤR�>p8%�q��{��}�#��p����q�Ϳ�fOG[pVa��rN�v�
@`H�r�r��UHk�έ|z��g,t��Q����ͭ�Nb��)��Y�0G�}ws=�?1�]�Ο.:����X��ӻ$��V�ލځsw�/��@�@���{W,}v✥"Ըz����EIIK�U��ŏIe�P�`��fq�4ꒀ<Et�\|4:C(zm�;n	�ih07��1(�XX�b>�y]%]� �-"Փ9�s��zRi� 
٪Ӎ럤1�!�Sj�3
��^��-S`Y9����%̥ʒ�>�2�.�-}�pѷ��7��^�-R��2�U�[��KV�^����j��]�N牅�a��"}���-��|����� k�2a�^����!b)-D��*5�7ho�Ѡ��J���?\ζn<�o��Q���0^�06�%g�>)�f��U�*7���U��'��M$+���6_7	Ԥ��Y�|j���ip��UzǵA�������[���.`�{f�"[ꨃ����H17�0��u eeɲH�k.���a0<�bGQ�Ji�%��_�+!���}W�jۑu(Gkf��EsF�/�r�yy�#�X5�F��H�Ʈ5��Y�e��8<�1g휨�}fP�}�,-�^_�J��Ϸ&}$��6�vƸ����e���o�0��?�
{�d–�"�+�=����*��c�y��xy�Z%�=vS#C��9
p"8*�^Zx��7S�͊;���s���_"�̯i��#'�+*�q2I��yl%��E����^[Ɖ��7�8A�-�4�㋲�.��A�uF�EOZ�a�;R3G�F����~#�ž�T�]\{jg�W�X�~�<�pDm�E�ݭ���Q��G�C���=p�$sC�T"���Y�uG?��1zˠx��i�v�5:�h�`��亟#�*�����,����f�#>3e�Tu��u+(�l�:��*o�w����Q���ʑ��GwE��8���w����U��՛�n�K�-� �͎K�M��r�9�]�ay��+��2���p+ҹ����x��?�_Q{��(Ƕ;
�-!��1FR9n�f��!������?n��
 cD$=K��n,P�Yg��xq�ͩ�'C�� 
�}�G�%3Cg�Q�Ӝc$�n�%lcf�Uˌ�N�^�ޤ��M�-�'KV�Ϛ�9�y��e�z�bQ��ȵ��ƏxT�R�Q���5~
^��u9g��3�f �{��&#T��u�H�8%���2t�):�N#�s�??%��?05����љ�T*�R��g�)Sאy"҇SAܻ�錪�)q���R�K=W�H���=��.(<���>L}�,�7�汫�Ǝ��P��� s�+�fI��X\h���;s�b)�.V��Ħ,��|pU����YY�
��}�0ӐT�z��q�M�eRp���-NS\ �.�]���H�d�v�i�dK9}�dqz���K�5�nX e���5bF���6�ʍm�C��@;�?�{R,l�=���p�e��(��FM-��c�<�:G�Нn��喊����&R�aRV��z*/�ҴT�#�H6����v���#�I�(����V!QҠ��G���߄�+x�m2k3����zU�35հ����2o�~Gq��r�v �����*�
��[Ւ�C�[~:�m&��$�4ij��B8�4|���؍pH��r���+ƺQ)��؂�I�
�<Dmh��	l��H�7Iy�C��j�����AG�@���^�rUe5��ôc�G#[!C�"J�Tܻr7+LUʻ��|%�#N�M�6�t?&���B��D�o��;�<>��g�H�S��ba-ui-��l����/о�0�\M�}K�?�FdD��{=�{<ԍ���^Ѡ��;��|x�݋	��]94j���Fa��f�|�l\�Q�!�r5��3L�c6�?a�a���5�c��G|�-����ls^���8�%�6u�O��9�Q��ǟ��nXIx����4paܽf�ζ�K~�?+2yIb)��;�(��J���Ε�FH�����+�*1&"ɰ��ɍ���P�a�%'o�f?���cO�O�K����8�Vz��M��é�cg��֧�6Y_}�	�o��m��+zgT|�VQ?'����"�x��R�;gO^�L��8;��q���a��ߘl�Lb�L\�Ww�>k���~[gwk��:��>2}Z�B�{��W
,�w�&�S� k��a@�Ը�?�6>3����n=)?{�2���������H2,)q��H`��ޕ�3jkTĞB���?��Qm$%�)�����}bU�q_�c�qY	-����_�1Ӂ�)j�?���E=7>��-9�6�l���.�� s�x"�h��c���[��y��7�?�N
-������ T��K�����7�9�|�Ѱxz�j�gmh�I�n�H�o�g)�v���~����
C�;L�Jq�u��p��mW�<���˗=l+(�lCP���m-�[I�H�HK(��|LQk�g�ª?C�EBx��}QN�"��;��FNU��cE�\k5E�G
н�^Jv�<�+��Dk���r�K�C�N
�w¹*�{�����Ϛ�>��j��h��É�W~{�|�k�ÿ��$a�=�����g�1�iz���f҆M��m�� ���z`��0X�*��+G��n�� ?J�>�[St�d�>)�`zdM���+�9���,Z', į>cu}n��mĐ�N�=�z8$Rգ�3�c��1ME��K�Y�$����������
5�
�]Y<z�(�����:�Ob�N��A�E�5إ,��/��-���D�ʰ���sU�2
b�C=���(�F�sU�;ˏ(.��&��@÷?K�*ؕ�1���E<�
�|g�<�%u"
���kC�D%ʫ��p�zE�]�h?�*d�Pg�\�R
D�ć�U�$F��&�i�橇�Z>^=xܠ�KHUNy����xU���q��Y��d*�gg�mnL�%��r䰼!�@��Z"��["(�͘pf��k��"v���$�ρ9&L�I�Q����V�:���WIZ�k�7��TT�!�X�52Q���I��e(�Z���P��
b��}LL�ϰ�:�.'���T/�k�S-�>���l��T��5�}T�r��#�e�(��S�G��:�'Wm�P 8��oV�V����7S*��6⋫��-���7k�I�5P|-�w����S�X�����-g���`(�T��zI(j�aZ�c^�w.��8��g-�fV���]hl�3.yO�u�2&������8EAD|L|Z�3�ɡ���2�]�ۑ�5�KqO�[�شܵ,Մ>�k*���j��sέ�	*��Ѯ|\�A[
��T����O��=5�@'����z��=]Z(CGE��fM��8�G�W��P+q�NE��m�F06�8Z:b7���-�Ь��%�{��Ch����1��^t��m,R��\��H�T�Z#x�㮽���`��Y�'���}?����}��iou8�K��P1�����㥙夆C����������Z�"�8������@x�
µ-�``�Pj�}6Ll�R����U\�6[��CZ�����N�"��*Y���=3C�Ⱦ3���ڣ��x~���,ce�G��;�,5�R>U�w�6Լ�SAR7|aq��u��^�ځ;V�`ۼ<��V�����V�HɪE-�3��t9Ʌh��G�;��~V�n<r-˥������V��?�%�asR�1��>:����{�~۔x�9:�7N�+m1����f75dGr��z��ZFݬ(:��%�P�
9�G��a�xLI�rl2}���>M�n?��K�wE/��:T�@��Y_���a���^O�ME^3�	����O��\��������s

_�^��9$-�Q���5��y�'��m��s���с
�c�v�V �I����߇�!?�I���$7�ܡ�\ód[�#���mH��܁���F��&8�$*����p��w,意�hiḩt�-,6�i0��I�^�,`�Ś7��{~�5Q�R<?OȊc%S���(��D<�Cɓά����*��r���W/�<5�IT���,�y�P�	��4�M^�V˿�׏��e?1�M��BO�P��<qBT}��6Z	|.<��3p�G�2q�Zoݹ�p|UNbUqk��w~m��9`�L�E�E@Ka}��!,��/��p���7���b�� ]��G�{�����O1�R1��
;č��A��&���u³F��?�m	��]��1���ϛ�Gg����돾��IY���ƃ�#J��j�aZ��z"L(�Bz~Fq���i�eU7m��4/��u?��@��H���	D�B��L�����0}*�X"��J�Z���
F��b��N�����@FP'H�fX�DIVTM7L�v\��(N�,/ʪnڮ�i^�m?��~����(N�,/ʪnڮaBRic�0N�n�q^��~?��yd��=#?��j��ߴl�|�`�p���B�XB�+��J�Z���
F��b��N���q ���$
����")�Pit���py|�P$�Her�R��huz��d�Xmv����z@��H���	D�B�Y��`��.�/���L�P���No0�����p����?_ �%R�\�T�5Z�!A1� )�a9��d�Xmv���x}~�	e\H��u�Ӳ]n��)�&�q!=?�8Q��4ˋ�����q��uۏ�s���I���(Ɋ��iَ�A�I��EY�M��8�˺��yݟ� #(�$E3,��$+���e;��a'i�eU7m��/!��m)hrYzb��3�3�S�H`]A�Mx1A���>]���5�j��^F�i�T\?8E|ӕ��_�e��oH{U��Ġ��T�&L�-3�QW�n��Ԥu����M������*
ۥ����D��+�%�j;�b�ͮ�' Y�>
(؟�4��w�]|���/���JW#Ȥ�Zca7�����B'8:{�} ��N�$�8�o��Q|W���� �mOnL�)��Q^!W��CM8�}:N�hۑc&4ٝq�o���_��@�xމ�ɐ��5����
Q�+�t�*\��]�w	�C!�W��^"�yw��n������e�/��R�=�`���*��5b�J����z�MwZ���N	h��PQ�7޴���-�␜�E��g�����C�29��*X����YK�Uk�&D���\�4����]�aw�-�5�&_kD�@�;���I1f�ͫ�{�C�[ŏY}E��xd�S�9ɇ��@�~��$�`�K��P����K}���=�wv��ZR
?P��h{�%���Zdϙ�'�bi��ys-KhO�ü���.�� [4/%0y�]�|�(��珫D���Bˀ(�D��뺹�"�c��fw��8��Ng�P�m���zd�o*Ģj6h�n�i[�}�iY
L�ٱ�E�f�9��eF�8�d�ǣ��O�k�@�p����#B\���'Mo�=�)�
uĐE�B>:��6Qlo�����6��]�Z* �)�
˸k�ֿ����� �/�d?6�
Q���7D��x����'ey:��K��CaM�۽�T&�uf��T����x_�����W�D�){5�PJ7�A�����2��wW�q��o-C��g*�����te�
���j^"�~�4�{;fo-�W�?��*w�W�1�{���|���k�.Q�Z"�
X�-��J��/~������۵�dp��;�<W����4�M�S��/��+�En���ش�0�;��=��N���{�3����!�Q)9]=$}���޵���2����K��Pg(۫PY�)k�揚�f�,�}�eK��fh��#�*�3W��A+�����xv��fe��+�+�,��fTr�~j��)	�[Tn����*��4p��]���W1dz�%�f��5*y�����W	��	@Y�9~����Ë���Ʉ�T5�X�ٳi_�q# �;�����K(�56�9L�FQ�/�R���L��EE&Rz��O�EK��-�Q}Y�kv���
������qsOLc�G�2�h����n⪻� :`�֥��$����ǘ7UѬr���_J�Q!wJ������:6���m�纏h�%��b��4����	�T�M��_�3\j�z��Fs1g�.�c�b��G�d?2RY`o��;�����2u��%�{��^r�)`+�v��۳������7�Fs=���CuC�{�C.�=Z8kV�Ye���`�Ԯ_Y�ꓣUu@�i��R|:��^�y��%�����}.ӀT4O���.]qq�Z-v.w�e��i��������o���:��f/1I|F�b���D�X����CE��?{���U�-Nx���0�w���6�~U�~}.x�����c��f�!�6�x�>�}�WAD<i��3��״)�>�|Qķ��~������X���C�����}���<A�>�������6cT���;k���#7.{7c��8�T����_���4��X��;B*bm���#"""*��RJ)EDDDD����̛?9��7���t3Zk�g�с�hz�������t&ޯw.���Y�N�ˋվ�gH@E���!�6����~b�rݴ���z��]DDDDDDDfffffffVUUUUUUU�i��{z�����6�Nd�PK�uKX1��˜�3spiko/assets/css/font-awesome/fonts/FontAwesome.otfOTTO
� CFF 9s�7���EPAR(�l0OS/2�2z^��`cmapǢT��head���6hhea
��P$hmtxJ+��t
�maxp�P
`name>$#
h
postx FontAwesomeC�������������	�U�6����U�6���2�2���
�",04<>EGMT\_ehmqy}�����������������#)4>HT_lp{������������������
'4=GRYfoy��������������
&,39COVcoz������������"/5;FPUZes}���������������&+16<EOW_hmqv|����������������)04=DPX\aju����������������(,26GYhy���������������%16;>EMUckox��������������				$	5	G	V	g	l	p	v	�	�	�	�	�	�	�	�	�	�	�	�	�




&
*
-
0
3
6
9
<
?
B
F
O
_
c
u
�
�
�
�
�
�
�
�
�
�
�
�
�&5BQafmty�������������������!%)-159=AHLPTX\`dhlptx|������������������������������






%
,
3
7
;
?
C
G
K
O
V
Z
^
b
f
j
n
r
v
z
~
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�	
!%)-159=AEJNRVZ^bfjnrvz~��������������������������������
"&*.26:>BFJNRVZ^bfjnrvz~�����������������������������
"&*.29@GNU\cjqx������������������ '.5<CJQX_fmt{������������������ '.5<kvglassmusicsearchenvelopeheartstarstar_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflagheadphonesvolume_offvolume_downvolume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_heighttext_widthalign_leftalign_centeralign_rightalign_justifylistindent_leftindent_rightfacetime_videopicturepencilmap_markeradjusttinteditsharecheckmovestep_backwardfast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_leftchevron_rightplus_signminus_signremove_signok_signquestion_signinfo_signscreenshotremove_circleok_circleban_circlearrow_leftarrow_rightarrow_uparrow_downshare_altresize_fullresize_smallexclamation_signgiftleaffireeye_openeye_closewarning_signplanecalendarrandomcommentmagnetchevron_upchevron_downretweetshopping_cartfolder_closefolder_openresize_verticalresize_horizontalbar_charttwitter_signfacebook_signcamera_retrokeycogscommentsthumbs_up_altthumbs_down_altstar_halfheart_emptysignoutlinkedin_signpushpinexternal_linksignintrophygithub_signupload_altlemonphonecheck_emptybookmark_emptyphone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificatehand_righthand_lefthand_uphand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilterbriefcasefullscreennotequalinfinitylessequalgrouplinkcloudbeakercutcopypaper_clipsavesign_blankreorderulolstrikethroughunderlinetablemagictruckpinterestpinterest_signgoogle_plus_signgoogle_plusmoneycaret_downcaret_upcaret_leftcaret_rightcolumnssortsort_downsort_upenvelope_altlinkedinundolegaldashboardcomment_altcomments_altboltsitemapumbrellapastelight_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefoodfile_text_altbuildinghospitalambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_downangle_leftangle_rightangle_upangle_downdesktoplaptoptabletmobile_phonecircle_blankquote_leftquote_rightspinnercirclereplygithub_altfolder_close_altfolder_open_altexpand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcodereply_allstar_half_emptylocation_arrowcropcode_forkunlink_279exclamationsuperscriptsubscript_283puzzle_piecemicrophonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchorunlock_altbullseyeellipsis_horizontalellipsis_vertical_303play_signticketminus_sign_altcheck_minuslevel_uplevel_downcheck_signedit_sign_312share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfilefile_textsort_by_alphabet_329sort_by_attributessort_by_attributes_altsort_by_ordersort_by_order_alt_334_335youtube_signyoutubexingxing_signyoutube_playdropboxstackexchangeinstagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_downlong_arrow_uplong_arrow_leftlong_arrow_rightapplewindowsandroidlinuxdribbleskypefoursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629uniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BBuniF2BCuniF2BDuniF2BEuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C6uniF2C7uniF2C8uniF2C9uniF2CAuniF2CBuniF2CCuniF2CDuniF2CEuniF2D0uniF2D1uniF2D2uniF2D3uniF2D4uniF2D5uniF2D6uniF2D7uniF2D8uniF2D9uniF2DAuniF2DBuniF2DCuniF2DDuniF2DEuniF2E0uniF2E1uniF2E2uniF2E3uniF2E4uniF2E5uniF2E6uniF2E7_698uniF2E9uniF2EAuniF2EBuniF2ECuniF2EDuniF2EECopyright Dave Gandy 2016. All rights reserved.FontAwesome�[_�������"+/37;TX_dhn���������������#'Prz�����������.26:@DHM����%*.48@ENUZ^}������/3�������������PW^cgl������8<FJ�������������CUajov{�������			@	J	Z	�	�	�	�	�	�	�	�	�	�	�


&
*
.
:
A
T
m
r
}
�
�
�
�
�
�
�
�
�;BFLTX_cinsz���������� .38@FKPp|�������������

&
E
d
m
z
�
�
�
�
�
�
�
�
�
�
�
�
�
%1=BGNU[e���������
#)-7=CJO]kr����������������):PUblqv|����������",5:BJOTgz���������������$6HZ]hs{�������������
 &,6@JTX`hnt|�����������������
)8@OSX\bhp~�����������������"/4;?FLSW\hmt����������������
',2=HS^elw�����*
�A
�T&������fA�V��
��T���l�f��P��������������z�z����
�P
���4�!
��t������
���
�����q
��q
�bt�&
y}}y�3���3%�3���3�
`z���T~����~���������������4���]
�Tg@Z
�4��
���
������R
��,�T[@��
��<���<4
,
^�2
���%�%�����%�%�����%�%��3�
�T<
�n�h@;�TN
���TI���TN
���C
KFKk�6
?����������J
��������
�
:
K,:
��y}���Tj
5
�/W
K$'�T$����V
L
v
��
�
L
6
f
y}}y�y}����������}y�lz||z%
��1
��
��������K�T���T�Y�=��|�zKz||zKz�|����������N
�
!�5�
�!��
�
�f�f�(
������������G
���
Q
3|�T|�T|��T�
�T�
�T��|zs�
R��������3��&'
'
<
@A
��������G
������������^
���[�=������
�T� /
3
c�-�`�V�}�h�n"����B�v
�����g
�O����G���
�`�E��}n\>l�g
����,�������������������h����h�@�@�h��E�Q��P
�|�z�@z||z�Tz�|���������|�z��z||z�Tz�|�����7
�F
���x�
����3�C�DRRDD��uy
;
�;
���5�!Jb���
h
����
�����5
�/������
�T���T �+
-tzux��u�[��Br�lmy�z�~���5�������q�s�������U��hnnh�hn����������nh���
��t��t��t�T
y}}yKy}���?
j3CC��
��
������5�;��(�=��Z�XW�G/�9�;���/�_M�knm��n9��:Y�I�Ƒ���P�`�q���������������~���d�_�i�r�c�rr�i��i�i����������y��
@�H���-�R
�'
�����
���T� �����1��<t0
��l�n�l||��}_zob^��^�b�z�����������M�<�M�<v��������������	�o�_��}|�|r
���
/�0
���]�}
���]�
���
�E�Q���y�
v�(�
��W���
��T/�T����
���
�j��i�h��{�t���*
�<���<�<���
��<+���B�����������
�����A�S� ����i�^wv�h�������v�i�^����S� �A��E�]�#���'
K(
��D
F�m���3�'!�����%�Ơ���#xM'�nq��w������d����������������o�^�]���
t
x
�1�!���!���������EQQE5������i��������'�Ty�}���������
�tV`�����
��
K��
�T�����
��
��
����t��
kb
K<����z�
X
�@3CC3�@���#P
����n�hQ
�h����������/�:�n�h��
��
���:�
���
���;x��t������u�l�TK�
1���
�0
���8�i8_dd_�~~�x�z�������������������ƅ����y���"�9��O��9�%������9�)��o�'�0�q�i�?�@�h�h�?�@�i�r�����C
�TFKk�Tr
P
��;���;�Y�S<��!��y�o�t�s�{tq�T/�T��g���5��[��
�F
��
��s
��*
�41
���������������������Z�Zr�w�h�)��S
�
-
v�v����z�z�����:
�t�t���t�t���t�t�
1
����7
�Ԏ���8�
����J����n�������������������+����t����m�y�;�
[�8�����
�����������
������hn�>�����~�w�~����~�w�~����������K�
=+�tX
�@]
�@g�Z
�t�V``V��;
��;��`���L����<��� �xra��������
Y�W�
@3�&��
~~�w�~@���������5!�����������}y�vKy�x}z��y����n
������T7rr�c�r����~�g
��hnnh����
���YYG
����P
�����~�����*���*�*���*�*���*�*���*=
�4�����
�4����������)
.@�����(�����[
�h
������������������P
����v��T�~z��$�j�
+�[
��<���<�5�!I
��4���*
�A
C
�7
�r
C
��7
@r
b
�!�6��g������T����E ��
��ˋ�������h�3�/�����{�V=��������������n���������������\�n���]������������9�
��v���������x�{�zz{��X
�����CZ�7)������D
�T���}�y�T8�TC
�T7
�Tr
���]�]��[
1��
��
����������
����7��������U������f�
�@��m���
����� �
��<
�Z�Z�������Z�Z�������{�B
����r�r�����z�{���
+
�T
<�Z��������:�������w��B��������D�$�$�D�����(�=`��h��Z����������TA
�
/��0
�����nh����&�&�����&�&�����&�&�����{��V��v�7�+�4��2�y�qpV``VV`��������J
���Y
M�Y��
}�
���>
��|z��nhyy�rrr�r�ypttp&pt��1��5
t�v�������'
K(
����
�����������;���;�����g
���
$�4��������y���������~�M���Q��������������s����Q�Dnt��y���������������������y���t��
��F�t��e�11e�BB������T�������������2
������
����������r��������I
�F
y����������'�&��K�
��w�_�_�c����������4��4�����4��4�����������p�]��R����
���G�T��TX
��������������x�����]�]��
 83��
���w�rrh�������h�@���;�f�v�eK\xcik�v�ss]tRat�7�+�4���4��7�&&����
7����
�V��(����-
hn�����D�$�$�D�
�,
�}�t��P
��`=��d��b��9�7�B��x����������������������t���3
�������?�L���g�__gg__�g��������������a��
������`�V������������������C3~�w��]������}
���y���6�%�6-��������������	�_�$��cX��~
�TR�V�2�2�V�V�2�2�V������P@��z�y�z����z�
������s�/A����v����������zz{���������������b
�������z����-
�
�����f�t����&
���3�
������
���]�]�EG�xZ�n�yt�P
P
�������������+�+P�,������������ʲ�������,�������
����
_h�m��x�����2
�
������������
����ˋ��
�
�
�d�4����������4
�T[�`�M���`�My}}y�T,�V���;���;�0
���&�&���T��
��3
��
����������t'.
%���@p
�)qt{t��s�o�y�����s�%�$����������33�3v�K�����
�4��4\~�v����
}jii�C�@�@�����x�~�C
��Kw5 !4���wk�z|��|,$P��+�+�
����������-
�������
�
���
�g�s��}���}y������������f����
����#�E���T�@��)W��b�it���
��S
���4X��wmx�yj�h�����o�fZedZdW
f�r
r�syy�'�&� �������������h�@�v� }�������������59������������2I�8��8��!����~			I	�
M
�
�?y���
*
�BP�|88;�l�]5��m����+\��<���b-�G_y����'>U��>c� R �!0!�","^"�#0#�$$q$�$�%%~&5&�'A'�))�*J++�,,m,�,�-�..1.�.�.�/P/�00�192�2�45q5�5�6<6�717x7�8h9�:S;x<<T<�==�=�?�?�@!@�AjA�B�C�D�E�F�G�HJH�IITNN�N�O"OxPPPPP�R-RvR�T�UGVV�V�V�WX1YXZ�[+[�\C]]�]�^�_+_9_G_o_�_�_�_�_�`�aaGb6b�b�cPc�d'd�eNfGf�f�g>g�h�h�i-i�i�j j�kwl%l�m7m�m�m�n$n;nOncn�n�n�n�o"o�o�pp&p>pXqq
q}rIr�s8s:s<s�s�s�t�u�v<wIwhw�xGx�y y�z&{6{u{�||�|�}�~~�~�~���C������M�����9��C�|�����2���8�V�����P���	�c����S�������O����I�������#�|����L���������`������m�
����P�o�������1�����*�x���������4�f�.��H����U�\���1����������'�C�w�����[���W��������(������b�������;������J�{���.�ŝ�Qƭ�fǮ�*����ʛ˗̉͌����|�`ϫ�Zҝ�(���Jտ���׻����p�9����D��9���������g�����t���g��,������q���?�����o�]��1�a�JC���0��g����	$

�N��
F.yq��4����+M�<�� �!>!�";"h"�##�$b%g&D&�''�'�'�'�'�((�)�*"*�+�+�,?,p,�-F-U4>4�5~5�66636>6�7	8"9�9�:-;F;�<9<�='=\=�=�>?Y@RA�B�DEAF�G�H(H�IImKGLL�M^NZO�PxQ@RS%SlS�V�W�X:XRX�X�YY]Y�Z�Z�[+[n[�\d\�]g^Y^�_2_�`5`�a�a�cBdd;dWdvd�e!ff�gog�hNh�ikj@j�k�l�m�n�o�p�qhr�t�ukvYwfx�zV{r|�}/~~�������U�����u�����[�������
�t����J�����~������������������3�J���#���������c�������$���;������������������������������������T��t� �T��T���4P
�4��� c�
��z���.���.Ȯ��h�K�h�<�Nh���-���
��
�����-N�<vhNK�hN�<�h���.���.Nhv<�N��N�vȮ���-���
�����-�hڠ�����v�N����v���4�4���T�
�4�4V``V�T<
�4�4��TA
�4�4M
����0������T���y�u��uyyu��u�y�����������y���?�j�`�,4�G��y�u�~�8������������գ����������YSKkj>h3c�#�
^u�i�����������ƭ��R��������������@2�A
��4
�����F�M�f��fM�Zn�n�w�������
�������������v��
�x
P
 �`�V��������c~ofa�[�!
�Y�������!
 �����
����
�T@
����������b����@�
���s�u�w�#��$���L��>�����������$��#�����������69�JX�"�!�!`V+/E��E+�V������1�R�F
����_r���
�Z���o�
���p�]����������t��
�k�s����u�[��z�tv�U������������Z
�tq���9�
�[��[�9����:�Q��Q��:M�q��k�s����u�[��z�tv�U������������Z
�Z�����J�����
��J����&��	���	��&���a�
�)���|
�����s
�Kw�����
����t�������
��w��4X
��]
��g@�
 �v��
������
�����
�������Y�T3
���Y���`�V��V``V�TV�`���������Գ
���
�T3
������Y�T3
����TV``V�T�;
��Y����TV``V�T�;
�T\�TV``V�T�;
����
��^���y����
�$�%�����
���I�������V��������h�h��������v���j���y�����������������y����
���������
���I���������I���V��������������V������������ ���V��
V��������
�t�tC
KF�t�tFKk�t�t�
�r
�t�t>
��@
�
 ���V��
������
��FKk��r
��@
�
���������
pP
�����t�W�&S�:�aR`S�:�a�)�)�6����z�
�6�)��õ��`�a�;�R`�W�&��t�����P����Q�EEQQE�E�Q��������������Y
���8
��&��8
��&�T�8
�T�&��8
�@�
e
���{
�����z��K���}�z�����������������a�E�V������������" n�m�l�o�L��{�y�ry}{�{O�J�Nl�l~n|�������i��&js�����������^�^�[{m~m�k�No|�y|�rz�{���Kp�i�j�ki\f_i]�����������Q�M�[�����������!��|�����Lz��~��r������Ǒ̒Ȫ���������������'������������f�g�i��������M��������m����������������������������([po����p���H��H�4���
�wO�V��VOcZwE�;����L��1�������H�u
 �v�
��t���������n��n�����t/��
������s������~��o�J�,z�W���`a�G�ah�c��~��v�~�A�������������H���H��������������������
���
���w
!�4��t�4����t��t����4�t��t��
��to
�T
�4�#
�)�v��TV���{�||��||���������N���������g���|��5����p�p����Ty�~}y�:y~�����T����ppur��5��|g�ccn�_��Tz}���������������y�}}z�T���� ���
����T�
�d��gf[wXX[��f���e�6
�
��t�q���T�K�T�����T�T�
�T�T������x�4���4�t8����
��z��T~����~���������������f���9x�4���4�t8��(���������������������������&
��T���
��T�������9�v��T�
����,�T��,�T���������h���X�h���������Ym���}������}c�h��hcqj}����}i�Vg�v��
�����w�����x�r�w�wvt��L��������������#
������P
���
����!�S�Y��
�y�l�D�&�������������������)�'C�3�$
��Y4����K
�Ti
������t�}�y�T|��}�zcesd�,.�9/�F����-���
1�T5
�T��
����"�Q>�W�����������������
����"�S�X�������5����z�|��[������������,�9�F��Z3����
�Ti
�������9
�����"��!
��!
�
�T�����������@�
���
��G�����
���v��T�i
���T����T�
�T��+�3
k�T���^�^�����^�^���Tk��c�����v
]�b�t�k�r
�������Kg
_�=��1ln��o����1�"�-SK�q~n}s{x}zs�z.�������;�3�n� �L��������� �v��T��T��V��T���/���W�W���/��!�(�Z�Mj���:�kD
��L
k+8V=_G�xɁ��������������H�KxMG�_8�+��������M������������r�������r����N�-������hnog?���
�
��?g�o���������� Gw���_
r����N�-������hnog?���
�
��?g�o�������������_��Q�P��o�x��}��y�C���Q�(Csyrp}t{xo^�������P��Q�_����K�����
��n�{�}�������|�z�x�8�
�S�`�`*�S�8�
qxozo||�{�}�s}|{n.��������
�K���������������
�������������
��
���
�x
��
�����������
����
���������
��
���� ����0m�� 8����
����������������v�v�ʪ�ʪ����ꪫ����������ʪ��骫������k��i�hvv�v�i��j�i����ʌ�����������
�����1�
����
w�������
����ʓ
����ʓ
������1�Y�������1�����������������������Q�
kl�l�������ʙ
�����F?������i��j�ivv�v�i��i�j����z
�)z
����_�^�X*�D�t��cX��_�^�s�jii}jtt�j�jh��s����������W
 m���
����g��|�v�t��y�w�x���og�`vf�/TF��w�����������������.��������q��ra�\��zz��z������aM{tsw�x�y�z�z�Vc,sj|wu��t�{�t�v�\h2p]�yx}�x�z�u�x�Wi:mY{pvz�s��~�{�s�w�w}e�_�^#��:��/�����������r�����8����"������ �����
�����
�������������4<
�4���K��4�"K���m�e��,�,�eB�V�4�
��K"44"�4k�t�4�:�4�t>
�)����T���3���3�3���3�3���3�3���3�T�4�tX��r=�E��E=UIrX��t����
tK��

�T��/
 ��,�Q�����i�ep�%�/��,�xx�x((��(���#�Ɏ���������	w�����������R��'������V��b���gfV�p��o�q�qq�������{����������\�/�j�}�}���Y�h�^��?�DF�G@�E�a�t������V@���h����a�%�-n�<����5���s��c���������sŔ�O��������5���*��V�JM���(0�x[[��_}�~􊢋��������%����������;�AH�W�{�'Q�bgf��g���
��F�I��G���������f�=��R��!��G������v�^]�^����z����8����'��n�\��PuH�#hPMqJ�K{�-�!ߜv���`�������Њ�����xġ���������M�M�N�������[�����������Đơ�ϦԖУ�������!!�!�����x$ǁΓ�m`r�;�n�i~G�h�ftnOlF�Kw�z6���������-�������������;�������p��6p�_�ph��6hp�o���;_}oh���6�h������6���}�_�����
�Ǐ��\����������|��}�Cy�	�^��^�^L���uZ�
����������������������q�����m����ept�c��CD�C��m����������
ǐ��]����������|��z��b|�|}3��mrS�
�6��6��7W��,��������
�"�����������������m����~yv}u�������������]� y�����]h��vp|�zww�z�v�����{����y{ ��������������|��p��hm
��R�<�0
���R�<P
0
��R��<�
i
m
��R�<�0
�������R�<�i
m
��1�<�0
��1�<P
0
��1��<�
i
m
��H
��H
��H
��������t�#���#����@�������w
��t\
�
�����������������������>
t�Tdw
��T���i���������F��y
�������������td��v�0��{�t������z{�~�'�&�9*
�T��T�3���3�T&�:�'�'~����
�)��T�T�������Tn����4�4�����4�4����Tt����|z�@���
���4kX
���S
�@g@�
m���� �
�����D����������������~��������������������~U�T����4�4�����������~�sj�iij}st�:�9�4�4�:�:�W
��
�
��
���{
����
�
N�L�T���_��p����������’��x���J
������ 
�����v�����P����P���������Ϡ������������H�G�w�w�srP��
�m�X�X�j��:���b�kkcv`~:���j��X;`Y;l-&P���y�y���Q
�����4����������S�+����,�,������|�������|�������������������������~���KK�������X����������������������������fc�c��Q+�4�4�4�����4�4�0�0����f��,�,f�M�ff//������ ���
��g���t�������}���{|y~w������j�X������������������|�z����h
"��Q�����2��{�z�����t�{tq�T�4� 7����\�3�u������������������l�z��*���� ��p�4�Tq�t��������������
 ���
�Jw���
���t����������������KK�������3CC��
��
���������������������G
���������������fc�c��Q�{������k���k�Y�kk������k�Y�kk��kk�Y�k�B�B�k��������������
����C
��
�
�����
�����
���-
�4����=�����
1���
��
�����
�������gs���v���������Z�v��Z� ���S���Z�v�Z�Z��Z�Z�r����Z�����h������l���vl�r|h��h�|��e
P
@g
���
��@��g
���
��i
e
P
@� �����
�Z�w�Z�Z�2�Z�Zr�w�h�Z�
���P
����
�Z�w�
�Z�
����������
�@�w�}����rr�w�������r�Z�Z����
�
���
�%L�.�����2�:�:��z�z��z�z�r�����:�:�2���������%L���'�2�z�z��:�:�����������:�:�
�z�z�������������
����p��������h
��H���� 
Z�������
��hn�����
���� 
e
}�2z�z11z���I�I�I�I{�zzz��1�����������I�I�I�I�����������������
���I�I�I�I��������1��zzz�{�I�I�I�I��{z��v 
�P
�����������z�z{z�����������������M
�v�v�,�+�M
�1��zz���6��
����T���
��4y}}y�Ty}���T��
�T���4�,#Q?`\pnZt�������ҫȧ����P�Kgjzx}wy\O������������~������#��7�@�T��K��T 
��t��t��t�4�
���4:
�T��
��+y}���4j
�����4��y}}y�Ty}���4��
�4��4 
��
����`�$���$`����$���`�$���
���$���$�����$`����$�<���Tg
�#Z�k�=�=�k��#��#�kZ�=�=Z�k�#<�#��k�=�=�kZ�#��#�k��=�=��k�#i
���]�������&�&�
�����
�&�&�������&�&�������&�&�k�K#
���g�2%�������'�'�%%������
�:�:�!8#
��t��
 ���������%��5�����6�&��{��S�j�����������jQ��h�[�=���<�<���=�>���
��>Kw��P
��^�C�T����������}�s�@��sk�iij}ss��t�v
j�t�� ��
��������}�s������TӸ��Kw������~�s����sj�iik}ss@@st��j�t�����TC^OG�G�O��T����s�v
j�s�@t���E��������� @w�K�������sj�iij~st��s�v
k�s�@s���������TC�^���Ǹ��T����s����������� @��K�T��@��sj�iij}tt�����T�
��
�T�����tj�iij}tsA@s�v
j�t�� t������ �W
��@��j{�����������t��,Q��a!���� �K��t�k�v��������������������q���C�t���
�����
e
���t�����
�������ԛ
��������4���
���*
�<���<�<���
��<+��!y}|z��
|���R�����T��|y��.}�|�y�Mx|��z������������p����������������
��������4�Hhnzh�Thn����h�T��T�hS�\��V`��f��y~���5���V``V�V��5�������`V���R�L����'�HMoZd��9��9�dM�H�''��e
�L(
��$�4���A
�4�u
��v��߈���
���/J�7�I[^_[Z_~}�yhn����������{�x�(���H���Z�f���7p\XT���H�aG��-���w��h�h�i�w�V�Q�Z:#v���z]��l���`���L{�l��{��,�+������\�^���˒�����1
��t�4C
��FKk@r
�������C��������N�.E���Ti����C�������k�h����T�������$�T�$������?���L������L���?�'���0�cGv=<���
v�c��0;���'�d�quuq�--��]
��������L��a������a��Lv�trr�t�v��L��a������`��L�������v���$�T�$���]�D�'�#�5�'���0�cGv=<�#��7���quuq�-.��]
���S������v-�y����U*�PN�O���_��Z~w�rsr�s�w��H�7�*�V3�ziU{������Q��������g�
�e��g�
�������S����������A��:�N�T����~�=�����L��=�&��0�����E��rA�������u�X��������������������5y}|y��
}���R����|y�R��
~�|�y�Mx|��z�]�����������p����������k�o�u`�\\`qbu����ud�[�dd��s�P
���������u����z``K�4K++�4�4�-�3���������������������������V�������
+*���������������Q�Q���������������듔����V�V�������������������������땓�����4�L�5�5���4K� �
�������4��
�˫��4�4��˫����
�����
�4�������������4����T�t��
�T�t��
�T�t���4�������4��K�
���
�G���t��������4���
������t�K�
���
�G�������q
��q
�bt��������.���"&��F�t8�t�+�
�
��������������+K�
�
Qc-b.T5���M�K����Tz�|������������sRrQnS�SL0��t8�t��������ĤŨ��������Ty�}���v�0����%�������%�����_��I�b�	\�;COLD|yz|�r�����s�{���������A��0����������%����e
P
�T�%�K�i�``�i��K��%�,����Q�Q����,����g
��
�/�����g
��
�/������
�a����r��z�y��z�yrr�b�r�:�9�r�������������
�:�9�k��
�l����r��:�9�����������:�9rr�b�r�z�y�
�z�y�)��
�����������4�T��������T@��������y�xxy�}�����||�g
�T�4�4r�d��Tr
��4g
�T�4�4���f�TF������4�T��������TB
|�|����}���������������� ��
��
�����p��Q�EEQQEE�Q����Q�EEQQEE�Q������g
�O����H���
�`�E��{l^@l�g
����,�������������h����� �v��
��4�
�4�
��&���Q�)�WW���X�g��3�
UGQ�� {y|ss^������
����� ��������
���
�������� ��/�����
�����T�����
�
�����
����1�4����=�����
1����i
�������
����
����
�����
��m����}
����������������������t����������������������������2o`gfbn��������h������.���������/�>�p�����������+�>�������|����R�i���������/8�C�����������rb�������{Zja_q���������V �O���m�|������
�P�C�������������4��4�T%V``V��
����L
�t�e�����P
����
���������T������
�����
�h���P
�
���T��T��T��T����
no��q�q�on��
�������������T�����f������t//tq�:�v++��������n�+�*�m�����m�*�+�n������3�3�V����y��p�p��v��-�����)m�v�v����
����
��>��{
����ERQDEQ��c
��ERQDEQ������QE��9���}��,����~��������������
�q������������
2s�r�q�t�-��}�}�N}�}�~Z�T�Yp�r�r~�������n��
pw�����������e�f�c~r�r�q�/s~��|~�M}�~���,s�o�p�pndmfne�����n�
 �s�����������
�������-}�����N����������������1��������������������k�m�o��������/�����������
`
��
>�a�����
B`
���
�aN����t������y���������6��$�7m��F��
�����d��I�.�3�W�W��-
��hn����
��fo1\��s�\ko��{�y�xx�<^��
�
�����U/�Sk��W���?Ÿ��������j�-����@�	�
+6�	����OG��o���
�	��D�ɝ��·�l��Z'�#ik}ts')��2OKebh`i_��mdG1dq��h�����W���m��]��a�"W����Y����������������
V��F�� �����e��
�G�.�3�O�׈����-
7�hn����
��GNOH���	�6�
�	t@�K̬�-*�o�s�r��^��?<kO����篞������
�O���Y�	O�x�x�y�t�R]׈s�sv�k�c\k}\vsO����1f��O��z�k������O��~�r�������v�d�����O����J��.�eY�$�n:mo��O�h������q�1�d�_�`�c�Jl�2�)t��}�����Ǐ���y�m��D׈��
�	���83�������v���b��@�K�M�>����������M�>�K���R�4�)�<�5M��n����ɿ�<�5�)�4�RP����
���p�]����������o �u���d�r����
�T�������~ϧ\
�ԕ�T�3���3���~ϧ�4���
����J�������{��{���{������J�{�J�� IYU:��=Y��Ͽ��ڼWG��� ��j�8Ke`bz�|�vw��{���	�̋�{&������,�(�i�"���z ���
�����4�t�4��
�T,
L
�T�4���8��0�����Q�E�EQQEE�Q������0�8.�(�y{���������������w�Ai
����
��
t���
��X�Ti�TQ��g
��B
�4�D�D� � G
��U� � �D�D��
�����t����
���*
��^�Gof��������Tp
��^�Go�
��& ���
�������8�^�!�Y������1���/���)���Yb���1��+���3
���X
��]
+��V``V��R�z�f��|�X�m�}�[�YKKkK+++K+>��7��+�++k��˙����������̚�z�f�R����[�
�/��`����������������������������������o��������������������������b���������������������������t��������������������������@��������������������������������������������������������������������������v�'�T�_Gq���������z�y������Y�w�j�����o�`�)I��b`�__`�b�)�`~oD�W�~jgw^S�X�_�~|~~t�jn~@t^�o�Y��Y�k��|�P��/�"���`�c}�{q��_�'�T�v�Q
���y�y�����t  ���
�����
�?ApDU8��8D��p�?�6
�\����x��T�T�z�{{z�~�T�T�K
���T���T���������������
�1� ��!���8�� 2 �Z���Z���.n8��2����Y\uZQ m{���������r�������^�-Ʒ֫Ϧ����� ��[�����������@�{�wx^�^]U�p�[�c��\��ˀ�t�� ���������b�de�e�	����@�$fb%� <l6fGW���G4���� 9�<:]ua\Q ,�2�������n��������{����
t���������Z�w�R�Q�S��qk�lN2�IUph��s�J��&�J}�r����I���m�{�j�l�kā�u�v������gE{|jZvkSr^kPxOH.�7�6�N�P�T�>�a�a�>"�i�p�ul��e��Ǟ����ë�����ѯ�����
��
�������X�����4*
���(�����3��&���
�����
���&�;�*2�26�;�*���������qX�sIm�[FHN��M�o����;�ot�p��л�ͩ�������������&�o�x�tt_�Jdw�r�y��0�A���y������u���{�&A�y���������  �v�(T��QrLyJ�γ�ʣ�MfEpB}�P7�.�G�$�%�Fr�r�s�������3�Xo[{TO��(�QV�Y�`������1���(m�pn�nvw��w���.�"�4��X�+pr��q/�#�>V�K�����?�����ʹ�ķ�����������S��p.���v�/����n�������������������Q���11��'�A������<������*
�<���<x��p����%�����������j]^��h�Y��E�֊�ׅ�B�
�����������?��G��ߩϼ���qٵ�˟�'(���͔��͂z���'��w�!q=�w�U�G7���HJ�?x�s�]C$�8rw�s�����p�����+�q���������������������������i�������������������������^�������������������������a�������������������������r������������������������ʆ������������������ŕ������������������������ �v��T���T���T��T�$�T�4���\+�T�
��/�i
�)����������*
��l
@Z
�����@�G�t���t��
���
������ ��������V��
��Tn���z�i.�]�,�+�+�,�]�i�����{{���}�zy�j�p����n�������j��r����������������y��'�����������'������{{�~�{y�#j�o����i�c�c���i��q��#���������������4���
�����4�4��������������4��@�
���
��G���2�t�1�v���������~z��1�v�F�4������Y���tH�A��AHZEt�Y���r�tp��g��
���
�2
����
�4�T��t��t]
�Tg�E�u�F�F�6����!�1��=۴�����n���_�F�(���
�R�D������\�����������������\����D����
��V���T����$�4�[
�
�.���G�^������S������S�����G�^�J�(��@�t�w�T�3�f������V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!���
�T�e
`�����������w�r��P���N����x�y�p�r��NV[�P��w�r�q�q�yx����y�p�r�r�ww�r[�P�N�r�p�yxxy�p�r��N�P[r�ww�r�r�p�y����xy�p�r�r�w���P[V�N�r�p�y�x�����N���P�r�w������������}�����������������P�NV������������V�N�P�����������x��,���4���.����o����U
w�t��FPPF���s�\k�{o��y�xx�>\��V�?��Ck������������������������w���k+�+JL����OG����
�	��
������=��3��`�?.Qm\ibgbjnG5[��ho��������fu�e�l��Y�������=� ��	� �,���.�G�c��4���n8`��X�C�>��[�B��
n������a�tĹ�����o8i�x���������FP��������v8�+��֫ঽ�t��t�t�u�V�]�]B��1�����������
o8��[G�ng�i�m��Q`�?��3�4�=_�`�b�
��
�	�� ��	� �=�a�c�fn��}�|}K�K�Y�X���S��#�L���n8�������
�
���4���.����B
�`�K����P�V��?�Ck���1�B�]�]�V�v�u�u�t����������+��������`��PF���`�������xi�������P��ta�������
�?����M���Q��YK�K}|��}�Pf�c�a��=� �	�� ��	�
��
�b`�_�=4��3��?`�Q�m�i�g�`�n�G[����
��
��ʰ�����
���.�G�c��4���B
��t���ZB�
��xx��yatRt]ss��vikcx\j_��q����FPPFGO����LJ+�+k����������������������ϰ�k�p�C��>�[���������H�������k�f�u�f������
���h��[5Gjnbgbi\m.Q�?`��3��<������
��	�
�� �	�� �p�=������ϰ������ˠ�������S���L���������H���
���Q�Q���{zH��
00��
����0������,
��{zz�{�Q�Q�����
� 
���
����X���00�����{�zXz{��0�����������Q�Q�������Q�Q���N�����0��{z��� 
�����������00{���Q�Q��p���Q�Q��
�������,
������{z�����
���������P�������00��
�������M
�Q�Q��q���Q�Q�,
��{z�����
�����%�������������Q�4�.���������&����E��݂���������v����'�����*
�<���<�<���
��<+�'����������������~��'���������������|iyz���r|���������x|��~t��}�uz��������������������������~�}����t���yzr����j����hv�������������~|�����'����{���|����������������~�oz|������������'���������r}s�pw�h����������������������jh�y�~�|��������������������}}��|x}�o���w������u����x�����������z�����p���}�o�~�v���q�y���v�}��}�{�o�����������y�~�t�����c�����u����������������y�u�u~�������x�����������r���}�������|�~���g���w������������ɛ����������|����������������c���������x|�����������������������|����������������������������������v���������������'݀���������������t���|�������$���|����~����������������d����������+������|������~��������v���r����y��������s~�݇�����uw�}�{�~|�G�����|��}}x�z���ut�����������������l��������݇�������|���������~���|�r�������������������������k��������|��������������������'�����|}�����y����������������������~���������z�{�������|������}�{����x����|�����sv��~�v�z�y�z�z����������y���������'���7�����������������������������������������������������������}�r~�����������w�������������������������w������������/*�G�s �k�i��n
��8��"�W��=�=s�v
j�t����
�>�>��G��ww�|�&xj�U��t���=�����������N,�B[
��Q�?��F������������������
��������������
�������������������t��{���t�q��������z�4��~����
�z������������v��
�x
��
�����������4�4B
���
�4�4�t�
���t�������X
����S
�{e
�w�$�$����
�Tx
�Tqt{s��t�o�y�$�$���������$�$��������t�q�T5
�T�p
�$�$����������
y�o�t�s�{tq�T/�T���
���������$�$�K
�T0
�T�
�$�$��������)�
����W�n�������|`_�]�#�v����:��[���������vV��i���\�\��i��V��v�6�*�4���4��6���e�T�a�
��u܎���v#6�]_��`�u�uu0n1W@��^�;������e ��U�U`�4�U�5�T���T��T�T`�4�S�2�SB�����zyr�rrr��y�b�cy���������j��d�M
�d�j���������y��d�d�y�sq�S�Umtvw�jo�XV``VX�o�jvwt�nrr��yB�d�d�k������y��b�c�y�rr��U�n�T��d�d�UA�?<AkST3��«���n�U��b�c,��UB�>�?BnUU�'�&UVlA?>�C�T�d�dU��m��ի���3STk@<�?�B�U�b�cT��m�,��Ԩ���'�&������)�����J��,�>��������
KQtd_�O>�K��j�
}�|�}�,D!�/�G����
 ���
�������#�����
�#�����@�*�!�
�!��@���i����#��#f�l���A�\���4�v��4����4��4��3�T�3���o@�T�M��K���"��������~�x��������������F��͇�������������F���6)�-1?pWSRWn?�=�%�(�EU��m�þ����������B��B�������_X�S-(mU6�EF(�%�=�?�VX��p�O�������򎬇������������F������������˞���������y��\�&sqb]�NE��N��e����������wd��G�&NS6�}dNDwO�]b��qNñ����џ���s��Se&�G�F�������������������\}�w~vt���:�4+q����������������4�����C�K�t������ې������E����,��
����� ��aV�����4dYztd���P\�4VAlff�,�,fflAV�4<
�����:�\���i�������?��������fflAV������4M
�4��4������4�0M
�4������������������|�+�f�L�����dU�S�55�T�T�d�.�.�������Ġ���
�.�.|�����������|�����e�WT6LL6UV��e����[�o���!���"��m\�������������
����B)�%�h�;�=�h&�)�C����M��e��0���0���������
�����������4\���
�4����4<
��A
�4��{}������~�bx����4��T�
���
�T�G���k�m�e������eB�V�4V``V��Te
P
�� ��
�&
�P
�T��������
�w�Vn���5�!Jt�4C
��
7
�F
����nt�4C
��
7
�F
�T�
��
7
�F
�����'��)�����������h��	�$�J��7�_�H����,�� �� �����`djXg]�S��ˈScfzheb��pR3� ^��v������" O���m��(�;�.?GdFj�P�������yi7�vo�My�y�y����4�
�������(!���?�������:�:: @(��t���
�T�
�@��
�Tz�|���>
�������$����@1
�i���{p�k�g�G�R�[��"�.�_�_�u��š�����ȟ���mN��g�G�&��߅���������Ȃ�������A�P�_��AT�e�A�a6226^%�O�L�J�n�p�s�����o�s�x�Z�WS]{`lcmcbnXzyY\�a\^��cb�h�n�n�p�s���z�f�%�_w�h�Y�+�W�~������������ cv�͉��Β���������������������И���������������1�5��h���v�9��U�!݉�}�t�{�D���$�<�T�;�J�Y�Y�b�ll��|����ԡǩ������������������+�}������������������������������������y�L�J�G��a�7�5�����t�|�m�`�P���v���G#�?}Z�hzdqcwuvltlsj{h�xPK�GQP��Ob�k�t�l�{·�}����y����ُ���������������ˌ��|n�a`�Z�U���TS�R{S��-�de�h}~��~�3U��������:
�@�4
u
�R
 ���`
�����
���4������y}}y��y}���T��������}y�T����
�����
�5���X
��]
��g@�
 &e�e��O ������ �.�����Z�Z�{�zz{������{zz�{��Z�Z�����
�����������R�%
���O�XO�X�XO�XO�X�X�X��r�6�%
�v�2�%
�������	
��>
�
����������W�W������2�����
����g
��5
�T�4g[wrr��Z�ZTT�<D��Aٕ���!���
��!���
�ف����1�;�������)�)�����P��P
�+�<���<��Q��������̙������r��ԋ����ѭVLE^"t*9x�I��&�O�q�=���b�}�%�B�VH�\�f�z���w�}�i�~�w{�z� �Y�
��n�L������U�i�w��<�u��8=��q^�E�i�{PjPn]v�Ӏ��
���)�9��
�(�(�����N����K�‚��������s��Ӌ����ЬWMF_#t+:x�I��$�M�o�;���`�z�$�?�TH�]�f�{���x�}�i�~�x{�z�!�Y���l�J�������S�f�u���:�s��9>��p_�C�i�v9U:j\�i�C���eM�#&�nY�A� �������,�Ó�m�����x�wr��� ��.������f�f�������F�f���������H����4 z��e�����`�c�����`�c���#�NW��[�S���9�Z��)���)�)���)�;�����7����e�e�f�e�e�f�e�e�f�e�e�)���4������
������
�������{r|�sv>��(���T�+����J��~�f�f��~�J�J��~�f�f��~�J�����������K�
�
�����g
�5
��/{i
����W�Ԃ
�����W��~
�����������
�T�T�{z�4�T�T��
�������������T�T���
�T�T�
 m�
������F8�4�
����������
�����X
��l
@�
�@w�W�T�
�~
�K��W�T�
�@w�W��~
��t�0��mjingr�;��<��7�
M7#?����#��7�7��<��:�f�i�m����
���B�4�@ V7)0��[�/��1��/�^�/�������/��1��0������6���;�$�����p��#��s�����E��AA*,�?���������m��6�"�mp�F=(G`���$����.�����������ƣ�����0�����������п�����
����D�&�l&�y�P�������������sj�iel{pp�������������m��o��������������y��,�,�yr�rUg[giyx�tq]�u�m���~~���������~~����mu�]qt�yxgi[gUr�r�y�,�,�V�����������o�m���������������pp{lei�j�t���t�������W
�m�
�b��
G�T�TG�@�u�^�9v:p%"M$�%�M�����ڑ�����������h�i���G��G�T�TG��T�����&�&���@��;�$y����z������%��:�@������b���
���%��������%�����
��v�������
�T������D�d�d���D��WX��YV�_lw}v~v��*���A���d���D����������y����o�6��$�7���������	�^���~������ )�?�c������w�r���vy~x��]�͈}�|�������������*�Y���v�v�������������������������T�����
p{���3
+�T�
���T�A
��\���
��<
�T���
�T+�
��\+�T���T+�
��\+�T���T+�
 m �4���
��X�vv�uuv��v��HNNHHN��)
��	�	���	�	�����������1��j��
��j�/������
������������������������������eU������>
���k�)���������$��1
��
�����������
����
��4<
�4�����T�
��
�T�GK���4�������i��m�e��,�,���~���\��-���4�:����4� �#��x�:�4����t�T���.F�
��pF�
F
�4KqHaZxuuvwtD6O'���x��O�D�w�u�x�a�q���\�_��I�I�_��\������D�������D��$�2�?��?� � nzykjs�t�z{z�tsj�m�y�}�z{�J�l�Q��e��űťž�̛������������{�������y�n�������׭������
�0���|�z���T�|�����������������������T`>
�t���7
`�Tz�|��)��t������������������������������������t��F
�T�G��t����t�
�)�������4z}|y�t����T�
��ty}��������������������������������
������b
������t�T�4���T����N�[c�����G�=B�^�60�A�Q�EEQQE�AK����u��I7#e  #��7up�jj�_�p�B:��
ܾ�ئ�_�������Wc��[�|��a�
��m��
��w�����������������7�E�p��{
��m��;�4�U��3������ua�[�
�RҢ�����&�{
�&������
�R�D[apdu������-
���U�;�4�mp��h�]�@��@�h���֦������
���t��
�t�����������K�}��������������
K��Q��$�4�[
�
����(��@�t�w�T�3�f�����V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!���
�T��)���T��T��T���
K����5!�����
�K���h���h��5
�t��
�T�Q���
���
��_
����4��n�hhnnh�4��n�hhnnh�:�B�p����
��צ������g
���U
��k�t��E�Q������9��
���w
!�4���4>�Ti�T(
�t�t�T1
�Ti���T1
�Ti�����9����9
�������t"��!
���N
���T�|�zKz||zKz�|����������I���T�|�zKz||zKz�|�����������|�zKz||zKz�|����������6F
����^P
�
��@g
�5
��/�i
���������
��� �����U��t"��!
���6D>
�����^�
��k<
�TA
���������K�
�+�K�
���
�G+���

T�G���E���g
���p�\�T�
�����/�i
�)����������������������>
G�����������W�W���������2�����G��4��
�t�t���T������1��5
��4hZwrr���Z�ZrrwZh�4�
��!���"�"��
��
�"��
�Ti
���������
�4��
��4�����4����
�t�t�����T����t�������k�}�����4��4�����
k���Q�)���T��k��k����������������t�K�����
+�4Kk�4�4�T�t+kk�T�k���Ts��Ts��kk�T�k���T�t�4�4Kk��4�
F������t����ˋ�� �v���
�����|g�>DR������������T��T��˫k�T�Tk��tk��K���h�@�@�h������T�T�����Tp�����p�q�����q����4 ����
���p��������h
�����
�� ��z��Z��4�
�����
���k
��
�����
���k
��z��Z����
��
���!�Z���tL�L���A�Z���4K
�K
���z�����t���k
�
�����
���z�������
YY�������������
�����������Y�
���������L���������K
�)�d
��{�����
����|z�����X
��]
��g��4KGf�g
��0
�K�����
�)��+�TK���x
����
�^�4����Z
�T���]
�Tgk��F
��G�T��Ԁ
`�t���4+V�`�@�Ӷ����+�r
������S
��
�>
n
��4��Ԁ
�T�
��q��]
��g���
����4���������d�_gg_��
�d�4����
�T�
���G�T�T���[
�r
�������
��E�Q��������9 �v�
�
����ԫ��� �����
�������T���T��Y��������w����N�������T��t���"�R�DEQRDE�Q��������bB�T�TB����Q�EhE�Q���X�x�C�3p
3�C�Bc
���B��T��
���
���b�&��'&��e
p����e
P
� 
��@*�j{�4���a����,���t���
�����{z�4�����
���t�C��8�qb�b�b�{�y{x�{��������������K�  ����t�4��
�4�t����_��_�4���\���<�������-��7����������������ʗ��7��-�t�D�&c�+�������z�i��0&H.��0,�-##�s&�&�2iGz@@R�Q�T+�c��&����&����t������������
� ��������x
P
�tV``V��
V`���T�^
�T��
�T��T�
�4�
��&���Q�)�����������F������|�~������aiEjV��ul�������������Ѭ������o���70 XDQ������^
���
�4���7������mG�G�T�4�}
���
��&���������������������
�T�n�a��x�j�i�gx�i j(C��(�j��g�j�i�xh�i�5��'��=�=�'��5����G8
m�T�i
�n���5Y�'��=�=�'��5Y�i�h��������������C ��i�x������������8
�����
�Tg
��
�0
���T8
�)��TK���4�T��T������T:
�T�Tx�
�T�T4
��[�T�T��T�T�����KG����xP�
��
���x��
���
���y�y����
����p<�
Z��Q
�)����
��������������������I
����t�+�����t�
�������I
���4��!���+�������
�������I
��������r@I
��������0��I
��������I
���p%I
���0�0
����+�����t�
��$��������
��h������
�������q��������^��jM�P�di��oo�� '��.��<WN�����2���XV�u������
������^v
~\�b�u�D
���
��
^�z�xvu�z~�L������^�?
ޠ����������˜�0���������������$]�U�M��'����T�6���"W�
N�Q��(���Y��cjM�P�im��p�P~�~�~�����+�����r������+�UQ��������t�b�3���L�?0X�3>���X�������
�Q����v
\�b�u�D
�J�
���
�zxvu�z�L����J����?
����� ���s����
��]R�T1
�T�*�)�\�&���������Y��
�f�f��f�f���������z�M�{�y��z�	���z�y���z�������	�%��
��@��tJ�j��Z�!�!�3�!�"��
�
��$y�f�+�/���Y������
���kz�X�,���Hn���|�}���������������1��d�t���Z\�I����<P��W�3�֩Ó��W�W���}�O�����u�[�}z�y�yy}p~�u�[��BO�}a�`���5��_��q�������U���U������������5���������t��y�����w��{�z�������q~}m�nn��w����m�r�������������� ��
������������������4R�t�����������~�w�~������tT
�t�t?�t����t��t�t6
��������T���T����
�
�
��V``V�V`�����
`V���
D�M�j��e!_�NPZ|UzXr���Ĭ����D�M�j���RjdMD!�5�
�d�R��쿣�3��>���ێ��Ĭ��� ��TPv�4�T��T��T���T��T{��K����=b����u�t���5����m�U����z�x�w�y�������y�sq�ggK�g�������y�w�x�z{����T��m��Ө���'�&�������h�~�z�����UB�>>CnUU�'�&TUmC>>�C�T���z�~�{���������k������y���������
7�5��������u�+�=������
�T������Tg
K���%.�Khnnh��<��K�T/��i
���v�P�����K�t/�
�����o�h��honh����h��n���
���������;�m�g�<��&S�3������r�<��
����;�|��#����&�%6Nkj�k
�����hW�
x�}�p�������;�F�&���<U�3������r�<��
�Y�;�|��$����&�%6Nli�k
�����hW�
y�|�p���)������
�������9�I�v]�Y��fh{os���je�V�]]��n���������������w� �v�v���K�u�Kp��J�Q��T*Fhl��tn����ݖݘ����Ǝ������q�DA�������5�%!*Q���TFhulstnl_�a99��:��P���p���������������~�݀������������*�������P���k�9�o������������k��թ������������m��
p�
����[
�S����D
�
�����D��
�D�U
���D�$�$�D����m����8������������?�C�I������9��
�.�.��9�~���������`�n��
���[
AE��N����������������^�
��U
�������T��T����%�� 7;L9\Xpq�T��T��g
��5
���9�������������$�����9 �
���
�
#���
�������4�����@n
������������������T+}��~|��������C�3p
k�n�r�]J'�V��{k�e�{��������������o�h���c-��#���<���/���&��|�~���T+���������������� �t`�`����
�t���{�y��S;����RQPIOD�w�������t���{���K���������������6��������K��������t�������������������q����v�M�����������n�;��<����-��������=��v��v�k�h�F�����8����������
�!�!�f
�Z�Z�3�Z�Z�g�%�E
������E
���! 
��������
�a�!�f
%��3������3��g�Z�Z�E
�� 
Z��������!�f
������f
%�3�Z�Z�g�Z�Z�E
���! 
Z�����������f
�Z�Z�3���g������g�%�E
��X 
�����F�I�C�������?�6��I�Y����(�����u���C�� �XV�Y���x��\���������b��6��6�������S�������*
P���e�S�GQ���G��z�5�:�5��'��D���N��������5���T�T��(���TK��K�T���(�Tn
��4R��~����~���'1�
�A3�Zp��T4��
�T�7׷���
b
,�9�_�7�T5
��2
�T��Z��A�1�
�����������~���'��~�������������Q�1���
������
�Q�1�.�����
ꗐ������v@�T�i
���T�����t���2
�@�$��k���\�����9
��
���e�
���
�
���y�y���Q
�a
�U�)
����������_
���T_
���T_
�������_
�T_
�T_
��s������s����
G��-�������
���|�a�9�9�a�z�~���������z����������������
���|�3���3�z�}���������z�9�9������S e
���*
�<���<�<���
��<+�����������������w���������������������vttvw���_������������������������������+������3���������s�����E
�������Z���@@��@�@֋������Y�9�ZYh��YY�9�Z������@�@��@@���Z݋���� Z���������
������
�� ���t
���
��
�tR��1
���
�~���������*
��Q������
���9����{���s�Y�sn��{x�p�ut��}��T���������4�T���~�������T7��T������������
���������}���4�T��������Tru|u��t�p�x���n��������������u�r�T���}�yZ�n��n�A���f
�����3���g�g�g�g�g�g�%�E
���� �������������(�@WWS�+���������}����������}���������������������F�������������������簰ɋ�f�,�,�f�Mff���� ����z������z�����q{tt������z{����
�����f
%�3������
x�����������t�
�t���� ��4��4�����4���G{�z�����s�{���4�O!mFNB9x�*����}�}~��������������5�W�]������4����������x����E
�G�� x���������t��T�������c��������
���##
�y����u�s�su~u��v�q�x��Tz�����������T��������QO�y�7����}���T�x�vvx�z��T}x�q�vu��~����������O������z��T��x�q�v�u�~us�s�u���������T��������T�t:
�T,�T[�T��}ys���x���E�F���v��d�y�������������Ds4�>�$�0K��������������������_�������|�������������������h�)�!�<��z���������3��������������5�#�����N��2)(
�$��h�e�kI��
�z�|�������P���諌����������j�j�n��W��{����2�v|���#R�6�'�I�2|���6
�S��k�����G�������������������������\���L�9�x�s,'�$�*��
�*$�P�*��
���[��f�����d�L��"�������*�
 ���������������&�����������_��DS�z|}y�H�ec�$�,�L���t1�HD�U�
\+�!W)�E� ���������������$���z����� �~j�Cy�}��7�C�h��&�5�`���v�8�:�$�:�����R�?��v�k��}7�S��(
�z�|��%� �e@��1(
%$�?�n�P�D���
�������Q�]�(�E�5�U������W������������+�M�3�T�)�3�w��'���T�<�*�|�v���;�<�#����������6
�S���7��}�y�k��א�����������S���S�8x_uaz`{�{�s��k�=�����V��������������j��
#$��6�
$$������@��v�t�T�
�i�T�i���{�������_�,1�!��T����!�1������N�H�����'�	���)$�t�
�t(
�$�t�T���;7�T��6
�S���
�����N�H����v�����������������@���3���uk����1��������@����������:���6���zi����
�4R�G���%i��쎔����������|~�}�.���)�����|�}~�}�*����1����~�|���������������1
�"���C1
�d�4��}�����3������;���e�:��}�����3������8���i�*���O�J�K��.��J�?�7�����1�.��.K��z�J�1�Z����.S��cb��b���.K���jj�l��h�M�8�����ʟgk�������������&w�l`�����l�KK�\��������.���������K�.������H̢����W/�&�����~��k���S�ڡ#���ڨ�ZD�p�A���4�����I���
�����l�������,�,���}��������V``V��T����V`�������������,�,���}��l�l�������p�8V`������V``V��T����t�
�T�
�T�
 ����������$�����+�����)���f������}�����]�|�
��z
�@�\
 ����$�����������+��)���f�1���z
�\
2����}�����]�@�|�
�+
�t�)�f���R��8����8����T8�T����8���*�+
�kR��8��7�t��)�f�4�R�T8�T7�T�TR�8�7�T�TR��8��*���
����iw�q
�s�j
�)�f��Оm�a�
����"�
�q
�j
��)�f�d���
��� ���4�gnohgo�������H�4�R��5
�/��0
���3�#�������������؋�G�t�
`aM�PQ�Oddlli`g]_Q+�f�j�ooj�h�o�����v�uf��\�#�������ͥ�����ȅ֤�������������������������� ������T�n�hgoogh�n���4��-
���
���
���
����)�������|�m���������x�r���z�e�`�I�3��}�y?z�#�\f�LuOvh�i�moh�j�o������Q�]�`�l�d�O�Q�P�M�a��t��G��m�q��������������v�i���� ���Ǿ������n�4���^��ːΆ—̀Ə����n�԰�+�}j�{x������t�������zj�1�"��L��������zii����|E�;�;��]SH��v|~�}������������I��q�z��x���������c������������y�pst}qv�5H��ίp��}��������������Gq�|�z���{t��������}��yp�jip~rx}x�od�d�n�yr��~������������������W�����vu�yi�0i�z���������x�`6�0w7~Q[`R�|���������R�[�~�wߋ�������ƻ�ő��������|�ą�`�P�8�05�����]A�]��|�s�|�z�|����W��W��[�
d�m}yrxq~jiq��y}�����������������~r��x�nd��I��mpr|rv|������������{������������������H�� ���X�?�����A���܅w��l�D���z�ك��{�ц����Ԩ�_���~�q||�||��|����������f�|�mm|t^]��Z����'��X��"��-�I���bgiwknv����������v����}�������������(]�j�vg�rxhkl��m[2�+�*�m�������xf��w�j]�Y��n�w���w�y�{hsfy\\h��qx�����A������������zi��r�eV$�G4]�t������������~��%]~smn}���f������t]�f�c�����q�y�J�>���L�N��M�M�N�w�K=�KQx<r�����������<�Q؃v�L�N��M�M�N���Lؓ�Ş�������z�G��D��!�M�L�M�.�E�Z����
�#�������x��rh�]^hzirxr�dV�CV�d�qi��z��������������0�nwx}y����������0�g�s�|r��������T�����v��������7���y�g��}������}�~�5����������T�~�~�����������������K����������}��g|ut~���$zm������v��s�����������������������:�������/
�s��s�A����~�T��z�}xp�M������������X��������l������������L��y{���q�������������-�g�������p������������Ln}������t�������"�V������O������w�( ����[�,���x���x���M����
��y�h�>�GC�TU{�x�%��%�����%��%���T��D即���#}�f���
������؋����›���%��%�����%x�%{�T��G�>�h������
��
˳�&�����~��������'+�����������'���}���������~������~�����������������}���}����������3���3	+�t�4��b��4�t�D�����8��0���9�m�i���%�i����f��������������+�q����U�����3���������@�������
��
��n�D�D�n�n�D�D�n�n�D�D�n�n�D�D�n��.�b�XXbbXX�b��������p����c��}�z�p�p�q�h�&��������c&}hzqppppqzh}c&���������&h�q�p�p�z�}�c��������������������������
�����o�1�1����!�"�!!"�!$���o1111o����!�"�!�!�"!%�����1�1�o������$��������������Z���<� �<��ps
�����7
���7
e
���&�]���&�8�t#�4��#�4-�_�G�_�G��� 
���C���3��u����X���r� ���9�*�Hb=g���h�`�̀�����,�����������ް��5-��"����MM/�8��(x�,��(�9�0�KDz�іɕ�O��T��Om̀ց�Q������\����Y�5����Yy��{�)�)�+�)�j�x�Yh�m��G���{����I�U����s�V�7�=��o�{��vu!� z'f@o&d1��c��a��a�P�E�b�4�"f�|�au�n��O鿦ɯ�˱�n��n��o��I����7�J�!�I������5����.�OB\W�Q���Ħ���dRۛ~��-aOpbK�I�2�C������@�l�U�[������s^�Y�oc�`̄ƃ�~����ƒΑ����~vD�,@a�D�1��"�@�3�b�yЀ�ѐ����l�"����k�"��rbs��Ir�3p�1o�1�]_qew�G�1��(�'�$�:�e�����r�)n�'y�*��ԧ��ӥؘؒ�6��;��2]�z�t�[�u�n�s��� ����P�D�cl|P~_���q��������<����������}�N�x��0�k�<���N�������������/
p�ti"d-����"�`�#�6��9�VѺ�D�����������M����V���"T�A�������K�$�� ��T��h��������~�t�T
� �t~������~�����������h
������������������h�������������������h
����������~������t� ��t���������{�tR� �t������~�������������������򕃘���������t�6
���������������~�����~�t� ?�t~����������������������
qq��P�V�]�]�t��סж�������i�h�h��MD�;ZQuItI[�nt]��F�EQ�Z�-[+@@*e��-�8��;�@�@��4��������������u�vǹ��������ߤ��������������p7ZYCYCq5�(����������������������� �v��
�>����>���>-r�>-��>�j7��)������1����
�;��a�u�a��b�t�a����vz��������yvvzyu�:uz��������yvvzyv���LR]]S�BR�]�ĸ���B�]�S��x�*�.N�Z����wR�]�Ĺ���w��wR�]�Ĺ���w�Ǽ���|���������������C��NG�CCG|pNC���������������!C,��3�1�3,�� ��q�|�]�RS]^R�BR�]�Ĺ�����_���w���η�����}�����|���w����$��䔻k���i��ᦿ���ů��I�7�����J��+��k��t���������}����n~����x����?�����z�}}���}�������������b����;u{�{~(0YP��
�K��S{T�Sm���������������������{qiTAsF�G�K�i���wz�������w0�o�_ew��k�j��	"�˒��l�s���h�z�t���u�|Ц������y(0u"�5��������@B���'��\��ϊ؊����s�q��ٱ������0@��.&7�e�}�|�_��g͗��������������������������|qD|u�n�l�a�K���]�~���������������������d� i��q�qq��u���zw��|�wʎ����ó����^�=~Ş�v�}M�,������7���Qu�p�z�������T�S��(�����p���zKY�N��G����J������ ��b/ѓ��������c�c�t�u���p�4�K�6�gp1���zy�������@���������������������y�r�7�Y�}�{�w�\�������w������x�F�i���������������������s��}��t���x��y������������������������������o�G���qt��
�s�p�^�)X)iz�=J<I�
����ԑ�yʂ����������X�j�eˈP𫐠���{�y�M�9<��I�b�q�u�ҏБ�Z�=�Z�>�F�df�|o�L{1�$�+���#~[G0`SQRn�e*wXjs�I�x�[��Ͽ���^��d�7�,vX�9�<�D�B�c�r�������������~�������������������������}�\{zeugwT�qtmq�F�X�ec_�d���d��y�q�]ʼn���������������m]�n�r╠�����Ĩ�@԰�=�������{������ ����j<5x0�3�%��������������������\�Q�M�������������G���#�K�.�<(�������؃���f�f�f �h�8����z��_��=�K��
�8��^�@��m�K#�2�'(��h�U5���h��KQ�����y�����������%��.�"��/��b��7�������$�:�,M%��s�y���s��vnX������}�|�|�����,����#��/�� 
K���=�{���@��������m�_�X-�P�u�P�ª�����.�M�IJ��T�2��&��&���<�_�]�A�Q�S@�QdXJ*���13SsVQ�~�y�s�"k�=O�B���m�m�Y����������XX��[�J:�3�3�:�J�[�XX���������Y��m���
��)�M���C���K��K�|��|��v�pus�r���dopdad�o��������mn��no�&�{{�xoj�p��h_�hm�nf����������������A�����rk��R���h�������g/Q��Q��I�s���������7�z����������6����ݺ�����Ͱ�H�f�H��́b������������48�T�T:
�t,��[�tR
���4�:
�t,�[�tR
��4������������t���������cM�A�AM[Pc����|�xxW
������w�������/�����g
�T��M�Y��4��
���T@��������/���w��p��{�M
�4��|
�������T�t�t�T�����
��
�4�
���$�D�d�d�D�$��
����|
e
���~��mp�k������`�Yy��u��������ݶ�S�Hk�pf�1H 
��������x�
����������������������������������������H���H��������������������������������-�H���o�{�H����遏�������������+�������������H���H����������������+�����������������H�������������H����-����������������p������m�t������}�%��I3�U�����[���R�����H!f��������������_�����x�x�o�r�iB?z<���������.�"����������t�o��2|���3�������C�������T˳��T-
��hn��4���
��Tg
��5
�T/t0
��g
��
P
i
 �v������@`��g
�t�����A�A�2��A�A���A�A���A�AI�'��t�
�t��2�F�^�wtp�c�s�����������K�c����I��
��>����Z�Y�
�2�d�e�Ҧ��t0
�t���E�
�E�E�#���)�v�����o��}���}�4����u�{���z��u\�
O#���nWv�Z�����h��,�l�t�:�$�4�Zsj{rg�������l��b�1���Xl�dvG�'�b�Q�^���{���y�q�����a|x��|{�j�j���������s�}�����������������.Ӣ�ѡ�?�I��Y–�����K����k�.�#�4�)�s�V���
�1��|��5���G�c�%�1��A���� �X��R�f�
����7��n]Mw]�^�}�����ǟ�x�w�Vo]�
�yt�y�y��������������w�y�B �A��'��!��3EM�M��!�#]��([�B����4��W�t�I��m�@��n���x�Wx�W�t�I�����������W�ȇ���$�r�z����ӎ�l�Q�3��J>�Rq�����_�(�%�v�v��=�=)�G�/����H��{����uA�R�6�=z@k�wl�k�k�w��������l�l�ae��l�j����������{�R��I�7�
��A��5i�f�sg�f�f�s�����h�.�/��g���g�e���������0l�F�
����
mi�E��#�=[�Z\�Z�#�=�E�O��i����������N�����Q�@������Q���������������y��Q��������@�Q�������p������z�E�������������&��}���9�ً���܉���{�H�[�1�����������N����[�G�C��J��ۋz"q*g2E��K�a�"�8�1�&����*����a�/��rwxrr�w�������T�(����v��]����������������*I��0���������������
��
��3����30�H��5
����7
��Tz�|��4#
�5
��
��T�|������������������6
�T��>
�4�#
����T3~~����T��z�wwv�x��T�������4���4O����e����9 �1
�����������d�p���S�F�4�7�z��w8�,�l�����������r�7����R��Z(�x�[��t�s�[{��+��;f�������C�3DK^Fx���u���k��r��l���qv��}�������������T����K�����?�(�&�P�X�+�)#JU�^m�m�m��jg�e�nyiYW�»������ë���P�����7�i���S����պ�ԤÎ�˒r�Spp�o��G��.����B��%���r ����u�`v���t�T�tp��
�TR�4%���Z�d��z�{�	
�	
�IS�4(
���
�k�.�
p�k����T�������t
�t
��
�tR���M���o
����
���6
��~���������*
��Q�)��ۛ��S�%������4��՘Ζ���T��˫�K�T�]�H�A����F-�"�K�
g_�y�z�}>�Q~{{�~؉؇}�zy_�g��K��飳���ܩ�n�_ZZp_bn:�������v�k����bA*t%n�d�ʋ��̫�����4�4���������m�����4��tb�����m�����+�+�4�4k��kL�J�J�l.�d ��
��|{��|�8S"��1�Þ����H�=|}��}�6TV�5�wS�L<JI<{�{�|��4��"U�4�wT�L;KI<{�{�|��3�1VPwcSM;�Nۛ�����0���0VPwcSM:�Oܜ�����-��7O��d����ٛ����T�8���9O��d����ڛ����S�;�@�Ǡ����L�9����"������t��������s
���V``V��V`���H�z�u�|�K�R�Kj��g���
�ů�������ɣ������YPOdq2P2R2QreL]]]L��e3�0�3�a�S�f��ó^U�����hv������n�2�o�����E��������`+s!���j�m�d�f������������J�\������e������܌���
����<������b�d�a��ʵ���֊��ی���
�������������!�z�2v�Ԁ�����������<���r�qo=w5d���:�y��.�����h�O��6���?���)�k��k�k��
�k�k���k�k���k�����������
�������ɲ�~�=�`�U�f�6����@�IV������������`b�����1�N� <��:�M��@�x�i�]�'8��������T���
��}
�T��
�T�mh�n��������������PelnhK���l�eP�����������������������;�T�
elnh����l�e��Z	�P��I�{{�{{{��{��Iy���!�����������
�������~�������������$���~��}}�����#M4m���	eupb[^�d�tQ�E������������T�����������Q�E������r�e�����ĸ� �b���������$�����������0�Y����	�`�	�_��_�	�����fd�egg��h����1���(���'���,��� ���ge�ffg��h�a��C��N��~�W�����������������������������H�y��n�����j�m�����j�m���)�KT��e�]���B�c�=���=�=���=�O����J������i�����!�G�)�e���G�l�G����}���ff>TT=��g��}������}��R����������������I�c�ZYccYZ�c�������c�YZccYZ�c��������\pcdw�y�wx�R�j�.�����j�.�R�����c�o����ͭ�}t���������������qZ�������bZZcbYZc���\�L���
��g�S������VI��m�
0�ܰ�
�.��G�.�����k�.�L�.�k���?�+�����llH�\\H��l����������Z�釧�鏼����������0��
����
�k�cthjz�{�{z�7�L��v�v�K��7�����i�s��ù�Ĩ�w�л�����������Qa�������haahhaai����?�U����l�[�����Ĺ]S��Z Z��+�)�*�*�����MO���v�rqvvq�� 25 �3�����
�+�q�v������������6!M���r�34��2���o��q�v�������*�
����� 
�).����`��`��`�������N�W���{�W�M�}�|�X�L�y�R]^SS]��������������T�T����V�Q�~��ù��ù]S������S]^SS]�����WQ������U�R�����T�T���������t���t���4�''��t�T�T�t����t�T�T�t�T ����7�8��8����a��`��a��a�`��a�^�������M���kl�`���
���8�a�M�a�k�aW�`�a��9�M��9��7���B�a����
���8�M��9��7���B�a����
������H����g��g�[�o�������\���@�\���C�G��%�:`d��h�b�gb�ۏ֯�Ȱ�����������:��%�G��?�G��%�;ad��h�b�gb��N������;��%�G���H ���v���/��}��������7����������
Q��Yr�3F���ZXa��X�x�wx_blk�x�����B�)� K��%Lo�3�B�����J�������w�u~�k�u��x�u�����*�k�?��O�z!x�yxv�z���A��������Y�����
�Ϲ�������[�D�j�m�hl|�{�{������̡���ԡԈ֊���j�8ч�������������5�T������&�9�E��
�Z�$�j����������b������������<���r��������(�B{]�<��6�T�Y�u���Z�|�i�JC^E,g_zsyub��Ֆ�Ӫ������u�^�q�-��1������ݛ���zJ�1jI�1jgT����iԻ���E�Y��}M�F{M��`���@��������]�����~tv��t�z����,�������������������������J�����~����Y�������=U/�0���A����������������q��t��ת��ԛ�����d��z��}��������PPxvtnos�������������������������~���}�m�z����Vz-cObPru[�N��
�S=��)�i�d�<&l��i�X�sŒՍ����0��Z���Z���6�:���3W��4�U��_U�2�6�6�W�B�N����	h[aj6GUv@cLj��^�H�I���,�+�����T��j���k�(�j���j��c�+�,�5�4�+�,mmZZ;�Z�Z��۽����+�,33m���0vH9*��/������o���⩩�+�,�4�4��>4�
��q�{7�$�//�)�9�wh�	���0�m��+�,�5�4�+�,�4�4�,�,n�Z��ܼ���ۋ�Z��,�,�����>�'���l�4�n��,�,�4�4�,�,�4�4�,�,�m�Z�;ZZZZ;�Z���+�,��/�o���-��D��������/�#5>'}���n00nm�,�,�5�4��,�,�4�4�,�,����ۋ�Z�Z�;ZZ�+�,����j���������+��
����J��Ѳ�"�^����������z�}�i�{��ѧ������錐��������z�s�s�^my�z�Svn�n�U{u�u�w���z������~����������������������˜����ڦ���L�vewe��:rnwt]R{���������ϝ��ȹ̯�����\�����j�����t���a�z�������m�|�}�l�~�~�n������h�~�u����������������������N�?�M�a�m�����J�}�����f��g�^�%��l���l�I�%��u��X������Blznxj|Z�6{�&���1�~\�����������N�UL���������ܿ�I��4�����'��6�������k����Z�6nNw���������������������������a���������������t�T�T�T�t��
��
���T��������]
��g�Z
��`�7�7�l�f��,�,�fA�V�4�
�g��K���W�?��t�qE���E���E������4��4�
��������
�
��
��@��
�5
��/�0
�x
���AA�K�
�TV
1�CK�
�TAK�
�TA_�K�
���y}}yKy}����������}y�T9
����;��9
>0����y}}yKy}����������}y�T9
���P��t�t��p����f�e�O�ef�x�x��x�xe�O�effe�O�e������D���D��������8|
 Z������ *�`�7�Q��� �`�6�����w�%�	�Y�4�W%*�%�	�X�4������������j��%����1�������������g�6�`� �Q���7*�`� ����D��4�	�Y�%*�&��4�	�X�%�W���
��T�����#���E�E�#�����\��[^��h��n��T�����^������\������z��.����}��T���N���N���N�����i�Y��T���}|�|||��}�T��Yyi[U��\�`�u�T������������T���������v����
��
�+�
�@��
������8���T�j�M�Q�M�Q�M�Q��W�m�[��F�N�$�l�\��T�T�{z�zzz��{�T�T\vl]X�$�F�N\vl]X�4[�^�v�T�t��
�������������T�t��
���������P�8�j�J�2��R��Q��k����V���o�����8��������>��A�
��,��������'>�&�&��������2�u�����Q�e�����G�W���n�!�e��q=s)b?�ɽV����W��X��/c���������@���o� E`(�������y�k����2@�	�/������@���O�l��m�C����L�����A������A���l�s
�����	e�1<fXEi�o�B(�4�G�#������ɷ���R�M�7�L�M���ģ��[�?�Q�m��k�ȥ����a3N���H��
�F�?���A�G�!�<������/0�U����@Y\@���քd�= @�6��>�������U�*���*j�*�.�N�������������������z����+8��a��{�z�{�a�����Y�%�#������������y�=���<�=���=�<���=�<���<�*����`�`�����`�^������+���LPzlX��1�A�z/�-����6�D�&��@��I�����`�_����4��|�����4���B������
 4���4!�����3�}|��~�j�k�/k;j:/d;�j�k�j�L��`�������*
�`�h��������������u���Y��5�4�Y�\�5�5�\�Z�5�6�\���~� � ���
q�@��-�3���3�T&���k������������������v�vXw��p���D�>��m2W��.�_�Z���8n��������E�� 5<�hL��hL�Q�R�����S�u���'/�����>0����A�g���z���8�(�Ғ��ӑ���P�����0K�C�'�Z�L{o_�u�����O�n�	�ɋ�#��x���W�{��D����ߥ���p������B�dȋ�e�E��)�p��3�����+5�7w�p�	����n�t�T�y
���@
����y
�4��'���
���
��
��
�
��u
����n ���
��t'
�T��
��
K�
��K�
�V
��'�� �t��X�t�@
�X�t��v������&�'�y���&�'�Y����
�
���
�Y�&�'�
�y�&�'�
�b�K�HJj�p�������̃Έ��bi
����������a����ouwr~�������'89�{=�{��mx������������<�*e>����o�kjqpi{������A��R*7}xE�|��}jp�����������]�VY0�-�|�xp���aime{���}��l��d""�p*��}�|bl�������������v��\&�A�}�xf�a�) 
����W������po��"��_m���3���m������������"�������3��s������ٝϞ���¿���������8~���~����}������������~�������h�s�������������������������������׌���������������$���������������������z����������������c������������t�c��^�����������_�������P����������v����������������������������v������������������~���������w�~������������������������������������y������������������f������������{�h�������������������������{�������������������
�����
��Z�~���}}��}}�����}�����������������||{������|������������Z}���������������������������	��z��}���������{���1���0df�}i��t�j�\��KMuTu���z�y�~��������0���0�����&
����
���
��
�
�<���!��!����
�
��!���<�
��jv�����t�
��Ǒ�m����l�����!��4���CP�W�h�Ќnj��������������������������|�vw||r�yI����s7h3^1c:gJlX������������JU>�]�w�������������������D����&���_��n�����������������������r6�Hgd��al�o�r�@���/������K&``m}�"�,���� �����y������������@��}�z�~�|�{@��Ë�����)�������ҧ̞ȭB�O�`������)y)o3h������������m^��Z��x���
���
�:���w
!�4�i��� 1�J�{�z�~�v����������$����$���{�z�~���������������J1��� E�8�)�3��y���������������{�|�|��y�3�8�)E�
���
���1��V�!�4�g����V���Q��G��� ?��3�������������������3A��� H�W���T���!����� �5���������������|x$�5�!���
�~�;������
����~�V��!�4�t���/�����|��h�7��S.1l~gd�`��;�!������������������w�g��vp�h����
�i
�?v��
�x
V�!�4�������m�T�T�T���������
�
���x
�������-
��V���P
����P
����P
�������P������fA�V��
��T���l�f��P��������������z�z�! ���
�P
�����4��4�����r�n<��B@(��vM��z�zy��:�(�(�������! �u�6��B@�!�eDR���Ĩ���nhhRnD�
�����
�x
K����!�4B���f�~����:�;�8��:�;�����
������������5�E}}��o������ۮ���h�J�t����������o�%����]�8%{~y�x�g�(|{��~r�����������x�j�r����������q�O�>99l>SO~~z�z�
���
�x
K����!�4����
�E�Q��y��
����������
����1���������
������������
�%v��
���w
!�4�4��v�����{���v���}�������������J���J������}�X�}�w��}�����v����w�}�Xe}��w�}�J���J���}�w���e�������v����������aʁ��������ӎ���y�L�z�z��y��ӈz�z���|�c���y���u���Y�aa�f�f�6�&������̶Q�HyA~`��D���ޟ������(�����#�P������g�Q+<�3%�!!!�S�|�B��D�����������M�h����ߺ����� ���ђ���O
�.�-�.�-�.p�l����H��s���-�����U���7����s���H�<����J���J���J�?����H��&������U�����r��s����&�l�~�v�����~|�|||��~���v}~rr��r�r�}�������������������������|�"�����������������d� �^)�[O�K�0���-n�p�q�
D:��)�r�J�?�t~���������r�I�F�o�9$�"�%�����9��/����i�ü��I�IR^rdcl�m�k���ԧ��2�*�:�8�)�0��\��pFN[BA�\�Ÿ����g�h�gGDDl)�3��=�
���
0�
���jR��V�V�VT�PQS�yV�V�V�����:��R�j�������V�VyV�TPQ�S�V�x�������V�Vy�Á��•���V�VR��j���h���h�
��@��x�m�����Ł�y��V�V�����j�R���t�t��t��t��F����4��x��P�p�����������������[��p������x�4M����F�q���q�q���q�Iw�w��v���|���yx���*��|��8�����������G�}�A�I��r��w��-�u�����\�?�	�5'���p�����x$�� PY8������4�I�5�K��� �G�3�#���T�1��!����I��%�>�H�G����U����������B�&�����������v\w�ͷ�����- �-������%b�b�d����&���-�JRp�r�v��Qi��u���,������t�~��՗Ӣ�9�������R�M�g������Ĭx�{�}�ާ�EvhrjplJ�- �?�&n	�5d�b�b�I������,��u�e��u�i�`��M�6�f�X�P�����lj�iij��l���PXlf`�M�6`ZiRuL�};�p�omm�o�p�|;�L�R�Z�M�6�`�m�[�������
���[��Ɨ�����M�6���Ġ��|������������}�����������+��v�j�������S��&�z���������z�g�M�Rj�h�e�d9o�I�CAA~CtI�o}d{fxg�j������;��v���+���I������z5�&o�?� ���m�j�hĬ�7�;�j���j�j���j�j���j��j���j��
�0��K����B��H���
��\�O�+�:�������x�O�a_U�TS˄�B����g�f�t�XRweWW�k�!�����:�{�z�{��z�zy"J<%wl�y}jh�w���|�m'�!+\�!�
��ո�ϡ�n���������M�b��������x��������7�������������t�tt�p�o�p��yje�f�{��m������~���	Ǻ������ �i�ii�	yz�yW�uf�^�������
���V]g`[[f��������_\��� ����A���^���N�?�I�`�U�j��f�#�b�'�^��j�T�m���4=yBF$�������3P��:kS43g��߫��ޯG@����pFAw@�UM�M�M�%��O&��i�Wt�LXU�_�o��gBF��b�WR�?�d�/�y����(#�-������:���=�������������;�������������r�a�``��^�_�^�r��ruke�dA~����������R�?��‰“��w�n�mm"�?+��R���������������U`�B��=�j�ȕ����w�S�<;QE>?�F�` �����
� ���R���X�����X�4�! 55 p�q�sa_^U^H��K��ʲ�Jp��w�����������m�����7���ų���u��~�������������������/�/�:�q��������~�i�y�����k�k�����k�k�����k�k��gf��ho�py�p�o�o���������������
�����n�0�
+�(�\f�m�j������ő�¡���������C�B�{������������g�tzl�dg{S������)���������i��k��-���������z�/�R��ɮ٫ސ������q��,�Þ���2=�5�����������q�n���Y�V�L���9+�3��zZ$�;;�#�}�Mwz�V�qzvy^oy�z�z���v�!������UggTUT���¯�¯gT�{��fggTgg������¯gg����UggUTU������gT���ffgUgg��������gg���!��M��m���#�����[��8�I�C�n���y��y������|����������죢����������������������������Ԟ���[�T�I�&���%�7�O
�����~�~��������Tvt�s�r�v����6���1����p�s�����������������Y�M�	�O
���w�p�v~���Tv~t�s�r�v���l�U�Xq�s������������������k�	���%���]�r���������������Kw�x
���ܿ����
���D�&�l&�y�P�����
����>�T
�/
��������Ua
�������
�
���������3�����������^�������bX�k���>��C������_��}�g55�533�3g}cm6ﳽm�v�%f���������~~��O�~~��~�����^���������a��}�g76�7/.�/h~bn1���l�p��.[���Rh�5kuZi/�4o�e������������
^W�f����������������7������������h�7jvWi'�2n�f�������������z�#�z�C�p�i�s�L�2r@;pEVP<Q<m+�,�4�>�;�O�d�l�w�����
�#�>��
��������������������ƭ��
��t��t���������4��������t��t ��t��t�T��������t��t�����e
���7>jVR���H�����������%���HV��j��E�#�#�E�E�
�E�E�#��������H�R>�7�E�#��E�#�#�E�ج�����H�����E�#�#�E�E�#�#�E�E�
�E��?�>�?�
��������	++�	�
+�	��������heXuS�	+�
�
��	þuh����������	��
�	�+�	�
++�	SX��e��������������%���������	�+�
���� ��o�9�˫�4��9��/�ː�/��4��G�j{fj}�^11^�r�t|q�����j�|����$���$�J���|�j�B������G�r�b�rrKK�&�	���������������j�	S��ˤ���r�eG����e�����~�1�~�w�~~�w�~�1��������G
�z�z�����0��v�~���0B��������KR+%+
�~
�T��+u�+������~�w�~10����������G
���4
�v���2
���d���������d��0�
����m���c����Fr@:}77:��@�����ڳm�-�T�0�>�����2���tM�����2�V����3���3V��2Y�&���L����t�������>T�0-����������V�-���
K��K��K��K��K��K��K��K�����T�tY
�T��Y
��TY
�"�6
������������g�n�~��Y
��T��Y
��TY
�"�@6
����
��������H~���������Hf����T
�T��������g�n��p(���������������p�T��<}~�}��������<���4������T�����T������~�}�<��2
���<����p�4�t�p�
��Y�:�YY�%�$�~�~�$�%����Y�Y�:�YZ�$�%�*�*�4�4�o�ol��8�������I�I�������8��o�o�4�4�*�*�%�$����Z������u������*���
������+���
����u�H����d���8�lh�Tw�w�v�������y�m�\����_u����5��������^��/�7���h�Vf�������J�C�2�2C=+�J������V�hX�[�<�*�N?�Y�3�: ������]�#�������"��S����:��Y�3�N���������%��%�I�%���%���%����%�F�%�"�F�%�F�%���"�m�m�m�������%�@�5����z�"�m�m�m�m���F�F�
�V���m��y�j�j�g�wrPE����]�����}��������~���S�u8ӗ������������������)����x�m�6�����
���|u�w�}un]~�'�)�k�p�{�u�~������������������������y���������
����n�k�upto�g�o�>�4���y���}����Ϧ�)�Q���4���
g������y�r�=���7TRyy�t�v��z����3�����������*��������WJ�t�t�x~����8�tA&���ys�j�m�m�}���������������՗����������������
��:
V�x
�������
����������������������������������������d�T���T�-
�5�������P
����������x`�������
����������� � ����ee�pZp� � �������%�$����
� �B�(�(�BP! ������(�'�'�������$�$����
�G�G�������(�G�G�����s�$�$���z�h���l�?��9�����������%�$����
�������������������������_�{����������_�{�������
V��|
��m
%
�G���G�G�G���G�G����EQQE�EQ��������QE����G���-
��
����
��
����%
������
�E�Q�t������
�
���l�T�������^_|_j-Z7BG:?)_�s:y8�C��Xc�cs{~s�y�y�y�y�z�y�o��t��������������������o�����֎�~���@���,=��"��H(�`��dine��|�An��q��������������˗����NJ����ܨ�,����+P�מ���
���M���	q{mv��=�m�
�����RJ������C���w�w���7�c��l�!�w��/|�)q�%�
�Q�X��e�������Y�G���D��������W[���r�����0�I����d��?����q�o��v|wv���N��X��^�U��������������Z���������l�-ƒs|e��W�"}f��ڋ��\�G�Q�+�L�������~b����G���D����C����d�5�.�2�6�J����:#��:���t�|�m�c�U�Jmopm�v�n�]�TB���4�B�@D��d��$��r���������v�J�L�8�������8˿}~��=����.|Ն��s�=�x��zo<�B��������������d
��������l�8�l���	�\�������ʨʩ��ܧ��x�x��Ӫѩ��̉�Ш�ܧ��̩ۨ�~��������+U������n��/���nT8)m'����x�x�����x�x����+U��mT��s���_�����^���^�����_���������x�x������x�x��((��8���m��0���n�y�fz�������z��~���|����~���w�L����������������������������@���������������%������"���s�x�@�����{�s�@q|xs@�m��w~x� ���~�x ��_s�x������{�rr|xs@��s�x��@�����z�s (r{xs �2C���������������������������%���������������������$����������������������%����������������������w� x}s@n����ww~s@m� (�{��������|���������vk�6��~�}�xen�������������H�G�)�qtyduw��{���������������z�~�l�{������������s��{�y{��������������s�i�����|�h���o����b�p[N�@~���� ������r�@���na����&s���� ������u}{x�w� cn�������3�������o������w�~u?m���{�������D����@�����}s����~�szzqq�z��������s�}}�w��_o����G��~�}�xem��������������HG����������o�����x�~u?n��{������� ��~�}�wfm��������������G�������������(�����������������%���������������������$����������������������%������������������d
�����;�z�u�1�t&�A����"Ω̵�i�����&��L�̔��+��@�����~�t��vq�az�p�������@��������u�bw&�����8@�SJZu\ek pkf�Y8@,�����F)��:�������J\^GZg��m��n��|���������~���~�r�N�v�����Ư�r�i_��z{�wow{vy���}�p�sV��1}ns�o(>�������}�>�pt�lN[XKH�[ͨ����>��-
���"�?���4�����'::'�':��������:'�,�Ah�"����t�t������LR�A�S�1�S�c1���J����ֶgLXpjZ�@� ��=�P�B�BPOA�A�O�����������gŬ�\�]�W»�[�Z��3�)��S�����f�f�@�_±�R���D�=��̹���|��ͻ�M�V˹�$���Q�G̟�^ͫ�w�_�B��G�.����O�`�I�Τwϓ�RϺ�T�EDjX������������3��"����"��7�<�"�ߊ��m�Q�1@@ry�t��8�����s���pv�u:@�����r���fqv�u:���d@���r�_F�������/D@�>�L6�L!�� @���+���������O��h�h��h�h������[�N@�c@92;�����@�����1 ���y������,����(�(��,�m���m<��}ni�k�<�ytg�n��������(�B�nl�mva2�gW�TP �����Q���~a���w���e���z�����!uP�������!�Eu�������:�P�B�BPNB��G�=�_!!@1�@��Z�*������y����@u@��������_@��M��_��H�EQ�Ji�Q�wr�SrNG2��Jt��A��������(���@w\�EQx�]�nr�TrN��:B�N���������c�T�X�.���E��!���]^����g���������g�T�W�-�������|cQ�� ����f�
P����������+���(�(��+�l���l�>�vI����I���<5�������YaqT��;�Qvy�{�Q�ŷ�����`b��Z������
�Y`qT��;�Rwz�{�Q�������9�RI�P��P(�����*/�inW�����|ϊ�L/b\04�]������O��_��_@�P������(��	���e�,�l�,���|�}�
��v��������)��e�iy�����z ��������)��v��������?��������?����4��
F���������or^{g=Z�������i���
�*��������������>������薚��=�v�������������*��0��������������������9H����3��
�F���������os^{f=Z��P�����i���
�E�(J�-�����I�������4��������������i�^x�����z �������x��d
����6��2��3�������~�����*�*��)��(��!���=�
�x�e�t�pqR�t����������������J�͉y�iiylH����Xzdipsl_~UGJ��h��s��x������y�W�9�Y������������ӿw�y��k]�]s}�zw�~�{��m�h7���k>�Yi�{�������
�zt�dYg��rn�|���oM�򹓝�������������gp�tx��*�k��S���������������k�*�k�l��1wGb_]aT�fvs��t�+�*r����\�������zh��e�N;�h��_hg_@_h��������h_�����i�����l�u�~��~����������$rfP|KEU��f�a�v���,��ɼua��a�P@��d
�����Xv�v����T��@���A�!����!�K�Ty�	�����
��~@7뀙v�~��6����
������������D����
����
���T���4�[
*<�씒�������<�Jڔ������o�C��j�����S���R�'"��p�G�	�*��J�,�����)��!����!K�Ty�p��v�~��6���
����������������9������4:�T[��R
�T��:��T?
�T��:�T?
�T���t�
߼wO�V��VOcZwE�;��(
�K�&
�L��1��������H�u
m�4�"�9�!�4� �D�7���*��*�����~�b���������EL�pC�Q��'�]�V���O�
nLE�������
�
��3���(���`�`�����b�e���!�u��!��3�U��a
�������
���
m�O����%��*� �&�-�~�&��ހ���`���b� �z�]�A�)߀���F�9�:��5�$����
�_���_��
�E�A��������������b���w�}.��$X�'�����[�����[ހ���������poG�b{����������������������
������S�x�Y-��	���q����|���k������j�o�uh��yə����R��r�	�����T�i
�����_����s�u#�
�f�f��"���ss~ki�_����K����_���������"��f�f�#�u�s����_���^���T�T���T�T�O
�O��
Z]ukh���PUj=;�<��$�=�ӭ�������}�(������7�0�!���u��c6�rt�v}ra��f��'�����Z�X������,�W������a
p{��Y��
�XXuxmihaX_)(X��b�hu�X��
�{�T�K�T���T���T���T���T���TK�
�T���������������������������_h�m��x������������
��������T���Գ���
��������
�i�V�!����������!��V�iK�������
�`R�Go|iv��
�
�d�d�}�}�
���T�T�4�4�}�}��
�
�
�
�v������8���7��8�W�9��7����̩��u���x�t�o��v�w�p��E�V�3��'����(�������I�6���/H#�@��_��6s�2�r�����������v����)���	���������7�,u`melh�@K(w,�k�/�T�c�W�B�R�Z�s��Z��������V�:� �[�X�2�;�@�L�p������Z�"
���x�#�&��|C���@H�#SQ�4� ����+�� �2�й����y�z{�6C'r �v�'�Q�j���a��N�S�c������I��=��λۊ���6�O���F�u����������ɷ�a���y�r�v.D����x���yl�u\eh[��x���O�~�|�i�K�!� ���u���F�
���$
���z�z�������0�	�N�e�e%�N�0�	����z�z�������������������������������
��������������������
������������������t���$
���z�z����
�������-
����F׀����
�D��
�D�����w��P��ak�O����N���(瀰b�X�S���9}�^�H���t��T�U
�D��
�D׀�������7׀����]�]��FJ{oQ���$�w�v���
�r��G���
�t��K�KB�=׀[
��v�N�;�m��Y��������i�)09Q��瀷���]��
��T���
�4���������������G��%
]� c�mgc���cm����������*��um���v��pvvp��qu���������vp�$�i݆�y�"�Z�4x������+�4x$�Zy;�N9�������������@��?�@�?��@�]�?�?��T�e�[�R[ed\\�d��R�����j����������b��O�� �����e�[�j|ƒ�����������~�b��O�� [ee[\�e��j�T�SP����e�[�P������Z���[���ZQ�R�T�[ee\[�e��Q������Z���Z���ZŅĀ���������������4�
P����:�����
l�����9�4��t�M����J���lrH��m9�	��M��������qxttur��������������Je��
���sp�szy��}e�
���<��������cH��u�Rtyzuw@B�X�����2�����ʳ�8�g^zp}UY̲nx�v�w�ww~zm��#����Ԓ����������,���������f�����������������������~��t���x*��}�-�������������oA��c�2S�3_�(���%�Q�,�d�F��W<~����4���g�E�W�RC�tp��|��1����$�+s��<����
��
@�T�)�0��a�_�i�3��� 4��X;&��
���us�s9&%9l�_�n�hY5�����]��\�a�\�<�R��V��k���_�k���`�1�T����<�kOF�w���2���ϵZ6��_�"
�
��g���<�jOF�x���2���ζZ6��`�"
���g��-���~�	L9wu�z~\L��y����Ǟ�My�v�}�N�}�������	����������ǜ����z]�����z�7�����T������t�T�t��t�4�t�4�t�4�t�t�$���r�r���d(
����
���*���*�����TR�4(
��*���*����'
�4(
�T$�d���r�r�����n���Z�\������J�x�k�^kwwk�k�w��^�����~�|��}T|����z�x�k*kw��U|����z�w�k-jx��T}�����һ�����xj�������Һ\D�����E[[D�S^m��x�H|��|T}����.һ����һ\D�.����#����##�����#���������
�'�V�'���'�����8�����������L����t�t�2���2�T�2���2�T�2���2�T�2���2�����������������O���
)�$������x�r��O��������r�m��c��������q�ly|�~��"��|�yy|�~��@� ��|�ylqrk������e��w�}xt�����[��p�wtop�t���b�������p�t���U�������k�r�������#�����
����$�����������������U�������������a��ᰥ�����m����}�||}���€�����#������V�䕌�����O�V���@�P�[�������d�������������������������������\�R�\���D?���G������!�cL���������m����������?J���9_����������	��l��q�1�:���KI���������<�E�Q�8���8����?�E���������d�V��w�s������-�1���a��������S�]�aA�����<�U�i�u��t�,����������e���#���z���_6�������������������I�c�������l�����������T��7P�7���o���7������w�>��������>�����?�������������
�D�����B��(�D���D��(�B����z�D��)�A����NZ����ȼ���xȼXN�=�v�
�:j�TR�R�;���;P�P�Q�2�<���;�5������,�$�(�)���M�U�]�(���)�+���+\�T�M��q���q�z΂�3�����4��y�p�m�1��
�.�o��Qk�e�^�
�����'�u�v�&������^�e�k����7|��e��pex�#�B��9��o=������9�B]:�#��/���ݠ��p�����"�\&�����"��iR��e��x�p�����
hB���
���R�XD�@���������� �_*����� ��pX�����@���Rp��c����h�E�����:�dM�+��A�����*�[ �����$���0�b�w�q�f�]�]�]�U���9pttp.pt���q�������to���q�J���N
�����J�A�N
���A�J���N
��l�L��6�H���������������p�A��O�YK�I�+���+s�r�s� I0�"�/�r�I�H�q��q�I�H�r�v���;�(h�q�j�u�q�i�F�����
����ﷰg�����(����7�]F���$������g�����)XP
��������p'���7���)���28���]8�����j*�%��j��j��j���A�o�]��"��
-�]��"��-�]��"��
.�\��#��<]�i�|����i�|����i�|����j�|�������6���6����6���F��ٯ��������6��UaZ�g����<��xg��w��������������������;�A� � �A�@� �!�A�@�!�!�@�A�!� �@�9����ŵwv�mQ��uL�flD�^A����94�wHMZ��X���a�ǂ��ݏ����,���!���|�����)�
�
�*�)�
�
�)�*�
�
�)�*�
�
�*���*�
�
�)�*�
�
�*�)�
�
�*�)�
�
�)����[�O�CPZ[P�5���5�Z�P�CO[[P��P�[�(ǻ��������.�S��"�0���@��:��M���������`ed��e��������S�O����[/:~~|yw�{���
�>�g�7�.�iczdfp�t���+��&4��R���������l�^�����v�Q���B�R��������{�xxgd~y<��/R��c�4��j�c�'��^������d�<�/�g�Z�8�%�V�������d�
�
X������'nh��`����z�{����{�������@����X�'�&������'�&����H�`�������h�������-�Q ���N����������k�g���-�����`����`��%�`�������a�z�x�w��wx�z���xs�h�t�T��~����������T������x��������'e�'������'����
����
���������x"�888ށ888ށ888ށ888ށ888ށ888ށ��888�11�
�r�����J��8�
�����8��m��D�ڱ��8�
���8��m�898݁xy���f�΢�{�c��E����H�����
������$��D����EQc}{[�h�f����KK8݁��898�11�
�D�r�����'m�$�������H��D�
����m���������>
K��4�T+�T����������������DqT1���aa���1��q��������������������ӌ��������������$�����ӊ���������4��Fl���G��u�j���������/���>�c�v�Y�X��wr�lO[MOO[�Olr}twXPY�v@c��>kPS�/k�������_�`�b�j�p�N1k���I�|�������
��� ��F��k����u�U�)�4�S�'�-{:d��@�G��
&zz�����E��w�v��lmul�c��h��r�������]��t��
���bF�s^�[X�V[
��v�N�;�m�Ћ�������D�1��� g�%/O���,k���j�F�?�j}����y�y��k�����D��
�D��������'���w�s�xx������
t�D��
�D�������7�U
�1
��t��_�>�h�jt�h�h�j���bg�S��g��T.�
�
�T譁����b���������j�h��>n�_K��D�;����D����
�h�/�����4+��|
�Z���su���S��&�yp�rxo�h
nr����R�/E��o�qwn��������������������썍�����c�@�
��"�;�;��d�������xp��X�B��B���������}�t��q��۽���������w
�
�T������d��m�l�su��r��|����j���to
�t�t�
�t�tD�t�����E
[
�S����)�����\�<�����D
�4x
���/
�m�
���
8���������{�uNv����Q�*�3�3��Q����~Fu{uv����+�N�R-��X�v�D
^
���v��X�R����X/
m�
��
����
������*��6x��l�l�sv��r��}����jX�m�
�9
��������)�����[=)R����~�[�~�w�~5-!��i��5
��D
���"�~�v���_��������V=)[���D
X����w����a����u���q�u���� ��f!D!��� }��q�q�uu��r��|����j���to
�t�t�
�t���tD
�t�tD�t���ì�|��r������6�Z�<:���S�
�vg����$gJAv<��������ֽ�Y�i��<A��J�������Z�)����
����������
�����P
���0����u�l�c������
�
����*��5x��l�m�xy��v�������{����?�������Z�S����!��
���4���t�9�M�kj������t�9�M�k��x�xw�����
�J�1��1���Z�`���w�w�x�n��=�O�v�T���J�1��1E����`���������nm�=�O�v[
��m�������� V������
�������)����
�gN/��#��-t��e�Z�\i��\�������h^
����ֽ��?�#f�,�����W�S�����CZ�7)������
����6�Z�<:������
�vg����$gK@v<�S���T<@��K������Z��i�i���#
�@�@==�)�����\�<��� �!�������� � �i�j��D
�4x
���/
��
�
����w
����4D�4�9�/��������^�]��^�]�����9�4o
�4���j�|����ѡ���l�s��m��d���������t�����K��/
�������
m������v�~^^���M�M���t�M�t�j����|��r��u�s�lm����d�����������t�����t�
�t���M�M���^�~���������2���/
�����
p�
�T��
�D
��D
�����T/
��������[
���]�]��E
������������O���m�|����*
��\ee\��\�e��s�
�����V�e�\���9���7��M��|�?���S�#`���������<����`�R���w�<����ED��z8D������^�7�E�&S�M�X]�Z-���`L�M�L�����<�z����=��a����3������l����x�-��v����x�m��qY*m�����S�Z�]�e�a�u�������ж��X�������p~�v{�}|[^s\�I��F�F�S���#Jw��a���â�������������7�z��_����
��%��>�}=�a������������������f�4���4����	��)x�5��M��k��4���4�4���4���+�����
 ������
������
���T�
��T��
���T�
���
������{���{���{��������t���T��
a�T���
�TF���7
����
�Tr
����J
��t�T���s�R@�6{���@),\��,��)�@�ə������EQ����Z��T��
a��������������������������������������������������������������������������������������������������������������������������I�Is�~��������xx�x{���?+)]��)��+�@�����8�s�~����������v���
����������T��@����P
��Tx
����{
��������T���
��T�i
�
P
��
������������T�T�T�T�����T�/��������/�T������T�T�������l�v��T��
��T�
�T�����!5���
��������
��s�^v���t��
��4�����~�������4���������������4���������
��������������}}�{ptr��m�g�}�e�}������������������������M�p�������������������������vw�y����������ۏ�
�
��P
�������X�t�j\���b��'�d�j�����гg�[���L����״�(�
����¯����#��w��m��ݿ��������b���t��G�(�r���|�k�j�>S�l�s�t�������� =���������S�l�s_ti�q�n�����v���„Ņ�3I`QnN�^�D�y��a��g�T�Q��3I`�nȜ������n����;((5;!!6����r��y��������q�h��������n}�����.�d�9�=k��%���)���}���|�|���������|�{�z�v�v��������u�yyv�v�x�}�������������̖ҹ�֐�������a�c���r�p�p�xs�w����z�n�}{������w�v�v�����������������Ӎ⟳�����͂�p�T�l�Zx�e�y�R{��0o|W�b�e�V�H���q��u��O� �z�|�n*�)j4_SnNe]_\]“��†gwkrmn�n�n�y�{��ʼn���Z�lvTdp@�J�I�4�X�^�xԉ�@����������j������w�v�w�������@~�n�y� ������y�o�r�pm�ue{`nY��n�p�r�@�^������r�ss�~�~�x�v�v�y�v�����}y�@u�wzD8{�{������|�z|{}{x}�~������y�z�~�~�}��	�;���$ˉˬ��7y�8��8��S�iˎ���;���	D8������h���������L����p�`� �d|�j�K������='��������t�<�<������vug|c��`��|�[���hf�@�_�&u1�||�~��y�o��������9����������ut�w��KrjR|Y�% �������ڬ�Ӣ�
2�H��������[Q|+�<c�g�v��EU||��zzЕ֦����������dBr;�9�Wd�������Ir�Pmu������͆�~������/���/�0���/�/���0�/���/�x��y��w�`~"�b�|������ьҋъ���[[~!�[�s���'��ҍҋӌ��l��3z���Q��������R�#�k�r�w�:�v�����������������t�v�v ��L�F���T����Ő�����{ό���������x�s�x�<�ծ���������������������
�|����D�B�F�+��D�~�I�#�6�B������7�}IH_I�D�&�\Ӂ��@��r�{�)�5��
�������?���}�����������������������z���������
������ T����&�#?�a�O�C�����:������������)��x�{�}�������������.`�A�<�~���������$��!��	������������z�~�|�}�}��������X�X�X��}s�r�uj~^�a�t\C&OD�I�H�}���������ߤ�@������J�6�	�r�B�00AA00�B��������A�00BA00�B����������N������p��i���4�r��������������������t�����������T�������_�	�	�_�_�	�	�_�_�	�	�_�_�	�	�_�0�
�$��k��t������
�t�
�$Kh\�b�u�D
��������
���<���<�<���
��<+��t��+�
��'��''�+�
��-
��
����
��
�����i
��T�� ���������������i
�R
��,��T[@R
���������
�4���]
�T�3�C�@Z
�4�
�����������K*�����������K*�������������K*����T*��
��
m�������{�z�����s�{tq� �p
���S�X�k�{���E֫���}��]�p����
���FV��*
�K�H�W-C�C���HK���h�@�)�4��
���)�@�hK���H����-�W�H�K�h��)����
�4�)��h���
�������������� ������������-
���@P�����@��h���!����(��@@���P���
! ���@@�� �!������@�@���! m�iP�t��
�����m������P
�����������������������������
�����
�����m��a������� ����������������a����R@	�������@�P(���" ��Z���D��

��$�����@��@D������
%����D�B���" �
@ �@��� �$"���� �@D�� @�$���

(���
��>
���jm������P
���P
�Z-m���m����
���
me
����f�4�4�����-�4����������L�L������m�������x���z�z���M�M��z�z��������V``V��������4�3
���-���ժ���L�L�������\�U�I� �����(�f�c���}����s�m�������-� �-����������y�i�s�n��������������������K�8�A*����,����g��t������x���^�L p&����{'��%�%���{��p�V�J�9��$�5E���E�$�ݑͥ��}��r��:CW*����[������_?P`X=��}��[A�����bo���/
���k�������k�������(��2�2����I�����2(��U�J�U��2�k����������������������������������������������������������d
�
�+��Ԁ
���
��G�����X
��]
��g��Z
��X
��]
��g�4��4�
���
��G�4����
�t����
�����������������T����T��T�����i��pE�77EV@p�1
��U�_�x����o
�H
6
�f
���������I{��
_gg_����n
���7���b��n
���7���b$
���Xr�zspp�s���^?�`�������`���^��
$
�_�`�b���������������Z���[��z�[;�Z����$
��&j�W���W�j��&�[�@�"�U�����z�U���U$
���Xr�zspp�s���k�G�+�P������
���T�v@�T�
�K�
����x���I�L��L����I��������I�L��L����Ix��^�
m����K�+��� �t�������t�����t�t���������΄�PH����t��
��������ZV����t��
˻WL��q�q�r��H�r�qqr-
�hn�����n����u�~���t��
�t˻WL�@�m�A��
˻WL.���t�
�JMs^\�t�lj�i�!)���������tI�K�^�����0���������t��H��������!��ww��x�t�^B�<``uf�t�`W�U�4
�x
��������t��t��t��t������*
ɽYM�$�����
ɽYM�������
ɽYM��w�w�x?�)^�cj]�Dce��s��
���ҳ�xk��.�a������
ɽYM����$��
�18X:b��}}�}��F�hX�a�"���!��
�D�����(�������� �	��������}}��}���b8�1�m��o�9�����t�������t�����������ʓ���������
�0�

�%����nl�lb
!�+�f�z���x�!�����p��|/�7�c�h�h�k+��^���[TH�P�}��.�}{�{MY�ɷ�����7��o��_qccy��4��{�H]���ȣǦ��������ɽYM�|����%npzdc�Z�}!��DR��߼�
�����\Z�j�����ћ�����|���0��!�����߼�X�E���������dk�dNYTMNX��������������
�0PcXR}��6~YV�W��������t���
���
��
�S�
kI�J�X���%��Ba��8�k�������#�E�����
���b�>�����[=�:����-
��
�Y�v�k���2��������
������O������T�����\0�OU�ƀ�������ԫ��afob~h������S��wk�����9�&&�����F�D�[� �����_���J�������ͽ���� ���"QQO;���������2���x)��+?�q$�@8���q+��*;�u�~-%�x�x�x��q�u�utg�f�h�%�'��E���̹VL������*����v�����˺VM������`�����w��z�������TE`ubiq���zup�p�J_e���'�%|ŕ�}���r�����ɾ�ɿ�dZ��,����������ɻ�˾�gY��%����8�>������4
�x
��[�;������k�t��t�T��t��T���l��*
��MC���
��MC1����
˻WLN͜�f´[V�mJ�J{K/�o�qwn�bce��s՜��
����ѵ�vj��+�^����
������d^�]� ��� ��
�b������l�Ք���m�)�xy��x�^H�Cii�}l�\N�J������p�"���#���k�����k՜��͜���k�眫�
������t�������t���:
���o�V�t�t�
���c7�/{{��{���b
�z��f+�!b
l�l�n����%�
�0�
������Ǔ���E�t�^�+��jf�f�l�l�ɽYM{�{�}�.���}P�HT�/�7������q�ͻ]H�{���4��cycq_MY�ɛ�������Ǧ����s�������jZ��\����
�
��!�}�Z��cdznp%������������� �0DR�������������ɹXNMTYN�dk��d�����E��X�ÿ����!��0W�V~Y6����R}XcP�^�v��H��Z��t�|�z��(
�	z]�����������������������}�z�!~�����q���{�y�z�������p������~�"{}~{�=�U�������������������P�?�����������Q�=���{��~�����G
����������4��I���H�t����Z���]��4����1YW3�6�������u�bQ�������������E����d]�"��(
�T$�7��/�V�������,������������'����t�
�0����4�����4����
�'�%�Y�T�8�l
�������9���|����2'�8�
�
�(�%�X�U�7�l
�������9���|����3'�9����40�
��k@���t�t++�����U�U�t�t�t�t�C��<�<�4�4�4�4��
�T�T��������U�U�t�t�t�tC�++�<�<�4�4�
�a�J�Z�Z�Z�Z��44c�����������T�S������������c��������++�T�S�33����������Z�Z����
0��g�Qv����O���y#������D��O��R����K��P��K�������a�XWaaXW�a��������a�WWabWW�a�������� 45! 5����4!�� 5���4!����-���.�.���-�.���.�.���.���.���.�-���.�.���-�.���.���X����c�c��@����c�c�����c�c�����c�c���0���ɂ���������ь�8�`��a�@�a�NdC�9�s�����b�c�����c�c����@���c�c�����b�c���������X�������9��X��E�-�JF,b���������H�5����@�Y�&�n��Ë��49�H�������b�F�8s��̷�������p�z�S�z�N�{�R�{<��	���`�_�����`�_�����`�_�����`�_���9��'��''��'�������pq�D�-A��&�a�a��-�D`qX_1�`�A�M�t�CC%&*)GGbb�I�c�~�c͋�������%�)�G�c͋��������c�����B������ս�_�m�����
�3�P�D�33DD33�D������j���Kgl:VF_-zM��W�S�R�n�\nn��nn\�n�Z�E�C�S�Snn\�n���n����������Ӿ�N�+�F�:�g��˝����V��C�&�&�Ӌ��l�gZ���G�%�%�G�G�%�%�G�G�%�%�G�G�%�%�G�P�8 X�P
�����������*
�6DD6���s���r�p���s���G�4�T��mm��v�)�t�~����̩�v������������VJk}ltu�(�vumm��4�[��	`��$�����O�?���$�d����`���`�z�w~���y�8�M��v��a�\t�i�N��߶܎�`�����4���s�~���nkA�[�"�gwdL�a�G�$l�Υэ����`v�~{ҊꅮK�-�5��%L�
�.��U <�B���B<�Gi�
�Џ����|�r�`��0�+�=� �E��=��������w����	�y���K����w��"w����o����I��l�khslji�s������Q�x�K�)]`������J�'�����������R~����������×b�B!�-�(��pW}��������������^^��_�I����������|�Dc�/ %�)���p}�����[���D�e��\�]�]Ϛ����������F|��E��/�+'���Ǚ�����eT��G��f������{������������H�B��-��*�\��������m��������N�����N�N�����N�N�����N�N�����N��
0�
���
������
�@�j���<�Z�\�
�f�zd?�*���1�"�0��-���)/�!U�=�I�T���AI�z�W�dd�]�,�O��+2�=��q��4��{��E�)��<��A��1���t�1�j�1�(��w�;���;�;���;�;���;�;���;������
�	��u��p�������R�@���@�g�����L�)�w�te�C�#��B��3�B3�C��V���j�>|���肙�����i�5�4�_:�v�x���H|�Q���̋����y�P���B����CĻ�*��O8Q�z� �}y����������2����!��v�����
�w�
���2�!�d�x��������%�%���u���ou������y�f�"�2E"�c��i�P��8�+�H�>��V������V�>��8��P��i��cE����0����}�D�8�F?�:/5mV?�_@�)������*���_AU��m��֡���F�8��~������4�p�w����:�{���h�I������K��6��AOR��||�|�����7���:�:�-�R�=�6�j��snVK�
{Qr2w..�4�$�<��1��U��n����k���;�H�K��T�C�$�[�����E�Eq;rI/�(���6�������F����+������G��-�7+`=(c2�F����]�U��=��P�O�>��U��l�������x
�x
{�����
�T����@�q��]
�Tg�t���1
��i���t�
�c�����*
KWWK��K�W����#�1b�nZ�yO��L���/���õ������B�+��
�h'X�=�-k7yS[rWmK|C����O�]�e�w�,������i����@�R���F˿���W�K����Jv�f��|��������)���}������xy�����k��~�������������JJ?X7gf3.x,+.��46�?�J�G�X�j�kځLJ��������v�l�~�d��o��J�L�N�*�4�A�@�P�ba�u�����������������l����~��x�y���JJJ���������ww�}���IIJ������������������������Ð��N������������~���L����kR�{�m�m�a�U�U�L�E��C>�<;;{mDRs*MSP��w���������m�s}wy�<u�|�������������ƌ���
����Y1��0����Y�
11��22�X�48��C�1£dz���ʧ���r]��^�NJ����qZ��o�e�~|Z����~�����W�4�3�X�V�3�2�X+1fIHJLh6�7�����:�g�f�s˂�u�n��c�o���r�~�E�M�U�U�a�ml��|��ؚ��ѩʵ�����ɩ��ӛ��l��G�@�/��' ��"�vg9���������~�{�~�i��������ye��n�a�M�����������x����x�����,���w����M��������������w��^�����Fy�l}�l�
����6�6���x����t�m|�c�w�&�L�L�+d�t������������j�iJ�4qq����ߠ�������˚�|���O���)�x���O�p�Y��p�Z�,���,��p��W��wT�,�J��y�I���������E�7�w�t����4v�Q�^����6���_�4
�T��T�4��
�������P
����q
��q
�bty��
����%�
��������%�
���
�@����t��T�t�L
�t�to
�t�t�
�t�tD�4
�T��T�
�
�4� 
���t#�4
���
��+������P�P�P�P�����]��w�~�P�P�P�P�#
�Q�P�Q�P���P�Q�P�Q���k��#�4
���
�������]��w�~�P�P�p�p�#
��������������i�P#�
�T��
��
��/�0
���
���
�x
�`���t�����T_`��b�#��#�b`�_���
���y�y���Q
��
�t�3���3��
�V�2�2�VL
'�
�������!�!�yr�r���1�1K��-
��/�H
������!�!��e�+�������T��T���T��rr�yy�!�!��!�!�V@�;���v�����������y�u�w���������{�{�{����s�{sq��v�w�������������������������������t���z������z�
��z�����m�
���m{�`���m����m�
����
�
��
��F���������������>
�����������������v���
���m
�m
�m
���%�������%�����W��B�S�	q�g@\LP���{��|�����������@��)���҅����%����������V�����`
���B�B�B�����
���%��������%�����
������������������������������������������������������������������@w�\�����h<��;��v��-�;�������ݯ].��Sg9G��FXVi_d�:f�t�l�\m�M>�U�:\!-<F<C;D�)�Ե���4�C���5��5��4�C��3��.�N�$���r�j����m��2��	�O�
���W�������q��q����q����t��*�Q���t������
��4�������������+��j@8ߪ�rr � Rr���@����L�iO;����{e��S�w�����)}5�T��Ԓ����������?����>��B�	�o�-�Bvˌ{�b������є���������~�8�������w��������0�R�8�#�0�F�2�SXteg��J�]��l��A9�H������H�8QXi[s��y�x�y����\��HN�-�fX�R�22�<�G�j�m�kk������K�L�����Ь����̬������[������H98HH89H������,,�K�UU�K��,|����������}N�v����������}�|�u||��a8H��������H98HH9��������v�[�����y�-�r���n�
��� �f�����������=�q�����F����)�����?��
��`�9{��d���P�3o�&?����(���$��������W�2����
����3�C��Z
���������������`���@]
�t	�t�����T������0�����!���,���J�����J�J�����J������v�'�k��$&�8�C�����������������P�B�4��n����!�4���8���V�����%�%�����%�%�����k��,�H�����T�����4�Tw���������/�+�,��{�{�a�{��������������L��{�{����������
���=��=������

�

k�
�����F
�o�~��������|��܏��f�
yh|lid�boo��p�������r�mmrrmv�w���~o�v�F
�����I
�����������v���	�o��T��~�������������ƣ�������@��V���5�!7EV@p �-F�1�M \Z�G#�n'���x�!������ϼ� ����1�-�+���T
��S��(
++EZ��[s�p�k�������������������T���������������~���O�@�������������G�A� � �B������H��E��B� � �B�c��
0���-���/���-��-�-�-�-m�J#66"���!���!�!���!��p[��m��������m�V�J�E��4�6��H���`�`��Z�[|]~c�`�}�����������������p�G;�-�7���-���m���������{�<��8�Yn�,�=�a�u�K�K�v���Q�.�-�Q���j�K�s�[�hshs�\�h�F�:87s;\Fsh�[�t�����������������3]�-3�s�\�hsht�[�h�"����e�E!sh�\�s��������������-�3����������~�+��**���*�����}���Mz�]�c�.���p�����%��$��f���M������5�5�2��7�7�<�������&�������U���A�+��+�K�������q�5�P�Pm�;XY����;����v����2�
��,�c�T��T��:
��,��[��R
���T:
��,��[��R
����� 
x�t������t��t�
��
e
���:
��,��[��R
���T�� 
��t��t��t�ԙ���t��~S��(
��$�t�����
��Fh�͉y�y�}~����������������������p�j���P���P���jprk�5����j�T�h������c���
���c�����t���������t��������
�R����*N��^����Ȗ��*��
�R�D�e������jo���k�4���������p�h��4�hplh��/�X
��4�X
��9j�oqj����h�p�����4���������l�h�\��ƙ����;2
���;ǾbP��0�&�M�	q$��;1��
�;�$9�	q&�M���t���������s���������T���������������
���
��|~�}�S�t�������������K����|�}�S�t�������=�������u���������=�������t���������������t�����������������������t�����*��w�����)�)�)�������(�(����������.��������������d�d����������Z���N�����N�Z�Z���N������N�Z��
�Q�+������A�@�A������A�@�!�����������[��������	���	�������[�������P
��������������P
��������B����
�����
����a�
��+��1�4wx�{���������~}�g
�4�������t������4��a�
��Mr�����&�Ȃo�l�y���
���������������_��l�Z����b�����������
������&���Z����_��l�Z���b��>�������T�t�4�t�9��lF9y4�d��;����1�?;�U��Ғ�/����t��t����<�%�����%��<����"SKj<5�e�Z�>���:�$�����������$��$=�:���Z�>�e�j�S����m��������$�������5���������������������������4��4��4��4��q�����(��������������f�?�f�?����������(����q�*�*���*�M�*�*��w�I�9�(9II9�(9�I����������*�'
�w�����d�A�4���6�7�M�������R����*�M8�=�I���F��[-��2�	�~�����������
�0����������X��P����d�ow�����4
�4�����b^��hvii�!r(u)����-���v�jzfj~�����qs�����o�q�z�az�qHoC�wq�s|q�����j�z����������)�(�!�i�v���������i�#�o������#���v�i��%G�������������������T���;���;�;���;�;���;�P����
�0���V�v���i�W�P�V��gu�m�l��w�a�|��������|�q�����{��c�Y�il���i`d�H�_�_·���I�5�)4�����y)Y>B����ݮ��U�1�1�V1h8SM������$�w�h��#�h�A�Q�WƇ�����¹�Ð�������v��Z�]�����;�();;)(�<���&�U�1�1�Uԡϱ���B.`������������	�����eSGtCm�$�t��]�$������t��t������R��4'�4����$�B�L��8��,�L�9�}�x���9�����������������������`Q^fxOoDk3d�G�������Դ��"��T�Ua
�������
�
���v����s�X����Q����������F�55EE65�E��������������������<����xi�UNg�s{�����f������<ϖ�Җ~�h�r�8��4�W��{��m�X�x�|������������c���������������q��J�_�s��'�*0����󍂎������i�ZӵԵY�n��5�U+������"�C��������������~��?��i�h����y�v����x�n��n���n�6������������������>��������#A0�W����9���
�|�x�����������uz�l������������Mx�|��l���������T�(����x||x���x�|�������T�*���0������(�=��`��h��Z�������6��,��
�L�8��6��-��
�I�8��6��,��
��������_
���-i1Yn��||�|jj��k�8�d�J�!E�+z�$�9�9��$�+�!��8��������������YisV�>�c�r�bxy~v�z\\�\}v��{~�^�ws8~644�6�8�w�^�~��������������y�b�r�c��>s�3�%�����������p�[��rr�c�r�r�kii~kssqr�b�r��I�I���������V�*����B�+$$c+CB�~�����I�I������%�%�U�a�a;�U�%�%����
�5�?�?H�5��
�~�����)���ԫ���
���
���
�T����t
������������t
���`�
�����5�!J�����
�J����n�����
�J�����
��������������w���N��k����+���m��T��T�T���11��������W���
�E
�
VNMDH>>3�5b
d�-
�E.�
���������:��������V�2�2�V�V�2�2�Vd�������'��c���U�/���o�c�uovo�c�v�?�%��	q��|����������~��f�F�F�
�0�.�*o�c�vnvo�c�v�&��0q��|��������������K�T�i
K�T��T��d����h�jw{i^u_oYln��u��s����
��o^��i�w����hY_��u{�j�h���������������w����u�ji�>�q��w�[��GA�?�ij��k����Œ��������[�V�(1g=V����������i�j�N�bi�6�%�Qt�b�(���e�nz�f�l�4��u��~������d������p��������������"������v�[��~�}�����d����t��V��l���������d���v��tş���W�4��t�t�����������}�}�}���������"��C�Vt[�R�t�����}~��[tvR�[���C������lj�h\^��a\�Qwt\s[�R�sj��z������\oUwQ�V�f[�VT[��g������d���k\c`^ebi�O�bt���������6��Q��b�(��T�e�����|�������T����T�&��&'������d�q���������:=2G<LCYR��hn��@K�5�������
�$������������c���{{�q�{�<�<�{����������{�q�z{�c�c00�E�3�'�ҥ��}�}����{���P��RH�L�������byz��{*Tb�#E�.ᕖ�������������������z�<����������_d�_:@sgD�������_�^�_�*d��J�A�	B�ɴ�׵�to��������'W4p�w�ο�š������������v���W���X�M��u�Y�������1�A�3�g,{ ����հ���������	y�L�� �����Z�=�x��s���a��v�^�������|�Z�Z�[k�.k�/k�.h�e�m�f�$��6�k�+������ː]V���$���Iq��o�~��QN�ڈ���7�.�;�������gh��h��V�N����D�<��������{B���3^w����/ۍ�ֵ��5�b�	L�Q*��G���J���W���}��ϗѝ�ڏ�����������y�������� k�T��U���nn~ryj_�M�l�N�y�|bm�����m��T������]bj[��X�]�~��-�u�����[_k[��T�Z����K�N�W]dW�T��]��T��kY�acYU�a�������ö������1����r��&�>k�f�b��r�(�yw�vE�^n�w����������������"�'h�R�cl`j�O�b�����������e���nf�Q����a�WT�`]�T��t�i\~{�&�X�U�3t�O�Zq]s~Q�[������8q�Q�]sZq{N�\���[����k�P�`m]l�M�_�����������|��r�(�n�h�d�&�>�l�e�c����������o��������v�D�d��$��H������6��}���z�~��������t�1��Y���b��������Su��������\�������������������q�����������P�����y��������������,�:|��`�B�/��O��������~���T��a��KJ�~L��y�����y1V�w����y�:�p�I>�/���2ndgaWr�s�w��	��	=������������!�Y�	2��R?�2�"��?��=�.� �O?��U�����<���<quuqqu���u�d��dV�Tqu���������"����w���+�������B�~�o�ftaz_��V�SR�t�9�K�x�x�:�K�t�p�;�V�w���x��������QM�M���t�����#���"��Y�(�)�������#�`�Q�x�g��i�hi��V�K�����������l��f��T����'F�b����(��-���]�������ݸ�u�W�h@JM;uT|NwbdghsK[b�e�i���(���{q�}P#�4%Sa��j�����_≖�����������`�/�7�b�b�/�6�a�a�.�;�c���}�}p�m�m�lj�i�0���+�.���1�0���.���{��������\�YY�F���C�?>�AD�$�(-�}}��}�[ׯ���M������g�Y�S��T�*�*���l�SmMrWJB`e��n�ū�)���c1&E,u|�����Ѱڡš�����X�MN��9*
�T�(�T�3���3�T&����V���
��]!zl�t��ahqr�p!s,��o�"pr�rg����l�!�������������������|���������������������N#��l�[he�e�e�����������zpK��^������7�L�w����}���� 
 c�b��*
�[��)F3�RtZ�>UK�L�L�����dl�lh]rd.�^�7|�}�}\".% _q�q�o�y��~yG�Ao��k�zAï��������w����P�W�����������~��|Ԫ����A�����y�o�q�q���0�[�������]y��Z�igmpg������ː�����t�@�6�)�H�����W�����������\!zk�t��aiqq�q s,��o�!qr�qh����k�!�������������������{�����������������
����N#��k�[ie�d�e�����������zpK��^������7�K�x����}���p ����
		��
#`� R�N�{��M�{ ��xi�wi9�#G�s���������E�����}T������������l�+������{��X�|���������V������}������2��h��8p�ihE[��&�Yr!h�g���R��o��q���������-ε�ߝ�A������ ���U���Ǿ�����Ծ�*��������}�t�~�x�q��i#�E�3l�g�c��2�F�j`�\�Y�=�u���r�r�qrq�s$���>�tY~\w`r�k�2�Fclgglb�E�3�j�r`w\~Y�u<����r�q�q�q�rr%����t<�Y�\�_�j�F�2�b�f�m�1�F$�k�q�w�~�v}�����������$}���x������$�k�1�F�������E�2�j$��������t��}���������������������������������%��%����%��%��%�L�X�0���X�/�X�/�������T���T����T���T ���������&�O�,�-�O���O�,�-�O��jj��k��1�����'��
�'�-���4�n����O���x���q�i�ggg�h~ie$DN�y�W��������v�w���#1���rH�e�%����:qzt{s����������[����s�,�w���������!���w����"��"��0������t�dcubhg�c������8��cliccm�������������id��@dmh�o
�id�0�B�cli�o
�id���Bdlhccl���������id����@��Y3�W�,��zh�ehjwmy�xj�hhj�
gk�
ditiy�7�4�k�g����
}R�QP��t�����d�,�c��*�p�q�q`NAp@�`��J�Q���zH~GF�+�/�2������������rY�N�'K_IFF_��ʷ��зIL�	���P�&0������h�Fyz��y�\\�[� V��������_�
�J�P����m�z�
B��pg�fsvy|s�#L���������c�|������������gV�XTVtbe�wv�v�N�A(�$�h^~mo_��~���|z}y~x�|n�f�{D��BY�L�\�'�
��>mZR{Qss��t�N�]�wig�g�X��n��Ϥ��O�Tͮ����m��w������m��w������m��w�ŷ������	��v�����|����iI�#&�bS�S�!�����������m����v�vu�� 
�
�D�4P
��3i-k�b�US�T34��5�II�I��yq��߬����
)�
�
))�
1�9�j���4��������:�P�*�������������C�3���������+�������K��}�������T���
��-�M��u����jmatvhj_|[�t>4a@�kk[|^4<��N�����hc�_���/���2�2��ģ��֖k��E�b=0���/���Y������� �-�"�$�3Q��t�l�Z�[�Y�f�b�e���7�]X�U�nPI"�R�g��ɰ��e��������;��o[��1�Hw���T��
�T��g
����<��R���;JLwgV�VL�J�	�B;����95
�4w�2
��������
�N:�9�����՛ͻ����ů��F��4�O
�cb�c{������"犖����M��88�']L�����"/������f�
��UA�������=�0���;�}��������������Q�<�0�^�'�����0����ř����}�W�}�w}�;O�<�0��4
����
�b���w�}�GU)@�'�eY(.E�������"E(�Y�"�+�G�}�v��|fW�}�x���?�r�?��Q��<����������ŕ��z�E�٘������+�0��@�
�4��|��c��������������"��-d��c��|��.�4��4�|�q��\�N���E���E*�#�������"#*;QE�"�	���9�a�Rqs|ig�4���v��������ߟ�	��ތ[��l�i����f�����k�����8I����`�����Z���\�����u���ρ�6�ٿ�������<�������0�J���A�e���c�i�>����z�8���qF�l�;�7��M�t��H����������$��v�"�?-�=���x�G��n��������S�-���������u�������������������b��������7È������
A���������
������w�c�������-������E��������f��7��-^���������D���Nf�������r������x����������������~�������5�8�������~�O�������	 �������K������������(JD;��;J��E��Y�Fk��T���«��F��Y�E�A���#�	��#�#�	��#�$�	��#�#�	��$���R+��7�TS+��V
�T�}�y����� �
���`
���������$�	��#�#�	��$�#�	��#�#�	��#[�pdIH[<<H��I��Nm�}�!7�5������'m�w�S�@���T�|�z��J
+���J
+��r
������@�
��
��G����������������
�x
����)4RMD��DR��/��@�2o��[��ͻ���2��@�/�1��$�%&��%������%��1��:
�ԩ
��R
K��w{{w��w{�����������{wS��::
��,�u
��R
K����X
�@l
���A+���?
+��c
����������V���w
���)�/e�@�2oZI[BBI��Z�2e�@�/4�M��������1���%��%%���&�����1�Q� 
���{�w��w{{wSw�{���������'
��1
���
�����M+���L
+���
��
��G�@��X
�@l
��
�4
�������Y�X��y������y��X���O�:�>�+�N� � �����>t�:��O���O
�����
���%�%�����%�&�����$�'�����b���
���%�%�����$�'�����#�(���
�����Gg4�(�K��
�K4�(�Gg.�S�1�>�P�;���;�>S�1.���
���F���
��
����ڨ�����z�z���'�.�<�!b�V��[�b�-�;�P���P�-�;�b�[�V��!��E�$��@��h���h�
�?����	+�����Y�Z�<�	[���	����Z���Y���+��	��
�d
��������0d�A�1]ZInBBI��Z�1d�A�05�K��������.���$��$%���&���������T�
`������X
��+����S
�@g�T�
�����T�����������
���B[PP�>P[����,�c��s��£�����,���P��
����t�
K���:
��y}���j
K�y}}y�Ty}����
K���
K�����[�R
+��X
�@l
��
����9������t��������k�,�ccTsNNT��c�k�,�B�P��>ƻ����Pn���4R�T1
�T7����}�y��1
�T
��8
K�
��'
�T1
�T��
����@�
��{����X
�@l
��
�����o�0�v��@��0��<��;u�^'\�	=*�S<�,cXP�*�������"����c`�[����h�3\�5��j�����j�5<��U�gF19P��R��E���i���j���+�#���h�d���$�є�������Z�ۯ��ӄ��h��w���*�K���	�(���Y&�Z�v�V�^�e�1�.j�4�E�9��"�"�о���������q�rQ)�`j�#�KE�[�|���z�0�Y�`�7�~����������?�g
��drlf.�������k���g�*��{W�r����r�Z^mwvl[�s� n���jb�gn�z��������h�y�l�qf�S���B�[�<�	��.S���������������h�t�v�i�����K���k��������Tp��x��vn�mn`�j������|��������k���f�Z_��Fn������������ʬ��Ҟ���gn�����|�rR�M��H�h,�Irqprg�^�s�A�M�/�)���8�[P�D��0nf�	�iv�q���Xѵ�+��D�D�
��y�Znb��t�9�#��t��x��
�3���u�s{����q�[���Ƣ��᳚�s~N�\���
0H���"
H���"
H���"
H���"
��1
��
��V��K�T����T�6�  64"�
��E�#��E�
�E����������P�/"�@���Z�<��[�@�E�
�E�E�#��[<:Z�������
���T���T��T��@�T��T�x �T�)�������
������9�
__��&��X�.��$��
����K��p_�A���;�__��9�~�������2��M���@�n�h�
���M*��
�TK�����MT��
���@�n�h�
���M(���@�n�h�
���M P��
��M@ ��
�@��
����i
����������@ ��T��T��&�D�Nu�y�e���  �}������������
���
�V�ҽ� �T��}��
�l�j�l�l���R� ��
��~u�fH�7�Nuu�������a���������������a�������uuT�A�Mr�\J�C���+1
�7����}�yy}}yy�}�����K��}�yy}}y���+
,
@�j�
����������v��������j�I�I�J�#� �%B��z��Ϝԝ����̒�����<�L����Ro�s���x�z��c������������������������������e�%�k�������������������$�l�d!�������|�{�{�t�u�v���������\�������|
��k�����~��}���l�r�����>�+�+������������������6�Y�����F�$�&�E��{��Y�I�v�['?E�������l�j�o�~�����
��(�9���
��������������������0�tX
�@]
�T��������������
��
�����
����������������+����������X
�T]
����S
�Tg�TZ
���c
��������k~~w�~��}�}�}�}~~w�~��&�&~������}�}�}�}~������&�&�����~�}�}�}�}�����~�&�&�~�w~~�}�}�}�}�~�w~~�k������������=��=�=�=�=��&�&�
�=�=�=�=�
�&�&��=�=�=�=��&�&��=�=�=�=��&�&�}������������
����"����"�4���
0����_�}�2�/���b�����w�������_�1*���S����@���H2sp�o��ȫg� �����������z������z���������9A����{�e�z�p�{{hh{z�q�z��@�e�z���������������@���z������z���������'���L�`�F�F�=1<1�#�W�X�
����]�vv����L;�3lK@+�@L�V���	+�<������q�U�]�%��F���������O�^��e�PV���n�`�r�'s���y�sfX\Rq8dsض��������������s�F�%����Kٮ������J�}�3����������х�b�s�lt�[�`T��������v�uai4�.�:�e��?�2��%��ٰۂ�~�%~��GbRSl��g}^�`�s�t�`�an좾]�4�jމ�Q@���.���&�%�����&�%�����&�%�����&�%�����	�Y��J�	������I�������8�/����������-�p����R��%�s�z�w�8�����&����%����Bpq2z�r%�����!�����!��2.�l�?A�����R������჋Ί�t�,�����ә��$j�"u/}s-����|�Z�H����8�����	��	��
�H�.�w���_�������������pu�j}���$�x�������������l��l����`��?^���� �l�2�B�A�A��q�3�l����۴����l���8��o�km��YQ�SBjt��v�m��l�	�.�����ڎ\K��H�qX
�@l
��
�)����u��A��p�6������w�Y������l4����~�y������U������������������ѯ������W�?Q���Y�m}�ptjh���������F��E������Px3|�����(���/�ŏ�4��5��&ϻ��ą���f�am����J�?�j�ԋ�<�#�>��n����,�����i�I�Ι������J�\�D��Hհ���4����.���4��g��"]vzuyia=sA|M5#M�o�`Ba,����l���#��:��P�hC�t���"���]у��������H���������������ą�����������3��B��̖ڒ���������/���q��u�=��hU��U�v��@i�����/��
:�:��hU��������yr�w�>�g���g��j�k>��p���D���L���U���x�z�����x�z�����x�z�����x�z��������[�a�����������7���������M��z���R��?�ݙo����b�����4�~�{z����+�4�+�4�+�4�+�4�+���
����T���@ �
� �
 �
( �
 �

 �
 �
��
`�
@��{���������3
���
�@<
��A
��������P�������
 ��������
��������
�P�������
��P���� �
�x
�7ޜr�8{��M���1���1��M�����ז��@�;��N�����y�y�d�my�N!�4���p<%�����0���d����*�TK���j��j��T�*6�L�d�������0%��p�b�;�4�N�m�d�ylym�c�z�N �;j|@�������������1���1���8�r��z�;j�N mz�c�m�m�����N�T�4o;�b�����0���d��SL�6�����j�c�j���K��S��d�������0�<��o�T�4�N!�y��������m��N��
��]��]���z������Ϟ�Ҟ������ԝ�������x��x����y����5��_��_��_�Y����t�	~�r�l�3�/����������������r5�l�3�/������� ��� ��H���r�����vZ�j�G�
��?��C������-��������T%����%��\:�R�R:�R��_�D���D�D���D�D���D�D���D����?�)���|�8��oC��A��
�/��-���$��"�,�B�5��|6���-�G�c�K�dԛӘ��
�p����y��|���|u~w�'��~rb<!��ێ��j������w�w�s{��z���}qr^r}d�0�Gة蘵�и۩�޴�r�~�v���~�������������w�v�y�������������y�7�-�8�����<�ÖC�K�l��w�x�x�w�x�w�������������|�l�t{u{�l�t�t��������{���������h�h�[�sgsh�Z�s�r�����|
�9�q�Y�fqgq�X�f�|�f��������r�!����|��b�R�$�������I��=�X�,���3�|�Mq&�h�8 �?�4��ye�R�R�Y��Ni�ꏏ�������]ȵ�9ЉОȶ�%�[/�+���(y�f�qypx�f�p�p��������y��|�3����u�u�u�}u�u�t�}����������H��q�q�q�zq�p�q�z���������,�N\u�\�gugu[�f�g�������v��~�$��x�x�w�w�w�x�~���������S��w�b�nvmv�b�m�m��������w���������������p�@��
�����
���
��#'+/2<@EJOcgkoz�����������BFJNRY^ly����������������.9��������&.9=AFMQZbfmsw{����9BJNRY^u������-z������������<MU[agos�������"29@EN^px~��			 	V	Z	_	�	�	�	�	�	�	�

	



/
>
F
o
�
�
�
�
�
�
�
�
�&,@es{������������� -:KUcglu|������


/
O
V
Z
`
j
o
u
{
�
�
�
�
�
&Dbs~����������������-18>EKOTm�������������� ).7<DQYns��������������%:@Ui{���������������"',1CUZl~�������������$(-2BHP`gku{������������������$,2APWZ_drw}���������������+8EOU[binty~��������������	$).38CNY_doz���������
�<���<C
KFKk�r
=oYB;�
��E�#��E�
�E����������P�/"� �@�Z�<��[� �E�
�E�E�#��[<:Z���@���
���T���T��T�� �T��T�x��T���������B�t)
�
P
�����t�*
�i�@���E���X��X��E���+y}}yK��
�.
+��E���X��X��E���P�
�
+
.
' 
�3���3y]����hnnh�}�y���]�]�����]�]���s4�
.\��2��A
y}�B
,
F�TkB��B��a
�U�)
y}}yKy}����������}y�TN%�
��=hnnh�hn���q�F
A[
���]�]��E
�����}�t�����	�� �"�������������"� ��	���M
-
\
�
��
���������������1��<�0
�0
+������
������������
����������f�f�
��}yf_��"-
.hnnh�Cp
�}�y�T(
���-�V�`��C�3�}�y�Ty}}y�T�
c
���|�zS
�+o
�+�
��D+\�T2�TA
���������� ʆ��iimdod���������$��@�~� K������z�&�w{�y�yw��}|� |�}���x�z�{�wa&z��������K������������$|��'��������������[�����[�!���!������oZ�S1���
0
[��R
��Y�W�f�fG
�f�fU���
]
�@gw
�TH
U
�
3CC3X
K]
+>
��T�Y
�����[�R�Dh���1�
��T��T�T��G�������_�^�X*�D�4�
�4D�*�Y�_�`t��������W
����!�
�'��''��e
������
�
�T�T�
�
�T�T�
�i
��h���h�
���
�
O
g
�B
�4�T�T��=�T�T�
y�}��7�!�x�!hD�:
�,�����
�J�����J�4��
����������F��/�B��������
NPuc]�T<�O��d�
}�}�|�1B&�2�B����
:����5
��/���%�%���
YY�������������
�(
�f�f�����������9�>�!����
�
�>��9��U��G�
��@���V``V}�~���d�3�f�T�w�@�t�(�s�u�w�N�5~��w�}�+�}����PV�
������{z�g
�����:
�T�
�TR
�]�Ky}��Hg
�TB
�4�$�$���G
��U���$�$�
V``VV`�����
`V����!�_��I�b�	\�;COLD|yz|�r����u��{������������A��0����������%�����{[�k������@�hhn��z|������r������4��~������~�4`_��`R�`e9C/R&a���žҦ�4��A�'�"�)����~�4���U�f�f�
,u
!55!=
�=
����������T-
�/�T���
�����
�{�z���G�C���C�8�=<�<�8��C���G�C��������� �VV�����z�|�Y���Y�.�:�t��:���}
���&&��T�O
�'��Lf��eN�z�y�z����#� u��"������������=�1�?�u՗����f�f�
YY����
��Y��f�f����
������&��������/����]�]������1����a}�.
�M�M���Y����;���/����������������������a�3����:��������t�������@y
������t����������
g�Z
!�5�
��\�|�\�?�Z���E�ԅ���c��*y^H�(�ym�|�[��n
��U
��t�3
�������Z�Z�r���EQQEEQ��c
'>�
�0
�4Z
V``V�
���������~����
�����������������������z�z����3�'�)������������
�����{z�4���
�+�<���<�<���<�{�������.�=�=
C
�9�"��T�M�5���������{��~~�D�;��i�
�f�fW4��x
�!�x�!�Q�E�
���8�
���8�
���8�
����x
�
���i����
��������	����������������	�tkR��E�;V``V��<
��A
5
��/�
R��T�&
�
��
+
,
3�
��� ���O�>
��������z�r��^�`�������`���^?*<�씒������<�Jڔ���>��������@(
���
�St
���}��
�����
���
X
�@]
���-
���
����
������}y�yr�rrr�yy�
��(
���y�y��~�w�~~����������
��������������������[
�
���t����������t���|�z�@(
�Tz�|���}D}��}������������������RD��,�l"�7o�''��$�{��������������������������1���D
�
�������
����!K��
��z{�����8���T���(�A�(�A�(�A��m����t��������K��x�x�t�w�����~��̍�����������t|~�}�:����@�w�{�t�s�o�yx~����������R��1
��7�OI�I��gX�!�!�gX���g��!�fz���\�J�$�9������:�l�A~�w�]]�w�~���z��
�
m�m))m�m�)������{G
�YU3-
t������a
�h����N�0����������K�m��
+��
�)vP
�\��
��t�4���4�
�
�
��<
�A
���	,,�	�	,�	�	��	�	�,�	T
���
�b
�<
�TA
����F
���}t����.�+ݭ�����������������{����`�T�3���3�����V��@�
���t����k�r�crr������@�
>
��xy�o�ts��{�SK(
����
���������tp�
�����y�y����:
�������7�D�$�$�D��������������nh&�T*
�����5������������������@��$����$@!��quuqqu���;���;��uqf���
K<
�����p�������
� ������QEt�����'�rrc�r�2
������TSTdJ,]��շ����49��arwwvyr�/��������(DB%$�A���Ό������%
����`���u�ttu~w�c��cl��������q�t��������=�h�F��� B�4������4�����
��
����V
s���V�������E�z�*�6�z�*E!�!�$��D�D�$�
����7�T���-
R
����
�5
���y�y��C
�.
���@�h����������<���<�<���<����o7��������T�T�_���L��d��h�aahi`a�h���������
�/ti
�V���H������
��ԫ���ԫ��
��
��]�������������T�t���.�;���;��<:�Z�����:����3}|������A���P
3C��ɽ������Nb�a�]����
0�$�7o"�7�l�����
������������
��
@���
�����������������<�<��y}|z��i
�z�{�R�D3���$�$D�R����i�p���������w��������
����
E�Q��y��
���
���1�
0
��
fM�@�
jm��q�����������,�4[�
���@XtxmihbW_)�RK(
t����:���z�{���������z}R��%���7��tC
(
�t�
���z�x
����x
�
!5������x
����&�%y}��������_g��������g_��
����
��*1���0���˒�����������h�����
��`V������m�����������[
ˋˋˋˋˋ�7���ߋ�7�������
K��������[���L����z����������-
�-��������������������Ty�������!�5�����z��+���&m���/�%��t��~���-���������\�$�"�W�T�*��������n�h�t��t��t���v��������������#�#��
��	��h��3��3s�pyrs@ ��  ""
	���x@8 �����!"""`���>�N�^�f�i�n�~��������������'�(�.�>�N�^�n�~��������������>�N�^�n�~������������ �����!"""`���!�@�P�`�g�j�p�������������� �(�)�0�@�P�`�p��������������!�@�P�`�p��������������\�Q�A�0��ޕ�R

	��������������������������������������v^��%|�_<��O<0�1h�����	�	����	��p��v�_�]�����y�n�����2��@����������������z�����Z@�5�5
���ZZ����@���������,_���@��������f���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-������b����
��� ����5�-�8�����@�D@���,*@� ���������	m��)@�@	 	' D9��>dU*#						�	��	����R										�@	e�	
%RE	 		$�� k(��D�'	��	�%��	�%	��	��0$�.�$P�//:/K/Q]�	
���	^�	U	k	"y	U	$�	U	��	a		y	*�	<�Copyright Dave Gandy 2016. All rights reserved.FontAwesomeFONTLAB:OTFEXPORTVersion 4.7.0 2016Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/Copyright Dave Gandy 2016. All rights reserved.FontAwesomeRegularFONTLAB:OTFEXPORTVersion 4.7.0 2016Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/PK�uKXX�Z�//spiko/assets/images/2-col.png�PNG


IHDR,��U
ktEXtSoftwareAdobe ImageReadyq�e<�IDATx���Ѫ0���
؁uY�uفd�Dž.�8���\ 0��72qj�?�&�@��,�@�,��j�j��0\)E����5Փ���`� X�Ϛ�p��c=�f^��������` X� X�`�`� X��` X� X�`�`� X��`���0�}���*:]o�����O�[r`������K/��ٌL����ʯ�^�U�73�f�}���@N��`��w�����cm���%4?��?d^����tv,r΋�5�'X�` X� X�`�`� X��` X� X�`�`� X��`<��7p���B�������o��Ժ%�Z_�K)oϹ������k9����5[u}3�nfڇ=�J�$X�` X{�K�`[:ֆm��]B���C�e�.ax�HgW�"�[px��`� X��` X� X�`�`� X��` X� X�`��}���*:]o�����O�[r`������K/��ٌL����ʯ�^�U�73�f�}���@N��`��w�����cm���%4?��?d^����tv,r΋�5�'X�` X� X�`�`� X��` X� X�`�`� X��`<��7p���B�������o��Ժ%�Z_�K)oϹ������k9����5[u}3�nfڇ=�J�$X�` X{�K�`[:ֆm��]B���C�e�.ax�HgW�"�[px��`� X��` X� X�`�`� X��` X� X�`�`��_8g�X1/���`4�nɁ�VO��"X�`�?X�,�@�,�,@�@��c�`q|��=��IEND�B`�PK�uKXp���spiko/assets/images/3-col.png�PNG


IHDR,��U
ktEXtSoftwareAdobe ImageReadyq�e<nIDATx��ٱͫ0�Q|�� se@�b�L`�Ҥ���
��'�SR ���\�aH�	�,@�@��,�@�,�,@�@��o��Ŭ�6O���v��8 X� X�`�`� X��` X� X�`�`� X��` X��	�8����=���mO������K?������L��Z><�y�����#!��`� X�`��!���Lz������%�����kR6Ͽ��vw$�,@�,�,@�@��,�@�,�,@�@��,�@�^��x>��m{�﷿�3�_���w�?h��eR������on���	�4,���
�%�f�k���'��-����=<X��y�����#!��`� X�`�`� X��` X� X�`�`� X��` X��F��qO=�m�S���i��g��Ak�/�����m�s���H�!X�` X�n�-�7�^�n>�Cn	�������on���	�4,�@�,�,@�@��,�@�,�,@�@��,��5���{�o۞���o�L��~8���Zk}�T��|xl��=`wGB 
�@���uCn	���Z7t�I�rKh�kw֤l�s���H�!X�` X� X�`�`� X��` X� X�`�`� X��`��z�;�Y����a�`� X��` X� X�`�`� X��5�0DZ�{F{EIEND�B`�PK�uKX�îspiko/assets/images/4-col.png�PNG


IHDR,��U
ktEXtSoftwareAdobe ImageReadyq�e<�IDATx���A�"1�Q��Xp���	�Jp� ��@�@M옿��#�.�񊼩�6�c@�,�,@�@��,�@�,�,@����^sZ�n�����&����`� X��` X� X�`�`� X��`� X��` X��m�p;����|u�+�������5�Y��\r�eLJi�?-��E��M�`�N��%�,@�,�_��S�W
z�_Zm����v���)a��~��A[آ���&n	��,�@�,�,@�@��,�@�,�,@�@��,��m�p;����|u�+�������5�Y��\r�eLJi�?-��E��M�`�N��%�,@�,�_��S�W
z�_Zm����v���)a��~��A[آ���&n	��,�@�,�,@�@��,�@�,�,@�@��,��m�p;����|u�+�������5�Y��\r�eLJi�?-��E��M�`�N��%�,@�,�_��S�W
z�_Zm����v���)a��~��A[آ���&n	��,�@�,�,@�@��,�@�,�,@�@��,��m�p;����|u�+�������5�Y��\r�eLJi�?-��E��M�`�N��%�,@�,�_��S�W
z�_Zm����v���)a��~��A[آ���&n	��,�@�,�,@�@��,�@�,�,@�@��,�@��՛�����,�,@�@��,�@�,�,@��
0��
�t_z}IEND�B`�PK�uKX��5��	�	spiko/assets/images/boxed.png�PNG


IHDRB��d	pHYs�� cHRMz%������u0�`:�o�_�F	IDATx��}pT���w���$�M`F�H��ӂ�Bł:T�ȀEkK+�J���Z�P����)��B�������lv����Ħ�T�2�-����}�:�=�<�9���A�>��ѣ�.�u��,2�u�X,��x<>A}�no=z�"]�9�u]b��*�_h���,6�u-M�u���t]75��Č�]��:鸈|�,�B�u�8�@X�E��N��0tB�>��H+��F�����Eqq�g�VJ�hj�ȑc��K(���q�ԩ��f�˦�[xj�3��a�N4��:�M�L($
!"�@]]�V�f�ҥض�a�_kdx�GNv6Ç#�LR�t9��I�99�\x���m�y�2#a�231b83gN�xc�/%7���K�efM�܅�R��;'o]N�ωs<�öm�Dcc�g|�!��o���9��v�,��Kt� ��óX�J�3233�4
��H�R���a��~B� ��f,�jsND����u]ZZZ�mM����h햖L�l{�<��gd�1-�0дS��S}j��kضMuu5�e�i��Fs�~�4vl����ٽ�{�BVV�d�޽�Gٮm,zb�@�T��t:ͰaCy{_��)�D#��s븱l|m-�y�b%K��s�Θ���8x�ǐ�W��՗�xg/��6��E���qT;�v��~�A8��R��NŌ5��V�ZMcCќ(��~.S&�Ŏ;��`[�ng����lќ(�6m��>��^˨Q#I55Qt�y�7s{�R���1�6ms�����p�B�-��}��t�����СW��e�/Z���%�ƢD"\�mqt�':ċ�TOVN�L�<U\ו*+e����6�޽�DD��$#�+(�L�8EDD?Y":	 ���r�DD��?_ "]/�.�TTHmm�|�WY�p���%�]?B����Ҕl�e�WHF8"���h�HI�M�2��ҵ��?p@jjj岾���\9h��|D��\‘���|��/�,�>�55���!C=��!���X��Y�$E�i8v�e�W�H41p���**�������O-_�ر7�h�][J0#�W�#3������!�t�}#�x���F�w�F��t�k�.<��*�n�'9�8�y$M���I��3�#4�PJ�V3{�l™9X���2��yL�{���H$�L�` ��a��&���E��~��ּ�
�x�n��]e�{�1|>�P�x���Y膎jS�
� �p~Q�.�1M�`0�R��_Bb�m�4�������x�ŗ�0a<]/�B2�B���,B�4
��i��\F(���|
�),(���cx��m���f�w?���(�ǡ������n�v��:��A)E4����R)*++ɍ�PPX@��=����S�N���v])�t۲��Λ<�*V�^C�~�3k�~<�f��&*��H�������%l�uQ���B��t>�R��Il��l|>O�3O�"��ϧg"��s�hF�0�C��lݶ�͛�Ķ�N�DϞ=q,�^��e�]���hhh�Kz2y�]l��&�����ϯ��ks��q�f6l�ȇ�5�r�TF�I4'��磨���~2�AW�������>|���C<�=�3f̍D�Q,�j}��5"�y2c�,����W_-�
6ʮ]e""RUuHnw�BɊ��C��u�Сe]�z�������J4����!e�wKss�\1`�(=$]/�!5�����,�.�;���׋m۲i�Y��T�v���+9�e�/&�iZ��#��t�TV����""RR�\2"Q���_�z83�^ О�ȉ��9z���������_bΜ�ذ�u��"��o[����h4Jf8��U���y��,�uz��A�^�X��Iּ�"�L�?Ne�Ab�ͩe��ٹs���'�H����׳l�
���j�&��)�����H��H�����G�/Q�ع�=���u��Js�R��	 ҮbF�\i�o��Y��u�� ��}"��>����#�Kڴ�}h����N�	�����SH���N @)�c�m�� �mb��P��i�n�ٚ�N%��N�uq�D9�q��R
�qp�V��|�zke�.�mc�|�����<�����PJ�y���zh�B���R)ն��`��cY6����1sz@�[ӹ���S��h���v<�ky��]'&����!/���(**��C�t���V;:���������Ƃx��
+!�>���7IEND�B`�PK�uKX�9	���spiko/assets/images/wide.png�PNG


IHDRB��d	pHYs�� cHRMz%������u0�`:�o�_�F:IDATx��il��s��Ze}��8���/
1W����"�i�^�VM���VAJU��6��i���	�
D%iZ��jR5{���	`���ٝ����:�[�~>�;���y����֬�pߵk���%�"�)\�%55�JvvV�PX��b�@�t�0F�C��X�(�L�p]�EQ4��!��)2�0f̀�|@����y�{���c��uާ=cxx�d2����<dY& ��1EQH�4aL�ut]G4M#�I�m�&��Y���|�l+�m��
D�0X�l)��5l��

�����)��2-�����Fo�Y��Ϲ��z�h�ơ�?���Fii	###w������+����B����"���_�0�/_F08�vp�y��0R���� �y�6���him����Ç�P]]�ի�(�2.sn��뺌��1M�y� �0� TU����[X�t	�H155Ql�!R��ԴT���Y���̌�q�v).."�LR�Ѐ�8��8�|>4M�q,����*�$�-���n����,�x��a�����S�,EQ������.в,-��q8|���"���8��i&Y�|���47���*{v�D�:rs���q]�M�l���]�:ڸ�!��+TU�uܱr�4���-��>IWG�:���(,,�LMuR E�L�Y��rG�z0Ȓ%��;[��#
����eY�AJ/���Wh�pEQ�4
�ߏ F�M�6r`9�@�/��v�HZz�����q�~j/��AKK+�n�
�v��/m�����T%��J@�d�����`0Hzz:#^ݷ���v���X��>*+�)^@8���a�Fд�>`�99����������L4V��X�Z��?��&����Y�����(eO��I�7���F)߳�
��`��h�65 #��S�)-]Lzz������r�����-�^�σH��`0��3�(�:�,����D��s��hko'##�d2ɍ7pgLN׭]��磭������c$H���� %�K8��A&�a� L��S�x�����%--�u��㏉F��G�$

�ƶΝ�E�o�H���9shj:?NdYF\�����
��矻�232��4F��Mmm��kV��������^dE����L�v�j"�bb�d��<,����S�1��S���	:;�&����>��ק�$I\���ŋlxp=�pǪ��������J��_{�Q"����ض=�I�\`ץK����.� �L&1��� ��a��5z�a$8��w�SRE˴0	4�G0�����^C�z{{ill������0����i*�.p�������惓�1MsBFȲLw�5:;���oqk��CaA[�lf֬/`[6>���x<��Om��_ل"ˌ���;o.��|�u�֎eה��$����E�D"AKs+��!�e��HKK�����ήq��)�>�Fgg'�v���y�X�,�*ߥ�l+��i��QW_�3?�w�֛G�>�O�j�9q�(���f��%ض=��Rf=(����<�p~!55Q*�>��A���3���T?�㸈�hF�4M*+����Dc����������T?���'��I4���Y��F�8Vu�O'
!I;�[����&k�-!�5g�OV=,�"�#�")))��0$I����M�0l�۩z��i�$I`t���*�a���8o`�6�drLZEQD�4M��#��@�E|��̧�w�z�6�!�����iM���t�q�HOk��Ι�uQ��������?����rf��_ VV�Lo�lIEND�B`�PK�uKXA�8ť�-spiko/assets/images/breadcrumb/breadcrumb.jpg���JFIFHH��ICC_PROFILElcmsmntrRGB XYZ �)9acspAPPL���-lcms
desc�^cprt\wtpthbkpt|rXYZ�gXYZ�bXYZ�rTRC�@gTRC�@bTRC�@descc2textIXXYZ ���-XYZ 3�XYZ o�8��XYZ b����XYZ $����curv��c�k�?Q4!�)�2;�FQw]�kpz���|�i�}���0����C			





	


��C


















































���O"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��j�DL�.p��3�y:g��)�6o��y[�"�ۓ���_�õW�H��dޱ|���F0y�'��N���U����E�@�y�Ó�F+�W�	���%i!�
/?4�����P �&�FB�A��3�]�9�ۯ���"�+,�{'���n���?ƣ���d�%��G���y�ls�D}�N�u�����1��scs�a���PO8�ܰ��;6�U+����m8�}paQ3��6�-����V�w�2y�*Yvǹe2+nyL��YrG������&(_6�d��/���~�Aӎ�S���d���y�e�p#��#��⣎�Zh�w&3;�9�S���]`�H�(U�;�I�?��Zlв��$Q��Oݐ����>�6O֢�/�1�������9�çzh�Z	6��s�~�s܎}��=i�*�k��̎���^���S'u�n%�Yic�w�2K2��_��c�j�\Y�(TU�F��j��sۀzg��o4$�V�L�a2`9=񞼑Cܼaf�)<��#��s���c���i
[�I%��H!˴�ZM�23�Ԟ?N)��-�m����;�m�wqӯ��T{��6��g]ɒې9�GQ�a�|�j�4q�/����#�N�}i_A
���0�ch��W��1�������K2bY��̋"�[$C����c�G�x_/�+����1�:`��4�๋�IRO-c̻ev�q��9�戲��29��K��̉�C��n��$���I���߳�K�j	�Y�BS��A��q߯��$���$���H���1����a�h����,�Kh�
�����}O\g�e�啎|G�u_�$QK�Kn-�x#=��׋�� �s�n*��.9a���ǿj�OF��YfVU8e�>���1�+�|y(2�ն��A���g��:皏.���1Ԭ%V2�N���z�M
��8�a�d��P}Xq�'�T��ʌ��Kdtʂ��	�{�dU?�gebY~ff?0��'�g���:�|۽=/��/Q�F;c���qڶ,��-�F<����gڰ�̖�ycتK*�ͻ��dgԌc��j[A3o���9�$����u�/�hxŭ"8<_zc�G��[k˒O�����w���I>
��̱�$E�`mFO�μ�❙��%����20VE���-�j��ug��U����U����#�Fy�.jv�*QVg�E;Y-�)!������#&�9�2қ�ϖ~e^v�����ҡ
���\l۷�q���_�ڬm�	QW�v���r{�z���Ģ5�p��a����=s��N3��SN���j����/R���
y�G�Ir�<kVѦ��\�'��n:S,�E{��ŷ!�9�2��${�����q����
-kaU��$�l#po����>����~�~
��w3�:�{�PP-\v�_?xB_'����GX�DVV�*�jy�<��{��t"��~���
j&��6J@�'���⾇{��J��0�g�~ѳ�o��^3Ǿ������.�9���<��^c�H�B@_������0s�5��9=�|ծP����dh�x�HC�`���־��ƫ3۽��kq�U)!�7��G��'�E���k��_�
��K���F�ʟ�ۗV=0nH��k���$29m�s����?���*��gO���~f�r�'���XڏŏZB���3>k_��8$�:g𮈳�1|��y�>�GQ������~�XxN�$Y�_���0|��۞�8�EZ��.���|�ͻ�fS���'ۥIc���%��?�ʨ�H�x���>Q�=�V��{��"���S"Cm^Fq���~֣�Ê$�Ĭ���/^G�z��T���X�h|?�"�ˬ7I��w݌��cO�����&�f�5#X�	X�07獧��}Fh�`��W�u3��~�l·���jH|)䤄�&��P�6�0��:Wl>!�!q��?|��M<�0�<t�i��)�ʫd��L����ҟ4;
s߇4����"��dm^z��>��wL��M��̇>rYW�� �u�"j�uؾ.����g$���ZV��<����]?�m�y�7����~���=�\��Zxu���yrIg`7O�\��[y����n�¨O����ֻs�&K��K�9w�|��������}���hze���mR��9$�?^sG�5)3L��)Jʬ7t�㯱��d�3B��ς���u{K�Ѥm�j6�����Y�c����mY�i
�bxټ�ƫ �� �T���{}ț��1>�;�zg���:
𡢍v�7/|d��?Oº��H��b�������}���P�npU���oc�����<����N�w�����;�y4ei�K
�tr~�8��}y�x�P�>[3��\eN��Ҙ�h��1��e�
�l���
�Qs�z�*#��A�9���i[J���*��¼�g����ѵ��_6c�,���<`���S�i�&ef�,
u;w��J9C����ը;�o7�8l���8���?��!�2+v2I�2p�����H��"V���FG�A�����T�!��Y�?6:��?:9C����fVi��E+����9�8��5&�Kɖ)u���/����Ӄ��V�v~v�2*�ʇ���=G|���$����Ծw*�:g8�_�Ӱ��~F�J�.�4�
$�0e���>�ӌu�j�q3���e�Uۣq��J֊�^f"<F���r3����j�Ƽ`����N��ܜ���"�B��|QI��e��wo8�1����\�V!�O%��y1�8��t���nWۺH�U��~9���4ˍ5VAj����䎝}�E��*����K��}썠��0y�R���Z6�h��F۶B�����Zm=�J�����x��~����.I+�n�s�����G+P�B�6�[��D	�F��g���>��C�]M��� !1����RM�H�,���pH������1h�M�X�N��\����f�j?iL7Map�~Um�w<ds�ޚ�4�#����H�<�'�z��=j?�1�Sn�*b��q���}������ʫ%����,e���^��J�Kk�DX��v�#}���'�#��q�SNJ�98:��@�v�,Azq��J�m;��k?�7~��:��Z2�y��2��j�����J^�r���΁�2���Ws���rx=*X�,.ͷ���m�R(��מ��\�ѭ�hU�-�dq����F�Z1�P]~m��A�_^1N���t�,�|�^6,��R9lg<�OZ|K3H6���a��'w���rsh� �������Q�)$�-�4P\�~Y�؍��u�@��8��_3���ݔF��d�>��H!1G�Y��U��F����\�������E�h�VV�C���SImx�"[��<8�=��z��'����tbȻx�=��:�O�$�	Q����H!�OQ�=q�r���m}Ro���7U�=Zr�x�-���yy$)��9뎟�N�iw:Q��(������'�FNpo�j4��0b,Ѭm�����ˮ8��[�<�GU@&>J�:�v��q�֤:��D����q�|��.��w+�7㴋�S��F���8���A�b�+0Q$��n�c�q۩�VZ�����a�/�
�3��B=���V���g�ؕ�9�z�zf�йdjK`yp�Vq��d�'<��>�٭Y�ػX1*э���N���V{xĨ̚T�v�}������H�0�~���\>�F���e�UFX��}�}�X���d\�o�<����Wo�Mld!��s�����Bx�H�m2�{t'+��=;���{�!��QG�[<���Nk)e���9۹�\g둟N��&:\0YfUl�
�?���{�K�]��_/�,�H��c9��ڏt=��sh��N�Ű�o^�8=�@�[U�~��+]��#������٫�W�e��zp��)�"+��ڛ[qPI?(����0\�8��T������yܞM,Zt%�xfڹ���q�1ӹ�4���1^C��t���{�O�ږI6����mS�@�׎z
41�-��<��)c�6��Zd�iث��тI���;��2�!�V��+pr:��Z�3�TῈ�1E��NjMw���[�����3��ҝ%�dX�c+q�݅��˵iMg����w}�h��F~��KW,pFv�1��`*�Qs��2BD�0*��7G����=��&��6c?{q*��g�Z�[)/٦_22�fH,���c��d��+( )V�32�r9�Q�j9J�1���}��V\ƹ�u�u�H�M��e�W��S[RZ5�y��P����2@��к|�eUWo�v�pG�|��s�JF���7�n}{���H�_����oݨ|�9��ֶ.lL��m�B��~g���߯Jjش2�${cP��I����9�Y4��eaYx��g<㯨���5h���t`�����9�v-&4;�@P���n���z��A�\F�D���N8�v�4�C�F
�i7|�N��wg�l���֘�t-$����ܬ���=�x �[�j��ݾnZF^'�8�6+�"!�̸=�~_^��Z9G�`\h�G2f��b�3��>=(����RW�ܿ�׌ON:g�l�3{gaq���o�����e�n��_����H={��O1��"l�4��A�C����Tp��\C{2�Ⴓ|�=��?:�N��BR�3uڧ����q�zcX@��au�w[6P��s�~8�\����f:QdS��t��'pV\gs��^�6��}Ze�s�[vxϧA��Zq��.y����H��_Ǹ��(��ǿ��oˌ`���3�=�sqj~%�f��.߼�Z�`�ޝ�Q϶)����9��M��@6{t�>�|X�F.(��J��O�S���&�YW�n�o�~G>��,�N��I5�٤�$�G��F3����sElj���D�;s�@|�V��1��Չ-�h�D��j�rq���›qjd�@�"c�ʸ�:��G���L5&-�tn�~uÌz}1��=�c��E��Yv���b$`}����X�Dž������l{�Œ��q��:;&�sYc��Ͽ?�9��a��6��5��ldc=�Pz�SǍ�^]��J��)����T���ie`�u�����:l�ˇqۖ^���?��Oj=����(�G��vl���~��N��6q��p���H�߃�3ƛ��8"f]�H6��29�֔�R	㍕U@�����9>�#��bj��M!��H|�/�ǧ?xz�c�<Qe��/|7I��*zv�:�m-%��o*�UO9�ǹ�F��8�%v?�8u=�� ~��1K�\�6_]�������|���?(���NmcF�a'��c����J�SJGy$'nx*�;O\��Bi6��O��ڠu����=�.t�[I% ݣ
�)WR<㞘��#uC���ڥT,������g�d*b����r�����=G�Bt�7���xE�<�S�_3�_�}���n�pC`���g�8�&��L{�Y��p8�cӓޱ���,���"0>�?;��H���Zn�/!q����8���gP�o)1��a.�X7=}�Z�Xͪ�BU����1�B�>�qr�re�j��^������Ӓ�T���eP���}01�������s[.�3�X	q�v��<�AJ��aCv<��	�9���?�e�#��A���I<���Zu����p�,����eU9��N:Q��ql�a��f۝�0�{��=��4b=��k?m�zc�׎GCYͩ�0���FYW��zs����WY����̪nq��/"�֏�o�����̸�ÁϮ3����|���Gf�f�G���oN���x��]V�Q\${Xv�@ ��ǡ����ࣚ����?��4"5���
�^��{�+�/ݥ�w��ғ�Q�^�>o�$��'��}�Iꇑ�w��T.#�+ekxw�W���8����9�V��o�-�e����I�rx$��J��3!7K27�ʬ�������\��KVz?h�,�nJ��0\���q�?A�EB�֥�R#ʒB���y9��և�r��Q�8��̙a�ݷ����,�eꚂY+%��w-��@0[ �ӎ?�٨�Iݍ�%Y��4����� w�L��#K�T��Yf *��:��㊎��:v��.���˚6@`d׎*K���|�~��;�����3�c-�Κh�w)�T��s����I�nƸ���0�Z3��Ƭ���{~~���y̪�n�2���|�k�~&\-Ƽ[�[t�c�󷞽sǧZ�_�l`i~p�]n$�zmV'�zzw��z�Q`���d�np3�y�#��5�iaK*_�=�#pO���۱���6=���l���`���������Z�_d�+ovn�R;_���y�Xf[�O^��Ej�I/��+�ɕU=��8�f�o�-v��8�e�h	���E��z�NE���hg'FT���:��B]�GϺ0�T�g���zg�C��j�v8�
�v�Q�=����9�ci;ZO�s���nx玔�u��N�UyeleG9�?�b��#���$uX�,��d����yE���3���#t�O1�t��%X���(�cv$g��dcҤX�!�Yc�.��Hzq���Q���|�򛆍���z���j�(�t�3yX�Փ������<��2���%6�"FU
�v���O�P�5�4�)y6������#�\@�m";���V�\_x�����~8��@y���bm9-�xsṯH��b	��8�����k�h�DY~����+�6Ш@��_e~ȺlP|"�t,���ѳ�y'w��5�`���G�Y������}�uvj�.�w�w�K�0�¹�r0s��WIp^H�>O�����J�
Jdе���4�"���66�O��n޵�v�nB��S�aܞ��"�Wʎ��L�A����˅��1�yol���YS���C��W#��Q��kV{yn�岶��tݐ3�{�e�ew���xP�t'�s��۵
%7K0Io���'��<t�j���_̓l|��߷���9��H�8���o1A9G9��Uo���ް��Yq�E�1����B�6e�T�]�c���y��R��mw՟v��㎹���WM�H���td��݇?S�����E~�2\}�I�B}2ݪ�@��jQv�{Znr>���v��b����s"��*;s�ӌ��z�7o�	���70>[!��O#��[Co�峴��2o�h%��lUr�%'̎BM��a�y�#��q�����W���d^2��$C�o���J���{�靭�;H�i7/��
�9<���G(����Gj��P�CH˵�С�{���2qQ���J�X�AY!��8��0O4�E"�$-��v�w�1۠�G<qR$�h��"=������=�r9��w�mđ���Y��͹N�S�p	�5���&�ao.I�,09����P�P��M��fPWnpN{`�c�5b	w\���>`����$猎���<����YJ9T��x�<Ԓs���4��,F夏�f_�ܰ��.z���F��ψ+H��(8^A���S���+�חݴ9��#�����e$bc��O1�n�$:���ʀ�<�4��yk��Cn9���rwb������$�ʠ��ÆQ���9�5Q/'���d�+�����8�O~���e�b_�%�W��3���Ko��7rG������2y�ӎÜ��^2�3Ǔz�>c�}��П�M��".UB�F�%y�Frx�+>P�5ɺ��q��/�����q�{�A���˒e�T�;oS���=鮛�{y�i0�*���}?
�Xm�;�5N~^�3�����-.`Z�ry�Z�f�o.i7\���s
yg��*����Fu����M�D�(F�/9#�~q��=*u�ܣL��1��[�<��{��<pi�n�w�i���P�wON�����[x���W��ܶI9�:����y���Ka���`�ӎ���H�A��1l6�.wv��S�	v!�o��*8�O�{��mW�q�,!��?
������r==��R[�o�Ax~�_%pFFrz��zo†1��My7�fK/�@#g=�}8��p?�F5�<���3*��r.�s�l|��rz��}+�|q���!�Wۿ<��O�i��+w���̛��B���s��*�m��Q��
�q"��s�y�9��b6'���b6�w��q���$��N;T�Iw;yr0*˜���p9�N=j]}��4���n�a�A�j���'��G���#���'�|�
�f�Z�>���+��i�	��=�ӟ^���=�6�#~��_�G�~~���@]cSEM�v��.;{t��5��C�#�o�	+�ˎ�1�=x�|�˗������3���U���VL
�|ï��OA���q�6����k�@��M�0m�`p:v��O�P5��c�d�G���{t��j�f�������dk�L�ke���:z�W��z�]�NYU�b_-��.�u�]�\z�Ӓ8���*��c��q�z~�"��x��;�z�b�.�z�c��O�<K�8ՖW���?�H��l�a�"B�� t�u�Oà�l����N�+�y��ӟOҡ��S��k�>��M�g�3��� �/$۔	��q� }ӏ��>a�k3�4��������p��wn-L�������5��߇!��߫6s��t�vh�
�K����k�����۸a�����{t�w�������q2���[pv}>�I��}y�1_E������5O�>��OG��"h�����[��c+0=Oӱ?���{���C��{8��(�6aR[�|v�_.�з�����r�m
��>\.s���5�o�OY��1��gU��[V��1!>�N��B����sG��:��PG�3U�e�������X�I��yq����:�z��W�<1uf�.���cU��=��9�����^�>�f"��O���9����2G�^hwr#I埝�Ӯ�s������U��7z�}E�U�g��\�}��wˀ�.��c�'��ך}�Ùd��y-ع���v�?�Z�r�a�#˗N��>H�����`?�B��n	�7�~�H\����GJ�/�T��U�KHټ���nW߃�Cϡ�f�u��4��n�_���1�*��p88�z��<�<�;)#) �Åf`07t9?0�9�>X^O��G���(+���Z�[φזq0[i>D#o��`q�t�{�T7�ݤ66�v�s�g>����ҹ�7F�hu�i$Ӿd�N�bׯ^k���M���?ys�}���a&�8'��ƭ��2��T�>U�+�r;��8��
(�.M��9��B?� ����'�,�}
�|����aٌ,��s׎��ckF�D��}��VM�nS����{���O(_<++v��7\��u�Z�/̪���T�1�N}9�8��jL�c�kDPН�������w=�1Z6������X�r>�����jXi�.J�m��
��L�����]PG7�������=�>��r���0-t
Ub%/g�
�u,8�{d��a�YG�5��f*V?9�������Jff��te<�Oc�֜����X��l�N�<d��ds�QO���ˬ\mY?��
3�O�`}iM����tZ̍���*�\.q�����V8��G�߸�:��#4�t���i#��v�]������W��5���<S��m'p����:�Ğ%M�Ool3E��u9�=5��hh̓",r0�<0;�|�:Sn ���s�.�G9��G>�b�4F'�o�L���ݪ��[�q�ϯJ�����NZ>�Onz��U.E����
��c��:㏯Rť�*��@9ʶңq�?���&ёy<M��.�~�ў���!��B�7�V@0�#�>��c�{�!i��g�ô���GA�Q�H�L[HP�^>��<q�ӯ��Pr�����"���d͹�~>�?��Ծts��7k0�u积�cɦFӸ��b�0P�����8�����K��w
�DQ�}�zҸ�M�-br�j���gצO�}*9m�$���u��^1��oƱ����eݹc�!9��׏Nzc�F�H_w��VRV<��|���y⋎1:d�TX�<�6�õ�:�"�{@�|v�d\2�/�9'`u���{���j�!<1Fێ�2�:��k�͹��ʃ�8�s�_‹��́��"�L���2�A�'��ZD�gVx#�ղ�ʞ���a�W�E_�I8V�7n$`�gޞڎ�����=��Pv���rq��X�U����34�<�b�A��a�(�H�PF���W�v��jj^ 	�L~_|�y8==8�b��k�/<�>_M����\=��@|�m�N��/�'�l�[FnR�2�vvFs���c-|I��(I,�|�mf��=�����_��<�,���b�����\֋�,��Y�t�*�ϟ� c����*+�(�6��
���|��<c��^*(|`tO�I�CS�?���I��6�l���@푟��@K��M&��^		`�{j�ׁׯ�N:R=�WXJ���)�s�^�������N���%���['��'?��>��D����T矠��9ɢ�9��t�=�A�*�������|�S�̳��.�'�}�O���*�i,�0�6�#G�-5m>M̗��>f��\�:��^��O3�B�O.��|�V����r1ڣ�NYH�C�n�b�rz��Z0�j�.�,%�b@	�~$�4٢��Y�w��:�=�w(���Ǖ�ׂ��2��q���<SN��`#)n�rc�N:�g5��[��'�W
"���=���Sn��V����n�8lpr}•�s;�o`eu�$WU���<g�jj��ژ���Y0��laq���
l41��B�c+.�L)�rOaך���br����~b8�}��c:�L6#`�� �c�������Wl�Iߌv�������#.��7|��ߗ'�����^?)��C/!�}8����>c
;/�]L���H�c���=�K$h�TT�&��^���[���*Dp�e#��y�x��TElV�HJ�~X��.O\���߀�D�b���H�~�v�Ϸ'�{��j��=�2���nv����3۞+��Lo*I�G#g �޻}���l�!b0����=O^����0OD%Va�v[�z���ׯӤ[ŻsU��M��3�z���NA��`�G�#_/����c���o,M�F��p>`8�A۟�s�5<�摉�mr�V��m���<�zT3�b&�l���3��L���ѥ�L�b��J����=>�Lc����6��Ux���{����\��nX�O-�#�׎��{Mb�X�mBUV�a���q�����lbY����1dx���csۦ1��V��x�U������\���OΝ��c��E+:��0U*6H<���ץ$x�ɒF�&uU�E�qӧZچ�ZO4d��x#9�{g�D�ho�0?3|�z*�����2XN�pռEo��/̤�����z����T�Ѡb�*����\��^��yʫ����7g��މ-"�ߗ?#������sK�43��^%󷥭��U����w`�c�>ޕ<>*�J}5[n�#���9��~���t�t�
YW���<t��R.�Ҥh�i�<u��z��^
C���/�[u{�3�pʲǀ2?�cR/���Z]6]�O��1��<���SM����!��^FO�Pq���ME%����2J�d_�7_\�lpNi�9`YOY��m.aV(��=?ʏ�K��8x.7`vy=~Q���ȏZ���7�۵wPo����I�+5ioɆ��$c?�}��O,K��I�[p�5U9O)��A�J��Q�"�=���S'ۜ�B{�4���ho�
I��&�o4�E�e
�����i�9bh.�����lw(��>q���x�Յ�t3#�Wѱyh��8��~]>8�Cƫ����\����OZK���o������8�(�r��>�ep��J��lƠ��(����Oj[��;"����۸��x�+�:e��ac����ݸ<N��ҙ&���n�؍�`������q+*6��6B���S�z���)TX�-�?wk������΍&F.VY6ɟ)�1���Ӣ����Hu�Ui:c�Cւ�Y�\�����p}��8���h�.^W������?������\�N��Ã�d��.�A�������������tkl��X�+dc,��zf��ue��]��۴q�����m�<HTM.��M���y��=1ڝ>���6�گ��h@��<z����y�}�4;Eʱa���{qMKE���5�N�9��gg[�i`k���X1�~29�<K�̅��8 n�1�rzv�r�[5��bs���nP�y�G��Ͼi��Ixd�j�w+�ۃ��^e��@��M*?,/��S������m���iQ�����G9��E�^Ƥ62c+�{��^��ց�E#2�x�w����{�|'���%��&�p0�'���jX�OjI%��p��G�
Ǡ�����)d�R(�s,�[lxܝ����<t��b�:�)���N��^z�px�9�Njt<@�I��@��w���'7�l6�D,$\�4gd�NGO\R�W�a�K,�F�r�&�����<�&���k�ބs��}��k��Cj��|�^0���'�P������c
�_2O��=3ޘ�6kX�m	6�?3.��`�H�'��f���qB#���F7?���Xk�:XT��cĀ��#�<�i�[�@�$��c%H#�lPO0�ւHTJ��^���t������%��ڥ�s�銹n!�v�UV�zc���i�eu���n��V�3���:�@^Es���3����
��Oj��B��i��46�=��?���.Ю��/Ì��=};�.YF��č���Y��~��P���kc����s��8����������26�\F�U�~�ί��
���ǯ֒;M�4����4���?�4�G�NY%�U`�)ڱȿ(�L��<rr�Ӓ�$x�o�e[��7t�ՙ�iˉ:o+�F>����P�滐�⻶���㿽�U����lY[rv������[���x������G�)��)RB$���"��vf������~�/�_�3@� �N�*G�W�~�ǰ����.Zk��2���4|�E��t�\l�y~�S���ӯ֮�ZR�}B��*����8ǩ'ۿB)�d�E��۹v�On�
��&���NHw~d���V~8��X�u�Ҽ��;u<���/���|������ʦ�03$�7Q�q��lzW��w�^5�-��}�-;����n!Y�y�,;��G���g�Ȯ�X��T�<�6�0Q��;��<�Ǯ9���i�q}mn�h�3�&��%3����y���pT��XN6��}Pk,2J��V�H���rOl��ii${"3Ɵ&YYW��9$p?������t���3�<��+д�k�S,c�����{~U��١{��D��v�l�����Myo�;���g�#p�"��'#6z��L�b!�Īʹ�'ݫ;"I�x�qr V�3C�p>RGR9'�J�F��L���$ȱK.�ܬG��3�p8@���8�1�d�FI�{�q���1ҹ�/>IVuPmU��?��Nr2\�,�E��e��ud>�s���Z�o���U�u)��K7����
�q�9�y�^�ڿ��fu��8��;p?
��!m6��Fo����6����Q�U��6%d���7-��8<a����aL�A$bE�F@�^�#Ӟzc��Ћ�o�b�)�O���8��o.(I–ڻ���z�ϡ�<S���[��G�m]�7���ǯ5-��U9_ݽ����'_�c�8�R���.�_#��8��s4R��	'� �G�q�'��z�
&��ͻ!^LW����8�N:���D�m��]ry$dc�9���o�щ>fE�*�G9�#��ޜ�����Z6s"��ǜt��!nL�F}��������{S��N��|C����E)h���U1�{��\��z�ܟ���-�'��l���f��������~/E$>�I�i2K \���qױ�dW�?�#��@���v�=+��\&���N�_A���/��y���6z�0�;���$���Tg�̼���#��qu��ch�X)
?s���ֲ~�P�+�nL�I��y���?Z�L�N��V�UY[;���?��5ݭ��k��̣s�[�wضP��!W$`s�Ͼ޹�rx�,	.th�<�	�B��S�L�w�jK�gg��`�>w���=yx��y�{�� ��@kp��8�q�g�
s�\�/��]5�O��Tn��maۜu�qK��4b!�W�L#g<s�ǹ��|��0�̻�3`r?;j�|�*O��g��@���[)H=�N���ɛ��V���0���?�瞕f��~�&�U+�����0p8��-A?����,�#�8�=x�WM"6�!�'|7L6퓎�^�D���K+��{,�Cj��tŤ���{�ǭtV3i����3p��/��М׏�٣��ݵw.[�<`�L`纗G���Z��4?e�� p;Ɵ4�ʟK�e��[���0ZDm�@�9�椸���,@��xǾz��y���*D�rvY�B��1ɧ�Ax�i��
���0{�ׯj�S�g.����^`F
�W�X�Tns�y��s�KnQT\H�7�ܧ^{B;g�Rٞ�G���U�u-�ǾN:
kƫ$��ٙXJ�Kc8��?��9�j}DV��_��-�8�w����ϸ�^O8��t�8u��U�|��y�8?1��C�Qp�*�|��eS�hy>�f�o)�VGgdf�re����f��Y�cT�b/�;.P��89�z���Xp�'�������99~��3�<�9��!�L�bq��=F}���!4hY�e ����u�}�;>byI���|�3hb#�g=��y���O!�?���*@��;��u�z���ڒM"+L�tLF���AN1�4�ya�U'ele����<��\���ْI"G�UV`�7���� �t�Ds<Dy�"��|�32���w^8��D��n���B�d��9���E����g���7!ݷ
�m�����_�L�\Gpx_-��~�<�s�C܌SJ��m
�~~� ����=9���S�,-l#�5e��<�9��OX�yKv�6�)�2x7_���=�Ԛ�̖�����
�����ߞy�bd��M"��6Ҫz��q�q�xZ�k�gW��p�����~}��[�°�9��e��$猑���Gpj�-�p��3a?xI��;����Jm�t�W�1�q�<d�4[�		h�Քs��m�q�ϧ״;���"��)S"�GO��s�~�j��PeX�wgXG#'�s^���_�OL$�@��b�c������'�z�WD�C"��R�~~����}w�٤:{��3lv�I��z���x�����gS�=�	r���Ue`�8�����F��[�$���G��%���?<���!��(�6ϖ@r������/J��\nY8��I%N~@��c�k֭������D��y�tq��{��w>��GC�a.��Hؒcl�1�7��{���2�;�G��߼)=3�O<v㊣���?jǍ���p��#�\�D�ɤkv�_���_sC�g?���́�S�9��mo��>��?±���H�6�V�0���}zz�j����#Zغ��v���1��'��]q�sTs_���F�.�c���8�N}rk���G���q�z��9b�8?�^����+�K�dP�,dI{68_P;r�W�g'�6�,�yKu\��{zܒpIi��؈����d�i#n�	y##�s�}�R*ʳGt��Lj��W�?yqǠ��{f4D*>ȣg'r�
q��}{P�Gcm��Ed!G�}?N^�(�e�I	�2�V���<�`��E�v�D�Ho2��`N��Zm�s��z@��U`{�g܎�릇YYqo��F3�q��qwW�L�}��a a��g�?�޽��W��Ş��•��5��V>lW
;�:s�_?�<v^+�&Uͬ�����u�װ|Q���_�$O:���"�$)���z6������~�K����|��x��j�Oe/���P:���==��o��$�w�<$��4�&�����P�<w�8�׃�T�*��Z$��6�t���!�1���Nzׯ��(ӧ�I��y��x{O7��K�{+ԫ�/��9���/���ti�����cܿ1��5��%�E�j��5\a�q��#�b�|�V�f�Z�4Lw2ʧ�y��}}���{�6�X\nݵ����c޺#��r�i6����l�����r>�M��kYD�Oqnw�nv���9��²<�0Y�l>܍� �lz���*F�Ib�f�遜�{gҷ�`�z�\�M�Sc�^5d?v��P=O�_�ւx�Ƕ��j1x��]T�|�b	�\zs��֌>�����fR�������ʏ	]}�]m�S*8`v�;�s�T��̉�>-|S,"���y��&z��o�Z���$���O�k��_��dm?��eHe�H����e#��ӷOz��\;Z}����t ���F9����9��e��3��^��cm�����/>����[�k���I��/!�o����:��,��Yh3�ws�ҒV���=3ں���{��/��{#Y	�fc�w�ⲔTK�l<|f����
�ɵ�S.N�ӧ|���/oocf�����aq���:�=?*�m����>dlH�ǯnzs�q������hٝ���ӯ�=�4�8�#cO��.>�/�7`���k�A]���c}�?0���_�ڱ,-oM��m�h c��9��5��d(<�=�p��)��#���8�E��ˢ-Zx�M�丰�4l��q�g�F?�X��Z��x�L{r˴|�r@�^j�<R�N�T�{��{�OD1#)���1���#'��})ZD�����yR�Hw`��	b� m퓃��=|E�9a%�m� ���s���J$,�gV��s�y=;)��e�*ZH��r��`��:c�L��&�5?��C+�YV1����z��m:ui>�m��A<�����#�}LFX��AWz������*C��‹�nXH�O����\-xAi+I�u,��(G9��'�5~y�*�����׀x��<�>�m�[. �b��n�9�rǧ�q�����3eT�F\v��^Ɣ�/��l�w͌d{�Ԏ�6�M�a]��26��w�E��Rၙd�m���<�{���(�����'͂{g���}�:ds��]�T��s�I=O>��f�#t�!o��߇��@�é\#�f��V�`�;zq��N>#[��ir�K&��^���Xp�
����7���ǯ_n)��S��1 u������_*xgۃ�I\���0;�|��u$J8�ќ�q��zd��l�\IB0�`���<��s�sګ��ûg�}:z�M9|C�=����>_�
r8�x�֏�==�Ĺ��mf�w拠���VH�^
Fp�{�s��s,o������s�{���WV2J-๏
�����ё�ޞ�c*|�Fw���P1����P>i"��8���el�
	9�W>�qIq���/ʿ+��Fx�:q�WʑI�D�I-�׾=���@��9���O1����Ͻ�71��5dPs�6}z���9,�
�jN$��'$�U��!��ʩe
�
ݏ�ǧ\���
A#|�|��RS�����9��c>��VP���n8����{�Кw�*�VU]�ߑ����9�Zee�����r�����(�S��\�����t�{P.c%�`�K���%rrx\njg��=)�[����"�\��������{`��F����cԃЁ���f��y���|�@��4��m.[!Dmln7n$�}N}zq�2M6�>�*�`���C�N8�[RZU�?��w|����{q�LpBO��s6$�A##8���@s#�U���	]�3��%�Q��9����#���6ݫ�q��9s��	��jޚ�5ff���߽�{����2�g}��cxYap}h+���,H�6ҫ�c���g�OkK�e`���#HTJH�z���Ʃ���R�^����ӎ������J�*J���?�~�Z�uFy���y�&���y������{��DJ��1��<��Ek:<�Va�m��=ƪ�b�147���2wqǦ)X�ȯ.���\����8����O^WY�t� �]��K����k;9V�ʤu?N��)�n�_��<������+B�կ#o3Ȅ��yq����j$���\[)
�{q!�z�篧��[{f�l�5e1���N��R%��#� �X��I�>��X����_6--��³H1���~?�iW�&E�~�ꡱ�Y[n�3���6H��cᰣ��#���f��,C�[�ݨ��}�:g��E�1�1|Q���'���~��s���g��O�r��sǖ+��:7N{g�Se�i�Qo���p��?���~�gpr#b�2�/�z��OƖ��$Oi[$�$hے���g���#Ěe�-\Ÿ�<�:���5Jk{_��ϻc�c�6+
8en�{9���ޝÖ%说끲�Ae�=�N:c�ۓ��&R��Q�I�@��==+&]&���I��7tげzz�ƒ]:�(�k�o.I*�~bq���zw��QOf�m���{�c���$K�n���U��qЎ���V,�M���*+��py����-��3�0t�� �
�p9�y|���ȍ�|�$S�q�:��BG�F��C�n8'�q��ߒk[[����ʪ�cP͒���f�]N!�t�vM�+t��=��hSl[�f��F�'͉��9��Ki�h��+��^�ӿ��Y)�,r^0��:��2q�~0zS^}Z"nЙ�������<���0�u
>�X����'Ԏ���y$,����ξ_\���}sY�z�P2�j�گ3�ۜ�R>����X�ZE��f�8�c�Ҏ`��d��g�DT�LY�����+[@��|8�e���t����?��F�o,K#���i�I�q��֤�޸��t��v�W���c�Ӹ��Z���П�mc�Î�A��4�n	İH�Y�Y�l��'�C��U�ıH͈f�&���s���ԧŖ��k��ir�|���\W��Y��|�/�U9�s����6��(�p��kg����4k�v���Q�),��9�^s�RG�2o�e�秜J���sE�k�y��G�����lN��0x���]�;�V�cns�9i��i:�'U?�����
�u=*uq��v�Ii�c�zg���y��5�Aq�A���WU�}s�M2(G��)���	��}�V����#�v���Lg�y�CM���^>m��c�����b]�'�˝�2[�	ϯ(��h�D���E�?*��X�~�}K(�eS��N���G��O*C�.=����b�Zt���;W"5ݟ`:~��=ja"�Y�����L�$q���l��`��u��cq�<�-�xv,,d^Q]F	�c�����2~����c$�.z䜟L�ZIlRvc��S`��Ny��ZRY?d!��n��pOo�8�j%�"�l(_����1��A|�i$�)1�!��Б�<��CYE�6�wn�8�1�_^��Qe@�Ul�ݎ?H�ښ�DD�o��
�̓���'�瑏,%bc,q�W���^ޣ��-�r4�k�q���9��i�V5R�d���''�dc��|��]��w�B�
���ދь�e�+��O,�z�A���P�P�Q ,��8q�c���Z�̻<�l�|ٍ��n�:�ж�ڻ�����g��#��ȗM�dd\�c|���a��<�<s�1�� �XWwE��̜���z�����Ue�U��s��RA_2F�2Ǎ�۶�y�n�<�b��G�fݥ�27s��
l�;FF�,��!T����+p�y*1o���]y���9��ddA 
���'����84�X����$��|�c�U�L�I~��
U��E�LM��*���x��ϩ�[��:+[n��Q�=>��\ڱ��f�n�?�=s�^�#7Ț���ʪ���>�1��d�Sm%�!>O�� 7�</?SО���	�b�®0�F>���0 �W
Ą��_qۊ�V3w�s��-���H��9#�GӚ}�޸������v�8oc֮�I$�"�e�w�H�Þ:�F��Q쬪ۤm�z����E��Eh/�<�d0�s6���;z�늗�:�Z#4l�~�����Njx��h���͸��r1���?�D��6Y�֓1���q�9�╘�6�xed�p�7.��'�;q��~e��z�ڧ�+��d4�Sse��� ��E~�=�(Ҝ��FIv����s�\K�~ ]M��ʙN�X�cLg�[��v�k�W����~�ύ��"��pW�3��ӟA�չc��'�f����H�j&���N��d3N��fE�(�!Xda��y��Z^1���~ä��e�.�H��!G���;:��5�ǫ;>�G�]�vv�K�]1�-Dx�$ʳz�'� }�rF]J���k�.9ح�cn��e�����׷Sl��t�rw��dQ�8�s���s�����z;]�I8a�����\W?3�R9:�{n���P��c��nx��@�/̶�~�q��o�[���'ּ�Y�����X��n�v�׷r8�C�����1�+�a�0�ۑ���IŽI���<��ϵU�?w����x�^W�)��w���]�����N}�:�3�P�Fe��vl����9�z��=��|_4�Z���mV38f�x�=q��^�z�Rи�&�~�l�;��G�n���}s�;c=�r�h��+�',�s�r@�#=N3�\ޗ��z�%���G<���m#� 'bE�m��pG�t��:��}�p6�ʠ��y����Z�-#Fm��;�w�������f�MY\�	.q��>���*��W|�L�f_�36UǹN=�Z�։1$����Y[o�0�8���<=� � ImU�iʫq�3����2yk��p�?sϧ ���oo,LX}����3�<{��\��eYb���r��8'�3�~�����-�"L��.�1�x=3�^W88�ȑ�d���rG�_RsL��y<��c���N8����	�:�b�$p��Ai~���zl�.��dQ+�rC7*������n2�
�.G˻=��,��{�,E;��"�H���l��<v�h_&ZD�������y�]/ھ�nAv�u�v��n~�m]m�si���\(X�:{���~��k�ſx~(�}��Zy�P�D���O|�v��R;mB�e�>�.��_�A�y�Gnk谿��#Ϩ�y��6=��L����L7i��nwd�}s�v���α���#�s�܁��Q�6(t�h���"�p���%q�g�|SW[��3��n�d�;Ga��s�Ww���{�w��a�y�z��x��f�Y\G�n�U7*�t���m�x�A�j�[��<{���<�qӊ����տ�&ݷ
f�#+�<�s�s�Tc���¸��_�x�=�������ޡ���1��rܜ�OS�FO����e��-�V;շ��Fq�5b9�3< �4�v��K�;�բ�s�9X�#��w#Zh�d�G��>�*K}4k�d�uU�s��}��|W]i��R\'��Z�8?$�[n3ԓ�'���Lr��a�j�f��9M;å��Am��>�1׎܏��i��χ�#���m۰u�ל���o�%�sslmQ���c�ǾkZ&K�"���ҽF=���=x�c9K�L�4�(V;v�eI�`{�}	�H�>eh���� �G���{WA6��_�Q���㚖=C;,
岮�a��y�^�P���M$��R�±�+�X�{����;w�֚b�.VU��]��r3�{���&Y�>f]�m�!W�P;Ջ�G�
�2��e�2@�׎�Px���I<mmc�F��T63���A�l�Q�UČ���'ӂ3۹�:%�Ʃ!mܪ�������{S�OKX�;X�4X�������{��"�E[+��۟�=r{g�=��˲(bݵ5,�^w�x�~��j�D�+�_*6��RW'��1ϧ�CZ�;,#�_�G;H�8݁��N4J�D������mc�<1,zu��I�����'X�y۞�q���jhf��mR@�;��g�{�4e�!�������0à#�2(����]�7�Mn���%���#ӿO���qgb�v���*�n3�H�����\gey�9����<I2+m���8�3�z�Đ�8df.&>w)'�Fd��N}�骋pZE����w#�9��NFsN��	]���Vϩ#��i�e�1p�6�Cc+�|�s���Nۀ-�*��s6�� �y?�Zk�m������?1��ӏ�-����i]6�*���'����2��GtD��s�G'��zQ�eeq�m
�ˆd8�r~��:�qH�E?���L��N����<�~�0���ݛ���t��|h��-�mͷX�/$`c����P�?�{G�V��'���.09�����0Z�[Ic��'�m��������1���3[C"�(;�/�[��q���G��C]O�X㘺��_��،���t�_��|'���g�ܼ�+'8��Nzӯ9�?
��	�G�cQ�� � d�'�����̎���+�v��@Ϯy�1ۊ�Iu2��Gd�2��r���|���{W�S�棇�ǜ�n ����9��GG󭧑Z�o���d�qӿ��Z:��Ѱ��H�YT��3�y��=k#N�d�f��v�?�O�����>�ZĨ�x�t⅊��"�#�?�9l�q���6LJ���
��"��q뎽��{�?�M�!hIvXr�q�?�Ͽ5����޳D��5����03�3���Qjt_"I��eh�WW�˅�����3���M�=��T�����<p� w�=y5_�D����%eV��m	�^A��?��~�!�>�
ۢưD9^�$�$�1�iG�(��ԗ*L��;c���:�؞�������!1�hy����=�g����.�*b�U$a�,玀���V'+���Ǟ>V�1�h@�J�F���c�^I�	��3�k�����m̼�S�a��=8�_��'�D�$H�P1�������N��9�DK�4�?w�z�۞*u*��1���~T���c�Wnc�l)㧿��:ށ�x�O���R�լ5�?R��]m�F@�x)��"�š�����<�hdPx8��q�k���#�^&�,�0�Oݏ���:��~U���^�^��#9S�m�S�ɣx�F��M4Fo27n`U���!�w����(����g��G�P�H�[=>�E�6��ATi�8p��z����6ٲA�VX�Vʋ�YY	�{����i�����Y|R��������AӿZ�c�nh�r�Z�v{���Z�����5��o'o���Vx�q�߈w��u�cUd���4]aws�'\��1?�޹�J��|d��>%��r��7Q��z���hA�_㕅�m/��O;/�ll�~^��w�ǭi��L��@����j�:��C�/9��+��ON~���⥜l�?u�r�T���n�~\�@z{W�7��^�o3P�}#+mUA�/?��9��8~�z�A�/��Y�IC�xs�����;hٟտ�{����Nv�|+t�?-śD�^S�mi��ƕ��h<|̬�`Օ[9 H�'9�u��k��{nl5(v��U��t��A�Y���|r���M����)6�䃎��+xc�ٟ�|��4��w�E�Q�+cp������?x}����sWm�j�j԰�g�p6s�����ay�x�y���>=|/y	�}."�4m&���S�q��޵����
�U��R��0�V;� �Ї���=+X�c��_U�c��'���V��.�/���>��z��aL)<���y��j���Qe�]N�j�6t�eݻ�r;q׊��H���vfkoa���>$�-�:1=�
�~4iW?c��5I$��]b)�q��3���U}b�E���/�k������ٚh]6(矗��ԏ�tgğ�ګy�|F�����K��끃��q�_2��_��/�b�ub3��i7���l��هY�E��'M�/�
��T~��Fq�T�J���Y麿�%�6��ZC,����q�3ӹ��,�F�]�ڄ3q��&V=�S����l�],������m|]ø���V����DV��S���V���Gܜ1;w���^�o��Dv/	.��nn�?�P-�)v\��݃�����ߥ|���'��M��?���'�����I����t�?ٟ|V��uX��8�>�=L��!{�>��a8��)��70�=��5�P�pG�@�?*`��n+����LPGċ���
�UO^vg���S'��Cmύ�;�l���,x����������&=��,�y���8�CY�O1-c��'�?�W��~�~>�M�
�ټά<@�7^���lY��^7�|>��m��ӵ�d�FIa��4I�z�8�\�1mۓ�<�ӎz�
>US9��÷*�0���`�������ྴ��Km�'N1�<^�=��E�K����^$���6Ř㏛�~�sG��gͱ�=�@ﱙB��pr͆DZ�l��$��!v�~h�ۗ zw�?�p�~�	e2<���/�b�G9��RGJв���r�7��rw|�$l����G4C��c�M:hY�3rA^�����҅�T��p6�Fߗ��{�;�Yq�V�sq0x�L���~Ԡ2�dӌg5z?�:�KA�M>O��U�Q�`q�?O�Uн�J�f�A`w����@b�ı�bO�cx�ǯj�ΒnH�������»+0�ߜT��&�z��s��J4c!-��U�bm���U�pK��皐Yy��?��F�ۓ����{tƳY�F�1��/���'ןQқ�=��mʕ_��׊�d��b����;[!����l
��6�"@����[�x ���9��Z����ϝ�1������7��Eb�#
�dP[8#?����O)W2L_���H�)#q�>���ƶ�(�U���8��
��9�kY�asl����*�v����b����$�8���?����s�������ב���#�	d�;~���������x��4�u�@�W���ЌzӄQ�7���4�
�t�9��o^i�
k6��^�r@&EPv�{��=�a�S�bUE�(�[+R�$��R��a��&]��w6y�r;u�9�x�b����V~`:�Ƿ��+B��u?�H$��|�Y7��O�c��&�xҏ�Į�3���R�ø����&�Q��R��!1�\��PGc*4�����;��}O|�"�H]@623y�p� �ۧn��N�18�����o�=�7����1e��Gnsǯ^M:U+p��K�N���<��4���
8eeIn;z�L��ǿ��Hu�:9ewltm���ߏ^�C�Un,��[`��vc�P=0~�P�ƅ�[|��*�r��u�|��M����[�f+dq����3S��yQ�O�@���'Vz�ە����n��C�����ZO�[�42��������߯?�+�jGp�h(�fbXp	�~u��ȫ�,�I��8��(�V�2,wF�L�����9��`�V�Ef�#l{zg���G11�����felgw'�\w��NO-0�l�o������=:f�㵓�O����v
w~�����v�Ir�ԋ����ރܞ�s�S]��'�����>����;���Hڣ���zV<qk�ܑ���4�w׎�jX�� �6��r�T���0��Q���@QV$��s���y�Ӛ�|�>��ܣ�~���ȿe
��Y�o�'�C�p3Rkj��,�E�y(��r:z{�t.SMl��ݙU���2�'?�M���,|(�����߭P}N��b��HDm�c'ӧ?O�J���1�w36܈��2x�q��
E-��K R軕��g��#ޙ%��hPn�N��F>��8���8��J�P�8�#�����1|An�m%�Ղ��
�I���s�Qt�4�a�L��Hue�Px����j6oX�߽�D
�z�^���7�ɖUb��U;�����ޜ���c�H�n�� ��}��D�@-�I�I�F<�`z{s��R-��S$�mܸc�N�{��m���IsБ�@��3���lT�r��Z�s�o3��N0	�=��x�/��[��P:��֖;3U��+��,N�<c���f��k��8y�H�|<�.�o�r�3���?�_Ȭ��o��tY*�vpޜ�㞤Pm�O�XY�ib��+��g�z+�^VB�咡�X�9=:�~�I��QTH�ڬ0Nx����gt��xdn{�6�o��MS9�ͯ�����}A�={~�U��-"�)E�
̘Ϸ'�֔["�V/��[�9�=qҁ�أ"�,�\n�2[8�����M��џ1�����\u�����Ξa^p��N:���f�y�-�OE�=?�T��}-��M$D˂��Kc��q����
�R�d)s�w�3�?�J�{vU3� |6w|�NH�@�ӊEH�Q#}�?]�8����FsZ�t�*�/L�x�.�b��)�!U[��pO~zdp{֑�K��n�o� ��8�#=MBcG�auڧ��H<�o�<P��M*�]a������lz�\�6���]�Fg�5\�m��֤�導�K/�#V��#���p�xe���>�g�d�dZy5�?,�
��{�q�:�Ht4�4���,���wo��i �a���YFy=:��)$���"���I���
G��O(s#m*A&ߴlߐ�X��L������(�us"�w7R9�͞z��㩭�
�4�_̼n����"�]�O����zt��h�1�����<��Rj��8����?���[#�
�em�b��G$�~Y��[�J��Vf��|��O9�s�纑4����� |Þ>�眓�c��v(�.��s�ޮӆ�a�9<��9I�k���U�c�i<��H����Wa�X�-�o�	
�f=:v��ӊp�j���WW��9��X4�S��m��,�C�w�A����4���8�m5p͖X��~C��zT�
�cHY�3)U,
�A�:�h[]��hرd��g��x����d3�$�F�oA���?����1s�I��6�)�w�9�Q�j1�`W��[�Vr:����∣I_u��B�OC܊Vb%��v��Y��3y}��>��*8�O`��yR���$�03���郞��5����:���s�����M[(b�5\��6ݣ���z���w�Z掛c�v�|��g#��<���R6��0%.#eU��X�����T��їˑ«����(�뜞��=*&��
�k����`|�	<v���.��k�i�9�]X��W�<w<��N�kUBV�>=I
;��N���U��D�]�ZA�z�v?�
�Z��j~�.���=8��d�y�ہ<��h��pB/~2p=s�{�����3���׿�^}+#S����c$�]�n`�q�ONO��Q.�,Q�?iels���FF�Q�O��ar���n���*��,��}9��5m�O%���]��{����_��F|�&�{�
��מ}})
��%�H�f�Sf܌I��{Q�>U��6�;��T*�،�ӟPy��֒h�2~�	cL��N@��ǿֱl��#�14�o>\�	�zq�
��jkv��c�e�}�v���@};Q�
64��+*��]��.X�q��;ɑ�y軔ap^�~��ڨ�kG�sno�:|�^��/	h�A1�	V�s�c�=��4��.Cn��X��ѱ�6{m'���n��[�T�#�'�YW�n�E��7���~���+���[��l�۳۞��W����zK�|CԷ4;�wG�7M���ם�Ir���_�)?4yf�YK}��|���u�q�*׎l��v�vӖ�O��n$�`�����V|��a�g4��1�8>�:Ժ������4��[E#�0�v�RO��Z�c-λ�r&(Wuų�fۺM�ۈ��`c�_\q�r_n�m
</n�Ԕ�*���\�:py=N�oI{r��E���ɺ���6@8�ϧ^+?TӴx��ӵ����K#e�v��9��s�>��)X{�N�o�vPŸ��g�Uxc=�FzW�he�X�!�W̸��s��3��\-��u�X�\)wLȻB>sۨ��At�[���=Ö�c�t3�9�#�cf��>�,~Z�1��s���Oz���$���ʻ|��&D�'8��Ƿ�{$p<л�K��F������=ȯԥ�]�
��$s7���ʹg�2;���L{F��5m�R"iBI�������� c�[�Zón�۝��9�O$�_N��Ѷ�D��la����@��]�#o�5�Ղ��S��'�ޢ�����tXd��>k7�2���<S��'6��J����1�};��qP�p�Z=�����G��p�z���>�����Km������ɭ�Î�l���3�b6ݷ=�=?�)���!Fo2F�rx�O��9��ph>�ʤB��O=OOL�ۖNљ�R�
�ɓn�ǧ��#��29�f�waxV����71��v���+! ����ߥ6W���Σ-�2��\���JtsG����?�*���^iuQA41��J��2���'���b��i*�������ls���ARƬ��K2�H�r#��T�M^��8J�����yfg}1Ǿ���B��6�r���y�^�oO��㷋M��Q���Np3�=��)����̽F�à�@z�]�E|Y�}�P��l�!M���/#�`~==8��}�m<�xKZ�K��1�m�����ʾ���'��ϗn�'�g�ӭm�Y6�g��*����Y7�ǘ ڭ�v��J��GA�[ڋG}��G��:��޿�c�,��R�HU8����}k�Q�9a�s����`m�7?6�6���<V-�0E2���*�'q����~�WAq
�h��?.:�<�~U�s`�0�2�fTws�	ǾO"��F��t���K"���ao���}}:u���v�3c� �9�q�ۥ_hg���݂�ww��֓�D�(�FNs�ז��e�����������>��ǭ[�%�I%F��6�<�m���#�W�1i�ܿ7ސ�8�N���ǥnڲ�7m%�{N3�1�1�����&ѯ5��a�=n��S��s������Mc�z[���u��
:�1�����S[˶`��������]��젹�;���j��'��{w��\�2�\�c�9�mMS����J�q���U��!XZ�F���c��S?�������lq��'=>�"i�r��%�n|��+���ߚ�x~��l�m��F�&f`��9v�qO";ZO�6����zz�Fy4�~�!��ڒF|���f#מ�� s֚�|�*�J�K +�6���9���c���X�q�m��_�~\`3�����N�K�&�۸ܭ�����n�U%6���,�M�1���?,w�qV�̱F��-�7U`�����c��Q��L��6���鵇LN28�=O�/���t���*�2��t=��=��E��lX��	Ww��9�s�H��02�yq���ʑ�?OZ��OQ��O-d���Ԍg��=�Ջ?2)�2���ݥ���9t��>�R&lhU��Bb1��8��S�ҦfgH��.=�e9$��1��Oaܵm8a#�n���^����Ϯi�ܤ��Y�4���`������u�Kgͺ�L�F޽�c6z���}(p">Q�Wf�޽\s�ǑYZW�B�}��E}�X�0��>Ñ����*�1x-�/C�:q�U8�wQ,f%�+gly�X���##���2G9E@��9�d)=>��zb���"U�Ɩ�Ly�'�?6N�8K2eK��"�3��?Nqס�����ϴY�p��=I�2@�9���ǎ	��@2�Ğ��>a�3�Ur�%������_�v���xc��4��t�y*�y�*�3��v����Uh��!#��~p7.��F�g��Jq6�
�&Ͳ`��N1�1��x����&'�� ���>m�q��N���x1��D[F��u��^x$��:�q�XwN%RP�ܻw��s�x��{Vׅ�DZS����������k��M�|,�5ǹ[\�֪��c�##�\gJ�u�Q�.�I�>_�0@�Lv�:WQ�^��e��l m���3����Ȯ7\�eR��Ao2%�nþ�O�k֖��-/x�f�G�'i(]��s�9�=8#N��護���H�Nr=zsӟlֆ� ��H�3f9�	����Ԛ��^h5�dU�m��ߜ��X�GVt�F:�o#6��6�8�9�x�jٶ���Ⱦc}�E�rzu��X��BO-T�V��<�;����K��h<�XKa�^Gd�����tD��#�.����v��7��}j��9���Z��Wq�W���q��=F1���G���Ӽ1m�Fv�;Q[a���FA�T�#�ܧ��Fnd��o�Đ�?�c�g�1/�]�lYm��Ɠ��wo �X�F{{��J2A�ɇ�n�#r��&����l��6C��ӯ|�ןj�&h�e�]ˎ���̌z�@�&����[G�'�	��ԁ�RaXaQF���K0���ӎ�s(��36��T�;�������"R��e
�h�*98�oN�!�%��Q�pV�k��x�P3�zq��&he�T˷o,��[��9��a$2_���A�6�r���ߟq��5a��Sb=�9�'/N=��(Z�����`r��W����=��O�H�'��>���p:d�_¢�υ��t�mޑ��^���ī*o�h�m�"��@ORs�������,��D�ݬm���g���"��Ǟ��$dž���;�㞕	�B�a����H��8�9����EH�Y&�+nᣌېH'8>��zf�a�f��-��ͷ�M�G卮��v�x?�qӧ5��>&ٿ-��@��0m�����|{��mu!�W��G�w@	��q�lR�4�[�(��^���s���QٱF�T>7|C��w6wA�V��Fe��O�O�@~.kE�K��쳝5CЍÑМ}z
�ծMĖ�H+n'F?"q��M�Ӂ�P����R?��x�TkL9c�t��<��~i�m]����߯��i������߇R[����o������?L��+B	F�#<O^i���(�|���C��w���,|�:ȼC���ҵ�P�?.�7V�Lq��5b��ɟu����-�زڗ�c�*��9�=�&q���屌���on��#{���cr�� u99�?�ү�-���;�[�!c0�f��{Gڬ�?{� �+^��.���7X��2TMpW����^]LBJ�L�R[ՏLw�R�1����4�U�O��ۏM��s�\��$���&{��O�1���tۥ
Tj1��I�O�����hh��hn�v%�?)��'��8�;q^���򇖥��G�L�ۆ�>�\u�p��ʒ��Ȭc�Fܩ9�ol�u�'������/?��C�UX6�`�p=�s��M�K�9v�=�?:DZ���ߠG�>"�
�R���Q����bF��}:��Wm>$�E��0���̍KyrL]\�s�_n{ⴎaS�'��=�K����fmR�o�x�y�8�={�-�n��uC�L�5���#>������۫K�G2���ϧ�.�H?/q�oz�ŭnh$7.�yI�si��pv���Z�2�Y~�{��$���;������M�@�P{�rִ"����l�͠ͷ�o�hp�ׅ��:���>�����y���݁4{�8<�y��Y�Ʊ^|8��1�m5Ipǩ{��<���9���/����;��)��t~U?�n�C��rO�l�WEm���/�������(:��!��:��p��
Y����i+3
�r��!�^�4��I�5�zռ�ٞ���8~:��x�#�/ �͟w�]��]�ڞ�����uęG�`�#l�ǹ��������}#2�t�V�(lc����_�_xaQ��.�[�j���o*��A��]efH�ύVJʤ����>�|��ֿ^�b=��
x���l�P���n��F3��?^∼E���c��}-Y�;���6�>B��q_'�~,E$6�ě�V��L����ե�?h�c�
F+�����ާ<c$��ڮ8�ot/a&}x�
�Y����l+G�]F7@�q�}=:�U�;/^���u6�u�hX���w���j�~5|y����$k��ڜ�b��q�G�O|C�^1�|=fX�e�r{c��:��$:�}������]X���m�㝏�>��mw�F,~+kO1��;�yC��z���~�vs��u�rF[r��[����\�l���-Ɖs
*o-��`t��t�WUu&Td�f|h���f�T���R��2���N����a��G���V�:`����|��~��o\�m��^�B�mW��k{N��|$m>?�cʪ�b�O_�vx����C�?W���|r��z�KA�e
mkz>q�c�楇����l�.�4�0���.O�3_6�_���J�Lt���3�^Xۃ�|�zc���ZV�49�i�h$H�fd��$���"c9�T���d�0�E'�G�[E�S�C�B�0�G`s�g�}���Y�maԼ�ۨ[78�;��+�l~)�_"����a�u۵���?�lc��Wc����Ľ�U��i"זS�c��[7N�U�V���"{�_������g}Zݔ
�qi�����\���y�i��b����P2���8�߷�+�����F�뺤+�Sq�XO�#r3��Z�K����⏉,�e�+^����5Mg��9�G$[�I�r�#c*m�G���?WR�����+������>x__��C�$�ҠX퐃ʉ��o�W��Y�%�Ƨ�'��Qrٵ����{�c�����e�ݝ���NR����c^~�`��LmjI��n�ݴ����9�O�r<�[Yq�S[�v��f�H�6��K�
��̛4F�99$u�q�Ե����S��ui��y��”lt�@=����~�j��Nw*��NF�=��X������r�q��G�=}9>Q�(R��?G4��*���J�/ǘ!e\cP�h�v��zWU��߿�G��eҿi	1��d���<`���ї͓��86���y�皯-��u+]O@�����tȟk�zq��Ut��%�㦬�|�i��]��о9xj��Z1�:a��q��k������U4�h�;��|�J&�by���ς~�:�'��@c��W �p[��z$���؋o��9*����?1-��8=�V����^]��hn��9�ՠ�p��!o~���S�f�:�n��ⱑ��ޣ��ֿ�4����h�'�M�$���>*��*�~pNA�sZ6+�����J���
�M߻�?�6q�w�#'=OsO�|��^��
���jͅR����1P�k�*���sI�c�����a�@~Ԛ<̚�s�5e�V���en{A���:f��_��|�~���o�u/�'8�ۃ��\�������>�S�b[6i1��e�����'�?����{m�ǕTx��#?/�\������Ο�&����I�O�ڂI&���/�9�U�?(��[��w��ӏڵ?|=�/�q
�ߒ��߃�U��<��?U����Z�a<�O3ǜc�,:��3ځo(�If�����=��@8��]3��N@wk����n6�[�> d�u#p����A���j<rcE��u���ӼIo'���W���ȟaW��Dv�C:˷�0��G\c��4�"���~e���w�rx���t�-?��;<C�.x��~f�X���S9��N�VŇ���f�+k��}���Y�d����O��)S�̟eS����(؂�=��ٻ�`s�{�KD�֊7ew+	��G�q_5��Y�~w���\�r�[�K��G��?���h��U_�+ZH��кLM&y�C(>�8�s�5~�<�;�fk[��8�Iϩ�Bl�2:}��ݜ��>�t��j�=���I�F���$�*��C���g��?k��?h���T�0�f�m�j�njp[������7��n��璻�R1���>�E�[�<���Wd{�s�v�@�������|s�Ϲ6��R���
�>���J��O�i}o+�J�V��1�sǧoz|�3F�n���������#j���ug3:��eb���2Fz����s�kCj�1@UW��mPÜ繨ͣB5�nm���לpz{u���!rEvQ@�$b��E����'����4蠾�;�h,��0s�@�'=�+P۰��C����d���c�h�W-2���`�2=:q�sE��r����v�"06��:{q�jF���+��}�*�6;�:zU�l����፿L��ӎ�)e�n�5򴛰�RJ��˵�TK�i$t[Dfnwn#�QۿO׊l��O����6�������Y��mUb��~w�׮zõD��chF�c=�#?ӿ4����oaI���,����<��1�RE�J_�0������:@}?�:E$��ræ{�`t�-���yjr
�h;�9#���>��x��>H��F��I�(����RY�3�*�ʳFNA�ӑ֘,�3����0r���p��zt�A7��.�3q-��r2z��8�8��$���F�i[lk��v<���K&�d���h�UF���o^��j���-�7�ʊ���>���8Z[}�c��@e`�,A�����.�bv��#��$Gt�73/��y�zU�-�����ܨ���9��qֳ�g�c�ٗ�z1���޿�6M:(<0.�(�~�p'���`6e�TG���$�x�V)Zh3�ث���~�8�c`��'�~e`�m�xz��*���y&ÅVg8�8���4s��C:�˷o�9�O^�I=:ѱ�!>W�q�Lv$�b�K�m�r��n|�;Ns��zS�5X�^6o�����cߞ���9��l,v���'V��F��'�P9���A<_�̡~P�y�3�}9'��y��mق�YP|�����\��k&�7)R��>��s�G2&��kR��]�ʥ�^3�8���@��o�S��0���}:�U"կm���Wy%dF99'�=zt���z�x7���BNq����ih�;!�j��Xs���v98�o�K�e�O�p$l��g8>��<��˗�M�n��8o�~\��犚�^
����C��8�>�8�+���Fվ�Ya�`0���ϩ���wmUe?)���Q�j:
��*���v����LSνEP����ݤ���ҝ�{ľS2��B�<ͼ�8�8�;JCmn�][��>`I�����Tm��ú�K�^���9�8�������{|���g<�����
���-�O��Ğ����5m�C�/���^s����?Z��i�F����m��3���z�R�O���D$ݎy��N�=��@8]�0��o}���O~*	-������W�%�\�#��+n�!��v
������q�M,ȲnQ�h�8�8���LA4�%ʖl*�o�~=y��h'`GXc�k���U���14hv������c֟+Co&�uV �f�=O^�>��Z#%�ɍ��꛽#���G'�̪�#9��%��|t���X##�ɺ<��.�}8��#A'���&T7�~�#�����C�Ei��Y� ]�Zf^N1�����nFf�!����u�ל��t�]}�������1�q��*&�ބ�(��o�~�h�D�u7�<p�卌EX���?�~C|W�k�<ew"�G7���G>l�t��?Z�{���L������c��q��z�w��*.��HY��ד��0[��s�����h�c/�w~��g�M3���;~eE��1ߞ��O�W�%�F�5�*Y糑6�s�nq�8zR.X�"eU����=�A���P�If !�m�G',7z�y�H�~}�S�'�����7��t��x�KE�$ac�k�!� �?��q�Z�/�!��n��</
4(���X�z�Ú>(x[@�
����-��t�-�a�W��A���6��6y#�5�)�����o^�K?�⦤�{4��%S���}���4�z��Ʊ33n�Nz��+Ѭ-V�5h��;d}���8�s?�;�7Oi/3L�c���ǰ�;z�-��@۔�3yd�F�B;z���x�X���)��ǵP�������8��s����qr�uy�n��T '<��}:�w�-B8lt��D6䴍�݂1�{�Q�W��]n��2+38h�L��|���S-G�M]�E�H���X9��:�C.N�̒mUul�9����szDXH��d�Y�B?�	c��]E�)m���� ��	�8��<e`:�8�zE�ʦ�Ja���N��e��j��'vw�ק�ز6�l�M��MɞyS��\�Z�J����G�f�X/�p21�o�&�VÎ�{�2l�v�)��s����,>l��hh�,�`<�s�-�O�����Bȭ�v����<s��V�i٣1*����G
I�Ϸ'�j:�Vy��b�K��;s�s�N?�z����U��g��3c��8��6�@���	
Gs������sH��U���l��e�z���Ƿa���j�.�f�K��
�c��8힃���֍{�#A�]��-W�u>r�s��zV1������n
�\c;s�s�����~YI��i�Eh��#,��n8�_lt����I�DV�=K�`���輚g_�jRm�La:�uϧ��( ��%�i�k�n�x�=#���z���u���^�ur��^9�?�x\���+�/Y�G��k&�i��N�8o�Ԏ�1_C��
���p�?�g�o��$V2̯s�[���_1�/�s�\�.*���@�����8ؕe�E�8���ϭe�9.$W?(C��@'��ϟ�-�L�XU�[i�{��]���uѝEݶ�k"��j� ���''׃�Ldw=3UN�ewu�Y^BcV���}N>�.��+y�D;@^Wnx�� w��_�4�ḻ�^����� ����+�����3
�񞡆I�qߏoΘ�T��#gk)\����#�{zW������I�hة�6#8���M��m���W���8��ׯ���h�G�<��z#xd\L%0���C6�����h�/�����!��rzg��e��$F+�*�ip�u�=�J��'���]J7Hr�׎xҫ��.3�z��Kb��+/ʼ��#��lj���|����N��㰮��Y��F�kjɖ�"��s�	 g��+n��%�݈��aڡY�Hɂ0�ퟯ�5\�fV�5�uњ)pܿ(m��8�>�{ӗF.X$8�wøc={z��/�~a̚��>_*�[9#�}*u������G�
>VU
��	��#��w�����n��m��ų�,�8<��_s�9�d�I"����&�ܡ��
ߠ'8�ɤ�8�e�0�ݙl�9���*{#a)���r�m�>�}�����*��$1�2�3*��9��9��>�>�4�J�۷�H��=��pz�>Կd��&HXWr���lc�G<i�fc�3-Wp�>f��:�Ґ�&�H��`T3���Xc=1�g�8�S�y
�>f(ڬ�)$�qԟA�£YZ䅤m���O?xu9=�Ӣ��vōY�X���<��O��)l�������-�GQ��d���B��=˴(l��8�~��Uhft+ȐHc�B�w�=3�GZ��h����%�T���z�������Rhb�T.�`��	ݷ���H���""�#f�~P1�9�t
Mm���_,�,Inq���9�N)[�~e�k�E�f��G���:�s����ϵQ������9�H�5*�\\����qm����z�}��<��{TA�N�%���$��
�n��ѳ�j�m�o��t��4�`q;)���V5*%꫞��O឵/�t�1X�VV�E��s�댓��t�W��6�3�w��vW;����5$Fd|k��˻��߁��x�B��xb�de��_�RE�N{{��"��F��qa��PN}z�$��F�Y������=^:c׽>C��+/��XN@e�Nx�˜T�;��~L{[�o�5�ݲ>�@H� V���^��np�
�Fv��g����ڱ����+>���2���w|s�jxRA��[�~X���R	�^���ч�2d��f�֠&����VA���1�3����ӵr�����e��(۞rA�G~�޺+ˈ���Uh��Ԝn8�==qߞ��g[�e���ѫdH����ߟ�^���������1�f�h$`��]�?���f��IF��M�X���G�ZZ��m�D�F&}?�c����{S���_,n�Oq�Ң>f��:$�a*#H�2��R���=�N�Ѥc�*�e�v^v��v#�|�W?h���3p�v�$���z�c5������`����ǧl{��±��|@�+�gv����jF�<��G��X?g�R��)|�&����R�����]�`����� U��d��H�����Z�~]B�4�{��4����q�O�����d��#�ic�Y�
$1F9�b;Ϯ�IJF��%�51�?0��w�1�d�qR�y$��ho(���q�:c���ZT[��&�26wB�z{c�C��9�1�н���C0V\gw=98A�sӚ��fh��{����pG��}��4j�ɹd����Ӝs��4;���<ѱ�[�_���N��R�nvR�/��"ɜ�<�Ў�w�?+1+#;�rG 3�x�q�QY�k��	�7ګ���r@��c�ըd��%��{Af\��������٪�څ�O�}�$p��|�����OQ�^=i߼���ݦ��P�c|���9�1��Q�6$ye�i	۴p2:��Ӡ1)ȖET
Ws���T��H�����m�$S�q��>�$e1ۣl%�W�l�y����%)�O,N�~e�no8�=�u���5����&�g�c���v��5��<��n6����#O͜����}�m�ɝۂ<��;dc�;f�!��"\FnWz�O�j"H!�`UXl
�����R�2G����^/�{�c'#��MD�o���Y�"5L�2z��O�@����o��ݵ}�u��8��M��u��W{/������"xg	1�o���N������Q��+��*��q��pz�c�x�����6Y	�U��g�?�4�,)��n�����4}���%���"��xYO̾��`z��eX�D�app���8�۟Z�H�9 ܪ���#��?^G���;W��j����%o\�>Þ3�E����4bY#Q�dž�A�g9 v�y�:zXx��
��nPs`�O#=�O_^�b6��h�m��Q�\�NO�q�{�$�*�h����!xq�G�*#��$��o�"�$�/ƥ�tG��m��f'�����:$��t�VC�eY{H�ʞ���"Oc�<�겫sӜ�C�$	{�Emo����ӯS����
EHDk��J�3�^�y��L��{ud,UY�n�^.1�?��D�Ű6v��6Χ���q�}�SW$������|�/~�w����r>#f��Gy������s\�T��`�g-�8b�t�.�6f�YUU�Z28�ۃ��08�Mn�mp|�*�JOPs�8'�����y���ˉO�Oo~}=�5X�Qp�|�_.1߀=x�����;‘�7+mR1�8�sߓTN�TI0$�w*����d���2A�BW�m��G=r=�<ԒDc|y/�϶M�=p0s�{�΢P�K�ݰeJ�ן~��iFZ�˦��[�hrřv�eÌg�`A�zҬ��11�"4ǘ��`��}�ڢCo�)i���v���~��dx�,�b���9q�=x��b�$�#S��_p�?�%���:�́��(�m��c!l8$.~���.%�4��n�<�=}�ց�$9��,F�3��:�7��U�Kk�J=	-5}v�o:�[��+�\��s�p~�ձo����E�i>"�wH}�;�y#�	'���+�ۃ���k_~�Z�i�[W�nkB@żm�����$y�_ٓ����n���I���i,��Z�h�V
�tes#x�0l��(��ju'�s�X�*�4��c�>+�F�|�����V;�h���	!��ߌ~X?�lx�fxo���[��ZR������O'������íc�ŝ:/�Y��[)���4��F��fo�i#G�B73(�qq��F�_�@F�n��b�����������@�4�	�P�u���'���t%yC�?�׭,�1�,�H���ͷ�'Te,q�=�Q���|�#�"j�6�VvV�n����#�o�H׊�O�C~x��^���I���]G��\7Q�ł��
��̜����'��tq�c̣tL�a�.G#驵��w���:ݬ�N~ϩ$�(<c��c��[k����-���Mo�؂7�>V��Z��5�\����u|�R�o2�#��LG��P@+��d
�6�>Iگ�ms���8�p���R�R��Z4T��Tv��"V����7%n��U�y��"�i��e}'��9ݟ.F�<�Ӡ��?y7H�'��>2��^�u뎵���U_�7\�s��֔q2]
Ta�#�,u�2ƃC�ͥ�Y�c�]6�#
�<��H�ּ_�~#�s�|LԮ��}S�W��;g}��[U#x����^j���'��%f����a�!Fs�z�X�_�Zt�'��
Y�L�g����L�<�fW�#'�>�κ�ZS���SS�f�:�J�ʽ��`�>�g���a�K<�X��1e��2F:��^7��\�'�b�cnc���߯=+�"x^o�_<�^-cP���>��k�w�ڳ�b��2/�/��Ҷ�FX��	�R|���;���xPU�`s�O�
Cp!
M�1�|�$��??n2�4Tt�O�����n�&eG�ġ�:�z�q�|A��֗�P��4X�V����8�C���'Ӯk�Ȯ�fZ]��I��1�/���u��~4%��,j��Jla������q�n_�s���U�F���f�o�#e+*z����u�*�K��ӧ�^�>\�xZ�,3��=F?>ج�W�����u:A��D�������<���O��.��8�=�#�lc�\�ρ�l�=dݡ|:� f�Bٺt�Fܞ��Ú�C�\�G�\|ѯG����r�@��r1�g��k7�⣴��_s�K��/>ZM�ln�sߡ���7�������w`q��=}k��Ɵl`��?d�0Rs���
>�'�b�<u���o�:Y�G�?f߉��n?7�w;X��2�0}+?����M��$�~o��8qԌr��s$�l�c�X6���o<��z�ל�BxV�R5�	x��5��ڇ�/��t�m��{t�����U���ڠ��M��9��/����Z;ŕ���m�8�t�l�>U��q�S.u(g�\+dFXq�� ~���~�_���o�~�0l��i��>lc��8��#�/ýVD���ދq	���
�:|��*=�Eѕ��N�_��J�ۙ�m�ch��y��V$�y1}������N8���/��~�cw�
Lg�;c�zg�~��5~�&�:�ʬH
�����KR�W4_SP^�4m��p�Y��89��=��Zm]�c4����d*�z`����X`�"���~V�ps�~����̮��[��n$���<�Ͱ^�Fu[�d��wf�y�a����4ƾ��T\�(`G��c�	�����+�~?�?|Q�P�>�_���1�t���?�H�X��:��W�x{��]�xc�~����A�����-�����Ks�ַ�-��&2|�hv�z_�.��+��<ς$2iq6쎤����>�;D�ң���f��x>�Z�k��&�n�1���N���#ڥ�����ݍ�����:Y�r��1<��s���=��e�Ū]C��W�}zv��_��:1Yt���ŏ��o⋵x3q����m�]�琲(�	1�u'���bEv�E��?3c��9'�#�5�wd�DZ�h�1�������
��ݵ[�.���$��<�����W豈�����*�(�Q�.2N�ϧ�+�7�	<ɤX�����g�=�%+/��tm��!}03���>���V�b}�_C�t��3��Җ?�ڶK������cp�1�l�={�k���_���6˯�>�d}��>u<�����}1^of�6����s����iE�n�㕊�eU�[9����+�0{]��g�߰1�s��׊p��!�	�;�<b����+��1b#�X���+y�D��Ħ0��:�N�k�y�^1��\��!؞A�=}��"�Y�;[".�۹X�A�=GL�u�땼��
=����w�L	�j�����g���9��?6G����>��߉�fC��B�ʭ��±$�ھ!���г|ʧ+��7뜓�1R%���H�m��2�l�;�?
����H�괏�����~ϑyc^�]�=�d���򒠎޵�c�����aԼA�
=H!�ׇ��t�k���eE�o��Ucn#;y���i����6��hצqb�=G�銥��X�}R��Ke�a����Aw����w��{o$`�s�|�=�����?࠿�n�����K�[�u���ۏ��ƿ.���ȷ:z�o�y�������W��|9pss�6l��K��̠z�^?<{v�X��E�H�?]4��k�h�U[M�����&�Z?� �rx��ڷ��#�,��E��2����r3�9���`|9���i?�M�]:8�a���N:�Ï�PƲ�j���\B��;%q�w#󥎏b~����z��~���g0_��#6:���?�z�%�+:�ݵC�p9	��O@pA�_��>�,.���<G�[#d+5����#�T3�=O��{�������{��j0�<rgX��^��<���tr)��u���[S�S���0󏼙���E`���Q��gvG�O{1�<�)���[;x����+�/�a���G�k3-��j.!�H��g�.Fs�Zٳ���
� �_��Y�f�*1�;���o���lН�w'vU9=���߈�n�YN������ �ӧ��+&����FwKOi�$���Ϸ�s�o�_��w��
 �&�!#*ܪ���_�� z�'���",�RrxW<q��M6��Af �����Z�o�iWH�d��F8��̻�H�rN	��S�ՍYY����=��s�z�4��=��#���3�=	'�}GOL畊Y�E�����8���;G�]X�3$������L�TIPȨU] :u��ǥl�"1~�ڧ!��@���v���33��/���w����l�p�ڹ
��ݎ�C���I���(VA$�r��
���?�0�g�DDc+n!��nq���뚎H�Z�o��ˮ�����V������w�1�y��sO���"ÿ�s!I��n�c�pU60�dO(/� m���<u�>�^{;9
�ۯ�� Ƀ�:�k:��"�P���@�\��9��5m� �1�%�ۻ@�^9�9��ќ4�d�$;w���^r:�����G���w���~#���jԑ�)X�~e�,���=�=�?֫�Z�s]/��ct����
9CЎ��ɞIy9�qc'c��u�E%��Z�.>^Y�Ɏ3�?��N*�G%�J�X�[w�۹���_���HHV�������r�)�cu�Y�*p̬H(����_֤g��y�#+;��[���8�q�X���2�6n�F~�;�ޝA�s-�;q�9�rq�=h�>8�M��Q��c�=�9���z�W�<�+�*�1����q�v�X�F���S�(9�9�1���� aN⭷
FNzzq�J^�R�P������N݁�<��2E�I²����;u�*��1b��e�A�x��t4�L�eH̛�lr9���=�1|q�M��#V�WV�s4��'�6A�>����/�^xF���oi�I����c��W��Y���o]5��4���H�۰<9�����<�<�$���7���q����/0��[���/�8I!5�V��7L�9�}:q��BV�Ap۾Pp��ͷ�bw�̱��G��#���s�UeV��䍕~�89%y�>�LW�P葉��n���C}lO/,�c��c�q��U{oiv-���e��W*2:{�9�g�r�y�y�h�'q\w�r}����FV0C���,�Am���'5�.��̇3���vق�� ��<�=8椺�CHwI��B۳�����1Dv���u��ߺg$`s����8��ʹ�����;�S�c�iv)���=�u;��Nx�����W�]��ڤm��gߧ�}F}��H��]G2n0/�nF	�{~��T��Cr���Go�v�
��d`t#8���`�:MX�$2�����e�u����A[[�fd��,�*�2{s��~Y湝!w���Y��#�O���@��kp!_!ZFlE��x8 ���q�H�r���ewF��l_����5Tb�<�=�,��,������[&�!W@��ǰ8�� q�N��]�op����Kxq�A�����k������<����#��ҟj�:̬��/��;c(�.ZEGiT����q�zp<���α�1:��C9���?*����qH��X�e���s� إ��wl�F�nHۍ�y��� z�	1��R��+o#i�=���<n��D-�e��/Sשs�9�m���6����j�.���y�]���m�㟆�@�#�ifVb��cs��}��Ifg��p�S�ʓ��,=�ƻ���U��n:}䬪0~XX���j�mRjk��\��~Һި�$�nL�z{�O`+��V�/���f��R�!'�������f������ͫ�:~��#Ԝ����
���f��f��'�8 s��_E�����umq~�����.a]� #̐�:sӜ��Ұ�k�6�cm��`T���� ���[��Q,�t��� %�x�������k��$��ߛ�0pW���k�4�e��qw6n?t.T��"��^���=�z�&�;�pU�ꪫ�����1;�ʑU�v�?1=���\S�Mu3��wuUU �=0;{3[*c��⎔q��ġ���-���C��6�	J����q���j�#�BIddU��deA���ԉᗙ�fvU��x9���EL�c���R�D*�3o
o�����SAgxD�v�T�c��ǧ��/��#e�IU둇�<t?_�U�?Ft��8�L����Q���C��M��nn�`r�/�'��'�+W�ZD0�2G���n�>\瞝��J��۪Ko<+˕���cc����<kB�mԬ&�;J�ǹ~��N9��(��˛�g%�h��@��vc�c'=y�=i�-bM���9n�:��q�f�?�G2���@Ќ�3����zqڛ.�&7�M��PFz��<�8r��K��Xtx�̊���3 7��d~��S�eC����F���g��w��}:�V(D��.�ϱ�*����4���y[�'�b�T�rOs��缭#�ɜ���M�dOܖ����r3�s��"��2��.^s�=M�x-L�ᙐ�0�������4�Mn�K$h�3�d��L��?J��ǘwm�Ln�I�����;}z�H��avR���A�	=�ǷF�6׆���]�pI�_�\��H���/��HS�C9����T���7��	�]�eh��!c��ܜ��?Q�I��яZ_�����:��:�D!a�l�K�Jm�t;�G�㞤������U;6�Y8�s���F�0Y�s�Uu%Jq�'uϩ��zqO�S!��m����B����ǧ�_NJl

�h�Vi96�2Hd��SL�n�F�3=����c������˩ms{m�+Fd$�lx<d�I��l�ĻD��@hco�۷���CN�ĹR���0z��0x�VIR�\շ|�����n����[PäL�B��
)�����9�Nf�A$��X��F\�_�O�{w��K��#,���l}1��c뎃��h�4F���{�|�B3��(�t{4���`�m�nT���O��Kl�E\X�T��'�}�y���t9�����6dz����zX�$����|�zv<�q��je�dR�O޷7��>��Q�ԑZ^��{��{��~�C;�U��t<����m�����r2NN@$�V���:�����	
�q�?1�?:ڇƌ�|&���Y!k�>�Woc���1�׽s�/le"��nTVe�G~3��3�x��n-��v��#�p�F�3���'���2�,�-���u��^��<�\�-Ee	(�Q�['�װ��X���y�"��j�`�΅�C�8�7���zm'��'@�����?8��*�`s��2�I�4�k����G�\���yl��8����kb��m�����c;��ǶJ���9|�ss(�����c�������%��n�[�t`�'����jjmؓŊ���	v����;��H�g��p�
�L��c���
�F��`��]���]��3��!�do��q��L@u	��Ӕ31X�KcoN²���s�]R��
n�ޣ��݈���ǧ5p�XnĂ3��G���=��^G��m�ƈ����pN~����z�ks��_�B�p��3�����@}j#�N�{ܯo)$iv��Os�����;�#hգi3��=�a�<�׷���x��d[�|Q2���Ņ�����_m�#�j2���CH�8���J�J[&��=�<��Y*�ny�8�\��V�y%]'h�<*�}98�x�����tߌ~'��k��
�E��*���e�8<�~8ڱ��}����t��u\��A#���\��>nc�"�[g2ƻ��w� � ���c���3NI��H�1��E`;���~+�t���D�?������
ʽ�1�=�����h�D�{��uh����\��c��t���^geta���n�@� �'���IN})��ĭ+:��v�U�둻>���Fs��(x
�1��㍗��R�p=0�@�d��+B���F��^����[�_w��A��9��v)lk,�uXI?*�U>EB1ߜ�ҝl��6����]�.��G�
�k���7xo-�e嶶X�pO�:U�23팳,c�9��C��yx�I��f�䐳��un�g���T�4X���ʪ��y'�>�^)��c��ln͵��u�k��)�90��UL����X��䏠✋'��.7����ǧ#���zS�p��2�ފ�?��5��	��p�\�~T���r9�A���a�V���`nG���:��-�Ԙ�4���"�2�cۨ?�=Mo��H�I`�A���0z�T6��1X�q"��ռ����1�֭A$�冓�W�XBz�\0���a�ѭ�+�̸/s
�R7|����]Nq�SIl��FV���q�����J�3�:F$��jǿ#���Ӣg�4ϵ�݃�o����P��ա��gFf��p��Gcמ�}y�j#X2���[�c�O��2�X#i6�ϙ��r�;3���.2NT72F���<��2�q�n�b�}��	\�s���Lԍ�RG���`o<t�	$��i�1��]���Z2Ï�g��:K�>b������a���A�&�Ƅ�I-�|�D܌"���@`t��t�b�U��uT`�pa���w��SZ6�c3!���c9'�=^ǽ*ە��V;������9#�zUl!ѳK+-��w|��e��{�������*�~�Fy�Oi�7
�)ޭ�
�sӻs��˜����_j��$1�t�8�������,���8&�|�.q���֛jZ~^H�]�e���ˆ�q�q�SF��2�"ȱ��r21ߓ���"B�U�'�-�*G��#�������%�toYO2jZ����[��1e	��#`���`�Ծ-��7�
S����P���v��d 69s��>
�t�E��Z��,-k�Ep�Ec�H����6��zV����
|Qՠ}Ao��C}�W�&>r�[8eߴ�}�:8�!J�$��]W���֧i�Y=��
<F2]|��0��=�NF@��=�\w��6��j�?eV��������%ć6��s��:�'ӴI5��9�����F��e±a����N3�?���W^"��
麣���M|�rwHp��h�n�s���8w[�ڜ��Γ��<��\�?��ѿ����-qc��k�L�fR���b�Cc��}7J�����Ӭ�����Coƨ0=c�rz���!�<���œ@V��A���<��,c�KHH$���{�Au�;m�<+2�|ݳ�x��Z���v���xZ>���՞o�x�O
��A|ymo,+f�O�f��Q�J㞤���*��A��?�χuO���srڄ��>��i��wm�-�܃_8|#����/���}��gX۪j&KVU�7��`2�G|k�jO�z���J}z8.WM��Z�v�rG���V8wbX�ԁ�W�,��>��܏7�\�|���(hz�O��C����!in�#ɳ�wc�" �Trp��3����O
xI�-�xrMn���b�X�vI��8�,!��G'�9����e�'�u�څ���
j�դEŹ~[q�6��H8%�>��<E�x#�޹���;M��m�]������H�1^n#R�uz%�����ݘ��Mϊ��ğ�C�_	�{��j	����wWYv�H�X��1�9�_�����7YUO�3���~����	⋝�U���uk��r�^Fd��Pg�{0zd�s_C*�̒acf�
Ÿ�\����<T�嬭ؼ�*z��g�ۮ;f�V��?��}1��9#v�I*��F�#y���g�}i�v_"a�T��u��d�� jl���bHٙ[��F?�>�}��\���>;�4�<?�[\���cn���p��;n�Q��w���o�(
�~��y�����pk�񢶿�O����>E�u�7%�>TM�%�^�u��.Dq������ǫg�:}O�w�ݧ�Wr"��H�m�Y�w��~�S޲?f=1<e�X|@�˝�oD�<?jʧjK!kɔq�,�`�´�*ҬQ[(_�h��w����Z_�Nm��V��Va��i�mKR���)7���OO.0;�y�{L9�9v9뽑�je�(�%�l�rpF��N�NW�{�r�8�>���,�Fy$
��p>��{���P����]�$\��{��}'1�P����'iv��c\�9$8��׊N�E�yY�W�P������{#;4%�H2mʱ����b#�̻-–l3HNS�t>�-R'���C($�#P��m8'�N	��O�M%�O��5�ex$��<c����6�mʯ�d�|��^zr{E:�%9��QUp���	�~��� ���{=��k6����Ǩ�~��x~�b��+'�E*qǮ}~���?���x�6p:����,&�,�7��{���
.;\��z�dO-�b۔��2:�ǧZ��ew۫e�Y���wB0A�z���$j|�X�a���x�y��
����1�x�q�?�z�q7��j�?�w�!Mƕ���̧���\���~����>	�R`̧������ʃ�>�+ּ�+t�Fw��-��8�O�:5�[�XP|�
�8�~������E's�/?����Qo�SG�i_��$�������+2�	��l�X�k�[��WM�ß��rq�ӌ���݌r�2��UQ���=��9��L���wepIV�����t�QW�|�/���6���1|I���<ܱ$%F��p}�Y�a/C�'���*#`~�iap�w@	��j�|B�@�eX�P����2}?*l6����+����!J��=G�Լ=�C�H�m�c��ѿjE����5/[6;�c�}G��}��7~��a�����?�q��9�O����H?��_\EiѨ?2Ȋ���?AQ����ʟ-���s���9�x���8g�G�6|���m�0���o�,g|�k�^ې1�D�q�&���k�5�j߳Αu�FSK��JCz�6%�0O\t�\p������wH����Ec�����qۀ���t&�yv_d~�}ϊ�վ?������n��6�@r�Z��>5����!��~%Z���,�1���z�g�z�Y�{Vv�m#m���3�@8�Q��4�>�x��y%Uz��G_QY��
�?�j������.��_i{��<�
��DDpqުG�Q|��Kk��h���e��۔�'��@'�q�:d�_p�	<��e���X�c��j9�'ay�i*�c��sn��sϯoZ�"�ٓ*8��ƺw��[��[|g��0Rc���hFN�cx�4/�����Ӽ{��+0�m��w$��q�v����Mg��=Ywk>	�n�0��"&�3�d���^���_���Ӯ���<%w����l
��*���ӱ������+��1��u����emͺ��ӟ����=��m4�"��۟i���?��0����R��x��׎��|�-w:�6~d9�~F^8���s�����̚��4�g��|]�Ã������]$X�2!1��T���[�c����E��̒���72�q����K�'φ`�ǡ�d���_����a}��t��A��¾7�B�O�U�|�6�%��g=�[�{g�@�����$��ƻ幗L]��/f\dq���#4��e�������q�<g�;t�҉c_�#M�e~ԲL�����i&rFF�u�=�Q���l
2Y&�����/�Gy�	�Ȏ��9�?J��X��>��W>Z��2����w�� �-�eu�ll�0zp^NG�`M�w�ݱ� �j䕑n�S���zUg���5�^�X�1c㲹�%�}Nz��n.=?��:��9e/�G��z�׷��*F�;�QE;�[leU23���z�5O�WI��S��u����M�E�•�d_���޺
�V�%��,���Y�,p��Iuݵ�8 �8=��z�z�}f�i���6TKVid,J��n��=zzR���-^�T;����8ee ��s��g�z�XY�d7��]��$w�Y~>�,>�&��חj�m�ʅc�$.�I��=~�o���o�#���~�=�݌��~�qik'�cF1���`[!@f������?�ݱ��s5�Rݲ9�ֿ:?a���_�O�{���?O-�$w�r,�@i	c�g�}1޽~���|�3jV�L�n[��{����9�}�;��$i˕3��xK�����L�	��A`��=1�Q���]���5ڻY�9#ݞ�c�g��^��h�q8�������ʣ�3��}?
�3��Ѧ,���?j�Hl����=~�JP�.V{|_���-�dʂ�F�*9<cw�O�늱�l�����V���`�V�?) ����zאY��6w���x�G�>~k��h=2�ֽ��!�_�	[Ó|�v���d��>�^�G���|�X7�>&kQ1;�5�lq�r6�\~t�����!���|��3I��{�÷�pI��M������3|ŭ5=�?C�z�=*��;�b���?�m�-�������))˸�Wc�]sㅔ������
��5�9���{������;hw�x~�z1dA��F8�
�-�0xP�R�QH$��zpG_��Y����`7���D�d��X��=�qߧJ|��/f�B�\��Ƴx;G�ڿ.����c��i���L���f��}����ӧ�����⦃(�_�6�o�.��^:m�}?��J����!����A����f��
�����n(���ò:(�h}J��f�>j�gm���='�Pzԩ�I�~�Vk�k��@gk8�����Nj�v�)��>Xݔ�X�rH��9�<�?J�kyt�)�\*�ϙms{g*�~T����C��ߵ/�R���[�o�%�(��}���M7�Wß4��7�VV�2v`�1�K�̛�:�е�+��`��{�Slu
K����Ey�h�˧�N~O� ~^����w;+�/���f�o&C��F��޶G��#wK_[�/��8�^��=¼��?��}�i>n0c�O
�6����j���.�i��[-7IYY~_��c�F���Oڲ��5]�q�ր��r���y���V��2�kn<�S}}3�⼒��?�Wʆ?�F���a��c'=7q�ӏ�
|+��=�~��Z���z���r7��i�����v{�8�Y�mm�V���c�N�H��G��Y�N��|~G#�u�yf���R�����.��ݾX�H�<7\����V�]��k��C�����O'$��xǵW���=*4U��HϷ�f��\z��I��'-��r��8'���^c�m`�m�f��i���:���W�uό��bmWE�o��+����i�1����/g%Խ�B�k��_nh�D�;�^T�������~D�N�g�4�%�c�MF��i��Lc��ۊ�0���Y��v�'�ݵ��.����n`|_������\iZJ�
��n&��w�c�m�s�ב��R��o���¯W�#�����EE��k.03��8�EG9�d���@>��i�w�(�seL�g��t��
�W�n1���@�z���M�F#71�\�>b��<p ��$̍	p�fېy$�zc�u��,�/ޏ��8�x��j�ui6��ZE�6p9��t�泸¬�L�h�
���A�H�z���	���6{����=�9s�U1m6$VR	�߷5��Z��`�<}Ob2p�x�����2���71�2!�\��=J�RK[�����q�w�q���R��4��6�U_���������t�(fY!��ef�}��S�ұ��6tz`�D�fO,���۴����ӧL⺋(�xl"�l��[��������v��&�
��$�C��1��m).$�-a��w%�gsu]�dp>��y�C:١u�]�����@��2y����0�#:�C��8���t������H��3a��G^�Oz��:�,?*�P@V
p;�~���� �Ku���nR�1ڣ��=�����K��k}�=:�Z���6�M,E��6�(��{v�(���Z����o/H�'�ק�R4Z�q;N'_��C*OA�;u?^*<p��0�c,6����_oJpHHo?q+򀣀�GPrq�ޣ���r�ÞNG'��}i>��Kq���U�m�.N}�~�һ���g�^�y�d��	�}ܠ��?.3^���|��rx���?VK_jR����H��� �npN:�����#)-W����_�E��7���U�[�x�v��_w|W����0V&I>l��u���>�����q����p�F&��r�q�Ls��W�_	V;MStۗ���o\�>Ny��<s�1�G��CΗ�Q�7��d��A�n��i�*7��G#����u�b��u
kC���u��`U��T��=��׭w��5[k����B�ĶGBq߾=���<u2N
ӳ)R��L��Ͼzb��]M\c.�u���}���ƹ����Ho�z�֟~1[GA�UbZK�=�O��~�WC{�}�o��-�F\hFx�bk:{φ+�^�V�UW!�����"���'���Q��h6%��t;��n� �c��x�8�;����h[��7�{C6��$��CY��?x��D��-��t�r�Ni��0�[�k�j��}�.�����'��ך�T�g��u�����즊�R�Ak#7����8n�$�ۧ8��mh�1�O�-�.ݰ��w��랧��W���g²n{/j�,�:'ȸ�d�}~���x$X�>$y�cۉ lԃ�'9��H֗R}��/��h����`�r��;Y�[k��9
N	�k^��O:]j7��N��;�zw����^!�?
���汖�	���\FiDZ9��[��0�������|nS�>��q����*�%Q�-Ϣt��ྤYWƶp�d�de�Ԟx�O�[V�j7R[Xx�O�o���jz�=�ȯ�n�	�h�Q}�n��	V��;�{u�Y�����/���l���N=�L���i�'�s��䑚٤ڲ��xP	���?JrI����+���:`�w�{�a�<�"�����q�W8���t��������?1�:�;pqҾ�g-	m[k$r)T,�����}A?�W֥�d��wF������9�>��:�ڠ�h����6ȹٞr~��5%����	Ew�(h�s�����X�H��� �	S��g�=>��k,Q��$?6����rs�ڠ�s�Ap�0?2�۵@����j~y�W�ą~�
����*����g�Y~��� ��1��Ҥ�dEY߶"~A��ǃ�nj8�>"h�V���w��NMbT�c,�������:��N�&�WY�w(c �1%[ב�p)�BVx-[ks��~G�������"��ܿ�r�yǶ?1�(�#.�[t��V�!p^ݱߩ�a����v�H����G�1�;`��y�-��ט�X�W_�����w����S�,�7%��=�tidR�l<��Fx�}��<�&y#�o�I�)ܟ�I�{{��7�4i%��|������t�d���V�v[��L{��Z�v����R��۷1�y�;�Z"���M���ݪ�I������ǒs��٩!Y�8��ݩP�.0�'��{{Sfݰ� �������sӵ4�>t�����q�>���\��Y���h1�9{g<ˌ��Z�@��-ؐ,���zOC�����ܴe'��
��=I�}�kCB�:j�rN2���P�<���5aM{�r�f�4Y3嬡_p?{�О�=�c���I7-�lۜ/���8��9�����i�����D�c8�#�$��������/���!�8ۜ(�zc=�Ǯ���a���c�H�ϟ���Ԓ{�{��5ұ�A��#W��p:����g�j^�'fU®�n�q��'��Ƽ�X�3=����U�`Y���8�?K�K7��`����������^��rz����L%�0��W߮y��q�z��-<�Wq��KB��l�ʺ=0�t�꛷c��ȧ9�R=OC���E���y��h4�B;x��`f��w�듓����qz�|u
�/�#W�Q�e�f��N�v�ֻ��Q/��.�*̣��89�t�p=z�Ya=��J�գe��iϿ'�9�\�ӈ�V�i��fϬGu�`�<E�N��p0;q�f��Ğ���YF�6^6b��c�:���S[�.��_0�6�̠09�^O`?@2I�h���>��el���7�#h��ҋG��=���>�4۞�||g
������q�����NYU�#��8�t��K��'��i����g�523�c��7���$;����A�����=�ϭ�qg+�L7�O�쌑��[n;�z�~�S�G��Ac�7����ֻw�)���QԢ�n�F�������s�Uc�|�_mQ�D�s����z����h�Aklq�F��<, �mVU�[�$��s�f��J����,��;v�6ɓ��ON	溻���&�#�'�t��Ho�N��J��
�{��%��$���8ݞ���'8�<��O�{�9�4W�'���vq�(;c�}p}����v�4��j(?M�����
�&ثIᴓit7�+g���3��}�vf<�6�Qyul������iR����ʍ�1�����?��;��Fjh�[�UKmf�)#U87
�S���kJi�b�c�^F��j�g�9;z���X�4BV�ś*�u w��>�ɇ��m��6~,����!�=���Nj�>>��o��RY�m��Oq���_i��7dm�d�u�=�S��giE�!�a���>���jr�׏�׍����g\�	Q�w�qӯ��V���[��?�`e�`�Hwrx;�8�W2!�A�ھ�	r`�����x�}�ê
�w/��_��qק$f����e��8V�;p��	
�	��#ӓ���4��^��Q�>�?t���2G�ּ��-��w���h�2���H�H��Z�#'呗�u�pI�o�p@=���C�b����Q-Đ���7G�q��{�m~#�V�n�Z�Ud ��N?�Ҽ�i��UP�w2�̸��89�:��f=&+���3)�*��#�ߎ*F�_���v���!��9���=�rz�[���%Z��w|�f@�B{���<B�N�A�Y���I����Oz�4��eX�����n��b�g!ų�~آ:o��|���p� t���I�dI#F��nI�s��<�^/iw���0��&l2���ן�ۚе�_���id�.�v�]�����>��Z\Ȯn�A��D����
8�#�~g�$1�Wo�ͷ��(��>��5��<�BH��6�8Fh�ˀ29��^AS��7_�(��O�u�W�q�=��]�s���R)�ۋ`�/_N��>h:�ڱ�!���F?���p���#1;h{�Ǵ�np�1��9�Z|`�x|�싌�nVU�8?�ǯ��?iЛ#��ܺ%��ءw�w9#��׊����,��̑��gc�=��R��g��#��>�+$!��@���ү�E�х>"e�]��hH�'�N��ΦSKK���Z��m+����]�^�YK�B($�Ԯ �GUWm�9N����5����5�=Z6H<2�O��o�v:�
ĝ�9���lMF	��fw�oi�8�9[r�d��Ӝ��*���ԯt[w�Q��ܱGp��;���0NOJ��iP�ԭ�T�Fݷ���̧QFk�yR��y��a�D|h־(��G��B��E'P�uM�B�zT�d#�ʐ#��N/7ǟ�/�7K���*��X7g>���kg�I����_x�������E}��D�Lň�)�ݍ�����?�k\Cok�+�m湕Q�)�$�;p{�ҿH��������S��`��
h����7�9cg^gRX(�N��~}��k����z���&U�/�6:*1b|�ʖ����Np=��7���ik�^��U�l�m�ڗєX
�ܓ�$�*�X������������7����"����i�Y��$��n<��j�5�L,�Vs������X�ƚ��އ��|6����=��]j��V�y��B��︯&Bs����Z����x}g�~����cx�j�y���$0S�͙��t�j~�Ӽ;�wL֭�V8�C�C�xz#Ǔ�i�2@}�Y$�>�j��}s���֏�o�_
|i�ƍo�x[��R��X{�������b1<�9N'
����cu�K��1>b����`�����K�>�ak��K�m���*c��m#"G=~�6��=�{��i����omon�����$PY���g�H\W���������$���̶zIu��(9fv;��m���]j��[D��*��kw�G�?�?uuu���{g��b�}��8�Go2C�:��߽}1;�@��j��9�d���/�w�e�?�z'�%���&mP��0������v�7)�XF
��}�#���ֹ��=�"R�u��:*$w	k��
Y�,�}G1�x��@˰0F�p]�7u����24��O'h���:�=�M_�:�7I!�Ďd$u�������ѽ3�ֿ���E��2y:�c��zK97r���Q]��zđ��,���S�$�����5���ִ�{ư+�_�f�s2��$�,>�	 ��;�m �*�"FĄa�3��Z�x��q���_�O�ǁ>
x���	<��<>XۺVR��1���pk߿e����O|=x��
��͹@��Xg�'��c�־l����M������L�q��N�1�GI��q�l$G��_l�J#b�]�wF�P0;g��_E��nG.!�����~"|����C���m[O�-�+;�.���er��8V$��r0�`�Ma�_>-�F�o��,�lS�]i�۝x��1��A5޼~3�J�����̵�e9�� t}w��}�
��3g�M:��<�ډ�#9�<r+��S��ǃ>5���R�/Ž?P�-�5O�ҳ'��>ޣ,NI�\1Xd_�q�x�c���ۚ���Yu���:�vׁ�Bn-�c���:6{w���kV����/qj�p@�,	�:ۊ]B�鬦XWʑv�@����rCA���Ė��^zv�>�����J��K�R��S��M��NXq�[�p{s]'�d�0"_�T�/F��s�ӯz�1��^
&8��f�Fc��8P=�_lw��Ae�k���7�[pY�v)��y#ߎ+?�q��kQ�D�m�c�FO���ӭP�-�m#*�|ʻU�]ņt�z�鑁\�+T��"���U����C��2?1���Ҧ]jŏ�㙇����/*��8�y��,�`��W
/u�c�}?CR����'�;�q���㈗Q�u'��f����؛�ǰ�1�A+1�b0�F��rq뎟��+��o;c��`3��z|���Z�h�C9�%Ԇec����U�%�I��>zȪ6��n$pC�C��F�<��I��smb{�z�XƋ�0#�@�����.�f�B��_ӷ9��|��]VCk�e�v�1� ��֖gG�^�~��dcq����m��WxSA?w��ON�=j?�5�+9��ՉE�'����r��?��G*��*�#<����:{t\C�3�a�;r~\�]�N�L��a^9v9`�x�G8'f��K�p�!��v�U�'�Ol�U�H����q24nt�I���:�y�$T�����A�����ϵQ��5����%��cۜg�<�aԤei%�_��d`�;GQ��Q�"O,��i�o�yd|���Ԍz�8��;y�c��]��Ͻ���9��<Uנ���ѧ̪���p1���T�j��7���0�O�G�sǸ�K�9[v��
�~b�mN3��qޞDw�w)�����j6�υ�-�8��q���
P�����tFe+��}{qU��Y�3V��\~�̸韧��sM�ݥ�37�r��N������2
�|td����t��DW
��U�lOx1oS�A��h���nay��{M����C�ls�^A=9�F��:*��Y��ӧ=:�1�����m��t��'�$h��$_43m�=~�ު ֥qh�RY�G�6�s�9�S�ҟ-��n�eh�v$]�I�=?���!�5��_��l�7�c>�2)V9�u�ш�y�\�|*9�"���B�[n�wFr?�;c�9��B�Kus�|����p�8�#ڌ"b�N��1�y���R%��$�!�F�x��~9�E��*ɧ�%���͵H_n���҄ӕ���|��@��;���������nB��-���8����<l|�U��r*�s����椤��{�?|&��T�f
顓nsT��1_5�~�4��Qgl���^�@�q�\s�f������,~Zkk�6/�Q;p{m���U�!�_�<��U�by8���'#=s�q/z�Շ���a�i&�31�W�s�u�ם���ӯ�mC@��o;\��ҭ����R�w�n�1]��>�$��.�3iQ�Lg���|M_�J�3�+��Gy�&�.>n��@N~��O�j�)��$tMڛg�\�A�~
��Үm�hm#[�9$#ˍT�1�o~9=jc�
��76�v�I�錫r}�L�!|�P��u�eo�\�;*�,���V����H�擂������52��\�
;'����S���E���#�� #����<�}�*�>�/�nYs'��,��\o^3޸�J�X��w6vu�\u��]�-�	���(_,�pN:g�^;Q�-�\�`o�
K�[Ė�2��Ucel�S���)��|(�m�Xԭ����Z\�v���rx펝�'O�v�Y�m|�קR:��,��c˄*$j#oS܁�z~4{MvS����f?��|t����2M�F{�1�U�4�ڻ&��I�v�V]YW�;y����%*|�|�ˏ��㞞��Eܲ��k��G��s�ZnP�=�O�-�.�Z\<y,���m�0�~�v��ߵm���g�]�+FW,峸��S�����%(�r+�Rwu��N=s�M����βԮ��O"�|��p������=�O}����b���*`��O����y枟��ĭ;r�_,x�4��Uzt#�3�O5�~!i�!�|o�F7nڷ���s�}x�h�r��o��w�Iq�0�4㈗vO���{e���j�o)W��˒y�\w'���ŧ���ka�I���a�.�VPN��O�+���hO����P����'޼�"o�z�(��)O��^�Ye��G����I�ݑ�>F�ӡ��}q��	�1>����|nS��hʌ�V�߀0x��+�����
�SQ�.d�1ߒ9�����<��9x��4]��hf�0s��2x�zq@���zu�n~̻r��zۨo�e��{~���r�T/epi�4V�S��K]Y���\�<����?���x�\/�<33�ۺktV��q����x�����+�����ÐZ�E'\� ��`s����T���/Y��+��7x�?#��}?���bϿ"���L�$����ۡ�h�#����kо����y�XX�A�Y�nm,�uG?h\}�Ğz�#�;��&�b���7Ӝq��ZZ7�i�o���j�vHu&����	�:t���.=���~�7�+(�.&�4-���E'�?�$Cǧ_^����Vج���X���4x&�����;W�V/�f��K����H�O���bǞ���r+F�_�������]`��I3����f��G���c�o���<i��k�7��Y�i�h�n~�)���&U6�7X\�]Z���y�Y	^�8�|-k����
鑰� 븜��?�H?k��D~N��er�~��n[���w�O�鮌^���������s�w�t�sE��_���Y���nѷk(�GOJ���u��	�G�nVe9be���8=8��^�����'�|3u���?cY��ó$d��x��q^C�K���l�`�t���
�x�O���V�I�v;)�MG��C>b�q#�=��^��3ҫ� ��i�5\�m�_�8�翶)�ɾ]�����l~�N����떼-�d�q�(�����Qێ?��>N̢F��XC6�X�B�m#�� :�֣,�8�e�l$���9�<\�y*��r(�w\��#����'�#F���eC��s��>��}k9nn���cO�;v���'����H��ZP6�'+���I8 u�'9��̎ �Ô;�ۀ8�Ө�Nzf�}����no���q߷�8�os���rW“�eزL�~�G;py�W��ni�P3��޸�c�����ɯM��ok'��V4ȥ~���ON���V�g�X����w�ɬe��:�"���$U��7r�s�����8�h�%֧k"�����y��f�}�"�hՖES�۳�����u1�k�XJ�f DŽ��Q�GL��;R��e����B_�|�<���]J����$��~��9�d�q�Y���!M�Y���g8�O���g�DE�1:�bN�a��9�q����[��&BӺ��X�Y��8�q���,��9��gn{u���<zS���f�����g�19'��j7va�I�����8���b��ʙ��ϹYv1ʂ�AǶ1�f��v[(]�s���9�=qOqpA�<�B��ӎG��e�2����x0��:w�*w9\��,�Գ�^�pO�Z�H��~ ]��o�X!�����x�9��\{���$��yk�� c'��u�����5���%��k�B�$�q��[Qݿ/П������	�l���p噤�\��rx�'��p}���O�.�Xc���H�2��mc��ھ6���m3�0��y��`��ۀ�z���^��g��z��>&դ�����u���˼�Q�~;};W�a��E�_5����-S�!����Wsc?���9��q*�1��W����yG^��LX��ʶ���"L�u��?ӊI��f��V�Y�@�g�}��{S��~��̖������}Jϟ��Q��P�&�l�{�	�y�9"��/�KH�T�T����݈�S�pN�Ȫ
'Q�3���F�Txd���"�ՙr�/ls߯J�O�WK�IM�t�q�6�u���ᔉZW�8;ZC>��߮i��:�M�*��G��O�B������j�m�̿����ߓ����T�?�> �Ը>[2�r>��g��_H���K�c~~h����?�V��&x	�Z4��g�������#R
�m��6���m&�f7o%Ā�\���F��!Pc��)���x��8��ܢ��m,
����K}� _����q�>��o��F�Lf"��s�Î{�{FrR�>y���k#D�E���ѷ8۞��֬��ڪ�Z�#*�6'���
���[��
�G��T��>�
�f�n�U�s��y��֜�%V����->��Y��l[���:��I�<�
�D�)wc![v�#*��,��A%ʲ�dt �/͕#��_Zr�q�,�ȑ~f9���WßD��E(te�q�8e��\t烚��x��wu_-wo\m��zi�Ҙ�x�*��y%C7Q�$�@q�����|:E�F��s�:���v�1I��^9c�V�Km_-��P��
J�n->�el�(w"�`���)�"K#"��)]͒0�����Ot&�'crUB�#y0;�N^�k�f_����33�ʬ��6�
Tp1���4�[�v�q|��l�N̎�q�t�q��/|����.�,���;3���c[x��ڤ
4d1d���犈븼ɕ�X��o���FC�>����u&!�:��FY�U'�}��>��\���^ۄX�nSԑ�q߃��o���u�����'���n�%a}��۔f-�v�����<���(G��:ξY`c`�!O�3��D^F�4M��/�&⣌v'������TYV5���Ǿ>�Z�s
����svUw
�J�݂1Ӂ�#��֦J�U�Ϙ
�ye
�z|�'�Ԋ�
Z��fPwc�R[>�s��Z�T�p���0:�N��9�ҐDX���H�#wQ�Al�g�'ӎ*O��^]�]����������쳤�##a#W��3ǿ�3֚�͊�?�����o��g�3�l��"Bд1\I�,�J�b21ǯ��Տ
�2Ik�ٙ���*8�:vǽS��%E�'�w3c�u9_ך������ĥ¤��/�'i��d��N��ש3��j姊[��3~g�J�~S���������ʧ�����'��n�'�[�����[*²��Hݑ��;��X7rʖ��2|�.�Kr=���^�.ǝ��lַn�+L�s�q ����?�5�)")����F�'(�I'���5�sr���a{����_^y��&v_/"Q'A����ݓ�ݳ���k5������²��Ѣጌ:�䑞y��@zWAmt^�v�
��F=v�?�^kE�!��kNT�����=}kr��Gqm�|�d-��1�Nk����y���X0�v]����ӟ�G'�Ͻt�L���������߷<����o�F>u^�s�ӏ\}EuV��"�nʖ*�g+���$��Qؿ�m���*${Ջ.⭜m�9���R�#7�H� rG�Ӝ��⥸�R�w�^7c�z���zU��D���ţ�˝���`v㩦��1̭;.Уd8����b�DbH�(�>�T\�/N�<�:����\I���r��8,3�ކ��)$�����,�����<qQ-nO�����m��<�$c�8�KS���.�,�ۛ��8���G�M��YKn�̼eG?�^��9�+�1�L�oLۡ��1�g���v\�^��y�ך��/�"�*���7H'���t��t���)vڬIl.�y���<�M6#)��T"�ѕ\�Ps��R�!�U�N��I���Gr�\[�|����l�G�k@�"ƶ�ϴ;mf�F�ӂ�B{>���\H~�����:d28��\b�&d�
f/�gy�����y�_�����k���9r� �9����KWR��81���9'4�c�!�'̻6�����f����n�G�U����Q���д'S:�A��y��Ջ�&7��;x;r1�=�v���ׁ��mDž"��+�9�I�FG�=�$u��}��V@8�b�8��|�Q-K;
�
�Lk��l�8�pi���/�
���d�O���w����oB}q�����/��Oj��v���@מ�=q�]�xU�r�5��89���{���f�x�`�ц��+���#���j�*�s�r����1���UZܮ}�ߡ�U;��~4��m��e"���2�98<�3�c^�yg͚O-c�Sj��I��M6	~�L��4����3���Z�۩<��y���%���I��F����<q�z���m���ૉ�YV9VLs��:����C��7	&+����>����M!HUc�;v	�-T
�>���ޥ�a���,A/�u(c�甬!�r@'h�Q֚uׅ���wG�:2�`ry'��ҽ�G?��d(�`��8��C�zT���m�����k���q�o���Ko@���b�I��+�n=A랸<�{b�C��$;Q�w���eNI��ƽbOiW�1��mٕF���1��{c�\c��;��2o���m����V�Ȫ}����=i���y�j
��`�'_3� `�y�ޜ��r�Yeܪ�!���98��k�����,F�42?��tW�������P��$y<�CQP˷v��sۜw�Ҧ��)ܓGs�'����X�$���<zԏsg34�Z��f�و߃�=>�\g9�����<[y
��3�P`g<�'=q�����~��-.o]x�OѴ;9w�޶�bl)�,NF�	�*�a�V���O2ݜHK���D2
�|���}�d��ڬ���y�s\ɝ�x�J�{�`~<�>0�^��~��^��=cź���6����L��3��d|�+üY�!�@�|;�3�>�h�;_Y���ocq0\��>k�9."�n�0�*�9+���ak�me�b�Zd�N�R?(�U9ݞzv�Y�Q�>��e�Yc��l�2��ry��}n���{�c2D����6�J�����1��Ǖ�ӟ��a�xE��Ikn�2JIL�$P������3#�J2�{F�rGVgR��A�_�6��g��Msa,��&9K�m�:��<�A�ݲk�-iz��ߍ��z|˩4��є+ʒD>�\rG9�H�u���K�C�O?��-�b�q���'�?(��|�^�>��mg�O[����#��&��P��DŎ�W<q�_������2��nv^1���c�Bi��?�����y�M4Q�6D�T6��}e�+~���}q�OZ��5X.!�bIGʇ?쓸p@#��;���g��~$x��w�[�r(��	9���ހ�޵�k?ګ��-�5��KK��?+Q�M�����F2���@<���<�U��UѦ쒻g�J�ը��5r�ȏ�
��K�/�}:�O�}2)���x�
���(�=�пf?�(O?�y��o��4��3x�>֭t�t����� Cv�#�%[*W�_�b��7�|a��/����u
S��+B2�UA-W�9��ֱkoTo����`�:��>���t`�S�
Sz�nsׯV�g$�D~��3|a����(nlt9�����j,�!6�"(�Aے�ܒ
c��~i��W��be�t�i4������s�>�+�Ey��y�<ړ㍏‹�%�$�M�\4
��
�g�A����B���ͩ|1?�~�>�G:N`���1�
���͜��3��xeJ����t��S�T~�h>"xFY�ˮ�m4��S����V~"���l����Ae�@̜}���1�¼�[+5o%#nV�X�
�}}OO|�����nw��Y>Vw|��޹ǿN3���RG�z�j2L�Cqk"���U��8^��a�Y�?�H�_�5�Mm����a�,#r�ޙ}��?J��
,��e�n,��B��9�0q���GĺD���yga�i�cBӹW���
��V�=1�����h��n1l����o|9��^�i�5�r��0�Z���ؓ�}Em��j�{��]�2�ێ��?*�/�
wz1l6wd~��{�yd��6��N���۷�^��S���m��5������H|+�S�Q������yo����_bE9��d���$�6��d�	�s_.��:x���ů��n�t�g��n?�y����%�wz��_W[$�I�`���A!��zg�u�����a�y�/)3��?����=G�Z��١y��,�}�
ݏ��9(�|5�mA<A�ً9��?5$fع�wp���ۭw���7�p~~VS�=\�:s�R���d��0�s����������8��^j�I�|I��̵�+k�h���T;N6oc����{�Bk�/�m���Be��O�*p�y�� `m�=�n�&f�N����>����#Ӷ*������I��#+̻r{��[ۚ".����8`o톕��Ha������8<�����!�'�U]���9s���ޤU
#Ú�MM�٦��Ü������QxÚ��.�V;��ߟ�ˍ�HÎ�Q������R��U�Lж�!w.���a���?Ni�6���V��,�*�y�#�ޝ��W�~���*ɩâ��������.K{ϳ�7�+nY�/̠��ܐ0C����x�J��]jx����.����*6�`���j���v���SgoS�'H�$�c]�����?B1�^�^dk+��g��jd?���.9zs^zߵg�;}g���
��Ї1�ˣ.�u`
��<=��v�?�<7�X��H��n�x��`��en	'�緧��R;�uF�m$hYB�p'ܫ�z�hR1�~95=����.wm���3ӎ����RC3��)s��b�9�{�-�{��#t�I�`I�a}�z�z�bx�#�K�i�V9l��0>�gҭ��$�̑wc��\���=:UK�آ�'`���:�}Gj�/-D��KR��ާ���=z���v&��pĭ;H[�6�`r9�C�Q��*��͹��` .xǠ�u�5�\�̿�
�	�����7�r>�¤d�� �c<����<�h�$�8���t���cp*s�px������1Tm�&�0HR�:_��xd(�.ѹ_3>�'�Ƕ1�T����H�Uw~�V�F������FM�\+"�I�EeP�=F1Ϸ\�=)Z	�9�/@���=�=��9�B���j�[p��S��f�#b��[�^�=q���J�`$2,��fR��.S��:�=y8����M�˓$�6�_LrNz���%\���>o3p�=xdg����o4&s�z�6���G=���lAH��ܻU[-�O���:{3�(m�2�n#�'�i�[I�De9�r3��>�N9�JR9Q��J��� z���DP�*�+*�8_^�9�Vi�w/�U܋�i���L�ǽL�B�<m��7���zc���|�T�G��7�����hD4"�e�K��?�U��9=�_�Ӛ�u<����C�m����|u�G���C�Q�,��p����}j;�"����\�S��I�Lt���*ü==��p]���s�G=����V�O=7��_1z�v��Mh�������#9=y<�c�v�
vxt�
�V�_��է3����`z�E}̥.T��W��m_�Zoĭ������I��K(�6+����_Z��n�̱��ZD�K&��y�8c�'>޵�PhjW�7���˽�I�u
�s;�Z���l�ʇt��g���ߏ8�_MR�
A.C��s9Uo�h�g�۫�DM&��{ �e�;�H��qV�#��n��EDŽn�fF_�_�<�Pz����d�ii�̓|��E��W��{R]���<��?L�)�[���]đ�<r=�8^����%I;��Ny	'.U�:���|?�c��𖁥�Z
=.�;Ÿud۱ �}�l���W,��u�fE�Ah��q�p1��\_�$���o��I�Uv�:t,���{���L���+�Y�H��l�y�H��Z��<p�a(�e���]J�pq�M�0�
�e�ަO�R��=��u�E�Կk�0xG�ܒ�^V9�%ا�,k�s]���%;[l+&���S׌��>_ë���Ǎ��k�Y萖'���o`1��x�����y>�/3�%-�&EL�X�6{v#��Ҝ.pE�����8�?���(��۞7)^�Xs�@�s����D�}�o��A��h��u�5����T���r��n8�$���S$�i��p�U�d���>���;�4�,
�$s0��Nιӏ϶ig6�]��
����dt�=	�Sͨ<s1�w�
�[���c��?0=)��$��$}�||���p2:t��3jF@��Vn;�߯��qI��yIgv�dJ�$t�8���� }�dTe@�$�@���J!�����t;�=��<񞦘&��-Æ]�DlI;A<��<�n��:�%��y1���Ƕ0{��)K@#4,��Y���a�7~��44q�s�pY|��y^��9'�S�2Ѵ��d،��H���ۭ6w���,[����ʳ�����pvgs��L*�pN>�3��|6�ĉkPͻ{+��9��榸1�ao,n �O�OE��a�mv�P��m����#�隞a�29��'c��fE��n;�^��id�l�;�#s�p�LSfK{���[�sc�ïN�<�o2���Y��`s���ZC����y�;6O��ʟ���qNx$�'w_�kaN����⣔�H�r���Q�t�;�t�f��e�M����*��Ō���GP�����A/͝�=�*9�A�G�Hbh�v�X�q��ߞ@���đ�,�m�����Ӑ��#�9t�{���桏�1i�N��,n=�A����N=�qD�d�2�ҿ����p6���P����ˏg�h�'�6~cנ�4���,L��ns����8��
N�Е�ə��c/,x-���㜊|W�V���gh�n��f+���������mv��~W�6nǠ<�}=��O(H���T�;��͎zzq�|��	����я��1��h�]�C.?wx����>��+R���ěU�,�m�<^frә=��u��r��cG
�쭶02Y��zrsO�N����Y�H�9��R8�S�v>S����)bݨ�kp�HS%�]od�?�5�x[�z��t��H�6
qqv���̊�`��V�7��W\�����p8�w#���T _�ȲǶF�Ff_��yNG<x�z���Rq�.n��@-�i#R��;G|��v�O֘R�^�m���{�s�y�y�4R8�K�k&W�P�H��=1�OҗnȚ?3-�h�=��#����S���Ƿp��ƭ�>�]��,t�G��̓��C�4�������Z��YU�˅�~�����Ͽ��o�e�n�۵��pA�Ӡ�~I-�r4��/̬��\u��#�7dl�O���Œz�ϧ~��fK�(Vw�y>�#?�_l� {��e-�;��9��c�
��c���-Q^A+]`F����G��ǜ�"��i�<�)I���������}�%���5�!��O`�n�����t�{wV�[��!V8���x玘�bɓ�G]�Ϻ&�<����O�9?��x0��aI�i�YXF�8�$��=��4y\0�m�J�㞄�3���S]_�ݿ���P�Cm^���ǿ���e�5�0@3oW*�m'�z�=�=���a.ԩMߧ#��?��dc�*�`�ۀ�'�`u��N��e2�p��('���g\�櫔��n��o-HRۤ�n��;{�T��y"%H�m��l6p}O<�C�3�e��z/?1�@�3I��#6b��`F��oN���G�RP�x�����@K�v�x9�lsD�3�fO�	I��z������xi��T-���8��dFYJ�d?#����N{�Dw&��yf���	uV��=�=k��H஥g%��q�E���ڽ�8n���ss*�#|��}�$r�r:���)u�|?��0����%�ʸb�W����ߚ��������I�7�M�N��]�
��U98/�ϸ�I�^�|_w��:���m�^f��?�F)��8�k��ÿ,-�4/鬬����c]�6�w9�}�r�����Ss�.�>f���y=�^�<c�k���O�!񫼬b���H����/o���<օ����E[�;��U�O��o7�_/oӐ=k����;����reWae g����7 ���=X��6��dY�H�O�g=;�c��ْ�di_>+�L4+��2�q��@wg��p�1��+r���kU�C�'�/�5�RH�^�2���ۯ������	k�yѩ^$����s��qǮY����a%炣X�l���Os�>ޢ�c)���;�>����27��,�Y���c��Q�v�VŇ��6�w��U\
����H�e翥|'�
��	g��3F��������L��m/���o3�n5(c�H
���
�8�o^r^���Q~�7�)�[�Y�#)��2>���f�3�R��Q0MCHԭq��q��/��|~Ҿ1�k�\G��R"�7J�Q��8��k��?j�\�d�8�H�Z@�X����y�~���?����M7���'t�U޽-�d��o�8%���9ڴ��~�L���0��F���	'w��=+��/���\$���,wP��=��\�V��ƋMJ/0����Tͥ�	c�O�kD���^2��e�ď�Hf����.@,鑁�9�b���tIU�� ��N����+�{�4A�~x:��Akh�7�\��O�Oִ�<O�c�F�q,�u�u����u��tX���x�����b��ь��=�?���O[�9@jW�U9�1�'�8�H�W�E�?,{�K~�:q��"�g�ɻ�����񞾣�_}&�i%�\��F�`���)�<�
[��-!��lF�\�CQ�Y�W����%UnWw
�ۡ�J���;��|��A����j�Y'P���eIHبf��;s�{)�Kn��?��J��by��� ��M��Ih���
��v�>���E����y�Ȭ�[�3��u�?�4��;H�/*8�eo�p�H<�?���f�Ss4�\0�ؑ ��=y�#��y�;L�͂����'ס�t�Y]ۣ$�8��n��ps�`R��Q"ʊ��.�H���r��N@�2?M_��۴�T
��*�>㏯�G��`l�M��`۷ s�ʽ}i���Um�����;H�!O����T�X,�|�
!�܍����};b�m"
�2���$�`*��g?��2W�;�6d�9�z��q��?��8��<匰(�T�A�O<�z�z�@:�8+��\ar͸(��$w�:c�rΒ+M2�C�+/ry�>��M�$��r�v�0���;�q��)���J�O��3��rx�=�`��9P�aW�	
�j���a�#�t���,^`�H�n��@�A�<z����,1�$C���q��Ppx��Z�9g�tVλ���v��g��A�,*��f7�Wx!�8�N�gӁF��V���ef�Wv�1�i�9�|So<̑�b�I_��@��=���[���>b������3ۿ5�t�*J�,_�k2ɹYv�;h�'�{g�9��Q�GB%�E��4������c�nx��U��̻|��`�@眾� �k>K,:wd�Ԓ?�z��sͷ�P���a3�fc�j�\��}����n��8��p���w`���}{U�ք�`[p��rG1�}�z����CS�<y�ۅel�y����*�sCB��Y�n�5���\����t�s���Y�>Q�1������+�Ү��r�6�^G#�ӏz�
�9��eF��r3�z�}3\��#H���ͣM$EI���^IO=;�|�Q�f�c�1V���B�>��oϒ� {&d"5X��nq�nF����M�%��<��%ܻNz.;�=�c�5CCj(���j��U���~�/'�\f�³F�Ո;����`�̀�E/��[hh����	�q����Z�4�s������y�=�5�K��?�ܱ3/�����<����N������V�2���zc��U5HdY��~l��C�3��w��2�[��(�)�g��=ju��đDw,�*�͖,ʹ|�w���S��	o�DX���~A�s�<~~��'�g��]�Q��p	��y5$����
VA�
�ۇ~�#��A��)ie*�1�h��{��%��id]�~P�9$��O�}iV��+<��,vS��
��='����&8����De���}N}x���,l7+��-�@c��d�^ǦI�)$�&ؤ�0wm�s��u�By�k��d�o�����N=9��~��Ȭ�XUg�o-����t�A��9���*�I�,S4�$�w<��ZtS�r�$\���w����ޡ[x��&K��ԫ`������F��A3U+��*A����h��r�%e�n~��2G�_�Ҟ���*���Uչo��?�ޫD�!�d��ܭ9�S��+�H]��`�`�Go�@i�Ve��t�UY#RS���0=s��;Rġ"S#Fʼ;�����Uye����dh�#w$����N1���H�:�&��kYIF	?��FzQ�E���.~���fn������{�3D�P�2m#�ld/OJ� ��3
��s;x<q���ѭ�m���8��;�q�=��+��0���ʿpm����?�\Ծb�&E�D��y&,B��b��4C&(X3n"��<��=�8�d[i&VH�?y|����ߜ�z��$���`_,���>߸;�N��v�L����d;V2�xg
��j��ܰH�b=���m�����N����e��m���A�Oz-�Ve�<�ܱ��N8�ԃ����o-�{��Y~R��'/�~*����cc
�H�`>���_�O �j�M��#v��0Op����+��A6�ʻT�s�eO9�y3y�5����ݘ��zq�zpH�=j����̋�����<av�=�J�O3I�6�mܭ����v�Rc5;��4+�Rk�-�md�Y�0�jQY�2`��	�9�-��K��/�?��6��I$�E�_�n�Ś\�ƞ�O�̉�^=�,����o��:�����4ە�)_�1�����ߥ~^Z�"Ю�M]��V���%�m~2�)�n1�:q�_C�Eʜ�/ZT�+��K�s�~(���Ŀ�i?��1�޴�s�v�.�FH<��������x_�Z~���;�+���DYVB2?�+���7�����rHe�������c_�V��(8���X����;w�K���3\}�/"�T�˲U��m�r����Ǖ+/#έUW�4�}ϣ�_��,4_#T�s�K�鰬��$��\�B���zzs�?�;�	�"ϩ�oS@��FZ].Q�j��g�8�z��8x�����ϊ�C�,3,33`d�6�n#�N*ݧ�=�f��G��BͷΑ��d�E�|�?A޸��lp�<�k�67��{k߭�[���|���A��Yo�@�a|: 	��9��^��+Ӵ�f+�-�u��LY����{���y5��Կ.,�G�ɩ7�!�<sX�ι���q�})�P�Q/q�h�]�ث�F�l�۲8<cmz�,y����ӿ4=f�5��Pı����Q�l�r�s�o�c9�'��~|L���Y���j����,~ѧ���݂}�UI>���J�ˏ����Ŵ�j��G��?�R�8�sm᜖�Rz��������S����ƿukD�u���46��62#yk�FbOq\4p~ϝ�|^Gt��J-�#�������|+ռ'����q��ium[�ې�ITs�p[�_7�k����\�`����0�؞���\�.FFB�ǭq��Oi`���ն�}cx�7�k� ���EHa�<HѪǂ�;�_��T�~��<Q�xm��7�������V��^���@@k�2M��V4%�`7
յ
>�<�"R�Z�;>���?g߀_
�kc㯆~�_�}{K����f���U��q$��B����*s�`{ǿ���7���f������զѮ7Y�ɽ�;he`�VUa�^9m�(��n�>�a��e��㏉Z��a����>BF�R��s����&��������H!#�dV2I�?�Ny��:t�O��K���O�J�dS:��
�@\�x*ˌc�<��^0My�S�����ڂ���_���@��ӯᑜױ�3F�D[v
�<���'�)�s,Q��d$e��7dv�;��ھg�#�Q<U��IM��6�U��ԐO\�x��/�	ŏ
ٳy�i����&�K-�'؍��]��w�ȞT���~[�%Fx=?_j����<i�[�g���C��c!Ub��M�>m�>��]8X��]��U��#�^8�"X�,�|�,dpN@��ww��K*��5�3)��7~�=9�߻v	,��$�m
�Q����7�3x��=2gk�4�-lv��p!���i~�q���TH�^�[=��	š\هO���}�gP��_���t�1��c��<W�궗�Z��7���~h2|���S���sX_<g��ᇇ�iO�E�mlUcR?�¨O��3���ַu6�u��qfх��1���G�wdg'��b�Ҕyi�y�ܯf<N���62���2�X.:s��9��(��$1��۟����?�G�f.�∖H��9�a*-ź0,@<c��sޯi�l��w"K�w28��������V��Z�Q��v�I������������l,���)�~��2j7��,On��{�rA�|��;N�avV��pGw�w��J,�8�$Uݕ�9=��k�?lO�h?���$[�I��c��m�xK&�;�+��?�zq%wI:d6w/v���=:��Ҿx���I�mS��}
5���>�u�3&���oA�;�HIFW}1�ť���m<>���ŨZ�«�a$m�#oM���{⣿�k�r�Ck��@���%�IU�23����N0I�-�"ZA���l���5��]YW<����?�h��ݭʝW���4xO�6;��
���88�G��>m�8=3�<�
�k�Er���)�c���rrGjط�&������7M5���T1�2c8��wC�滋H$�#Xt�F�2��ᗁ���'����ZZO�5^����겮�>dlO���<�21�
m,R��Ɏ�������wB��;����2�򮄉#pHm� t'�=q���~�okQ���~T|G%Ŝ��'��Ü�Gl�q⷟	n,���k&�n������$rG8��,O��MNY�ǜѾ����!Q�q���}Z���,U-�O��!�?
��D����C�G4>j�2.0�6�J�u��kG�wI�eϖp2N9���Z��F���xuX���9mͼ��q�B����^��~��-�m��4�/��ג61�ۛ�\����8���R���oCޟOT��N�� m̿t�@��1�t�����4~J퍤i �'�|z���?��!]fY�%��"-��.1��'��@�]��z���6�Q�m\�|�o���3XJ������5#tX���Ƴ5�l���W�1�=L�km
��w�pGq���~�����M��T_:e&���D�K��g��������%]�u�YGh�!k�F��
�1�0�N��롁�b#x�<�<Fa��˖M������2��ܥYws׾08��h�0����;��W=�x�zdW��?�/��SM��o����
k$�b;��%��9��@�>%��l�.��mČG٦d|�>�g��H�8��ѩG�6�Z5��/<��R�+�UT�<��q���gR�dh�YW{(��o=8��x�m;�N��u��ȬB$�K�V���+�	�|�N8�?���6znO=đ����1l�u��55��;�R.dU]�c���#�[��ա�����Q���Olԛ-�(��
Hڃ�\p;?��>f��Jɶ=�ws��8�Պ�ژ�&��U�ѻ���3�ȩ�Ɋ&�-�iU����iz�`�|�@J�m�]��n#��ÿ�}zqV�'��H	��eܿ/\g��?Zt�ܢ��2���<��<�֬,��S��K��۞�ԑX����*�H3�2r3�}N��{�,�v��Y��P>���6}:�?i���?�>"Ԡf�I�~�;�ݼ�<u�޻[{y-�8��y�pON���~���~�qe�N����Q|�1�$f�y�����i�LD#�72��0u%�|��]SP֮6ʒ3
�v�#�#���5�[��YE!K}�(eI;n'��y��'$��"F�;$
��O@?Q�^��_�j6��*���xP>\�_�{X�rz'���ӳz��`]j)��2�l� �����3��9���9'��U�x���9���NkOJ��4౧�f�̌6����;�#�5��|?������K�#�v&z�z5y2�.k�AN�c3�|�-淮Y/���'�k%�*�!RQ�Z���H��QD��zrG{��N1X?�d����%���\�g�����ݘ�[��I��~_/p���#'���힕�8ʒ����VϨ��0�����Y4�ἨSt�#~b;d���eh��uی��&�5=zV��yIIBx��=H��������H�xt{��㓑#��0=K?�f�_�r/�>�-�em/ö�챦0�w��I'��*��4[�dS��e�#-�۔E��� �q��~��i��$�H��/�Tq�q��u�,��$EX)��FJ��=�u��x�*;���2�X�������ӊ�舳,����+�|�+7����ry��2�l��Ł��G=z{�K�����T�������N�ҡf�>bh׍�UIU��y#<��c�.�z�Vu�,�o*��I�Î�� �il\�L0�@��a�:~��*�oy��Y������'�� �F���_��e?/�;c�����c�ki��</
�Ϯx���B��Q|�n��O��>�?Zq(֭��39��6㏐�=:Q5ϓ
���E�Ռ�s����NM��"GwM��u]���=A�y�Ba���Ք+�[�n3���i'�#�%Hf;[;�3������`�y~^�/
L��O�y�S!��"Hm�e��Fv6qПo���Y�e/�F"ee���pO�6B̎d�>Vld�gvs�Ǹ��q�k�+
�Ud��O�	ϡ*J��G(E�?w�,�F^�q�}pi�"��"9yax���{~��}�D�%Y��,k�?��ךa/p����B�@f���R�ķ�#:�	"�>�T����8��qq���,6Ɇ7H��5#�B���
�2�[���>�t��Z͸o��V?L�A8�༊�a瑣��lem����^z��:zԭt��3�����23�q�$�J�ά$f#���zjGB�����ͻ�e�O^��󚛏�����«�c*��}�知D��O�;I&�GRg#�ӷ�қ�<���*�(�>pGnn�g4.D�6���g��=8��l̝��RO1mљ���g'�y�Tۇ!ޛ�G�#��x�3�/N�Ml��&���ȬN��Ӧ���"��1ps�?�F*�;���P�г���ۻ���UWw�q�(-�J�d�k����du�8>�i��ۨh���f0�9��sӮFp*8�D�LR7�V댐H�~�>�/jIU�kp��=� ����k�t�C���Vi>\Y�z����W��H�i F����|�cI����ө���E� 6��F܅����>�ֱ!r������v�c7
����s�<Sf��t�Dф9�_F�'��r=����q��	�8�r?*�,c\�����RpO�g�d%{�7��gke���~S�Q�>��c{�'����_���v�s�t��A�x*��*�-�����cל��e���YH�p�|�99קn�9݆Vkp�P
Þs��߸���yB��30�{�%�y�nާz�x$̰��&�|���#ӟ��*Dsk�cU#��`�;�s��%r��~7y�`b.2���b.}s���z��Lgt�9{��wnx��x�9���~3�Im���ǰ������co qׁ�q^�,�K�X���b1��R�J��;-&yHh�ʶ�V� =0=1�R��_�扯�W�j4!�1$�q׎�5�h�!�S5���#��rpH���:����h��-�{m�����[��q��ޜw$ڼY�۱���+�	���q��w�-��v��Ydp�N	��}�*�ˬ9�6eT�����֦�洑e�W�x��������G�^�P��2��lY6����y8�~��
򳤡�E
I�y�>�������rͷkC�K�{��߁��a;B[nIc���I�c���P�2r�2n�W�y�=9#��f@.��X�T�9ϧ�5�Xƨ$��ݳwq�랁��op�VM������96zZ��t�l��@�p�*�q�~��`��=6�/�ۂZ���uU�'�j�4rE*�2�Ǖr�I�������c����g�$��$O��딮��>Jª@lۻfH�<�~��%����t�h\�6�����O~z��9�;��,Ѩ
�{��v`�>��R�+�Y�AbUz�L�ۯ�z�zۂ�e�o����X����C��0Ǩ�G�n��~+|I�Ekoߪ���7�Q�y݃���ڈˬ�2�Yz.�� ��G|S"H�Q$�<�������q����OJ#R�v.TuQ|}��!���Q�u��-�{���s�F?��[����0�Դ���i4��y��߿>��C�������+���g��# �����o<��W
�/�@'���U^ڧq�;��3X�u����3�h�7��OLたj����ۙ�u�v{���ճ�3�랕�4ʙ{�7���[;�8u���t8�H��QA#H�;J�������Tq�K�nzx��M�[o���6���TC��rr?�Ua�g�ٛ��(��@-���##��}x�^h���U��`������=jW�L�m4�O��I�v��������į�f����&k�|Jԭ���Kr	�z�r0:zw���]#�Œ�m�ܖ�Ơ�<��y�
X���;�'�� m�};�[s,ϲM�1m����Ԏ}���n��z��m�Mb����m�w1����OHbx�}qǧ5��h? �m�_�V�J˹�\�	׃��޼L��Ҭ
��-�_Ԝ�А~����H����6��ʤ�=� g�:��5��U�������-�H�tk*��Gt<u�F��HZD-���v��0ņx�	�����3Hdv�h�6���zw�}3By2��۳G�L�ܱǮ1��SֹN���W��o#n*�r�H=�=F9�֦k��M�4j��r��c g<q��C��1�&�C(e$m�=�ߛb�c�����PGB@�G:�$�<�ba��ڪ�6A�z��^x�RvTy��G]Yxnq�G�ޜ�Q�Y�B�@���d�g?x{d�:�<��Con���7�p��\��rn=�rH	���.��`ym�����Rݼ른�����+6�OPzd�s�j�Yџ?��;��{�u<��S5��m�Z�>Y�q�O��.a�11�J���7������e�WXg��gͻpЮ}8��s�فKJ<�8m����c�1J��q*�-�UHR\����={f��2X�e������ x�s��3��q�ZrN"4e_3hګ��#�:c��G<h�NVu�1��)�`��ds�:�vP��X���Tc��皘�����c��YB�UFއ�=�A��H�ܾ�"��\.zz��=sLt�\<RF0�U���9������6�i�|�ڮ����{~�U�$i�fH�)eU;[��>��7������,���e��9��3�`��O�c1m������5$�JŜ �#v����܏��U��Fr�Vu�O���zg���s�c�r�-���[nӐ~o�q�G�6M����N���/C���錁�x���b�d,�Ϙ�Q�G�x��(����L6�+*�+��ߞO�WS���|M3��ŷ2���bNpO���b�o��ū���cc̱'����N2+��̎Z)<��1�`s�ׁ����}�ڧ�4�*3�fI�(i!�v�rNOP8�g��V}�	m�K��3��sc c�8�2CW��*�< �9Z\�L0�屟��s�|��	T�
�lc'�9��x�H�	��ЗK� ��I�B�m���$�g����*�D���j��	�g�#����U�\�
%͗*�I�<@�3Ua����X�wX�ƲG�9ێ��S:�p3�"1�&�H�S����,���#�t�Z�iWdxeD@?��|����W�˖���4�j�0�F8��=,����Ӟ6K��;M��Dl��8�H��rK/�}Q�kSg�9�
�[z��#�#�=+B	�o���M�n�c�d�w��3���6�Ǩx![i!�`�9 c�.=s�X��������`Vl_�8���ֹ��Gd_���PK*�<��C������rB�]�u}K1�OÎ�3����-J_'�R�a���l/>��py�kb��?�{����;O��ZF+�8ڤc��}1Y����v��K������rF;㎸���n����o�S�G����Ҽ]�;�Y��ظe�<��$�{�v�Z�׶���	#1�ͻd@?�� �؏j�YE�inIv�B�i6Hp7���A#4뛋hm��DJ�y�&'�$��@�:�$yk+L�oc�6�@dn�l�V���-�x7-�y�%]��� ��zf���]t-G{"��#3*�s�F�3��?�sM�K�x�Y�6���<
�u�c�8��sMT����ƻB0
������c��H�h��m�v�<��~8�h؋B�r)��w|�0���0;�3O�#[������^��Ot�5^���2�̯�s���~�r�eS\r�H���qׯ<��(�-&r�f�9UB�y�I9�^��Y$����!��R����˧J��C>\wwj�#� p�w�9�i ����7�ѹo�Xs���#?�}�O�����v�ao�8�m�6��^y��zYI��{*ț9�E�1횥�Ĩ��*�m�F@>�{���2[���cw
�����J��'h�� >
ʻ�]q��ǿOZ�)�f�]��`�ќ���u,����ȭ�J�9>�`��g�8�Hd�Y>X����3��}�F{ԔXW�_ˉ�d&ō�X��׽M��'��l��j�BN{�=}}��R*.�ڠ�;{�~�ASZ]��I䑶L�i�A-�׮s��S�⪢hm���;U�&8#؏��C%�8g��-ݣ
�G����ҳ
��`�Ti2��|����$�;������D6�%v�ܱ�#�r~��4��/�ܛ��=�ο4j�s�''��;�zz$q3D�������G�x�v�Q�|�$��۷�����?	"vY�$1�3�6���?�)j"�<�D��˜f�@ݒ�9=�=�4j>�bѪB��A��O�TpG ��w*�c�q�������]O��eۀ��-�~O�GzQ�w�&��ˤ܋i���k3��+߯s�����,%{�~��.b?����R�]n�h�
��eA�Uv�#��ڿ.uc����}�O��s�1�q��^�M��G��k8�s�!�c.k.6py��q����-#L#Vؠ+��O|}:���Oo��>2�1�t�MڎN���?7^�$���$y2 س��b�Tw��x�<�f��]̸}�z�q��zc��e��οu�.p�=��l��t'��$�K.7F%cĎS����Ӯ9�2&�[ue�"RŰ��@�Ϡ�֡��]$�b1����:��LK���1�*�n���Z������VP~b�K�-�=�Hb��E*7)����#q+}�2ʮɰ�F��J�>��0�����I�8�K�YI�E�
�D��q�'����4�Ӱ�f�c��t7P?>�t�����F�HЫ�7�{��s\�e�I#1!�9#;Op�ճb��V�,˸��3b[��2{�~:�Hڛ���6����M����=�_f~�ʋ��7�?��U+�;#׌��k�-.K+%���J���'�gҾ��oQ��K���H�d�~D�u�x�x�����=�����‘�>�
��!p�vz�q���Ǜ %����_��o@x��d�Y��W��#���N:�ӽ5�G��V��<��k�=OF⃲�3D���+�����Nq��g���L>*x�w%�/5�K�-��Б���x���|k�D��W�]F��u��4eF�7"03��|����u���)��SM�Z=?L��?�ch��|g�qڻhǖ���
��-�~f�������c*rF8�~��Q��񧏾�(x��u��vs^E&K=����[;��9��;��#�0���02x?�=q����/��,e��
���YG���N�)0|�d�s�����骘�����m��'�-$���rwu�>�'����s5ŵ�sM"�3GtFr ��Ǧ~��n31嶁��G��<g�j������G�%�k@����WL�s��Dy�i�u��{{�fgo/��Pw��9��U����ʳK��r:��}��J��3���odSvЦ
��+���V��=V�}�3�iK��p9'=1�SF�4�n�G�\�ї'����M:�	B���{�9���Qƫq�,����d~?�u�ܼ�"9US�y�O?@>��X�4�W������z��Uy��_j�1��X�p��in�kp��l���3�^�k���Ԯ6c��9n8���x��}G��ŷ�YO��K��g;���cn7���?2��p�F�cyY�T��^�p�,M�y��dgXP��Wx{g��)����~����qb�.���}��JǷ���
+R[F��iw���Dʾ9/�ݞr�9��D��d�'SھK\��-�ۻOW�g6��*4�C���wЯ[v��M&y#R[˷۸��F9#9��L���t{u0i>�t�/2�XF���7n�y5�g��,�]>k��4��M��r9*�$g��Ӿ(^���s��ܤ�c�r�����Q�D{w���=-�ůj�����]���؏Μ~k���.��B���][BZVݴ ۆ�2w�q�K�Ż?�?uo����$��-����������m���q^r��Q����Si&�ʅʻ������pT)�O�W]<EiG�-�\���+t}�%e`Ţf\W�9��<��R��E�ͱ�M_�ھ\d��/1 ��K^��a�_@�~'�>ӧ�������ڷ#���
��$��5궗�q
����Lp����c������tqU�&�5xZj:��G���9`�⺸�O1�1b������Nj���u--�4�I$l�>�?7�z�@$g�ܚ�6�yj�W����K�诀@䃞��\�<'>�#\hVP�v�O�aQ�q�1��<�g�X���s����a�M�_�I&�s
��fZY���:�9�����:�O���k��s��љ,�O�#����*�y�N��+�"�4��N��=��Ԓ��ˍD�~�|��q�k���N��_���ď^.���K� ��L�4XC;)m�>��<��䩭�ђ��ݵ�=���&��n��E��ͦ�d�R���\r0Q׆�q�9����|e�x�V��;xH��6����Wgc��۴a�r�g���ொ�.<9��͝���յ	�ø�W{tƒ�<��eh��zC�h��/�}��T�I��kt��C&���B(�(PAr8�8�xz��n糅˱�G
��B���
���~��5�G �5���iH��$�[�b���)��Ò���o��o���D7t$u;FA t�����kO����x7����������g��+pE�)�t�i���H~��)��Wƽ-u
��\F�%��X�����08 2��9��>2��R6Ok�8��UƜ�q���i��m2�yi&��#��7��L]?���
�֫=��$P��fe�	8�����O��E�{�c�VUc�����:��#���4�=�1�+o���{���Ӿ0k�X�,�g
�~�ܶV���v�O�9������rqӽ4G+��-��h��|�r}���5��o�~-h���ך}�����/T,jGbTt��h��:]���ൽ�V{}],��>e�}`P�8t�"�7cؼ���Z�v_�v�ݟ^���
�R�Y�<�
�dn?�w�s^�|s��.4k���^��V�Ghi����Ie�9n�NA�x�O�~��i��_��_��:�1�ޘt����+ƫ ��l�Nj�"��dL��>�����Y��pw3 {�����k�(�v�c�ZJ��:{�6�D���� '$t�+�E�;ऎԷ������׋|Y�!�����L�m�pUO��޹���{XJ��S�kc��h��t��ߙ�>���bY4��0�`��X�$zw���H���;)�!gt��Q�<��Z��=m��c�!������~��i��6��Ј�U���3�
�9�{֕�2�+����*+Tg�:=��~�?,���x#Ӝ�8�8�<��'�O��ƙi�d��ul��<�pC�l��4�X*�Lt�\�o�3�^W�OZ[���]
�GQy�!;.��	%��?�bx85�^��K�;�C�g.��v�}�dJ��U�P���1�~f��O��k�[���qӞ��H�i�H�
�#�y�=}h�Z�Y�#fھ[6�zdg�����"�^��8��
η�M��{��x�M�ڭ����{�葏�5隽��j�I�vLDl�1N=G�Lrx��d�W���	��I�4;S_xY�m��6�e�~�G���)
��n�wGp�X�׆�c��y�Z\��]H��x�wy�Fb�xv���:u^���s!u;O_���������5��ݧ��Z���R��d�3z������ĭ>O��sJ��dh�dg��y��=�U]���{=�տ��$Y!_�j�Cz��_Þ�w�0��`v�}�G�j�H~,x���F�4���Q�=xl��Y��o���V�E��,{B�d�v��h��	3�%��������2G�s��D��E(�7mf*v��<����5�q�1���a��U��s�ӑ�뎾ܾ?��.]&�U3�p��^Bz��L�̂�~�o�*�w2��Q�6}��7�cKU�W�F�uŒ)���{W�|m��L�,��6�voA�Gn�t��|(XG��ݼ��d��y'���dF_�n�2�ʱry�:sϡ��I�5��v��l���nH�9�Ռ�3��òZ���M����`sП��c���i���I��h$���#�@E�"O6W2H�3��aw2I�3�g��ː�����e��~Y�}���GBI�U3���߯���1�Y��XG�6��w�s�9��K)��e���O�Ho���{g�N��.T:��,�H���i�$g��*!$���%]�eS�#�Ԏ�'�Zc�n��H��E�s������f}I���yw�m���|�zg�`~��#�R8F#�Im��:~��2I)��^0Y['۞;�23Ȫ�<�阢]���Vʷ�^��)�4E��ۏ�7͓"ȼ����9�?�A%ߚ�˵X32����2H����y�x�q���q�@G�'��Mr$f�E�-򅑔d���^zc֦Z
�2�����	����{��=�>ԲN��+�*$ڽ��N�3P3�,N���v�	Rޜw��e6��au]͖L�$d�d��ӂ9�fZ���y���w-"��,�`�%�n��D�3�!�v=}3�4ռX�β���Un�`ppzq�v�i�19�ce��IrI8�_�^h�cAш�,�%�(]�񎛏���OZH�&����3����>��Գ8"ee}��q�c�~I���F���q�3�7
0y�rG�=�H�Ks�#��&V�՜�Z5�9C����ϥG��,��m�����ݎ"PG$�����$���E��Wz�������֮iQ���j��yvѦ=�aG��@s�Je�g��	`�W�h�
̠��8 gߓMi�H�	������;N
>�ż{���\��' ��s϶ ���)a��		��g��4�u�Ms�LQƬ~Y6��|����$��c(���ᗖ9�Ol�	�R[,�SJ�)
U�_����pK:J�+4{U����9��I�?γQ�,��h�|��Ɛ�G��8��y�f�$V�|�nFON?��8ěEu��n���$��8��UǛ1_3%�������Es_��Yu�TY�+&�F~�:�1��#uY�q����0Nq��5���ąM�m�f����#����93� �O,D<��I�Ƕ{x�&��y�qK�;�9�04�r��!�Y�����x�܊�<��rceѮFA?t����3׵q2ʩ媕I1�M�s�#�{�w�ӷ�<���^I?�2���PO�����6'v��2�Y�ZL�(ӯOlSv6���2����?�3�L��<>b|īE�;��A�i�"u�ݞ�Z�'w����N�r���3C-��`߻eq�Ny>�����4(�74I�@�2��C�b�>�"��#��](䃻��}�q����b�5P��X/�*���q����G%�B��u�,_��cn3��}=VR��Z>#�U����Ԏ�ԏ$϶��o-��iP�3���:TM�` p�Y�ێ��`��R+�9����Y��V'�/���������R�9�O�H��x�g�z�v�;�g�Y���|ͣic�<�γ<����t�m�+�:��r;b�3gkǙ1�$�r�@��ߎ�$�\~d;�s;T�dq�~���EDCp��#/��׶:���fI��W�,F:g��9�{���JDp���
6�g�9�ON��D���%��m0��(�Gr;u�5�I]�lX�[%}s��z����au�^o�F߆OC�`ӽ�BX��!�������w�H�S����O;�z��8�O�T,��$�
&�Ue�|����>�G��UƷ�#_��Ld��F}�q��OB�,�Y�"�(O5��PNp8�:�q�Q������cڀ�'���3�Nv(��pۂ��3.s��A���ހC[��$�~q���:`v'���ysf����#t�����wB3�;��o���M�n�^O9����;a�z�c۹~V��彻�թ��,��G��p{q�lP;v!�B'�U1��YFd��u���Ky�<�����®�A���Hʜ�U�0����~H�➛�4�?����X�)�'��z�犩a�тƣ�]�H��'׎ý:V��1�	~�N�(y�^9�1�$RGo$m,{xc�n�3��|��2��6��Ju�8�{н�W��1Ȗ�Il�n��M�OQ��H���F�;(W*̭�C"�9'�ҕ�ުU��`r���>��G}2H]#h��v�񃌑���$d~��H�I�V(X4qH?{�p
���T��ESr_����@����:TR,)s���Y1�/�[vzs�z|���.U�a V|}�'�;��{zf���$Nm����f~[A��@}@�D�v��_�d�NA�:d�qێ�U|����s�'	��s�������Y�`$�T��88zs�g�y]B�d����'v9�C�:�Li�1�`��]�q���q�OΈ����V޼&�'�@�Ldm�3�-����v�oݟ��H=y�րLb)FX�`v6�̼g8 �c��Oj��Ϲ.A\0@у�>��#9������1�ZF�T����g4�"`$��LK�$\��w��q�4���)I���U
�	br9$}���H����8䑊V�C��p1��G��$����&�SO�p?C�p:��r��'c�����8�ds�ǁ��&�m��	�ev��v��q�t���\��w���\��	��1�n��$7��9���c4J����I$uX�V ��'����|�}��«2;3|���g=�s��&��y%��1<��W�`u�ß~���qCn��Ȫdo-�����n?�*��Â�"�yy7�7==G˚:��[�iF)��v*���#��w�[]�϶I#�&��)���ۊ}�9�6������t�2})�w�2Z�.F�C(�O�R{g�=8�=J�c�*��o,� P��#<��\�����O0w�_����^p?�c��N]�+dm��~�Wx���x�s\}ߗ,�ʭ��]�0�N0=28�\u潬?����#Fn���V�X�
F7�;���Ywr�p���X��G#'��O�ƥʤ���a��PNs$g��:�L�bGR�дyelg$�8�tD�''�X�%�W
��R���	��s��
�G���yLpF:�8�z��5k0��=�f`��g�zz�LP�/�0[�h�B���uݹ���FV��8�3/–M{��<�VI�7��^�S�V���+,�X*���+׎�#���+x��P���;H:����t��?�Igv�o�s�N�=OA�sQR~��)AX�e�F���`�n�zr;c�z�4�J,bF	՚E��_LcҴ��VD&��q�>��9�`�{U�}2�@�m��l�<s�O>ߕsJL�1F���e�T+�U�=3�}���Җ]
"�a#̑X��*	=y���
2FU��M�+�ヌz~��Μ���$�ɸ���s�
ӧ���}���z���Q�eY�w��@��w��Z�Z͠U��n��f�=�R������j�nt��
�6i7�A�s�>��Ϸ��΅�U�ۺByd�L~<��w�1���=��f����+�Q��a��x���O��Y[��pݾ�
�c��'�~8�h�*��g�+�c�՟NJ%�bA��<g�����������v�G�DAV]:�ᰪ�X�ڼg��Aԏz��j=i,d�o�I"��t~\s�����"��<?��#|ŎB�u�o�ǥC���ġc�|��8����ɇ�R��Dﭿj��W�� 3d�QJ�F9�rz��h߇W_-��!�E���q�9��5��nh�SF��W�]�'��}�U[�
ǧ����O�l�c��矺>��.��'��Z?�/��������d����~`r8�1Z��4�V�	x|Gb�mc���0��t�q�}+�	�<�f�s�����s��
G/�����{�b�0w�q������@�K��D:����쯼�*�ƒ$��
�g���0�QC�ۖe%T�8=,g��"�Im#T�-�[Kˈ٥e�c���<��:��c�i���P�5m��ܶ]Ü���Ϩ�X[�+�i��T%w#I�$�#h��?�<����K<�QY���SאOL��M|�e��Κ�x�I4���V��F3��\��#��h���,-}��t6�;-�B��}�#�xZ�,W��c�">�:*�c*��`1���ƞ.]\\9l�s諞}��5඿���"
n�����Jh��Q���?δ�k2#�����C�r$����Oj�Xz�5 {TW����Y���gv{�9��ړͷc�m�i?6�}��ޤיi�É�u��	t����Nz�����~?|)��#����\FUv��G^ݱY��բ��N�MB�XS"����<s��v��N��u+1��_�r��py�#���>
�
��,�Z1��]��3�c߭j�kW�����0ܱȹ�qМg�j�Y��:�[��d_�	f,~��zJt�1g`�����q���?�B*�,��Z)\g���O~:�RA���Q�p\��O�����=��TG�z�%��*���o�x<��~`x������e����ö@�L1_����q��*Ukt*O��2�!A=��5C,��m��0�g���^�J���<��u�	�2*���XIʌ~��~>�J��G���B��_�Z�nZ&1����1�ױ'9�w�nS�ۅ�ܹ�D~P�:��`�}q_AŖ�yC��p�~H��[q��v��Lc߿5�gYU��.�9q�t�8�'��ұC�f<q��s� v�)��1g.���'����j����~H�ghu�d��Gq<�#��pYY����>�<ӤH�v�C�k�*��=���ڢ���A2+�����z�P1�n�fCF[*�^�8���=����e�3c+!
������M�$I�e�"}�FF˞G͎s��1R@���ƍ��V��	;s�t��)��Ә�G#�Ɛ�3�|c�zk���3m�7m�K/�>R3Ӷ;V�ߚ<�	��o4�9�zg��z+n��
�XKyc�X�0�� ����O���C�6�qX�:��L�O��}������c�.�a��N�Zz`�OO\����ָ�23�k�e����G��c�����a[�/���g�i�z6|�v����^Fm���=|��~��{ ;"�Bc�XVE(:��8���{Tfx�F�<�߉yN�ԃϽܓ# M�+32�;I�ws�A g���Q�ڬ��EUF�-��q���ϥ|���/7���<J�u���p��-l�� �T�q)9��z��ȷ-#E&�S�,~�᳟��I>��6_�Q��֙���f�*��n/�W��|�f�=�s^���v$
���v�9��>��/v����9�\����~�y��I1��S����'�տ�2���|T���M�����l�pp��u��#���4��5���z�y�-C̎;X�c$}qϯN�u�@��|xR���g��ux\jլ�ޢ�����#�ȃ�`k����Vr9��_��Iws�� Ӿ�'�6¸b��9�뚣�:�1�5LJ�s#|�Pf��S�{)��o�uX�ɧ��Y��sLc�S�rGj���k�
SA�#v�I��@G^O�?��\�4�$�w�7˶>}ϡ�x�S�h�[��ZN�wu���\���ٮ<��n�[�����|�9��G�N�3crc�g����`o�0���͍�s�^?��b΀���lc��g�~*6�$hmͻw�W8��jU�}��!#�ڣ�`G�}�@�`i>/���	���8���n��α�$W����9���#�9��^�|l�a4@��+V2��md��l�\��c�HМ��~�����4?���kQç�wqp�Ue�y�c%�������ݦ�a���K|	յ	�q��j��)��=�f���A�#���윹c����gFm%�S����OW�F��N�,�Ii`'hUi-�O�qݸ�tɬ�vM&MW�ײZy�i�s[�ew`��@�
�־[�u�<]���K/m�4�#1Y��o"�V@eٱe9 䁳<��>|c���V�KK�8t�k{����u��e��eM���烊���Q��o_����x�>��GC��<5�Xo$�,�l�ʑym�s���@Eq:W�>0��zō��Ջ�� [��9��Ps�9� �t���K�Fm7Iҭ���[���#4�rú����\�k�/����[�����k�s�9#`9-�݂*#$���Տ/���e�/�'Vt�j��&�d/��o�Y���B�v%8<q��~��,�7q��j�n��Ԯd9B�s�,ʱS���_t~�W>3����M�xjɦ�Z���G�5{���F�c�@n2q����{ۿ
^����I
�y{�s��:�s�⾏+�����)S���~��~�k�¾�/����[e��aVFŸ���s�=H9�K]+K�5[Y^#l�C��v85��_���$��k�/T���n�v#�L�ߞ��}���խf�����PG+Y�D�3�7u��A�]��tz���I��ޕ��v�i��L}�@�9��'ǿ�E�ß��?<Q����Œ��9��S�#��Q�r:zf��Ҿ��46� ]͵��`:�?�\�/���um��k{[i�
��ۇ��~e�P�-���88�3:r�r�t�.nY�<���N���Z�t�gx�����Gv����|[�O�oԼ'��\Ga��{{;$gX�g2W8��~�xq�=����#,j�!�a�#��+���'ÿ|v����d��V�g�Ětd�����/�	#n�Շ'h�*8:?Y�W]<��
S4�}O��Z]vGÿ�����Z�Z��!���&��h��sG+'��5�޽�}_�N�R�ɴ�q5���a�3����)��s�|c�+�c�N�$�^t1Y�����$��#�+�<-�����mQM-�V�
|�|��z��#䝸���~��+f�ފ�:t?Q��<.K�T���ս�#��?f��|5g���‘�օ��.�WɸE����P8l��W���5��?fmZO�_�g�e�4{gW��h��V�	a��H�v��2k�O^]��WkG"�Ro,3��q��z��uk��wx�[K0<�ddg���AY��+>[�'љg?��{�6��-�����
��
�L>=jZ���f7�Ƒ��#P���Hc��k럇ߴ���
�'x�P���b/;/6�%�U_�V=X��=�|��o~þ�uO�L��A�����K��n�p]��9�=� ㎵��*����[����>	j�Z�쾽�ͥX����#�N������e��V��g���|�/�j�n$��y�ri~<е��}�m�i
qg-��8R�$�q�no���
m#�	q4O�X�~	�Xu����(��(��ѼY��K�ۍ5M�ه����|������|Km��m��?jV�ͩ�E=�ӡ��2yj�[��X�rpN0@��N�4��L��Mǩ�/����������G)���kr���>������]O�7V���M�=�I�Ґ� �R������ͺt���G�Q��M�6��y�p	�q�z����iz^��?�3i�WƖ�(U#;�8ݎp3�GՖsT�F�#�q����[C̨��<��#d�è��|�7���A���[��Mq)�d�� 2	#	�+�_��$o
|�&�ncK�}%J��gUs׫���|Z�FXu{+�1?ַ����X��G��=F+�l�FO��=ajB=�~��U�wΗ6��G ��p�;pN{V���l���|�Ѩee�9�3�p=x�J����!�5a����f������cv21��^�k�����1�-���7v�!Y���ރ<t�I��ڦM�ny�sj}oc����[xb

��ʩ<m�|d~Y�$���j���+K+�[f���f�B���PA�=�g�m��>�|8�b�2��e��T.FG��5���x��$�U��mN=>�0���U��D��xY�)�p-�v=̷^%$ޚ�T�X�*�����p8�߭9@�?6a�bS�����A��NE"\9������U/�`�}9�-��3[��E?//�p��}�|G+>�ly>�q�j�|q��<��zn�o#����/8u�WO�E��@�X��$�#�������_�|C_�|q�ː&msǗB&�,��߹P7z��<�]��&���,.$�U[���㜜Q]K�%�"a���<��̬kg�Fd����m����ӧJa�3�K�W�r=��@�wrx�w��_
����̃�9$��S���6��?��N�ouU9�pX�zpN��j��4�g&�#��M��n9����W�O_5���ι?�9#$c߂=J�n~h�ڴ�� � ��r|�2xG^������E��Ǔ*���2s�����L���,�EZ*.�*���'��������9a�fI�����I��:u�����I��x��l�����S�l��U��'č�����c�VD���A���@j>Drˡ�ǠX����PM�
�����z�q�8���@�K|�=G^09�Һɼ3�M��q�}�f��,2x��A�
�֚ͺ:�x:���<�d�Ds��oj^��r�‘��c��3H�0;H�����0\I"��9ݟ~�\c5�K�i�[yRiw�.�;o�3ی������7��|��]I�۷K��'`}9�J��b�~�H��.!�E�d�c�����E�?�c�"����m�צG;t�Z@�sF�%�ݺ=�3�p�>�T�
�h~Ũ� _���V�=w�Z,Q��ψ�N��Z�B�	�z�_�MX����I�����D.� �q��۞*Yl\0�fL�᲼�I�9�0=.������ʫ��eQ����s�N(�'�h'��H�I�24w���?Rjş�=.v1�����L���O�铌�?��\���,g����ۆ��2
�q�ڵ��`d��}�|�uQ���:r@�4r�1��~��#M.�r��fX�Pa�$��Oz�~3�|POqu���X36NF3�u��\/�e�ܳ4$������q��uѡ�Pc��E|�H�ǿ�8���;��i�+��Mm�hv��,��u##��pN*�>&�o[���2.ɸ\�;N}��*��Ҥ�|y��/���Ct��ߌg�4��c��AM�dV �V����}�k�[��㻶�1��D�ğ�NOC����b�,�,�y����F����ރ�Z��Ki��Q�.�69�>_����V-��L��Yjw��Rˑ�wӃ��0i=�S=���2N�U~`���s�{c���ܔi^Ha�r�����u=�g>��<Q�3l�#�ؽ#eVRO\�mQԒF1��o�Y>7�{�F�[tm4 �s�x�nA�=U��=3�wq���M�Q��H��Q�����i7�>�w����u���א�?�U{�\iW"I!*g�3�>a�^����|a�9�F
͝���Ns�c����NJr���l�I��K�V���C�'<�q�S@�#�V򕂮� l�1��~�W�[|d>��.7#e|�F:;�y�5n���U|�w���Z6Ü��q��Y�by�;�q @�n�I,͍�ry�g��8�,DQ>{y8��p+���#����E��Q�N��:�c��G��+_�>bZ�T�($���t�#��Me�#��y&���c�|W�����:k����4h�啲s�9��9��e�ʓV�FQ�Ǟ8 6['�s�֫��i��%�M�vI��r��#?\�(dyǝE���n�0�o�F=0�O圌�?
j6א(����VY7n��ޫ�!:��n�b]�8ׂ��1���ΰ���M�I?����O=}?���R���F�����N�U�~�s�/��]��O���Vv��}�U� �9�J�;�zD����e�������E�M�Z'���H�[JYX�ǠoR�^�+�q��@�6
�y�~a푟a�Ơ�G�m�����ȓql�� �B���	s��@�p:`��s��Nn��27pY���Nq��q�C|���PP��)'��Ϯ:�_��\4���6X�u�'>���%�Ve�8�7*�������=EK"[�e�$j[+���O�sR��e�����Y|�Pz�g��҆�$WY�6��7rpN�'��G0��D��W,wws��=y�	bL�d�vXryN�x��D�n<��Lj��y���pp{`��+7�ۓ�:iن[Ul�
�����jƼ�4��p��',�I�rF<��ң�.X�6LcU��|e8Mҟ-I���t8�O��Ӝ�8�̇�����c֓t� l�2.�8c�����ҡk�^3%�|���I�=OO~��Kx�E"�&�Fe�;t�Ͼ{T�+�	#'*��2�ܟ��8=9ǭ;-�֔`ɖX�'����U�8���\I*
�X�?*X��iVA�����Q�L�l-�0c�,�����c��	A�r	U�!Ugr�������OXBܤl6�Id����t��!�G��,r4�� �:��^�
K��$�eY
�Yv���z�V9㎽qM2@%�ź.�yl��=�d��Q�IX���3
�!GR;��c��K�	Kr���˸����psBo1ܧ��]���c���_��K�IZX�eYy�����0p?�j)��c���^I�?On3N2\,�4R/����q����Q/"ء�ܽ��2+$w#;1�:�q�i"e�Q�� �L㧹8"��A3�΍��L}Ia��s�Qޘ��29�N�pA�QۦzR�Йn5�%�,r"n9�ʅ�ǂ��lqO�L֏��/z����b��P�+ Vr܌`܂pG�*[�2৞|�ncH�Cm���l
�Ρ��/��ʫ$�%����q���%�ט �3���e��}p1���8��P���k�U22|�d�=�=i�����:�Z5��z�3���g�B�&gM�+�w�����N:g��y�X�	?+{���3�9��G>d��f���3�F~\c�G��֓��)i��y|��?�J%�m�r�H�� ��#ޖܳ��r�1f�I�q��O�D.�)���1���'��=if��%�@)	�ynx�c'��AQԒ�x̭oolY�wF�����rq��m3Ilqܤ�-���/Lgӿ�Z�c�W��V�r�/��S�y��V�ܬ#y[�?����T���C�I��I�$�%[���^�5)�4�-�dC��O�8�灌q�
���y#����-��G��y�K�˜��4��x$�@��8��`�wI4���a�п_\�s��0G4���w6�9�`���^��A��D�z���DV-�o-@c���g�rq��JŇ%W��n�.A�����#�GlB���-��gn��?C��,(|�s?�ۏ�������6�&��Ν~_^F03��9��k4������x�09���[i�k����lT���NG8�� ���2|��I�~l�����\ʷvΎ̪=�6����c�\���d�ۋ� ���� =���#��v���� ��x棌��'�ič�铟��;jx
;�:#�m,v�A<p8��R����&e���d
�$��H�P�u��_	Y�81-�N6��w˃�<���C5đ[��ٗo�ǡ�x���]��ž[�V��i6�Pͻ�;q���q��
�X�����I����{c�û�G�S�fmݴ��U�ϕ�����K���:i〉����~a���x�p;���r�@d�'�I��3�{rJνHՙ�}��H�:�=@���c���y����cV��z��1���/��]c�1씜��n��5�tU��yr�ɸ��܀3P�ox'd+4����p1��㌀����E_���|#�]��]�A;G}1��WYMcŒl,��c8��s�T�^��y�I_���Oo��Gcox�7͵9Nq��s��ʧ�+�Obů�v�Am�8��$���ON��iZ$��N�F�V���y���FG�ޫ†yZ5�[�|�:c'=8���hJ�A��Y;�g�I8�?�s^���(Ն��h��Oa��9��p ��Tٸ�`p0}}�Pi!��|�fg
�e�~U����}��m����6�n�c������Ʒ+E��ƅVx��ݷt[x�<�G~:�=)�A]��
��6�
��q��V��9��ŗ�i�U_l^;U� �����	'���NH�ҧ�����Gۘ���u�*s�1�^I��N[�h�l��֋��g��=�A�n���ݵ�����G��\��ާg�w�ܧ����ٸ�[8�$�'�sN]8��"�Y��O݇ܪ�����2�~���X�c��|�8\�s���A��iK.䏗q�9��{q�L{I�cU@�I��p1�9g�_Qޥ>m�Q2��R����e�[�rz��Ӄ֣�,.cF
ɽ���Ў��=��ⵦ��h�Y#mʄ�'��ǿ�����S�sn*o����'���?�V��?d���O�d$k�O뜓����`k�<�+䒿(;�O�c8����kl��F`fQ!��{��H���H�}��?��������t`a\iAUaܻ��
�����=���ZT3F,�ܥT���d��u'8��ky�����VF� :g����Tw�*�FaY1՚Lm��>�(�֫�%.d`K��ʌ�U1a�H3�}8��Wz%�/����Ss�8��A�99k����\�X�7U7g����U������ݑ�����?�De.kWst$��E���v��~^�z��L���C��dc��ʷ���j�!Ui4���͎��Ӟ�N�iY/�a�o�R��'�������"A��ݏ���D�g=}zrGzb��xeR%H�T�?2�Rv���9�~����W	U�/���Ď���8��C�8d�ʲ�v�A���:u��i.�fq��n�#�t���t��N����� c-��…s�W`A�1�RH�����eM�,�1b��
ܝ����t�7�6�դ�>��C0\�?tc��$d��{E��F����K����B�|c�`FpFqӌt#�U���,���h��V����`x$g�<{sa��,����2���1��;�9�N�ƶ�ݔ�I��W9�mU�ӱ�o~*y�}�w�ֱ���/�q�Ms���λ��c���w'#��Z�gƓI/��d�6Y�%����ܾ����m�+�[���V0�Ny�^��n����[�R��u"�F�z�l��zץ��*m$qc}����(�6U�L�U�v󌎙�A�f�ܙ_qTh��c���֮]$i>䐆U"?3ӧ=��9��sUg�X�m�N6�p�{��7W�ȑ\�I7�,cqlc��=�I�1a��o*/�ڊ̀=s��qN�`d�3�t\��<��98�L�ҙk<�M�,Ʊ�˵8Q�#�?�J�2I�yV�*��36p��T�=��鹄��)§-�gۑ���2,��"a���G=�3�w�6t�����©�n��<�&��1�VM�\g$c�}9�#��ډUAYv��3ӡ�?�ě�*|��?�3�a��=GBj[2�t��B��Q�O�x�a�@,w,J�db���<)�:��ЎݫsK���3s"���s���On��n�$"E+�m^���ߧ���,@�gs3n�3�W#8�9�;�5�l��$�6�oʭ�Y�A�����3������)#&%���N�=:�mo�6[��ΨPN:v�a_R~�|�Oj�|Oo��y|��_��b�@1��^>k�,=�tz�|�-{G]������c��s�ǿ<��^IЏ*L�����A���X6~�Q�Xx�I�Ǎ�-�͜�߯j�����mJ��{[XZ�i!�6"T21�i�q�W�F2m�4l'��t�|[�D�˻�2��I����2�NL���/4.7�o�8Ƕخ�pѧ�>	�m��K���_|�X�̍;6r>lK�»���E�#a�
�~G���s���W�+]���G���7�MkB�b_�k��G��VKɒ��	3���}��XxWÖ~��c�Ҭb��h�F#Q�#s־B�&��+���ዏ�?�%ׯ���N�n�=~_6H�� ����F��md��O*{�Q��k��a�K���;ȫ}e�S#�g�41�x�V�6�݂���Oa�v56��`����H�6�!���c���5a�TQ"��@8]���=3�=D�[�vUl��YZ]�����l���t�ks����E����}�����>�W�U�ʎps���\�T�R�پ�pͷ��z皓)�nfU��p��߷�$L��WjH��4`�z���S�I[r'�$�+G��9�>�q��J�⁤R�W+�����ǭ:i��To�q�@3��Q���>��~ۿ�~iz.�{�Ư������O15R�I��&@��ey5�Z?�+�s����qd���S8��Gvd���8^̠�)�#�w���W�����j��Y��(�F�H�,��3(9����m' �c���/��W}���l�e�±����?~���M�20�vs����ld��Ȉ�営=��I���[O�&W���Lv�m�y��n9�_�s��������#ċ�=>�X�so�9-�EWW���98���<�X~�}�ΐ�*�-�66�r2_0��#"�t|��~n)�1���
h~,]���u�8�'Ȇ4$�����)�I�O�O^�,j}�ҧN��%b�Wg��i�ڜ�¢_���o@řÌ�G%���d
�!mc{�h�u�p�wS�ʬ6�bF���$�YY7[$�K��'�|_�[����U���6��4���2��*Į�X����U�%tg�t���Ņ�1�,�,�@�dfD�	8,Dž'8��q�5�F4��&��
?�1�h�<A��?h�T��O���v��&f\|�V=�|�g�?��:���D�K��6���mE�@ѐ��ܧ#�g�}w�"���0�i�x
�@��MP��R�BE7;��D��ZN	<��b�F3�F��v�J���ꤑӷ5��Z��uV՞f�O��~���˨�x��w>liu���ö0��L�����?L�_Q����P^Y�t�j��ڼ��)�M�|�2����_~�����c����ٮ]<�.�qwZ����͆6.�C0���W��	�"�7���Ku�;��ῼ����h�mj�g2�8�����+9F-#��6��#پ���T��ʙ�*��_����9�u�\!��	~V�h�On�==��|���`���Y#@�4�!@��203�>���x�N
5�W"H!\���RHۏ~q��S��ٛԦ�����߽��G4�߼'���s���~�/�y�=�_�����F����q�ѡ(�F�~�op5�>4x�'��/� �e��ay#��g��G9%��t�k�����=ߍ�!x�4z����r���<s"F�}�M��9�>��`](j�}�8\����->�Q���ė��,��q\��?��㿿�s����<_���{��N�t�90v�'�^@;��OP"�������g�|P��Y|?�I"�~eLF��d t�}3��?e��Zm�����R4��3^e�L�K1 �'�����G,�G/u��~�O9��3Od�����4Im�RdXi����䁟_^ƴ�=z-�B��ۛw(�I�$c����b�W�Y��$�Ȏ�V89S���'>���t�&Рs$�|�
���2�2�_�_;.hI#ߌcRZ��8��,���i��58]Ī�.O���_I�+��+ND�F
$Jx��0r9<v����.��i�̾^�Q��P�c��Ͼ}�K�[�8M�y���'�N���8�W��y�ġ,?�[#W�>�S�K���
<;�\C��մ��e\�������|;���~�/E�ma����q�3�GR3ϧ�5���T�W��c���q����f�Z�|�FrУ㎟L���G0�*���?>�_����K���
���[am�8�V�L��]��ẵ�ݫݐMû�H����8���9�\Υ�ܺ$
�w�R�Ǩ���p8�zN�d,l-��Z8QdVPv�8��=:�_E��T�Ji�3��W��Z�g�?�X��Z�����=[����<Acai-��h�q�V
�2"�s������>:�����C��o �U�%\���-��
S���i-ep�-��v����/�%��v�5���c�$TԼ�)<�&9-�8��'tEKp�5��˖j�>>�
�"W��]�����*I��K�Y�h��27`;�{`qҠ�?k_�R�,��h��u�J:���ݻ9�c8�N*1�/My>�?��"�嶇�6�$)��r��4���E��_*�4�f/3�Fz?y��LZ������5<3�r�^Я̂�O��� ��*������Z�S�x7?	t]kU�[[�V�.!F,�\˃����<�_��
/�E�ɾx_��$[X�t���7˝��y.#�=�?D4-*�C���wa��BFT*Oԅ��j��L}|U5
�o[��_����r����n9U�2#b���=9�Ͻfx�]��o�E3/�agss#)�.�v'�ޜ�=����f���U�B�I���}>�翵f�%���r�'�5H�����w���aﱏ{b�X�iX�����2hz����Zt�2�M���y�d$���9�}Ew
�'F�X"l^9nA�Ϸ�N�����q�Y�n�)�P��~3N��s*D�[.��A�{���CYUnUTc�M e���4q�
���99���Ҝ�Z����W��>U�O�9�٢I<�[�+�?+�����_�Wh��K���yeR@8���Üg֑��R)$\��H��8㏮h�8�ʿ�V�m�Y���OAK%���_1Q~U��y=`q��Y�*<��շ�T�#��{${�TKre�\B��-�b0v�`�s����H�\Ј�,�`�?.NF��;Tq�:*L����1�u�H��ב|��<��*2I��������X–o�g8\7C�u�9�H��^ȲG�xl�9�9?��gj[$�����{�����ҡ��ݙ�3G򉱆��ۯN�B[�]��"�.�m�j�P�A�wN���'�R��O�|>�k"��f�V��x��>��f<�݆x�q�H���;�'����ʌ��z��?:{�d�xk�{~��[ؠ�)RO~s���8�����ߖ��-��勗PO~���~kj0�.~��������P�|�k�i#}�
�&;c-�8�|jmb�Nr�>�n�]B݇��i�H>��V_��$ �^�ˍ�^��;r:d���_i�w����x	
�����q�w�,� 3��p3�����dT�Q5���:��R5��㑙�������J�u��sac�����O�n8�c�z%�%`h��gn�Yya�dx8��ߊ��1\���qm��ǧ�����by��'"�[+y#��e°c�9�G���8��C@�պ�tdUϙ
� �v�Gӓ^�n�y�ٛxd�B�n���z���4��E��ی_��w=NH� H��9�f��S�e���^�6c��П��ө�Z�S��E-��+�%dB̃�ڽ�i.C�����]�8
��{���(�	�3��1�™�=FGמy�G1J'�ˮY,F��*�m�����c��{Q��ۯ�ѳ>L��N0~������mW�-�g+L�*֪@���q���f_|>�u��v�����ݜc�~�s]��yu���l&�H�?��3�]�<{�1�t�sBෙTo�|�N���^���7����I�?2��� @�����|����S�!�s I*���PsO�+pQw89�m���Yn��<玃�Î3�r�K�51�
�
x �w�z�~ڣo����_.������Nr:��n�U��>$��m��m�CML���x���>��r3�*�Vc�����;��w��MY�Ut�fP�2�ˆ`F[��<~\b���/ċydXﴛ���e�]�s�v��ӽg]x�5�)�^;�Tg�����\~���aܞV@��@�ZO-7FdvS�.�xR:��ڠ��D��t
���=9�9��Z�K���|���4b��E�ӏόc�Y��&�l�?m����jۻ�����M�����5���ɳ�C.�-�T�|��Qc2���s�=p~�x�T�I� FY�h�‰m�Vn����������i��vʹ�<�=G�A�?��Q��R;($��/���I!ݞ�q�����5��Xۙe[8�I�X��t�ϡ�+��Wd�����q��0��y� ~����~�*�P|�Ny�A�$��2��|�wgS�$4���]��9=3����^�R��"
1��;��kp��A�}�㠮~�Y�T��eVe�3��� ����Z�<y�Ie�U�A�=?"+��.2�m\�J��u��1Y3�Gs��8:�߯��5>4i>Y�]B�,{[�>�nH�rwZ���+��#;G��s�1���[��+Y����_��e�<�N���ٽ�s=3���M�k�vR[o�O^܌���V����Kz�ZkH�I�e#��<񞹯${�d�c��2���0�x��q�@�sqö(�,�sG�vrpG
���q�9Xj]�l_�2���!�o�����9��r3��v	�an��CcjNNNF>��Z�(_s�w�H���Cnbq�9�z��5'e�A��=ۛ�ۍ�Wn�dq���z�
�=�ŷh�Ԓg��l�W���קn���~M��kd�kkI���C���xT���#6�qk�9|�eی��~���8ƨ������$��F#S�W�1����旳�(sl��2\�<��f�b̊>}ݽ����,���\3nV�FppM�{����C⟎m�-Z?��|�~��z�U��:�j���f?udb�
\�A����#�D���=�g�8&��q&�kX̉#bF�c9�G����y�_/.������(�U��r@��8�^MO�
���A�d��;��Rq�=�-"��k�`t��~��z�F=�ȩ�v�c�)\2��!���A�S������c�W����h�y��wd����<t��|N�[��q��J�vU��3�q���G�����?�2�2�����1��o�3G,��+6�<��'=y�����]��4�M��mQ�;�Q�m��NqϦ*ݾ��O�y�B��qӁ�������/����6�KnP����3�pGl~�,P�,,v�!�G�O$�8��C%�R"��Y�Q����3�u>�ƝGl��|��>��~�8���
bȺXGoY��c���r3Q���D�(�C�1��9㞴�~�F��'��F�ێ��_�q4��,��/>��z�[D�[�B�B�,��r6�;r��}Fq��Z-�[T���
�);@�F޽9����V%_��h,X�GӁ�q�M�k��|(C�Ƭp�����@_S�y�H��y/䀤:/�?j_5���3�r(*Fz�y�w�ѥ�`�.WgVf�<���9.:S�yXX�yeJ��w��8��w��@~f�E���ݓ�!�	����*r��mu�`TUS��.�1�`{�
G 1��`H�#UT�s�C����K$K)Q��-�
������N��y�����^<�]��}9,H皑�Dٍ�"����c�c�1�5^%XL�An��2.�O#?�<� ��ͯ:I�d�HT�U .Ӹc�[#�ۯ8BJ�H�l��̨~L7@1�'�JU��n
��V޹�@�O��*�%o��7���f�b��A���ަ؁V!�|�M�B�p���NƁ�bV���=�8UE+��s�C�i1\A"�m��l����B8{x������Z]�d*
������Oؒ�3H�4r|�Ws>��c#��ϯ<f��:b��Q�����6+���0H�<�K	�۵�y�wm�:��u�*	l�("�Y�?+ܓ�A�'�O�[\B6��#meUo�gNv�;�1�Z�u��@��,�v��{�1���銖b��$�Ƹ2H�!8�<��V��Gh�r��� ��W�1������"4�����6�u�}��:G3�fl�>fS��28��u	H��1��`H��]��{}x����C&��@I@`28�x#�)����Hd�F �n3���p{�}O<��W��BǏ����$t���K%�)nf��X�5b�6y�׎���<o���ܱp냕�c?N��f�y+��6��q�^�pG�H�Z#�*m��wٝǞ8��,��F��t+�:2��)�Yzq��9'��^���5xLB5�/%w�\�����o`���G��'8ʞq���ד�2}L/��>��5)�0�J����囍��x��x�>�d�b��Qp���B����N�g�Fy�ֿ�n�i&��tj�\����9{t���c���B�t��B��#� ���]p��2)\�2�ڪ�U
�>�{u���mhR��8UrKm^�N9'�;���Qm�O)e��g� ?\���P�M"-�'���J�9��;c�n��&Y�B#t�J��xЯpq����V���q3;cQ�W�8n�p:VU�U
!���k�V��S�{���ki��ɶ�8�p���%���8�s���e)w7����emӲͬNY�c���Q��\���ª���u�F�0q���+����˥xVe�M�e��}������<s׊���Z�{ž4��}6ݲAfێA�3ߵy���Zz7��OZ[#�-�%���`6m$�00I/µ<5�}sY������rCA|�9����z��_Ix;�w�;�x㹴��wR��Io�ef�����]�Zn��G�K0F��0����8�Z�jf���:c�����t������D:p����d|��o<s��v����[�VW�h�+n}���ۀÓ�ֽe�F9�EU�7�̼����N���&���,6�<�ʃ�nz����c�7v�:��(�Z#���^���A�xj��l#p�#��� `�:����.������S��q��Q�A��]<4R�[v*�Vn77;�����˸��C^���u����k��[�3U�9'��<�=�ṇ�V���z;��dzU)~x�t'�:{+.�;~�::�]��B���.|�n��A�x�S��2�;v]��C0*�_S��Ӟ������c����,4WPT���ȥ�܂I�*ǻ��<�/��cĊ��8�z��s���?YdVPv�
�럽��{f�
3����۶��>Q�G���cZx���L�᩿������E#h�*elL&���{t��ۿ�?Ʋ2���A"��#F�q�`�Gk�-la��m�i6�)�ьc����v�������x�'��~�+��r�Ӓ��T��~'���L��M�������t�?�d]���f�K�[�<���l�<����8�W�gN�g�A3�2�n:q��zzЖ���F�\�+�����ۥkº3��3���������<3If꫎~�s�ި\Y�t��E�m�
�Fy�zr9�_kZie�ق��@�zt��*)<)�܀/la�?�*�8��:zV��%z$K~���m���$V
��䁌�S��_!������#��>�T�̾�6��O��*Wor�A�������0|/r32���H��a�����e�9tgɳY$�c��v� ��3�s�ޕvo.�v��ۮ�6� s���j�F�qv�:j���{��Er��#����#P��l. kM'�w*�0�{E|8����j��C��P����.�ͫ#mĬ�{�=>��{y��r�6�ܪ�NO�d}H�pտcܲ���4�!U�o$2�=���~����?�V��ݶ�G�m'�衔v$c��֑�Q�e,=H��)M�'����+�y��S���f&�������ǂ>��Z�+����m�������d����#?�3�7�?��U�S��4r7�&��0>��q����HKfD�.��۹����p!�}H#��F�Z�e��nl�a�4�I�w تv�.x���W�P�_@��m�/"�+"��6�r��g����;M�1ԡTV�[�?�^��8�|�+�˥��fq�#�&����1�0�"���''�����E�̒1��.1߾;pz�5�w"��"@��p@Lw�::�)��¶��!�n��������'�P�9�Y���I73�c�3�|zd�F�T�9"P$�N�Bq����3S丑�,xUUڤ�����1؊��`dff�NZn���'ۯ<��3$b�g�$�_/���OΉaUUU��+Y�H'��ۣ�	6�ː~bT����	�zќH�eʪ���c'׮?����)�O�aV �g��ϱ��8�9�/�cm!͍���>�s���D����U�A�GP1�=x�9��S��˄�]�>lz�����(�S���g�,$�?�Z����8���� ��Yv�$��D�=�N�$���
ޝ�>kV���N�i1�tϧ��$kF)
H�M����ɍ�z�צ|7ӛZ�&�LnK�Gf@�<c��9�7�#s�³2��S�3��{�o$��D���Q������~���~��㝨��=jX�'���䧔�\rn�6���t�?*��O����N�Cuw����,V[��Gl�I{v>��\�vh4�0 >t���ǥu|25/xSGdA� �ծ��0�۝����c?Uϵy4�;�=)F�NCak��:5��#��G�0��j��`})�[�<�Vm�
��N1�`z�*[q��S�~�0�z�r}ϭBҘ�ş2_�>�������ҳ����m�������K�?�Ӓ]��spe���_~k�h�t�B�#_�5C�H_p{���h��{�ͯ�|@��2n_x����N��k$[HH�6�9�R�'�]��d��
�1�]�����}�����l��S���8�P���lh�����OC������x���_�Ǹ	�v�N"�]Z�1�x�(�p>x�8 ��<N��W�V�F�h�D����l߹�k��\��}P�sg2����۝�?���GJ��HVB�/��V#z���ҭ�Y���c�b���9��OlՔ�H��^�T1��:��{��6�7�`VC�s�:`g�i�($�d~^�1Cn\a���?K�7,�U��̣�8�
���>�7׼a(�M�.n��yH�����3�Z"e����S�o����$kIui��-M٣���v��:��s�#��|oq�[æjF�ͨMX�c}���v%~P22�.�.1�^e����~	ҭm��I�o�H�u����Uv��+����V�6���ZIu6��\k�LjӪ�1��!z� 0���.2��7��)?3�?g�{�2h�:���oc�Ŵ�%�Y��'b�仮C� ����v���o<Y�x~�;%[�=OMw[b���̈�UeJX��<K����Q���Io-��N
.�!����<��Z���m��j֞ ����XZ7I�hef����ۇ��@�X9{^h/�絅��y%��
�kS�z��u������X^kV7����	a_5A3��pk�|k��_�w����({{9��k�a�Ô��� �-�C^yy���Z�U�n��mB@��!��m�㒤��CpI���7z/���P���.b�;��Ed+���#�lcW�GN��������^�g��Z��|k��%i���أy�G"�q2O���2rp���M��?|6����C�;;Ǻ�n��2�q�F2���WV�2p3^I�/�j�2xQ/�[%�Y�[!����H�@��N���^�/�t�"���ey<���@M�NB�y�� 
��k*Q�����륊�ʼ�W[F�N���r�]c\��5�
��q��ͽ�n���}�׹�џ�'��:?ď����|k�鲰�2Ƨ~F�8�����j��Dg���'�\�վ�f�@_-W����g⽳�/�|a�FkZbk��ǯxY��i9Q�D� 8RCm��]5�RU6�/���R�M6���c�^���i^�佸�'�)���B��I=.x\䎸�s�����W��-�{}o�Z\�zԒJ�시(m��X��~x�W�n�cxk������D�c�؇���C#�}*�K�0�����J��?�I�<w�[�֥&�څ�ļ֖��L��IH�$1$�S�Ҕ��aNU*(A�7Əx��C�Z�Lj/�V��M��wQ�'`�|�n���98^��.�e�+O��,m�l|C�Hu�JKY#�-�p���rL��6�$�k��ǯx�X|8�u%�д�=*��v�� 6H�C(�-�J�5����5�1��rj���������@���+Ƣ�z�;��=�Ty�j]�?����~���_~x��G��i�m��G��^	�>N�N�d��R܅&�M�o�S�������e���#��?���8���Z���xQ<G5�,�\^ͥ�'�+��y��"s�g ��'�η�3�V7���$��w�C��2Nx��3�z�>�G���.
�1��y���/�޵�����̶H�,�q�^�<��<�i��{��1������RT��awg���}�^����E�m��3q�|��-���c����
}[��K�<c�ݲ�m���	�~�<q�W��;�W�~�F�TE��}��S,���Ȥ��d�O���z��%+m�!_���ld���:�����eD�k4�m�p��8�ݏ^���!)mj�3*��θ#r�>��C�����79�b����+Z�y�	�Xݜ���c�z��.��v�>d��iFم�Q�펽?*���2]I�4aWl`y���9>�#�ڶ�"���\,�
�Q���\�f��Ɔ�U�k��5=���>���w��D��0�>nO���{��<�,���ݷ*^��ּ�v��Z���ԃɵ�k��Z��M������3�Z��ȾHڲI�.O9��ל����x>�UW�#�.�c�T�D��
���?��׆f�;/�t+u�`�ɚLm'�H:�;���U����붺h_�Hl���F���n|�8�"��ko�������l$ܷ>(�H��(��"�s�q���Gj��i:<q���lcr����=D��]�J2�c�5�O�<57�4�����rƩ�h�Ve�Y
��y'`����#���qUf���Ew���;jXבj��a�b2D��rA8;s��y���ǚ,�w�$�v���އh��G�Bx��t:w��kL��-�l�)>�^I���>�'��q��n��3Ӵ��OI�i��z֯�_jx��$��E�#-3+V1��os��Jb�TPT��d��8���W��o��������ꭤ���3.�$�!���
dq_T*D-w@�D�d���{��_ʼ�d�*�Q�-�U��m��߽l�a�{`�O�My��$z犾x�c��D��>��iɟ�������^�4�#��YY��l
�}�u�u��\�jߵΑ����>��p[�Ku8�A�!~XX�氣/z����zL��hs33��V%S“�����zj����r�&���x#���5_9��o��w<�ry����%O��cp�z}zc��\��ڝ)�&-��D�px����G�:k��;�Z7�B�W��G$���ÿ�!Y��
r?��q�qQ�&#���wc+�*���q�9��}�����A��I�p6�ԀFrj!s��i��w�+�'9'�xϯ@s��	�"���v���}�g��B��*��q�|�2}k7���n��?�r�_��q��ӌ�TrNQ�iŶa���߿���F�B��*�-�ȡr@�<�?Q���F�"�^d�� pCӧ?j�ɮ�#xYCed
�GR	�׷�W�8�&�Bs���@���P°��9fU��`�v�>��tHL��%�.�7`��==(^��J$��'�'�C�������߆�(�X:�n��#��g�ҙ:���Fv�`.�d���~�ڒEF�Y�b5�G"�0��\��g�攄��WX^'�s*�S�=�`z�~�$�3l�dڼ�h��s���w���c�v�q岦�G�}q��f��L�ωdVe�VNOQ�#���
W�i�"�P���\,k�[8?����g����d���r��d�wO~�隒i�!��k�t���y��Uԯ�۳���xn��玀�ƀܒ�ɔ���%0�G�O_�'9���^�T�B"`w1����%��[y�U�ϻ''g�Út�b}�)Fu�������L���Q�QH�2��*݃3n�㟨�v��^��[fo��;��8�r=?
�L2H�[�*��3}�v=��=q�����wy�I���+�O��{p*z�#�6mT�دˍ�6�s�����eI#�Fe����䓜q�����p	�s�;P�>��a�O�qP�:4���oöYI=q�})r�Z�s�#�tp/��mQ�#8����I$�4�fm�����8���&�s��\�����Ͽ8�|ƛ�H�4
�Z��X�]�<��=8���`�Z<���k��7e���y��j��y%Y7f����3�����#�0�D�d�0��8���2I:��FP��6��`�S��Ɍʁ]�;ZB���#�ӓ��q����$r�ܩ�/Lw�z��{ry��i�J�ʮ�(�'�s��3��~O����R۫30���W''�=�z���V5�����a�ב��p:�Z[YZ8խ.�C��ן��Jȳd:��X��#�#�#�…H�Q�VbJ���zg۶}j%������[joVܣ=��N����{Ms��7ͺ?5C�V�A��T���[�7ym�T��#�)�K=�+Uݸ-���}{���]
��^��
�E��Y�Fr�x�_J��>|:ԑ��<
�ɸ|��X����8>��1[Mr�&Č+0iG;��܏Lw�ȥNͲ+|��p1�tL~g4�ԓ����~^J%��0�̩�Z�y[9�]����g��f�c��V�_��X0@�21מ����dK�d0���F��y�=��N(�y��
��
�!x���ڛ�R۰��G�<x}!il�g�A�S�ؓ�r�#��~*9����?�0��fy9���^���=�J�M�W~QN;Fy�1��ۜT�_9�,�Y$����9���ϴ�ܮX3Ȯ�|X�E�?��.�����,3�c��2�>�n��K]7O�U�rys
�����ҽ�r�2�^�9���<�Nl��NI�qUeXef"�LJa²����iG���dx�Oƫ4�g�$�7�7����q�9�B;�'��r�,e߅u%]����P@�ל���g�b����g�f�<g�8�;��ʑ�.�[���������(J���&�,ca}��7 �����>��)�������.�َ8��:}�s��}-�76�7��m�G���;c$��}8��xC÷��O
�ɹ@o�E^;���ު8��A�䝮xx�H�|�^7��)B�p9����^_[,���F���d���1׵{��2�6Oؖ� u\1��:��^��~�
5HQm�F���tsc?w6ppN:�\ӕj6���Ϲ��C��a�6Y90�(��Ϩ���[���>`ۻ�e�}�|��y?g�[1��R���[*zm����
ͺ����_��")f�B�z��<c�j9�����a��[%���7˖�������B�6žK��-���9y{���^��n�$8�?���d��2�ߏ��w�����u�Ɛ�vw�FY��\�?��G�{���SV�C��r���ʼn�2z�}9<sR���wJw���)�I8s��5�q��Յ�ВHT�|s��{�=���sNo|O��Mw�;�E�ZH���>�'���T�K�sKc�[�x$�U�y�kn�xQ������Ry�H��TF	ݑ�O^�c�Ƹ�q�{[o�7��fP�]�<�`}=��/�5���:T��P1�~݀�ӌ�x{�Ĥ�������,w
�2��sn�s�s�A�C�	�p���QH�<Ay��\�Wb��^���PzW�A��}�kv����S��8�g��q�X�������/��G9�����j���'�e-b��������z~=*ݧ�OB�h���aPp���=T�:�;⼽|ci�2�D_�wU�y?w�"�E��{��K{��
�ų�;��ޙ���̨�=F��ƾy-���$0ݑ�� a���,�7_%�h�v�I�e}�=��Ҽ��%��ЕM�����u�O�jY|W�f�>^��8_|~�
�����n,�1B7v_@pH��קZ�G䅼
���pǢ�eGL�:Zr>eM�˖�:pO�6=}id/�F̪�x# ���~����^H�Y�AV?Ԯ?O�8⢴���D{�R�+7��}F3�:t�*?"iUJfFS��ǻ���a��f����8�pA�30��A=�q�q��^�o��$v�mT�nXc�~�`qN��f+�J�S�'p�s�>���-�1Vv�&U�rT���<u��N��Hج��[rƨ6�p�҂u�{�U�ěWky�����<s���G8[pˍX6y�[���)�$�D���]�Kn]�I��|a��ŏ=6F���&0$G;X��x�#�K�YQ�cە�X�v玙��r}��mo ̧++G��B��^1��*9\I��F@�W�����^)�ۮm�˵���N�t����'����������ױ���w�O�|�p<��P~8�1�Ż��2��T��l�x�u��HP�O�#��d��c$�A|ňY�`C�_o'
O�O�8�۬�<�{�h�B������>���Aqok<i+��#��#����d��ek����uI��|��(�{���"�
�h흸�q� ��V"�-ĭ�w����nۅ�N��pi�f��#�?4)�W� �8<tϮ)m�2����͹���0��Ǯ=��4;�XFm�h�HrA'�����Sn�d6ۆ�����\��\�ϩ��໏
ݍ�@����N�qQ���,�Yc����d�q��i�m ү��UM�T�E����qڼ)<�-���C.T6�x��A���J�t{v�+�"�d�L>����m���w9�^���/��t��y���D�t��O���J�0�#
z���e9�y��B�F�i��=�}���>�N*��2@�I	P�N�1�9�H�O��~����WC�������&1#c�̭���O~��������b��z��+u�F�O����B��{���z+�Zx:�Wl�g�?�a�K��|�=KTެ�,`y�O���=�Mz��?`��&���5ݎ��#��J"8��7�
}����:|	g�������"�P�S���lT˧٤��F�ndXԶ@���;�k��kZ^�_�����G����
�4�����W[�3��[�=8A�����wŸ~�N�`�߁mlU[HJ�,y�c�c��F9��P��Xmܑ���A�*{m��A<�W1���9�?�pʭJ�ޕΚt�OH���84��ȫ#�po��Sf�J����vZ5#*G�C�5�d��h�rŊnn��rr:~f�Y���E�s��i���q�:�V2�	nj�=��à6Z��E��O�����>�$��snf�q�=s�c]\S�+yw���<�����qR��I���*�T��18�q�<f�a龬Ӟ�#&�5�K��v�Ww��'��Nj��X��o]��H�N'J�LOuc
ǹ~f
�x�s�~�?�W���d�-s"Y��q�u����D#QX�-�\:ƾg�dN�n8��J���
�.v�A�T��>��s�]q���q��N���?¦��dS���[�X\09�w���!M�
9��sɧ�p z���{G^��>;9�A��.�<�}@�{�ۥtQh��&-�2��
7�rO�n������7�nakH�b�*�?�a���Xy��T��Z=hO��V�UI�8�s����^i�r�[|q���G�9�$�n;���tk�ϗR|�<�X6=���Z��&X�)����	�I8�H��yD9�srh�;��A�S�͸���G�?�Mo�\��o�F�U��<m�����;)onf���®|�
7oד�ߊ��l2UL���.3���^�q�˩.F��ȳ,{K1Uc�О3ǿҕ������a�/<t'𭯰<�tAs��/���|�8�Y��N�0�v���d6����	�ޟ.��&�n��媶c�p.����CJ��nff�[����=+PZ�6"nW�#2q�GN����Hnb2�IX��ʜw��,�w+ç�*,{8�m]��ϮNzw�V���"n7>e_N	�N����(�)^V�v1�F�Ng�c��l���jTC����~go3*X�q�;`q��2��eK��+}=T2��x�A�����dέ����fH�S׿ �vV�����!�&���=�=q��v��Z^�]3�5&};��U��/t�I�b�Yr�����}8��Vk%��D��e���u�C�k�x�3��U��
��~:�����`ff�M�U�l���=z~��m.��6j��ٶ�����u��B�e�ilg�
�F?�g�<·@���F%h�f�t���?�I�;2�]�7ȿ.p9�n��VV��U�юt�ft[�>�U��W�O�[׮s�ҿ)k[_�,A�z�Ѕ#F�e=�8�ی�W�m��w^T���b�жq�qӎ��?J�����	��Һ��^�
"���lg��~u�d��ws���,cʻ����J$o)#b��̹o�\���c�2.w+�]���c�_Q���܁5H��c]��p:����[��.#Wc��f�2�t�8�������r ��JD��).�q�g#����I<�L�O_-n܎���>��w���&Ҫ�z0O���z�Sn[�F;s���^N㷩�����X�f�H<�g�H_a߹�H�ư���a���O���i�<ȃ��ͺVV�<������L��1FQ�e��b�'�R��u��*�˷�	�~r~����]����_,���<��>��hCl��G�Ǐݯ���G�3O�YĒG#8%v嘜�ޘ�2{޿��̭ϗ���|���ҵ,�,*���#
�!�?x�}gۜ�؀e_�1�~S�s���^���9����o\u�׹9>��"oi�h��G/̭��#��O>�{w���xsZ�-��J�.?��cҼ?H,��w���0���ӯJ�����x_��Ż?޵�?�1�]C�c!�<һ���͌��w���b��b�n%]�B��m�d�����{W}�<hy���_�ˢ�^��[h�\^J�lz�f�}G�]��I՟�=�N����ܴ7Mg����ʑ�x8�;�_��iφ��ȍ�\�e鶑���m�@v��|����j2感��hzR^�G�+�F�m����v6�8�Þ����/��(��~�<qq$�ǥ�w7s\|��̤c��?C[v�	%�{x��$y������q�y��3�!�uk���G�c�m/@U��w7)����c=�L<}�E��;���x����_�A���?ou�6��'�Ġ�%�5�6n�n�?/�V�s�G_^��z���쪶֑n�����p>�f;�Ic�n�%��c�=;b�Ҝyb���Yh\6���"Y����W�;N{~]���ϔ@D���	�w?�z��>�H㍥��s�rA9���L��Oiy���[��1��w���$o��bFo-w9�V������*\B�
��)e����?�4>He�ˎ��[<g�@��nh$�d
�ċ�Ǹ㧷�A<��ؐ��۱���q׌W���G�#�?e�w�CU[%֮��"�$fW�s�F�o�3�=�|{ד7ȋ#7�l���_��_+��Nt_�8�n�����{$s<����b�6P�5Vc�	-&`ޙ���'m�%�.������x����ht[���X���g���)tW$x {d��X��{�-?Tԡ���wu��M̍��.���y�ی|��C�/����m^mR��hg���Q
����C�㐜��߇:τ�]���C{k�y��[�<4�$na~b�g;q_��RS����Ɯb��4�/�ק��:tϬ<Iwk}��i2Tř26�#�����	��u�����áG4m�i6�$�Q����|ǵ#�ۻ`�T�3�G�t�n�I��i4���u–�{4ir��_��9䞵�x9�!�w:��&�ЫAo}��l�Q�b��B��0$�(Nҵх��l�^{�R�t���ύ�П�+&��+}B����H��8��Y$*�_�ry'������j_�7W��Y�ef�5�nc$������ۊ��n��K-E���?۵�c�jr�bKi���F%V��Sב��*�����v��|)y�y~\k�9c��G �m�99�}+Ѕ����F����k&��顳�_�ZOunc��=����՛
q-|-�i�1ykx��X���l��p�y�j��ƿ5
:���)�%���m�t�n��bD]���UA;NN:J<�xS��m��J
r���D��5�?6C��n�� wqZKގ�nU{�Nz�->�x�^,bx�Y�#�e	'��+��ᬦ�Z���Ŵ��k���Ȍ���|�89]�G���k�_���c�Y�J']3No��
�*��yq�	5s�6�!���^��^Ea���^�af�!Y<�;�p�p2~Rs�)J1q�f��N3������#��3��׍�'_�W�uO8�d1�m-V��Z}ρ�О���#�nЇ���Y��y4H.���E�{�Vv��2g �n\�
s?����dx����-o5�\���qP��0�w���{�^�����e���OS��6���f�->(��wp�#��?�\�MJ
6���2t��+�⟖a��}Z�I<�.��Xa�����;gs��K����=��~�n\G�{9����LdU���~f��۟x5U��]�d��ĊX�lc���H>�O5��G�k/�?w�ٝ��|J����*%����1��O�ѭN�%_�x?��W�]�H�&��f,��F��3��1��"����~�����!�t���m�!#�
��=�\
Ɨ{m"��sL�^�kw�P�9���zS�=FMF�L�
W���Y�0�'��1c��rK��`�.��jn��s\F�j�t�꺟N|��&�<�ѣmǨ�3��ۿ�ß��Ԯmmfo.FuVa		��$g��|�;�kq�_
XMqggo���D|�oQ��N�Sk~0�{D�P��/�6�2��9�C�_��jU���n~���
�4�������[��T�C}�t]�0P�9oǾ�3Z�<[o�� �Y���Y#W������zt�~u��imY���<)i6#1���a�S�� �;u�W���߶��K��V�ǥ�vE��B�"��SY�?2=�漜F)΄]��C�2���T�^��MOZ���[;?������"H��e����lԚg�
C\��i�[[���S�W'=�+�5����jMq�s	~ϵ�08�oN�=;f������{��m�U�����T����`��G��+e��:�oC2����$�W����1��ķW�,"l�L�����{�9�^��[�x#ៈ<k-�#�t[������fRI�8x�:���&�>C{�?�.��O3�v��9�)�1ך����/���S�6�[n�W��N@�6��UW�ya��9��2+��y_�?)��Z��O��#�r�D��$�T�ݮ.&�͹�<~aVs��~s�c�ƺO��Νŧ��%��0������=��׼�7���rI�k�!���7�*c�G���q�n�5�>д��㷋ɽ��%ć���q��<���:�%vy�1�$\�1��=�[�:��9w�269�̓��H99�'��7�5+If����k
����wB{�y���d���������}5�J��P�;[(�|���oP�=@�J���t�rx~'�Z�qwk_�K�^p�.	E-���u���������[�	��k�7��ۛ	-�k�[(VU��T���=�\~|��Bo1�����˹�0�ל�N�翳!�.���M�h-�_jڵ���o�O�����H+���b�
D����̬G9�=�y<׉�ֳ:(�.�yXd�$��9���yg�k��|n����vO��:~�n��9�7�g�3^���I"��1���ǷR{b���d�'�Y?�n!_3�~"Ե=Σs�����p9��0�i�E=d���N�μ�Ul(���o<���8�����1��)c{B��;����/`��"C�e�r��|���e6�F����H	Q���+%��k�Ƭ����ce_�����8��zu8�K,Gh���vV���u�`��)�!}���F�%��a��^3�I��J*��5���9��i_�Q�K�M�,�c�n�9�מ@�sBIl��?���N~]�g>�������"��F9��׊K�M����e �S�t��y4�I�C$V�-ŇF�8�J��̻ .��ܬxǠ
�'�W�yV}�L����z��p}����2d�Vʳ*����s�:��gԜI�ѿxȻ~a��'����֐,nL����s�8<��њ1 �k�
ۛ�'��*��"ٌ��U�Eb�2�m'�OC���-�2�ʒ1;��v��q��=lqޣ�[t���7FYT!!Ԝݿ,�\]ƳI޻[��қ$�oܱ¶N�두;cO�9N$��h$�Tm�h��t����GZkL�Lr��c�rz�~���?�BӲ
��yq��R2>�NA���x�蝑��I_/?7��ۜt�`�LҴ$H�z�у�G��P��m$�<"��@�Ӯq܌�4�,>dN���f#-�!��5^Y����p�(�r�9X��s�߮;b��lj�ȭ o�P_9�ۧ=��ҡ;n�d+��v�d�'��~U�_2����a�8<�r:��jY$U�f�-+*�\��z��~�o\Ґ,�f�cFflg����g��dI3\���q��9�
����M��7L��� �x�=1��?�ba�hQC��đ�w%���~��1�!�!�l���'����B3�qM7�ò1�YrۈY��q��C�G���g�0d?)�1�zrs�s�2˼��햹T����ǧ�t|��|�]�7w��q�C�8���)+8m�{���29�^8棸�
�+�VX�<����f���H�sn�lV��:���4�ر�L�T�}�T�b9��֣�>{N��a���d
ۏǜ�Vvdo%Y|��Sʶ�s��Sd�]��F�;*ppy'��~��n({�Y�b�ij/��*���s��=y�H�e�/���&w�+r�9�灴t�j��yo3n-�R}7�3�*��@��q\���Rr3��O<q���Dȑex&g��+$�����zw�tsĒbve䕑X�����Y�0�Dm�.��������)���q��FN��H�t�L��St8�XC'�R�?2��6Tg�����ٕ�a�4O��n��������d��ʻT�Ƞ��'��G�MmBQ4e��݁2��8o�=O�6�\�ˉ�Uo:_��7,}��=�S���
�v�<����G���8�1���wf;iD�v_�m
���2s냞��9��m�W=���W>��ooj��-����*6��M�es��8������6M�|�bz�������J�I��ht�-#g�rN�b9��5�m���ps�Ͼ:��Ur�,L���.7H9G�1�d�������@Ӭe�^h�@�U��#��*��U�i��;���1����G��v����v����c�#�u��J��ĉD�4wm�U�\s� ��3���6�0I��j��s��c���Ip�m�v�ue9�����0:g�R��-���J�����F}��*]�Q5��n#�:�v_���9��О�})�R��1`�:���FT�鎧�V飺+享I���;1������5��k�m�u�&F������I�a��Sw��Fd��ca����Ҥc�;7͸�]�y�8���u5^I�TT��8�v��?�����9�L�›�����r�{�I,rI�S6�;�b�zs��qT��8�E��h�wye���&��1:㺕?){Ձ��ȭ#33eVP�f}�;�1���B��dR�7`��\Q���7E�:M���]�%�+�.���v�v%��#��4w,�K��F_�y�x�����[�E�đp#
l�N}89�1�I�ܪ���|��$( q�~	�9�kA����V:?�i�v��?*�����
[���bV�#mQ�$�����LR�|�e�j��@'�!���϶K�H��C�$�}���h�I%U���yI`x����2l���Uw&���끓�z�d�#��>Q��oː0;�A�z�)��")�Z5۶P>|�s�v����%�.���W���^Dݵ�=?��}��sZ�L����0��z�y�Ͽ�Zku�7�%�21�{���~I!�,
,
������g��c?�r�F[3�<�;���?f̼�%��ԟ^��s�d����`x~%T0RP)��1�����L�S,r���/t\ɖ�x�?Lv�$�y�l�w��u��r9$�3����G,N:��_Û��m:�ݿ�l���A�z{gF�z�;&�P�iU7H<
����ߚ��yh$V�Uw+2�nC��M�
�aUN�Um�<��6��ҏiR=AF7<���a��<l�1�i|p@#���*��3�`��|EH�&�|���=}:׭<�H���vG��8���G4��:�pI�1PϞ[=	���z��pg�m�<ɢ��_��A,Frބ���M,*���2��c��=�Nx�N~��@�����f�T�>�;�8��.$g�ɉX�)�^A�q����4{�tqH�v!ϗ���x瞃��p:՟,,
�ܪ�ƹP�����Nx튇u�+"I���$!N��x�8;��٦źX�Ib�EU¯?{~{��I8�}�\)1Kl"�G��8'�;�(V��py7�a��G�x<��B�����;w(��Q����1KC"�S�:�1�+�Ď���\��w@�O�mP�~��ߠ�H��Y]�Y$���s��9�l1��X�{B��1���z��u�T���I���p�H��>ݨ���O�o�,Q3~�\
��ÿ�v��	Z0DQб�۔F=����wR��Y��\��'��<q�()* qr̩�ULax#���.df2e��fQ�*��F�s��6�M�y�$,#Y7q���<{S�I{T��팷��$�d����:8.2��\��G�2�s��c?��j-e��-�<q�8�}�br3�3�3S̗P����0T�Y28��u���_>+x�a:7���7+-�0�$���<ץ�o��/"�?x��Oq��O��S��?.��c*�㱬h֟CÃ[�e�ܭ����+ն��wA�|Iw
���j�y�v��2:dg�����¿���	���Ԯy�ڣ�<*?Lt�@��`�-��N�!��?��kƣdaG�^�5���h�e���τ?d��!�k+]?���E����Qԏ½K��»+T��^���#|��g�v褱��ۊ�(�#�Y���������{�ƍoy;m���{u�g�օRR4TccxK��з�<cf͒��������+��g�d��Hݻ
�	�Um�~�\�l`�9ӧA�{pH����K�weC/byz>��kJ�e�����<�p͕ڪ�$����֠�C&ە��J�n�����\IUQ�\�e'����׿�P�a�c!������9��EF:��FWdr}��c�=�s���Q����L�#aUו��0��#+�V����D�mb���<���>�b]o+0�іEs��c��uɬ����\��+lS)�d����#��x�ґ��.��xP���g8�֌�,�o�G}������$����ҝ&�y+!��EUڇ'q<d`�����?g RE���������b��x�4y�2�UY}��ñ��y<s�ZM:2�ҕUە��ӓ�}0�j��<�k���x�ݎA���Gzj/b�?Ѯ7+23mb$d��~?J�kq��,���l��Ԝ�g�3�����nJ��g`��yc����I
���Q�G,Ր�s���oJ�1d��4�X�çF�1y�b�u�܎���⑤y�=�Im���8���SfT��-
nf��n{z`�x��M�s-�V����6��ߏNO�t���b[[KA"�$
�/��~S��續��ݡ����)o�U��:�q��Z����[��ۅ��p9$g��^
L��
��ڠH�0\��}�h�:؉sl\K�s��R�={t=���L3l'�P����D��LWN���W*����S���FTa��`���>��<V��r�ϔ
yS<l���q�NF?��
mD������?(��=iU�1d�<�e`�pF���ڑ���D�i���G'�s�1�A��- �y��E�C�9ۂpz~�ӽ���,q�7(oЏN�N�>���21�����^@�Q�c�Ko~b2(S������I�r>���Dct)G���{���fHœ����1���E<�,�{�nnj���Z��H��,[UX�R���?_�A���h[���q�n:}9�G��Fr3�ҕ��G
�n����ӧQ�SI�������Vd�ǯ�=1��;3O%���9���|�-�8�ϯoΨ[\KpKK*����`99��=��S*q�W4��i�nM�Av�;U������E&��Z�,��o���:硭d����mf�HL��G��4�9Tm�w����Ӷ:{T:i���}+��[�%�|������M�^͟ n�1����&�tO/ʉv�?+e@�}��N��X�rʶ�$���@��#�A��n"��cm�dg1�m�wo�{��ńrI&!V�s�W#t?�Һc�3$��k1݀by���P�gl��bc�hX��2��~��^�jH��U�yr*�N7�?\Tb��+D�2���78��<�@4x��=�3��������Hb�7��F@Ǯ}3��2���`�`� �c9ۖ��^���󟧰'��ϋ���9��������'�bF:�=��U���/��|#
cZ�YW2KXĎR�p���,{u��_�;_��~6x�T�H��b��!ğ)�*���n;�}��Rh��J��cg��<:��I&=����`cx�B���\�و�6�cП��m^ʓϟ��8nH<8�ꋉl�j�
�l��v�ھ�=ϝ����w̥�2�^:c��>���S#�8#0�2�����dz~?�)�����.�۹�m%~^G�߯=;:�,�ѵ�p��nH�s��j�
Ӭ,�*�H���m�>b}^�q�!��5x��v��׾z��Ny�s(�eE��ƃo�rϨ�9�h�H�O8>�$!y� .Ooq�Ӛ�%����_���9~~u����B��0�i����=��y�Rg��-�0�37*��3��t��-Rf�8-�o1��&w�rzc�����t˒.w�s�0`fo��t�?z�_ُ�<���R�'K�Y�˝B��m���w ��S$�ry�q���?�/�gÞ�_����C�ۢ�[�VY����a�~�Q��%��;rA������x��Z,�e
 x�V Ajl�����Œ@�c�\�I�|�ZD��T��c�,?b��'��o
\�ؿ�Sx�]�����$#�	�y1�v��Si�?��E��#ie��~���y"�q�Ϊ�����{�OQ�{��ƺ��A-���4����1�1��k�?c+)t-Ӧ�C"����={~x>����o}MiT敭��8��'x?ᮿ?��Ǟ���n�l�u@�|�����n[�Aۚ�/�A��𜉙l�h#�F�$(�z��'�x4��ӵ���[?�TZ������"I�8��z�<��r�
�{#��dV�;�����ۚ���%o���V�fWo�|ܞ�3Ϸ���\����~�?
| ��=S�^g͟&��7# ���q]c�$h�^+mm�0�ӑӚ�|M�{�����0���=/E�M�h���B���up��q�r2�s��a͊W/��%�!yL�N��#���Y[�H�����ճ��z�קonk���������|%�=&�O2}�R�F*p{1ێ��t���M���Ѕ�{c�{�Ҿ�๸�M�U��U�c�c�����e�L�3,����v�'����ֳ��5���u۴u�s�};U���r�W��w4�8���a�c�f)
��򰻎�
�s�>�*@��i��D�–;OϜ�0;vө�j{��"f�K�q�;�;�t�S4щ<��޼��o�#9�$Fѐ챤�����zҖw��FT_-��s*�q���G��#��dR�<�<y�@���xa+mG'��F�y�}:��=�ю�E;�'H��x�:�h�hd���F\/>ٮ_^��S�Q2���G����6� �~~|ǮF?<c�S.L�̫�O#���Z@�&�$|`���=[�ד��㚗r[c�uo؛�Nմ�Я~i+lW�I\�Yr��Ð1�.G�޷����o �
?i�����e����F��˜d���<D2����F�~e�F{g���)���%��������z�v�R�Q胙�>���	��$���|Cf�3J���]�£�R�^:s�c��k���/L�������/ ���-������9�=q_|��3���H
�������F
�/#0�z{��8�����#������Go�?�.�๼7p�CMeow��5�	��$��Ԋ��2m�-�ӿ�F]_<r6��?V���no��f�^��`�D����3m�6G�\��i�[�R.�wmnGBNy��T}V���v~��o�E�]6Oퟀ�&�J��3xnI�P��V]�x��+��6�������d��
���4{�}SA�<-,<�+�@��V&Nr��_�>]�k#��UX����������j����Ip帄0'�C�9�֡�-.8����X�Y��_�Ƴ�۪�k�cX��h��g�Bܱ�:��p6����=�����-�$S���*W(��c���_�^$�
�_�6�Zx���u��|�������$����|I�~�&1����C�X�t�&�d�ʑG�b�8�{u>�8�,��ʦ���?J�N�&���G�����a�f{;�P�ڜ֗�d.6	PF���X�;q��t85����$G�Y⋅���4�<�.���gؠ�����:v��p%������3���m��
��*3��#9�s�U��%��t~dɬ_N�!��q����ă��r~����cF���;�Ͱ� 8d�1ӡ'��'���u�)�o	~�}����J����=��ğ�D_ڊ��|s�Z٤��4C�n̑�r\��4j+�N3v<�D�7_�I�k�v���'���#�\� g��ῌW�
G�ҽ��w̆��K3BWh��$��O\�q���g�k�Ϋ��o-f�o
��ѹ��H!`s��201޼Z���k�����>5X��C��� ,�<g �s^L��u\���#�hgucG��߾��}�;�KѼKa����ҳye%���\t�<������5�|g�G�?�.5�5�գ����x^s3�+�%@ �*@��x���ω��i/
�ۙ�,&��I1�n܃��`s�^+&��CV�ՠ����7���Պ^AgR�\�Γ�v;�y�@9S���d�z�Z�b��䏨��qz3��~~�;�����u��5����jK���4�1��Vܰ��2s�6/i��g�<
��_h�ϫjS]lt�^0�x�0��1�	#��/x����|;�o�R__y��J�fy�+]�4� M�р~���5�-K��O��KR�&�����O�V�a��
�¦����Wcy�8zr�Z���b�Q�Pv?_?f-}�v�n�r�;��5k5�r(�f�<�;c%�bp}���^5�4�>�ƥp��^K���WdI��n�9����-�b��X-K��G8�P�q�x��������J�<>��ԗO�qu�O$R���p��	<���ь#O�h�c<EGg7�<����=�.����n��	�#9�m��#�'��J�<)�t뀺U�ά�(#�"E����H鞇�kε_��5��R���h����
�(Nw��+ؚ��|8�ׅm"��u&��j�^m'q��3�����d�kg����r�|I�V�X��>�VG�J
�3+(*Kg���*���ƙ�4�*)#��l�MST����t@�2QԖ
��}r-�/��-�q4p+<���''�W��8�;�"}gA_�z����u�E�qU�D��3�6ϧ��.������G_
�/��S}���|ӷ?�1�=�	,��'<��O�i�`�+m�W���=9��m�^clq PFҤa@���G�H�5"�
�\���ʩ��ry��_-)sI�3؊\�#����+�|�7��5��pc��Əj��9`�q^Gc�4-���j
.����;[�dn1+�#��'�滯چ�^|:��u�Tox�M�)��F� ����{�5�?��߈Z���so>��a�*�9���:SPp�����������Xo�}FՑ���b�pI^�G�oX��?�Ym>!X���,���6�F;b�h��n���Ĭۈ�|�)��G?�f��:�Q��L9���ss�����3��9R�"�R�S�_�X�Yx��t�T+v�y�#��tc�Z�]EspZʓ7H�IU���vu�+����-��_,�<c8�>��Z!�5�,��jW����C����q��O��a�%��.\�#f`�y�_^�l}=�1�{�I������o~�9�|S��-h��i�u8�<�!e�#��ǭk���㞘���M:��Mլn��L����j~�.�{e��ݩ�ۉw:��
���#�'��Tki �V�X׀�#��q��=�������s��7�dW���(��'��cڶ���7Ĉ_�[����2R����9��~�je���H�E�00�)�~P�}3��׎G�Q��7+�|���#�Du�q��ׇ�~�>��X�?j�YD���x p>�q[�›����w��Y�%�u�=B*]
�ب֦���34f�YO���V�m�9�=��y�H�~g���$�3�=�\t��R+��?h��wΰ�y%�yq�C"nA�)�ϧZ�4�~��8t�in�#�@�8�9��2x��*]:�PsE�
�̅�e޻���&�9$u��2g�@�"�?�T�d㟡pG�Ai��3��u;vܹo*def��S�c���1y�F�?��c�0]���;�Y�W,����2�D��n�=@�>���Ӧ>tlHa�~]߆z3�:�=2+>IE��
�s'��g����0�Ϙ#�s�2r9�過lt�dr��w�!P9�H� ���MzQ�ѵ��>�t��Q���a��6f�K������B{wjO'���[w2*�$� ��9<��t4�<�P�Y��<�<������=Aߑ�2i�_jB�H�hU;���nx��#���L!I�$�Vb�v�b��1�w��i㍼�'��0<g�	��$��F8J,Q���(��*������s�K%�
���i>Us��<t�R���I��/�򟟞�����~���E��H�����n:�ק��dh�Ɨv��F��m��=q�)�W0K.e�(��~Q��>���]n_�S�j��D���`q��Uy5ۊ���Ȫ�/{���qԻX��/���6�S�co��8���=i���Eve��Ͽa��}=j���LD�w*�feǗ�ǿ��x��n��]��-"�/��1�:��ɊL��ɝ�d'i�F�#��;g9��4��)�X��a�v����j��ٍc���&v�{Ӷ�8�zqE��Hʆm��ZO�����L��S`��)�L�I)��m�clr9=3��桎�6U�Z?�6��-�:zu�?�9�u�:�a؉:q�Ӯ=�ׯ(Ff�T:�)��r�1�z�IG�qغnĉr�6D�I�s�8=H��҆��,�cV��qec��yd�A��4�71�"�G��Q󃌰�:w�=���_D����W����>l��N;RIo��RI$��9�8�=z�LzT�Inb��$�]�.1��8���PY�Џ�|��w����x,9��L[�m��eR��A��`��F:�}B�rK�.�s<�Y�1��G�q��
:;�R	H��H���@>��Ў��1L��-��
x���jH�!�n�8�q���!��rrH�Ӛ:ع#O�C���#�������4כ��\o\��3\�8�<g��^�kh%�U�����^���{r)�ʁ�F�F���w�{��s�gmJ,�C\�8����0O��O#>�9�g�-��_'v<��+
��9��R��Ȏ~v�DN��#�\瑓�3P��� G�\ڣ*v��GQ�2���#m����Un��a�H�?ZB��"�4+|��1���Vi,�d��k�3�w8��Է��M�lK/Q�z�t�}s�jd�[�V��@����r�=�8ǮAQ�-����pP���I�q��т້�����[' ��GJj�325��U��ml(\z��#���̨�RzL��yf��P��y�?�~��nd�]�Zd�z�g�A��#28U�F+��$϶O�I%�c=���Ty��c�v��}(�pz���߬������#��ӱ�ւ�h��o�hۃuO'�5��,+�g�24L221�z�uǷ3Ms���ya�R�!��	�#���{�K�y�İ���[ ��SǭF�VVg*2��`�}s���֪Ky��}�r�H�	�s�=�L
Au�����S����q�\~tXI�}�y{r��a��9���<��d,p�t�Yr�y,pH��n��r>V)����'a��N{�<t��Z���b'��~P8�2x����Uɠ��.��6�S�n�����*i-<k,w2aI�鎇�?.8����2��!�mÒW=q�1�n�3иu۹��Y3ے6�p:���i�[3Ƥ\���Գ(\��n8��5�	���c���2>^���=걺�L�k;y�p�#�y
2:�۵9.�x�fP	HĀ��n�\��P�a-��F0=8���Y$a�i���9�8�ߏ~*(e�%��m���+zs�s�
r;�v����`_q���<Q�p$[�|��-�����v�}O�������ڳ+*�̙�N��A��?��Z�P�l�.�ur�N;����N��4�)�V���0�2ǧP>��!���M��1�pBΨr����Ny�-��P;�V���fe�������B�1x�YUf��{��s��K֚��8��`L��vA�1��Fq�qڨ��4�oh�ۼ�b�	�O'�~�[P�a���w.>q��s��}�B&�2�&(��i[i�S�C��3��e1[.���H;I�����?Lӌn4ZY&�Bt��;�3�Ӟ}��>�\Io�����xW
�t7=NA�9烌UP�q,�l"��&����8�ǮO�S�'ğJ�F���4�b�XLQ�}�Ӱ'�z�U#M{��r���c�8m���U;��;���:�~����*�7̬U�v:�����c����Kqv���_���F��ګ\0*1����>����~i/�z#j�
C�ڕ��r`z�W%Lv/���Z��C�}'F���[-���f#�6����B���_^+Ѽ#�+|`������I�`�v�6�>�7yh	�����i~����ZXĸ��{��x��Am�y��"���U�9##��aQ��V:���Y�~��|/h�%�m�Ѩ+�gU�I~��޵��=����ׂ,�X�����$#8�9��}�V��ѫ[�2�U������g�O�H�p7|��NH�q��Xʴ��oF+�E�ެ{��˟-UF8�c�=z{Q9���J�^F�9��s�p1�y�Zlw~dfg��F�˸:���q��Dw�$��3n�0;r1������.��$�o����G��鎇��Z���G�<�1��8^3����j�7l%ז��;#.[�=�0Oa�Lբc Cm�.�G�9�<���)j;�D�Fm�;�a���@x��@��W���e'��s�q��FI��8�rwe$���=��4O
�a��wy��.y$~'�5[�����I
0��.Y�2e��v���D�%Vyv�l����������X<��#m
�ǷO|v�����k}�&��r�Gf ����J�5�܇M�����I{v�6����;R�e��a���G���B}�I�z���l�5���;)m�����OO��޵"���%8T�`�y�����'Ö]L��YZ�\mI|��6��/��#ۭ(LȪ��+3I�yI�������f�-������q�<c��zU)nu��cH��"�Qv�1�ۧ�[sS�t!E��eu�V������3ӡ��k˛�U�VDn�#2玞�pϷz���n�%ff��S��x#=Fq�ޝ
婄��ym�?�^Hǩ��`�9���5�Y�%���UaS�ǩ9��ls,�,VP#��_3<l�Ͻ1���A�&�N�uN<�㯮Ozmľ\x�d]�f$u�8�<z����-Q\������2��v�
���=�֮�]�U�YF(2O�9
��cJ�m�M�˵wS��:�o�zz�����
���� �����>�T���$3���]��4��3����
��	��߼n����=1��m�̻��r�;��>�L�+�m�ce�1�<�:s�q�]���B�3��~�'��8�zuSΞ#T��������SL��71K7�PE�;�`v���B��7a�!��_�}+�*�ŽJ���Z˃TG��d��T`s��=:�����EvP�$��>\��9@�jxc���&PmQ��ݴz`p:��"F��,��|��x�};~y�x�0DJZ���p�U������{���Z��Vuh�������}�s�9:G�GQ�q���sԃ���'�{���ْ���o��~Ƶ�dsjSK�w@��
�T� ��?x�׎1�Tw2���<��q�#ێ�Չ!��*�i���ͫ���{t�x��9bqX�XFw+1.2:�9=:{f�%��x�[E@��
��tv2d����އԑ�8����|�����s�9'�C����QK+��|���E�q��hT��c6�(���e���s����T,4��0l��6�Or	���օ�'��L�iR�'.����ң	l��Y��`�E��=~�*]=G�
�d)��R1�Ԯߔ�0~�4�l�Y uo��N�n����>K�r�#1�x���?����x�x��NZ9��xc����{���aQmk$�ݙ?|[o8��~�(��fs���q���0�z���6�m��z��kk
��nF�z�=zb���О�Oc���2��&b�����-�.8\�ךҞ�IZ(�V�ݳ�E*wI �m�{�G=x�ɫ���A�J���Gl�>#��̭ۀ2I� �xO��;�B�<3�a%���v��p_�	�� �m`�N�Y��|��ƒF#t�)=W�z���9�>��R�nއ��zߊ?koi�l�7b�H����1RF>^_8'��Ӝf���~$x���7�ȁR��Pg#��$��73`�³��,����]5�4�pAc���q�NF08>��Kᩣ��w����~�z���ӷz�h�z;#��*�Mُqiz'�L�R���2�e�h���9������~#��P��R�N�֓7���|��=I ��c���Ǔ��\�'� �O-Oμ�<gןƾ��ew�|M��tۙ-ZK�dU�$��z��#�+�1�cͯ-�y�'lܣI�q�y��'���Es4��C�W�w��`���V�Ƶc5ϗ��v	3��Z�`-)9�>S�I�Tc�sP��)$�-�ޡo�5�e���71`W��Nx�ֈ�m�5ϑeP�!�9'<��ۊ��b�2X3)��p�gq�q�g8�5�si��/x�o28�۫i��C�GB�9�h�G��S�n���<2��F�9��‹�zk3A����>o��t��>�4o)u@ҍ��O�G��gҭ=�
Vu�
���۶o3$n��w�y'�V�ÿ��,���7�~6�����G
����29.[g�c�ދ�R���]#N��%�>д�./.!���KI;�
���'��~+��/���{�	��?ڳ�Ŷ��<qx���y�4�҅��0S�9c2NNׄ��˿�G��6�>��qg��Z������x��F1��5�1öP:Wſ���S�����|D����f��]&��KD������%�8�b7�~��v�V~��I�O���k/��߈��KՉ��(f?e����W�l0�,I끴y̖ql�x�U�fn7('#׎��rxcsO־�$?��c̳P�}�y��?�+m��{��K�oi�O�C^�q�]Ht�d׫������zF����3d�꫁�����H�wv�C࿄�e�?���6$�5i���A��n��jr��,ǰ9����4�hּ�]ZMZH��}GđB�=�VA�Ɇh�Rr�H\�EP+�mOT���SZ�\����RH5i/�H�U�U�
�P/j�_�Ks���c����{7�rA���y�]��ݞ��;mW�/��9�q�麆�q� ,�V� �O?O��o�L諵Y��"�Q���?b���{�I�k�N�?1��7G�	,�u&Pw܏�A�]I��b��ۏ�3��c׎��3_=���S���B�b�,As��ĝOB@{��9<b���Ǩ����H�@e�)PG�l��<��xɛ,]��;Y�i�i�<����҄�IC)�
۾F��s��y϶+'mͥins:���:�d�5���(>t�4J�8�!C�ןn�W�o�-��A�Դ�#eum#\���ے6�(o��z�[�<'��\�Q�Fy����e��M���gr�q��$����\+V��'���j��D�i�:����ƶc�Y���wQ)+�qs�o\�U�_~��CF����32�>����Wq��=;����]]�ZB�Y�-��3��~�ԑ�[���B�Py���ⵎ?
�̽�>�m���Ѣ�Q���ۡ��v�xiW�7t�lX~՟4�#S�gq�M��D���g��b�[�	<�]��*���x'��vF}бb�g\���x�ⷎm��U�	a靍�����Œ�xf]:��@{o�9��\V����i5}wX�d2o۬xf�
�ԓ	Q�{W�9&B��Υ�����ܜuH�)m��ʭH�
� Î1�Cֺ!�V�QD����h����n����fa�I��7`r�:{qһ-�7�5���k�W����*�	�q���T�t]rjZ5��ܐ��p��!����=O<�=q�c�ި�i��k��u�$�����EO_C[,�/�$�^]ϲ��tﲳK/+��y�pNϩ�j��Z��<�_v��JI���?�����w��Ҳ�Ğ*������1Ѓ�O$��*�V_t��#���#
ۼ�浽S����n����9�[���5���y+�%q��u�����T�X٬�qF�ݞ�p?��v�|���H��4��g�Dԕy��~X����^���x�Շ����4��:���	����]R�Ն?ؒ9��Nkx�X9}�|�����r��A,
�$M�r2p��@=8�@��0�a��q��C߽|�k�d|N�,^'���i"`v��K;��)��c�֬?�G��a���ᇎ4� �k���V�i8� ��qXym$M��BL�)�,p�w�1��>Ԑ���s��1;��d��ǭx���7J�u?�+��;V=kO���&h�c��u�xw����U4?���� 8�נ$����[Ƥ̝�@d�/�i!��z��[?�����	`!�������8�Lq�+O�v������;�٘���$��L��>�a5�yFdQ�N�����>��I-$w�-�3l��g˻��ǭKxR�˻��d^��2z��V�yl������w�׌гE&�i+��^O_�������3�YY�;IǯP?������+G�<ƸὉ=3�b���'+ a������zNȦ�YehgH�n@��co����B��c]�ON��:f����4��b2Fq����#��%(kI����Sa�V+h�G8�t;}x�ndz�ckwi5��I�I �����>��ᗉ�6�.�i��v��[��Uec��9�G>����Z�nuUB����;c�`GUi��b�#��1Ӷy����b���s��'�5מIuٳ±���,��l�'�^=���>��o~�����+�_
�t�SE�K�=��떈��2;�po��^�m(��j�ʶ2g��_j�����~����c�җ,:�U�Y$e}�ڿ,�z�=�8���5��b�|V��}�N��lX�t����la~YQ��`�ܞ}k�68�e���\�T� �r�L��KE�G�v��1���[��G��4lϑ/?�4i
xk�zM�3�o1��y{��0psב�Z�/ؗ����uA!�$�iN2z(��p8�y���m)?�vC鞼�锸kq(1G���9���\㿽(�����R������<c�{���شK��Y�r�w�2�pNp2;c��W�,xwNԼy��:��K��їH b��&��
~����2�|��y�	폩���k-]�?��ey$]/B���qڭ<�0�ܥ�=�nk���OȪt=�y�0�H�M#F��Y��	���9��Is?�����ݼ.9�����EnY����}����8�b���EC��s��L/B�~?/�=m�)�������0��Q֞?38����'��2�<��%��E�۱�H
�01��}���
F
g���%����>��|��j�s+���/�V�#�@��d�G��S��c�H�#��k�(�:͙jxk���2�1�}���T��K�'ei�f�POq���zy��� '��>\mQ���7r0O�����[1�rH����^z�����S�Щ=9��"=�ŢIa�S�z��Ӧ2zt�7���[iӢv��w\mPH�q�ߎ���\Y�}�D�ea�?"��H�OA��l���Dy
ہ'������P?#���:]���e�9�s�y�=1�J��%�y�Ev_�l�Q��^��@���"�F�x��0
Z1�1�I8�{����Κ��L��ٔ��9��S���u�0���|:�VlfIكyr}�-�q�'��~5�u�H���dS~7n9�8���K[T��cP�_i^d���j	�v��\���I�$B��BHd�����XZX���NK2"�*��ϿsԶ޼��?焴M��6��ø.���W�Ob�|˫A7��)��#�3�z���]:[�VP\�مYT�lϞ=x�Ф��q]��=ۨ/�X��>�_O��I|�z��ݕ�l�A��sӮ�^��J�UđƻY$U�v�����b�Kak;�����w��~l7'��,O$M��ὸ�W�!�����Vt��C�fX�|k�B�A3`�wn>�=���vb?9�=�KN$���q�{����BЕq�/a2*IӜ����O�2��-m��^�VI�[4ѫo6��Lq����5�k�I|\�l^Mcx�b�j6��O>�'����s��=��|fF��3�<��9�=3�|\�E���"����<��Q����N楗�s�5c}�;�P<R2��~�ζ��l�8�
G�Wj��o��.Kt�(8�|�Dž��LYd�F�4�[��V�����)�UھXPo^s�}���{:,��z���k���Hu-N�n]7�	v�t��Z���O|c��\!R�3[6s�@���ߚ�k����UU�c\���z{�7�g�P�kl<�=��I�9�C�ѐ:�6>���w�5h�J��&���2�I�zq�Z�kz^����o!fdk�*��ރ���0�kqi�Uv�Ǯ�B�6=���T�h&q�w�q�`|�)�g��/�Ǘݑ^�Q�`J�<>q���R�V��0Xz�{�J.��sno����w�9Ϯp=9�)u��%���FŎ�.�-��g��s޴��+�W�+��B�i�s�A9�ry�5��Ϲq�wG�I$�k��uO�j���N@���:��p��,R2?�������zWΐ�{��f7�{����Z��2?z�c�Mx��wjz���aP��=;�?��O�jvZg�,�H[~0��F@$�>��9�aŨΒY�i;��'�N0}�z��Oڮ6�%��{�aF��g�!Z���o���;��+D$a�;G9���Xj��5#}�RIq���VX�.�AϨ�^O|c��$H� �ۋ.w��מ��A�A|7�`�WZhc�#q5�^���_PkN/��
u	��o��H*7ɷ��'p��5��Qn�=�zH�1��!�cܝ|�ƒ�c����I3y���S���0x�~H���X�� �5E�Y����m��9Ԓr@��W#����ɒ�i8Xd0�,��ۦ3޳�eخeдn���&4a�'��㚟d�)���H��Ď��rOjΖ�dg�fTV\������8�o�����ѕ;wu�88���/�j+ĉ�V�r�W��8���5��&Y�6ˏ���L���5DJ�n73�#®d�����֝��yg��o�	���q�u�{��X�m�هvY7���_���e���\~��s�?���08��3M���b6m�?���1�ӏ�z��QUͷ�s�� ��h�����R�j�?(�z��LNJd.��,�L�rs���p$�F}���w�VVf��'�'�M����D���e�ʀ�|��ۯ99��éyJ�,������'�=�?ϭG%�wh�B����|gh#����������I
��	F=���pG=���%�y�AV]�dgӁ����=��mE`�n$�qX���8=�4����q���c���rx���gAw�G4k�F��������:�w�q�3)�lX�H���~<S��W\ȱ�#��#fRr?����g�"�W1�&�ʈ�m���O�#�A��Q��x��\y���rNGLϵA5�(�p$fi6�;r1�cc8��F������6���8��P{R�eD���2HR3��|Ï|����J�����[tg=��H<���B��ab�G�������T��.�	�ѣf����Q8��U�������1���3��9�T��bk��%�F��[p����i�7;Cy���7�ӀAǶ:�c������yb�$ʶ�U���p�:��Is4��h?��1��>�<c�6�8���N���?��i�FW���U_1�Kq��d�jR��I�[�w�<آ*
�=F9�9玸��sJn#�S��3�.�=~��s�ƫ3c�Λv�2�0��8�?���w0=̊�6f�H#����Q�-��m�VU"HT+3cs��q�s��Җ	��Fй_�*�o�9��#�Vz�}�N^5��¨,y?��~���'��
�Ve�`�����2�X'��5ãy��J�����O���t����v1�v��3d�sל�t��E��M��7BUJ�9�t��E0��/�f����~�׊%�1�������$<z��OA��s\��K���UT18�\{z�4�b��FVU;�V���q�S~޶�j��(��^�3�֧�.y�F#�g�n�l�y�?�������5=n��t����mk3�1�d~=;⾬�w�����y}�ϮI��ڕ��8�i���Z�m�O����kg��02~��O#޼���~¿��C�������P�5
tx��:��7ہ��Nz�A5�~���;go�x���W̱�ǽ�^J��I�n|n>���c_0��˘���(�2GC�OJ�;Q���`K|�0�>��<f�������4(��7�_ៃn�����o�u�]���g$��1޺it�M�)�A��g��t'ߎ*�Xf�r�7�'�:u�:)�&G�6�_�U#�;����8�w'y6j�ݑK�'pV����Y�
����y����y�i���/=ʀ8�g��x54�F��2$��|=y*H���G)Vl������;��j~U�
�(fzc����ҍ��%�U�H�ӓ���s�T��9Ye9�ÒFx�C���I�@��ȹ��+w�g���GR��3΍a0���Wh��;X�̑}�b;d�q�Q�}G�:����T�Y$k2x=0G�zlVVe�i���㟯#����&�XAiD�4L�>e\�1�$~��ҕ���2���*����9�^߭M���O�h�D�x�O·��$N��O
�G#�����4��@��Dh�>�ʹ��� �9,g��eUU8]�x��ӞOj�VI6�"H���<��<�x��`a�7�[w�9@�8�8<��(Q��~ʖ�&V��˸æq�>�����4�h���)U_�v����'�*�R�������YS-�������A;	�ˍ��#(�9�}x�_ƚ�Ü�
�[ʍ%�,{~�1����$���L�/��b7`�c��9���Y�v�C+62pO\���ϵOk��g6�g���C���{��kh��G��P���P������͎��烞3�NVK��n7+�F8�9��;��m��Ą2�V� m�n:qHtIe��EW\��$�pǩ�y��^+�4jt2��[�v�Z]y������\g��z�m�Z5Ve|�����9#۞��RhJ���y��8o��Z�4�o/jH9��ݳ�SW�kE��"U6k#nI�hՊ�G���'��Jlv��#��2�[�i2z�A����96K�
��73d���{��}y��;@d�uHZ@�Y
���;�~��eR�.m��7�*��,��vO�׃�S�d�HmЫG����:n�9�8�缞h�vߵ��e�s׏z��){O�",�bX��댎�q�(Ȧ���7�e�,d�cR�)��1ׯ�	g6�݇�����ݜ����3E.��X���y���9��"u�,�$f�� ���=z��fg$[Dܛ������ �s�EL��(�P1�T�����5
D��	���P6��~�=ԎqVйI"	��|��s���?�DI&��#���V?y��y�z;�*�<s1>[+Hrʧ�I��ө�*�d��L�v��x�N	w�N��ZV��ڦE�|��n?��]T�c����0�۹nN=����׊��]��m�Þ�������7�sVS�۶��=���f;���H�ef���qۏ��]�H�w��L�m��s�${~�3���q�ۊH��O,\I'�2�<��t�ҫf5�Fvm�PW�zs�C�J��YY��N�cU�_��<��lf�0��ۭ�I��d6N�c�֫����8�vo
rq��׎}*�Zm��,xh�,Wh�#�I�;��_-"f[vT+������a��UnB#f�����\�,{�g ZYd0�r��n�.���}x�)m*N��r~x�wFrI�rq�a�Nq\���.�6�t-i�x��v��+�]��v���H�y�4�'d�L�F�l�(�[l{�~]̓�z�G�sǡ�1����ʫ��1����'�9=�*������������;P�F+��gP0>`A8'ל��ƾ0��\�V]��Y��\��R�	5�O/�SYhs��'о,����-�Ӛ8�l60b�
#�F��q����ğ��u�/�g
�K2/��d|�nTr+��<���iN���EQ���1�A��rv�!���Ȭ�x��o�h��Ḹ�#I�	��s������a]1���]̹�U���sGQ��&�p5}wR��`�[4��I�3�J���[_�ƺƫm
��fO�jN����s)��q����Ǐ��zխ��?����0,�c��E�����GU�ઐ+ļq��/��?�<mu�>����@d�6�v�U�yZЍ��<<~9s?-�����п����g⮟}"���771���Ez����O���f�:�ŭ.͙IU���N3��0I�3���^fZI
Ա�c2�݌���}i�kr� �m�mڬ�� .H'�qܟ�K�V�o��iB����{O�	<D����k�3H�����pU�{����i��u�[;�o�x���px�P�ݺgW��Y[��y#i9ۇ|݈�8�?J�L{�I�����uU�%�İ?�v���N51k?R���~�k���~
����&�$����Հ��Oξ&��|
�Z���.�,8��&9�܌��柡�_����H���Y[�ZFE�s�rF;��ɨ�{�Q�W����~�
�+�z֍mq��Aٓ�O\z֑�b9�����G-y�G��}ݻ3��y��6HC�q��RG�Q��˕^;dUlnX�h9���q�f���<ڏ��&����6Z�*�7�[��3J$X�q��#<���W��g+���
�[�
c��n.����nBn+��d�������r��IZO�_,����95�'�4j�aP�0�;�H�JG�X��&�*�=�Ww�	�?���y�P���)T)<ϱ�ЗQ]@d�>8_�����ӭwo)I�,`F�[]�&O�U��;�����G�_����E���	�l�҅��w3
�e��s�����lsr�����`����,�V�(]�z)��9����A�(Ҍ��E#�?i������Ms⎭�����FI�^���]G${�E�	bڄ(�h��9<3~����������3fh�D�=H�T�<{b��G��~u]��0����dd���"����7�Ox����xSL�<U2��/�n���J2�p9�8��Xʥh��td�<���7�H|i���#�S[�H�[���6���S���U@>�>��W��H�BQ�K�۷ﴟ��텗�=8��j��jmsM���]���5u���i捽�b4#�2H�K+i�Y=�*�E
�I�1�vbB��x�Ӛ�5%%����-�����|bV��6���EF7���˷ �H��۟��_Z|1��U��?"Y%�5�VU�ˑ�h��rN��<��ϸ����;�OA�����.'h���fo����Y[�$�y{���ׁj�Q��ک����n���F�3}g9�H��=yf����{�S��=;�_�gO�:ΰ�����ͫjb�������Ƒ�@Dj1��?�/��I�� ��V��7)'\@S��Y<��?���?��MP�o�K�-l�*'���Fc��؂ǡ<��=L��kP�|Ms�K��΋og���k�@P��q�$�;�l¦���}fQ�$�j�r��ܾ�G*H��I�t��p��%x'�i����\<q��6`�p@s�8��=+����|��c��J_j�y/��k�n�$U���
��%�wFH�3\�����������5��&E�֭#�6F�[�G'<��_J[�����)�]�>�f�V��W�|�7=����q-ž�y4ܣ���Ǟ�z�־0�h?�Z
Ɗ�>	|)�YH�D�E$0�>i���bp	ꛁ�q]�Ŀگ�m�d?
~x��C���X�ayg�PdCm�]A;I f�y\�3h�)����Ȳ*|�t�{zu>��J�VvQ�ţgT݃����_'i����i4��O��Vm�5�ѱԒ߱ϝ
0{1<t�O�/�b?�W�V�
i}F�tֿ�_x9����hg�Xg$�XK/�G��qT�{-�<�۞'Ÿ-��c=y���_�[6��m�=���ٯ�h�u�L�zo�?�:��;O]Z��O%D�<s�c�u6��st�?�o#;��4Oi׼g$m�Q��� �AⲖ��#^����Q�=�­�,admއ9���sK/#,��9�ݼ��_l�S�"��U�����x�I����xN�\Z%u��ϧJl_�?�˙���;��d�6�j3���%U=���#1��Gt_���;BvH�9Wi�w{�9�l�O(�&k���ڻOAܜӎ������:�jѼS��`ni ���s��)��ӵh��@c��a�f�FG��<Vo��]n<3�|����|��q�)J�﵄��ݍ�����<��Y�r������x���kKi#����P�rgk����
}sҤb\3�1�UyS���~^��֢1Oy捼��W8c�c���V�)+o��wyĮ:�:�{R[�ǜ�M�4{:�+�{������|��q�ɼEjב�Gi, ���!��`$}��V��5���eU2ȫ�#���c�j�|C�5ů����zo�f�P���W�Ia�
ȹ��&7	��,`f���كŚ���hi�o�5��O,C�#1��U���Ko䂠ը�or/.���R�'�I#d������z��~y��<!���>�n�aX�YE)�S���z��y��J2K[/%ϝ&�WH�n�	->[��D\yd�N+B)>/i^��Ocqs>�n��˺v�.2^1��~BI �.h�F#R_�
���~
��Y�����s�<�S�c=3�jޟ�t�?�>)x�Im�E���@y���=���?I�]�z���V�mr��dt@��[$�	=*�҈$�X�݈Caps�3��ǥTqX��$_B���|y�M���$U\u�&���ϔ��>��֥�Ɵڶ�l��:�v�o���3=�t�XnQ��{TbG�\��/� �}3����IbM�<���T�枤`d��<��9�2?h^ƛ6`��i��S�Y�=F>~m7��ö�n�d�}�Ҵ���K�%S�߳��(ݤ�67|�����=���4���&�\(e
�����!5��*ۘ
�6�a�9�q�3�ܑ]�U���x6z5����4e�'��m������E��^G$��}/��n����2i6W,���g ��>�k�#��7��/��,��9��p��֛�"�6K�7)UYԲ�:��O�kh�U>�S&Xn�gß���K�����3F6��Y�G�2p�Xrk���p7#�A�,��|g������!�~�1��'>�����t��������u^�?��f�4I4�.�E�nl�n��*�l����T�œ�iw>�]f�"8�*��Y��>�ҟo��,�|ѳf�>�=�ۧ�_�h~#�7�>2�A�Z>W��p�`��nL�9��CO���+����m�ͻuo�͞��#�9砭��ae���=�C�k+�Q��<`7;�V����(�hhV�&vU�'�q�}~��~��E~ֺ!��5�jȹV[��̞��iq���?�;��v��[�^~Ѥ����HK�q�O��w��a�N�c�����ln�!���o�Pʭ��bp���i8
��s���k�;/���|�+��|ek���|�7���G8bGoҶ��o߂�#[��Z;��G�xF�#' ��ױ�MmE=$��c�/\+��/*�ܣvq��{���5%�~;x��\2Z]Z���q�[�O�I3sԑ�v��_ۏ�a��+O�~�݁"�^������8=@�ּK�Ŀj�)w�5+�A��v�p·�И�ǵq散�]�}��!�y'x��B/�~R�ӎ�^Fy�T�1U1���>n��<sD�,��V]���F1�g=�P��o��m~�M����q1��ˍ���z�_7s3�C���u_M��ğ�u��*��O:��Y��G"��)��3���e������xR��:�4A�pܫ��q��Oj��]*�����,�R��](Mۥ���$��ws�+9�kȚk�9d�o-����wU���̓�]r�Y�s4eK��ֹ�w�:|&բY�|j���wR���*H�~U��~�
�mk�YI�ɩo��7d��y��Ҿ�|K��(d�<q�Z��r5�����(��aҵ��ڇ���'Ώ�[�A��$�������y���[^/ݨk]=b}_�����V{O_#0<\Z#��;J�<��}^T���X�f��[W�k�6Dߖ9Ry?Z�}��4W�_ĖڂB�6��h��Đ	ES�n�ck������d��A�޳C�XVXT���il�1ӭK�c�Eƶ[��ֿcߊ6.
��*��.�m}������?�{;��x;�g_���;�$`��}qW�?�)��l�O�O�ʹ�8��u��eO���~�K����)��}[᾵d���'�8<��m������aiF�兟�<���/�]"�ρuD����g��(��܏����zU�hi�V��b����u�ǯ5�{~�ȍou=OOf�ʷyځ9�셇�9�]���<k��O��+/����u�|����=��R�b�/~��*2�GǒB��*ҘH�|�';s����摬�U�DUWn��;r{t���l&��3�h~�{�{���<�c�מ�:T>k�ҏh�"n�U��e+��9�t���qe}[���=���G��Զ�y��x���O�EsdГ<Ţ^>a�y�c�瑞�����/K*xZ[g�}��\rN	<g���sZ��c������<�e,�(�h�~�8��KO�S?����PZ��K[�F���8
�����FH��a2���b#��c�񯦵o�^�P�Ytψ��}=��\8��������<uiKa�&�F���7��v�ռqTY*�H�<k[xݭ��ğ$�g�Px p{T7�}���~�-H�*�s����kٵ_���'���>o݅	�33��c�+�Կg?�60_M��~[��Ypǜ{t����-�ҩmQ���K+y�DDtS�F	=q�{Բh�|1M���o���{��Wc��/�ޖ�jx?X�v�P,�����ǯ���֑�Es���%g�"�=��I��:��Z��ã'��c�H}��R���]��Ezc��ͧ,�G�w�u�:�r{�;rs�WA%�E U'z����Pp03���^��)�',�wy�����{:���W��g$sM����S#
���D\O��G��j�{k���@��y�8+�����}��K<N�ˊM�+3e�9���ӓLka,��}��m�9�q�8>�.=)�ȩjr�xn��͌j�p��8��Ӣ��*+�	�|��!e��d60}�r8����]RH�|��X�rsߐr�^�ƞ�V�J������?��;�K��}DŽ,����)>^A��s���9�9�g�?��pi�@ce��1�ֻ����HrB�[�R� �a��UӃL��S�h���qҴ�F.U�������*pG$��99����
�je��w̥rC��<��1��ߎ��H�p%/��/�F1��0��z�f��65�V���zs���1Ќ�{FO���>��u򤉊�
W��H?^zg `�5T�u�[n��kmeR�G9����5�Ob�^c0��B��'��ߥT��dYX÷9Xs�A���}�n�J�vO���Ѧ�X�&�8������8�u%�ιb���n����?'#���zZ��mVUWF�r��;��B}=�,|���v�Uv�
���Q����W4_DK���2`���fŷ�.ʂ�cY�ߗ�F3�~��Z�q��j���*�|�4k!������Ҥ�I���d0|�UG��$s��w��7z��c�L�.�Wv^:��v���TW�;�V_���-K{���n�Y��\�7���է�={�5��#�FUv1���^F8�p�;�4�zB�n����L�g,�[|��T���x8�ҳt(�싚��_�1��
\_x{P�m�V8�_�vc��5z/���n�Y�M�Wlֻv�����>;&�*��3��qю8y��Þ`3��„�q��~��X:R�Z�=����g���F͢ip��
��;sZV^0�䥖�Ė.����`u�99�_8&�� m�/��y#��1�?
dV��]�xR�~��;q�8=�7���l�הzPI�����ch�e��3�ӡ�vf��H��xݐ2=2I��|���Fsi{4/��_9�-����zz�W�Q�K!�x�I�l2~���pLJ��}�8�#�U�@�im\�,�������.&�TK�#K�cn��Ϸ�&�w�%�*��f�"��2���}:��+��m�p��@��.y�����oW��>�ܚy&�Fʛrn6��<��1�Ҥ�tT@���m�n���0q���V?�ƽh�5m �t��?������գ'��Kixj�5����9�A�L�n�5��֏@u���z���lS�m�ɹ�s���;�g��-O�ǎؕ��e]�T����^oe�F�Udx/-<����w��֜�꿿�Y
̭��9#�9w�N+?�Ԏ��5)�:�����I��l봓�H��9 ���7�n6�K�H8�#�H�3X	��	]ܖ���eG��l2g���۞�=�ZZf��\�ri��-n�m�����t�L�2��΋1���cY{\6Q�#�_rH�#��)�
"�i0ȏ����ӯ>�^I!�o2�l��0�N��#>���	i"M��7;��g9�}GOy�=��,����G3nDܘfܪI�=9��’��sN�[�ڍ��ô������q�9y'f�s�b{��s��g֍��	
(۷~�N~�����B�s�u��s�<`��=�)�z�ʾ\�w0��v���$��g֨3��͆f�U;�����>��Ӣ��	��KnU���#��Q���{����`���]�����}?i"�r�8,�+��s�s��FA�1UX"q"mc.S�@n<t�s��;M:��I{��s���s���nV�YW��1m!_�_���T�OLjD{YUR=���A<q���Q/�E�F'nͬ˒~�G�L�M�� �8�f]Ň={�{���匤ߏ���c���{{}x�M����kM�da�A���y�f��L��8���@}q�֪�c�iw۷ym��:�;���|ܪۡ��=K��P�/�Ͷ<�������c�1%�)�0�<ϙC|��zp	�Ӛ�����̳nðP�rGm��A׽u�<{���}6ރwNzv���c)K��,I#�VY[kp�+1�NzӤ��IM�yl6�?>s��^���Z~ۙi6��
�f�rNu8�)�h��;�0X�i2z�7N嚆�����M�ٿ�Я2d)�I�lu��gj$XRe�w�bͷ=�y�~*�$7#e��m�~�`H�O��s�L԰��i�+++�ݝ���<��G7FU���tZi72��~H���=*g�4����Y�v�|��<r?���������i�ǎL��>��UD���$�,����8����֜eM�R}��zt��h��;QN~�'�~t�n��ة��^����q�jl:�.٢�o1�U��;�u>�Ո�U��³/̽2:�������Gr��6��_�H�?秥Iq
��G'���##�qϮ0N4����Y�d�YF�����y�O^P��_�dm�K0�H�g5�a�rdv�J���v�Im���ۑSA�����w\o�A�ׯ�=*eD��,n���m$e�	09��z�#5����1fx��w����yD��=���ff��.TaW���_õ-Ɓl�Iou��J�䏯^1�Ӟ������@^
c`󁟥8�j��X^RT���ð�åW,C>f;�]Ӱ��Uc�Q�7Q��b�:;�
��[�v����=��A���mJ���ͣ4��H�L��8�QI/��P-UYd�b1Gs�)�]}G5�}�:	)K�z-&��[�捃��/�p3��A��n,�ʹԼ�A�LX�O8#��n9�4�r�F�mV�X/nz'�o�&��L���^�;Iq���8�q����L�̱?C�ǹ�w�9Zf6�&���Ӂ���Q���.�-q�4la�dzq��qJl
)��c����3�B)�[m�����׮���b�R���l�N(q}NfEK��Y��<c��C�Ɗ(�Xn|���c'=s��<��f�G�m���U�3�p{t�j?��-ך�o�8���4�8���o�ʫ��)�d�t�5<V(��n������S�w��[�Qy-,{ي�I���L��������9ە7z���z���I���������܁��X�"�q��*��c�>��=�KM:kyc�g��V?���=2O�zw�
)�<
ɕڪN[�k��
��I�-�&�ح�t���'�jŭ�	Uò�
���:`��I�w/�$��G&ܖg� ��b�YDE�ݒGe�[j��9�=�t�:���{(��\mʩp?�#ߧ^j�ij��k�M��n��q�ߠ�������{rT�9�###�B>�*�8
f�\�UV>����q�ץvFFr�&��(�F�'
۸lr��*�;�E)*���+u��}ic�1"��ݐW��ېq��
&��	x.�.<U��鱄C�@��@ۂē��<��]P���<�ZxJL
�x�O���I*��3$���7a�;�qל�k�O�Wh�e��.�[Mt�B�72�X�.�	V)���?�5|O���ψZ�!����/�C(K7f�l��+Ч�֩���.1��C�G���K�X#��y����l�lRX�FI�> ��-�.��n]�~[��VW`�0�Q�6v�EyHK˛���i�(?���@\;FH�J��vV
����t�Y>.�����b�r��z�]���F����V�%�7�x�6��]��Z̆9!�O."�]d�9���s��'�
*���yf8�v8^{��q]O��� �M��.��[6
����6��ܨ|�7����|P�=����ϫxk�6ri�t��*�<�pJ�^��MK��!���ӌ}��-O �4�
xR�4�����C�ѯo�9��r�,T;b�u/�c:Gھ~�3��� ��{�g��C�s���9����>Z?�OE�F�i,$���?����&��_���^�j��|���u��q���,S�T��䟢��j�t��՟�Z�]�#��?����k�-�� ��:q�o�f_��HW�~x�-ő��r�2:ݺb�b5}W�������E�n$^��
x$���UF��Ť�4��n��eQ�:G9�:VP�S��ԩV�������z��'�?�5�yd�Ie��<t�}�{ڳn�8����h��&������=qצ+���ΠA��4��2���F�؎W���Ӯ���<�����2��:�?�����n�<5���g��ބ��'���a与E�s�'���Գ�d���s(���Q�߿O�[�ط�Gם���k(��kN9�=+�����ѵ
���O����}Is�:sXN���塢��+$~9��=M.�qanv��Ns�`��U�?x��P�����ě��;��<m|�����>
�.>3M��z��Gǖ��S)�8f���
��S��}��	�oٟ�e���>�|�k�\�L�󎧧��U�B/����Q��-j�U�����~+��M$���O�M���H#��vX����������?��]OE����Z�����O`F~�=A�x��?�_�+^���]�nVfY.�s��t���^�x���\�
���pTU�:��V��~�^[��O�'�u��w�G�<���-��HO
x5��Ύ���G�m�1�#@P<�u���}{��^�-[T�E���I���csc��Lt��o<Q�-j`��kX���/��:���hz���ߙ�0
7nݏ��N��߅��UQ��8�����饽�>☆��a��F�nQ鞘�q�f�Y|úF������`�%Xٱ���d�~>�<������?h۟���.�4�`��'��bSԙ_��P1��c�a)l��E��f�y�Q#�k6��3�_������׿�>|3�5�+h���,Clp�flF��G`k�s��.|�3G��~�?�4����tGwF��&��(�����f�௅^
e���|9��v/q��g�Ϊ0NЬx��<V\�gDh�;�
�Ο�F"���W���jڄ�Z���X�K�t��g�q�q��W؞�W��ٛ�3G�i~�^�k�N�k#�+e�<s�Ǔ�W�_�Z����$��xaf�^�-�a�v<�y�WھF��i��V���]��|Eo��']�G�g����\j����a�@�#&����l%Z׺~�k��PX\��?uO�q�;f፝��F��:���/|��U���l_�:�ڼk����P��[=��{K[x�eWˌ�s����c��ϺO��A{e����pı��Mxg�5�C�\��|�O�w�_���>,Y��k+_k��$�m��_d�1d�
���H�1��9��J��g��l6�i��d�0�Z.�<�9�b�lq�u������4E�-s��Y��Z��v���!����ָ+_��'�.��ӣ�.�p������A"�S���{���	�'���'��g�����_���v�.Us�8�1�G8�|;y��='ſ�׎t��_�C�0�q�؛�cŞ.�[I�ѡc�͒V��=��q�5]迳��t��K��<���T���j��}.8��A��3�i;n'��}�.�r��~�k�/�<�Z���;/j�$�N�o|��ųI
�b�
pH9�|G��a�X�'Ŗ����Z��^h@]�(VhF�n��c��Ӎ��|���WCmSž43b���R�ʂe!����q�$f��x+Jѡ�g��~ ���uO5��L��(�1
�ݘ�v�0Fx�o�r���j��S�{�N�<�n�/�,�M���,�M�p�
�O�M�~�C_�|3q�4_
ç�:+Ekiyv�4�I!`]��H� `b��x��<�����[���֝���VC��m�E7<�$9’�
�z
@��3�O�^�<;q5���z�]��s)�|���N���?k��'�t���,k�IC2�}�R���x��K�r�Sa�F�_��O�o��X�m��_I}kl1#¥��ngs�v��G5{��+���?�|S�_|�u�fG%�����%�Z�0d[rٕ’��oU�~�υ<?���.��]I�6��"h����2�>k���9؛�9�͆���ǧ��#
B
V��v�e�u-��b��2m_F�g�yp�,���X�Y�@
�@�:nⓊ�>it!�-u�K��3�h��Z��6E�
�3}�r,ǁ�Z:���ɧ�z7��u��G������1�[G"�Գd���%��>$�%��5
�Ƥ����\~��W$Ea��}�P&�x�V�y�)t�/
�7E�b����V��v��E
�s0.�{c;"Px�Z�0�K���~�|
�'F�7��Q�<6��=֝b��}p]�����r|��
+7��g�R�!��Qx��^��m�$�͆���Ղ ���07s�W���º�u����u[O���d��2��$9�����N��-o�z����֝��¶�M
��:|�Z<ѫ6�R�K�d8�$aB��Ǫ+�}�V_�γ{�
�C�K�^�F�7��葬M�p�Z�v;{�=:v�������<#��{ס��%P����	.N>�Q+�� e{�_�����]]h����nX��-9�y��pNG#�5k�3��>".�k���	�g���e���@+0�Q�8�Ti��F�N]�w�l?���oq⯊�����ڔx��)��vO�^��[�H��I῅ߵ3�Y�I}qm��H�!ٮ!� žC08���J־$�u;o�k����	�^��n!��D$��n@`v�_�[|B�ςm.-t��侲{MK�R�Hc�Wʓk�o�t�8�XJ2��GR;��%���E6���_�C�4;��E��z�|���I>�Etg�ߊS*��Svږs�ox��躅?�Y#�w#�\~x�������4������Z�V��K�~��r���=I�kg���OO?
�]^��gw]�fsu6��DR?t��ڤ��s�+9e�dmeD}���t5h<O�oǚZ���7I����7r)�~ҿ�5?G���C�X�g 8'�Zƾ�;��~��~7��+w�7��-����5E��Ԗ��Q���X�d��U5��c����c�ޓ��[��'�.��V�"b�:�#�'���Xe�h�c�����|Hh?t[���V�S����a�c�{�Co��q\Zb���0`�Py�ǩ��o�l/����O��|M�<j�xZ�g����k�'��?��|���πM�	u���tMr�O��d��Ff8�Œ��b��Z�Y�q�{�\G�dۍ�Fͷo<{c�^i�Uݛ�^Q�|�îs�������U�'����P��,������^3����碓�x�v^��<	�\Z�h�ƽ��q"A��<mt��]�jኞ���Z�>��kU3�Ł�U]v��ْ�������w�8 `_%��u9�8�r:��?�^%���WX��ώ�=�"mBH�����6��g�����*M��Y|�+���,v,���i&�9IU@?�՛���Uj=Y�ׁal[
��y�o���n�OOX�2B[n֌��s��q�@����/���)���wn�&|�]2+�Ԟ�42���=��������5�m%�эc÷v�[����''��~ƴ~�kO��	�ɱ]wrYY�Q��d�rBf��Y^9���wn�����=��~:��*�tω�;;+�Q�y!q!qǭtv:��R��R�o�eW
����\v�gg�Ӛ=�K�bv*��AU�eG��.��*�a��f*�/<u�2oe��*�1c�QA��?�F��MF��?6Y���4|��מ1�ֆ�QW&�L��K/�NC366�u�p=z��EG��-�n�dm��9�s��$e.al?Vp�s�2	䊒9b��p�iA��?�\ѧ@��~x�A����8S�����B�`��;�o1O��ϯN{���10h��~���ONz���1N;�����_�9�����{�,e�4*��B��îO�����"�Y7˴�t���RL�H�
�1n��FFI�~5^�lRo���<�1�]q��zlS+Oj/��8���]ޣ�_N}�g$^Dm��@U�k�/��Imp�9"�>o���y�h�1y����`2�@�{���5�Ԕ��%DG��fo1��/�<����翵�Ň��d��O3P�|=�k�����^��`�3<x!G�N�$1�Frו�ӓ,�x7����M|eo;B&;x���z�qZ�"B���9?�v;{���mc��f\�Aat�Pq�8�X��>���u�r�I���UGN1���^����*\H2�'z3c'��{u���Q��r�N�f���C���9��׭mEc���P��m�|ݪR5"%��rF{�9�6�jN�[9�y�+�~c鞤`c�ֻ�[��i
,#b�)
~UNǯC�s�V.���]
J�B�����A�>�����˗�.]�^�njgA1��`I���s�l�U�#�4R��Hͱ�is�G<��8�Go�k"�,
��/g�1��@����Ҡ�O���h��U`w��y����͓�z\�p��n��x͛/�Ѫ��3����o���dž'��Ib�.Y���Lp;�+�m|?ke�RC��~��N����/=��h�w:��,r��ۚVː[<`�B�=<�!s��cY2��T�0rT0#�3�oΨ\y�k���]B�;	����`��Ӟ�}��$s�O0�
 ܪ0���TO���yV'�U�b��wrø�==�K`�G�P9h�6��,z��8^H�z���m蟽ӵ��vlH�q�H��O��rO�QǶ:��̷%Ua<�F�c����������T[9d��Cċ�Ӝ�;zb�X��Ih~9x[�}�ֹ
�$"��\��rA��A5�i_��9�׎w��w����n�#��I�PIc�}k����`�=�ж	���O�Ϲ��K6m��)�pB�b9��3ϵc,5	KX����T�,�M'�
��N�c�4]Px�e���8<�ٍ����p+��������3k��%��o/����۳��*��߮k�	�In��Cy,m#���1���~��'I����3䡌^�\c�~c��8YoH�+-9��l�य़
����R�6ҫ�r1��A�s��<����Po��P���m��=~��w:n�8��1���|ok�jB��kH�Y���#;���'���ZM���,�������q���K+��V�>�ӿlOكS��+?��q�ەV��XJ�K.6��N9��\�����?��ɟ�ݳ��l�DQ�.�)�9'��|e}�˱�ƞ���H���'����+߀O5]�h��}s��Ca�rq��z��
Lr�?5�ʖ2v���
�x�x�A�)4�D�_iV���C��߁��B�����]	�O��8�u>tp�
�s���;~��~U���h��S���O�a[��x�?����‹�'е�o%����6��`��m�s��'%�I����Z��ge�S�Q�r�>��Yf{x��^BͰr����q��ڇ�]��l�~7�^<��(fKd0�ߦ3_�^��R�Ek�C�v7�ƁZ�O�ɺ	�@7�:q��Z�]�4��~	|M�v[uipߵ��K�P�Fpq��w��sTʫC�:)��4�W>��b	�&6��G��[�
J�����Z�o?cY���Z��p۔yR4�0 �q򑞇�pO�+�-~7|q�}����7�Lb�����qn8�0���~�?���
q7��O=Zh����3c;~�;�����X����F����5�/��[���s~�}��6ݐ�㞼c�{V��������%����I���r���ס�~���ㅌ�~����gi|�W��^v�C|����k�����⁣���=��j��-BDg�9TE`w7��`���Gx��+�
.��G��'�}����{��qg(�`��~��j��Pʸ�E�hX���ž��$��}�8~�~���y7ö�L�U�z|�p�uq�d��܃�~�>�����Z&�-݅��U��B������橌�a��V4�F����� {�V�FU�Jܒ0=q���^p�l��2���t���䜞X��ھ��~
�0�Uc���#,X��D�~3���=c�\�3��Ms����H�̡s��y��R�Zw�KQu>0��\ȐF�ɒ�����?�j��(J��yk�y\nby9�I�c޾��c���K�ͯ-f��_׎�����W�+�mS��в7>d1ȣ�8��Z�f�n������>c[ZX�UI��m���s�=�i	��졙�v�b���x�׽{�x��x�)�R�mŁP~���w8�8�X�~�?�m�M3U�nH��Ċǜg$u���kh�Y/�����x�ٛYɕ�c���3�'��B�I�;�|��f�
�3��r>��+ԯeߌv��Ö�M�mŭ�D�g��:�c^|���y�O�T���wm���q��܍�����4f��n�M,�9�(�#���>�^�u�4�Kn�G�X�Is��9<�l~���x��k����G¬�R.��+��,��	,E��<�TM�;H
'�3�i�љ(;�9l�V�ɍ��3�1��H�^y��g��Y
L4��۷�ؐx��?��M�܊�e>c�pzq���9��66�0����m��>���Z)�a�dJ�%�|�s*���@�>�Ӂ_��<��`0:t8�����kq�V2�5��=�q�n*lm���bV�	fgP��y9��R�,Nth��bR��īgz��_Q�Q��m�*�1-#�$�c=�6f[ՖuU_/�20���~5�l!ͻm�@.��l���'����f��˥<.ζ鱗!N�A�܃��o׭$�4�6��n�.͜���N;�q����^�HT}�v�o�,O^0r=@�q�9��ʥe�6�0N�<�Uʡ>���@P#	�c7�8lK0�=���_�m"1�����X�-�׎9錁�ֺ�m$��.̨-�W�ۜ�?�1��"��WN~R��2_l
~Џe��[���`���A���^N��lv�p����F���T��
�_C��WA-����m�2��1�[#�s�;c�1�2-$5��+����
�u��:�1���̺���L��[��k�ʊC3Et2ד�2zV�_>!Aه����Y#����ߐW'����|�/��?0�$��W�zt��4ӣ�a1e;��;�L�CIƜ��sB��l�2o��Wpڳ[���
q�ZҶ���[w-y�[���+6wg�ߞ?�+�}!%��?/�U�wg=�8��5i�m�!p�“!۷��{�0zu��te�C���'�����u_���n��O?�i[��~%.��`��F�ny����9�M�Td�_/���c��N?����,�-�p `|��Q��{p	��E*�c���|i�\��>�$[WkE5�s�'��q�z��'�.̲�=���L�q�'��{���D�m�E;��	�>��U���̇�F�cQל���:R[��"��dzފv������Bà �� Y�So.��_,7��9<�|ҺI����m}�/��zr=H����\갸Z���Z�I�����nF;�V_���R�K��-X�F�\6pVm�k�?0�T�@���0KI�h��>���\RV D�;��e�%[�������Է8�#�c8�y>�x��Z��ܹ���b%��H����
N[�rO�Ӛ`���mc\$�����_oJ�M	r\��-X,q���}ƒo�{9�~h�ü�2y秸�9�h�uut���b����'<nr?Z!�NY�z�o�rG9�z}j�[m�^A�gnT��Fv�s��=)��M��lF�Up��{���G���UUdO6R]���:�3������]R�K���'ܚ��m�>�h7H��������=��`���'�^�#:c�q�=�1G�k+�;�̼���`��S]i�#+ə�f߳99$:��9�\�������鹃(m�cR6���*�EdSʻX
̤7�������^�B�i��D�UWr��ğn���ymo&����8�Ϸc�M�'D�_� ������Fz��i������g c�9��=��.k"|"�-�ll6��6N}:��&���y~b� _���§��c&�<2�f$c8�9��ڧ�xa*Lq���,�+�x<�����9z��~�>|�_ڛk��a����$��K�V�ȍĂE����C1yt\�B'��G�U�v,	�ُ���'+�ON+H�$�9dX�2,g-��Y�W�c�ή.����n�'�x!�N�����*��R1����|��@�l�ړ욜 �q/��Ae�aW��{����O*�]�����y��60�<�����4rCp�#�q�?�ؒ~8���^ݤ�M�T+3�@䓌���Sc�������[!s��Џ_��u�I�A��5�ђH]!�2ȿ�܂�FOҘ�/mG�G�d�#�玽=Md��RHJ̀��e��@1�����C�k��$ڱ��
���)ԏb}��i6��51��PK>|t��={���:aa�(?x�ۙc?7L����AT���f�x_r����c��ˊ��;0'���S�v��Z�t�{�Gk.ܺ�[��q9�w�#��IROo���YUv�\�pGN8����^/+D�m�
����N}s�֦���X�rܫ�>^���������+��rf�9��*6.�5����v�U�Ef�4ŕv�2�7.{{�=���Ϧ��I*��ya��<s�g��n��2i��(x�f��7��J�oík��ѓ��� ~��mʾ��;S�7
��V\ss�}���w�SGol�5ϙ�F��OCϡ�Sn��6�MWQ�Z�;����OL��\/z��v��$�c��x���]I�����V�m��A�8�ZHw:���On+˼a�a|�\���Zi!g�t�����fU�T<q^A�/ۯǺ�Џ�C�ø�T��%Al�L��!����>RZ+z��qt)��}e���B�~�&��r�M�U�ח�Q�ߎ��:����_����%�
i�kR,D����=�>�d�o!�eR8�"�C�|[�j1�'�n���Q����IWp7����G�M��z��V����]%>\l��/�v�q�j���q���:y���*=�[���m���G���!v%?�����UH"]��޼(�LW;kr׺�ڮ�<ˉgui�Lͽ�gbI]�#=� Um)��Kd�KG�U������܊��i�A#M;�"�/$�s���c�)ѥN)$pT�J�ɛ��6�[�>�=�@Y�P|���8'�#�kZ�����4�7�G��M��c�ǨC����FY~l�x'��S�/�L�i"l��p�=�q_-��N�'}�:�Y@�w���,7D*����*�7�|�3L<�Ƭ]Et}!�k��v��s����jj:���73mH�;"t�����?����2�6�ִx���\��J��y&�
���8�S�Ŀǭ�es�H��\3��T�A�=s���@���O��u
���#��Q�9\?�=q۰��*�i^P��}OA���#e9G�u�'܏q4�W�!�����S_x�IЙ�u=A�?ݖ6��v���9���
g�Gxr�l����gܻ��7m$o�����Sϋ> ��<B�}<r+���E2�/�q�����B*R���/�ajTj������:V�B��)ۺ5���Q�6A��MtV�&�Q��#,k���n<��s_�?��2xjV���E��ɻ���҉=�m���ϧ���
��e~NȺ��;�x����u�%�� z��pͰ��5�^U[�8�����j�������cW�@���wz�}C�>��I&�#Uiv�ѫ);���#��
��M����vW���h��X�D|��q����=�Qx��]�?P��_�R�� �Z��V�o^�c�۞*e��n��f���>���_�B�{ew��{1�*���^{����B�����=�ͮ��OVU( �i26�\����~y�h���|i�����A��]�!��)|Ǒ��������|u�[��x�����3�$�J�:q�5�VͥR\�!o7�Ge<��5z���������m7�h�k�90��<u�B1_�b��>;|]��	u�,���q�˸ßמx�	�o��%I7�͵~eX�w݌d�'�?\�ύ�Q�K�B�ί Pܖ�;g�ut=�+�8\V"\�w���kc���i/MY�x�ij^��{�O�&�3�6w����Z��B��<"�f�d�P�<w����S�<O�̷��P�G�����qߏJ�O������]�w?�,_�u�'���},8F�_�mL^"����y�g��W<s]^�ah��9Q�d���>���o�N�I,6ie�#���3���־�o��%�kvsE�6Hl̙�ES�{d�k�~��-|U�	l�u�#�t�`�5ղ5ăh,,�<��u�5�uicc);�ݟ�_
;]��H�_>\�.������^���	��D|yKya�~��ims��Ic s@y���(k�����7�>|�]�k�jꡎ��*�!'2F@H�O���A'5�-degdYsmI$�n���E��Tc�?��	+�6|��Z��6֢Uh�5�B��"�]�;q�_q����tK+'O�ɴ�3�G;UW'QG�0?
�|��!� ��^z���>��[������Y��3�����✆�.����#�Z� �?�!����˯x�I{(�O���p�c�����.�y<s_
�T��<S���ms�¿��7�&��F�4��;_3��W�T��#T�~�j*�Q����sM�L��ԋ���u��Nx �s���3qW1�)K����kV�d���G���_[@f���.�k�K4�̢8�(bK��+��3��q�n��j�-���R��I�|-�6��<�x�����6���=�]g�O����7>�flold�SʶC#'
A�zb�g��K�/��`�f����g�Ң����G��<c���e/��_��|�?ٗ�w�,���ɯ[ٸy4;�r�k;�d"	�v8��1T~%���¾&���k��״k���%�>����[�IX-�B��0Nђ��W�Z��G�J��?���~��|�o����}p�v��S|B��Vi�V��Y�ɟ��k�?8k��JjwZ܎>�4��6�*�r�
�k��5���L�a�qE�i���[���^i�u5����Z�Y���(`H�m�Y���@8�� ���?x��W�����

�+ÿ��`ڜD�#˨�?t�yتK��g�b��*�v�x{�O�_%�6&��Mg3��&%�錎9���O�*g��O�D�_|7�z����Q��ބ��Z;^���	8��Z����{���?g/�4�?d�x?E��{;
X58Zf%��,2��7˹���s�*=o�����[��9�s�~��{����)�*[?��'�x��ǣ��?��T���8x���e�Ō�4sw�|��i-��9#�ۆ`��k�������W�7��[��^`<Mዻ9# ����I985����R�V�����]w���φ?<�x����Y�{�N�{j�2��)E�YB2y�pk�y��<_⋙|e'�t���-`o\̶�Xuv'c�F�@5�/�/���W��x��>5�s�^,;f�֧�K�QG�,ؐ���}r�~!�/�s������G[�l�5�V���'>YbL�s����cZF�,�.mJ:�?���#�~ x�����n��X����s�l��$�/NA9�e���R��<O⏄~!�߁��L�&��%Ž��9E��URג�]��Kp@�r?��]�e��uMº��V]���h��m�� �P:�r�a ���2�w�߈�4��|`���4�� '�b��c�U�.F��=w��6�7���&E��y2	z�2��F#8�2	��
�G�_k�>�G�t�t����U�ٜѨ�$�€�+sS?,4��֍yc���Κ��v_��8-�A�����}*��>(��cR��Kx>xm�.DCq3�\��T(*��g��r��fs��<Co����gQ�|'�j��Z|������1�D��S�!8�Sɬ-f���ޙVw��y������}�M�������`Wc����׍�+��'�6ڶ�������dz|`���,]�#{�Ü�S���%a���̫�#3����>�����`�owV�Fw�<3
ƻ����	��b��u�nK;��p]"I��ʒ��#�������?�^"�5��>�y ���][��Ĝ�(GeW��I�Ml���A��u������úM�G��:�4z�Ζ[{Gkmh#b���j�q���y��x��/�:}߅��]�1x��~b�D�w��'9��qS�}J~��k�|+z�?�0�e������ca��J�����q�5|��]oĺo�� ŧ��|;>�
��Y��ʼ^�S���9
8��xw�����7w�"����=TH���\l8�g���ᧉ?hk�j�
�|;�o�n��{R{kH"-��� ����	��w�Ɍ[w<�R��n4Q�l��M��޺^�p�j������#�,AVOi����M�ͳ��ϨK4�6�*�T�;�Z��5]��e��gA�C��C#E&�
�eS����J�e�/�#U����Ҭ��n5-J6��P��`\y�6����+���n~�>��ơ�j�ä]_�2�\*e��n_�
#as���3ƚ߂|u�ٯ�<�xZ�C��gu+��0i���c��(�~�\��L?��w������i�����R�f1�61�1�����G��Ӛ�yu	$U�5�	c;31�{
���q��.�OúN�5����xe_��#"����b<�T��ֺ�)��0x�;U�M��l��)�-��L�������#u ��:s��Ǎ��ՠ����b�Q��1i�d�'���N
�85�_�lj~�O�~�w�J�PӢ��[k+�>��;}2;��c�H��rX���r;�8�o��������~�č����d^�p]1������<[��C��~ԟM�����5�n��3߹��x/���m��a��HQ��7����ۡc�8<�IAS�7Ý/��O�&��#Э5�Al��ebe�I��H~>�#o�hi	v���Ƨ�Zׂ�xS�P�a����>���¨p�p��Ch'b�^��c5�����`�Ԭoo�X�q+EsfE��YN�>R>�^k�����������C�����b)�5EF"6���i���Ԓ6��!�����M�v�ς��͙�$�~B��Y���#
�=36�.�ƍ���q�r�R�%��֯���{���-���q3��݀<U�E��-I��[]n�8�֤���gy)$br	����O�k�/��4MsN�Z��&�g%NJ.&�x�,��K���
�,�j_� ������+K�J�f}C�hx�/�m�����B��җ,v*���>	�\���8��M��y�-OΰW{m
�P�a�\luv���F�@V5��S�����/�Wԭ�5[����� �Vq�,h�*��m,Td�ټ�����ƬדFO�\~qh��X�	���l��
F_
��
>�����QԴs-ƣ�
�|��;#�ba{��(�]AN[\��~���U�_�d���X���6�)9 ���(�?t��8����O�^5�.u_����3�&�$��ֆ�X�Ot|����=v�Fr@�_���ླgai��'��|��4�:V62c>L��S"t(��+�`]O⯲E��v8��.LQ�4o<&Y��>m��;T{(����(��yګ�p�K���?�Kd�Ic��^@��F���8�q�9������?�%�
�I�/U��u��	a8'��5��w�4?����|׏��Qu`3�Y�H�i�����E
4�H��W�p���ܚ��'�~�����Q�x���e�8��'��j��S�_�j.�ݿ�K�ߍ�n��	�h���C���c�����F�C�I��[���#�n��ų�|*��WTo�5��8$��n��|C����n��x��;}`{�Gܢ�{#���9��}J�,>��^��[�t�o�צ�6�3��
֟)��뿑� C#�N�.Ee,
n�!������-��|ծ�FP[A�,o�F=O�( ���o�,K���i�$�[�	�v�c�'�Ͻ~u���6K�<W�G�M��^
��C��W�|���.��9������kZ���\֯h����
H�o�v�8�.��W��2NG�Z�u�R�uE�h�L<p�g�ێ�q�Ͽ4��ƿ�5����6���������3������[h�?��~d��X�Y��p����{��b����R�ړ^׬�?�|=�uK��<�m�%Y'|�WA��c�	��|�1_S�ӵ�Ċo+z�$XK2�^n~�
�<�Fd�k`���FB�q���H?�t�����7�?��/�$��w�n-mb��Ax�s'&6�z�����`����Q��AXK��J��y�I����#l��Og��#���%������>p�w�Sܱ�p�]:Ƌ�И�~���s�i�
�_}���O7��LwJ$�r�yPv��Kc�f_�^+җX���7X��׵Y	�����}H�����	�������J�^�48'V/Ѷ���z����i�R^H�Z����aŒ��;�~w���kƊGV��F۶��8�|��-��TP����e���N98��ޢУu���+ˀ*�Pz6s�y�9ך�_
�D�U2FŎ�'`�0@~_�W].�}}u"BҲ+|�P���}�H�%ث,��Y\��I��>��)68{�\ixJ�H�|�v�<���ҡ��Pyb�Q����Róu�N3�۽w�����U���i�EߞG<{�}�;\�C}�Wpϧ��v=���(r�xa��teh���c�W�!@�w'9�T��WVA�E����0��c'����m-��R+C6��b�Kmn��s�=~�X��Iag����Z
������s�G|�.[���A�][�I#�E�Y�;WO8ǿ4��Nw�K��2�!-�zcӵw����x�e�NZL�3��1��G�j#e�U�X,1V$�������Q�����dX�8dY�m�bs߸�#��v���^D�\2���\p>��u�ǽz
��hnZ�l��B��"��#�`��8�U�4Au����������:c:��-=�d[1��W�nb[�wc#׌�4C��%[�O���nV����^�i�M4ݭͭ��h��08�GQӮMeO������$��2�N��9�c�_Z_h���<�m�i%��#+ɍ�-�l����<TZ�-,�ch�n�"��
�x�G8��C��ޫr������>s
��Lg?�QjZ=�!m��mG#n
����O\`��l�������T�-Gt�;�Tp$d��x$�sD^������b�"kg����z%׆��m ���y��e+w�1�<���^�C�4ⶬ��b|� �>���M�lyľ���KvC!�n��bʤp;��N;u-�����G��e�ɕ^�x�>^��5�2����+��!��;����EE��Ie}>N��˓+�OSžN{g�x��J��-�;p�\ƃ�`�������S�v��P;�+�>��p�4���K���l���=���t�lY�8�Ee�A8$��}�Oz��/�5��{qI@ grA������u>p�o���j�:%���*de\��F�z��6�>�����:ޖf�El��[˷k�������u�8"���7}t���4-jv�q��P~S�p}y����j�ZjƋ��Wa���O�<g�c����2<����oiy�xo�U�=���i��"�@�?�/˒�/�05�:���y�H<S�=joM�c�W��ȼ�����@`O+���!0��4o09�0p6���?��'<��~�B�jژ�"g�
��O���'��+.ц*ǜ���J\�#��O�Q��P�t	�F�R���Zɦ�qLE��Yg<�+�!~���^5���|A�7'ˊ�ٵ"
��'�T�#��$�I�o�ݪ��o4��X�st���1����6�!�g��~|�|m�\��7�<�un���߭q֭ON�f˚��Ot��i|1e����k4���n��λ��Mtd�m1�vݹ���'����$yob��cm�vL��=0+����:xtC{�[y{aQ�©�01��׾i:E�K�<����۟^����_��f���}�i��Dr�<-ܡ�;J��v#��>�٢Ia����TB�gSӂ7z`��ͫ�i>GɐFq�lu�#�z�D!0ܰ´������q���pJL���KZ�E�[EUە]�g��q�R���@��I�ݦ��
�=G�?S��s2n���6�V�Î88�{~�ˈN��\m�awu��~����幑wO8������x����T+��cUQ���7n��c��	"��� ���%�N�<�3��ZKH%V�C,�s���x���<S�M�.��LO�ɹK,y�q�#��מpNx5->��>v�&�B�x�'�:�q�ڗI(�enY�ylz�{�G5�����#��?NG\zVr~�{3����%���q�2�U�v���OC����Xj1��ҭ�3�7η��@>b29���+9�+ƻW�N����>�^X@��"$v�W��݁�o��]�ʺ�w��0�����I�~k%�s��N}�YZ����z�]���b��<�+u=>n���{�#h���I<.l��a�^����=�)]�
��,Ǹ�c�'�"�5�Gi?��glx����Q2;[�P��"��*��	���d߱��.��i��J-�b��)��R~��w}1]�K�Y�m<<�=1�L�J2;(�syQ��N�����c��GE6Gը��9j��>�����;Vܻqq`�O#�H�8�t�����	�Q�&,�#-p�B�?w�@���n���i�XW9�@g�<t�OJ����C����uUϸ^��V��1�ݯ���to��.��)�a�Y-��m�����͜gn��GZÿ���0�RIq��Rfi14��$�|��'N+�A$R�YI���q�8��$�dbH�(���*�p�� c���5����`��
j^�N�����l�儀����95�y�"I�c+�0�=�T�3�w��s���}T0�I4��e;7gr��8���}*����7^�CpɑnlUĊ?��}��m�[����E�π�4��;4���_��>������+*�w08q48�KdGls��{`W�Z���Z��>��
-��
����8ڣ��N+�e�-~[o�,c<�4�P�	��g�tG<�/���Qlϊഝ�Ldzo��lcn���1�TrYJӘ�2_�YFI���+뫏ا�e�im�S�uVMI���*O���a�_���:3�>/�!*۷H�.s����z��=+h�N�|���Z=�� �#�#n�	$�lqU岂��p�9]Ǟ��_�]}!�~��1�|w�|����ބ�~@��V
��O�"�-�j�\��J��
����F}+Zy�OIX��#��٬�u�-UYC�0Unqߜw���%��f;<�e`�a�e���#'��[����3ٟ2�¶�	���뻯�~b�q�G������m)�Y�j�a���s���?>+x�0�i���Q�c�c�����܍��'�׵H�H�L{'�_�i��n�wk���w�[����B�hCXH���@���ǽf�V�dF-�I�~n���?�;�eZ2٣5�F�8�cl��ܣh<�1�Lz����o���wN	n�������f8 &O����bA��\c�9��Řc�����,l}^��_5Ô�L��Y!�`�X�f%ӎs������Lt��+$l�c31WT���Nk�xmE�M;C�'�T<�S�Lu��G$(�e�~_��o�����ׯ���gԬGs'�;-��m>[1\g�	�8��(�Ev")�I��͒A�{�=�V��e��JcۆT��c���cI>���C�����qל�ǵ/�Ԋ��3��R��2��&������گG�4��`��E�+�Ѻ��4��\��+nf�.���8�}8�5��"��
�K"���d:v�4F3�A'[y�XZ�)��w*���&��{Bӳ�3��Ƿ�{���c�2	<�/F���s��:R5��|1��t�dw��f�3� 1�$�F̎C#l�p01�gӾI�$i���Q�0m�Ğ�񓏩�L�]��.F��o3�8�����\��`�dEX6Y�J7s�X�8Ξ���� ꮪ�O�u��'��}��Av.�
��I�����j�y��o&��n�ߑמjE������=r��;G�x�?��G�mjE�2���
�s"��<�q׮:�4�{K�p����2vOR8�8㴉5����2ەwI�r��R+�~l��8xl��l�${c�=��Ĉ���$���B�n�3�}29��<8 �E`�K}��rG�栒u���|d�FS������C2�Q�m�]���N�0�G7(��b�;��,C�i��?P:�ɦ&����
�\*�A8c��ڪ�Lv����.9H��>�Җ4�`J�c,��������4j��Ϟ�[�(�2��߹�(�a��++�!��#�=�5��|ց�{c���T�̍�`�2�a�8�{���.���\kT����ǵq�^~�;s�L�?|Flm#������ǜ	��c��s0lI*7��+�}~\=z�~��"���2�+`~�p�u���]>��$��yHҾI���N��Q�i3˽�K1�!c\���O�@�c���>���<k�;m%fo:��.����`�3�^)�)_�/�t�

G�Rp�sg�R:���x���jx\Ew�E�,EzJV>��	��HUH�f���_��w�6�&���rG^�s�~��V��B�K<!5k�ܻf�_�q���OL�?��K<;td��U�f���g�����)Rwg.�J�9^6��-���y��>����tL�"�}�v��'�p9�I�Z�u�L|�je}kư�p��{]=���H`���g#��g��П�'i�o]���im�=���*�~R�>��=OZ�ᰴ��[��d��HRK�2ŏW^1��<}����z���:�i����!��Eu{�uc�F�[s�^/�˵���0�YI=���<O���-|P�$���ͭ��l������a�P�^��y�5��GH�m�=˴�����8�]���ߒk����;F�k)�(���rs����
���<=���mLUj����yQO\��q�ҳm&C������I=��`o-�l�พ���~Hr	�'��@��鼘�-��$��M)�gN϶Eu�6��2ZΈ��[�����6W<�8��
v�k3�O���k��S��l�c%���M�A���@�$��WQ�m�M�u4��2.P�<�8��7����+\Z����Ƈ<'9�P>�5��V�d:|q_[�n�4B�jN�@z��x�Q����|/rb��P��f���|�����$ry�Zڊ�Q���c�r�{Y�;~��泴KM>8���*[�/�$�����<��qں�'I�|���i��b�Dž>�y�y��E�������)a�$�aen�	�z�3�>��o���"�߅t�O�t׻��H�F��6	B=8 �[U�u�m�*ſ�F�ߗ��;�}+�ho���`��H��a��GPx�v�`�j�k;�V����X/o�嶷-��|�����X��s���4�v�5
VE	��	�!���__k?�@��d�i~6�2;g�GO��rZ��O�1h4�>i�(U��T��2�ڲ�:n����hϘ��t�R宙n-�ؿ�ާ'#��銽�˯���7��o�A#9����<{W�x��d�t�")�&as�r=:s��7y�/S��S[�Kd�̌3�����=�.hٙ�S�K����4k���f��4%��rP���X��`�[�}JFf
V����'�O__�;߃�彳Ig�"��4�\c�m�'�g��]�Fg^s����N�1�\g���ElΨ��)����uU�:��@T󎃨��ִ�7�
3M_:�R�Q[1��ʠ9�#��m|�1�EĞk#l�����]��G[Ԥ�7�f����A��ML,eYQ�U���^�~.�=ɷ�֗�����t'��`c�s�|G��mr�Ƴ(&8� p�Q�^���W��fY[K�c]�;���d�:{�_@|7��&��<�fV�ˇ�?(��9�*8Jt��eT���i/�>F�'���\G-�4�˻�ڬ��s�p?*�?������p�.�³B��q�h�����_a��e��^F��Qa,?x�$ˮ9�^��|5��jQ������ۙ�#�7H���H���]|�[�
}����r}�Ά���v�w30o���OQ�_R|1���4�X��Ǧ�c�l4�9����5��>�h��?
nt��&���d�c�z�$�#ҴY�IB��U_#���_����ܴ4���s~�m��)]@�9~��JD��;1�یV���M
\a��J����}�֬�DK���-yA�T+3����xm���1֤=e���f%���=x�
�u`A'*~S�G�Z��F�Iu���$~\���D1^F³��۞�Q;xe�ƭ h�lg���	��8<s��3yn����y�����d��jc*F����
U�v�d�x�:S��|�d_ݱYvϡ���Җ�VE@�Y��ۛ�x?�;�֞,��,�b�?��2:2:�A�OY�D��m���V9 �zg�}8�"���������q�̯z@E�L
����]�;��R���35�+�G�\���:q��R�G��#7��U?/==�<2G�]X�j�y�˯\�H�ҳ+��e�3��'8�P}H�,0J�� ,[8U�^���i��³C�j���}��@�L0o����.�OO׎�T�4L���Lr*ǝ�O̧#���~�!�ب�q�y]��zw?�9���P��n]��q��s���R@YM��r�c�`I�϶hd�,�4@�������;b��Q����a�<���T���9I8����ZwZ���\Cj���|��@c�{u?ʪ���x�T�,p����'ˎ�'�0Ǹ��U�
˩�5���cMgV�f��6�GP��`�`�$��a��u��%�D~�߳�����!�m7��ym�5��YEi\*��>m�}�@Ǹ��ͬ��n�j���

��?�=*���2�K�I=�'�g?��W%6|/�_�$�¸�i<�d�@���[�SGt��q�"/�~����	3�I<G�?����rc�X��V���!���ҿE��f��2Ll��۴��>��u��&�d�]�,�zKufϩo����T\�処�?0|s�����hH�C�okېnm7_{F� 7��x�~�漿�_����ԙ|G�-x��ﴺ=��{��c�1�k����aV��k�nַ�d!��ن[�랕�^"Ӡ��W�C��m������#��+OiQ���N����.��1�s�=��ۼ;r��v��#��QҾ!�_J��K[����%���$V�H;ǎ��x��N�?��ˡ����g��d�-�5�x�ᇃ|fW�_�>
՗���7O���g�~�FS�?"�w���
[���~.&Ֆ�!�P�u�a�"�N1�x5�]|1�V�5&8*�����*3۰�Gş��K�mC^��l��ϣ���&T�>��=�'���#����5�xUٿ冥9PI�oޣ�G׀q�J�^�3���?�'��^1��?|/�x�G�M�h3ke�B��	e�(ۻ'�����?�4�g�6"�g&���m�虲�B�@P���@$�X�S�_�G?��'�o�^�6�q�}n��|�=w#��8������V�Q��[⟁�D���	�Y�s��pF	9�'��W52=�E�C�o�O�O�hv��kp�n�&
&Cn+"�\7;O#�K�J��6��|E���/K�֙��$�؛�WզPO�i	�Y����rp@5��)��k��^���u��6�h��R��B�8� �k��?gO�+���>4��|mc��7	���0�wf-�`��O�/@Q�՜ߋ�io�����O�,.<?�k���E����I؇if���r@8]�3��\�!�-�xe�kB=Z(e
5֡�yK(�r��q;CH�`�[��sľ(��𗄾x�T֮�����2�͟�K��p�I���g�{������/�-��[;��ɦh�8R��iigPF�X3�@���
3��zM��o�
a�Q���>��}���U��l.�`�
���l.Y� O��
�S��>
��U�Uեԯ�%����M��ۀߖ!�B�c�>:|Y�_�O
�׼K��xOO�
����N�;}6�b�T�ƊN��y�$�4�	��?ښ5��-��V��՝�>��;y�h���97�zAg��3�l���h�Ic�I'8)?\����+�G×��~�����Z�&��_k����䏅�p��(�U�͸�ⵏ�^����
F��#��Zfʃ�T�mǷ��}3�A|�~��_��g=f�����a7���M3E⛇�.��[��!M��sJ[�1�n|���?~�Do���Z,���6fX5�}B�3s��b��ʟ��A�M¾$���t�;Aaw��0����(m�b�L�B*s�O>���<[e��C'���^�l��96:�z��<I�i�j�=�mc%�*���<�ڈ��9"���X�3��o�;�k���Zo��Q�i?ٺ�Ǖցo�$����H_��@^Q�����W^+�U�����c�;n-� 
r��W��M��	�>]?�f�\��с{I���D�u9VV��/Pp�@�s�yM��뗚�֫����e�5�8�F�*"�Q��<T�sYi�0�K�x=R�<�mk���r��0��FF����G�O�3^�W�[I|�
^�t�>�e�5"���u���X��ZA��W�/���;Ɩ�~h:-��f���K8�V4oM��6�eq�5��<9�=?��i����-�,��6��z�Ԯ]�6�RD��E'�k��s̼5���/�c����7V�1I%��ٕa�F��O�<w�k�)�Ωomi�j�_�n��kuq#,[�%wH ���5i,5;m��ŲBۊ9hFX`�����u_����g�h�[\�����l��
ڢ���G����2x>X$���4N�eg�p|�������k��RmF;]����b�L�g�Б�pk	�?x��^;�$�5��^]K�����&� ��=���[^9����2�麖�go�ٳ'ú�
�����E뎲1.�I95��x�[�`���杩i��̒]B�ǖG���O4D�Yةi��n���K�W�e�ݝ���$�8�B���I9�F�~�
֭�0~�SZ�m=��o.�Z�T��>A[��e?6���A�'����_Z\Ǥh~�{�x�W�61����$|tD��l�_�ǟ��|;ῆ:�a�7�mb�_x�յ ���b!�K�Y�5/{1�m�U'���6��j��Ě~����j�_�#6B��~;��s�1VŶǬ� Ky��������S�c�N
\����U�+q ��U�y��u����O�_j���Ix�;?~�B�E����C���ܡ=%a���܌��%�EJ���u��~6��%��t
n�M�y�j:��.�Ź���a!X���+��V��q|*��e�\�a��^+��+�Q�ܞH���'nN[��������9m��j�K��|�[;}�8���,q��$���|�NS�jk5�G�t�F�|�Ku�ϡ�&��T���Qܹ-����}�U�����Y�iX*F;�7@�~��|���
u�-G�j�
����K�|��P���v!}�d1��q��<y���7�|S�ަ�!�%����������F��Y��o�0�I�|G��������+M[��Լ_u��,����ijT���DFH�n[�W,?}{#Z�=���z���|l�įx��m���H�E����A,����N��d{d��-�x��LҬ�h�gʪ��<9�<���^#�
#�Ɩ���]΄�u`���F���霞x�}��(ҼMf�������$y`�^q�s��#8��,�$T���-����C�����m42Y[F��edF;�b:u㯯ᎏd�).U$�\H�̫��u��?SN6W$[�F|~�6W
�{a�8�y�T�g-e����]�h�[�I���'�3ߒsI�6��G�p�Y�8�$z|��=k��Ӳ�VTl��)�=��9M��R!_��FUK`g$�g����n�g&����D���eU��Lu����P����i#Y
��Xm�o� �c�W]w�ֻn��&df#'#��#檼W�r���e��!-0e����ҟ)]J!1�&�ۋ;BĮ���#��q��_���,]�E+m2	T���#�����v�gu &����3�n����F�A���hQۍ��y��ۑ�֧���m4�}$-=�-&q*�'��lJ�]Oܫwm"�xnp0[�w�"�5�,U�%�H���'F�������U�k���cWe�m�I� n���H.r�>h�Zv��VQ�b�8�=2��&��bk��iH�l�ǿ8sǷ=s]M�s+B�G X����rq��Ϲ�sI%���H�����#t��E r1�sӎ�8�����쮞R�����\��́��@�I��[�3��hp�|��x��#�t����c�C1���[oA�n1��k���y𐷚��F��G\q�[8�9Db�n�[k��m`���x�q��:q�뛑_��jř!;+���1ہ��H�;����Q#0E�'I9'�nz�ent�����S"��*� t��<T���w�}�r,"%TRWo\d�`|���鞴��[�l�����i��#��kY4�}#N֯�<�3ӯ�Lc�G�>k	R$KkxW�c>wA���ir�92�y3$v�P��_$�\s��=?k>��Vx�`�H��#*�'�Q��ƺ��I�I�.R5�b�6y+��ؓ�ҩ�����tY�n�ld��rr0	>��DqW��r2��
��q�v�F=���:�zE�؛�����r7)�_n��^i�Wœ,d��`�08�zg���c��h�wi����s.Z(�@WA�
����r��Ze�2��[���O3�g�;�3���5�{���.d����{�E��琝���n'������KSicb�:�� �����0
���ɯ5��Jxo��I�o�+o��*�P�BC��Pq�x���x���ݹ�@�w�~�j���"��tJ��{q�rI�$��~k���?x���X�/fin�Q�-���\��'�>����|Bڄ�&��j$����`p;N���fOؖ�\h�M�6+�f���	e�A� w=��\8�ž7z�Å��u}����I�Iew��L�g��e���<�[���i�h彵��e�d۵rp:v�����X�_�O��
�}����|�<��wm�ע[[h��F�X��*�����=��
�<V"�2���K��ap~�)3��|+i��oj����~���n��k�eE�� �nṛ�r2{��V�Mw���hB��Ўs۽>(�W�p�74n$�ӧj�q���煼����ܘ�!���q�C�e�y�$U+�����#�O�pkqt������H�^2��c ��TSiJ�Y����lS��Üd�c�y����i���CF���I:�\�����T��Y�lHc������H�0��6�U��OS�q�1�z��>d��-�aA�o�W�O�$q���Z�*���21��<���0B��s�s�9�5��7>xS�.���9�y����V��ﮕ��̙��V<��5v�4��AT���L����ֳp���F��Xڕ�c����^j�>[wS��yd*��ӷ��|.�m��ǚ�i>3�����?c���2@X�9FsϽg�߅�����,u+Y�kk�.��ׂ:��C��,<�9��+F`���v�%�X���sϠ=)�й.�B�,P�N:~\��WHtio�Ԁ�����u^�HW���%^�mn}�q�בX��0����J�+I�9���=��*l�O�=�4eq� �nr?����޹����ǖ�;��ל�?��+o6R��PDx')�8�8��ʲ���H�E�>�`e���x�ߜ��#��cv�
�����1�L��Ɩ�q�U+E�+��Ot���S�X�y��cfټ㓃���cZE�\��]��	&0�V3������O�J�x���|�]���˜�9?��֬)�"$?���#�qیcߏ���E���/���B�9��OOjW����6�k&�F��F9��R>��"h��b�.|�pW�g�q�Z���t��7s�_��9�=}8�]��v��+��V+����8�D�7([X�!W�u�|���G9�J�KIn�<��LyFn��m��c��Ή�i&!/����d��$�r>���ަM6H�2[�*,�6��}8w=��#�I��+I7��%v��Cg��n����Ǭw�k��U�n#�v��<�����;���2�jyVe�03�G����%pU]ZL��3�>�|��9[��c� y�]�?����R�+kw#H�)Yɏ�8\��q�����rDRZF�����wc�t�U�!��Y$i~f������~�w�W/����2��s}�:��?\T�[���"�nݴ�=2Fq���Ա�B$g�O-��ʎ�@q�2I9>�ӿ�їq� �{�l�g d�鑜�F���fmؒ2�=��v���:p��9�9�\�ʱK�peaӌ�?N�铊�]W���M�ȋ��d���~�z�k�
L9Q"+0
�vW�`����k9&ˌR�[A<��ͷ9��@���q���U�𾟪D��y<�_��U�0�	�>���骲�.=�� P3��=�'�S��aq�m��G�ic�^sN2�щ�,��~�K��h�Fd;>ѧơ��s���B{�&��.�Ԥe��sk1��D5�`6���+�JH�X�e�q��������B���D�,�(���U�#ҵ�j��O�3�t�����Del�|�vG>�y>ԡ��j�<yxn9��<v� �θX��e�W�� ��##�Y�r츗��0��p;>^1���)EnM�+:���O�1�����g�\ps�YK�X��`/�����>������
�R��r�_��\�z>�$2�gv
��9����S�}\�KQ�x
�y8�S�3�z��d��Y�c����H�c��G��5�%���9#�?v)�$c�z���v�%"���m� �\���qZ)'�.�%�$��M�XJ�8�ǯ�N���]�ٻ)۹�����/�T�ˈ���҅%�6w�lr�f��c"�*�g���Oq�����;؎��^qp�$�/��</_�OL�֪�h�Ϻf�E"?�=�����kLO*���b�3�i��$wf]�m�~F��@H���t��I�hӭ��#V`�����A���9��F��<��e"=�`���ܜs��i4�`�W�ن�T.O
�s�ኰ�6�����m̪���AϷf�qQ�zo�^�Q0�O�WYRc�P�~����Ϧj3n�ۉf�L#1V�t�����+v9^�Q����m'�{dU�h��Fd������;��8��X^o���9w9T���Bơs�wǷc�qN�s|��xm�8���s�}+�v��v�KEeo�B��9���?x�O�@���9��7m!Fz�g�qӎ��a*.���}X'K��b�Ubѝ�H#=y��qHd�Ȣ���hbG�$�+�v�5n})|�t�����=�^݆GC��~����s���\���]��)<��^�vp��
�q��Ҏ�Ir�]�U��^L�=噮aq�W���\u�{��z��A�[�ۦ<鮮k��N@�������w6��|�?�beS�yu��o�FY>��3_9������ג��Ɨ�1�Y���)b���
ӂ1��p�&"��*��W3�����}��G�
�?|1[�?O���u(������B0�!�G �?6�S���|h�Me�(,�?���g��ȗ�iR{0bHd��5��<g�ܯ��#g���ǫt�zt
�a�dfU�q<�r��ǻC+�Ѷ�~g�[������<S�a�?�W�R�i�/.`�/
2N8�qY�6�8���?vp�6��O#������X��@ѯ�Ÿ|�q��O|u��YEy��*�W�m�ry/n�X�b��Gc�R�r�m)|���cPؑ����8`���E���9��YQXmV8l�����׌��-���&����nT�	b�9#�De^�+!oV�J�U{���#��#۶�|��j���+ӓ��lӶ�5�`j�[�Uf�&�æ�s����Ғ��!��B��.�m_`}~��=֜�j�d���̥w?Np�~u/�آ֝��fY̏op���$!A�W�G=Oc�i�!�_l�@�y����Fh�e��x_LFI�{I����̖���To�����V�o-�/m"��R�ν�s�>��)W�&�!d�>�H�2ǁ�G�-�~��e�-!.-E��p�e�Ծ9�I8�8��l�m������Nz��8��U�i���U�
���E`���ߨ�קz�3ݝv���4�^��K��?.a�r�<|���w'��W�xwA�N���k�b�c��!���`��}k�tm&M>�������Hv�o���Eg��5�h���n�b����z�����ׁ�8��4�3��J���m�YZ%���N޼��q�K)��#ioV
�K�xP?Z��/.R���H)G1;s�������ݰ�B �Z9cM���n�`����{���h��:[���h�%�;�F\m;G�=?>qR]iV�V]J8zI���n{�L�+���E,R6�U�D;16>bÑ�O�jMk�L��l$g�j�;v����sߞ�qa�̓�^���k`[z�$�A����u�X)-|��q!RJex��a��u��t��>O�OĂF�J��'(G~>���������e��c!ܨ	��ޮ6fr�<�_�w#m����,e�*��J��=p}O'�{�ꟳV�sp]�#����E\��Q��Ǩ5���e�{�B����Y�
x�<��~dT���jY#�~�?wo�����zzU{�C8�S���e���~�a�����ц\�$��I?�"���Ey�m.��gh�,hq��#x�޾�k�n
2�c\2�N�g����-����h�m�1����N�z�r�3�~�PY&1��O�v�*s���zqһo~�u�YV-�R�fhö;1`9��ʽ�lt��+�|�>Y	8���8��윻,*�0��=p:}k>[��q~�+��m���9$1��z�7:���
�šV��>�(�+, �t8�I'���g-l@|)�쪆>s���3�sV�7�x�Y7l�V������Gqe��8�u�ɵV=���׌��hy!�sźfT��+�u��뎧8�L�Z{�q�r3m8��O#����k�wW�g�.���ns�n$�돻�=9�񐔹u9���qͯ�~�o6�ЎSk3S,e[%�ݸ�ۃ^K�?�U>if�G���M.5��/z����"�]�^k��i/������叅�d���n��0��@<Glu�_#�A�0���[��j��I&��[�WpGǧ_���DZ�,ME���O���DxTK
�o�-���փN����ֻo��ڼ(��g�i>_�>���}2::��2Oҿ3�}]��]Y\$��yeON����~4���FV��Uv�������dG[���W���p쇯ư����*��@wo�3�*W ��?#�W�g�������=>Y�z����lヴ�=��~�dȢ$I6f���N��~�8�
 �_-��e~8
�=�J�g�5��h�-�w��i�^?�n<�—�g�<�r �s�ʞ�ݿ
�,�m��Z�n��-�V��ؑϩ'ڿ�(5;�P�K"̧�[v1���Mu����7�"u>�����fդ^1��{zc�����8�SG�ul#-$Ϊ�
��Lc�s�S��(�L�3"� ��8�~x'�
�zxaҿh=Zx��j��FH��2����j���~?k�m����k�+$ͣly�s�4�.Ƒ��{J�#���t�8R�|yUP>q�g�]8�+�;���J��ϯ8�G�¿0|�<��!~�qQ�I���:������ȯX�o��<�	C���Efb��Z�r�g8��'�lR�t\}���gݩ�y�de��.�#8�s��Vf�gg�ʻ�s%�1��=�+���X?`?X���=���>1�Y��[$��1���V���?|D�Q���Va��u�w�:a�0���)]�.�k=��j��L��`�u����9��LX/�>�~��4*���c���q��d�}ݗ�Jo��-��¡���W��Ӝ⧚�O��JƠ��b���2}1�U������ȁc���6A�H�;s�ސ�����t�t#��N���~�� nf;݇�����{qP�A�$�P��H-�s���{��B!��#����v�6��קoϦj�պ��[,�>fN>�{w�w�MIw}�����N:�:g�B�,!**�
��1���v�մ!?}����ꄉX�������B������L㎙��9bJ¥��n�d`c�0z㷭Gs�Il]x`�2�:`�ߵR`dʬ��;G!۱I;z~�}�U��\C#'���``�l�{�9����v]C#1���9�9�<���֧v���>��犠(C[u_�~f
!S��}Ǡ�Z�%�P��*w/
�J�{�ӧ֯�hv<LD{�+�;T���#۵�󅲯�7,g��y>�^h1����^��]@���t�jo��\\.A�ԟ˹�<֔��B�$,ͷ�~�[���£�Րy�*�m L�{s��d`�~iu�D��

͔3,��HU��'��_�͗���_1����
h]�79ك��q]'��C粴{[�S���>���1�X��:�@`:�9��)؋3��!ӼI�ڪ��=E��D	23�^A�Yd񎜬��-��"��VQ��'#n3�G��o}�&�VS$|7�w���{
#�H�6ƪ��n�;�x.�V�1S�n�q��M&o���ZX��1���W������W��D���-Z��a�˸ �i�s�1ʣNrK�n+��
]�)�M����&<�g�=��vCH�Gϻ���g�j-�>]�?���I4
��gݸ���\[��r�����GJ��"������W�4��=R9��7�ʾ�H�+mp�[*��^~�8��֢H�_9�A#.Sw�|t���(ɢ=�7�����Km3�7�5�υ7�P��uM3Ǟ1�[�� ��c}�P�fRA|���	{�z������o\�6���ԧ�yXrҩ'?_A���ꄱ���,�/������<�dtq�Sn���4h7�8܃<�O��W5����G���j�/�_~�7��8hn4�Y$۷vH� �#��ֺ+���ş>C��E&���M?�߅��o%r�E������ ։���-�i_���9�9����Y�VK}��/ȡT��������G
���օ�����G����;h�/�]HZ�P�h���Ux�zԺ��w��������=�b��?N�1�22ᑢo�@��?�"��v�]�F�u��2)��p�y��^u��'��u�;ߵ����]�@�h�g9����gzQ������>�.�W����4���]:�Kyo<G4�ǧ�6�4s�ѓ� �c���o��_?i={�?	~/��7�.�y������~B-v&��9u�8�������E�m�[^hzG�dc��n��0��۸�
��cr�n=rk���"���jK��ߴ��4���?g7�ׄ+q�,�yRG���2��&�?r�'�_5k�"�TѾ.hw�,Ѭzt�#y���}Č0
� �ڣ�|[�M��6�K�Z�\���M�[�)%p0���OM������"w�u����÷vr7���,��Y�$�I�b����_�d�1�ğ,|G���x�ƚ��P�[G��+pc��đ�Œ�Z{Kѡ&�>=�����z���ͷ�yq��>�ox���Tl�۵p^+�c���x��4�+�LJnDd`�)��wn����_���W/��ѷ��x�\�]�x!����C�����?�]����������{���^x"��܂@C�d3��(��4�4����፽��x�źՅϛ$rZE��\l��?{�����I��g�7��e��?����6˭b��Gih%������w1�W�7���~i�'���'E�5k�w_iwP�4cvU�ebQП�<פ�š7�4��?�v�q�c���b���$��8�J��</�f����ζvzΉ�--�L���
��� P��%g����=�^ڢ��ݮ�V(aO1�iQ�$`u��5��c�?���b��7�e���k���ӹ=�'�����|Y�V~�vv�{�O�Kcg"��>�`�K��9�����_�rԭge��F��>���Z�L��RFyV�_#���Oa��<t��h��g��[�h�f�G��][Cu�8��4�8�ʂ[����?�[���}#��I�M�Y�M�k��e����9<בX�r�P�G����f��zu��>�G)˚��ձZr��>'~�?�5��}�-q��g6�m�yv�8\�@}�{t�����d-!C�g���c#��zVσ�Or���ഒ}����ϧoZ�O������¾�ƭu'�mkk�F_��={��2q[���Q��-Y��
މRYH�dq�=��,����]�&����9,���B$`H�t=1�rFA�k�f�&��;�A��:�o��c)��%pr�q�����}[�O���
f4xN�L�5Z�Y���O~��x����}!�ׅ���X�M#P��%�U
�g�a�ץlY|/���M1�J�z��ry�#׭{�����U^�w;I��{}x�V�E�̳_mD.�	
:�c��9�(�7Q<O��>�t�x�v�4��$�Ϡ�C�N�^-��M�il��\'��3ׁ_d��/�O�
{a��$m�H�T28�N�_�W��z��l�8� �H�*�"O��᷌��aq�\H���D{B�{N^�ۍ3�VѴSiwhc?3\Bp��H�9<��W�W�����~��	|����B��9�N?:��f���Ec�;;�s�a�'@<3�斠|X��,�|��#��[�ӹ��A�hsM�h�#˷��)��緶s�"���?f�Z'�?�����w{M�1��?�x�+����*�yWz%Ξ�~X�c'��G�n􊶗>x��n�e�nmQ����N����9���qr���"�F̫����FG�\{ׯ��@ϥ�B�UnA��1��{�+{�ƚ|��gz�&{8D��`r�6&�I=�I�ݽ��g|�Ȏ&T��s�~84�b�6�5%�oue
��{t�A�z|֓4�H�w�{��\t�?�ӟCW�,�c6lۢ���pq�g��D��sikn�c�ҡ���˽I�<1��}zwO�r�v6��_28F]����?�J���
��X�eo�sc� ����Ao�JcM�{vYA#$���Q��9��I�?�,Fƌ�ߜ�u#��}��H�J�!I27;�'<t=�G��f�:���p����I� s�铚�~I-ټ�ɘ�߀;���9鞔ɍ2�g�*!L8b��[��>�_�t���oH��6���9�{����/$��͌q4j�3n[�Nq�W��եa��7#rrq؞NG9�ց��nt�e�<�rw_;v��~�`{g�ӧ%��e����=�3��pn�Fz��@t��i_i3ɨ%�*G$��x���89��b���ݬ#V�H��G�H�/�p:�F?��e�,���&�99�8�q�P�
����j�koj׊U:�$z����5]F�Gѯ�O��z~�./&�U|�}�̤q�A��o�T~��!���֚<M$w��	�[����G
9�	�L��5���?k];��>�M��
CT���H=�@>ۆ�v�����/�-mlt�M��!I���\�I��<�{�K��ƻ�P��O[�>7O���u�:u����_�&�Z[뚢ƒ�`��6��NO^�^.+�i|O�:i���<��K��-��-��Y'�B˺eG�� c�j��E�^���GmqD=��\�;���iZ�V�bX�UW�݌��8��ބ���*���?/w1�p�y'�q�?¼c�.i�OJ�c
�i��cV&?��[t�{�=�WJ�H�cY��|�x����ק�޺�T���y�y[#�u�~�V��(>R�%B�{v#�G�g*(�Rf���xYU��0��d�|�7Q[���L�ņ�0O���-�F$�4�וޠo��2
UHB�F���,������S�5�*v6��1��i��dV6'v3��~9�-E�5��lq!�Բ㎤���N��yl��"�R۔�B��09�3PMR���e�J�/N��8�sJ�|�4�ۈ�w�c�$z�<n�c�!����4i������O^�ϛ-4�,d��Y�X�x�zp={㧽5d)�o2<�����?B=z}
K��w���"H�c
����t�2?.�� ��i
��U�>m��{������FJU�l�f � w���(k�vCo�j.ҫ�s�RA�s�TKȵؙD�1�w*ɵ}:���j��	�6�mv'�1��:��߅U��:�6M��'�ddg$��#��E/Q��0ۃӁןn┥����~
��~���h��H��L7�,� ÷n��>7~˞9�5t���_h�fŮ�,��F��9�\f���hw+{��N��vE���da��s^բ�ٺޯ��/�o
��I"dYي�.[���u��dc��E��>�fcm�����.��E-���u��g]O#,gw����q��Ԟ	?J�<K���9ѭd���V�,���a�=��<VKi�ch�.�JP�1==��y�(��v{����.yd��1�ݢf�g#�}~��m<O���9�r?_�x�cz}:[(�2��KI0*S=0G����P��#�o�fy��+g�H�F*cM�t1;~�~fskcv[;q�
���nf���Iv��20T�=�<��Z�7�����?���>��*ʊ[��
ǂr=F3�zT���("*[m�|��j�9ǩ'������������y�W��Vh�*���%���?�JH�,�}�j6�����MW,�)��3ɋ\���o�OA�3�3�N�S�x����ǔX՗fGC�c����}��4�n�m
?|9�1����F�U�J̷[���p?Lg��K���H���m�[��H�1����U��x�M̊�0��f瑜����5�q�DL#����r���xo��qQ�5w���T
��3��>bpF=9�+7F]�n=$���0|�ܟ�������q�~�j�n�0�dR�C����1���{pj���ʂ�������Ҝ�����a#ZM��O��:���N1�(�j'��!�
�w����� �>jh쀳+*+e#TC�r;ӧ�qW�<cm�h�`Rp6�A#'8��5���4j�6ʩ��G�:s����NŽ�Y[���*4���d��ۧlzv���^W�6�b�^T�Q��z�MnCD�g���%9�{���&C�@�fУ�{��S�Ff�Gp� iO��~Y?�v1�׃���Zx�Z�b�x0�Y@�x���ʰJ�KwefQ�+0�p��׭Ht�e� �<}��<�{���B����%}�;0\�9�����S.
IJFSiX�U��)���8���P�#42mPS� ���UD��Z8J̹o���\c5?j�J[�>X��n,8;���Z��iDR�;$�A_-���?)��B:���Zy�2+�]�t.OP;�NS��p�F܌TF��ă�iC�S��n�ҰrFr���>z��<��If��l�^B�m��~��U�mx�9qr�U�T�2N8��I���M!^U�m�qӯ��`p��K�7�`�r�m���?ʏ�r[
���/_�8�~�/�0æݣ���8;~�FӜ�q�^��-tȼۻ��ܷ�q� �d�=q��[Fr���
K���@��m��O�'��88Q��Wm�k4��(�Þ������)�[{{��[��ە����䞕F�P��v�m"����9ܿ����9�-+"�O�\��V�	!�H��1�8�'>Զ��_��BO��$n�x����֖���kx��Hc2D�ۂ�R2�?�'�u.o�U����y���n��g��1����Hci��o�>d�FĀx�7OZ��K�$ZB����B�`R}Ǧh[kQ�&|��Ufo8q���$����E���3�����z�G�VG5Ѧ ���>nrx'��p?:c_ګc`�%9�ӣz���_-u��Ѻ��g�����A�i�E�,ÖR��~=z��Zƪ��{91���B���w��*���SoI�d/��d������}ƪ�I�#]��4���:�g�ϧ<���<ii��K+1X—X�߃�;sړ�]I�g�_�T�ګ�<1��1���~��H�V�����p��6�0��Ì�_�?ڰ^޶�utY�3H������sߦs�־����g��4�^�L��wF�o����r7F��X��~���Yc���)�k0Y<����:���=L/�c�{�+����$�}�V,����&�+Ff\H�!��?.F9$~=�B��_�mg��34m�̥��ue�8��+�?n�_*�)c�لGp �I8�;՘uY�*D�,k�t}F6��㧭{ٽ�G:�;m?��m�[�.�󫳴8ǝ�I=��ү�|_��#��Йe۹X�G�õy五��洉.�?a��9'�<cӽLnЧ�'L�\��+�c��O,j�H�=*��/�'x���ٝ��lk"ā�OQ�$c��[�^�1�3����.&d$[8=��^'��&Y6��),�u�N��n*EE��W��`��y����~Ɵ�]�ďr����u��m�o/h�B��'��Q�w��:�O2ma�+9�Nz��^��Nn���El�q����<�8�i�<���ͷG�-�*�|�$����#��:�Q����qAi��G�E"g����q�֮[�Q�g�ٶ��^1���;���g�׌�|t�֜�U��7Q�^djv��q�O�s�Et6?���m:׆��C���r=�y�*9j�i���i�T�e�I>k�;#�w �!�a��Kmo,�g�'έ'2.dž$7}�cw��כh���é�-��4�B�>�ى�_��<nۂr	?��h?>�,V��$��9�;��;}���h�>nm��H��5X�i3��n��A8'���m5�Ƣ���I��Zv]۔��Ip:c�����xGQ�ϴ�n�p�<��r�mP��/PEw:M����%Y��TN$O,px�s�Xd�;�$
,�J��R9�Q���3�����<�~k�ӴX��?��E4���
n)�1�d��@���ZBjL�/�UX���ă�錎8���G�E�x��Ö]̽H$��x���PZRF֍���qF���*�X�2�'���W]����ܪ��36֚B�A=B��h�|d�sOn񥕴2��V�_<rq�;�kB͑�E��p7�l��q��Z�huLڕ��#�g�v�G#����s���-OP����n������ ��|s�~��cM��ۉ�0�`P.�=xl��ⵢ���M{���#�9�u$���"�PX�����Ѻcl��q�����C-�p��+�S&��x�`�#�g8��\�2��
�v�J�`y�3����,��Cl��|�,�w��A�N8<֋B~"�Kkq7�q����X�:��돡��(k!.�t�,��\d�|g<`g�*;y�F����ۍ��x�ƥ�K���A�ۖ�S�r}�9��&ښ+c��L�$����Vʪ�6�8��>٢�H���ͭ�J��[(��r@����Ӊ
[�Fxv��Oӏ�h[�ywm$.�yjU����{��Zԅ,uv��$ߺm��
�Ny�a���Z�}Av��;� Ve\ԩ>���������8i������=q�
ҳլ�f�dTUY�>S�z���i�ͥ�i�ݡ�ꡁRQO��:���g%���<
4�FK*�������8���t��!��
��E�9�؁�c���o>����VM��%
�^�t�w=9<b�)I�m#ZC"���R�G򜯮OQ��^jy4;9m�:�F�NG��T��Q����pk2ɴ���.�5�Hܳ�#;@9��X����Z��Y����N����dT�ݶ�1���^����6儒G�ϱ��f��k�L�&��
��g#y�o�?��g�^�8�'�1�i;m;��1����?ө��{T�~�4��]3����W��^�t��d{83�~�~
{���䑛�Xק�O\zW���W�k�eg�"H�63�1�Fz�"��}R���SL��a]˘���O��C������	���|����/=�O�9�ԙ���x��	����|�H��v�mC`��x������T��n�5�+�q�2v��7�`�çrF:��&�g`�5��7�#e��01�}:�n��3P��0[$�ʻ[x�o�qǰ��3?b�����'�����4�'O*����x�9�ֹm[�(��gfd�O�d�Fo��*��?��c�����Qyr.����vi'������Kï��2���+��I��b~G���ğG">�$��0����������<��Vio��n�U���`�}�y�z�����߃t��^K�>�]̹�o���"~�����>
�9�G���r4޿z6�������5:�3x{��躄GeŁ�/'�<����L}��K_'8�A�\�5����
u֒k��R���c�1�3�q\?���n��� hݕT�����=�'��sO������{a<����I�n��N�\�z��P��I��W��EPB����ׯ��Ҿ��?�N�ɥjٍT�ٔvߟ����	����p�1V�͏�y##��R�Z�ٵ�xh/�>���C�ȬV?'T�v�����~u�~���~��1���z���V��H���z�ɮ?�?�g�]gF��#D>V�!	q�S��SP�+�L��|?7��n|��1Ԃ���ڗ�L���S�G�ֿ�]����(��A�M��n�E��)������<)�����n�]����ظ�}�r~P���:�Ҿ�lm&F�+(6�O_�x���3��N�3�c#0Wӧ�x�tbh������?S��
X���_�w��[�=�g8C:�v�U�_��f���k���iXk=R�~y�(��8�_���^Z.�I9s
��r=�Uv�E��e�y�<�'��~���K�4Y���E�����~ƞ#1y��
:F]��hi�(��7 a���Nk�4?ڗ�m񜌾���{��g
���'>�s�t>����_�V,��j�Pl�e�@��S�q���ֵ���A+�x��F�UZm�l0��#�}j}�E��8�?j/���R	�UV�C�4��*�w��/pJ��֋�"�8�|r*��3/�x�⿝~ԟ�37�4�L��ՎF���b3���~
����֞X�Ҿ k���:��烶P���T[��N]Z�?tE�IQ]d�nU�I�|��O�����Fߔ�������{W���8�g���s�1��D� ��t��Hb��A㞵�>
�����Z�$~.�'�4}�R�s�<�!���J�h�J��#�I�v�bY���(S�c�?�B�eIO����7m��3�ç5�
���~��;�V��:|�2��KY ���@��ֽ[�ߴ���͒�;�W��Y�n�1+���A�Ns��s�_+{B�r~�*������g��H#y�a
�*�0�$w?O�r�M����6���?��\8`FG㜐q�������H�Ce�m�<��E����\\ζ�ù|�&�G=}խc�Z��p�뷆X򫃐�3��L��h��6�f5�ULy�>�L�f�$��#�r�xϯ���#֧��'���j��C�Q��=���{�����^��~�t�֤i�D����玽��Z�$h�Z]VC��,X��
F;dqQ;|�{���O}j)-�Q��)��U�?w����
���a���'�Pp6���s�R$
�4�c��	�����Np�˖_1~b��nQ�T�hX~�|��{������R1W��v����pF~�Q׷jk�c��U˶;e~Q�@i�$Y#�k��ewFF�s���Ͻ1�H[n<�w8���L���V��)e��2ޜS�Y٥1Ȫ���29���ymˀ���ɓkrx�i���1�f��+l��F1��/�Ҵ(��/˝��9�Ta�A�-�V`O>��>�>�ٶ;I"6�R[frXm��~�hɕ�2�����I�$��Z� m��F̘��ޜ��a֚�u��̬�ƒ۩��@�h�Y%v��w��=�>�ٝ�Ug���ι�<��v	>�k��O�O$r32��,�`���j?"$m�nܭ���¶=:u�:�[N� �	BN�}�z���T�g��ڰ�e%�x
xs�c�9�j�@B��v�C21�q��}������߂�W�S��hw������A?"���V�q�6�:)M��iqy�OF7I4�T�I8ǿ$v�l���o��CI����Gmi�j&���.>R�,y�=8�F��?૗>$�O�q�/��K�����;��f�_|J����ޠ��1�d�
|�XF�-����\�u'4�eSM�*�#GH�}�
+�kZ�֗�k��n��jM�J���e7d�H�����=W�,�mg�Z���ԓn����{�������N*M@���#����i�O���n�1^�ெ�,fm<4J���|�r$���kH=�J�g�?�|5�y�A&������_��}3¿�lm�y�dm�;�;��~Ons����Z��
��ѮYd��Ԓc�ϵm�v����C�Y�rKs}t#��ff��؊1��??z\ґ�h��i�4�9�|S�%��~i�sy�Hv>�G˻s�3����+�V���~�X�8�Q׮��յ�x�F�X��c�v��o؏���
�(�<B����T�6�y�0~��8=9�^+���xVĕ���@��aO9�y�3St�L��(�ĉ��O�����t�׵]�N����i��)a���=3���+Р�úWz%��|���zs֭��.�c�˅� �8�<�y4^�X�.1�nޠ����x�x'��Ȅ�3m,�K2��灎9��|cqH�Wo���‚��<�C�6�'�vW�h��s�#����j�A\�Ь�m�J=F�J������$y�y�1ǭzM�����)!�c�,27#-�q۾=q\����H�?��wF ���4���/�K;,�Yd�x蠑۷^jn�vQ��Mّ�cn���$���۾dB(&ۅ�&Tpp=H�������`�
����[��t�~�$:�@�o豮r9�ǯ��U�Ô��I
�'em�vF	������#ú)�����=�S�t��s�\rk�~(|n�?ͮx�Q�e����,g��=����5k�(W��+jW6:Ķ�d�O���܎����u�FG
Yʲ��\��y�}U�K��I>�'Q�/�JB���htۑ�l����*�H���|���
]�G|j��g�}��i�!��{wi-c
��q)�vs��w1f��⯃�U�[_
��Ƌ��Mu��~Ѵ�"��q�?*�
��|��#�2��Yݰ���dY..�ґ�z``t䐅I{�0�˩;AX��ܒK3*�ͷ�NI�s��\��6����oV���F��#�q��Ҵ]㸄��T�!q���u�����br��3q���@�$�Dg�QfT����IE���I݌��ד��<†�?�j�����ߞ:�c���Iwz�mԷ�ʱ�q���B:c�e���m]G���6৞�=i�(�����Q�,�n;��>����we��p�[�^���sӭn.�qm��2��²�z��?1#��@�9�N��ެ�����;[ �#�R�ty��H���ѥl�� d�ޡ��wU�_,�2�g#�8�}kz��C,�ȾX®�z�����<w��XE*/Rm��d�E�v1�_O��悢r�h6��N�}�^<��	\����֨�E�'�~x"���-a-�-�`m�-$�0F�J����O������2h�j�'?m�."o�h�M�x
(��#����ǟ��'ǯK�x����%��������08y��V5*ƚ-A[So����|i��嬴�m;ö�9���]�B�1�7�PG4������ս��$vq̯
��;�˞2	$c�L������f���X6�eh��(<�'�7A������ß����#Y�bƿ*��#�n���<j���e�On��is�8��P����M&���� �m
����DѠD���7�,~n:�z��یl&��V�ͽ~F�PO��j�YJ��(��Ѳr�Gr:�Ҍ#���`�bDIXl�r��e'q�t��
����U;A;��{7|�������h�������F�ߎ�ܚ�x��
�]�U�^?��;�E����v����\�ۦ2=:u�U.l1$Q@�7b8�v�rz��?�����8�v����q�g��ڨMon��vV*v�'<��c�氕3X�¿�r��̏j��ࡏ=��c<�Uͪ�u[����p�G�p8���\���ݧi`x�����Y�V��N�vI���y#���R�����РI!C±U�	� ���r����.�wd�=A�#�Z֚�6��E�Fѹye����QC�M!H�����{c�?�Z�=
53�7ܬjȧ�-+c9#9����#�c0��n�f�?+���8lz�G^ji-��~|o�1���L�Ҝ�=�6�}����3��0+��2)ۘb-"�j��������Fq���Q�&�l�����Hp3�NrI�^��[��/���j�h��c8�ǾF�o7�,�no�󞟟~3޲�+�_B�f�Dѷ�i2;����"�2�����W�
b�篻z��.a)��G�M�6�v�<`�<���N*9���>i~C�I�@뎾���֦Aq�t���7�nw���rF8<�$S�KF̬�YQ�4<�zg�ңi*��mƒ��3�r��==}B)���a"�w��
�2?,y>�=
��x[ė����C++��ǕW'���l�������O���xW��uH�>^�c�������ھI�.�4v�H���͸�Q�Ӝ�g==�jZM��e�M����%YO�}x�c���V�K���:��KI;3�>5|�~x�M1��hXoqS�.r2���?�}8�9��C�K`�����8��@����S��)��u�f{ͱ���$.�ns�w����>|�>1_dxkR�[�R�
��F=���?ZR����4\�FM������dEs��UV��$��{��-�s3����0� �9��/�_���G�}�ž�;vb�q������+�M��m��FWp
�vH����j%FT�i"�5(�=
S[][��2���{�zq�^
Aoo�. �|��|����I����e�?*��t�Gn��u�y�˽��ܶ���1�z�-�r~��[r�(#�3C�i��O�'�׎1�:������T���N�ۨ�*���8*P3H3��n<}�=���U�V>t_+ �Wi�����r�.<﷝e�,�P~a�=�<v��3��VH1�'˃��>��ޟ\�7�?.k��#��y�*ƶ�@w�h�]���0�Q�w5q\��F��6�l�;W��{�P�α�W�e
�s�ܜn�t�M$k�F��6۷p�ry���Q��N�d��~EVw�� ��c�Y"����#��;t�X[h��{"�ݣ�!�O�Olz���~Ω D+媀������,V�s!uel�'u�8�p1��1��@�M�)��w=�����~�lTqh�*5��F��$� �7���}�S�Uܿ2tb}�����
�m��N��8���j�;�瑄�40�����#��#�df��R��!�}�ڻO*8�|�t�&�F��,g���bO��w���cP���yo��-��	�_�&�ٮƑ��\�%�iϏ��\n�<��ǽB�
�n�pN����n�=8��
�,�`��ǵ�9��8#[��Q
�뇊@��~`:�oֲti��#�7֯fP�7�7�q��rx�[�9��q�H�r>�={���(,?m2mg�bTp�y�!��8�c���ix�>V��`{�?<W/,��-Ey`�I��CmS�^�Ϲ��/V�&[VV�T�1����gױ�ۋf��k�r@U�X�����^:sV
O樶$lWi%v�\d�ב��O�\�n;N՟XwI�&��9�/�A�u��Z�Z��k���|¥�7'�����NKY�ZsK�O����3�G_njy&�F�P>R3�sǮi�Zk���,�s��!�H�'̚B0�#?�Zϗ�ww�?"�h#��B�w�?�H4�q��C(�p��q�O�4Ck$q������\)�r�)�Dm�(ރT�--��"���J����:�G��7�d�|�T���cg�eƳ�{��n�~^���'z��\F�$�$|�Ve*wg�`�g<�+xJ\��I+��y �m�Y�
�GA���Q��*�n��Y~��nF:~C�~\TEn-��8���Jx�N*|VӼ>dNٛ�n�@��{~}k^gk;t$�)P��m̘;I�Ƿ�q�O�Mq��!��`6�\� pO��I�r�WܼmU,7zzv=FzS���$̮Ѣn�s}s�z����\N����_F\��I �:������<:�Ѭh�ϖ^F���{��ִ/(�Ѻ��H��r�p'��Lv�J�j��R������<t���Q�2<��	�}bݬ�I�vw�_$O?0�n8�u�럲���R�u��_d��/�y=�ާ�+�v���/���8����Nj��l"ݯ#�?w8�3���A��Ӛ�ӗ5���
v�G�z��A��P���C�«yl1�'��}3^c�/�'��F, �<͹�8��������25�lpDH��{�zw��k�s9�n����ʎ�=3ڽL>2��7�gZXIn�̏�65hU�M��6샕� u��޸����	���W���l��t�z{����o��Ԣ�E��2|λT����c�{z��5xSQ�>��[)����#���{v�z0�}M�JG�x)-��Mo�f�������۳*�m�u�^�]W�>3�$1�>��Bc]W�@�8�9�۽O�F����M�v�~�	yg�p=��J�|S�;F��q���[��b>�@=Rq�Eo���P~�;�,�%����`MB����Tm��ea��}�=���Q�l��Zq���}�]��;���'��5	$ET���`�'��A���דx��	��m]7��,*k���3���׊��tc�Zm�(�������3�"{������휎��I��gb�;G\�<���q_[��N+}A�B�X��Dj0��7����MC������ w�;}q�Wu,�/��X�]��C�Qui<�ҩRT,�(�{��c���$,��F;�dq�t�;�u�^(���4h��i���D�����r03�c߱�V�A�CIO+S���[�;T�����]Ա�:�M}�<�V�ę�����Uf]��sp0p�}�>ձ��G�������+���,we�;c��2;�w�;�/�vdCq�\F�X*�dn�q���*�M,7�$-��	�ϯ�tFT�L��q�z߇�k��>���N�Wi�H_*�H<��N8?J�1��M��+��ym弰&�:w�� mWΑ���#c����0s�� _�K]�<��ʻx��3�Q�h�T>��g�w�ir��#�5�1�ϝ��=��`���~��gK˅_�I&���#[���m��$`qߠ>���}��m*��>_͹q����ߚ`��Ϝ�����\n��9���)�����>�g���Ռ�0-q����'�ߏ���:m���i�Z�9�v�y�k��?�=������+�X���}����<w�&�4��B��4_ꐳ+˨6N{��3�j��i��ˡ�s�I�1�ĮQO ����LVI2��[l�߶@[i����W�ޓ�b��:
��i�ʖF�e�eJ��g� �g�+�����n���cG�oE���b#�A����M��U)�~�#�H�$Fܪ7�o�߯��i�ő`���le��ps�1�+�?��X,���a��EY#�\Z�t }/z�?
��N>�0��n��i�U��0x�ޫ����-�����nn����I�69�?�\��_7υdQ&w6��.:`~
�?	��_�NJ�Z�I�����g]�!
�=w�qڻ�?�^�?�t�zŚhw,� �<n#��9���Q�ΰ��;D���m�r�<��Զ���k`��<��³��R���9�����
����ӧ {�Zp��wh�_������=\u��f�Zyw	b�/��ϡ��9 ʞo�I�27�m��z�	_1�2�Ƿ�E�r�OU���t�6�Zlě��rOO��"/&G�cv���z�9����٘��Ξr��“����*h�I]B����Y�;��t��Z}�Ӭh����2C�;FHy8$D�rkm*I�p��me9��x������,��n0�\���}�-��F9������Ӷ��o��'���s�w�{c&��ڕd�h�{�	�v�m�1�<���U�Y ��Ee��ѺFz��t�l%�ڢ�k�|�yl�}}8�΢Hg�60^²:�E�NI�q�	�Gǽ2.-�Y"���`;�%Ž��U�u�q�Y7�o�d'v����]юGaG#<t�
t�Zɧ�۽�{���7ʾ�xl�O���=B;�瑦UfU[y�+1��08x�J	3/�;�}\Hm��-e�����n�>����q-��"��T�����2	����oO	`]m<�w[��~o���梱��U���o'���
�#��qV#���m�8b��������M���Ӏ�����P=�x{΍B�ɑ_?t��q]vS]\ʰ�]®�b-����ί[��(��e���Y����s�y�ҽ��8[�}B�&�@�,v�nU;����t<�5Z�Bx,ٓN��R����O�z�׫���P�\F�U�r	�n��P��ɍ/���+���:g�(����|�ג���2�m�O%���Ƿ�G.���1[��r��Z�y}z��^��𶪒�h�f�p��q��\��8�if�W�VgI&UM�l��s��>�9�ș�|9Ҝ|�Y4�*$����a�F3ۯsTu���C���7Zd
]p��#$��:t�Gj���X���Ŭ?���g����92s�ڬC���,���My�%�fg����_\Q��q�|�?�[�J�/
���2��G�����O��[�ݕIWk�-�F2=s�}K������y��+,6������9�j��Es�h�O�,�FY��wp@��ϰ������������1|�ѳ�NI>�~]��0��iv�Gc�ym�Y ^��|��鎕���e�]���p����j�X�9��#�;��[�p�:W�R=y�z�$L��O�_~�r��;y$YX��k‚q�8�۵q���U��-#C����'q���~=>Z����K5�ײ?v�C�U�����9_�{\���Y$�f����U���z���׃��43c��T���kn�E��*���>bz~~��sֹ�[�w�t�I.�i��qϖ�p�^}0x��Nk�.��pi��"��/��s��=O��ȮgU𖇨4�z�x�f�8=6�w�*I��}*���d�۵C)�ǧ$�g�5Zv�G'�p��C.����Ө��o���N��b}9��³������l����Ky~�͕N0���9�c7E��>ou-/��m�)�p��{���m���h_��1L�����k�u�B٤h��_�!v�$�@���Ӝ�9��̺Κ�-��N���)�#�����4X�Gc�����~�߅>-�h�<:��	�1�u��]z�����_����>?j�Q�^��q�ӝ���ڼ���O��$e:$�|�����8�y��=r+V�[�5�n����J�[,z��	�ץO*/������߶N�g�q�oXڡdi4����#����%�k�����f����L���`{����M�9��2$��xTl��H�:s�0֠�;�n~��+mT���^�x��q4��#���?b|
�����r�Ğ�>���|��=�\���#�5�^�����^(x����22�5c����~���3C41(Kl���v�g�1��s�qx�n�ڼ+|�n�:u�}�1�Sٗw�E~G�q���f�d��
�HS�5d}r��w6Z¿ٚյ�8���d�\d��ҿ����-�ym�jF�o-�?�8'9���c��	M��	x�W�e��k}Bd�:g�n�����.��Q���uF��Y�÷�
�q��#�ץCQ噙cn��8lt�ӯ�>������
e]��֤��[k��4����+�|����50�z���E�_i	��nR1��K�F��a���?l%
�Ȑ�I�J�`7�����G�Iu9��en9��_��
����!�q�~�u�Ud�}���Gf��9��o�����M㯅"�]~_.�x�UI�w���Siv6��Ki#�	`y�xc\ʪ��;��Î�c�,�d�s+n����zu�ӎ��׃?����Hy�(�i=0�ƙ$`{7`g��^���g�S�Ԑ�Ꮟ��A��Yb$n=��N���\�=bI2��-X�����t�ӧ�L�~��´�+���3�;Nk������T��K��4kաԡaӡ��?[���w�֒M�|L�lV?����)b=�s��0�c�u��+@@ts����{��2K�k+v�i�C�fy�k���w�|��[�
���*��/5?��n�q���?��6����J��?ి>=�τ>�д=�c0��z���ܜ�K^��Ɩ���`�e�/O��>Ծ٪H�k�P�߽dz�������lϋ�5;��Mj����C$��p�h��e�{��_-���Iu$������1���33q���ƶ�/��T���l���|qZF�s��"�Whh��E����8x�5R<Ϻ�rr=A���x�]V��k��-��n~>�9���zG�~Cgnc�W�C3G�mŇLcԃ��1]u��k��-!�cfρ�'���Nm�6�g#���hVѽʹE�/��H޽0Ny���q�]<mi��m�u!�2�c���S�)�����b�,3'NH�G>�������گ�ˏ�ی��c��9╹�7�yH��;]��G'��'��8ۓ��㜑Ҿ���Z�?�|o�QZk:�V�G��6]@E�2��Dq����_:��H��r��k/��2�?@k����~�;�麵��}�L�ll�mc�M�;����ܸ�$~�^x�[��9?����tF~���.W����eS��A=���W�\���ϑRHKn�W�O��q�U���
�=0�OO�w�^Շ1ܑ��x�q��E�d��$�������/�$����W���אqּ�|Q~K�S�ݿ+�T����m,�� ��6�OL��N=�y���ǥ
N'��g#��
��ߠ���o�[���r;q��Ny�5�rx�Q2����h��y�zU��7���6��ŷ���g t����\��ǫ
*�>A]�G�}������u�4o�{��\�o�<�۞1�p1����ȷ�	.0v�9����y��I�����Byxb�0_��׶i���v���6�$��.:���=?J�~)�z�O
�x������V#".�z�%��G��\���~�G���x�U����?��7��@	�|��y�ɿ�{�
��u�e�=��v�n�����.1��@�\t��l��Q�O������~-k�_�_������Y�Luc��K|��s�?�H�����mo}'���2��'�N9�W+���S�-�\�W���tqd�t��{g���kl|Ȝ+��YGy9 �/^s�x�!B1��yU�3�.ȱ��y1Y���O3l�H�Ŝ�p�=��/�'_�x3�ة����"�X���\����c���nu���`���GP
���W����.-N��d�@�+ʢ���ӂ�=].*1��Ϲ�5?ڴ��V)6̘���A�H瞘�j�wɾH�.
�!��^����9Rj�}���4lY��x灎���ҵ�odH����mU����W���z��OE訠�v��7d �b2�r~�v� ��_�̫ .C`1��=y����Gw��n���gN��~����.m���	&b}F;pz��5 f�X�����,c�r3�?���V������Eiq����A��=�q����3[,%#������3�?�*(�PD�o�\���P~i�
�J}
���
�9���9Yg��\o�y�:r1�#5�_�o�������~{M[�
�Mp��
?�6���'#�NrO^q�b��E-|?=����U�K��A�x��1�1�ezg�`��p��E�wůMi����&?l�L�_9��C�.3���b#J7oCT�4�?�^!���ɯjSϪkW�fiً,Yl��9OS��}_�~�7�%ԡ��4�?�%���^��A���9�O؋�	��p[�朿��#)g�뜞8�M}����
� �t]=ce|���?翷5��V�K] ��kk���k���t�+O��<<�^K�=	�+����(w��d�~a�$d��:J�ok+�D$D�J���q�3��+s�VufU67� �zq�{q]Q�`��"�[����0�/E���``�Bcd��T�v�8\�oÎ?
��#kwM�_�v�X��ÞqQKl]��[p��h�߭�R8�9YB�TmuS���H�QUn�-�αʻ>�����'ӯ�i4	����e�X���zt��3Q�xˡxLK&J��9�:sߧ=��E�c.�b�ܤ[�j��:�����ϝdY9ʬ��#�x8�^s�_Cֶ/ae�O�
|�-�oN��on������1:��4���c=?���Z�h��7�m��y��|�z�������^�r�a��6[o���9���#&�o�0�Ey���
��m<�On��5k���X�w�1��L�޹*ģ4*���:�1�������=�p=�U%̞d{�C僔�p�R�:Ĭ��d����]=OZ���"��;�Ԑ�����)hm�.Mt�nل}�zq����T+,��Hʨ�,��1��H�#�G�]�v��S��u�A���B�#yk����;y�Ǿqӑ�:�+��I���
�L��*��H���Ԏj5�ƿb���;���q�R?Oa
����m�6�c`(�}8�ӭ6{��$p����g���nO��S�Tb9�6O�H��"efO\�C������b��wn?7+ЎO@r}:�W"H�@F��|�as���3K����mV�$�㌞����9F���}�I��A�dʪ��L�.H�䙀�v�;���~G|�>�Մ��M�,�����t��ڢ-F@�+�¸����x�G�j���"���p�s�x��Fz�N)�ۑ!���IJ����}r=�D��T����W����R���mİK��g�P8��9�IG��Cj��y�^[9-�����_ú����X���ƶ��9`�q�`��c����T	c��9����P���$�ta��D��Ԏ��R�.��_l�x�ÿ�g�n~�5�|�'�����:W��p�~��uk1�Ẏm�ݺ'��;dg��H�[ٱ�8�x̬@\�Ϩ���S�k�n<�#cF�Y�du�ל�ֺ*�%R)OVb��˳$��_���c*�|���;SU�,�
`[9l}쁍���s�
z���?���E�> �qh�Kk�$C��������Y�h:L�hu[vQ#�娘'����>�"��u �I���C��+�c�<Jcm��#�n���Q\ڋ�� ���yٿ�l����lM��g�xWr�.��q�q��w�U�v�@��n[i'���8��je�J�:��w�X�?����A�Nj����Jn��Ǘ'�>���q��A�+!�2����=�:s�j��{#��(Llu��OnI��ٍK�3Z�+�����w�wn��=;b���R�,N�Ș���\cӚїL`c?xF�#�����E��2�W"5c$�F���~8����U�?��A#��3`3}N^{��I2L�~e�>�@�#���6�5��!��0�yS�<��O �S�����r���{�8<��?�®1���Xn�H�G䬛�q��ø�=8��e-rX�[̑v�m���6�wD�r��m��
� ����_�o�6�V��ʲ���ۯZ�1r2v��WR���+2��,��x���V��Y*#4|W~����kst�B*�/sI�#����FoO;�AC�>�9篶Ah�;�`�(\i�?�@h��ei6�>�*��1�#4��ls���1��ha`�h�̪��qӧFx���-��fL��<AY�1�3�GŸ�QO��B�z�������o�>�� ��{�q�)����ኣ�nk�7'����s־Ii�U��n*��u��@�X]g�70c�?Rǵv�ѩ��9㌫��>��/��F�/4�h�y��`(����]���jO������3M��U�m�G#��y��_��5�s	�trKn_���1�����F�agqnY����n@����떦WJZ�ͣ����~�X��K�%[�'V��P��S6��8�ޝq��5i�e��gq����@�Rp|�5�K����Z+K%��wƸ-̈�#��p��5�xS�����H4�z�k�1��b���9��$��,��IGEn��H�ɢ`�w˸��Nzs��L��EXVa�O�4���{d����?�?�����Y�		Q�KM����åw:���Q���F�6֗O���qݐ=�~����L|�>�E�Y��7�XJەw�g�9Ϸ��S�>��a]�j�+��!d�:���ϵ|���B��.e�`մ�7��+*����<��ۥz��L|��l>%�+H��hs����X�Z?fєe�=
[�V��|q��n�0�z}}�з2ۨK{ϗpP��H5�a�hZ�bm�w�o��z��z�{���\�&��-��݆�#�q���z�\�r��Z�Ԫ�!m��T�W��Lje�Vm�F�Y��p�)��u��������x�sׂ@����w�"!+7���A�A��O�G$jJ;�*������I'�Cl¶=rO���sNSkw#Z�a.�v�c1��7�l�2F$IA1f����W��Ls���~�#�#�ݪF��g��;�_\V�<�ҋ	$.�[�i<��2G^�;����k?�K]oGy��ȑc�0?�?ts�W�}�se�Cn���Sk����k�/���5�ѯZ�4���$�r>�nr�=�q�s޽<�0�Zݏ7�M�.�і��LJ�F���y��q���ןj�ҿl*y���(��19b��=�+�hY���3|�l�9ׯ$���4�>MR+����˼�^W9<��u�a˳8}���^��P����k�1��>H�<�1�ֺ�~���+]O���8�c�t?ҿ7,��n�S47�ѐ��#���9?R3Z�Oğ�Ӵ_ko�w,ǃ�n;���<RT�G�J�z���F���ᑣ���1 ~�q���F9+�ѿj	n4��4yU]�g�y��{��Ƒ���:|B{.������L��c��W�ڣR��4�F����e9
��u���5+GK\w�.�y��a�@x#YV�i�fo�[���2x���&��|���hh��r)�=z���;|?�^i�Z��,1�`�A����h?�^�=���Uyv�	B�'u<�߇�$�Fq~�	��*���B_ٿ���{ZkvpA n3�x�:�kY��|O"��n��L|c�z�˚�O�Ԓ�q�i�I�M�1�9��OZ�M����D�5a"�j���g���{�s��V��oM�c#CT��5�RouMC&ݛ�y?�7��r���͡�����Lq�M��X��Č����~؊��Ԣު�ܭ��8>��s]Ɲ�A|*�"*�:]��nYv�߾3׷O|�8c���1�J�us��K�:�uq�]ʛ[$����?�\W
���ޭ	����Yc����{��_��#�?��U�2�UR@G<{p1�ԓ��54���n�uuR��
�u^�G�n&��ܿ�/�X���_�O����y-�1
���`r:��{t�Z�O�6�E�ǥj�ɏ�a�����_����UΗL�U_��T�x����H���ZC�����O����¶i�/��$��Ư~ÿ4s������?��q����s@y>��iW��۸�~�_�?�˔o*�n��N�����X����2\h�&��=\��x��#��T�(�g,�/���W��n�]����U���	�Q�}*�Ȼ�U����o9v��N>�د�}g�:�#@�;� <h����:�\�`o�����n�u�=�]�
���}������[�yn�*�n��>���;u���QR����dgj�c#۷�}��_�&'��c�V�a�I#�����$s����&��`�i
���>�R��:�|�q��y�_k�s�,�-�Ϗ��(��Iێ0;�Pc��v�i��9
���=��8�{����4��kr̩��1 �F3�W�~��:���Zb����<t�'�Bqڻ)�����Gx�{�).$m�&6��R_�j��x�ĚL�O���P�<k{��=pG=����>�]���8m�6��Ǔ��~y�5�qc�i�3���F͏�fʠ���~���e��3;T��G�xw����|-X|P՚YJ���$N3���G\�z�O	��Nh���ܽ��c#l��I9 ��c9ǧ^��7k��������njY�	D�Z�075p���5�l�֫��׆���'�����g���h��8��?������|��G��;�i�Z�w�VE##�H靽:W��\��3B��v��8<s�w���nb�!�
�=���:�ڋ�}a��	�����,�,_-�m� �Y���zPO c�Z��߄�+�I�1�M�V]�e��Ro^0W
�3���{
[N�"��hǘ����S�>�r=2h��^HͶ��#��e����g9�Y#4n?�G��O��_�s�6��p��I��99�����^%�������}�ܸ�ߑ���1�Ə���8��f�-�ypjR*�2A�'�&�B��k
^�"��{q�1���s`�w/ �q�s�\�F�ڋz���Z�W���w�����~	����M�ø������<����o�ி�~���E�h��Ii͡����F#=�W�x?�AbdQ�τ��VL3麠;G8`�>b3�=�݄gN�3�o�ʹ���s|���O�I9�;��T���kx�}��ڦL�2:�����ି��#��ԵM6I]o��¶~�b-����R����5x�(Ι�A��G���}��}߽��񪹧/6ǫOj�D/�4Ѷ��A�O��1Y�M�O�K��!�Y����'���~����Rh����rFU��s�>V=�Zq���Ѱ}���iJ�oϑB�./��X �Ѯ�U�nr[=3�N2*�"T�<7�
l�>rqӞ��Z��-����%�$`}q�"�l���HYY�12|�����~y�j$�kor>P�f�Mˀ�����.L����UUPc��I�����Mn./XH.�U��Eڧ�=�9�Zk-6x��k)VU-��O��ls�h)���yIE_3���V��=��~��O�P��ȾR��e]�$�x��n�92-&�u�nb�w#d�p1�q��Y� f-2��6�C��q�s�s@r�V+uM�E�~M�c+.{�<���sVc�_+�&�8ԁ�%�;�ϧ�8�ڪ���e����!x��zz��|��aᝬ�dun~�~����o�b�[X�_�;���Ђ�y�ǿ����Z�Ҭ��d�5\���|�g��Y/!��X��M�s�?���K�����_��7L���.�i���4�J\eYc�f
z���gێ1�25��>���(a��U�|���ry��'�ڶ�[4�����w�@�`3��Yλ�iڃ\-�n��L��d�=H>���|=5�����\{*]��H�9<��u_�����Q�R3L�lJc��q�P�{���$�n�R��e#1�=s\��6�,0�/�y{UG^s��ۦh3�G�k'7
2��M���v��͎x�:~u���5�'���E����rG�����ڽ��Vѷ�,I�6!�Հ���sV���|�(�6�D�z���q��Q�<7Y��6Moq�KƎ���B�`���S\��<,l#g���|��ch��9�0{񑎵�q��k8�i�f�B�q����nES:t�<���fuW3|�L��q�Z���;��Yt��7�`��B��#��8��5�s��v���cU4�ô�=pzW�ց�j��^�vw3ym$��� y�q�1�C᷂/!i�D,��(��ق�v�ϻ�����?����}�\�'凞G$����Q��:�5��nڪ� <�`��A�1�k��>x�&�5-BՖ6��84��=?�z̏�5�wf[G3y!��Bە����x�t��'��;w�_G$WZe�M��$q��߷N0=N��7�Wsfǵ�,�cq �@�9�x?Z�]G�>ؑ��$�F�Y��|��9���5��|)�wџ�F��w��ۇ۵O�����BNj�߲GhtՒ8�[�Y�O<d�,t�������KKe�W��ۋ�L�W���5��{��A"|�,��q�77� �O�z�>�qb��Ϛ�)$r�����A���O�T���\G�X,�X�3����sڟ���ҋ4yFeR�
=G>�s_Z'�'cq{sn�g��m���#�ǭG�g�F��,�N»TQ�z8��=(a�#����(Ӈ�6�6�V"Ilw�~��Tg�/�Cr�v�*���Z�*��R�챾�̞b������v$a��t�OP����w���6c� ��4�O�����X�7�Y���z���3+��2�1�Ny���t���
�CY��#�[۶�V�X�x
?ێ���?����.���q'��(Y��~\�X�v&�	�r���d�8��T���w/C�����RCuy+G�um�����q��׵oٜCu��RV����A���~�VM����%��f]��f�p:��==�����P�x�(��k����$z�'�{Ү��\�$��;	�WR2p~b}=8�>�ؿ����<ǝ��|#Ԍ��J��<[���y{cJ(�X���5<�)�n��ԍ(�8Q�v'��[��V���l����n�랿�ҽ/E��5��W�mѶ7m���8�u5��O��m_�[�����oxq�����*4�'���;6.t��1�37 }9	�C�|3�h��Y*�����L����Һ���R�B���7'�1�ӟ�*��mB�
���I"���n�ݲq�M�ceO�X̸�ɗp�d��X��	�=��Z͘<�*G��2��]}0;���=1�z8�=&��湞Eb���y!y����Q[h��+�2�x�2WnOL�H=����.Ɯ�,1Kr�qwkeV�[s9o���9��N)u�i�}�Sv�<��::v�����m��*3���z�%���<Igio#Ye��#F9w�x>�Fj�#�Y�d��6M��-��p{�~��WԼI6���C䪩���r2ă��^��LlD�m��s�B�1����?�9�߅�O�Z4q<�淚�0\����s�x�)~�S�o���U��X|�O�Ԭ�������P�Eu�x����^y���~ן���8���?�?e��[�Lmr��}k��Ŀ�Y�"�6�7�⬱���q߾p�N�=n��fXnUl��_l�u�c*<ç��7G�d^"�i&6�y�1/'��Ѹ��ʚ5T�yʤ��7f�W���q�_�_|t��5�o�HuG*G��H�'�Z��
C�axaV�?�r�F��]CO�@�O�rx�s���)��E�n~�6��$p�7���ܣ���F>��Z���弭�,@��@Fy��~KA�e���X�}sC��W�]2{d�rA<wϽV�?੿���+��*��i�LJX�%O��G��W�0���?\d���3�[|�
�	�,X�d���^/��
3��B����#�'�1��+D�J����(�G��$�A_�?j/��‹O|Xֵ$�Yc��XTdl\/�C\U����`%�̛1��]�G�F}y�#E�K���{_�E�q�^�����k�Ɇ�HZ�N�b��)�@S����퓜�����YY��ZL��m�.GB8}�֤��ZI�2"�m��|�����{V���;�`�n����o,��w~���݁�)ԯ+�ei:M��4����I?1�ݹ��^���	�̂�4�%��1�}O���|������Wz��r9�'8�=q_@|1���[��i�a�3(a�#�zc���qƙ�$�#z��3�B���U��������}��G�5���c��)S�۹��e}��}k�Ko
�ǽm�vV_�v:s�:Z����D�$�]�Z��<��>����t��уI���W�%m�J�*��l�?Ls۾t4�8m��H���@�+��8�#�8��Bj��6��rZ��<�#�v��z�OcߥI-�����,��fJ�Gc'ӎO)�I'��;̗䑄��𼎃�������?�]3"�$��*��Kp3��Ӯ1VmmQ,���a]� ����F9?{#���9�g�7��� �w�&�o0�y���G5��=�{12kp�y�bnj|G�xSD���5(lt}>@$���M��c�ǧ��|�e����(��w���|3g���VKޤ���:rq�^w�`��~>���Q2]I%��lΚv�o&�d'Y��r��*���2�����!��mĿ�khp/����<�+4���m���9���|o��å�wP�p]����<�߹�������
Ѽ�C{��)���璥Nz��z��i�/��~�uco�j�Z+�Ǚ��(GNzd�_Liz}����be���X��\����iҩ��5]�/�6�y��U�|-o�C��ek4J�R3�=8洅���
���#�r}��"x�%�峿r���8��ԥa��#�n�}:�ߞ�����]��>�叓r��xv���ā�$�v4G���n`�f��*\��{��sSEV�!�͵��.291��s
����76�7\g�>���P�(Mj�+$;~c� �>���5��2x�ˆfbq��QZ2���|Ac۸����Ӟ��8����e�r��?|�qӎ�=�9J�)-�,;�62������G5N�'�&�y�X6~S�����ZR$m$��!�&�b8���{�e�����}�������C�JL˜9}�\�]͌��8�t��Y��[�i�(�cs��{��޹��Q	�c��$�|�Ilz����y��F�nzv���3m�z��Ԃ8<�3���g9{m$�~��Y�>� ��J�uH&��˻m$7��I�z���������@�(For#�ſ����
v�m�K}��Gn��R&і�9r�n���Q�����t��q��R��(�e���>w��z��t�o.X���[r�W�?�d���i/�J��v�}���A�਎�l�q*M��Q�?y�d�<�q�rj��$9
ۛ�['�?�Z��QfX�ub������g�U�)�FU]�Z"1������W5J�V<���H�<���.��	m�+^W��:�3���\��*:��I����5�f/",�rB�0�'�׎���/�3$>ZB�Yr��A�$�>�3�q�ؔ6�R�\����*��;?���P��C�1�}��<�
$���g�N9�S��re�(7�����^�1Q�,��U�O���B;�ן´w#�5���)R?#�89�jtr�G�K��d�H\w#==��*y��%�2�2��s�r8�;�Pupҩ�����q���;sY��ư�����zs܃O_";s4�G�Y�����g�����s2yM(�8���~�ͷ!z�:��z:�_ZU
��7!UU��sӑ��Q��F�>_�t,O�q�ӡ�<��N�)EPr�w3^}�����$IƤ�QH-��[,W�=ǧ?��)���<�\:+�ps����M�`��.�!�#,T/9�Ps�8ɩ�#}�1�����:�zV~�ˏ,t/Xj�Vq���0����v#؎�J�?���Ϗ�l�T�h���;�;��nv�9��+�'��fo�g�s���ϭ_�p;�Wxق��zg��]TjT��{�Ԍ*n�c�)���_n���	Ic&�ǂ�q���$v�3׊�浖�������'#��S�/�Vx�T[iU8��}I�<W�|���S�O�R�G"��R�2|����2$�)��Wn�ʤ�k�熛YP˸����n���猊"iC�R;.�2��}qӿ�}�O�`𦥦�]�P�X|�i4�7� �)�k�㨯�,.�ˁeq���b�+���F:�<�Z��T�2��2���q�1Ff8������l��>����
wG������#�<���N��sF�v�a����ÿjVyd�++0������Jj�i��<֔N���"�8${���D-f\K��}ܜ��};��!.��m�F�d1=:��ӣ��$2\yc��e�d��=��c��ʲ[F�Ƹ��
ˏ��q�r:T��--��\�G���o�Z�쑣6auڃqW�����]�+^�_��$u�����IeyVKs�J��V���~�`��d�n�#m+��d;\㟨��Wb�v�V�2To? �^GL��A��!VnA�s��zu�W_P�RK)t�������m=�o9`܁B�Y����W��Vi�x0x��c��=*9�G2�f�߼p	f<��?Ÿ*'�G����uU������3�_~�n�+�*������x��u$R��3���7t�A��?})�y]���f1��g�G��zs[����<ηR���3�.z��a�jhn#�$�oeE\O##��ޕ^S���[+}�힝�|S��|�I��ʬ��ӷ���
�Š��Q31v�`�6�ax�N1�4����t�!��VH�o���3���G‘�C�m;���8<�׌u���B�q��cیu�ϧ��<Sۡ�I��1�q��ͤ�w=:v�zk,qۼ�#����ͻ��?^�*�O�N�Yp�X���q�֝�f)�Fų�H�ϱ=�?^IO�ؚ�|��N��T3����/#<�$�^z�b��r��|���1�
��^1�3Q�AZ�$$�<(U��1�zs��<�|�,��(Q�`q����֧�o�ж�;Vy4�bKuU��r���:��}}s�h?�o�?G	�&j��Уu�+�=0�w<�����OpU]�U�{/<�?��ý,$���9#n�q�<��8�}+)S�-ѤjT]Ox����p��\��������w�sש����SB[���>�̿02��6�u
x�ls�Wɬ�4�G���7<�W���ߥ:He�F2DX.d��<��@1���,.]��+#���B�k����~�fۿx�"�׾F1���һ�
����S<���8w.<�����s�a�ƿ7Y�]�/��H��lT��x>œ�z��7}�Q�T��u�#�\���ɬq���V*�~��f��6i.�0ܣc �u�z��_ۛ��h_�N�ʌ!��\0����##��89ϟ��k7���sZ�cb�7p�;ö}��/�5�kF[�kS^O���;H꽀8��ޙ�̿�z�]�ld�Z*]�@�ic1r��;s�$g#�'���ZJ��d�Q������q�N���U�(	���=�d瞧9�dI�U�5h��w���~�g�ܑ��VY��K��N���9���ww�LsV,����̲I�ef@� � g�oz���I��Pm`�Vu��p	�9���A�t�Ml�A�`coOLr=��c)r�?eX�|c�\����x�cЏ^sD�A��*������u�[�@}x�{�V�،�[v�����ڒM3�9�M�P�]�)�ぎ�ܟ|Q�%=�=Č�$gi��8�K�«/$�%7��q�����5zk5[�Uc/����S��Ìv�E%����.�U�0�8���
r按t�x���ԛw���\H`��nv�5���E�������ŋ>n�r:w��m�������`O͌�c��Gܶ�IU`�9�9�#��T�b;�u=KD��|Chc;e;� 2��oB:����l�m���h��ݷ��`��8�ۯ���|��H�!v�cۑ�����y�bI�v���އ��n���*}�z�G���t+�c��Z�ZH�!^���`9�@���7~�y�G����c&�8<�
��ۨYE���ڻ�0<z~�b�ž(�fuI7�gn�N��=A�8�Gn�#Gfi�Oӯ
~�6�Ǚ&�X�%w1m�q�'���J�4_�f�_��v6�Hȫ��0@�s�u�G��e�n��8�Wdm�#mͻ#��#��u'�;�KO���q#�0<`aG�9Ͼ;U)׎�R_$��ս?���M�
�i^K�Ln=�~��i�9�!�A�Z�P��(�rO#>���~Wxw����I2��U�����9�����?��\��Ȭ���/?A�`q������G�T^�ƥ"�/Y�e���&ӌ\����>-��l�-��|�+p9��{���S�#O��W��\���9�r>���
���"�u�|F�Tؿ��n:�a�<�qS|<���tgԗ��e�%���ie��g���;�zs���h畢[X��ƈ�[��3��ß���gl�wp�/�g�sۧN���C��|;s�].<<hۖ3��L����K���l��c��]�m*�I-�P��O�|�'#��o_���룆�E�6�sۀ@��:׳i���mr�mo���*������zڵ׾ks����1���y��翿B+eXz������>U�e=*��:,d��#y��pO�\��a�����+ ���?s�`�RGq��_z����1��n�捜���g ��j���7pMop�3|��G?(���"���?k�X��G�_������0�{�V۷m�P��q�?Gz�o�44ř����9�n�	�_l�����ջτZ�1�}oeڤ�OQ���3X�(�����-R9����@�dc8����s
.�Ȕp�7G�Lj�^6�t�A��	`�v�#����⦅�\�e!eb����;p9�?����6��cG�O3�{�N� r#<`w��5��_�v�1�X��,x�?>}��H�3�}S3X�?u_�<<�?���x��*r�sצH�v>�ot/Z��G���+%�ݞ��p?���e}
�dߣ�����/�
3���{g��G�xv��ѠWe��q�;�y�Z�gX���g<��bG��˪���X�cH��:px���*���9S��y��#��a��'��o��]v��o��a�:�}s�f���_�M=��t�5�j��K3m�=GR8?�k��Q�qh�Y]��|H�L�fުY����׮=2)��$�펛վ]�� ng�c񯥼Q���t��}*�f�QI,OA�g�?׿aߊK2�l�G��T����WU<�/�۷�9���E�(Y�e�)7H���~�:$��,�cF�y����7�����]f��?�X���o?�� ���3�?��wV��t���&wI	;���x<�v��a�|3F.�jkX�=/P�4K��Bէ���ck{�Lu�#���z�+�V��^	eO�\סY9k{���3��>`A��g<wǜ��l�R{	�`nTq���v�בQ�h\E2IJy�@�/�J������2�F%R�tM�I�[�
��T�lGg�kZv�*N�<+���x�޽��Y/Y�o�G�+����Q�20�s���H��˒��R�qm����_ϰ�e�-f�Hv2��Wk��߮;�₾�?S�_�X��w�Zx��:�,���̤2B����z�������-#�/ŭ6����ڻ9�m_�g�?��m��vv�ۣ�v����<��ޗ��y>S*�*��L���֎cX�/�D�����φ�#kU�<i�_,�T5���y�9����iZ�a�$m�M��0��c�;�3ֿ쥽�XL2�;�;c��`��#�:��[�o��w�#�<Ak�۱5'�� m��=����Z�S���kk���������知[����X���w���s_�>�����:1�'�o�G�c]CK�B3�'�s���_J��v�n��
�u��~�4��\s��##<t�1j������H	h�N~_N�=�y�u����F˷
�I=��=�
�'ß�Yo��|6��\���O�'�(�/��S�f?�ڇ�d�^i#��x�9̀��9�3M˗r�,�})<h������-	������ON�)��Z�k1$}�~E ���<`�;���6���<�����o1T,K~��{n���{�ee��>�Ng<s��\�h=[��<��<��AfX�[G��)6��XՎӎ�z��>���wr��m�C��3�=y��=x�+�s��,R�T��Q�<)�Py��ë*��6���y8�;u�CF6�,�)�lΪy�3� �u��Y�Pm.9_�$%Y8=p�pNk��%[��{�����3�O|~\g]]Cq:�}��H��t��q�Ҵ��%����c�e�>V�y�9�<Uk�)��d�t����vl�޽\}1[�Eh.]�E���>����8��{�k�n�ڦ�C�*�}��s��c��S���L������Ԝ�@4�L��J>o�dS���g�`Fzg]�"���0��*���p�׾:U[�K��t�yY���;z�M�3nt��)m���Ϝr8���S���FY��U������ܣ8>�+i�i.�	/�7s�g���k�i����Hzl_&3���1�=�H˺�Ew"��Ui#���IϿz���#���H�xhR�L,x�!��?
�H5#.�&�������g��)�}Ѽ[yfX?w��h`��c�"��]H`�[%[�ޫ�Fh�����9�'��k7RѴ�I�q����Y<��Cc���3�iO��f�7�I���:�:�zw��W��d*�6>�ݴ��Du����I��Z�?������^�n&ޭ�p��Ƚ��=?Z���Zky���{�Ė�\���wa��=z��]�i�GӤ��m���z����M�KO�y�e
���<q�z���dZ�
����<Mwk�6�ݨb'���Ͽ VQ������K�%��-X/��������W�\Ee"yg4xUfh�)�z��1�6�{M�d"gi%�$��rq��i<s���ď���D�`�x|��`�+��x$v��/�n�i�^��Ѵ���Kv`�=�s�r��Z�Ա���_L��>�_��R�q��|�<֏�e�2m��m̹_1�i��#����'�lO/1�lZ<6�=���E��h�dۀ:��1�>�K�y�ha�?��Nr0Fq��;���<�[i"����4�m�����zu�{�+�
i:͜�k��ff�d���8=Wpw~�<{b�'�����#w�'����@�8���}�KU��͏v�`����A��;׽?���]�3�}mahV=����r9����ুd�F�}o�dB���x�������	\�;K�H�M(VU8e<�is��c��o�<�.?�734��ǿ?��N�+Ӣ��©����b
�}���s�
�s��?���~�6�IV���ұ4w*��o|s���\t�ny~�ka-�:]��3~� ���uݎI�S�i,#�%�d�K����'�ӽw�_~!�I$w>
���ǘ���9����u�it�a&����y���>bq��zb�]�����\�qsq&�_�q��Ա�\�kGӊ�W�|ϻ_���P}*��j���LV6����YO$pNs����	m�C%�����٥Ž�q�'�~5n�+�B�vP[���ܖ�qŽ���9��#�L2Ix���*�	���nG�c�{�Ի�k�^]=d�g\��=y����$z}�_�Ao!̅O�	�����a^_�4ҷ���T���^;{�k@�P�;�����䝱�8l/���t�	����Ve�ZGmʮ��v��֦���K�1,��{wv�Ӝ��g�g�}�4�h����U���<n�_�6���u_�
���
�X^�u$�A�;���O,v�'g�d(���~_��oi�B��bh�CI�����>��O_ZE8.SżQ�*|5�dۦ��NN��C���N��x��4�Ŋ�e��@El��}:zq��~�I�X�վY2���s�|z��J�oi��h��g�Fs����8=*bS��O��bSo��f��~taT����
c�3�]��,R��q�)�ǧn�+�}�Dl�P>�U��@��n��֚�	qOb�$�������^3���Us/c�e?���o+r�_~A�9Ƿ֦��e�|N�gH���G~�W�#��<�h�X�j���`�ӏ����������2��T��`�������������iR�{f�m�v�#��z�q��?��Si�P�ݸo2M�vt� �~G�+�
7�6�mp�#bɼco8��zWC�|��vA!n����Ns�����sSk�3HҔmcž|��yV9
O���[8�#?�5��y,R��m��y!{��\Wk�}�x����~f
���>��u�lVW�-md0y<�m�g��`��ic�4�2�7�o��"��pW�:��OO���Vݞ���b d-��	��$t����.��"��>_�zq�>�
�\�ٔl]��Hp9�\r0H����#��1Ϻ	�WS�B�2[�Nq���zTw3��M�W5�uH�,@�!
X5�n@t�2��o/sI$�cS�c���z�q_2��_�P=��\x�>�k�x����j���hN�(�pG�f�rQI�������|�6��Yjw6��&���<s���'�����������D|D����ռM��_]N�m���F8�ӵr� �>+�����k�ST��[�T6�����R�ǿ�&�����'��pT���J��d�z{v'�x��b���{%��G��lp���k�/��:κ�$�Oݢ����~������@���f
�2�-��NV�B�7G����+��)�ßtkx��ŎH�ڭ�ˎ��\�Þ��f�ʦa�Ɖ����I�9��s���R���}��VBY�Cn<����
����WafY2�X��YG��'?�jl|���$�Y�yk����H���m�˹�9!;FO~����w�����)��-�Y���p@�*[��[�N8\g�y��)�VB�|ʫ�061�|��ӵL�34�R��f�a�#��?��Fґ!Vf�����l}x��23�yQ�kmo�h�zw��OΥ1�N������f�^��,�2G?U_��=��O_�Ҁ#���F������dӚE�Ј�2�3`a��Q��e�DH�T�#����Ni98�z�
��9^�p1�jm��d���m�lV���#���y���7��͸}�eQ������Z�"Y���r͂7N2=�֨n-m摣$7��c�O{cץf�8��т����]�0�+.k�������m�ՏR0;���MEy��6��6ރ��
̽�M�"Z2��ccŽ���{����L�E���*��p���G���5�t�ɹ&�ܫ��������5�r�]�feR��|����d\̙��n��~S�}=>��P�dݫ����ȫֱ��w�ۧo¨]A5������J���編轺U�.7�̥����?���銣yw��$�8�G\��l��\S�:bf����˴ձ��O+��k��T�n�T���c�G����[L�#q;[��cߧ�S��;FAV �����~U�(�Ƒ�+I
������n1���J_";|Dң����G;�88=GkL-ٷA:��}��,{��Ui���G0Llm�?0�Ny?��<V�cNk�E�[��I3�;���˟��Y�9��;T$�!�c�#=@�j�k�&�evR�X�##w��߉|��(��
�K�H��ך�f7;[L�7��B0e�nQ��~�S�rD��I&�02��?��M��rd�?*m9'����Oo�%h�geS���=�sS*h^��s[^$qA)o%�fv$��z�tc�ֈ�֗r�U�m�/��s�����Y��ڻ~�#�z�v϶O�>��m{���?62N9����P���IY
$L>U�hש�1�r>�2,�ȥ�W�,�v��'��n֚nc��վU�zp:w����k͒���C'^��Q��T��~�v*	[n�G���Fq��~�9�i�U�2�E��q�~�S��Ye�pځ[��c�y�1�:�Nh�[
%ڌ�d$���a���ԫ�E$��$Q#��I{��r���G�a`�˳<�9*2O\c���PEo�1ț���y$�qǭh�7�j�>�4���g�=��󮈦ɖ�lX�(_kY��}ۮޝ{�>y���g�VG�8����V�������>c)_a�����]�P�J�XL*�=sӯQ�~��os;����7���C�qO�yV�o�T�
�=MQ񯌬<cv�I��摿y�N['��px�s�k$���|���#������Iff�̟t7>�㎽�#<�ڵ�7Q��b+���bi�~m����1��}=�Qϧ�[����bۺ���}�9�&�����F����qnx��e¼}0�=~��_@?��|u�ڴ{xlo��m��H�2q��~X�#O��S|���rȖ̳��N�Hb1ԐNy�~��$�2-�τ��Yq���3ב�]���~!�k�5����lیW�̧��8�\r[,�U2c�
����㷵i�9G��`X~Q���o�O��}=)Z�T�V��-X���p9�C��h`�JG${��I�&G�}q��~U4V�c]�_|�$���w8��c��5q�W���;�� ��#�J͸�Q��R~^H�9�����X�Y�7*;~�>���-Q���6��UUXz~��ʭh�ȡ�*�e1
��#9�ǧ��8[E {[i$`�rǟ��Pz��#c�R�f�inH�\c׎1�Q}o�{{�0�7�
�_���� �!O����8��0�'��7s�=E"�p7q��8�o��`q��6��5[R�O�\+c�}y8!��:q�Ur���B��wI���y�?��=��,F΅��r����	���v��,R\۟-�6n_���[����0}��,~Y&����]�?�4Ձ�>s�ˎ{ᛸ'#��ք���ݣ�oʎ���	�=qϵ[�w�n�2�d�=�����v�u���ϵ����g<����s	d��U\fE��C��SKMC��K��T��U۴�i<��O<�T���7y��bX6{�uo~�����'�s*���v�u�s�֗~\fE�U>]����<w�1��+HwImaO��+�A=8�c��$�g7q�/��u�?�<S3F��<�T1YN@�_C�õ>eXKKͻԙ�j����zs�OȨ�ļ�r�B������r}y��س�-VB��K䞽>���FA��d��j�ŗ'�s�t�i���F�+*��e]�H����S-�vFy����7EVc�?̂y���H'Ye��*�w~�q��׵A-�U�\�$e�]�������%�r�֎c�@Y6��{�Ǧ:��ʉ��x�i#bC0����=�b�	�v�Z0ͻ9�Cr[�|jm5�Y��n�&�>a�O�����Y��{x��Y�M�	�}�=�I8�AD�m��=�3/��6�`s��zzf���>�5��n^Le����y=:��	�y�2��	fLm<����vbY.RH#Y�1��P8��ӵ]=&�MsF�5�N�\>%VS�Ǹ>I�a�x늽��[E�e�/8m͞y>�F弛�:7ܱ6�
ys�'9��*��3���_1YT�9�3ӿ�_Z�%�q����m�[Fͷ��&x��}}=��_)
�prT1׿R�d�F���o�ߕc���=���3t��4����eS�����	=k�}Ύa/�A�7��Ny-�$�v��͜�[X����϶����z�m�&m�7���o
����Ҥ*�px�+e���q�ߡ��G5�&Mդ�vAa���0rHz��Sg�Aq#����\�	G��JҞ�uE����O
>d���:�j���x����T��oϯOz|Ϡ[[�2��y���V;��N�s�q�����M�2���7�yb����;��_���f]����W�A�G��j;�Io��K
ŷ�H>���Q���ײT�b6˸dț�O<�� �{�����"�Wsn�����;w�"�1�Y�ߵ��^8?NG��M�?���ܫ��8�����;��)c߸�UV�;g�nz�ܤK2���&���Fj���͞s�^*Ť�)����nQ��8��|�5�)�br���ahY�=��T���bi��Bd1�Y	��~bH<{�N�$���<��~Q�����$~=G<c�[��Hcݱ��Yw�GN1���ペ�Kk�y��w�2}1؏��>am�&�8�f�w:ᛮ9'�Or9����QG�Ap"�
���x#��=zV�qH�ܲ|�2���s��|Fr23UDM4�T4x
|��`v����ӊ�ؕ|I�Z��]'EP�+u�:c���8���'k�sn7�7�b�ps�zg�\d�X�mqs6��&�l.[�<u5����ɝ���`2F�zt�Ғ�e#�4����;E��|̿��Lg��O'���+��imF��[�j�d�)��'�'9��Y2$����|�0z�g�A�HPKp��$3�(�ӑ�n~\~��{(�+�[Khߴ�-�50�]��{��}I�Z�t/�}*��0.|�ppz��d�s����J\ZJ��b̬F�;p�����9�R�뗖p�H�U�<�g�=)r�atgޞ��5{���+���f7
��{}�{���>���F#U�ԋ*��N��9�}��^���i>�s�=�3��瞜�q�=x+wI���骩w?��p�iz�~t�J��ӡ���o۫TBN��Ȳ.�X���ʻ��؞���ڭ�VR�b>FFq�c������������Bș*G��玹�һ-����#�Y0UU��Yrx�N3ӟ�kEX�m�~�i>��%h�(�vc�����mG�x_XƑ���]�I����=�~Wh���}H�n�lm���=�����w�����~!�UU����ϡ�3�*��O��9cџ�:��66�Ϸ��Aڭ���~���:���y/mo��рr{v��_��[�߶��-4��m 
C��>�r�+�!�|[�����p�8�?=j����'���]|<��/��Q�c#8��]��k��C��ݜ��{��pz�C��ګ�G�v�B��6ܡ�($}G���u�z��|K
���>q�J��w)��:�q�je��Sk�+S<GR����,��<���q���\��?g�+��0���~�h�'��澘���O.�˸��`R8�NA8?�沯t��fe��oR�0�Ҹ��tg�.8�u>R�f]6�-���!\�c��:⸽{�@Чy���Q�]�񃸃� �s�����$�խ������#h�#����/�숓�fRc������W,�xtv.X�m��?�����K�/έ���<}O7�o����6-)�*��Z�)���^������*�#e���'9�2}:�F���F�Ý-dW|�?ˏQ�Ìu��]���M�T����o�&�J���nŶ�����1�u�+��`i��tbM�*�T<�ǜ��A_�����6�����V¨
:�I�<�5�s�?i���֐yʲ6��
0;s�x�z��7�-'S	P�Kd~&�ǿ4�T[97�]�@���~���ҹ���t3��×ʀ�j�nܞO�뎕�i���u�<1��U@��{�뎜π�쩦��ĥW,J��t ����٭Ve�Q�♗�(�oc���ĺ}�}�N��E9�^x��T�Ig{��T򔀳)��?�|�X�E��2���5���>ߧ�3��5�O������[ih�6cͰ������9���6��I+�G�<������Uʝ��T' ���S���vTiy�|���`����_g���	�ļ��ѣ�����Rx�O��On��~!��zx�O�I4֒6ەia���W_Һ������yn";$|����Z�{��9�=�g��i#af6�>i�v��x�'�C]���&h��o�l��n�s�z��H�WQ��6Ԙ���r�1!�u�=k��
��h��w�Ή|��vI���?)�:q��Ӛ��%|G����j�;[r%��*d����k.ox�KG�C�M����8�5mB�F����7u�z~<�5i��f���=��߷��W��e�Ӿ.�]C�|�nU��qr�#>�һ?��Sh;c�Z6�>a���I�NT��}s�|�.�F�ڪ�._t@mc���ҏ���ˎa�j���p{f��J��h�#��]�GX�g��[hit�I��'���s܁�w>����͚�¶�����YdymR�ヴ�y�x�k�(�f��U���21���ץ:��� �k!VQ'ͳ��^p}})ŴR�K�?T<)�b~�%�;KO��_����F��H0,>����|e�Mv��;Ě�G��~��T��'o����h-�f\��8�~�:}(�����K�
R���p9�[�8����u|��G�2K�k������p*NF=�Ͻ4\�Au�"�G��\��G��������?��O��'�ep�R�h灏�q���h?�P�ڛD*��ԌX1J�&�H���G3E�jo�?G湵�l��%�O�(^	��zq���4�IO�RK)�krV��8��=8���T>)��x���xy
����vx
��q�v~����>�o'ş	�!�3,5%��z��S�)T�-���ڡ�,>`v,�'�70Bz��!����A(�P������9=�I��xf����5A�{�SV�.&�Auj$X�%O��ӭw~������ZW�	$bvè�雀3���s�9���}��QUL�nھH��ң1��h�D۶�{@8�❥���Z�P�\�&�K�َ9�3����V�cԡ�Ie��DvVd�3:�����J����+\��g��U�8v�� m�ƫBR9Y�+m�2�s����y^�ֵ��-��o.M��H�p���s�����b�w�}⻇Lc�?.~�h�X–�N-��H���N	��&��/FI�շFт��2�#�z\V�ƞo!U�o3knm��zz1����uo��n�ܱ�d�0^���g{b�\��4[�l�f����=����ۛ���?b�<�*~l7猎�#�;��$��e
��9�vWА8냌�`R9������\(�|�G�K���
��qn��11ȧ8oU^�����}��!��,+n���{����=��V�v�i$}����@����G�O���-,zJ�*ǻc�}r1���{��J�]܏)4�-�>|�� ���뚉���Gwt[��U�@��1�8��Q+A�rH��vP�$�OL��Z1_K6׿M����S�qԌ�)V0F�h,�ʚ�-4a�w>��Ӟ��˥;1�I'R]�
s�A'=��kMo��N�h�fVem�!�g'����M.x��+��p�� ]�=FNԺj�f���lR]�Z���.���^1��88$Ӥ�GI.a�HDk�i�'�w#�5�a���˕���2L��w��8�y-���K��wI#����8�9�އt3$���e�?
X��J��o�^p}3�V6�����?ȑX�6偄0�]�����:ȯ�8w���WLgo+�:�t>�NE:��J���<�w*�y��	<w���i��s|�c�5+}���T�i�p2��ۚ��U�O��0��Uy�2��gp��"�3σdq��:�)
0['dc��{z㊊�(�%�d�*ۡ� 㷿L��$�G�O�[�^u��e�c[y���Þwd�ǯ�V�_t[��\iS'�X�|���ׂ2r:W���*��"�H�5b��Cd�`���D-o�4�q6�	U^I��ЏǏz'�'�&�c,�Ol�̲���Rz21���ɭkX�iጃl�y�]��O�+�4�.�iu8�EM��;zz~Oơ})f�Vd�ٛ�r�����q���z$�?�#VX$�
0�T��LWG�YK>�H��<3$�n�q�<����t��ͥڠ۶����O�~��uƍ���6�H�O,e��ݻ������G56�Q�B
�{P�>�,�����2�)��WQ�hO<>\pH�ƪL����� �j;O����]�mp���o�';8��k��,.,�VI��Eە�G�[��2s�����
÷�e�PPː�є*H�c�=kj����U�<��0�����8�SDZc�?"9���.8�$��v��2��̥��2U����F?.R��&�],#���沓�G��´��`��O�ͅ�'o�%��q����k��I�ɯ#��<���c��S�Hn��x����60z�֓��M����[Y���k����O�Ո����e��!�b~�nx��#5$�X��ڍ�4�&�5�g���}��h����3� z|��q�s��Z�Ȗ>舣�r�"��t�X�+#X���'L��u}@�}�y�����n8��9�FV����|7�>!�6��B��l�\\��yQ�<u��_�_�������hp�ɤ�i�[(ge;3��K� �YT��k��#�m�):���o��H4أ1\jJ�[N��æH$d��5�-�����P�H�m����i㒹��:��[�~
���~�5����q�*ҟ��'������/�=�Gn��F�&׍6�%����=��x��T�>J{�E{�<�����	�g�����{��sI��d���޾��o��N�~�
�����c#F=��Z���!���Ӂ����<uΔm!�m����7Gry�#��K��+�jٲ셂SY��Mʧs"��z|��IF�+2����َ���zu�}i�j[啙Ua�/8Q��zc�t�j���T�O�?Ȯ��#��2.A�L���C.�եb�j��䞾��diDv���YO���'c!Wm�|�ʽy�G��_ހ	��3��b��Rq���K�#;,��Uv2�8��G�I)q"�]T3g���c������>8s���3,�˸�z���{�8�@H�Ͷ�e�H��<��<z�i�I�*��v=�Jw����6[�F=ǿ��zb�o*���}����@n����?Z	�	�����c���c'9��C3��Y5�kq�����s��3�9���p*2�2�{��j��B�rO�=��(�El�<��
����3����U&��1"��~]è�~_�U���Ѿ��T���'�s��©/$J�H��vwI���ϧ��̨�od�4�_-v��ܹ`x������n�%l��j�ў?�����n���&�nэ�U�\���u�I���#n�� �C�?:�E�.�&Ćgݴ�P���k}�v�̿�`;)���v�|�#5ګF��z��s���=sX��<N�������C~^��娍bb^�C{l]�.�ݜw�?±��k|���o�N�8���ձ��-*�*��>�ϰ5�vc@�Y��	O�u��:W
H�h�6�	J��l��1�k�z}q�������"����<8�Ӟ���Yk�f`��t�q��˞���U��"r-�Y�3g�q��\��6�*��!��:�
��:uS�q�N��;ٷ
 ;��g���8�{�C�
Z�ZF*k.ђ;��G�06�f�Y�Ѹ�^3��������-+��G�������Z0
�zc��1�8�ɩ�Rk���l�	d$��H�T�O�ݾ�,��5��������R�(�
�$ y/"���9�—5H��d]��k��F���>q��G7N�}��O�ؖ�X|��~���<`�3ޫ�e���߹q�s�����?ȧ\�Y^D��IӞ9�.	�ڪ�forԱ�"��C4�;՗בӯ�95���+H��UeK��ӡ<���i������w�^����.��n&��7bv����w�s�NԝH��T���|���0��bqҢ�D�S�����9c��*�]�P�]�*�z<g8�?�*�X��q*�#ss����气�s�FH��!q%����GN���d�
u�N��\�#;0
��z~Y�棉f���V�p�q��؞¯E�e�vV�F�2{�3��1UN<�R\��9�D�v�������$r{��A<2}�*������棷iㅤ�Ei��,�a��O�]��;�|Ԍ���R��ۜ��A�ꊳ2��X_�㍤n��G��PT��w�S�N�X2��|���8�=x'��#��Y�a�ʍ��s�}z�S[3`
��<�܃�$�9�=8=+�(˘�ۆ�D|��f�~a��*dKdE<q�Wl�
���v)��(�J���dg�q�SKn����G��w>X�9<���Z$�Z��7)!x�6����Lv����𗋼G���:�Ў��펜�{t�q�Œ��0[�pW=�8�x⧎�����3���UP_C����J�G�˩�����iMm�b@�|��񃌏Rpx��Xէ������Ǹ�O#�i,��n>\3yy�����z�A�_�
գ���ʲ0�}F2s׵h��.S.o�
��F�|�̀�6:u�Оj(-&�IQ�X�Q#1�s�W�>�����Λ���;{��f��'?����=+����6�E�u�	݋�_�F��88��G^��R�,ENR��<l�܈�9���e�_���ӥ%bŊ��7�Q���}N={�ϱ�C	nF�$l�d|��
r&"hԢ����z�u����c=�oYԮ�X���3�4�l%���H�|��1��0ϥh����1��6�a��s���ҋW̑F��}����<�N;�{��!H�S��_�Ep�,ۘ|�99�L��t�O���q|֊��ZH~V�$�y��t�/̬�2��~I��g=�㺬1�~���6:r8��u���.ox"�E�I���c���9�!Ӡ��j�?�4˛o6��H�P̥�c��A�Z�i�h�z�q�>Ka��v�珯9�R@�
�*|���u��=6���t�R���{������Ia{	fa�$��%O�~\w�c��^���&�c�E"�0�	�BN��z��(���cT�P�_��`9<pO~ĐN#�
��H�����>��i��oc�nm/���tDŽ��m�c��9�'�EE,��0V��r�r���G�\��z<�M;H�#���w�ʻ~�1�9�$TW6�;콷�EfP��
�ua�Fz�&���BeM�����ZᛲK���������k��e�v���˅N}8��}+��š�L�ee�����r��t8⪷�{I�Y�뱃��o��r:��8�1T�B[��$�9��GqʆDe;��9���K� �%Hٖ@|�E�A�=����1Z��}F%h��̈~�z�����h�+,�t��f0#8��歸��{�tElк�r2�G|����9�c���9�-n"�sG�����>�Gu�*���,�h
�����׏a���6y��YX!8���C�A{�ԑ��*(�e^�>��(����W�����a�as��#��c�ED�2B̦L��0�
��q��ɩ�؛��+�*U$f9n�鞵�)H�֍(ܭ��g��q�� ���{t���.���~lo���c�ힽ�N)���inf�tm�	�����\w�i��=���w~[,��X�\�ݣק|�4m"�c+^����9f�����׭&���!��w�x퓓���Z7��B�2ѫ+H۲���8�z̲�CG�e���H���܃����kՍ�4�_�v:
1�A%ϘbJ�˷��<V�`#y(E]����u�8�=9�LH;ʥ@"ݔ�>����O�`��"��p�89���]�\�Ch��\ʹ�o,72�s��'�pic����2y���+�9����jSg,q,/	mۂ�n�������H�\r��2O ����J�0��!l���s&Ó�A#8r1߭:h`vU��#F߻�/O���}@�dֶ�I,��&��Q�pONq��.�y���1�`�2G7׷�h�R3&��5�_ƻ�ߔ�`s����t�m�2$L��{i�
�9��Z�1=��dm#v���g��"�V
!�ac�"�w'������G.�?"A�^����L���1ǭ2kh�������}}N?��,M�Yc�_���=�;q�QQ��ɍ��ߙ��}���DWr$W�D��V4F�6A�dm<x8?�ڒ�ʁcV�w<�ˏa�9�XDH���7l2F9�A��CI7��y�'f�9����8<`�����Ea1�]�%�|���N@c�y#�ǥ�n�D�H��g�t�q�}j�֋�ʓ �����99�ל�T�o��7
v4���;��g���ל��"��KyVi�~eb�W�t>�
�K	��捛,�r�.='��i������X!W�y� �;���-��6�-�fr����A8P�U�(iX��wG&�7�{�u�}i���X�_1c��I�ҟ�#����]eg�wF�!,x�����@��-�Uh��r��>e�Ҁ�v��y0Ƭ�J��p����^(��I�6h�ƾYlt��zsW��1Hc,��7��w�9�>�Ml��H711��2Fs���Lb�H緊Y�ɝ�`�U����y���Z��k2�dt�N��=����X�|�	-�v�_��s���l֋qkmͼ�1e�r:~=��h�-�h����~�L�
ǰ�3N���ϕ���Œ���tǽX��bs"#�l~��q��$�棒0o�as��y{[�� ���^h�g�i6�6�i���<����#�F��#?��x�_��\E3���eR�<ƣ�L�G
��)�H8�u���Z~�Gi�k�K{K�"U����sߌ���l[��Z��W3I&��{�����#'���3ot̻��F���:d��2=i�
�+|�,3�#�S��s�H����h�t�A���+.zuv�OǯQ�����ܒ��?�w�����fH#]�3,k�ͬwc �S���Se��+?�����3r=s��Xq�G�Z�u#�B2c�O-���r8<W}�?ڇSҥ�$���~Y���={1_��n���I>Q$�>V�g9���z�m�mn����wT�s�3��8�{qB�إ>��ß�(7�t�_��Kp����Kc�<����o��ş��
��F�N8}:W�f��GT����2�*0���ݓ����	�k��~9Ȗ��Q��U��9���ϯlֱ�R2W�e��k��~
�D?���nwF��������>��4,`Um�.��F1���������[՟N�拫F�8����Wԟ��q�
i�:�;�1�-�]r6࿯S�zV�֜��R����Ϭ�1��(aL�������\����w5YY�Q�����>՝�_�~��m��k��H�7���V���N>�}�[u�8i�a�t�������ѕ"���(�睞F��Y^�9x��zT��n-v���v
*��^zsV-�X����<|� ry��_�֛��m���y����J�Qy�e��-1u�32�4}��>���W>�d�ƍ�-�-��8z��+]"D%̮�YdtdO��RG"����V�n?��G�4�b������0�˻��%���^G�?í6�l�^�]�d���z�y�v����n��ϱ=sۭ1��,�˺?�,�۟���}):1kT����_�������n�nI�u���r��^�w��e�ɹP��v��G^�{׸��HO�,�`T�N�q҈�t�U�˻$��t��}qXKFkTR�$|٨��vN�Q���+�A#=ps�W'��ON���[���e�� ug�5���V�#Lm���Kc����{s�8�>�I�۲��"�;�sǩ�s�+�%�J���
���4Ю��v5VR�a��Sۜ�:�U����m΄���}q�|���۵~�^�B��[Uc����GC�=�>o��l	ivV�����{��7�\��w6��J_?.�K��Ц�f���!�ʡ���G�lt�ּ���MB+/HY�3)U݂�A�2r9���k߆:)��ZFY��d�>��.�i)t�E?0�F�8?����,’�j3)S��x���*��|E��Ү�X�wo8�x�;�_j�u�٧ⶈ��Ofb[����>���nu/��E쮦����h���a�'�k�ֿe-�V�4��?�?��8�x�լqY�=�#`���C�.����}:U�}v�yʮ6�z���b�&�����$�w��Ƿ�_�^%���3�]�u$\a��7(�<�����k�|G�xf�-�:���g�2{v�q�G��u���:s3�W���g�o�`n���i8'�zg�9�n��M<o$�	f��\�z��ۊ��/�k��*�dmUS���8��3��|U�ȍ'����mo�R6��?����5��z-K/���bMf��ŵÒFIϷ���S.b_1n�2���Pd�ן��=9�;�_�N�YM��$!���g'��Mp�!��~,�*��Ŗ5��ђNx�g��1]��l
E��a,"��ʙ�ʼn�xeQ��c���׊d��,�t3H�yv_����uz��/�ztf�λ�y�#8';I\{g��]s���L��*7�7!�^rzq����b��6�1����D�յ=5�ӧ��go5����}q������G���ø}�v�n�!2�I1�2I�~S�֮A�? �lfݷdlc 뜞��Q��d-�mY&�Nߘ~����������H������io	��?��^$m�z�+)`;rܑ���k��?�_�.��]�恪n<������Q_4���=�G�ve�#i��צ=3MI�x|�2�[~�V9�����ڱ�g����>������Ѩu,�~��'���<We���L>\Oj��c�d��N�W��q�ҾO�bDY����{X��>��lw��7,$��1 ��n��x u��R��:�����f�{o�rZ���_X��=#ߚ��O��<Kn�h_�Ad���
�鹳��?j���;���+4�~US��x�r��他cߗܠ~����_��L��|��M.�^�lˆ*�̓F��W��U�%����Bwa��<7^r1��N3�;��O�~#�����jѶU-o�s��z��]n�s��;}7�䊥�m��r� �ϩ�c�+�cH�)˹������ys[K$�6�l��9�$z����R�i�^�m���e�����_h��U�P[�:���N=����f=�W<�Ew^����]����_��F�3M�ކ�$;q��(�֮�S�.��Ҥ1��"�|���t�G\���Z�+$�#��p�L�"DZF@�y�県ׅ�{�
;�1k71Oy�j�j��-�u<c��I�Ew��W�:��쯌�ZH��q/���Ö�����4��]�;&X�1llnf8r88�v����G��+�&|����~|�5���'_O�i�%���v�H˸�ر}	<v�]3K<F�2E���0�;��F2z~�\Ȗ�MEa�t��*�Y�U\�x�^�z����OuB��K��&U^A�������g��݊�L���98��횱�$BY�GS�����9�1�?���\�D+5̻��mh�"������3�[��-��'�k�Aۓ�~y�[:����J#vw~Ν��s��*-'k�4�bE�"*���ޭ�zrj��f���r�~��"�
�d�}z��|Ո4�R�����y��F9��pO�N��HQa�ddě�;NG��zS�a�����o-��x<����R��HM�ff[6�m��Π�d���y�8�XGn�*�IY7H���^�A��6إ��\��i8��g��w槁n_˔4{��Y�v���r�J7�KM5o�[sr�2��Iǧ=1�n�F�;u��6}�� Vh�fi20�8��6�c9�Y��%�Z,F��a���U�
X%��%G�@�ۜ��|cڤ�X��#��-~l+�y'�|t��E�K"�n��]��5 'c�z��~y�t�V�D[{�|���$�=�z�L7�l�����p�����]�:�.�x��E�rO(�ۣ/a��؟^}*�>�4RI���>�s�	=@��=2+Mi/Y�l�s&ߛj��s�ӌ�ܴ�mbR&tc�[p���둭�xoNݹQ�;x2.��Ì�X^1����
Cy*)���.0�Ƿ��'�r2�c�w@�a�K�j�V�3\ebp:<`���˿���w�i�kZ��[.O��c����*����r��Z��=�R����k�ٗV:���k�K�q�����<�qӊ>6~�?
>	x2_붚ޥunN�ge �4�n3���ס�7~,~�:��-����`���27�#H�;~Q�{�s���Z�-�;�j�~���c��y?�sʧ,[l�R�e���~ӿ�����&�W�$���,��<�
����J��<��>,���[�Ɯ�N�6�ɖp[�I�1�v߲��K�x�P��/���ڻ<�xU��G���k�������F��.QI����o����j����۫:��g�0~�z���y5
%U�2�6I��{7Oƾ�Ѵ};N������x��
��؏`�Ԛf�m���!UU� ���~��<~<�V�	�H���@��䜜�p8c�����Taʊؐ�>|k�.7ګ���z�x�_QQ�l��jˈ�\�-�Þq�)�<�Ze��ڣw���ɢ�DcI��l����{�`R�N���ȩ�p0ð�i�e�}�ki�}��q��<S�K�A�����Fz{
���3��¶�����,���4�9co3�
ϸ7?N��ئķ�8����Tp9����ק���f�|��Kg�C�@q��j0�ƪ��9�+$�G��<��}@��˚?�p�򑃃�=��j�NQU$�ڌ��󞿧S"�(�U�F��6��N}hHwng]�B���
Nr{�׷lJ�E��db۔��O�>���R[�=�ao���rz��6G%ʒ�ma��G��y�~}8�h����U�>e�;���$tQ�S�c���'��:g�ޙ ��`I�PX��G\8烟z{<�C3,��j�;����V������XH�o�/�p=�������9���7aT��B�9��OO֭��`�[�
x9��N�a�!���U�[2#8��=���ީ<��0����A�� g�׾�뜋��C#F˗��u�H+��Oa��'B;,����V�?���5�2�E;n ��o���Ywbv�Kl�{z�J�[g��2H�O;���#�²u&��B��̸i7rI��N+Z�Fh�M�pQW#;�}:��k�(�֐��n�J�
�z�px�U�#C&{��`m�X�j����8�R�X\,07�.YI9�'<q�F=�J��e�!�w���z}}��\�e�F�����G?.q�uk�F�wD3����v�_����}��+��Y��b�\��ӡ�b�\ygllgei���<^j�����������88�g%sU�涸rc�-�v�Ө���})���=̒����6�pNJ�j�H�A��ߕ��z�׃۽6-Mc�%�e�Y6m�Î�.z�ޱ�J�c0�U$�e?.��Ǹ�ӯ֤�Y�rFN��.�n�9���>;�eY�z��W�s�Ê��۲FT���2v�����r�B��F=.B[1Yem�-���N�8�soqJc�IUKn�ϡ���)v�E��'qǷl���W���2���H�N�S���1���"����+27Em�v{s�*	gi&d>\�I�mb�s�s�=��S^�/�bb��m�W���{g�x�hGq�MُlX;�}��w��9�ZQ^��D��,�8�9?�,w�Z���-ߧ˵K��Rz���8�R8�*��k'���r����U�,��SƊ�o��oP0q��=(�u�"exD;��X���^�w� ®Z���0����O���bY��H㌴���og������ɫ�h�$VP�-�����#�py�WU8��v$��奌K����^=?�����$�C7�Fl���u�2��A�,�����0BA9����EeU�����{{�g���]J<��,s���|ޣ����X��+����ݿ8�O���2�L�Ʋ}Ӵ���������Z�Բ��.��22}���~5�cБ�4��񒼂�g�����-$�8���:��w�,p�>�����2~_�'��0)mm�������>l��^z�Ƽ��5����,�!�w����<�VHգ���1�О��2ZA�28��~�OJ�aH-vyh̃�^�/���ĒC:��w��Ę��:��L�J�q��Ѳ�����C��#D�2���^
�0s�:r1ڭ0�5���nO3vx��=y�8�yLɴ�籕�4�$�s,��0{���#��>-kQ�4���Ui9-���9�Ӂ\L�Ͳvځ�Ʋ/��z��t#�T�k�����q�}iۡJM�)��+�qk��1m�Nx����E�f�G���EV�`��N����棳`�e�m�~d�<p?�z��ό�O��4oiq�i*��Xnt�w8�{~J$�R��:���R�@����ҙ.���<�o3�r�$z�F8��V���G�!�tǀ��宭x� v9s�Mxoğ����E�ȼ�|��
��c����\PFJ�~����sf9�y\Ϟ*I4��27���v��8�?�ޣ�e;�ʹ]�y� n>��3�ԉ"Am$���6���H��2��Ӧ+���V��]���U���V��������9,��!����Ǿ:�9)��*��K(uݕ�F�����?Ӷ�w�~J��y�s�\���+�����ٖH��2��u?�i-�m���I�W���zS-��>G�Wn�0�ʷ<t��#��|h��`t��������z�z�qGK��S:O���0�yw��Բ�#B�w�
�V'��B9���5�Bɘ�0�#`����{g�f�y�6�dF���̭&H����Ri"��d�x����7�G�g�������[�۱�>^���O��?���P�?)'yl�Ӟ�>�>���8�Ȳ0R�l*�'z�:q�T�fYw��UE�H��s�?_S��ɢ�wg�sn�`~�\�rNs��1QK(�ϙ&໣��z�(K�|0��xۼͽy����cK�Cݎ�$(�!���%G'�$��5V�D�36���mʹ�A� 0G>��R,��y��w���@����<�=ɦ�d�Wi���@$��O��q��T������m����?w�7Q��T�<
pY粼�v��hN�#=s�y����-U��l1�1fM�t��|�8☒Eq���N�3s?���2�<�9��-�[nҲ�;G��lU9t����2Y���eæs�j�ź�¶��v����=9����	n��
�8�����FVb�8�$������2/����޲�Z1��X1����߁�1��u������r���88�8���\�V��Ӟ1�t�R���������iW�>�ϖb���~���ç����ٙ����6�.{9�\��.c�&in�
�2��^�WU`�$C�������u��ʢ��c��g�2I��d^q�s��͌t#�=i�e1�-��&�f��'��oO�S0d��.gtQ�� �HA#����S�f���w���X+c���Б����s��g��%U{xǖ���G$Fz7<r*�oPI!���� U`̿�=�1��:�biZ�E�UG��Ӂ��یt�b2��x�b���ʹ@�q��'���O)Z����g(�#�\�'���L�9�f�ʉ2����ſ>s���U��-�4��Yd��f �t�3�C0�IX6�
���6}�=�r&�,��R�O��Tm��9z�����}A�f�3H����;�^s��ߡ��pD�G����O^���^9���6��H���c?0'�q�ǿ<{U��%�"	��_+��0Q�s��;w�Ai����"��|��)��0z{|��*ieo,I�.�ەcݸzc7���������fVaq�d7<���sY�B�s3y�byy��M�s��}hX%r�l������\w���50UI2et��o��r6�c�?ALx.�`>X��%�ӻ���=�'�F��8i0�˞W��=G`x84�i"�y����eV�W<p{`8��4��ۣFv�F꫻A��+��5�"ؾXh[w����~��	#H�&6�m�v�:�c����71�i߉��w��A��4���KB$S�����nO^E,��8㉚I�v�g�^=1�9���C��d�X�?�,X�rq���׿^�)�o,�yw��q��w�<�x��S,H�����X2Ƨ�`�s��c�h��J��e
���h���SV���b��V\~�3������<T��?뛍��&sЏN1��
p�D�;��\����:23M�y���fR�&�Â��c��P*���d۶A���9�N0��lѴŤ�,[��%��v#�J�R�1"=ţc�}zl�����宁��%�UO��?PN)X���kF�k�S �=��_\��&Y%�,�a����n��lw�ZXg�c$�4�K3è�l�q��})d��kĔ��wylT��=�ӓ�
1�+�f>N<�v�U#�8�:����L�t�e~b�36ߘ��}{��*yHm9�ٷɷrp�g���$�P�y�+n�ʫܨ8$}ӏO^h�.�eO��J� ����1�j��q���vH��{x�Ð}�{�Չ��5�PF�d{#G$�לw�b��)���I�,w+��ߦ:u�掀2;Sq�fF���Lu�8�*8!�|��j��p��O��\�Io4��1�T]�$�t$�����͆�Ec�ܸ��?^;�
���!��}�2�prJg���	�?/yl���dw�}=�ClZ�W��?x��D/L瞢�v#��7.��o���zq�p���%����d]�+��p�!G �מ����~(k�]��I�Q斓�9�l��s[Vh�V���-�c���y?��z��r�G��OL�9�N?E���C�xkS��K֧�\��`9�9��܎��'���Xt�H�P�q�)�S�M~^Gst�;��m,co�����9����|F�4YC6�!aʩ��s�c'����Zp�њF��^��!�W�E�փ��2̹�8�'v1Ǩ?PzV�)o�h�Bp�+n^3�r�J����b����7�F�6� 4gc*�<��zd�w���g�S¿,#�ծ���Ў��-:c�7g�y�m�[�O'T{�Q�,��mV���w��S$��)���*�+��='�{qIg�Gsm��.U��$����|�V6���#h˹w���\px<��8�fWl Y7�$(<���q�L�U�:�������>���%���˂�I���Ƿ��L�YX�n�]�0��}���M;�p̋��8P8>���:����y)0f-�#��/#����MBKG��&���s�~9�N����\(_�������)�,o4?hxK�"Nq�ۯM2;tI�i�7���x��E�d����XHsӞ���ޣx��a�̲(/ ��A���{c�6�+�@��\�����@�рdf2#����~�"�������F�~<��E-�m2ۯ���9ݐH$z`/J��ujl�6)P��®OLq��G=�[M	�n�� ��p8��0r>��sIfV^Z/,.~l���Th|�dTP7�1���z����J�D̹��'���q����MV���H�UI᳴�s���V��ȧ!�u_���@��OaU�a.��ZI��R7�;v#ҲamL���G�Y>U�nqP~�6��Q^i�*�%�{NG�0�����i�����m\�s���'	�z���x����߭eʺ�K��CNo2���������`9�2�_���Y�{\�l&2Y��g�]T�V#!���p�v�-�9������}�J����瓌㯱��ʔDM�>��'��ý�|�9,F�H==���9�~Κ5�d��������s׏��{�K�;v���`�~<�j�HS�m۲����L�ӏ��\�і�4��՟>����<e�O�pۡ�1���W���.�o�F��y_$��ц��|���~�芋
��x�
l�ߒ:�P�i�1�Y��Q���5���r��h�i��+��4�<Rhe~e_�9�yzیzt�5�?��Mh��YYpC8$q���c�~�]�_G;��������׾v�Vf����wN��a���ǝ�{�����G�q�Q��(���%��ꁙ��f>VT�ܓ��~���c����&9���wc8�8��+�~���BY�n~laW'��#�s���{\��4;��"ns�Xx��;z�ƮqG�|��.������L�m��n$���o����ls���Ɠ$�}.R�#t}���G��f|C�&�w�"�g��_���9��}��J�<A���u+C�4���~�(pzs��<�ǥo�0��B���I{�?"�/X���O���j�~�Lqӊw��B'����nF@��0}1�k����^�*:�g+nFn1�C��뎀��y�`ܮ[C����gs�;��>��O�#�/)�s���IGu��H��6s���ڦ��Y���vU�J���~����Z���+����m��#Im�iF:c?��S\/�`�J�YH��>cF�l�}+�<A����,��<��oK"�na�2{}�8�˾�B��6�Lc'��s���~ǟt���L|�w~��*�>zs�q\����N�$���$��y�s��p:~��K2��ZM��b �s���<�B�*��>���j8�.�CL��b5l�^��!H9�S^xO�ֲ}��E�Q��/i=sؓ߮*�����Y6�:�������]Q�N[4g�G{�1�z�E,5F���m�6	�A�;~+]���K�{�2n��}r�/��e'�8bGS�^��=�" �,�#�j
ŏ\���sR-�D+LU�
��g$����s�*��ў���)�'�{q��Z된n�P�
�H9@9��8��?�*��H��i��ᓣ��4J��r�ϵ|�����9Y>U)�d���O���Ȯ`��1���3F�UI$q����6�&�S��Q�I	�_�u�Y.C�qmt���y=F:������(?�ӫM�����?�ڦ;�ڭ���Hc=?:�ُeͺ�B��]�e���	�O�,kL�l;��YW#�x����/�R�����_�^��{H��/�����؞?�u�^7�����}&���ƶ���_8;���;��%�Sl5qYys���@����~����dӵ��w/-����3�H�K����	z%I����=I#�~�zV�;[�m�E�,`���8�޵���j���3�u(UT�6�&[
�=����PxS`���q.8��aYw�q�}s�FR-W��~�ZXEs)���v�^���3��mi�2ڇ,�$���(�g��?�3<!�_�ӧ$g���uVR�#hݰ:���n}+�9����FĿ
o!f�����s�=�57f�ҟs���
�%w`����c�����iA�4�Ck)�lEڠmA��L�C�w�W�t�~���^X�Y>�nB��$n���O��_|an�:�
.�sgo�6��	��s�$�G��{u��V����#���x?(��ָ�߇��U�lm!H"��4�#o^�#�q�4��tm2�b�m�;[y"v�����_*��ߴŲ�qy�����6�ˏ�
�:`2:�5��a����J�Q�կ��v��&��������q_�E�n��Z��~'��i
�%wme_P=����������U׵�$�õ�Q�#�\�5k��¯|R���hmD�w��'��qֹ+V�F.Sf^�Ihe�@�>"j����YVI���:��q_l~ǟ��]B}/l���N���#ڥ��d�F����.�o�L���8�_�	�iz���huʅ\��;���j�)�妑�ΨR�;7�)�"���:��L�����G�0p=�:Q�N��mQ�p�"�n�=^G�Im��B�(�8�O'<�H�̈́��=���=�Ѝ8�V��2	J,h�aw��@��zcsQ�y�T��]C~�|�ۮ:��u��i��Ym�w��`�s�ҙmI$�M��vދ����?�3�;Ҭ����$d>b��}�u�Vl�'Vo�H8\3ry�k��Ha"0<��dU ?.C��ˡ�#'�be��+
�*��s�>��Rƫ2�>YxQ��9��9���4�e��T]�G�3���8��I��Y�r�Vn�<{`�ۜTso�H"
���8���8�-�"P�W��|��hb�Z_��"���8,?�ꧪ4��y���c9#'�\�HD����9T�PO<��֐[G&���y1V��rzq�9�X�Q������O#9瞧�=1�Ʋ��K\��*ǡ�Kc�A=���E$lʒ�"�|q�L��������2��q�rܞx�3�<�4���6��6=�����z��H$u��3H�cs��{���M��-�����ߜ���Vx����1;�<��#��*^[Y<��Ć8 v鏯�欍���2��d(��~8瞵Y�[��$�|�|�7'�C���qA���G��e�˜}��~T�FbQ�o��I��;{}*�!R��n�ǖ�pI�S��Ε�����s�w�����S!�r���nb�;�\a~�����k��3N�Y]��ӯ��3�9�ZW,K,3������sӎ8�Tn�C��22���9>���>�zVس&�X�}�C+ivܷC׸�g�+6�et�I7;2�:��q����0;U릺�$�I��Cϡ��k.O5U`v%������_^�7�\�>#Df�HIYf��{v���m���=f^\�,,��̥�Wq������G"������GLu�y�Y7d��ehC7�$���u�}�q���DWb���Aq��ެۀ�������H�3�<�U]��d��}s�a�*��I$hU��	č�~�_N�?Z̿�@��[ȽG��d���u<1�p���*�Ms�"�eQ��TH��9���t�'��z�#/���������=j�9�(��.v��9�z��&��X̙��;c����vǯ?LJ��saR�-�:H۶�n�3�{s�t��&	Z9"�n*�Q�9$�{��V
��g���$g#9�<׵K
�E���3��Ғ�`�ҧ�
:�Cy��\��;Gs���>���yA�d�1�R����;NL�~VP�[F}���N�#�gvd�>�A��>�=��G,���Lr���k7ʪ��9�Ă��#��o��v�N���SG��X��7�0{ԐF�����d.pO=��ߊ�FEs�;K�i�)Fc�l��9��`�WWt�%���8a��z,�J�dP�k!��۾��!�[���ٹp�g����=�:Ҟ�ror�,)!�Hvu/;prO����N6�H�}�,����v�1�^��;��6�̓ ����=z03�<�W��]�[�NH,���=3�8��f��[I�X�e��ɎU��5n+h��Z&�ha�F�X��qUm�We�h��('�\dӯNj��]�"���8+�=~�>�=�y�c2H[���#��݃��3���V��F�d��0��zx��mYC9;c�6�/o\��v=�ǔ��ٶ��8nw��?�6�,w�1�F�.Wsn�g��s��!}�D��*�ў�?�GNG�}�����mp�F�^�c��Z�s��#g۷����y���1�u'm�@r�[��&�1��s��zT����X�o/frIoq����IE�NBY��N:s،c8��7F̗���L�8��s�~$g�k��[�gy7.ӵվ__��D-�ea
���d�	#$���;��Q�%̊Tf	n0��n��$��Vݸe(��3����\w&R��
��X�[!G���z����ޥ6�ٻ��p9�ˁ�~�u��aD��n�$�Ou�=���>�.�ݕ=����lH�KH��#6�|7 q���#�8��y^[.�.�`��D8A�2���3�}���x�iw'˝G�y#�1�zt�|�A�/�>"�ϝ�_�*�2�����k�����S�6�֙���8�?!��^U(� ��,j�Î�y��ͫ�ڡ��w����Ӛ7�q�.��3x�X�p�����=�~�\1���]A��xn�7S��)wK	e����r��2�@� }ON�4����$ad�J��O<���|�[cH�义䵍�c1��N��Ǡ�H�b�9<ͬ�~���^���sP��@���ݵUX�̤���˭ʳ B�b�c*�vN:�s�ϵtu���k2}��;����҉ݧ�T��#Vb�ʕ��Ol���M�̀��-*�e�r@�#�Z�fs~S�7̪�G��u���=n��Q.L?j�B����8Ŝ��zg8��q[r�.���(m'��9�ן^�d�;d�n��p	;�Ϩ?�b9`1�6F�nD�x{���z�B]D��Y�d���F��R���g��AFN}jD�f�h����q����I�gd�x8c.Qx�<��}�9�q��#�x�am���G`=z�
�c�y�A�����C�c�:w�2.����<n�tU�NFG^���Pni�mpd���$����8�(�R`��
���)��xn1�~�syc�;V�eix*��0�g��z�m)�����]��Ҥ�u�>�4傱��r����3�9����i����fϚ�#�����J���5C4�\��367+�v�03��=h��m#H�^H��<�r�a�?NpF{�J[cGV�5�mo���{�ߦj���f��333n�.~��߷�
�R�H��$�)df۹�t�=03ҟ%�S@�|?��bB+�q�'�<To:�o��A��O�$�z�8��ib^#]ѐ�g�׃���S�b����(��ͥ��y��5R�X�(A��85���,Kq�_�|d�?�c$������?48�=�����>��rЩ�mC�rz��zt�S�3�����1�|��#���?�8���]>�,gP%;�mo�?(�~O��+��-�����2���v'?�u$wFeU���;�����*���řU���)$�����O�=��0oi�U�X���;�=x����D�ѯfex�#�0sӀH8�U�?4ǹVM��Q�{��+����aDy��>F���O����8�`��m*���q�{d���.10B���S��+����뎼sߊ�,�x�{n��b�$��g�z��48�W�W�#���EV�cI����zsP��.�N�UXp������/^��zէ"IXC!�������9��C&\Hꥰ�`1q���kX�D���v�"��$•U8U#�9���sU�GL-�Z2��`��c�}�21�ZU�$C$�[ˍO���3��ª��"Ѧf�K7͏0cN==(���ͳcZ�q&
<�6�G?7�H�c�M�I�e�x��&໗�Ϯ	�c�4�F���J�*��|́���C4;�bN��?�g�f�4�"9R�;}�m�6����x�:��U�r|�9��ן�q2N��e>b�Y<Ӟ���Ҡ&��UM�t@�P01ӒOc�ߋ���+�R2�����&���I����Q���!��j��r��'�y��=���X[�
�ˉI
�v�t#����,�9��i7&�NpG^20A$���-�qg�b?r���c$����Ҍ�ӯ�f��eG�>��7�d�ۘ6���8��㊅�nc�;{���#w���s�O�95W			��cy_r�U�##���3���k�Y"�?�Sї$z���㚙�a�(J�z�q�J�byZ)U�y�cHۑ���܌�8��I$v�C�dU��
���8��Lӡ�h�hS��3�<��1ӧ�9�����m�;@H�4�K�;BH9����G\���Tv�#�
���B}����mo�oel�g�%q�Lg�&���e�(�����zsۯ^�L�)�h�]�4[wd6��71�NO��kq�J�r��&� ``��4s���Uw|��8�翭I�ib���ev,c���m=���{phڑn]�N���K~<�ʁ�YJ�m��O��=��zT�<�bI#;1�1ݵ}1��#��(�pL��d�/E<���O���K��n���ן|��b8}Ѳ���2�q��u�A�F��.s�D��s�s��LR}�F�y�d�v��3��<S�}�,F!!Ys&�c����HHfvh�eB��wM��lc�}=j/ݤ�U�����s����*I`�P�"�0;�ʃ��A��q��0��^+H��v��.\PI(��H�6=d�s�ny<p@C��<Z�.P�_���ӮH��'��)����{y����g��g�<�^D!H���Ã�c��Py<樨�����~]U�t���מ��G\$6��nf^7������ҕ����Hw*��d�����H����vf�[k�p1�;�hhdwX��*Y~l)��	9�#�1�Q����3@��!NNrH�.��0d�m�y�W���q�H#��4��W����C1�[8S�pq�=}�3J�,wl�h3�eLH���~��\w_�-�~���
]���Lr;�S{��p��7,N7*�Q&ޠ�F����3�昲cr&Q�������}t?G�f��v��60xGźԐ����<�=�'�aֽKş�9|7e�-|L���&�
Ԑ���};��}+��~8��u(e�*��ܫ.3ױϧ?^~���k�#V����9��XVK�Z�X����cR3�T�j�=W�>��?n�ۢ���5iu�!���n�s��?�4ۣ�w3�:ׅo�T�%�t��n�g5���a��%��p7E$\�뷮x��=��H�1�,rHW�KjXc�'��n��3�Q�l�G	��2��n��V��IW�[31�g��.;���Һ��o��*���l%Q�m�B�O��q�Gnk�Idr��/��*��?�;���U��F�!�U������zv��mO�*}��e�їV~�Z�鲪4W;�m�ᗒq��/Ǒ$�H��y���@�=z�LW�>��W�+�ŷ����r�z(���k��k�����ϊ%�U\�qu����׏Q��a���߉�,�Q�Y�t�8pW�B�w������n<���m�X)�q���{���Ǒ$Q�:
���27���ۭvZ��W���j��v�3��צEvSͰ56��e��-�=ݡ&�hWfQ�#�����UK�k)ګ���>��+ϴo��>�9߬In��f��r1�#�O������z�,&v=��g$pFGR;�Lq'����V�B��d�G�O1z7�O��ң�!#�
��3#`�݆;v�{�տ�[_��g��q�n�w9�q�y�ӯJK�'F6��l2������*��2����)��Mʸ�p���ۘ� �Γ�T���ק'߀1V"��
��h'����>�ʣ��6�w�nX��;�j	(�ڣ��4��-����54���sycj����N1Z��v3����_��L��#t�}���Tg�s��#�t�K��I��V���<�ǧ8�<Tki�Kuk$h��a�<�ӯ8V�\�*�d���+,D�A��E0K'�*��X�_v�=�O\��
J�쉣i��(���2q�9��)
��6D�hy��w��L}
N��`�J�RCa��'9�'��:6(����˟���$rA��=�����\��z�\a�?ǿ�S6k5�MŶ�j�FN2zsW^'���,�F?r>�����#�H�w4��+/�p�A����@Skd�Y
��;��l`~Uk�Kx�A8�5\�}����.&f��G"M��9����ӭ5�[�:m���Ou���򏙙����m�ݪ�p�Cϡ=pq�����o>VH�s6�0��q��u�5�)(o)���l�9��Sͬ2���>�^��;3�ޥ�qi�~��2}���	�|��Ed�xJ�P�a�X�j��~9�Ȯ��Q�a��s7��8 ��9�$}*7�0��#m�%w`�<g�*}�����|!��uU�������+2��6�,�r�xnf��\s�<���O�K�P�cѿ�>��E�hd��M�a+7&A�\{��n3�)aiM��I%}�6iw���nHY=��>�\��W[���oasu�,��|�/dǎ�����b���'˷��ޣs��8��2k+��~�ۘ��������Y}�G՟x��3Ѯђm	S��o��	��W�런w�Z
���w��F�01�qӀ~�>�i��ռ��UǾ}��j����!26�c|����ߎx�f���6��.����/���3C��$D�ُdx�1�G�<w?Ҹ��;����%\Fj&a�>�?)�=��z�|�
�`H�'˻9�� ���Ž�5�{�o:5�ߏ��S=zv������d�<�(��� ��|q��f��8U?�>��k������m��m���3��鏮0Nk�j��t��2FUUy;Uz��#<��s��r�"��4ٕn��Н�v��u�}kZx�ڞ��K/�Ii��٩�.�+�9�lb@�;C���*Ǹ���P�L��YUNB�<�;v���{�>�e�d��V�q����=��>�?��b?\Z�/�7��`
��y�'<����y���L�yT~ď�x��+}Ɠ�eV�;z���YY�08<���_�~�����춏�V5>ae�[�1�'מ��x��	�ʛlp�)d\2:WE> ý'�%��[3���	r�l���ߧ|��	�&�%�R�� �ӎ���[�_�5���\i�.��U\Q�ӎ��b��S�4��m�.�F���^�=�ӿ5�O6�ԏ�c`1Q�y,7�1�H��F�v�3��1�֠\ȱ�%���S�=�u�t�=���\���#irIә��(�>��:��=k
��Ǐ��eY�U[f$���N+�8�5O�H���36��Vvx㑙B�]������N�-CMmp�$c�e�H�x�s��T��5]=M��o��kvœ��=
W."-,�Ƞ�;��]����zV�Q�����c�~�1��i�4��Z35��%0A���>��CĚk3k:��]�����$���x�
�	X�_���K+I$��&�(��Vs_W~Ͽ����}Z?x�O��?+ a���s�=���bia���dva��mK�w���U���2����VS��O�?ȯ�~�˖:U�W-��F��M��1����/콢�~��W�b�D��_�|��>�Rz��^�-���i������=���=<Hѭ���U���8ƌm��o�B��˰U
r�?0���O�۽z�j������!�@��ӵA��mk!S�ڪQr����}��"��LQ�*��@�:�d=?��Ӎ8�(<�8"q �v?u��8-��#�v�-�Ub<� �l.�9�B9�{ZG�n1(YQ�Ő�ǀO=?ƚ�6(��N6�q�ǧ��J�~��i�p�G;@��?�>ةb[id3<��v����:g��U�Iw�d�k��y~pm�@$X<����=OOӏcH	�8��y��m
���1���4��<�|����$s��)���+sk���瞼�K~�_�oˆ���c�0҉9f�npN����A�S[�u�G�ߛr�^�p2y�q��Vy$�*�oݳ�/\��G�j���4�$�
ȟ:�y$�8'�ztEX�#�I%]��UX���};{�`��O�M�nR=�1�'9�<�z�q� �ʊ5e��ps��>������eiZ_��@��x�g�X��s��vݽ�r:{c��`E�7U]�?��:w�C� ]���=ۺ�Ǔ��JdS*�\���0|�n �g����-Օ捇�6�flc#ߧ�)����$��bX�{t�'��)�Ll����VV]���ϊ`TfY�?{/|��:�?9@�d�N��w(��e
�c�~��hs+:���?/;�?PqW�h7�6��>oQ��=�}3��^�/���D��\|��>�O�*JL��\Gn���y�4[����Ȫ�D���J���O$z���08��Q�%��"�-�OP?�~�Vx�����,�>c���}�ǭL��I��֤3��،�
;{�sY�o+ � ݟnG�����$r7�cWܭ�F��~�G��e�=�ϖU!}9#�O��c$hb�J��r0��}����+:�P����|\�3��l��Zx�`@��6����CY:�++���r�ed��\�>���<�r������ �O��\�r8��o�=�6�B&�s?��
�2������yc,r�Ц[pe��Y��[ȹ3�F���$��x ��WH�:a+��J�Ȳ����L)��A#��?�h�u3sk �c�:w��V��0��
��h�ps�;u���uD�n��yc�V�=3�?�O¸���ex�n�zna��L�\{��ؙ<�y���x��~ǭ:[y!�̑�^�t�<1��Jf�CȐ7�nH�q���r�:�E�����p�R�Xm�{��q��;�g�j��VK���3no� ��|zzTsG�Fq9�E`2��<
���=9�$��	��0s���كZ��iO�w/�L~SckǮq����S㶖;y"ʳ۾`T�t�֨��n�dr��X�N88����N�#Ek&���I\�u��ӊ����d-����qU����㊃ζ.�V%v���^��›E=��շm;�c��^����5��P��>f=�۟l�=iIuyQ5���c�o-y'ty�>���贗��a�o��^�s�^��s��y��䆓���-����YK��X��v��enq�;����*�&m��!��;�F8�y� 29��h.�9�#�!ʏ�����*�/!�Y �?���3���:�t0]ɺ6��eU���s]�qH�u-��v+#)�����W��=�L��
�.���ЁǵW�n"�$�h��j����=A�UՑ�@�5
���O`zgު=���tm�!_=L����2y��IV��i����ۜ�����߁�M�?4����ݷ��zq�q�W����oݨ.HݎO=��
iÚ$aZId1��H�72�w�:����L弩fX���g�9�8�S��唁��f�{�;�T�����*�7n�r��n;V�����@�,S:�J��ns�zg��ϽMmm4���+!��'�jU�[&V�cm#���~�fY\M�.�]��9S�Ǿ}zV�$9�2�ꑡV��>f#8#8��E!*n*�۴�zzz��U�bV��ro,�I���3؏���oβ*VE+�~��z�S��k����������~�מi�O44+0��m�=s�y��O,K;�m޸VbN�ǟ^};���a+���̼��GrG�Z�H~co�l����$1�g?�J�0�#��M�K�^^=�䒩p������g�N�*�RC�[oA��S�F��+o��,���G@�SQ�$(�#	VB7�򌏔d���zn�blu؇���zz�<S��@_0����=�7~=QE��H�6�C� "�M�(on:����1&����#]�kD�X��p}2?
��Ķ�m�M�^M��03���;��i�V�_h�r�I�ڤt��x��^g)��Y����������?í:)�YA;�pa�m�����1ҡ������ �# ���I `zdc�r!)!���ȼ�$��0S�\Q��V���2��Σ����iF"�M�*�E��+��9��1PHU�io-�U�O^�y��``�S�6Z|���a�� w��Zڃ&`&-lU$fǘ�	ݎ>�N������n>�6�z��Ʒ�;fy'U�W�+��0z��׎y�'x]Z'-�����;���4}����tY&� o�(;��'�gڦ{Ym'�$�#|ދ�~��ǥ2I^Fi�b2L�Z�����٧<JnĈ��:����psJRБ��[H$*B��n9�$؞;@�棑\����Gc�~�\��9��EB�Z5
q1��=�@�����ɵY�+����;� ���j�5d6�ks"��9I���0}v�J���Ky���N;�TQ6c\����+6rG�I=��?U����~_3q�gu��n�s���{��3�\�o���a�$V
�dq���Xb�\5�|,�Y��Cw���<���)Z$�s�����28n�1�V)�	HF��p9�y�F}O�y���.Ó#��!�6H2����X�ӟ~)M�*�����|�#c� ���2&d'n��>p	�����ȱh��*�BJ��7qӟˌжE��)������|0ǿ����n�e��5�1�����������f�P̻�R����Ӝ��q��=+��b�-Jhc���Ď�� ���݆:j�0r���.��T
658U�m��;�q�]��.	��U
]Nr��3���3k<�� DV�pЦy`�$�rH�>�WM�]I#*�1+}��x���8�p+J��=��ب7*���G�
�<d:�3�Y;��Z`H8�7��&��N���F�v��
A���9�������"����s��^�F>�ֹ�cB��h&ffػ�g�Q��?S����bh��`�ˍ�u8�T��n�Y�g?�'��{`��+����b6C�����y���J���;Əu�
ۂ���8�=�ǥW��|��T|�z`1����M�Y�;H0�W',{�#
���e�+�g%�pt�y''�h����+�y��eV����O_��L��;U�)X��
�[��O��R�I�#;*��6��<g�ǿ�S�2�X�۸�$�9<q�sִЗ��HD�'�_���3�`pH�l�;U{ƒh����`��Ͽs��55ߙy֓2��"����_��#�BI�H�P��6���f�z��ӵ�7�V�b3(?1B���I�^�C�`*
�%(�Y�[<�Ԟx#�i�(��Mn�����g9�ׯ|*+�xㅦ�7F�]�d'�c���a����\"�n-"�F���ǃ��q�3;�{�c*�Ѫ���=2Lt&�bdh�f̛���>���N���~L#36�s����zz�Q�Q\�`XL�n]~n�7��a��r�$�v���7��d�}y�h�p���2���.0�+��R:t�i�6$	�+m�v@�9�<��=R������M�)+��ϩ�zb�x�
�+����p����*üV���A!��G�z�=��梹w�3<�)|*�A'ל`s��Tf6H��M��.ߙ������,X�ͣ�S��1�R�>���:sR�i�\���m��n��rO���=���Օp��ˌ\���
%r�a�����H�ue
�G=�n�f��'���/����c��r:r>�+Cv��y?+q��q��s�����b�N�ׇ�d���H�|��9�%fb3����Ͼ1I3L7,l���L���t�8�F�7�m�2����Xl����p�,��#gxU*
�ЏƄa���FdX��e<g�׽6H���6��<8�##<O^�c�L�$E����������)9"8�H��Ռ��>n�88�����n�	�=��܀|�uq��@�4g�?#��K�Y��Bx����Nɔe�1l��t�y�\b�.%UKX�E�Ǵ~���>�H�'ϒ��T�Bӟ^:s�4�#x�]����9��Ǻzqڤ��謱��B�w���~9�=p)��n�;Uڡq&�ݸq�x���{�,G�I&�-�6�����P1�Ï�-�exd2�����Ӟ>��zظ��I|�veV�U
��ǎ��G�wf9ʪU�;rr���zf��[٣e��W�����+��3�i"�2|�#��/����Jth��2K��ł�pA�FG���<sMʰ`���̏`�������{��T�"�	�\�q��2~�4��	��Y6��ʏ��/ダy#�I�KYYU�@~�Os���qS�o$&QBᣌy�/9$p1�9�TFU�2�U#RpÞ��q���1��8
��c����3�ϱ>i,�q��;��<}3N��Q;�o�\&�=Is�0z�14X��kY�e��|� �=3�׏�c�^'��5�̕v�R6P����Ǡ�k#�k��ʂ2�O=�:{��1�y$h�r�y%�1ӷ��C�q�G�_���Mi��x��Oc"�x�����H�z/����|E��-ƛu�"��s�On:����W�.�;�Eu�̝�wn�T�����޾�>7h?<%�/��7f0��)9<����������Z�va��-R�L���6�$�\��i�\f�m*�ӷ<��5/	j�bi�I�-��9*s��=�D�v�/���23ն�A'��_Z�J59d�bS�2*��ƾT���m�F���2@��=�5�(��y��c6?v;m����ߋFU���/�972�…�^��U����Gh��r�R���yN�EGR�E�Ř�q�*��=����AL���WH���1�����~椺t�yr�S�mY$P:c��G��,��x���fd����=�i-��[�?��!�6��L�9�;t���hṒ&\��I��c����MC-�C��&�8<����nx z��̻�QϹcPxyl:�s�#�j�r�؍�74�;Ѽ��O�E����ႁ��OL���q]&��U|jѶ��M&�!l��a�vs�ּ䐥��8F_�_��t���:����gpRH�Q�<�a�z�v��8�kO���AʟD{���}|D�_�������H˷ox���z�]���	�Ӳ���?,�񣘲��H���g����$��f���~��^���q�r#�H%YPd`pp8>���y�::)J�'�Q���m|
���k��U{f�b8��$p}k�Ѿ6|!�(Y,|ob�;f�f�`g������9d�	�Bd���!rC�1�-�_sҁz�H�a�m�*���h�
鞃�>��O:�}��s�E�?N"մ]e�uhdG��:��u���֦�:TC�kd|�7^�\�����x�E�d�<Esj$�Yn팞��dz��t/�g�O��Qc�0�{M'�=�׿�98�qN_H�6�e��h���r���Wt����{�R�6�P���)�GLrc�8�$����+&�ogy�ͧ΄�����z�u��MmV$��>	!QW�kY�A!�'��<�<WT3<,�v2��O#�	`gVGfM��2����x�Rx���!�m�;�P=	�1^+���@�߱�S��͉�Bw�N�{u�k����7�7����j�1�ͷ9�O_���ұg����h�;6�H���X�f�#pF}y=�TC�v(h�I�{��c���߽Gg�O
�ѭƗ��૭�1Ƿ#��?Z�oe翞d��W����Z�J/b9$�D ���eh���M���9�<zT*��ʆ_-���s��sWdӚ&i##;�f99��������i����f^9��/��	ulB^I8�&�-W,@�8����߼��.H��
�̟n�!���e��?��#9�~s��N�%��cn�m�1ǹ=�>��6�n���rۏ��69�O��S~G
�~S�<���>K^���3����<㡨��h$g�\�G��Ilt�z�����A#iUT�a�m��}y��)�Rg���f?:�T��{{v�$B[��c}�w7L�}�}�CH��'�c*�hnSӦ=(�M�"��_��R�X�î1��T/���vڼ�A�~��H!�X,c�[�;u��	�X�s�HvXv�y뜞=��S!X�ae����s�v|��:t�;s�D��݇
�x�y$��~�k�6�<��o.!��˨��8�zs��;�w*����pH����b����H��,���H?����MJn�|ɸ[|��N8���	�!�����O==1��jO)v�P����\�����,@ϗK����m _�ܞ�~'ws����~��?�n}�����U�\�%Vm�rO`G\��>���Ιٖ_���m7�>���R�P���xHi�G�C�~1�8���c�"�����a��v�9�rI���<��/��~\��;w�L2y)�+�Ŏ�A��>��9<b�ѧ-���%�hw%�{5ٵ����$��=y�]O�s��h�{�Y\�0}}Fr���yx� ̀}���<�4Mi��n�>�e;��`}
c,-b?i���?�Ɵ'�Ό�H۷�݅�ӟ�C��u��I��,��#)'ʸ�.���9����bh�\��z�׮0>������ݍ��g�[�_��O<W?�m+��C���R>�G�1��;�ћ��Wia�=I�\s�k���:�"ڕWl��.7g����_�m�.U��/��[j�'����#�t��xK�F�Z�+�ɕ�y����Ӛ>����6+Q�C����O�xkXV�MvrI�č���#ߜ�W�_g�¶х�@�_�$�����5�x_�g�(��ʻW�z��=��4Xm�A,*�S.��`�:���V%.j���\��U���Ů�q��Ր��i꾋�}q��tVVGnȰ�ˍ���A���-ᴈ�Q�f?x̓��$�~=GZ>��̟k�ܬC����bs�ڽH�1ؒȉ�6�Q��ȿ0���c�<{��|�#��j�S�8�k��☈�6��J�v?�������v�U��s�0s�}s���e.�at*�nA9��O��	+�ˤ{–V����☍w,���-ZF]�2�;�q��٥RL�,(�l}Ҡ��<v�n(����T�!�6|���ls��#�@��3���<pG�ސ\m�8�� ���g��<��{��H��6ў�8��b��i`FAq�dڻ����֓vaRF�X�Y�#���hVe�|�~R�Y�=��y��P�aM�1�v�����s�2**F�(-&v������F�k42n����~Ιb�+�!���랾��İ/�l��̬�8�zw�
�����#3���|���"�9Y_�Â��=�|��u�FLM*�mʱP8�zg�H��C+,k嫯�Ć�$q�_j�<��T1��Up22޽?��X��hvR껏��;s��U�4��e��r��o��z��@*[�o'yV\.ݻ����t��W��O0���~G>çNzv��܀Z�r�U��R@��qޣ*<�;�z�́�~~n�;v�����*�>m���������Fe
������2EG��07�Wg\�8�8��:l�.�0ěWo�:��'��zqLx�I<�o'�b��0G�*�²NҼC�V*�ŕ[߰��?�Av����ݹ�wu���߶O犳4����ʋ�oF�;��z��*�i�[�m�3m!pG�h-lg܋y_d��>tX�}s�}�����;61����\�'�p1ZWcc���0A�'{u�e�G��1��3�c���Fy�Ӟ�Ռ���U�(]���H
Ӱ��q�Y����\����x�׷~�O�w"����;�|�QA�c���+.X�nv��k�0-��O�>������	YQVE��=�zVuǙ6�h$-ѷu�?��[r���Y�(%8�#�����7 5������c���>��c��M�-L;��H�˯
v*��|�O�3���ȢRѼ�����|�Um�o%�i��L#\�����ҩ���)���/�ˎ��㷯�rԎ�ё�c�U�%���s��@s��s�W�(v T��3`|Ü��n*���d�e,L�!-���O��	-�����w���⹜M9�@,��(��1��	ڼs�=¥�L�-��	!���M�\ϰ<{�$��M�~VG�Ã��:(��%��Y\��%G3����"d�a�"Uea®W��<砩
�Gu��ly��p>���sQ�Vά�``�I8�899��棕kV�ܪ6`���s��$�'ۚ�2Q`�C�+��e�c�g�y�֘4���l�	#�n?��=}
�-�ß29_;[�e�{q�q�s֜�sC �X|�U
�[�Y�?�ޣW��c�^�F���bL2�'+��l�zS.ux�-iX�� 3ch�$��R���H.l��6��1��s�Uv��S�Ā��F�/r�� t'=x�O���ֆY�g���y��ۧ��-.�t�io1�<Ư�<����s�RGv�(T_�X�ш<����]�v�0 ���7���ッ�8���6"���@��O����}�W��mxߝ�.��?P9�Q��i��p۹~\u�!�ӿ�*�<��%�T(v�3���O��vS1�.-�XUY��X��s�'��Z��6$_u��VT���=y���Pۈd�Zh���6�I���q��J\E�RFۗ"5��[�#>�u��d��#,~h��S��܃�����E���9���*WG���x�ޚb3�y�ڦ���� g<���Ȍ˹�ŕ{����h�	 e��mLl�f����:�N^X�!�i���ǿ>��{;OB%�y��(9 `u㯷Lz�=R'�4���]�{����kh�I^9���6�-C3)�}�����=�\��6���,N��c�_��S
:2F��v1��z��N�ՈV[t�K���>�}�1�y>���(�5�y�tv��Wۯ^���<�*&�Ż���l���㐅��/�%b�Xg=�y��jtO�,ɏ�
򁌌s�_~�?
	#>֙VFVݘʅN8��G�1���HQY��� �����|�5d2�yi�j��#m!����h�L荅P[w
	�z���8��s����Ň�>翿��S�f�����s�g$s�;��$M$���ۀ��:t�w�[se̲ m1��}�#Z
��A��b��ΐ`~5���;������|���W�hO���8�1�v�Z�Ӽ3�p6�J(�c�d?y�J�܃$@��*��3�&�-ӯ�Š+0-�;��_����}�c���3۱v��w����EhzC�p��c��5&�H��*>S鍘���{�b�TipJn0�-�I�y��T�I��V��;-���EL��&����F�wFŶ�?74��d�����h����K`�D�gH�(EB����Q���٘��޹�lQEi ��@"H^!��,�^3���:�q4�`V��6��[��T��f�D��۰a���Ȯ'�`G�k�#Yc��/PvQEva>&a[bƂ|�&i�c�����֒�%���خ��c�(����#��w��˕�/��]�r6�'�(�R�H7f5w=sE�/����>�n6�2(���mO��/�U��[�dsE?h	���!�@H��j��_�>R��FO�Ԝ���EQ2 Be�̧w�B}����e����F��y�6;��袶�P��l%�t��6յb�=V���̷ctN��ȟ�EFr-2�}��_�K��
��vS�6>�Q@H���8�x�
V��d�P���.�*2(��;���r'��>iwz�t�J��߲Hv�EHR))oxP�l�c�F�UVK�Ċ��s�+ED���8A��(�-	7����-�p��EP-�w��-�V#�i��V�@[xŒ|�?�*(�
�Go���f;��ʧ���Lڼ�)ܿh7=��(Rf�̧w�{���ʝ#�m����֊(L�W�C|����Z��8�%	��k�j��OON���H��Xd�x_0|���n��KWG*����
(�!�/]��3lG�,�d�ާ�,-� �p=b�(QY��'?z�5ou,2>����yr|��"�n�;�>�ʊ*�)|,FU�3m�c���%G4ͪ�v���#G��s�֊*D�"{�D������ӥEl�.�0��f��zӊ(���HcfX��d��Q=��j,�3ĸf=28�O�E$���<̮�B̻A=8�k��.'�ŖOάm�%X���Eu6��t|]�-6�a�O�*���c c?J�	�7r���*��-�Ӂ�QE|�y���=L/�ש�I��O���r9�2G����7ͷ�����W�u���f��$b� Cs�y�����T.e�;h�e�w���zQEHKr��9���BLg���:�qoo�{��;#tzQEi�%[�{u��`@�5!����sU�f}:�[���Z(�-�;����g��k�I ��d>gU8����*�C,YI$��/#�1f��<Uk�a�\�c�v�_L�>��Q[D�n$���lѨS�*=X�؋l��3�K�=�Um#�!�e�A0��?SX���/ ��sG�i�ܰ�=(��&?%���fo��+�����i$��VV^z6����룸3��~����
����`ٻ����־����g������z����{�qӽW~֧�}M�+��A��ɤ����	�#�]6��T�<�8����E{~Ȭ@�L����7�6#�4F�=�3���g��V�3�O���Xw)�8ny�����[ƣ
�[
��r~_��V?h:�����5E0�I*�77~�Q[G+1i�~�go�Z.��)�����(�����ǁ�aa�I?SR\E���7�דE23*�-��F>YC�B��T�)�h�QD@�_ݤ�X���W�$������d4*���x�\��t���=��k}QAA��YF�wؿ1��G�ߙ���	�C�����6�Ϻ���m��h�dO�7�1�p9��	%�*���?� ?�>6ek���EH��V�/�q���?�h�#MYA���7q�V���/\�����Z|��T�¯�3ӥV�Z�8�HV5	�~\q�c�*�*���ޜQET��6�q�,�o��Tf:TwD��r~�'<��(M?�!�������69�⦜x�?/4Q@��"U|�b��I��͔���Ps�2IYXnW݆���V&D�2
���7��~��Q@-UZ YA�.�#���Y�a[e�A.�!z��Q@�x�@;�ϿJ���\��(o�uo����E�=�������z����`����9��(KBZ���3����rH�����7]����&��%�y3no��?t�+��b�ѩ!W���QRhAvO�����a�βu���*��7B��qE����!2��,�3y�77'qY����m�/e���Ģ��sэ֠�;�9�ڇR?���EsOsC7^$[LA��(�UP�UU\*��V��_��EsT4�
�Q�-������1l�#\�H��<��W<�{��۸�w���"b����-�1E��4�ш�1_�����vj�l��w�W�R3@�-�+N��`�Qߪ�H�s��Z(�?	h�d��<lr��T������˱B�Vہӊ(�-���&�տx��_�j���LW�$*�'�?7�ʊ*�I�c���F��0�~ܕ��@~c���/�WdL�,���5����k�UxS:(���Kq��ǹO������'�6�C#���Z(�c�%�y�3��]��3<y��:���zQEoFZK+Mm#m����E��^�@>���v꽨���h�O4��l�����pf6+��_���J(�)P��\|ݿ���!�H������?Ί)�p����o,��K�b�W�.�?����(���PK�uKXcP��DDspiko/assets/js/admin.js(function($) {
    $( function() {
        if($("#_customize-input-after_menu_multiple_option").val()=='menu_btn')
        {
          $("#customize-control-after_menu_btn_txt").show();
            $("#customize-control-after_menu_btn_link").show();
            $("#customize-control-after_menu_btn_new_tabl").show();
            $("#customize-control-after_menu_btn_border").show();
            $("#customize-control-after_menu_html").hide();  
        }
        else if($("#_customize-input-after_menu_multiple_option").val()=='html')
            {
            $("#customize-control-after_menu_btn_txt").hide();
            $("#customize-control-after_menu_btn_link").hide();
            $("#customize-control-after_menu_btn_new_tabl").hide();
            $("#customize-control-after_menu_btn_border").hide();
            $("#customize-control-after_menu_html").show(); 
            }
       wp.customize('after_menu_multiple_option', function(control) {
		control.bind(function( after_menu ) {
			if(after_menu=='menu_btn')
			{
			$("#customize-control-after_menu_btn_txt").show();
    		$("#customize-control-after_menu_btn_link").show();
    		$("#customize-control-after_menu_btn_new_tabl").show();
    		$("#customize-control-after_menu_btn_border").show();
    		$("#customize-control-after_menu_html").hide();
			}
			else if(after_menu=='html')
			{
			$("#customize-control-after_menu_btn_txt").hide();
    		$("#customize-control-after_menu_btn_link").hide();
    		$("#customize-control-after_menu_btn_new_tabl").hide();
    		$("#customize-control-after_menu_btn_border").hide();
    		$("#customize-control-after_menu_html").show();	
			}
			else
			{
			$("#customize-control-after_menu_btn_txt").hide();
    		$("#customize-control-after_menu_btn_link").hide();
    		$("#customize-control-after_menu_btn_new_tabl").hide();
    		$("#customize-control-after_menu_btn_border").hide();
    		$("#customize-control-after_menu_html").hide();	
			}
		});
	});

       if($("#_customize-input-slide_variation").val()=='slide')
        {
            $("#customize-control-slide_video_upload").hide();
            $("#customize-control-slide_video_url").hide();
            $("#customize-control-home_slider_image").show();
       }
       else
       {
            $("#customize-control-slide_video_upload").show();
            $("#customize-control-slide_video_url").show();
            $("#customize-control-home_slider_image").hide();
       }
       //Js for Home page Slide Variation
        wp.customize('slide_variation', function(control) {
        control.bind(function( slider_variation ) {
            if(slider_variation=='slide')
            {
            $("#customize-control-slide_video_upload").hide();
            $("#customize-control-slide_video_url").hide();
            $("#customize-control-home_slider_image").show();
            }
            else
            {
            $("#customize-control-slide_video_upload").show();
            $("#customize-control-slide_video_url").show();
            $("#customize-control-home_slider_image").hide();
            }
            });
    });

    });
})(jQuery)PK�uKX���HB�B�spiko/assets/js/bootstrap.js/*!
  * Bootstrap v4.0.0 (https://getbootstrap.com)
  * Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  */
(function (global, factory) {
	typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('jquery'), require('popper.js')) :
	typeof define === 'function' && define.amd ? define(['exports', 'jquery', 'popper.js'], factory) :
	(factory((global.bootstrap = {}),global.jQuery,global.Popper));
}(this, (function (exports,$,Popper) { 'use strict';

$ = $ && $.hasOwnProperty('default') ? $['default'] : $;
Popper = Popper && Popper.hasOwnProperty('default') ? Popper['default'] : Popper;

function _defineProperties(target, props) {
  for (var i = 0; i < props.length; i++) {
    var descriptor = props[i];
    descriptor.enumerable = descriptor.enumerable || false;
    descriptor.configurable = true;
    if ("value" in descriptor) descriptor.writable = true;
    Object.defineProperty(target, descriptor.key, descriptor);
  }
}

function _createClass(Constructor, protoProps, staticProps) {
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
  if (staticProps) _defineProperties(Constructor, staticProps);
  return Constructor;
}

function _extends() {
  _extends = Object.assign || function (target) {
    for (var i = 1; i < arguments.length; i++) {
      var source = arguments[i];

      for (var key in source) {
        if (Object.prototype.hasOwnProperty.call(source, key)) {
          target[key] = source[key];
        }
      }
    }

    return target;
  };

  return _extends.apply(this, arguments);
}

function _inheritsLoose(subClass, superClass) {
  subClass.prototype = Object.create(superClass.prototype);
  subClass.prototype.constructor = subClass;
  subClass.__proto__ = superClass;
}

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): util.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Util = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Private TransitionEnd Helpers
   * ------------------------------------------------------------------------
   */
  var transition = false;
  var MAX_UID = 1000000; // Shoutout AngusCroll (https://goo.gl/pxwQGp)

  function toType(obj) {
    return {}.toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase();
  }

  function getSpecialTransitionEndEvent() {
    return {
      bindType: transition.end,
      delegateType: transition.end,
      handle: function handle(event) {
        if ($$$1(event.target).is(this)) {
          return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params
        }

        return undefined; // eslint-disable-line no-undefined
      }
    };
  }

  function transitionEndTest() {
    if (typeof window !== 'undefined' && window.QUnit) {
      return false;
    }

    return {
      end: 'transitionend'
    };
  }

  function transitionEndEmulator(duration) {
    var _this = this;

    var called = false;
    $$$1(this).one(Util.TRANSITION_END, function () {
      called = true;
    });
    setTimeout(function () {
      if (!called) {
        Util.triggerTransitionEnd(_this);
      }
    }, duration);
    return this;
  }

  function setTransitionEndSupport() {
    transition = transitionEndTest();
    $$$1.fn.emulateTransitionEnd = transitionEndEmulator;

    if (Util.supportsTransitionEnd()) {
      $$$1.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent();
    }
  }

  function escapeId(selector) {
    // We escape IDs in case of special selectors (selector = '#myId:something')
    // $.escapeSelector does not exist in jQuery < 3
    selector = typeof $$$1.escapeSelector === 'function' ? $$$1.escapeSelector(selector).substr(1) : selector.replace(/(:|\.|\[|\]|,|=|@)/g, '\\$1');
    return selector;
  }
  /**
   * --------------------------------------------------------------------------
   * Public Util Api
   * --------------------------------------------------------------------------
   */


  var Util = {
    TRANSITION_END: 'bsTransitionEnd',
    getUID: function getUID(prefix) {
      do {
        // eslint-disable-next-line no-bitwise
        prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here
      } while (document.getElementById(prefix));

      return prefix;
    },
    getSelectorFromElement: function getSelectorFromElement(element) {
      var selector = element.getAttribute('data-target');

      if (!selector || selector === '#') {
        selector = element.getAttribute('href') || '';
      } // If it's an ID


      if (selector.charAt(0) === '#') {
        selector = escapeId(selector);
      }

      try {
        var $selector = $$$1(document).find(selector);
        return $selector.length > 0 ? selector : null;
      } catch (err) {
        return null;
      }
    },
    reflow: function reflow(element) {
      return element.offsetHeight;
    },
    triggerTransitionEnd: function triggerTransitionEnd(element) {
      $$$1(element).trigger(transition.end);
    },
    supportsTransitionEnd: function supportsTransitionEnd() {
      return Boolean(transition);
    },
    isElement: function isElement(obj) {
      return (obj[0] || obj).nodeType;
    },
    typeCheckConfig: function typeCheckConfig(componentName, config, configTypes) {
      for (var property in configTypes) {
        if (Object.prototype.hasOwnProperty.call(configTypes, property)) {
          var expectedTypes = configTypes[property];
          var value = config[property];
          var valueType = value && Util.isElement(value) ? 'element' : toType(value);

          if (!new RegExp(expectedTypes).test(valueType)) {
            throw new Error(componentName.toUpperCase() + ": " + ("Option \"" + property + "\" provided type \"" + valueType + "\" ") + ("but expected type \"" + expectedTypes + "\"."));
          }
        }
      }
    }
  };
  setTransitionEndSupport();
  return Util;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): alert.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Alert = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'alert';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.alert';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var TRANSITION_DURATION = 150;
  var Selector = {
    DISMISS: '[data-dismiss="alert"]'
  };
  var Event = {
    CLOSE: "close" + EVENT_KEY,
    CLOSED: "closed" + EVENT_KEY,
    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
  };
  var ClassName = {
    ALERT: 'alert',
    FADE: 'fade',
    SHOW: 'show'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Alert =
  /*#__PURE__*/
  function () {
    function Alert(element) {
      this._element = element;
    } // Getters


    var _proto = Alert.prototype;

    // Public
    _proto.close = function close(element) {
      element = element || this._element;

      var rootElement = this._getRootElement(element);

      var customEvent = this._triggerCloseEvent(rootElement);

      if (customEvent.isDefaultPrevented()) {
        return;
      }

      this._removeElement(rootElement);
    };

    _proto.dispose = function dispose() {
      $$$1.removeData(this._element, DATA_KEY);
      this._element = null;
    }; // Private


    _proto._getRootElement = function _getRootElement(element) {
      var selector = Util.getSelectorFromElement(element);
      var parent = false;

      if (selector) {
        parent = $$$1(selector)[0];
      }

      if (!parent) {
        parent = $$$1(element).closest("." + ClassName.ALERT)[0];
      }

      return parent;
    };

    _proto._triggerCloseEvent = function _triggerCloseEvent(element) {
      var closeEvent = $$$1.Event(Event.CLOSE);
      $$$1(element).trigger(closeEvent);
      return closeEvent;
    };

    _proto._removeElement = function _removeElement(element) {
      var _this = this;

      $$$1(element).removeClass(ClassName.SHOW);

      if (!Util.supportsTransitionEnd() || !$$$1(element).hasClass(ClassName.FADE)) {
        this._destroyElement(element);

        return;
      }

      $$$1(element).one(Util.TRANSITION_END, function (event) {
        return _this._destroyElement(element, event);
      }).emulateTransitionEnd(TRANSITION_DURATION);
    };

    _proto._destroyElement = function _destroyElement(element) {
      $$$1(element).detach().trigger(Event.CLOSED).remove();
    }; // Static


    Alert._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var $element = $$$1(this);
        var data = $element.data(DATA_KEY);

        if (!data) {
          data = new Alert(this);
          $element.data(DATA_KEY, data);
        }

        if (config === 'close') {
          data[config](this);
        }
      });
    };

    Alert._handleDismiss = function _handleDismiss(alertInstance) {
      return function (event) {
        if (event) {
          event.preventDefault();
        }

        alertInstance.close(this);
      };
    };

    _createClass(Alert, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }]);
    return Alert;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(document).on(Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert()));
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = Alert._jQueryInterface;
  $$$1.fn[NAME].Constructor = Alert;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Alert._jQueryInterface;
  };

  return Alert;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): button.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Button = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'button';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.button';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var ClassName = {
    ACTIVE: 'active',
    BUTTON: 'btn',
    FOCUS: 'focus'
  };
  var Selector = {
    DATA_TOGGLE_CARROT: '[data-toggle^="button"]',
    DATA_TOGGLE: '[data-toggle="buttons"]',
    INPUT: 'input',
    ACTIVE: '.active',
    BUTTON: '.btn'
  };
  var Event = {
    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY,
    FOCUS_BLUR_DATA_API: "focus" + EVENT_KEY + DATA_API_KEY + " " + ("blur" + EVENT_KEY + DATA_API_KEY)
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Button =
  /*#__PURE__*/
  function () {
    function Button(element) {
      this._element = element;
    } // Getters


    var _proto = Button.prototype;

    // Public
    _proto.toggle = function toggle() {
      var triggerChangeEvent = true;
      var addAriaPressed = true;
      var rootElement = $$$1(this._element).closest(Selector.DATA_TOGGLE)[0];

      if (rootElement) {
        var input = $$$1(this._element).find(Selector.INPUT)[0];

        if (input) {
          if (input.type === 'radio') {
            if (input.checked && $$$1(this._element).hasClass(ClassName.ACTIVE)) {
              triggerChangeEvent = false;
            } else {
              var activeElement = $$$1(rootElement).find(Selector.ACTIVE)[0];

              if (activeElement) {
                $$$1(activeElement).removeClass(ClassName.ACTIVE);
              }
            }
          }

          if (triggerChangeEvent) {
            if (input.hasAttribute('disabled') || rootElement.hasAttribute('disabled') || input.classList.contains('disabled') || rootElement.classList.contains('disabled')) {
              return;
            }

            input.checked = !$$$1(this._element).hasClass(ClassName.ACTIVE);
            $$$1(input).trigger('change');
          }

          input.focus();
          addAriaPressed = false;
        }
      }

      if (addAriaPressed) {
        this._element.setAttribute('aria-pressed', !$$$1(this._element).hasClass(ClassName.ACTIVE));
      }

      if (triggerChangeEvent) {
        $$$1(this._element).toggleClass(ClassName.ACTIVE);
      }
    };

    _proto.dispose = function dispose() {
      $$$1.removeData(this._element, DATA_KEY);
      this._element = null;
    }; // Static


    Button._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var data = $$$1(this).data(DATA_KEY);

        if (!data) {
          data = new Button(this);
          $$$1(this).data(DATA_KEY, data);
        }

        if (config === 'toggle') {
          data[config]();
        }
      });
    };

    _createClass(Button, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }]);
    return Button;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE_CARROT, function (event) {
    event.preventDefault();
    var button = event.target;

    if (!$$$1(button).hasClass(ClassName.BUTTON)) {
      button = $$$1(button).closest(Selector.BUTTON);
    }

    Button._jQueryInterface.call($$$1(button), 'toggle');
  }).on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, function (event) {
    var button = $$$1(event.target).closest(Selector.BUTTON)[0];
    $$$1(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type));
  });
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = Button._jQueryInterface;
  $$$1.fn[NAME].Constructor = Button;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Button._jQueryInterface;
  };

  return Button;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): carousel.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Carousel = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'carousel';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.carousel';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var TRANSITION_DURATION = 600;
  var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key

  var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key

  var TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch

  var Default = {
    interval: 5000,
    keyboard: true,
    slide: false,
    pause: 'hover',
    wrap: true
  };
  var DefaultType = {
    interval: '(number|boolean)',
    keyboard: 'boolean',
    slide: '(boolean|string)',
    pause: '(string|boolean)',
    wrap: 'boolean'
  };
  var Direction = {
    NEXT: 'next',
    PREV: 'prev',
    LEFT: 'left',
    RIGHT: 'right'
  };
  var Event = {
    SLIDE: "slide" + EVENT_KEY,
    SLID: "slid" + EVENT_KEY,
    KEYDOWN: "keydown" + EVENT_KEY,
    MOUSEENTER: "mouseenter" + EVENT_KEY,
    MOUSELEAVE: "mouseleave" + EVENT_KEY,
    TOUCHEND: "touchend" + EVENT_KEY,
    LOAD_DATA_API: "load" + EVENT_KEY + DATA_API_KEY,
    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
  };
  var ClassName = {
    CAROUSEL: 'carousel',
    ACTIVE: 'active',
    SLIDE: 'slide',
    RIGHT: 'carousel-item-right',
    LEFT: 'carousel-item-left',
    NEXT: 'carousel-item-next',
    PREV: 'carousel-item-prev',
    ITEM: 'carousel-item'
  };
  var Selector = {
    ACTIVE: '.active',
    ACTIVE_ITEM: '.active.carousel-item',
    ITEM: '.carousel-item',
    NEXT_PREV: '.carousel-item-next, .carousel-item-prev',
    INDICATORS: '.carousel-indicators',
    DATA_SLIDE: '[data-slide], [data-slide-to]',
    DATA_RIDE: '[data-ride="carousel"]'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Carousel =
  /*#__PURE__*/
  function () {
    function Carousel(element, config) {
      this._items = null;
      this._interval = null;
      this._activeElement = null;
      this._isPaused = false;
      this._isSliding = false;
      this.touchTimeout = null;
      this._config = this._getConfig(config);
      this._element = $$$1(element)[0];
      this._indicatorsElement = $$$1(this._element).find(Selector.INDICATORS)[0];

      this._addEventListeners();
    } // Getters


    var _proto = Carousel.prototype;

    // Public
    _proto.next = function next() {
      if (!this._isSliding) {
        this._slide(Direction.NEXT);
      }
    };

    _proto.nextWhenVisible = function nextWhenVisible() {
      // Don't call next when the page isn't visible
      // or the carousel or its parent isn't visible
      if (!document.hidden && $$$1(this._element).is(':visible') && $$$1(this._element).css('visibility') !== 'hidden') {
        this.next();
      }
    };

    _proto.prev = function prev() {
      if (!this._isSliding) {
        this._slide(Direction.PREV);
      }
    };

    _proto.pause = function pause(event) {
      if (!event) {
        this._isPaused = true;
      }

      if ($$$1(this._element).find(Selector.NEXT_PREV)[0] && Util.supportsTransitionEnd()) {
        Util.triggerTransitionEnd(this._element);
        this.cycle(true);
      }

      clearInterval(this._interval);
      this._interval = null;
    };

    _proto.cycle = function cycle(event) {
      if (!event) {
        this._isPaused = false;
      }

      if (this._interval) {
        clearInterval(this._interval);
        this._interval = null;
      }

      if (this._config.interval && !this._isPaused) {
        this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval);
      }
    };

    _proto.to = function to(index) {
      var _this = this;

      this._activeElement = $$$1(this._element).find(Selector.ACTIVE_ITEM)[0];

      var activeIndex = this._getItemIndex(this._activeElement);

      if (index > this._items.length - 1 || index < 0) {
        return;
      }

      if (this._isSliding) {
        $$$1(this._element).one(Event.SLID, function () {
          return _this.to(index);
        });
        return;
      }

      if (activeIndex === index) {
        this.pause();
        this.cycle();
        return;
      }

      var direction = index > activeIndex ? Direction.NEXT : Direction.PREV;

      this._slide(direction, this._items[index]);
    };

    _proto.dispose = function dispose() {
      $$$1(this._element).off(EVENT_KEY);
      $$$1.removeData(this._element, DATA_KEY);
      this._items = null;
      this._config = null;
      this._element = null;
      this._interval = null;
      this._isPaused = null;
      this._isSliding = null;
      this._activeElement = null;
      this._indicatorsElement = null;
    }; // Private


    _proto._getConfig = function _getConfig(config) {
      config = _extends({}, Default, config);
      Util.typeCheckConfig(NAME, config, DefaultType);
      return config;
    };

    _proto._addEventListeners = function _addEventListeners() {
      var _this2 = this;

      if (this._config.keyboard) {
        $$$1(this._element).on(Event.KEYDOWN, function (event) {
          return _this2._keydown(event);
        });
      }

      if (this._config.pause === 'hover') {
        $$$1(this._element).on(Event.MOUSEENTER, function (event) {
          return _this2.pause(event);
        }).on(Event.MOUSELEAVE, function (event) {
          return _this2.cycle(event);
        });

        if ('ontouchstart' in document.documentElement) {
          // If it's a touch-enabled device, mouseenter/leave are fired as
          // part of the mouse compatibility events on first tap - the carousel
          // would stop cycling until user tapped out of it;
          // here, we listen for touchend, explicitly pause the carousel
          // (as if it's the second time we tap on it, mouseenter compat event
          // is NOT fired) and after a timeout (to allow for mouse compatibility
          // events to fire) we explicitly restart cycling
          $$$1(this._element).on(Event.TOUCHEND, function () {
            _this2.pause();

            if (_this2.touchTimeout) {
              clearTimeout(_this2.touchTimeout);
            }

            _this2.touchTimeout = setTimeout(function (event) {
              return _this2.cycle(event);
            }, TOUCHEVENT_COMPAT_WAIT + _this2._config.interval);
          });
        }
      }
    };

    _proto._keydown = function _keydown(event) {
      if (/input|textarea/i.test(event.target.tagName)) {
        return;
      }

      switch (event.which) {
        case ARROW_LEFT_KEYCODE:
          event.preventDefault();
          this.prev();
          break;

        case ARROW_RIGHT_KEYCODE:
          event.preventDefault();
          this.next();
          break;

        default:
      }
    };

    _proto._getItemIndex = function _getItemIndex(element) {
      this._items = $$$1.makeArray($$$1(element).parent().find(Selector.ITEM));
      return this._items.indexOf(element);
    };

    _proto._getItemByDirection = function _getItemByDirection(direction, activeElement) {
      var isNextDirection = direction === Direction.NEXT;
      var isPrevDirection = direction === Direction.PREV;

      var activeIndex = this._getItemIndex(activeElement);

      var lastItemIndex = this._items.length - 1;
      var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex;

      if (isGoingToWrap && !this._config.wrap) {
        return activeElement;
      }

      var delta = direction === Direction.PREV ? -1 : 1;
      var itemIndex = (activeIndex + delta) % this._items.length;
      return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex];
    };

    _proto._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) {
      var targetIndex = this._getItemIndex(relatedTarget);

      var fromIndex = this._getItemIndex($$$1(this._element).find(Selector.ACTIVE_ITEM)[0]);

      var slideEvent = $$$1.Event(Event.SLIDE, {
        relatedTarget: relatedTarget,
        direction: eventDirectionName,
        from: fromIndex,
        to: targetIndex
      });
      $$$1(this._element).trigger(slideEvent);
      return slideEvent;
    };

    _proto._setActiveIndicatorElement = function _setActiveIndicatorElement(element) {
      if (this._indicatorsElement) {
        $$$1(this._indicatorsElement).find(Selector.ACTIVE).removeClass(ClassName.ACTIVE);

        var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)];

        if (nextIndicator) {
          $$$1(nextIndicator).addClass(ClassName.ACTIVE);
        }
      }
    };

    _proto._slide = function _slide(direction, element) {
      var _this3 = this;

      var activeElement = $$$1(this._element).find(Selector.ACTIVE_ITEM)[0];

      var activeElementIndex = this._getItemIndex(activeElement);

      var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement);

      var nextElementIndex = this._getItemIndex(nextElement);

      var isCycling = Boolean(this._interval);
      var directionalClassName;
      var orderClassName;
      var eventDirectionName;

      if (direction === Direction.NEXT) {
        directionalClassName = ClassName.LEFT;
        orderClassName = ClassName.NEXT;
        eventDirectionName = Direction.LEFT;
      } else {
        directionalClassName = ClassName.RIGHT;
        orderClassName = ClassName.PREV;
        eventDirectionName = Direction.RIGHT;
      }

      if (nextElement && $$$1(nextElement).hasClass(ClassName.ACTIVE)) {
        this._isSliding = false;
        return;
      }

      var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName);

      if (slideEvent.isDefaultPrevented()) {
        return;
      }

      if (!activeElement || !nextElement) {
        // Some weirdness is happening, so we bail
        return;
      }

      this._isSliding = true;

      if (isCycling) {
        this.pause();
      }

      this._setActiveIndicatorElement(nextElement);

      var slidEvent = $$$1.Event(Event.SLID, {
        relatedTarget: nextElement,
        direction: eventDirectionName,
        from: activeElementIndex,
        to: nextElementIndex
      });

      if (Util.supportsTransitionEnd() && $$$1(this._element).hasClass(ClassName.SLIDE)) {
        $$$1(nextElement).addClass(orderClassName);
        Util.reflow(nextElement);
        $$$1(activeElement).addClass(directionalClassName);
        $$$1(nextElement).addClass(directionalClassName);
        $$$1(activeElement).one(Util.TRANSITION_END, function () {
          $$$1(nextElement).removeClass(directionalClassName + " " + orderClassName).addClass(ClassName.ACTIVE);
          $$$1(activeElement).removeClass(ClassName.ACTIVE + " " + orderClassName + " " + directionalClassName);
          _this3._isSliding = false;
          setTimeout(function () {
            return $$$1(_this3._element).trigger(slidEvent);
          }, 0);
        }).emulateTransitionEnd(TRANSITION_DURATION);
      } else {
        $$$1(activeElement).removeClass(ClassName.ACTIVE);
        $$$1(nextElement).addClass(ClassName.ACTIVE);
        this._isSliding = false;
        $$$1(this._element).trigger(slidEvent);
      }

      if (isCycling) {
        this.cycle();
      }
    }; // Static


    Carousel._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var data = $$$1(this).data(DATA_KEY);

        var _config = _extends({}, Default, $$$1(this).data());

        if (typeof config === 'object') {
          _config = _extends({}, _config, config);
        }

        var action = typeof config === 'string' ? config : _config.slide;

        if (!data) {
          data = new Carousel(this, _config);
          $$$1(this).data(DATA_KEY, data);
        }

        if (typeof config === 'number') {
          data.to(config);
        } else if (typeof action === 'string') {
          if (typeof data[action] === 'undefined') {
            throw new TypeError("No method named \"" + action + "\"");
          }

          data[action]();
        } else if (_config.interval) {
          data.pause();
          data.cycle();
        }
      });
    };

    Carousel._dataApiClickHandler = function _dataApiClickHandler(event) {
      var selector = Util.getSelectorFromElement(this);

      if (!selector) {
        return;
      }

      var target = $$$1(selector)[0];

      if (!target || !$$$1(target).hasClass(ClassName.CAROUSEL)) {
        return;
      }

      var config = _extends({}, $$$1(target).data(), $$$1(this).data());
      var slideIndex = this.getAttribute('data-slide-to');

      if (slideIndex) {
        config.interval = false;
      }

      Carousel._jQueryInterface.call($$$1(target), config);

      if (slideIndex) {
        $$$1(target).data(DATA_KEY).to(slideIndex);
      }

      event.preventDefault();
    };

    _createClass(Carousel, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }, {
      key: "Default",
      get: function get() {
        return Default;
      }
    }]);
    return Carousel;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler);
  $$$1(window).on(Event.LOAD_DATA_API, function () {
    $$$1(Selector.DATA_RIDE).each(function () {
      var $carousel = $$$1(this);

      Carousel._jQueryInterface.call($carousel, $carousel.data());
    });
  });
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = Carousel._jQueryInterface;
  $$$1.fn[NAME].Constructor = Carousel;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Carousel._jQueryInterface;
  };

  return Carousel;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): collapse.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Collapse = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'collapse';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.collapse';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var TRANSITION_DURATION = 600;
  var Default = {
    toggle: true,
    parent: ''
  };
  var DefaultType = {
    toggle: 'boolean',
    parent: '(string|element)'
  };
  var Event = {
    SHOW: "show" + EVENT_KEY,
    SHOWN: "shown" + EVENT_KEY,
    HIDE: "hide" + EVENT_KEY,
    HIDDEN: "hidden" + EVENT_KEY,
    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
  };
  var ClassName = {
    SHOW: 'show',
    COLLAPSE: 'collapse',
    COLLAPSING: 'collapsing',
    COLLAPSED: 'collapsed'
  };
  var Dimension = {
    WIDTH: 'width',
    HEIGHT: 'height'
  };
  var Selector = {
    ACTIVES: '.show, .collapsing',
    DATA_TOGGLE: '[data-toggle="collapse"]'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Collapse =
  /*#__PURE__*/
  function () {
    function Collapse(element, config) {
      this._isTransitioning = false;
      this._element = element;
      this._config = this._getConfig(config);
      this._triggerArray = $$$1.makeArray($$$1("[data-toggle=\"collapse\"][href=\"#" + element.id + "\"]," + ("[data-toggle=\"collapse\"][data-target=\"#" + element.id + "\"]")));
      var tabToggles = $$$1(Selector.DATA_TOGGLE);

      for (var i = 0; i < tabToggles.length; i++) {
        var elem = tabToggles[i];
        var selector = Util.getSelectorFromElement(elem);

        if (selector !== null && $$$1(selector).filter(element).length > 0) {
          this._selector = selector;

          this._triggerArray.push(elem);
        }
      }

      this._parent = this._config.parent ? this._getParent() : null;

      if (!this._config.parent) {
        this._addAriaAndCollapsedClass(this._element, this._triggerArray);
      }

      if (this._config.toggle) {
        this.toggle();
      }
    } // Getters


    var _proto = Collapse.prototype;

    // Public
    _proto.toggle = function toggle() {
      if ($$$1(this._element).hasClass(ClassName.SHOW)) {
        this.hide();
      } else {
        this.show();
      }
    };

    _proto.show = function show() {
      var _this = this;

      if (this._isTransitioning || $$$1(this._element).hasClass(ClassName.SHOW)) {
        return;
      }

      var actives;
      var activesData;

      if (this._parent) {
        actives = $$$1.makeArray($$$1(this._parent).find(Selector.ACTIVES).filter("[data-parent=\"" + this._config.parent + "\"]"));

        if (actives.length === 0) {
          actives = null;
        }
      }

      if (actives) {
        activesData = $$$1(actives).not(this._selector).data(DATA_KEY);

        if (activesData && activesData._isTransitioning) {
          return;
        }
      }

      var startEvent = $$$1.Event(Event.SHOW);
      $$$1(this._element).trigger(startEvent);

      if (startEvent.isDefaultPrevented()) {
        return;
      }

      if (actives) {
        Collapse._jQueryInterface.call($$$1(actives).not(this._selector), 'hide');

        if (!activesData) {
          $$$1(actives).data(DATA_KEY, null);
        }
      }

      var dimension = this._getDimension();

      $$$1(this._element).removeClass(ClassName.COLLAPSE).addClass(ClassName.COLLAPSING);
      this._element.style[dimension] = 0;

      if (this._triggerArray.length > 0) {
        $$$1(this._triggerArray).removeClass(ClassName.COLLAPSED).attr('aria-expanded', true);
      }

      this.setTransitioning(true);

      var complete = function complete() {
        $$$1(_this._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).addClass(ClassName.SHOW);
        _this._element.style[dimension] = '';

        _this.setTransitioning(false);

        $$$1(_this._element).trigger(Event.SHOWN);
      };

      if (!Util.supportsTransitionEnd()) {
        complete();
        return;
      }

      var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);
      var scrollSize = "scroll" + capitalizedDimension;
      $$$1(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
      this._element.style[dimension] = this._element[scrollSize] + "px";
    };

    _proto.hide = function hide() {
      var _this2 = this;

      if (this._isTransitioning || !$$$1(this._element).hasClass(ClassName.SHOW)) {
        return;
      }

      var startEvent = $$$1.Event(Event.HIDE);
      $$$1(this._element).trigger(startEvent);

      if (startEvent.isDefaultPrevented()) {
        return;
      }

      var dimension = this._getDimension();

      this._element.style[dimension] = this._element.getBoundingClientRect()[dimension] + "px";
      Util.reflow(this._element);
      $$$1(this._element).addClass(ClassName.COLLAPSING).removeClass(ClassName.COLLAPSE).removeClass(ClassName.SHOW);

      if (this._triggerArray.length > 0) {
        for (var i = 0; i < this._triggerArray.length; i++) {
          var trigger = this._triggerArray[i];
          var selector = Util.getSelectorFromElement(trigger);

          if (selector !== null) {
            var $elem = $$$1(selector);

            if (!$elem.hasClass(ClassName.SHOW)) {
              $$$1(trigger).addClass(ClassName.COLLAPSED).attr('aria-expanded', false);
            }
          }
        }
      }

      this.setTransitioning(true);

      var complete = function complete() {
        _this2.setTransitioning(false);

        $$$1(_this2._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).trigger(Event.HIDDEN);
      };

      this._element.style[dimension] = '';

      if (!Util.supportsTransitionEnd()) {
        complete();
        return;
      }

      $$$1(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
    };

    _proto.setTransitioning = function setTransitioning(isTransitioning) {
      this._isTransitioning = isTransitioning;
    };

    _proto.dispose = function dispose() {
      $$$1.removeData(this._element, DATA_KEY);
      this._config = null;
      this._parent = null;
      this._element = null;
      this._triggerArray = null;
      this._isTransitioning = null;
    }; // Private


    _proto._getConfig = function _getConfig(config) {
      config = _extends({}, Default, config);
      config.toggle = Boolean(config.toggle); // Coerce string values

      Util.typeCheckConfig(NAME, config, DefaultType);
      return config;
    };

    _proto._getDimension = function _getDimension() {
      var hasWidth = $$$1(this._element).hasClass(Dimension.WIDTH);
      return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT;
    };

    _proto._getParent = function _getParent() {
      var _this3 = this;

      var parent = null;

      if (Util.isElement(this._config.parent)) {
        parent = this._config.parent; // It's a jQuery object

        if (typeof this._config.parent.jquery !== 'undefined') {
          parent = this._config.parent[0];
        }
      } else {
        parent = $$$1(this._config.parent)[0];
      }

      var selector = "[data-toggle=\"collapse\"][data-parent=\"" + this._config.parent + "\"]";
      $$$1(parent).find(selector).each(function (i, element) {
        _this3._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]);
      });
      return parent;
    };

    _proto._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) {
      if (element) {
        var isOpen = $$$1(element).hasClass(ClassName.SHOW);

        if (triggerArray.length > 0) {
          $$$1(triggerArray).toggleClass(ClassName.COLLAPSED, !isOpen).attr('aria-expanded', isOpen);
        }
      }
    }; // Static


    Collapse._getTargetFromElement = function _getTargetFromElement(element) {
      var selector = Util.getSelectorFromElement(element);
      return selector ? $$$1(selector)[0] : null;
    };

    Collapse._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var $this = $$$1(this);
        var data = $this.data(DATA_KEY);

        var _config = _extends({}, Default, $this.data(), typeof config === 'object' && config);

        if (!data && _config.toggle && /show|hide/.test(config)) {
          _config.toggle = false;
        }

        if (!data) {
          data = new Collapse(this, _config);
          $this.data(DATA_KEY, data);
        }

        if (typeof config === 'string') {
          if (typeof data[config] === 'undefined') {
            throw new TypeError("No method named \"" + config + "\"");
          }

          data[config]();
        }
      });
    };

    _createClass(Collapse, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }, {
      key: "Default",
      get: function get() {
        return Default;
      }
    }]);
    return Collapse;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
    // preventDefault only for <a> elements (which change the URL) not inside the collapsible element
    if (event.currentTarget.tagName === 'A') {
      event.preventDefault();
    }

    var $trigger = $$$1(this);
    var selector = Util.getSelectorFromElement(this);
    $$$1(selector).each(function () {
      var $target = $$$1(this);
      var data = $target.data(DATA_KEY);
      var config = data ? 'toggle' : $trigger.data();

      Collapse._jQueryInterface.call($target, config);
    });
  });
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = Collapse._jQueryInterface;
  $$$1.fn[NAME].Constructor = Collapse;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Collapse._jQueryInterface;
  };

  return Collapse;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): dropdown.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Dropdown = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'dropdown';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.dropdown';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key

  var SPACE_KEYCODE = 32; // KeyboardEvent.which value for space key

  var TAB_KEYCODE = 9; // KeyboardEvent.which value for tab key

  var ARROW_UP_KEYCODE = 38; // KeyboardEvent.which value for up arrow key

  var ARROW_DOWN_KEYCODE = 40; // KeyboardEvent.which value for down arrow key

  var RIGHT_MOUSE_BUTTON_WHICH = 3; // MouseEvent.which value for the right button (assuming a right-handed mouse)

  var REGEXP_KEYDOWN = new RegExp(ARROW_UP_KEYCODE + "|" + ARROW_DOWN_KEYCODE + "|" + ESCAPE_KEYCODE);
  var Event = {
    HIDE: "hide" + EVENT_KEY,
    HIDDEN: "hidden" + EVENT_KEY,
    SHOW: "show" + EVENT_KEY,
    SHOWN: "shown" + EVENT_KEY,
    CLICK: "click" + EVENT_KEY,
    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY,
    KEYDOWN_DATA_API: "keydown" + EVENT_KEY + DATA_API_KEY,
    KEYUP_DATA_API: "keyup" + EVENT_KEY + DATA_API_KEY
  };
  var ClassName = {
    DISABLED: 'disabled',
    SHOW: 'show',
    DROPUP: 'dropup',
    DROPRIGHT: 'dropright',
    DROPLEFT: 'dropleft',
    MENURIGHT: 'dropdown-menu-right',
    MENULEFT: 'dropdown-menu-left',
    POSITION_STATIC: 'position-static'
  };
  var Selector = {
    DATA_TOGGLE: '[data-toggle="dropdown"]',
    FORM_CHILD: '.dropdown form',
    MENU: '.dropdown-menu',
    NAVBAR_NAV: '.navbar-nav',
    VISIBLE_ITEMS: '.dropdown-menu .dropdown-item:not(.disabled)'
  };
  var AttachmentMap = {
    TOP: 'top-start',
    TOPEND: 'top-end',
    BOTTOM: 'bottom-start',
    BOTTOMEND: 'bottom-end',
    RIGHT: 'right-start',
    RIGHTEND: 'right-end',
    LEFT: 'left-start',
    LEFTEND: 'left-end'
  };
  var Default = {
    offset: 0,
    flip: true,
    boundary: 'scrollParent'
  };
  var DefaultType = {
    offset: '(number|string|function)',
    flip: 'boolean',
    boundary: '(string|element)'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Dropdown =
  /*#__PURE__*/
  function () {
    function Dropdown(element, config) {
      this._element = element;
      this._popper = null;
      this._config = this._getConfig(config);
      this._menu = this._getMenuElement();
      this._inNavbar = this._detectNavbar();

      this._addEventListeners();
    } // Getters


    var _proto = Dropdown.prototype;

    // Public
    _proto.toggle = function toggle() {
      if (this._element.disabled || $$$1(this._element).hasClass(ClassName.DISABLED)) {
        return;
      }

      var parent = Dropdown._getParentFromElement(this._element);

      var isActive = $$$1(this._menu).hasClass(ClassName.SHOW);

      Dropdown._clearMenus();

      if (isActive) {
        return;
      }

      var relatedTarget = {
        relatedTarget: this._element
      };
      var showEvent = $$$1.Event(Event.SHOW, relatedTarget);
      $$$1(parent).trigger(showEvent);

      if (showEvent.isDefaultPrevented()) {
        return;
      } // Disable totally Popper.js for Dropdown in Navbar


      if (!this._inNavbar) {
        /**
         * Check for Popper dependency
         * Popper - https://popper.js.org
         */
        if (typeof Popper === 'undefined') {
          throw new TypeError('Bootstrap dropdown require Popper.js (https://popper.js.org)');
        }

        var element = this._element; // For dropup with alignment we use the parent as popper container

        if ($$$1(parent).hasClass(ClassName.DROPUP)) {
          if ($$$1(this._menu).hasClass(ClassName.MENULEFT) || $$$1(this._menu).hasClass(ClassName.MENURIGHT)) {
            element = parent;
          }
        } // If boundary is not `scrollParent`, then set position to `static`
        // to allow the menu to "escape" the scroll parent's boundaries
        // https://github.com/twbs/bootstrap/issues/24251


        if (this._config.boundary !== 'scrollParent') {
          $$$1(parent).addClass(ClassName.POSITION_STATIC);
        }

        this._popper = new Popper(element, this._menu, this._getPopperConfig());
      } // If this is a touch-enabled device we add extra
      // empty mouseover listeners to the body's immediate children;
      // only needed because of broken event delegation on iOS
      // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html


      if ('ontouchstart' in document.documentElement && $$$1(parent).closest(Selector.NAVBAR_NAV).length === 0) {
        $$$1('body').children().on('mouseover', null, $$$1.noop);
      }

      this._element.focus();

      this._element.setAttribute('aria-expanded', true);

      $$$1(this._menu).toggleClass(ClassName.SHOW);
      $$$1(parent).toggleClass(ClassName.SHOW).trigger($$$1.Event(Event.SHOWN, relatedTarget));
    };

    _proto.dispose = function dispose() {
      $$$1.removeData(this._element, DATA_KEY);
      $$$1(this._element).off(EVENT_KEY);
      this._element = null;
      this._menu = null;

      if (this._popper !== null) {
        this._popper.destroy();

        this._popper = null;
      }
    };

    _proto.update = function update() {
      this._inNavbar = this._detectNavbar();

      if (this._popper !== null) {
        this._popper.scheduleUpdate();
      }
    }; // Private


    _proto._addEventListeners = function _addEventListeners() {
      var _this = this;

      $$$1(this._element).on(Event.CLICK, function (event) {
        event.preventDefault();
        event.stopPropagation();

        _this.toggle();
      });
    };

    _proto._getConfig = function _getConfig(config) {
      config = _extends({}, this.constructor.Default, $$$1(this._element).data(), config);
      Util.typeCheckConfig(NAME, config, this.constructor.DefaultType);
      return config;
    };

    _proto._getMenuElement = function _getMenuElement() {
      if (!this._menu) {
        var parent = Dropdown._getParentFromElement(this._element);

        this._menu = $$$1(parent).find(Selector.MENU)[0];
      }

      return this._menu;
    };

    _proto._getPlacement = function _getPlacement() {
      var $parentDropdown = $$$1(this._element).parent();
      var placement = AttachmentMap.BOTTOM; // Handle dropup

      if ($parentDropdown.hasClass(ClassName.DROPUP)) {
        placement = AttachmentMap.TOP;

        if ($$$1(this._menu).hasClass(ClassName.MENURIGHT)) {
          placement = AttachmentMap.TOPEND;
        }
      } else if ($parentDropdown.hasClass(ClassName.DROPRIGHT)) {
        placement = AttachmentMap.RIGHT;
      } else if ($parentDropdown.hasClass(ClassName.DROPLEFT)) {
        placement = AttachmentMap.LEFT;
      } else if ($$$1(this._menu).hasClass(ClassName.MENURIGHT)) {
        placement = AttachmentMap.BOTTOMEND;
      }

      return placement;
    };

    _proto._detectNavbar = function _detectNavbar() {
      return $$$1(this._element).closest('.navbar').length > 0;
    };

    _proto._getPopperConfig = function _getPopperConfig() {
      var _this2 = this;

      var offsetConf = {};

      if (typeof this._config.offset === 'function') {
        offsetConf.fn = function (data) {
          data.offsets = _extends({}, data.offsets, _this2._config.offset(data.offsets) || {});
          return data;
        };
      } else {
        offsetConf.offset = this._config.offset;
      }

      var popperConfig = {
        placement: this._getPlacement(),
        modifiers: {
          offset: offsetConf,
          flip: {
            enabled: this._config.flip
          },
          preventOverflow: {
            boundariesElement: this._config.boundary
          }
        }
      };
      return popperConfig;
    }; // Static


    Dropdown._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var data = $$$1(this).data(DATA_KEY);

        var _config = typeof config === 'object' ? config : null;

        if (!data) {
          data = new Dropdown(this, _config);
          $$$1(this).data(DATA_KEY, data);
        }

        if (typeof config === 'string') {
          if (typeof data[config] === 'undefined') {
            throw new TypeError("No method named \"" + config + "\"");
          }

          data[config]();
        }
      });
    };

    Dropdown._clearMenus = function _clearMenus(event) {
      if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH || event.type === 'keyup' && event.which !== TAB_KEYCODE)) {
        return;
      }

      var toggles = $$$1.makeArray($$$1(Selector.DATA_TOGGLE));

      for (var i = 0; i < toggles.length; i++) {
        var parent = Dropdown._getParentFromElement(toggles[i]);

        var context = $$$1(toggles[i]).data(DATA_KEY);
        var relatedTarget = {
          relatedTarget: toggles[i]
        };

        if (!context) {
          continue;
        }

        var dropdownMenu = context._menu;

        if (!$$$1(parent).hasClass(ClassName.SHOW)) {
          continue;
        }

        if (event && (event.type === 'click' && /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) && $$$1.contains(parent, event.target)) {
          continue;
        }

        var hideEvent = $$$1.Event(Event.HIDE, relatedTarget);
        $$$1(parent).trigger(hideEvent);

        if (hideEvent.isDefaultPrevented()) {
          continue;
        } // If this is a touch-enabled device we remove the extra
        // empty mouseover listeners we added for iOS support


        if ('ontouchstart' in document.documentElement) {
          $$$1('body').children().off('mouseover', null, $$$1.noop);
        }

        toggles[i].setAttribute('aria-expanded', 'false');
        $$$1(dropdownMenu).removeClass(ClassName.SHOW);
        $$$1(parent).removeClass(ClassName.SHOW).trigger($$$1.Event(Event.HIDDEN, relatedTarget));
      }
    };

    Dropdown._getParentFromElement = function _getParentFromElement(element) {
      var parent;
      var selector = Util.getSelectorFromElement(element);

      if (selector) {
        parent = $$$1(selector)[0];
      }

      return parent || element.parentNode;
    }; // eslint-disable-next-line complexity


    Dropdown._dataApiKeydownHandler = function _dataApiKeydownHandler(event) {
      // If not input/textarea:
      //  - And not a key in REGEXP_KEYDOWN => not a dropdown command
      // If input/textarea:
      //  - If space key => not a dropdown command
      //  - If key is other than escape
      //    - If key is not up or down => not a dropdown command
      //    - If trigger inside the menu => not a dropdown command
      if (/input|textarea/i.test(event.target.tagName) ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE && (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE || $$$1(event.target).closest(Selector.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {
        return;
      }

      event.preventDefault();
      event.stopPropagation();

      if (this.disabled || $$$1(this).hasClass(ClassName.DISABLED)) {
        return;
      }

      var parent = Dropdown._getParentFromElement(this);

      var isActive = $$$1(parent).hasClass(ClassName.SHOW);

      if (!isActive && (event.which !== ESCAPE_KEYCODE || event.which !== SPACE_KEYCODE) || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {
        if (event.which === ESCAPE_KEYCODE) {
          var toggle = $$$1(parent).find(Selector.DATA_TOGGLE)[0];
          $$$1(toggle).trigger('focus');
        }

        $$$1(this).trigger('click');
        return;
      }

      var items = $$$1(parent).find(Selector.VISIBLE_ITEMS).get();

      if (items.length === 0) {
        return;
      }

      var index = items.indexOf(event.target);

      if (event.which === ARROW_UP_KEYCODE && index > 0) {
        // Up
        index--;
      }

      if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) {
        // Down
        index++;
      }

      if (index < 0) {
        index = 0;
      }

      items[index].focus();
    };

    _createClass(Dropdown, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }, {
      key: "Default",
      get: function get() {
        return Default;
      }
    }, {
      key: "DefaultType",
      get: function get() {
        return DefaultType;
      }
    }]);
    return Dropdown;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(document).on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler).on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler).on(Event.CLICK_DATA_API + " " + Event.KEYUP_DATA_API, Dropdown._clearMenus).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
    event.preventDefault();
    event.stopPropagation();

    Dropdown._jQueryInterface.call($$$1(this), 'toggle');
  }).on(Event.CLICK_DATA_API, Selector.FORM_CHILD, function (e) {
    e.stopPropagation();
  });
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = Dropdown._jQueryInterface;
  $$$1.fn[NAME].Constructor = Dropdown;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Dropdown._jQueryInterface;
  };

  return Dropdown;
}($, Popper);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): modal.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Modal = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'modal';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.modal';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var TRANSITION_DURATION = 300;
  var BACKDROP_TRANSITION_DURATION = 150;
  var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key

  var Default = {
    backdrop: true,
    keyboard: true,
    focus: true,
    show: true
  };
  var DefaultType = {
    backdrop: '(boolean|string)',
    keyboard: 'boolean',
    focus: 'boolean',
    show: 'boolean'
  };
  var Event = {
    HIDE: "hide" + EVENT_KEY,
    HIDDEN: "hidden" + EVENT_KEY,
    SHOW: "show" + EVENT_KEY,
    SHOWN: "shown" + EVENT_KEY,
    FOCUSIN: "focusin" + EVENT_KEY,
    RESIZE: "resize" + EVENT_KEY,
    CLICK_DISMISS: "click.dismiss" + EVENT_KEY,
    KEYDOWN_DISMISS: "keydown.dismiss" + EVENT_KEY,
    MOUSEUP_DISMISS: "mouseup.dismiss" + EVENT_KEY,
    MOUSEDOWN_DISMISS: "mousedown.dismiss" + EVENT_KEY,
    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
  };
  var ClassName = {
    SCROLLBAR_MEASURER: 'modal-scrollbar-measure',
    BACKDROP: 'modal-backdrop',
    OPEN: 'modal-open',
    FADE: 'fade',
    SHOW: 'show'
  };
  var Selector = {
    DIALOG: '.modal-dialog',
    DATA_TOGGLE: '[data-toggle="modal"]',
    DATA_DISMISS: '[data-dismiss="modal"]',
    FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',
    STICKY_CONTENT: '.sticky-top',
    NAVBAR_TOGGLER: '.navbar-toggler'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Modal =
  /*#__PURE__*/
  function () {
    function Modal(element, config) {
      this._config = this._getConfig(config);
      this._element = element;
      this._dialog = $$$1(element).find(Selector.DIALOG)[0];
      this._backdrop = null;
      this._isShown = false;
      this._isBodyOverflowing = false;
      this._ignoreBackdropClick = false;
      this._originalBodyPadding = 0;
      this._scrollbarWidth = 0;
    } // Getters


    var _proto = Modal.prototype;

    // Public
    _proto.toggle = function toggle(relatedTarget) {
      return this._isShown ? this.hide() : this.show(relatedTarget);
    };

    _proto.show = function show(relatedTarget) {
      var _this = this;

      if (this._isTransitioning || this._isShown) {
        return;
      }

      if (Util.supportsTransitionEnd() && $$$1(this._element).hasClass(ClassName.FADE)) {
        this._isTransitioning = true;
      }

      var showEvent = $$$1.Event(Event.SHOW, {
        relatedTarget: relatedTarget
      });
      $$$1(this._element).trigger(showEvent);

      if (this._isShown || showEvent.isDefaultPrevented()) {
        return;
      }

      this._isShown = true;

      this._checkScrollbar();

      this._setScrollbar();

      this._adjustDialog();

      $$$1(document.body).addClass(ClassName.OPEN);

      this._setEscapeEvent();

      this._setResizeEvent();

      $$$1(this._element).on(Event.CLICK_DISMISS, Selector.DATA_DISMISS, function (event) {
        return _this.hide(event);
      });
      $$$1(this._dialog).on(Event.MOUSEDOWN_DISMISS, function () {
        $$$1(_this._element).one(Event.MOUSEUP_DISMISS, function (event) {
          if ($$$1(event.target).is(_this._element)) {
            _this._ignoreBackdropClick = true;
          }
        });
      });

      this._showBackdrop(function () {
        return _this._showElement(relatedTarget);
      });
    };

    _proto.hide = function hide(event) {
      var _this2 = this;

      if (event) {
        event.preventDefault();
      }

      if (this._isTransitioning || !this._isShown) {
        return;
      }

      var hideEvent = $$$1.Event(Event.HIDE);
      $$$1(this._element).trigger(hideEvent);

      if (!this._isShown || hideEvent.isDefaultPrevented()) {
        return;
      }

      this._isShown = false;
      var transition = Util.supportsTransitionEnd() && $$$1(this._element).hasClass(ClassName.FADE);

      if (transition) {
        this._isTransitioning = true;
      }

      this._setEscapeEvent();

      this._setResizeEvent();

      $$$1(document).off(Event.FOCUSIN);
      $$$1(this._element).removeClass(ClassName.SHOW);
      $$$1(this._element).off(Event.CLICK_DISMISS);
      $$$1(this._dialog).off(Event.MOUSEDOWN_DISMISS);

      if (transition) {
        $$$1(this._element).one(Util.TRANSITION_END, function (event) {
          return _this2._hideModal(event);
        }).emulateTransitionEnd(TRANSITION_DURATION);
      } else {
        this._hideModal();
      }
    };

    _proto.dispose = function dispose() {
      $$$1.removeData(this._element, DATA_KEY);
      $$$1(window, document, this._element, this._backdrop).off(EVENT_KEY);
      this._config = null;
      this._element = null;
      this._dialog = null;
      this._backdrop = null;
      this._isShown = null;
      this._isBodyOverflowing = null;
      this._ignoreBackdropClick = null;
      this._scrollbarWidth = null;
    };

    _proto.handleUpdate = function handleUpdate() {
      this._adjustDialog();
    }; // Private


    _proto._getConfig = function _getConfig(config) {
      config = _extends({}, Default, config);
      Util.typeCheckConfig(NAME, config, DefaultType);
      return config;
    };

    _proto._showElement = function _showElement(relatedTarget) {
      var _this3 = this;

      var transition = Util.supportsTransitionEnd() && $$$1(this._element).hasClass(ClassName.FADE);

      if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {
        // Don't move modal's DOM position
        document.body.appendChild(this._element);
      }

      this._element.style.display = 'block';

      this._element.removeAttribute('aria-hidden');

      this._element.scrollTop = 0;

      if (transition) {
        Util.reflow(this._element);
      }

      $$$1(this._element).addClass(ClassName.SHOW);

      if (this._config.focus) {
        this._enforceFocus();
      }

      var shownEvent = $$$1.Event(Event.SHOWN, {
        relatedTarget: relatedTarget
      });

      var transitionComplete = function transitionComplete() {
        if (_this3._config.focus) {
          _this3._element.focus();
        }

        _this3._isTransitioning = false;
        $$$1(_this3._element).trigger(shownEvent);
      };

      if (transition) {
        $$$1(this._dialog).one(Util.TRANSITION_END, transitionComplete).emulateTransitionEnd(TRANSITION_DURATION);
      } else {
        transitionComplete();
      }
    };

    _proto._enforceFocus = function _enforceFocus() {
      var _this4 = this;

      $$$1(document).off(Event.FOCUSIN) // Guard against infinite focus loop
      .on(Event.FOCUSIN, function (event) {
        if (document !== event.target && _this4._element !== event.target && $$$1(_this4._element).has(event.target).length === 0) {
          _this4._element.focus();
        }
      });
    };

    _proto._setEscapeEvent = function _setEscapeEvent() {
      var _this5 = this;

      if (this._isShown && this._config.keyboard) {
        $$$1(this._element).on(Event.KEYDOWN_DISMISS, function (event) {
          if (event.which === ESCAPE_KEYCODE) {
            event.preventDefault();

            _this5.hide();
          }
        });
      } else if (!this._isShown) {
        $$$1(this._element).off(Event.KEYDOWN_DISMISS);
      }
    };

    _proto._setResizeEvent = function _setResizeEvent() {
      var _this6 = this;

      if (this._isShown) {
        $$$1(window).on(Event.RESIZE, function (event) {
          return _this6.handleUpdate(event);
        });
      } else {
        $$$1(window).off(Event.RESIZE);
      }
    };

    _proto._hideModal = function _hideModal() {
      var _this7 = this;

      this._element.style.display = 'none';

      this._element.setAttribute('aria-hidden', true);

      this._isTransitioning = false;

      this._showBackdrop(function () {
        $$$1(document.body).removeClass(ClassName.OPEN);

        _this7._resetAdjustments();

        _this7._resetScrollbar();

        $$$1(_this7._element).trigger(Event.HIDDEN);
      });
    };

    _proto._removeBackdrop = function _removeBackdrop() {
      if (this._backdrop) {
        $$$1(this._backdrop).remove();
        this._backdrop = null;
      }
    };

    _proto._showBackdrop = function _showBackdrop(callback) {
      var _this8 = this;

      var animate = $$$1(this._element).hasClass(ClassName.FADE) ? ClassName.FADE : '';

      if (this._isShown && this._config.backdrop) {
        var doAnimate = Util.supportsTransitionEnd() && animate;
        this._backdrop = document.createElement('div');
        this._backdrop.className = ClassName.BACKDROP;

        if (animate) {
          $$$1(this._backdrop).addClass(animate);
        }

        $$$1(this._backdrop).appendTo(document.body);
        $$$1(this._element).on(Event.CLICK_DISMISS, function (event) {
          if (_this8._ignoreBackdropClick) {
            _this8._ignoreBackdropClick = false;
            return;
          }

          if (event.target !== event.currentTarget) {
            return;
          }

          if (_this8._config.backdrop === 'static') {
            _this8._element.focus();
          } else {
            _this8.hide();
          }
        });

        if (doAnimate) {
          Util.reflow(this._backdrop);
        }

        $$$1(this._backdrop).addClass(ClassName.SHOW);

        if (!callback) {
          return;
        }

        if (!doAnimate) {
          callback();
          return;
        }

        $$$1(this._backdrop).one(Util.TRANSITION_END, callback).emulateTransitionEnd(BACKDROP_TRANSITION_DURATION);
      } else if (!this._isShown && this._backdrop) {
        $$$1(this._backdrop).removeClass(ClassName.SHOW);

        var callbackRemove = function callbackRemove() {
          _this8._removeBackdrop();

          if (callback) {
            callback();
          }
        };

        if (Util.supportsTransitionEnd() && $$$1(this._element).hasClass(ClassName.FADE)) {
          $$$1(this._backdrop).one(Util.TRANSITION_END, callbackRemove).emulateTransitionEnd(BACKDROP_TRANSITION_DURATION);
        } else {
          callbackRemove();
        }
      } else if (callback) {
        callback();
      }
    }; // ----------------------------------------------------------------------
    // the following methods are used to handle overflowing modals
    // todo (fat): these should probably be refactored out of modal.js
    // ----------------------------------------------------------------------


    _proto._adjustDialog = function _adjustDialog() {
      var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;

      if (!this._isBodyOverflowing && isModalOverflowing) {
        this._element.style.paddingLeft = this._scrollbarWidth + "px";
      }

      if (this._isBodyOverflowing && !isModalOverflowing) {
        this._element.style.paddingRight = this._scrollbarWidth + "px";
      }
    };

    _proto._resetAdjustments = function _resetAdjustments() {
      this._element.style.paddingLeft = '';
      this._element.style.paddingRight = '';
    };

    _proto._checkScrollbar = function _checkScrollbar() {
      var rect = document.body.getBoundingClientRect();
      this._isBodyOverflowing = rect.left + rect.right < window.innerWidth;
      this._scrollbarWidth = this._getScrollbarWidth();
    };

    _proto._setScrollbar = function _setScrollbar() {
      var _this9 = this;

      if (this._isBodyOverflowing) {
        // Note: DOMNode.style.paddingRight returns the actual value or '' if not set
        //   while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set
        // Adjust fixed content padding
        $$$1(Selector.FIXED_CONTENT).each(function (index, element) {
          var actualPadding = $$$1(element)[0].style.paddingRight;
          var calculatedPadding = $$$1(element).css('padding-right');
          $$$1(element).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + _this9._scrollbarWidth + "px");
        }); // Adjust sticky content margin

        $$$1(Selector.STICKY_CONTENT).each(function (index, element) {
          var actualMargin = $$$1(element)[0].style.marginRight;
          var calculatedMargin = $$$1(element).css('margin-right');
          $$$1(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) - _this9._scrollbarWidth + "px");
        }); // Adjust navbar-toggler margin

        $$$1(Selector.NAVBAR_TOGGLER).each(function (index, element) {
          var actualMargin = $$$1(element)[0].style.marginRight;
          var calculatedMargin = $$$1(element).css('margin-right');
          $$$1(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) + _this9._scrollbarWidth + "px");
        }); // Adjust body padding

        var actualPadding = document.body.style.paddingRight;
        var calculatedPadding = $$$1('body').css('padding-right');
        $$$1('body').data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px");
      }
    };

    _proto._resetScrollbar = function _resetScrollbar() {
      // Restore fixed content padding
      $$$1(Selector.FIXED_CONTENT).each(function (index, element) {
        var padding = $$$1(element).data('padding-right');

        if (typeof padding !== 'undefined') {
          $$$1(element).css('padding-right', padding).removeData('padding-right');
        }
      }); // Restore sticky content and navbar-toggler margin

      $$$1(Selector.STICKY_CONTENT + ", " + Selector.NAVBAR_TOGGLER).each(function (index, element) {
        var margin = $$$1(element).data('margin-right');

        if (typeof margin !== 'undefined') {
          $$$1(element).css('margin-right', margin).removeData('margin-right');
        }
      }); // Restore body padding

      var padding = $$$1('body').data('padding-right');

      if (typeof padding !== 'undefined') {
        $$$1('body').css('padding-right', padding).removeData('padding-right');
      }
    };

    _proto._getScrollbarWidth = function _getScrollbarWidth() {
      // thx d.walsh
      var scrollDiv = document.createElement('div');
      scrollDiv.className = ClassName.SCROLLBAR_MEASURER;
      document.body.appendChild(scrollDiv);
      var scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth;
      document.body.removeChild(scrollDiv);
      return scrollbarWidth;
    }; // Static


    Modal._jQueryInterface = function _jQueryInterface(config, relatedTarget) {
      return this.each(function () {
        var data = $$$1(this).data(DATA_KEY);

        var _config = _extends({}, Modal.Default, $$$1(this).data(), typeof config === 'object' && config);

        if (!data) {
          data = new Modal(this, _config);
          $$$1(this).data(DATA_KEY, data);
        }

        if (typeof config === 'string') {
          if (typeof data[config] === 'undefined') {
            throw new TypeError("No method named \"" + config + "\"");
          }

          data[config](relatedTarget);
        } else if (_config.show) {
          data.show(relatedTarget);
        }
      });
    };

    _createClass(Modal, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }, {
      key: "Default",
      get: function get() {
        return Default;
      }
    }]);
    return Modal;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
    var _this10 = this;

    var target;
    var selector = Util.getSelectorFromElement(this);

    if (selector) {
      target = $$$1(selector)[0];
    }

    var config = $$$1(target).data(DATA_KEY) ? 'toggle' : _extends({}, $$$1(target).data(), $$$1(this).data());

    if (this.tagName === 'A' || this.tagName === 'AREA') {
      event.preventDefault();
    }

    var $target = $$$1(target).one(Event.SHOW, function (showEvent) {
      if (showEvent.isDefaultPrevented()) {
        // Only register focus restorer if modal will actually get shown
        return;
      }

      $target.one(Event.HIDDEN, function () {
        if ($$$1(_this10).is(':visible')) {
          _this10.focus();
        }
      });
    });

    Modal._jQueryInterface.call($$$1(target), config, this);
  });
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = Modal._jQueryInterface;
  $$$1.fn[NAME].Constructor = Modal;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Modal._jQueryInterface;
  };

  return Modal;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): tooltip.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Tooltip = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'tooltip';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.tooltip';
  var EVENT_KEY = "." + DATA_KEY;
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var TRANSITION_DURATION = 150;
  var CLASS_PREFIX = 'bs-tooltip';
  var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
  var DefaultType = {
    animation: 'boolean',
    template: 'string',
    title: '(string|element|function)',
    trigger: 'string',
    delay: '(number|object)',
    html: 'boolean',
    selector: '(string|boolean)',
    placement: '(string|function)',
    offset: '(number|string)',
    container: '(string|element|boolean)',
    fallbackPlacement: '(string|array)',
    boundary: '(string|element)'
  };
  var AttachmentMap = {
    AUTO: 'auto',
    TOP: 'top',
    RIGHT: 'right',
    BOTTOM: 'bottom',
    LEFT: 'left'
  };
  var Default = {
    animation: true,
    template: '<div class="tooltip" role="tooltip">' + '<div class="arrow"></div>' + '<div class="tooltip-inner"></div></div>',
    trigger: 'hover focus',
    title: '',
    delay: 0,
    html: false,
    selector: false,
    placement: 'top',
    offset: 0,
    container: false,
    fallbackPlacement: 'flip',
    boundary: 'scrollParent'
  };
  var HoverState = {
    SHOW: 'show',
    OUT: 'out'
  };
  var Event = {
    HIDE: "hide" + EVENT_KEY,
    HIDDEN: "hidden" + EVENT_KEY,
    SHOW: "show" + EVENT_KEY,
    SHOWN: "shown" + EVENT_KEY,
    INSERTED: "inserted" + EVENT_KEY,
    CLICK: "click" + EVENT_KEY,
    FOCUSIN: "focusin" + EVENT_KEY,
    FOCUSOUT: "focusout" + EVENT_KEY,
    MOUSEENTER: "mouseenter" + EVENT_KEY,
    MOUSELEAVE: "mouseleave" + EVENT_KEY
  };
  var ClassName = {
    FADE: 'fade',
    SHOW: 'show'
  };
  var Selector = {
    TOOLTIP: '.tooltip',
    TOOLTIP_INNER: '.tooltip-inner',
    ARROW: '.arrow'
  };
  var Trigger = {
    HOVER: 'hover',
    FOCUS: 'focus',
    CLICK: 'click',
    MANUAL: 'manual'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Tooltip =
  /*#__PURE__*/
  function () {
    function Tooltip(element, config) {
      /**
       * Check for Popper dependency
       * Popper - https://popper.js.org
       */
      if (typeof Popper === 'undefined') {
        throw new TypeError('Bootstrap tooltips require Popper.js (https://popper.js.org)');
      } // private


      this._isEnabled = true;
      this._timeout = 0;
      this._hoverState = '';
      this._activeTrigger = {};
      this._popper = null; // Protected

      this.element = element;
      this.config = this._getConfig(config);
      this.tip = null;

      this._setListeners();
    } // Getters


    var _proto = Tooltip.prototype;

    // Public
    _proto.enable = function enable() {
      this._isEnabled = true;
    };

    _proto.disable = function disable() {
      this._isEnabled = false;
    };

    _proto.toggleEnabled = function toggleEnabled() {
      this._isEnabled = !this._isEnabled;
    };

    _proto.toggle = function toggle(event) {
      if (!this._isEnabled) {
        return;
      }

      if (event) {
        var dataKey = this.constructor.DATA_KEY;
        var context = $$$1(event.currentTarget).data(dataKey);

        if (!context) {
          context = new this.constructor(event.currentTarget, this._getDelegateConfig());
          $$$1(event.currentTarget).data(dataKey, context);
        }

        context._activeTrigger.click = !context._activeTrigger.click;

        if (context._isWithActiveTrigger()) {
          context._enter(null, context);
        } else {
          context._leave(null, context);
        }
      } else {
        if ($$$1(this.getTipElement()).hasClass(ClassName.SHOW)) {
          this._leave(null, this);

          return;
        }

        this._enter(null, this);
      }
    };

    _proto.dispose = function dispose() {
      clearTimeout(this._timeout);
      $$$1.removeData(this.element, this.constructor.DATA_KEY);
      $$$1(this.element).off(this.constructor.EVENT_KEY);
      $$$1(this.element).closest('.modal').off('hide.bs.modal');

      if (this.tip) {
        $$$1(this.tip).remove();
      }

      this._isEnabled = null;
      this._timeout = null;
      this._hoverState = null;
      this._activeTrigger = null;

      if (this._popper !== null) {
        this._popper.destroy();
      }

      this._popper = null;
      this.element = null;
      this.config = null;
      this.tip = null;
    };

    _proto.show = function show() {
      var _this = this;

      if ($$$1(this.element).css('display') === 'none') {
        throw new Error('Please use show on visible elements');
      }

      var showEvent = $$$1.Event(this.constructor.Event.SHOW);

      if (this.isWithContent() && this._isEnabled) {
        $$$1(this.element).trigger(showEvent);
        var isInTheDom = $$$1.contains(this.element.ownerDocument.documentElement, this.element);

        if (showEvent.isDefaultPrevented() || !isInTheDom) {
          return;
        }

        var tip = this.getTipElement();
        var tipId = Util.getUID(this.constructor.NAME);
        tip.setAttribute('id', tipId);
        this.element.setAttribute('aria-describedby', tipId);
        this.setContent();

        if (this.config.animation) {
          $$$1(tip).addClass(ClassName.FADE);
        }

        var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement;

        var attachment = this._getAttachment(placement);

        this.addAttachmentClass(attachment);
        var container = this.config.container === false ? document.body : $$$1(this.config.container);
        $$$1(tip).data(this.constructor.DATA_KEY, this);

        if (!$$$1.contains(this.element.ownerDocument.documentElement, this.tip)) {
          $$$1(tip).appendTo(container);
        }

        $$$1(this.element).trigger(this.constructor.Event.INSERTED);
        this._popper = new Popper(this.element, tip, {
          placement: attachment,
          modifiers: {
            offset: {
              offset: this.config.offset
            },
            flip: {
              behavior: this.config.fallbackPlacement
            },
            arrow: {
              element: Selector.ARROW
            },
            preventOverflow: {
              boundariesElement: this.config.boundary
            }
          },
          onCreate: function onCreate(data) {
            if (data.originalPlacement !== data.placement) {
              _this._handlePopperPlacementChange(data);
            }
          },
          onUpdate: function onUpdate(data) {
            _this._handlePopperPlacementChange(data);
          }
        });
        $$$1(tip).addClass(ClassName.SHOW); // If this is a touch-enabled device we add extra
        // empty mouseover listeners to the body's immediate children;
        // only needed because of broken event delegation on iOS
        // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html

        if ('ontouchstart' in document.documentElement) {
          $$$1('body').children().on('mouseover', null, $$$1.noop);
        }

        var complete = function complete() {
          if (_this.config.animation) {
            _this._fixTransition();
          }

          var prevHoverState = _this._hoverState;
          _this._hoverState = null;
          $$$1(_this.element).trigger(_this.constructor.Event.SHOWN);

          if (prevHoverState === HoverState.OUT) {
            _this._leave(null, _this);
          }
        };

        if (Util.supportsTransitionEnd() && $$$1(this.tip).hasClass(ClassName.FADE)) {
          $$$1(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(Tooltip._TRANSITION_DURATION);
        } else {
          complete();
        }
      }
    };

    _proto.hide = function hide(callback) {
      var _this2 = this;

      var tip = this.getTipElement();
      var hideEvent = $$$1.Event(this.constructor.Event.HIDE);

      var complete = function complete() {
        if (_this2._hoverState !== HoverState.SHOW && tip.parentNode) {
          tip.parentNode.removeChild(tip);
        }

        _this2._cleanTipClass();

        _this2.element.removeAttribute('aria-describedby');

        $$$1(_this2.element).trigger(_this2.constructor.Event.HIDDEN);

        if (_this2._popper !== null) {
          _this2._popper.destroy();
        }

        if (callback) {
          callback();
        }
      };

      $$$1(this.element).trigger(hideEvent);

      if (hideEvent.isDefaultPrevented()) {
        return;
      }

      $$$1(tip).removeClass(ClassName.SHOW); // If this is a touch-enabled device we remove the extra
      // empty mouseover listeners we added for iOS support

      if ('ontouchstart' in document.documentElement) {
        $$$1('body').children().off('mouseover', null, $$$1.noop);
      }

      this._activeTrigger[Trigger.CLICK] = false;
      this._activeTrigger[Trigger.FOCUS] = false;
      this._activeTrigger[Trigger.HOVER] = false;

      if (Util.supportsTransitionEnd() && $$$1(this.tip).hasClass(ClassName.FADE)) {
        $$$1(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
      } else {
        complete();
      }

      this._hoverState = '';
    };

    _proto.update = function update() {
      if (this._popper !== null) {
        this._popper.scheduleUpdate();
      }
    }; // Protected


    _proto.isWithContent = function isWithContent() {
      return Boolean(this.getTitle());
    };

    _proto.addAttachmentClass = function addAttachmentClass(attachment) {
      $$$1(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
    };

    _proto.getTipElement = function getTipElement() {
      this.tip = this.tip || $$$1(this.config.template)[0];
      return this.tip;
    };

    _proto.setContent = function setContent() {
      var $tip = $$$1(this.getTipElement());
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle());
      $tip.removeClass(ClassName.FADE + " " + ClassName.SHOW);
    };

    _proto.setElementContent = function setElementContent($element, content) {
      var html = this.config.html;

      if (typeof content === 'object' && (content.nodeType || content.jquery)) {
        // Content is a DOM node or a jQuery
        if (html) {
          if (!$$$1(content).parent().is($element)) {
            $element.empty().append(content);
          }
        } else {
          $element.text($$$1(content).text());
        }
      } else {
        $element[html ? 'html' : 'text'](content);
      }
    };

    _proto.getTitle = function getTitle() {
      var title = this.element.getAttribute('data-original-title');

      if (!title) {
        title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title;
      }

      return title;
    }; // Private


    _proto._getAttachment = function _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()];
    };

    _proto._setListeners = function _setListeners() {
      var _this3 = this;

      var triggers = this.config.trigger.split(' ');
      triggers.forEach(function (trigger) {
        if (trigger === 'click') {
          $$$1(_this3.element).on(_this3.constructor.Event.CLICK, _this3.config.selector, function (event) {
            return _this3.toggle(event);
          });
        } else if (trigger !== Trigger.MANUAL) {
          var eventIn = trigger === Trigger.HOVER ? _this3.constructor.Event.MOUSEENTER : _this3.constructor.Event.FOCUSIN;
          var eventOut = trigger === Trigger.HOVER ? _this3.constructor.Event.MOUSELEAVE : _this3.constructor.Event.FOCUSOUT;
          $$$1(_this3.element).on(eventIn, _this3.config.selector, function (event) {
            return _this3._enter(event);
          }).on(eventOut, _this3.config.selector, function (event) {
            return _this3._leave(event);
          });
        }

        $$$1(_this3.element).closest('.modal').on('hide.bs.modal', function () {
          return _this3.hide();
        });
      });

      if (this.config.selector) {
        this.config = _extends({}, this.config, {
          trigger: 'manual',
          selector: ''
        });
      } else {
        this._fixTitle();
      }
    };

    _proto._fixTitle = function _fixTitle() {
      var titleType = typeof this.element.getAttribute('data-original-title');

      if (this.element.getAttribute('title') || titleType !== 'string') {
        this.element.setAttribute('data-original-title', this.element.getAttribute('title') || '');
        this.element.setAttribute('title', '');
      }
    };

    _proto._enter = function _enter(event, context) {
      var dataKey = this.constructor.DATA_KEY;
      context = context || $$$1(event.currentTarget).data(dataKey);

      if (!context) {
        context = new this.constructor(event.currentTarget, this._getDelegateConfig());
        $$$1(event.currentTarget).data(dataKey, context);
      }

      if (event) {
        context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true;
      }

      if ($$$1(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) {
        context._hoverState = HoverState.SHOW;
        return;
      }

      clearTimeout(context._timeout);
      context._hoverState = HoverState.SHOW;

      if (!context.config.delay || !context.config.delay.show) {
        context.show();
        return;
      }

      context._timeout = setTimeout(function () {
        if (context._hoverState === HoverState.SHOW) {
          context.show();
        }
      }, context.config.delay.show);
    };

    _proto._leave = function _leave(event, context) {
      var dataKey = this.constructor.DATA_KEY;
      context = context || $$$1(event.currentTarget).data(dataKey);

      if (!context) {
        context = new this.constructor(event.currentTarget, this._getDelegateConfig());
        $$$1(event.currentTarget).data(dataKey, context);
      }

      if (event) {
        context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false;
      }

      if (context._isWithActiveTrigger()) {
        return;
      }

      clearTimeout(context._timeout);
      context._hoverState = HoverState.OUT;

      if (!context.config.delay || !context.config.delay.hide) {
        context.hide();
        return;
      }

      context._timeout = setTimeout(function () {
        if (context._hoverState === HoverState.OUT) {
          context.hide();
        }
      }, context.config.delay.hide);
    };

    _proto._isWithActiveTrigger = function _isWithActiveTrigger() {
      for (var trigger in this._activeTrigger) {
        if (this._activeTrigger[trigger]) {
          return true;
        }
      }

      return false;
    };

    _proto._getConfig = function _getConfig(config) {
      config = _extends({}, this.constructor.Default, $$$1(this.element).data(), config);

      if (typeof config.delay === 'number') {
        config.delay = {
          show: config.delay,
          hide: config.delay
        };
      }

      if (typeof config.title === 'number') {
        config.title = config.title.toString();
      }

      if (typeof config.content === 'number') {
        config.content = config.content.toString();
      }

      Util.typeCheckConfig(NAME, config, this.constructor.DefaultType);
      return config;
    };

    _proto._getDelegateConfig = function _getDelegateConfig() {
      var config = {};

      if (this.config) {
        for (var key in this.config) {
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key];
          }
        }
      }

      return config;
    };

    _proto._cleanTipClass = function _cleanTipClass() {
      var $tip = $$$1(this.getTipElement());
      var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX);

      if (tabClass !== null && tabClass.length > 0) {
        $tip.removeClass(tabClass.join(''));
      }
    };

    _proto._handlePopperPlacementChange = function _handlePopperPlacementChange(data) {
      this._cleanTipClass();

      this.addAttachmentClass(this._getAttachment(data.placement));
    };

    _proto._fixTransition = function _fixTransition() {
      var tip = this.getTipElement();
      var initConfigAnimation = this.config.animation;

      if (tip.getAttribute('x-placement') !== null) {
        return;
      }

      $$$1(tip).removeClass(ClassName.FADE);
      this.config.animation = false;
      this.hide();
      this.show();
      this.config.animation = initConfigAnimation;
    }; // Static


    Tooltip._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var data = $$$1(this).data(DATA_KEY);

        var _config = typeof config === 'object' && config;

        if (!data && /dispose|hide/.test(config)) {
          return;
        }

        if (!data) {
          data = new Tooltip(this, _config);
          $$$1(this).data(DATA_KEY, data);
        }

        if (typeof config === 'string') {
          if (typeof data[config] === 'undefined') {
            throw new TypeError("No method named \"" + config + "\"");
          }

          data[config]();
        }
      });
    };

    _createClass(Tooltip, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }, {
      key: "Default",
      get: function get() {
        return Default;
      }
    }, {
      key: "NAME",
      get: function get() {
        return NAME;
      }
    }, {
      key: "DATA_KEY",
      get: function get() {
        return DATA_KEY;
      }
    }, {
      key: "Event",
      get: function get() {
        return Event;
      }
    }, {
      key: "EVENT_KEY",
      get: function get() {
        return EVENT_KEY;
      }
    }, {
      key: "DefaultType",
      get: function get() {
        return DefaultType;
      }
    }]);
    return Tooltip;
  }();
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */


  $$$1.fn[NAME] = Tooltip._jQueryInterface;
  $$$1.fn[NAME].Constructor = Tooltip;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Tooltip._jQueryInterface;
  };

  return Tooltip;
}($, Popper);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): popover.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Popover = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'popover';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.popover';
  var EVENT_KEY = "." + DATA_KEY;
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var CLASS_PREFIX = 'bs-popover';
  var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
  var Default = _extends({}, Tooltip.Default, {
    placement: 'right',
    trigger: 'click',
    content: '',
    template: '<div class="popover" role="tooltip">' + '<div class="arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div></div>'
  });
  var DefaultType = _extends({}, Tooltip.DefaultType, {
    content: '(string|element|function)'
  });
  var ClassName = {
    FADE: 'fade',
    SHOW: 'show'
  };
  var Selector = {
    TITLE: '.popover-header',
    CONTENT: '.popover-body'
  };
  var Event = {
    HIDE: "hide" + EVENT_KEY,
    HIDDEN: "hidden" + EVENT_KEY,
    SHOW: "show" + EVENT_KEY,
    SHOWN: "shown" + EVENT_KEY,
    INSERTED: "inserted" + EVENT_KEY,
    CLICK: "click" + EVENT_KEY,
    FOCUSIN: "focusin" + EVENT_KEY,
    FOCUSOUT: "focusout" + EVENT_KEY,
    MOUSEENTER: "mouseenter" + EVENT_KEY,
    MOUSELEAVE: "mouseleave" + EVENT_KEY
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Popover =
  /*#__PURE__*/
  function (_Tooltip) {
    _inheritsLoose(Popover, _Tooltip);

    function Popover() {
      return _Tooltip.apply(this, arguments) || this;
    }

    var _proto = Popover.prototype;

    // Overrides
    _proto.isWithContent = function isWithContent() {
      return this.getTitle() || this._getContent();
    };

    _proto.addAttachmentClass = function addAttachmentClass(attachment) {
      $$$1(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
    };

    _proto.getTipElement = function getTipElement() {
      this.tip = this.tip || $$$1(this.config.template)[0];
      return this.tip;
    };

    _proto.setContent = function setContent() {
      var $tip = $$$1(this.getTipElement()); // We use append for html objects to maintain js events

      this.setElementContent($tip.find(Selector.TITLE), this.getTitle());

      var content = this._getContent();

      if (typeof content === 'function') {
        content = content.call(this.element);
      }

      this.setElementContent($tip.find(Selector.CONTENT), content);
      $tip.removeClass(ClassName.FADE + " " + ClassName.SHOW);
    }; // Private


    _proto._getContent = function _getContent() {
      return this.element.getAttribute('data-content') || this.config.content;
    };

    _proto._cleanTipClass = function _cleanTipClass() {
      var $tip = $$$1(this.getTipElement());
      var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX);

      if (tabClass !== null && tabClass.length > 0) {
        $tip.removeClass(tabClass.join(''));
      }
    }; // Static


    Popover._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var data = $$$1(this).data(DATA_KEY);

        var _config = typeof config === 'object' ? config : null;

        if (!data && /destroy|hide/.test(config)) {
          return;
        }

        if (!data) {
          data = new Popover(this, _config);
          $$$1(this).data(DATA_KEY, data);
        }

        if (typeof config === 'string') {
          if (typeof data[config] === 'undefined') {
            throw new TypeError("No method named \"" + config + "\"");
          }

          data[config]();
        }
      });
    };

    _createClass(Popover, null, [{
      key: "VERSION",
      // Getters
      get: function get() {
        return VERSION;
      }
    }, {
      key: "Default",
      get: function get() {
        return Default;
      }
    }, {
      key: "NAME",
      get: function get() {
        return NAME;
      }
    }, {
      key: "DATA_KEY",
      get: function get() {
        return DATA_KEY;
      }
    }, {
      key: "Event",
      get: function get() {
        return Event;
      }
    }, {
      key: "EVENT_KEY",
      get: function get() {
        return EVENT_KEY;
      }
    }, {
      key: "DefaultType",
      get: function get() {
        return DefaultType;
      }
    }]);
    return Popover;
  }(Tooltip);
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */


  $$$1.fn[NAME] = Popover._jQueryInterface;
  $$$1.fn[NAME].Constructor = Popover;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Popover._jQueryInterface;
  };

  return Popover;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): scrollspy.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var ScrollSpy = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'scrollspy';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.scrollspy';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var Default = {
    offset: 10,
    method: 'auto',
    target: ''
  };
  var DefaultType = {
    offset: 'number',
    method: 'string',
    target: '(string|element)'
  };
  var Event = {
    ACTIVATE: "activate" + EVENT_KEY,
    SCROLL: "scroll" + EVENT_KEY,
    LOAD_DATA_API: "load" + EVENT_KEY + DATA_API_KEY
  };
  var ClassName = {
    DROPDOWN_ITEM: 'dropdown-item',
    DROPDOWN_MENU: 'dropdown-menu',
    ACTIVE: 'active'
  };
  var Selector = {
    DATA_SPY: '[data-spy="scroll"]',
    ACTIVE: '.active',
    NAV_LIST_GROUP: '.nav, .list-group',
    NAV_LINKS: '.nav-link',
    NAV_ITEMS: '.nav-item',
    LIST_ITEMS: '.list-group-item',
    DROPDOWN: '.dropdown',
    DROPDOWN_ITEMS: '.dropdown-item',
    DROPDOWN_TOGGLE: '.dropdown-toggle'
  };
  var OffsetMethod = {
    OFFSET: 'offset',
    POSITION: 'position'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var ScrollSpy =
  /*#__PURE__*/
  function () {
    function ScrollSpy(element, config) {
      var _this = this;

      this._element = element;
      this._scrollElement = element.tagName === 'BODY' ? window : element;
      this._config = this._getConfig(config);
      this._selector = this._config.target + " " + Selector.NAV_LINKS + "," + (this._config.target + " " + Selector.LIST_ITEMS + ",") + (this._config.target + " " + Selector.DROPDOWN_ITEMS);
      this._offsets = [];
      this._targets = [];
      this._activeTarget = null;
      this._scrollHeight = 0;
      $$$1(this._scrollElement).on(Event.SCROLL, function (event) {
        return _this._process(event);
      });
      this.refresh();

      this._process();
    } // Getters


    var _proto = ScrollSpy.prototype;

    // Public
    _proto.refresh = function refresh() {
      var _this2 = this;

      var autoMethod = this._scrollElement === this._scrollElement.window ? OffsetMethod.OFFSET : OffsetMethod.POSITION;
      var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method;
      var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0;
      this._offsets = [];
      this._targets = [];
      this._scrollHeight = this._getScrollHeight();
      var targets = $$$1.makeArray($$$1(this._selector));
      targets.map(function (element) {
        var target;
        var targetSelector = Util.getSelectorFromElement(element);

        if (targetSelector) {
          target = $$$1(targetSelector)[0];
        }

        if (target) {
          var targetBCR = target.getBoundingClientRect();

          if (targetBCR.width || targetBCR.height) {
            // TODO (fat): remove sketch reliance on jQuery position/offset
            return [$$$1(target)[offsetMethod]().top + offsetBase, targetSelector];
          }
        }

        return null;
      }).filter(function (item) {
        return item;
      }).sort(function (a, b) {
        return a[0] - b[0];
      }).forEach(function (item) {
        _this2._offsets.push(item[0]);

        _this2._targets.push(item[1]);
      });
    };

    _proto.dispose = function dispose() {
      $$$1.removeData(this._element, DATA_KEY);
      $$$1(this._scrollElement).off(EVENT_KEY);
      this._element = null;
      this._scrollElement = null;
      this._config = null;
      this._selector = null;
      this._offsets = null;
      this._targets = null;
      this._activeTarget = null;
      this._scrollHeight = null;
    }; // Private


    _proto._getConfig = function _getConfig(config) {
      config = _extends({}, Default, config);

      if (typeof config.target !== 'string') {
        var id = $$$1(config.target).attr('id');

        if (!id) {
          id = Util.getUID(NAME);
          $$$1(config.target).attr('id', id);
        }

        config.target = "#" + id;
      }

      Util.typeCheckConfig(NAME, config, DefaultType);
      return config;
    };

    _proto._getScrollTop = function _getScrollTop() {
      return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop;
    };

    _proto._getScrollHeight = function _getScrollHeight() {
      return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
    };

    _proto._getOffsetHeight = function _getOffsetHeight() {
      return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height;
    };

    _proto._process = function _process() {
      var scrollTop = this._getScrollTop() + this._config.offset;

      var scrollHeight = this._getScrollHeight();

      var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight();

      if (this._scrollHeight !== scrollHeight) {
        this.refresh();
      }

      if (scrollTop >= maxScroll) {
        var target = this._targets[this._targets.length - 1];

        if (this._activeTarget !== target) {
          this._activate(target);
        }

        return;
      }

      if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {
        this._activeTarget = null;

        this._clear();

        return;
      }

      for (var i = this._offsets.length; i--;) {
        var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]);

        if (isActiveTarget) {
          this._activate(this._targets[i]);
        }
      }
    };

    _proto._activate = function _activate(target) {
      this._activeTarget = target;

      this._clear();

      var queries = this._selector.split(','); // eslint-disable-next-line arrow-body-style


      queries = queries.map(function (selector) {
        return selector + "[data-target=\"" + target + "\"]," + (selector + "[href=\"" + target + "\"]");
      });
      var $link = $$$1(queries.join(','));

      if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
        $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE);
        $link.addClass(ClassName.ACTIVE);
      } else {
        // Set triggered link as active
        $link.addClass(ClassName.ACTIVE); // Set triggered links parents as active
        // With both <ul> and <nav> markup a parent is the previous sibling of any nav ancestor

        $link.parents(Selector.NAV_LIST_GROUP).prev(Selector.NAV_LINKS + ", " + Selector.LIST_ITEMS).addClass(ClassName.ACTIVE); // Handle special case when .nav-link is inside .nav-item

        $link.parents(Selector.NAV_LIST_GROUP).prev(Selector.NAV_ITEMS).children(Selector.NAV_LINKS).addClass(ClassName.ACTIVE);
      }

      $$$1(this._scrollElement).trigger(Event.ACTIVATE, {
        relatedTarget: target
      });
    };

    _proto._clear = function _clear() {
      $$$1(this._selector).filter(Selector.ACTIVE).removeClass(ClassName.ACTIVE);
    }; // Static


    ScrollSpy._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var data = $$$1(this).data(DATA_KEY);

        var _config = typeof config === 'object' && config;

        if (!data) {
          data = new ScrollSpy(this, _config);
          $$$1(this).data(DATA_KEY, data);
        }

        if (typeof config === 'string') {
          if (typeof data[config] === 'undefined') {
            throw new TypeError("No method named \"" + config + "\"");
          }

          data[config]();
        }
      });
    };

    _createClass(ScrollSpy, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }, {
      key: "Default",
      get: function get() {
        return Default;
      }
    }]);
    return ScrollSpy;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(window).on(Event.LOAD_DATA_API, function () {
    var scrollSpys = $$$1.makeArray($$$1(Selector.DATA_SPY));

    for (var i = scrollSpys.length; i--;) {
      var $spy = $$$1(scrollSpys[i]);

      ScrollSpy._jQueryInterface.call($spy, $spy.data());
    }
  });
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = ScrollSpy._jQueryInterface;
  $$$1.fn[NAME].Constructor = ScrollSpy;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return ScrollSpy._jQueryInterface;
  };

  return ScrollSpy;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): tab.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

var Tab = function ($$$1) {
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */
  var NAME = 'tab';
  var VERSION = '4.0.0';
  var DATA_KEY = 'bs.tab';
  var EVENT_KEY = "." + DATA_KEY;
  var DATA_API_KEY = '.data-api';
  var JQUERY_NO_CONFLICT = $$$1.fn[NAME];
  var TRANSITION_DURATION = 150;
  var Event = {
    HIDE: "hide" + EVENT_KEY,
    HIDDEN: "hidden" + EVENT_KEY,
    SHOW: "show" + EVENT_KEY,
    SHOWN: "shown" + EVENT_KEY,
    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
  };
  var ClassName = {
    DROPDOWN_MENU: 'dropdown-menu',
    ACTIVE: 'active',
    DISABLED: 'disabled',
    FADE: 'fade',
    SHOW: 'show'
  };
  var Selector = {
    DROPDOWN: '.dropdown',
    NAV_LIST_GROUP: '.nav, .list-group',
    ACTIVE: '.active',
    ACTIVE_UL: '> li > .active',
    DATA_TOGGLE: '[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',
    DROPDOWN_TOGGLE: '.dropdown-toggle',
    DROPDOWN_ACTIVE_CHILD: '> .dropdown-menu .active'
    /**
     * ------------------------------------------------------------------------
     * Class Definition
     * ------------------------------------------------------------------------
     */

  };

  var Tab =
  /*#__PURE__*/
  function () {
    function Tab(element) {
      this._element = element;
    } // Getters


    var _proto = Tab.prototype;

    // Public
    _proto.show = function show() {
      var _this = this;

      if (this._element.parentNode && this._element.parentNode.nodeType === Node.ELEMENT_NODE && $$$1(this._element).hasClass(ClassName.ACTIVE) || $$$1(this._element).hasClass(ClassName.DISABLED)) {
        return;
      }

      var target;
      var previous;
      var listElement = $$$1(this._element).closest(Selector.NAV_LIST_GROUP)[0];
      var selector = Util.getSelectorFromElement(this._element);

      if (listElement) {
        var itemSelector = listElement.nodeName === 'UL' ? Selector.ACTIVE_UL : Selector.ACTIVE;
        previous = $$$1.makeArray($$$1(listElement).find(itemSelector));
        previous = previous[previous.length - 1];
      }

      var hideEvent = $$$1.Event(Event.HIDE, {
        relatedTarget: this._element
      });
      var showEvent = $$$1.Event(Event.SHOW, {
        relatedTarget: previous
      });

      if (previous) {
        $$$1(previous).trigger(hideEvent);
      }

      $$$1(this._element).trigger(showEvent);

      if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) {
        return;
      }

      if (selector) {
        target = $$$1(selector)[0];
      }

      this._activate(this._element, listElement);

      var complete = function complete() {
        var hiddenEvent = $$$1.Event(Event.HIDDEN, {
          relatedTarget: _this._element
        });
        var shownEvent = $$$1.Event(Event.SHOWN, {
          relatedTarget: previous
        });
        $$$1(previous).trigger(hiddenEvent);
        $$$1(_this._element).trigger(shownEvent);
      };

      if (target) {
        this._activate(target, target.parentNode, complete);
      } else {
        complete();
      }
    };

    _proto.dispose = function dispose() {
      $$$1.removeData(this._element, DATA_KEY);
      this._element = null;
    }; // Private


    _proto._activate = function _activate(element, container, callback) {
      var _this2 = this;

      var activeElements;

      if (container.nodeName === 'UL') {
        activeElements = $$$1(container).find(Selector.ACTIVE_UL);
      } else {
        activeElements = $$$1(container).children(Selector.ACTIVE);
      }

      var active = activeElements[0];
      var isTransitioning = callback && Util.supportsTransitionEnd() && active && $$$1(active).hasClass(ClassName.FADE);

      var complete = function complete() {
        return _this2._transitionComplete(element, active, callback);
      };

      if (active && isTransitioning) {
        $$$1(active).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
      } else {
        complete();
      }
    };

    _proto._transitionComplete = function _transitionComplete(element, active, callback) {
      if (active) {
        $$$1(active).removeClass(ClassName.SHOW + " " + ClassName.ACTIVE);
        var dropdownChild = $$$1(active.parentNode).find(Selector.DROPDOWN_ACTIVE_CHILD)[0];

        if (dropdownChild) {
          $$$1(dropdownChild).removeClass(ClassName.ACTIVE);
        }

        if (active.getAttribute('role') === 'tab') {
          active.setAttribute('aria-selected', false);
        }
      }

      $$$1(element).addClass(ClassName.ACTIVE);

      if (element.getAttribute('role') === 'tab') {
        element.setAttribute('aria-selected', true);
      }

      Util.reflow(element);
      $$$1(element).addClass(ClassName.SHOW);

      if (element.parentNode && $$$1(element.parentNode).hasClass(ClassName.DROPDOWN_MENU)) {
        var dropdownElement = $$$1(element).closest(Selector.DROPDOWN)[0];

        if (dropdownElement) {
          $$$1(dropdownElement).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE);
        }

        element.setAttribute('aria-expanded', true);
      }

      if (callback) {
        callback();
      }
    }; // Static


    Tab._jQueryInterface = function _jQueryInterface(config) {
      return this.each(function () {
        var $this = $$$1(this);
        var data = $this.data(DATA_KEY);

        if (!data) {
          data = new Tab(this);
          $this.data(DATA_KEY, data);
        }

        if (typeof config === 'string') {
          if (typeof data[config] === 'undefined') {
            throw new TypeError("No method named \"" + config + "\"");
          }

          data[config]();
        }
      });
    };

    _createClass(Tab, null, [{
      key: "VERSION",
      get: function get() {
        return VERSION;
      }
    }]);
    return Tab;
  }();
  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */


  $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
    event.preventDefault();

    Tab._jQueryInterface.call($$$1(this), 'show');
  });
  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $$$1.fn[NAME] = Tab._jQueryInterface;
  $$$1.fn[NAME].Constructor = Tab;

  $$$1.fn[NAME].noConflict = function () {
    $$$1.fn[NAME] = JQUERY_NO_CONFLICT;
    return Tab._jQueryInterface;
  };

  return Tab;
}($);

/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0-alpha.6): index.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

(function ($$$1) {
  if (typeof $$$1 === 'undefined') {
    throw new TypeError('Bootstrap\'s JavaScript requires jQuery. jQuery must be included before Bootstrap\'s JavaScript.');
  }

  var version = $$$1.fn.jquery.split(' ')[0].split('.');
  var minMajor = 1;
  var ltMajor = 2;
  var minMinor = 9;
  var minPatch = 1;
  var maxMajor = 4;

  if (version[0] < ltMajor && version[1] < minMinor || version[0] === minMajor && version[1] === minMinor && version[2] < minPatch || version[0] >= maxMajor) {
    throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0');
  }
})($);

exports.Util = Util;
exports.Alert = Alert;
exports.Button = Button;
exports.Carousel = Carousel;
exports.Collapse = Collapse;
exports.Dropdown = Dropdown;
exports.Modal = Modal;
exports.Popover = Popover;
exports.Scrollspy = ScrollSpy;
exports.Tab = Tab;
exports.Tooltip = Tooltip;

Object.defineProperty(exports, '__esModule', { value: true });

})));
PK�uKX?ka��� spiko/assets/js/bootstrap.min.js/*!
  * Bootstrap v4.0.0 (https://getbootstrap.com)
  * Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  */
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e(t.bootstrap={},t.jQuery,t.Popper)}(this,function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function s(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function r(){return(r=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t}).apply(this,arguments)}e=e&&e.hasOwnProperty("default")?e.default:e,n=n&&n.hasOwnProperty("default")?n.default:n;var o,a,l,h,c,u,f,d,_,g,p,m,v,E,T,y,C,I,A,b,D,S,w,N,O,k,P=function(t){var e=!1;function n(e){var n=this,s=!1;return t(this).one(i.TRANSITION_END,function(){s=!0}),setTimeout(function(){s||i.triggerTransitionEnd(n)},e),this}var i={TRANSITION_END:"bsTransitionEnd",getUID:function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},getSelectorFromElement:function(e){var n,i=e.getAttribute("data-target");i&&"#"!==i||(i=e.getAttribute("href")||""),"#"===i.charAt(0)&&(n=i,i=n="function"==typeof t.escapeSelector?t.escapeSelector(n).substr(1):n.replace(/(:|\.|\[|\]|,|=|@)/g,"\\$1"));try{return t(document).find(i).length>0?i:null}catch(t){return null}},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(n){t(n).trigger(e.end)},supportsTransitionEnd:function(){return Boolean(e)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var s in n)if(Object.prototype.hasOwnProperty.call(n,s)){var r=n[s],o=e[s],a=o&&i.isElement(o)?"element":(l=o,{}.toString.call(l).match(/\s([a-zA-Z]+)/)[1].toLowerCase());if(!new RegExp(r).test(a))throw new Error(t.toUpperCase()+': Option "'+s+'" provided type "'+a+'" but expected type "'+r+'".')}var l}};return e=("undefined"==typeof window||!window.QUnit)&&{end:"transitionend"},t.fn.emulateTransitionEnd=n,i.supportsTransitionEnd()&&(t.event.special[i.TRANSITION_END]={bindType:e.end,delegateType:e.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}}),i}(e),L=(a="alert",h="."+(l="bs.alert"),c=(o=e).fn[a],u={CLOSE:"close"+h,CLOSED:"closed"+h,CLICK_DATA_API:"click"+h+".data-api"},f="alert",d="fade",_="show",g=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){t=t||this._element;var e=this._getRootElement(t);this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){o.removeData(this._element,l),this._element=null},e._getRootElement=function(t){var e=P.getSelectorFromElement(t),n=!1;return e&&(n=o(e)[0]),n||(n=o(t).closest("."+f)[0]),n},e._triggerCloseEvent=function(t){var e=o.Event(u.CLOSE);return o(t).trigger(e),e},e._removeElement=function(t){var e=this;o(t).removeClass(_),P.supportsTransitionEnd()&&o(t).hasClass(d)?o(t).one(P.TRANSITION_END,function(n){return e._destroyElement(t,n)}).emulateTransitionEnd(150):this._destroyElement(t)},e._destroyElement=function(t){o(t).detach().trigger(u.CLOSED).remove()},t._jQueryInterface=function(e){return this.each(function(){var n=o(this),i=n.data(l);i||(i=new t(this),n.data(l,i)),"close"===e&&i[e](this)})},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},s(t,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),t}(),o(document).on(u.CLICK_DATA_API,'[data-dismiss="alert"]',g._handleDismiss(new g)),o.fn[a]=g._jQueryInterface,o.fn[a].Constructor=g,o.fn[a].noConflict=function(){return o.fn[a]=c,g._jQueryInterface},g),R=(m="button",E="."+(v="bs.button"),T=".data-api",y=(p=e).fn[m],C="active",I="btn",A="focus",b='[data-toggle^="button"]',D='[data-toggle="buttons"]',S="input",w=".active",N=".btn",O={CLICK_DATA_API:"click"+E+T,FOCUS_BLUR_DATA_API:"focus"+E+T+" blur"+E+T},k=function(){function t(t){this._element=t}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=p(this._element).closest(D)[0];if(n){var i=p(this._element).find(S)[0];if(i){if("radio"===i.type)if(i.checked&&p(this._element).hasClass(C))t=!1;else{var s=p(n).find(w)[0];s&&p(s).removeClass(C)}if(t){if(i.hasAttribute("disabled")||n.hasAttribute("disabled")||i.classList.contains("disabled")||n.classList.contains("disabled"))return;i.checked=!p(this._element).hasClass(C),p(i).trigger("change")}i.focus(),e=!1}}e&&this._element.setAttribute("aria-pressed",!p(this._element).hasClass(C)),t&&p(this._element).toggleClass(C)},e.dispose=function(){p.removeData(this._element,v),this._element=null},t._jQueryInterface=function(e){return this.each(function(){var n=p(this).data(v);n||(n=new t(this),p(this).data(v,n)),"toggle"===e&&n[e]()})},s(t,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),t}(),p(document).on(O.CLICK_DATA_API,b,function(t){t.preventDefault();var e=t.target;p(e).hasClass(I)||(e=p(e).closest(N)),k._jQueryInterface.call(p(e),"toggle")}).on(O.FOCUS_BLUR_DATA_API,b,function(t){var e=p(t.target).closest(N)[0];p(e).toggleClass(A,/^focus(in)?$/.test(t.type))}),p.fn[m]=k._jQueryInterface,p.fn[m].Constructor=k,p.fn[m].noConflict=function(){return p.fn[m]=y,k._jQueryInterface},k),j=function(t){var e="carousel",n="bs.carousel",i="."+n,o=t.fn[e],a={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0},l={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean"},h="next",c="prev",u="left",f="right",d={SLIDE:"slide"+i,SLID:"slid"+i,KEYDOWN:"keydown"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i,TOUCHEND:"touchend"+i,LOAD_DATA_API:"load"+i+".data-api",CLICK_DATA_API:"click"+i+".data-api"},_="carousel",g="active",p="slide",m="carousel-item-right",v="carousel-item-left",E="carousel-item-next",T="carousel-item-prev",y={ACTIVE:".active",ACTIVE_ITEM:".active.carousel-item",ITEM:".carousel-item",NEXT_PREV:".carousel-item-next, .carousel-item-prev",INDICATORS:".carousel-indicators",DATA_SLIDE:"[data-slide], [data-slide-to]",DATA_RIDE:'[data-ride="carousel"]'},C=function(){function o(e,n){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this._config=this._getConfig(n),this._element=t(e)[0],this._indicatorsElement=t(this._element).find(y.INDICATORS)[0],this._addEventListeners()}var C=o.prototype;return C.next=function(){this._isSliding||this._slide(h)},C.nextWhenVisible=function(){!document.hidden&&t(this._element).is(":visible")&&"hidden"!==t(this._element).css("visibility")&&this.next()},C.prev=function(){this._isSliding||this._slide(c)},C.pause=function(e){e||(this._isPaused=!0),t(this._element).find(y.NEXT_PREV)[0]&&P.supportsTransitionEnd()&&(P.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},C.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},C.to=function(e){var n=this;this._activeElement=t(this._element).find(y.ACTIVE_ITEM)[0];var i=this._getItemIndex(this._activeElement);if(!(e>this._items.length-1||e<0))if(this._isSliding)t(this._element).one(d.SLID,function(){return n.to(e)});else{if(i===e)return this.pause(),void this.cycle();var s=e>i?h:c;this._slide(s,this._items[e])}},C.dispose=function(){t(this._element).off(i),t.removeData(this._element,n),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},C._getConfig=function(t){return t=r({},a,t),P.typeCheckConfig(e,t,l),t},C._addEventListeners=function(){var e=this;this._config.keyboard&&t(this._element).on(d.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&(t(this._element).on(d.MOUSEENTER,function(t){return e.pause(t)}).on(d.MOUSELEAVE,function(t){return e.cycle(t)}),"ontouchstart"in document.documentElement&&t(this._element).on(d.TOUCHEND,function(){e.pause(),e.touchTimeout&&clearTimeout(e.touchTimeout),e.touchTimeout=setTimeout(function(t){return e.cycle(t)},500+e._config.interval)}))},C._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},C._getItemIndex=function(e){return this._items=t.makeArray(t(e).parent().find(y.ITEM)),this._items.indexOf(e)},C._getItemByDirection=function(t,e){var n=t===h,i=t===c,s=this._getItemIndex(e),r=this._items.length-1;if((i&&0===s||n&&s===r)&&!this._config.wrap)return e;var o=(s+(t===c?-1:1))%this._items.length;return-1===o?this._items[this._items.length-1]:this._items[o]},C._triggerSlideEvent=function(e,n){var i=this._getItemIndex(e),s=this._getItemIndex(t(this._element).find(y.ACTIVE_ITEM)[0]),r=t.Event(d.SLIDE,{relatedTarget:e,direction:n,from:s,to:i});return t(this._element).trigger(r),r},C._setActiveIndicatorElement=function(e){if(this._indicatorsElement){t(this._indicatorsElement).find(y.ACTIVE).removeClass(g);var n=this._indicatorsElement.children[this._getItemIndex(e)];n&&t(n).addClass(g)}},C._slide=function(e,n){var i,s,r,o=this,a=t(this._element).find(y.ACTIVE_ITEM)[0],l=this._getItemIndex(a),c=n||a&&this._getItemByDirection(e,a),_=this._getItemIndex(c),C=Boolean(this._interval);if(e===h?(i=v,s=E,r=u):(i=m,s=T,r=f),c&&t(c).hasClass(g))this._isSliding=!1;else if(!this._triggerSlideEvent(c,r).isDefaultPrevented()&&a&&c){this._isSliding=!0,C&&this.pause(),this._setActiveIndicatorElement(c);var I=t.Event(d.SLID,{relatedTarget:c,direction:r,from:l,to:_});P.supportsTransitionEnd()&&t(this._element).hasClass(p)?(t(c).addClass(s),P.reflow(c),t(a).addClass(i),t(c).addClass(i),t(a).one(P.TRANSITION_END,function(){t(c).removeClass(i+" "+s).addClass(g),t(a).removeClass(g+" "+s+" "+i),o._isSliding=!1,setTimeout(function(){return t(o._element).trigger(I)},0)}).emulateTransitionEnd(600)):(t(a).removeClass(g),t(c).addClass(g),this._isSliding=!1,t(this._element).trigger(I)),C&&this.cycle()}},o._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),s=r({},a,t(this).data());"object"==typeof e&&(s=r({},s,e));var l="string"==typeof e?e:s.slide;if(i||(i=new o(this,s),t(this).data(n,i)),"number"==typeof e)i.to(e);else if("string"==typeof l){if("undefined"==typeof i[l])throw new TypeError('No method named "'+l+'"');i[l]()}else s.interval&&(i.pause(),i.cycle())})},o._dataApiClickHandler=function(e){var i=P.getSelectorFromElement(this);if(i){var s=t(i)[0];if(s&&t(s).hasClass(_)){var a=r({},t(s).data(),t(this).data()),l=this.getAttribute("data-slide-to");l&&(a.interval=!1),o._jQueryInterface.call(t(s),a),l&&t(s).data(n).to(l),e.preventDefault()}}},s(o,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return a}}]),o}();return t(document).on(d.CLICK_DATA_API,y.DATA_SLIDE,C._dataApiClickHandler),t(window).on(d.LOAD_DATA_API,function(){t(y.DATA_RIDE).each(function(){var e=t(this);C._jQueryInterface.call(e,e.data())})}),t.fn[e]=C._jQueryInterface,t.fn[e].Constructor=C,t.fn[e].noConflict=function(){return t.fn[e]=o,C._jQueryInterface},C}(e),H=function(t){var e="collapse",n="bs.collapse",i="."+n,o=t.fn[e],a={toggle:!0,parent:""},l={toggle:"boolean",parent:"(string|element)"},h={SHOW:"show"+i,SHOWN:"shown"+i,HIDE:"hide"+i,HIDDEN:"hidden"+i,CLICK_DATA_API:"click"+i+".data-api"},c="show",u="collapse",f="collapsing",d="collapsed",_="width",g="height",p={ACTIVES:".show, .collapsing",DATA_TOGGLE:'[data-toggle="collapse"]'},m=function(){function i(e,n){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(n),this._triggerArray=t.makeArray(t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var i=t(p.DATA_TOGGLE),s=0;s<i.length;s++){var r=i[s],o=P.getSelectorFromElement(r);null!==o&&t(o).filter(e).length>0&&(this._selector=o,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var o=i.prototype;return o.toggle=function(){t(this._element).hasClass(c)?this.hide():this.show()},o.show=function(){var e,s,r=this;if(!this._isTransitioning&&!t(this._element).hasClass(c)&&(this._parent&&0===(e=t.makeArray(t(this._parent).find(p.ACTIVES).filter('[data-parent="'+this._config.parent+'"]'))).length&&(e=null),!(e&&(s=t(e).not(this._selector).data(n))&&s._isTransitioning))){var o=t.Event(h.SHOW);if(t(this._element).trigger(o),!o.isDefaultPrevented()){e&&(i._jQueryInterface.call(t(e).not(this._selector),"hide"),s||t(e).data(n,null));var a=this._getDimension();t(this._element).removeClass(u).addClass(f),this._element.style[a]=0,this._triggerArray.length>0&&t(this._triggerArray).removeClass(d).attr("aria-expanded",!0),this.setTransitioning(!0);var l=function(){t(r._element).removeClass(f).addClass(u).addClass(c),r._element.style[a]="",r.setTransitioning(!1),t(r._element).trigger(h.SHOWN)};if(P.supportsTransitionEnd()){var _="scroll"+(a[0].toUpperCase()+a.slice(1));t(this._element).one(P.TRANSITION_END,l).emulateTransitionEnd(600),this._element.style[a]=this._element[_]+"px"}else l()}}},o.hide=function(){var e=this;if(!this._isTransitioning&&t(this._element).hasClass(c)){var n=t.Event(h.HIDE);if(t(this._element).trigger(n),!n.isDefaultPrevented()){var i=this._getDimension();if(this._element.style[i]=this._element.getBoundingClientRect()[i]+"px",P.reflow(this._element),t(this._element).addClass(f).removeClass(u).removeClass(c),this._triggerArray.length>0)for(var s=0;s<this._triggerArray.length;s++){var r=this._triggerArray[s],o=P.getSelectorFromElement(r);if(null!==o)t(o).hasClass(c)||t(r).addClass(d).attr("aria-expanded",!1)}this.setTransitioning(!0);var a=function(){e.setTransitioning(!1),t(e._element).removeClass(f).addClass(u).trigger(h.HIDDEN)};this._element.style[i]="",P.supportsTransitionEnd()?t(this._element).one(P.TRANSITION_END,a).emulateTransitionEnd(600):a()}}},o.setTransitioning=function(t){this._isTransitioning=t},o.dispose=function(){t.removeData(this._element,n),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},o._getConfig=function(t){return(t=r({},a,t)).toggle=Boolean(t.toggle),P.typeCheckConfig(e,t,l),t},o._getDimension=function(){return t(this._element).hasClass(_)?_:g},o._getParent=function(){var e=this,n=null;P.isElement(this._config.parent)?(n=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(n=this._config.parent[0])):n=t(this._config.parent)[0];var s='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]';return t(n).find(s).each(function(t,n){e._addAriaAndCollapsedClass(i._getTargetFromElement(n),[n])}),n},o._addAriaAndCollapsedClass=function(e,n){if(e){var i=t(e).hasClass(c);n.length>0&&t(n).toggleClass(d,!i).attr("aria-expanded",i)}},i._getTargetFromElement=function(e){var n=P.getSelectorFromElement(e);return n?t(n)[0]:null},i._jQueryInterface=function(e){return this.each(function(){var s=t(this),o=s.data(n),l=r({},a,s.data(),"object"==typeof e&&e);if(!o&&l.toggle&&/show|hide/.test(e)&&(l.toggle=!1),o||(o=new i(this,l),s.data(n,o)),"string"==typeof e){if("undefined"==typeof o[e])throw new TypeError('No method named "'+e+'"');o[e]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return a}}]),i}();return t(document).on(h.CLICK_DATA_API,p.DATA_TOGGLE,function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var i=t(this),s=P.getSelectorFromElement(this);t(s).each(function(){var e=t(this),s=e.data(n)?"toggle":i.data();m._jQueryInterface.call(e,s)})}),t.fn[e]=m._jQueryInterface,t.fn[e].Constructor=m,t.fn[e].noConflict=function(){return t.fn[e]=o,m._jQueryInterface},m}(e),W=function(t){var e="dropdown",i="bs.dropdown",o="."+i,a=".data-api",l=t.fn[e],h=new RegExp("38|40|27"),c={HIDE:"hide"+o,HIDDEN:"hidden"+o,SHOW:"show"+o,SHOWN:"shown"+o,CLICK:"click"+o,CLICK_DATA_API:"click"+o+a,KEYDOWN_DATA_API:"keydown"+o+a,KEYUP_DATA_API:"keyup"+o+a},u="disabled",f="show",d="dropup",_="dropright",g="dropleft",p="dropdown-menu-right",m="dropdown-menu-left",v="position-static",E='[data-toggle="dropdown"]',T=".dropdown form",y=".dropdown-menu",C=".navbar-nav",I=".dropdown-menu .dropdown-item:not(.disabled)",A="top-start",b="top-end",D="bottom-start",S="bottom-end",w="right-start",N="left-start",O={offset:0,flip:!0,boundary:"scrollParent"},k={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)"},L=function(){function a(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var l=a.prototype;return l.toggle=function(){if(!this._element.disabled&&!t(this._element).hasClass(u)){var e=a._getParentFromElement(this._element),i=t(this._menu).hasClass(f);if(a._clearMenus(),!i){var s={relatedTarget:this._element},r=t.Event(c.SHOW,s);if(t(e).trigger(r),!r.isDefaultPrevented()){if(!this._inNavbar){if("undefined"==typeof n)throw new TypeError("Bootstrap dropdown require Popper.js (https://popper.js.org)");var o=this._element;t(e).hasClass(d)&&(t(this._menu).hasClass(m)||t(this._menu).hasClass(p))&&(o=e),"scrollParent"!==this._config.boundary&&t(e).addClass(v),this._popper=new n(o,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===t(e).closest(C).length&&t("body").children().on("mouseover",null,t.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),t(this._menu).toggleClass(f),t(e).toggleClass(f).trigger(t.Event(c.SHOWN,s))}}}},l.dispose=function(){t.removeData(this._element,i),t(this._element).off(o),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},l.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},l._addEventListeners=function(){var e=this;t(this._element).on(c.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},l._getConfig=function(n){return n=r({},this.constructor.Default,t(this._element).data(),n),P.typeCheckConfig(e,n,this.constructor.DefaultType),n},l._getMenuElement=function(){if(!this._menu){var e=a._getParentFromElement(this._element);this._menu=t(e).find(y)[0]}return this._menu},l._getPlacement=function(){var e=t(this._element).parent(),n=D;return e.hasClass(d)?(n=A,t(this._menu).hasClass(p)&&(n=b)):e.hasClass(_)?n=w:e.hasClass(g)?n=N:t(this._menu).hasClass(p)&&(n=S),n},l._detectNavbar=function(){return t(this._element).closest(".navbar").length>0},l._getPopperConfig=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets)||{}),e}:e.offset=this._config.offset,{placement:this._getPlacement(),modifiers:{offset:e,flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}}},a._jQueryInterface=function(e){return this.each(function(){var n=t(this).data(i);if(n||(n=new a(this,"object"==typeof e?e:null),t(this).data(i,n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},a._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=t.makeArray(t(E)),s=0;s<n.length;s++){var r=a._getParentFromElement(n[s]),o=t(n[s]).data(i),l={relatedTarget:n[s]};if(o){var h=o._menu;if(t(r).hasClass(f)&&!(e&&("click"===e.type&&/input|textarea/i.test(e.target.tagName)||"keyup"===e.type&&9===e.which)&&t.contains(r,e.target))){var u=t.Event(c.HIDE,l);t(r).trigger(u),u.isDefaultPrevented()||("ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),n[s].setAttribute("aria-expanded","false"),t(h).removeClass(f),t(r).removeClass(f).trigger(t.Event(c.HIDDEN,l)))}}}},a._getParentFromElement=function(e){var n,i=P.getSelectorFromElement(e);return i&&(n=t(i)[0]),n||e.parentNode},a._dataApiKeydownHandler=function(e){if((/input|textarea/i.test(e.target.tagName)?!(32===e.which||27!==e.which&&(40!==e.which&&38!==e.which||t(e.target).closest(y).length)):h.test(e.which))&&(e.preventDefault(),e.stopPropagation(),!this.disabled&&!t(this).hasClass(u))){var n=a._getParentFromElement(this),i=t(n).hasClass(f);if((i||27===e.which&&32===e.which)&&(!i||27!==e.which&&32!==e.which)){var s=t(n).find(I).get();if(0!==s.length){var r=s.indexOf(e.target);38===e.which&&r>0&&r--,40===e.which&&r<s.length-1&&r++,r<0&&(r=0),s[r].focus()}}else{if(27===e.which){var o=t(n).find(E)[0];t(o).trigger("focus")}t(this).trigger("click")}}},s(a,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return O}},{key:"DefaultType",get:function(){return k}}]),a}();return t(document).on(c.KEYDOWN_DATA_API,E,L._dataApiKeydownHandler).on(c.KEYDOWN_DATA_API,y,L._dataApiKeydownHandler).on(c.CLICK_DATA_API+" "+c.KEYUP_DATA_API,L._clearMenus).on(c.CLICK_DATA_API,E,function(e){e.preventDefault(),e.stopPropagation(),L._jQueryInterface.call(t(this),"toggle")}).on(c.CLICK_DATA_API,T,function(t){t.stopPropagation()}),t.fn[e]=L._jQueryInterface,t.fn[e].Constructor=L,t.fn[e].noConflict=function(){return t.fn[e]=l,L._jQueryInterface},L}(e),M=function(t){var e="modal",n="bs.modal",i="."+n,o=t.fn.modal,a={backdrop:!0,keyboard:!0,focus:!0,show:!0},l={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},h={HIDE:"hide"+i,HIDDEN:"hidden"+i,SHOW:"show"+i,SHOWN:"shown"+i,FOCUSIN:"focusin"+i,RESIZE:"resize"+i,CLICK_DISMISS:"click.dismiss"+i,KEYDOWN_DISMISS:"keydown.dismiss"+i,MOUSEUP_DISMISS:"mouseup.dismiss"+i,MOUSEDOWN_DISMISS:"mousedown.dismiss"+i,CLICK_DATA_API:"click"+i+".data-api"},c="modal-scrollbar-measure",u="modal-backdrop",f="modal-open",d="fade",_="show",g={DIALOG:".modal-dialog",DATA_TOGGLE:'[data-toggle="modal"]',DATA_DISMISS:'[data-dismiss="modal"]',FIXED_CONTENT:".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",STICKY_CONTENT:".sticky-top",NAVBAR_TOGGLER:".navbar-toggler"},p=function(){function o(e,n){this._config=this._getConfig(n),this._element=e,this._dialog=t(e).find(g.DIALOG)[0],this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._originalBodyPadding=0,this._scrollbarWidth=0}var p=o.prototype;return p.toggle=function(t){return this._isShown?this.hide():this.show(t)},p.show=function(e){var n=this;if(!this._isTransitioning&&!this._isShown){P.supportsTransitionEnd()&&t(this._element).hasClass(d)&&(this._isTransitioning=!0);var i=t.Event(h.SHOW,{relatedTarget:e});t(this._element).trigger(i),this._isShown||i.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),t(document.body).addClass(f),this._setEscapeEvent(),this._setResizeEvent(),t(this._element).on(h.CLICK_DISMISS,g.DATA_DISMISS,function(t){return n.hide(t)}),t(this._dialog).on(h.MOUSEDOWN_DISMISS,function(){t(n._element).one(h.MOUSEUP_DISMISS,function(e){t(e.target).is(n._element)&&(n._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return n._showElement(e)}))}},p.hide=function(e){var n=this;if(e&&e.preventDefault(),!this._isTransitioning&&this._isShown){var i=t.Event(h.HIDE);if(t(this._element).trigger(i),this._isShown&&!i.isDefaultPrevented()){this._isShown=!1;var s=P.supportsTransitionEnd()&&t(this._element).hasClass(d);s&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),t(document).off(h.FOCUSIN),t(this._element).removeClass(_),t(this._element).off(h.CLICK_DISMISS),t(this._dialog).off(h.MOUSEDOWN_DISMISS),s?t(this._element).one(P.TRANSITION_END,function(t){return n._hideModal(t)}).emulateTransitionEnd(300):this._hideModal()}}},p.dispose=function(){t.removeData(this._element,n),t(window,document,this._element,this._backdrop).off(i),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._scrollbarWidth=null},p.handleUpdate=function(){this._adjustDialog()},p._getConfig=function(t){return t=r({},a,t),P.typeCheckConfig(e,t,l),t},p._showElement=function(e){var n=this,i=P.supportsTransitionEnd()&&t(this._element).hasClass(d);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.scrollTop=0,i&&P.reflow(this._element),t(this._element).addClass(_),this._config.focus&&this._enforceFocus();var s=t.Event(h.SHOWN,{relatedTarget:e}),r=function(){n._config.focus&&n._element.focus(),n._isTransitioning=!1,t(n._element).trigger(s)};i?t(this._dialog).one(P.TRANSITION_END,r).emulateTransitionEnd(300):r()},p._enforceFocus=function(){var e=this;t(document).off(h.FOCUSIN).on(h.FOCUSIN,function(n){document!==n.target&&e._element!==n.target&&0===t(e._element).has(n.target).length&&e._element.focus()})},p._setEscapeEvent=function(){var e=this;this._isShown&&this._config.keyboard?t(this._element).on(h.KEYDOWN_DISMISS,function(t){27===t.which&&(t.preventDefault(),e.hide())}):this._isShown||t(this._element).off(h.KEYDOWN_DISMISS)},p._setResizeEvent=function(){var e=this;this._isShown?t(window).on(h.RESIZE,function(t){return e.handleUpdate(t)}):t(window).off(h.RESIZE)},p._hideModal=function(){var e=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._isTransitioning=!1,this._showBackdrop(function(){t(document.body).removeClass(f),e._resetAdjustments(),e._resetScrollbar(),t(e._element).trigger(h.HIDDEN)})},p._removeBackdrop=function(){this._backdrop&&(t(this._backdrop).remove(),this._backdrop=null)},p._showBackdrop=function(e){var n=this,i=t(this._element).hasClass(d)?d:"";if(this._isShown&&this._config.backdrop){var s=P.supportsTransitionEnd()&&i;if(this._backdrop=document.createElement("div"),this._backdrop.className=u,i&&t(this._backdrop).addClass(i),t(this._backdrop).appendTo(document.body),t(this._element).on(h.CLICK_DISMISS,function(t){n._ignoreBackdropClick?n._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===n._config.backdrop?n._element.focus():n.hide())}),s&&P.reflow(this._backdrop),t(this._backdrop).addClass(_),!e)return;if(!s)return void e();t(this._backdrop).one(P.TRANSITION_END,e).emulateTransitionEnd(150)}else if(!this._isShown&&this._backdrop){t(this._backdrop).removeClass(_);var r=function(){n._removeBackdrop(),e&&e()};P.supportsTransitionEnd()&&t(this._element).hasClass(d)?t(this._backdrop).one(P.TRANSITION_END,r).emulateTransitionEnd(150):r()}else e&&e()},p._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},p._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},p._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},p._setScrollbar=function(){var e=this;if(this._isBodyOverflowing){t(g.FIXED_CONTENT).each(function(n,i){var s=t(i)[0].style.paddingRight,r=t(i).css("padding-right");t(i).data("padding-right",s).css("padding-right",parseFloat(r)+e._scrollbarWidth+"px")}),t(g.STICKY_CONTENT).each(function(n,i){var s=t(i)[0].style.marginRight,r=t(i).css("margin-right");t(i).data("margin-right",s).css("margin-right",parseFloat(r)-e._scrollbarWidth+"px")}),t(g.NAVBAR_TOGGLER).each(function(n,i){var s=t(i)[0].style.marginRight,r=t(i).css("margin-right");t(i).data("margin-right",s).css("margin-right",parseFloat(r)+e._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=t("body").css("padding-right");t("body").data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}},p._resetScrollbar=function(){t(g.FIXED_CONTENT).each(function(e,n){var i=t(n).data("padding-right");"undefined"!=typeof i&&t(n).css("padding-right",i).removeData("padding-right")}),t(g.STICKY_CONTENT+", "+g.NAVBAR_TOGGLER).each(function(e,n){var i=t(n).data("margin-right");"undefined"!=typeof i&&t(n).css("margin-right",i).removeData("margin-right")});var e=t("body").data("padding-right");"undefined"!=typeof e&&t("body").css("padding-right",e).removeData("padding-right")},p._getScrollbarWidth=function(){var t=document.createElement("div");t.className=c,document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},o._jQueryInterface=function(e,i){return this.each(function(){var s=t(this).data(n),a=r({},o.Default,t(this).data(),"object"==typeof e&&e);if(s||(s=new o(this,a),t(this).data(n,s)),"string"==typeof e){if("undefined"==typeof s[e])throw new TypeError('No method named "'+e+'"');s[e](i)}else a.show&&s.show(i)})},s(o,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return a}}]),o}();return t(document).on(h.CLICK_DATA_API,g.DATA_TOGGLE,function(e){var i,s=this,o=P.getSelectorFromElement(this);o&&(i=t(o)[0]);var a=t(i).data(n)?"toggle":r({},t(i).data(),t(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||e.preventDefault();var l=t(i).one(h.SHOW,function(e){e.isDefaultPrevented()||l.one(h.HIDDEN,function(){t(s).is(":visible")&&s.focus()})});p._jQueryInterface.call(t(i),a,this)}),t.fn.modal=p._jQueryInterface,t.fn.modal.Constructor=p,t.fn.modal.noConflict=function(){return t.fn.modal=o,p._jQueryInterface},p}(e),U=function(t){var e="tooltip",i="bs.tooltip",o="."+i,a=t.fn[e],l=new RegExp("(^|\\s)bs-tooltip\\S+","g"),h={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"},c={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},u={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},f="show",d="out",_={HIDE:"hide"+o,HIDDEN:"hidden"+o,SHOW:"show"+o,SHOWN:"shown"+o,INSERTED:"inserted"+o,CLICK:"click"+o,FOCUSIN:"focusin"+o,FOCUSOUT:"focusout"+o,MOUSEENTER:"mouseenter"+o,MOUSELEAVE:"mouseleave"+o},g="fade",p="show",m=".tooltip-inner",v=".arrow",E="hover",T="focus",y="click",C="manual",I=function(){function a(t,e){if("undefined"==typeof n)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var I=a.prototype;return I.enable=function(){this._isEnabled=!0},I.disable=function(){this._isEnabled=!1},I.toggleEnabled=function(){this._isEnabled=!this._isEnabled},I.toggle=function(e){if(this._isEnabled)if(e){var n=this.constructor.DATA_KEY,i=t(e.currentTarget).data(n);i||(i=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(t(this.getTipElement()).hasClass(p))return void this._leave(null,this);this._enter(null,this)}},I.dispose=function(){clearTimeout(this._timeout),t.removeData(this.element,this.constructor.DATA_KEY),t(this.element).off(this.constructor.EVENT_KEY),t(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&t(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,null!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},I.show=function(){var e=this;if("none"===t(this.element).css("display"))throw new Error("Please use show on visible elements");var i=t.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){t(this.element).trigger(i);var s=t.contains(this.element.ownerDocument.documentElement,this.element);if(i.isDefaultPrevented()||!s)return;var r=this.getTipElement(),o=P.getUID(this.constructor.NAME);r.setAttribute("id",o),this.element.setAttribute("aria-describedby",o),this.setContent(),this.config.animation&&t(r).addClass(g);var l="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,h=this._getAttachment(l);this.addAttachmentClass(h);var c=!1===this.config.container?document.body:t(this.config.container);t(r).data(this.constructor.DATA_KEY,this),t.contains(this.element.ownerDocument.documentElement,this.tip)||t(r).appendTo(c),t(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,r,{placement:h,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:v},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),t(r).addClass(p),"ontouchstart"in document.documentElement&&t("body").children().on("mouseover",null,t.noop);var u=function(){e.config.animation&&e._fixTransition();var n=e._hoverState;e._hoverState=null,t(e.element).trigger(e.constructor.Event.SHOWN),n===d&&e._leave(null,e)};P.supportsTransitionEnd()&&t(this.tip).hasClass(g)?t(this.tip).one(P.TRANSITION_END,u).emulateTransitionEnd(a._TRANSITION_DURATION):u()}},I.hide=function(e){var n=this,i=this.getTipElement(),s=t.Event(this.constructor.Event.HIDE),r=function(){n._hoverState!==f&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),t(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()};t(this.element).trigger(s),s.isDefaultPrevented()||(t(i).removeClass(p),"ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),this._activeTrigger[y]=!1,this._activeTrigger[T]=!1,this._activeTrigger[E]=!1,P.supportsTransitionEnd()&&t(this.tip).hasClass(g)?t(i).one(P.TRANSITION_END,r).emulateTransitionEnd(150):r(),this._hoverState="")},I.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},I.isWithContent=function(){return Boolean(this.getTitle())},I.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-tooltip-"+e)},I.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},I.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(m),this.getTitle()),e.removeClass(g+" "+p)},I.setElementContent=function(e,n){var i=this.config.html;"object"==typeof n&&(n.nodeType||n.jquery)?i?t(n).parent().is(e)||e.empty().append(n):e.text(t(n).text()):e[i?"html":"text"](n)},I.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},I._getAttachment=function(t){return c[t.toUpperCase()]},I._setListeners=function(){var e=this;this.config.trigger.split(" ").forEach(function(n){if("click"===n)t(e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(n!==C){var i=n===E?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,s=n===E?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;t(e.element).on(i,e.config.selector,function(t){return e._enter(t)}).on(s,e.config.selector,function(t){return e._leave(t)})}t(e.element).closest(".modal").on("hide.bs.modal",function(){return e.hide()})}),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},I._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},I._enter=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusin"===e.type?T:E]=!0),t(n.getTipElement()).hasClass(p)||n._hoverState===f?n._hoverState=f:(clearTimeout(n._timeout),n._hoverState=f,n.config.delay&&n.config.delay.show?n._timeout=setTimeout(function(){n._hoverState===f&&n.show()},n.config.delay.show):n.show())},I._leave=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusout"===e.type?T:E]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState=d,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===d&&n.hide()},n.config.delay.hide):n.hide())},I._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},I._getConfig=function(n){return"number"==typeof(n=r({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof n.content&&(n.content=n.content.toString()),P.typeCheckConfig(e,n,this.constructor.DefaultType),n},I._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},I._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(l);null!==n&&n.length>0&&e.removeClass(n.join(""))},I._handlePopperPlacementChange=function(t){this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},I._fixTransition=function(){var e=this.getTipElement(),n=this.config.animation;null===e.getAttribute("x-placement")&&(t(e).removeClass(g),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},a._jQueryInterface=function(e){return this.each(function(){var n=t(this).data(i),s="object"==typeof e&&e;if((n||!/dispose|hide/.test(e))&&(n||(n=new a(this,s),t(this).data(i,n)),"string"==typeof e)){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},s(a,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return u}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return i}},{key:"Event",get:function(){return _}},{key:"EVENT_KEY",get:function(){return o}},{key:"DefaultType",get:function(){return h}}]),a}();return t.fn[e]=I._jQueryInterface,t.fn[e].Constructor=I,t.fn[e].noConflict=function(){return t.fn[e]=a,I._jQueryInterface},I}(e),x=function(t){var e="popover",n="bs.popover",i="."+n,o=t.fn[e],a=new RegExp("(^|\\s)bs-popover\\S+","g"),l=r({},U.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),h=r({},U.DefaultType,{content:"(string|element|function)"}),c="fade",u="show",f=".popover-header",d=".popover-body",_={HIDE:"hide"+i,HIDDEN:"hidden"+i,SHOW:"show"+i,SHOWN:"shown"+i,INSERTED:"inserted"+i,CLICK:"click"+i,FOCUSIN:"focusin"+i,FOCUSOUT:"focusout"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i},g=function(r){var o,g;function p(){return r.apply(this,arguments)||this}g=r,(o=p).prototype=Object.create(g.prototype),o.prototype.constructor=o,o.__proto__=g;var m=p.prototype;return m.isWithContent=function(){return this.getTitle()||this._getContent()},m.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-popover-"+e)},m.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},m.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(f),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(e.find(d),n),e.removeClass(c+" "+u)},m._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},m._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(a);null!==n&&n.length>0&&e.removeClass(n.join(""))},p._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),s="object"==typeof e?e:null;if((i||!/destroy|hide/.test(e))&&(i||(i=new p(this,s),t(this).data(n,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}})},s(p,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return l}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return n}},{key:"Event",get:function(){return _}},{key:"EVENT_KEY",get:function(){return i}},{key:"DefaultType",get:function(){return h}}]),p}(U);return t.fn[e]=g._jQueryInterface,t.fn[e].Constructor=g,t.fn[e].noConflict=function(){return t.fn[e]=o,g._jQueryInterface},g}(e),K=function(t){var e="scrollspy",n="bs.scrollspy",i="."+n,o=t.fn[e],a={offset:10,method:"auto",target:""},l={offset:"number",method:"string",target:"(string|element)"},h={ACTIVATE:"activate"+i,SCROLL:"scroll"+i,LOAD_DATA_API:"load"+i+".data-api"},c="dropdown-item",u="active",f={DATA_SPY:'[data-spy="scroll"]',ACTIVE:".active",NAV_LIST_GROUP:".nav, .list-group",NAV_LINKS:".nav-link",NAV_ITEMS:".nav-item",LIST_ITEMS:".list-group-item",DROPDOWN:".dropdown",DROPDOWN_ITEMS:".dropdown-item",DROPDOWN_TOGGLE:".dropdown-toggle"},d="offset",_="position",g=function(){function o(e,n){var i=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(n),this._selector=this._config.target+" "+f.NAV_LINKS+","+this._config.target+" "+f.LIST_ITEMS+","+this._config.target+" "+f.DROPDOWN_ITEMS,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,t(this._scrollElement).on(h.SCROLL,function(t){return i._process(t)}),this.refresh(),this._process()}var g=o.prototype;return g.refresh=function(){var e=this,n=this._scrollElement===this._scrollElement.window?d:_,i="auto"===this._config.method?n:this._config.method,s=i===_?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),t.makeArray(t(this._selector)).map(function(e){var n,r=P.getSelectorFromElement(e);if(r&&(n=t(r)[0]),n){var o=n.getBoundingClientRect();if(o.width||o.height)return[t(n)[i]().top+s,r]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},g.dispose=function(){t.removeData(this._element,n),t(this._scrollElement).off(i),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},g._getConfig=function(n){if("string"!=typeof(n=r({},a,n)).target){var i=t(n.target).attr("id");i||(i=P.getUID(e),t(n.target).attr("id",i)),n.target="#"+i}return P.typeCheckConfig(e,n,l),n},g._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},g._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},g._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},g._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(var s=this._offsets.length;s--;){this._activeTarget!==this._targets[s]&&t>=this._offsets[s]&&("undefined"==typeof this._offsets[s+1]||t<this._offsets[s+1])&&this._activate(this._targets[s])}}},g._activate=function(e){this._activeTarget=e,this._clear();var n=this._selector.split(",");n=n.map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'});var i=t(n.join(","));i.hasClass(c)?(i.closest(f.DROPDOWN).find(f.DROPDOWN_TOGGLE).addClass(u),i.addClass(u)):(i.addClass(u),i.parents(f.NAV_LIST_GROUP).prev(f.NAV_LINKS+", "+f.LIST_ITEMS).addClass(u),i.parents(f.NAV_LIST_GROUP).prev(f.NAV_ITEMS).children(f.NAV_LINKS).addClass(u)),t(this._scrollElement).trigger(h.ACTIVATE,{relatedTarget:e})},g._clear=function(){t(this._selector).filter(f.ACTIVE).removeClass(u)},o._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n);if(i||(i=new o(this,"object"==typeof e&&e),t(this).data(n,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}})},s(o,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return a}}]),o}();return t(window).on(h.LOAD_DATA_API,function(){for(var e=t.makeArray(t(f.DATA_SPY)),n=e.length;n--;){var i=t(e[n]);g._jQueryInterface.call(i,i.data())}}),t.fn[e]=g._jQueryInterface,t.fn[e].Constructor=g,t.fn[e].noConflict=function(){return t.fn[e]=o,g._jQueryInterface},g}(e),V=function(t){var e="bs.tab",n="."+e,i=t.fn.tab,r={HIDE:"hide"+n,HIDDEN:"hidden"+n,SHOW:"show"+n,SHOWN:"shown"+n,CLICK_DATA_API:"click.bs.tab.data-api"},o="dropdown-menu",a="active",l="disabled",h="fade",c="show",u=".dropdown",f=".nav, .list-group",d=".active",_="> li > .active",g='[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',p=".dropdown-toggle",m="> .dropdown-menu .active",v=function(){function n(t){this._element=t}var i=n.prototype;return i.show=function(){var e=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&t(this._element).hasClass(a)||t(this._element).hasClass(l))){var n,i,s=t(this._element).closest(f)[0],o=P.getSelectorFromElement(this._element);if(s){var h="UL"===s.nodeName?_:d;i=(i=t.makeArray(t(s).find(h)))[i.length-1]}var c=t.Event(r.HIDE,{relatedTarget:this._element}),u=t.Event(r.SHOW,{relatedTarget:i});if(i&&t(i).trigger(c),t(this._element).trigger(u),!u.isDefaultPrevented()&&!c.isDefaultPrevented()){o&&(n=t(o)[0]),this._activate(this._element,s);var g=function(){var n=t.Event(r.HIDDEN,{relatedTarget:e._element}),s=t.Event(r.SHOWN,{relatedTarget:i});t(i).trigger(n),t(e._element).trigger(s)};n?this._activate(n,n.parentNode,g):g()}}},i.dispose=function(){t.removeData(this._element,e),this._element=null},i._activate=function(e,n,i){var s=this,r=("UL"===n.nodeName?t(n).find(_):t(n).children(d))[0],o=i&&P.supportsTransitionEnd()&&r&&t(r).hasClass(h),a=function(){return s._transitionComplete(e,r,i)};r&&o?t(r).one(P.TRANSITION_END,a).emulateTransitionEnd(150):a()},i._transitionComplete=function(e,n,i){if(n){t(n).removeClass(c+" "+a);var s=t(n.parentNode).find(m)[0];s&&t(s).removeClass(a),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(t(e).addClass(a),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),P.reflow(e),t(e).addClass(c),e.parentNode&&t(e.parentNode).hasClass(o)){var r=t(e).closest(u)[0];r&&t(r).find(p).addClass(a),e.setAttribute("aria-expanded",!0)}i&&i()},n._jQueryInterface=function(i){return this.each(function(){var s=t(this),r=s.data(e);if(r||(r=new n(this),s.data(e,r)),"string"==typeof i){if("undefined"==typeof r[i])throw new TypeError('No method named "'+i+'"');r[i]()}})},s(n,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),n}();return t(document).on(r.CLICK_DATA_API,g,function(e){e.preventDefault(),v._jQueryInterface.call(t(this),"show")}),t.fn.tab=v._jQueryInterface,t.fn.tab.Constructor=v,t.fn.tab.noConflict=function(){return t.fn.tab=i,v._jQueryInterface},v}(e);!function(t){if("undefined"==typeof t)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1===e[0]&&9===e[1]&&e[2]<1||e[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(e),t.Util=P,t.Alert=L,t.Button=R,t.Carousel=j,t.Collapse=H,t.Dropdown=W,t.Modal=M,t.Popover=x,t.Scrollspy=K,t.Tab=V,t.Tooltip=U,Object.defineProperty(t,"__esModule",{value:!0})});
PK�uKX��A���spiko/assets/js/custom.js(function ($){

  // remove box on click 
    $("a").keypress(function() {
     this.blur();
     this.hideFocus = false;
     this.style.outline = null;
      });
      $("a").mousedown(function() {
           this.blur();
           this.hideFocus = true;
           this.style.outline = 'none';
      });
      
	  $.fn.counter = function() {
	    const $this = $(this),
	    numberFrom = parseInt($this.attr('data-from')),
	    numberTo = parseInt($this.attr('data-to')),
	    delta = numberTo - numberFrom,
	    deltaPositive = delta > 0 ? 1 : 0,
	    time = parseInt($this.attr('data-time')),
	    changeTime = 10;
	    
	    let currentNumber = numberFrom,
	    value = delta*changeTime/time;
	    var interval1;
	    const changeNumber = () => {
	      currentNumber += value;
	      //checks if currentNumber reached numberTo
	      (deltaPositive && currentNumber >= numberTo) || (!deltaPositive &&currentNumber<= numberTo) ? currentNumber=numberTo : currentNumber;
	      this.text(parseInt(currentNumber));
	      currentNumber == numberTo ? clearInterval(interval1) : currentNumber;  
	    }

	    interval1 = setInterval(changeNumber,changeTime);
	  }

    // remove # on URL
        $(".search-icon").click(function(e){
            e.preventDefault();
            console.log();
         });
        
	  jQuery(document).ready(function(){

        jQuery(function(){
      jQuery(".video-player").mb_YTPlayer();
    });

    jQuery('#video-play').click(function(event) {
      event.preventDefault();
      if (jQuery(this).hasClass('fa-play')) {
      jQuery('.video-player').playYTP();
      } else {
      jQuery('.video-player').pauseYTP();
      }
      jQuery(this).toggleClass('fa-play fa-pause');
      return false;
    });

    jQuery('#video-volume').click(function(event) {
      event.preventDefault();
      if (jQuery(this).hasClass('fa-volume-off')) {
      jQuery('.video-player').YTPUnmute();
      } else {
      jQuery('.video-player').YTPMute();
      }
      jQuery(this).toggleClass('fa-volume-off fa-volume-up');
      return false;
    });

	  jQuery('.count-up').counter();
	  
	  /*new WOW().init();*/
	  
	  setTimeout(function () {
	    jQuery('.count5').counter();
	  }, 3000);
	});

  //Sticky Header
       jQuery(window).bind('scroll', function () {
          if (jQuery(window).scrollTop() > 100)
          {
                jQuery('.header-sticky').addClass('stickymenu');
                jQuery('.header-sidebar').css('display','none');
          } else {
                jQuery('.header-sticky').removeClass('stickymenu');
                jQuery('.header-sidebar').css('display','');
          }
       });

         // scroll
  $(window).scroll(function () {
        if ($(this).scrollTop() > 100) {
            $('.scroll-up').fadeIn();
        } else {
            $('.scroll-up').fadeOut();
        }
    }); 

  
    $('a[href="#totop"]').click(function () {
        $('html, body').animate({scrollTop: 0}, 'slow');
        return false;
    });

	}(jQuery));PK�uKX"��n4�4�%spiko/assets/js/jquery.mb.YTPlayer.js/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 jquery.mb.components
 
 file: jquery.mb.YTPlayer.src.js
 last modified: 16/03/18 20.01
 Version:  3.2.4
 Build:  7235
 
 Open Lab s.r.l., Florence - Italy
 email:  matteo@open-lab.com
 blog: 	http://pupunzi.open-lab.com
 site: 	http://pupunzi.com
 	http://open-lab.com
 
 Licences: MIT, GPL
 http://www.opensource.org/licenses/mit-license.php
 http://www.gnu.org/licenses/gpl.html
 
 Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi)
 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/



var ytp = ytp || {};

function onYouTubeIframeAPIReady() {
  if (ytp.YTAPIReady) return;
  ytp.YTAPIReady = true;
  jQuery(document).trigger("YTAPIReady");
}

var getYTPVideoID = function (url) {
  var videoID, playlistID;
  if (url.indexOf("youtu.be") > 0) {
    videoID = url.substr(url.lastIndexOf("/") + 1, url.length);
    playlistID = videoID.indexOf("?list=") > 0 ? videoID.substr(videoID.lastIndexOf("="), videoID.length) : null;
    videoID = playlistID ? videoID.substr(0, videoID.lastIndexOf("?")) : videoID;
  } else if (url.indexOf("http") > -1) {
    //videoID = url.match( /([\/&]v\/([^&#]*))|([\\?&]v=([^&#]*))/ )[ 1 ];
    videoID = url.match(/[\\?&]v=([^&#]*)/)[1];
    playlistID = url.indexOf("list=") > 0 ? url.match(/[\\?&]list=([^&#]*)/)[1] : null;
  } else {
    videoID = url.length > 15 ? null : url;
    playlistID = videoID ? null : url;
  }
  return {
    videoID   : videoID,
    playlistID: playlistID
  };
};

(function (jQuery, ytp) {
  
  jQuery.mbYTPlayer = {
    name   : "jquery.mb.YTPlayer",
    version: "3.2.4",
    build  : "7235",
    author : "Matteo Bicocchi (pupunzi)",
    apiKey : "",
    
    /*
     * Default options for the player
     */
    defaults        : {
      /**
       videoURL (string)
       the complete Youtube video URL or the short url or the videoID
       */
      videoURL: null,
      
      /**
       containment (string)
       default containment for the player
       */
      containment: "body",
      
      /**
       ratio (string or number)
       "auto", "16/9", "4/3" or number: 4/3, 16/9
       */
      ratio: "auto",
      
      /**
       fadeOnStartTime (int)
       fade in timing at video start
       */
      fadeOnStartTime: 1500,
      
      /**
       startAt (int)
       start second
       */
      startAt: 0,
      
      /**
       stopAt (int)
       stop second
       */
      stopAt: 0,
      
      /**
       autoPlay (bool)
       on page load video should start or pause
       */
      autoPlay: true,
      
      /**
       coverImage (string)
       The path to the image to be used as cover if the autoPlay option is set to false
       */
      coverImage: false,
      
      /**
       loop (bool or int)
       video should loop or not; if number it will loop for the specified times
       */
      loop: true,
      
      /**
       addRaster (bool)
       shows a raster image over the video (added via CSS)
       You can change the raster image via CSS:
       .YTPOverlay.raster { background: url(images/raster.png)}
       */
      addRaster: false,
      
      /**
       mask (bool or object) the key is the second and the value is the path to the image
       Ex: mask:{ 0:'assets/mask-1.png', 5:'assets/mask-2.png', 30: false, 50:'assets/mask-3.png'}
       */
      mask: false,
      
      /**
       opacity (int)
       0 to 1
       */
      opacity: 1,
      
      /**
       quality (string)
       “small”, “medium”, “large”, “hd720”, “hd1080”, “highres”, "default"
       */
      quality: "default",
      
      /**
       vol (int)
       0 to 100
       */
      vol: 50,
      
      /**
       mute (bool)
       mute the video at start
       */
      mute: false,
      
      /**
       showControls (bool)
       shows the control bar at the bottom of the containment
       */
      showControls: true,
      
      /**
       showControls (string)
       center,top,bottom,left,right combined in pair
       */
      anchor: "center,center",
      
      /**
       showAnnotations (bool)
       display the annotations on video
       */
      showAnnotations: false,
      
      /**
       cc_load_policy (bool)
       display the subtitles
       */
      cc_load_policy: false,
      
      /**
       showYTLogo (bool)
       display the Youtube logotype inside the button bar
       */
      showYTLogo: true,
      
      /**
       useOnMobile (bool)
       activate the player also on mobile
       */
      useOnMobile: true,
      
      /**
       mobileFallbackImage (bool)
       mobile fallback image if useOnMobile is set to false
       */
      mobileFallbackImage: null,
      
      /**
       playOnlyIfVisible (bool)
       play the video only if the containment is on screen
       */
      playOnlyIfVisible: false,
      
      /**
       onScreenPercentage (bool)
       percentage of the player height the video should stop or start when visible
       */
      onScreenPercentage: 30,
      
      /**
       stopMovieOnBlur (bool)
       stop the video if the window loose the focus
       */
      stopMovieOnBlur: true,
      
      /**
       realfullscreen (bool)
       the video when in full screen covers all the display
       */
      realfullscreen: true,
      
      /**
       optimizeDisplay (bool)
       The video always fit the containment without displaying the black strips
       */
      optimizeDisplay: true,
      
      /**
       abundance (bool)
       the abudance of the video size
       */
      abundance: 0.2,
      
      /**
       gaTrack (bool)
       track the video plays on GA
       */
      gaTrack: true,
      
      /**
       remember_last_time (bool)
       when the page is reloaded the video will start from the last position
       */
      remember_last_time: false,
      
      /**
       addFilters (bool or string)
       add one or more CSS filters as object to the video
       Ex: {sepia: 50, hue_rotate : 220}
       */
      addFilters: false,
      
      /**
       onReady (function)
       a callback function fired once the player is ready
       */
      onReady: function (player) {},
      
      /**
       onReady (function)
       a callback function fired if there's an error
       */
      onError: function (player, err) {}
    },
    /**
     *  @fontface icons
     *  */
    controls        : {
      play    : "P",
      pause   : "p",
      mute    : "M",
      unmute  : "A",
      onlyYT  : "O",
      showSite: "R",
      ytLogo  : "Y"
    },
    controlBar      : null,
    locationProtocol: "https:",
    
    /**
     * Applicable filters
     */
    defaultFilters: {
      grayscale : {value: 0, unit: "%"},
      hue_rotate: {value: 0, unit: "deg"},
      invert    : {value: 0, unit: "%"},
      opacity   : {value: 0, unit: "%"},
      saturate  : {value: 0, unit: "%"},
      sepia     : {value: 0, unit: "%"},
      brightness: {value: 0, unit: "%"},
      contrast  : {value: 0, unit: "%"},
      blur      : {value: 0, unit: "px"}
    },
    
    /**
     * build the player
     * @param options
     * @returns [players]
     */
    buildPlayer: function (options) {
      
      if (!ytp.YTAPIReady && typeof window.YT === 'undefined') {
        jQuery("#YTAPI").remove();
        var tag = jQuery("<script></script>").attr({
          "src": jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/iframe_api?v=" + jQuery.mbYTPlayer.version,
          "id" : "YTAPI"
        });
        jQuery("head").prepend(tag);
      } else {
        setTimeout(function () {
          jQuery(document).trigger("YTAPIReady");
          ytp.YTAPIReady = true;
        }, 100);
      }
      
      function isIframe() {
        var isIfr = false;
        try {
          if (self.location.href != top.location.href) isIfr = true;
        } catch (e) {
          isIfr = true;
        }
        return isIfr;
      };
      
      //console.time( "YTPlayerInit" );
      
      return this.each(function () {
        var YTPlayer = this;
        var $YTPlayer = jQuery(YTPlayer);
        $YTPlayer.hide();
        YTPlayer.loop = 0;
        YTPlayer.state = 0;
        YTPlayer.filters = jQuery.extend(true, {}, jQuery.mbYTPlayer.defaultFilters);
        YTPlayer.filtersEnabled = true;
        YTPlayer.id = YTPlayer.id || "YTP_" + new Date().getTime();
        $YTPlayer.addClass("mb_YTPlayer");
        
        /**
         Set properties
         */
        var property = $YTPlayer.data("property") && typeof $YTPlayer.data("property") == "string" ?
            eval('(' + $YTPlayer.data("property") + ')') :
            $YTPlayer.data("property");
        
        if (typeof property !== "object")
          property = {};
        
        YTPlayer.opt = jQuery.extend(true, {}, jQuery.mbYTPlayer.defaults, YTPlayer.opt, options, property);
        
        YTPlayer.opt.elementId = YTPlayer.id;
        
        if (YTPlayer.opt.vol === 0) {
          YTPlayer.opt.vol = 1;
          YTPlayer.opt.mute = true;
        }
        
        /**
         * If autoPlay is set to true and  mute is set to false
         * Webkit browser will not auto-play
         * Start playing after the first click
         */
        if(YTPlayer.opt.autoPlay && YTPlayer.opt.mute == false && jQuery.mbBrowser.chrome) {
          //YTPlayer.opt.mute = true;
          jQuery(document).one("mousedown.YTPstart", function(){ $YTPlayer.YTPPlay(); });
          console.info("YTPlayer info: On Webkit browsers you can not autoplay the video if the audio is on.")
        }
        
        if (YTPlayer.opt.loop && typeof YTPlayer.opt.loop === "boolean") {
          YTPlayer.opt.loop = 9999;
        }
        
        /**
         Disable fullScreen if is in an iframe or full-screen API is not available
         */
        var fullScreenAvailable = document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled;
        YTPlayer.opt.realfullscreen = isIframe() || !fullScreenAvailable ? false : YTPlayer.opt.realfullscreen;
        /**
         Manage annotations
         */
        YTPlayer.opt.showAnnotations = YTPlayer.opt.showAnnotations ? '1' : '3';
        /**
         Manage show subtitle and caption
         */
        YTPlayer.opt.cc_load_policy = YTPlayer.opt.cc_load_policy ? '1' : '0';
        /**
         Manage cover image
         */
        YTPlayer.opt.coverImage = YTPlayer.opt.coverImage || YTPlayer.opt.backgroundImage;
        /**
         Manage Opacity for IE < 10
         */
        if (jQuery.mbBrowser.msie && jQuery.mbBrowser.version < 9)
          YTPlayer.opt.opacity = 1;

        YTPlayer.opt.containment = YTPlayer.opt.containment === "self" ? $YTPlayer : jQuery(YTPlayer.opt.containment);
        YTPlayer.isRetina = (window.retina || window.devicePixelRatio > 1);
        
        YTPlayer.opt.ratio = YTPlayer.opt.ratio === "auto" ? 16 / 9 : YTPlayer.opt.ratio;
        YTPlayer.opt.ratio = eval(YTPlayer.opt.ratio);
        
        if (!$YTPlayer.attr("id"))
          $YTPlayer.attr("id", "ytp_" + new Date().getTime());
        
        YTPlayer.playerID = "iframe_" + YTPlayer.id;
        
        YTPlayer.isAlone = false;
        YTPlayer.hasFocus = true;
        YTPlayer.videoID = YTPlayer.opt.videoURL ?
            getYTPVideoID(YTPlayer.opt.videoURL).videoID : $YTPlayer.attr("href") ?
                getYTPVideoID($YTPlayer.attr("href")).videoID :
                false;
        
        /**
         Check if it is a video list
         */
        YTPlayer.playlistID = YTPlayer.opt.videoURL ?
            getYTPVideoID(YTPlayer.opt.videoURL).playlistID : $YTPlayer.attr("href") ?
                getYTPVideoID($YTPlayer.attr("href")).playlistID :
                false;
        
        var start_from_last = 0;
        if (jQuery.mbCookie.get("YTPlayer_start_from" + YTPlayer.videoID))
          start_from_last = parseFloat(jQuery.mbCookie.get("YTPlayer_start_from" + YTPlayer.videoID));
        if (YTPlayer.opt.remember_last_time && start_from_last) {
          YTPlayer.start_from_last = start_from_last;
          jQuery.mbCookie.remove("YTPlayer_start_from" + YTPlayer.videoID);
        }
        
        YTPlayer.isPlayer = $YTPlayer.is(YTPlayer.opt.containment);
        YTPlayer.isBackground = YTPlayer.opt.containment.is("body");
        
        if (YTPlayer.isBackground && ytp.backgroundIsInited)
          return;
        
        /**
         Hide the placeholder if it's not the target of the player
         */
        if (YTPlayer.isPlayer)
          $YTPlayer.show();
        
        /**
         create the overlay
         */
        YTPlayer.overlay = jQuery("<div/>").css({
          position: "absolute",
          top     : 0,
          left    : 0,
          width   : "100%",
          height  : "100%"
        }).addClass("YTPOverlay");
        
        /**
         create the wrapper
         */
        YTPlayer.wrapper = jQuery("<div/>").attr("id", "wrapper_" + YTPlayer.id).css({
          position : "absolute",
          zIndex   : 0,
          minWidth : "100%",
          minHeight: "100%",
          left     : 0,
          top      : 0,
          overflow : "hidden",
          opacity  : 1
        }).addClass("mbYTP_wrapper");
        
        /**
         If is an inline player toggle play if the overlay is clicked
         */
        if (YTPlayer.isPlayer) {
          YTPlayer.inlinePlayButton = jQuery("<div/>").addClass("inlinePlayButton").html(jQuery.mbYTPlayer.controls.play);
          $YTPlayer.append(YTPlayer.inlinePlayButton);
          YTPlayer.inlinePlayButton.on("click", function(e){
            $YTPlayer.YTPPlay();
            e.stopPropagation();
          });
          
          if(YTPlayer.opt.autoPlay)
            YTPlayer.inlinePlayButton.hide();
          
          YTPlayer.overlay.on("click", function () {
            $YTPlayer.YTPTogglePlay();
          }).css({cursor: "pointer"})
        }
        
        /**
         create the playerBox where the YT iframe will be placed
         */
        var playerBox = jQuery("<div/>").attr("id", YTPlayer.playerID).addClass("playerBox");
        playerBox.css({
          position: "absolute",
          zIndex  : 0,
          width   : "100%",
          height  : "100%",
          top     : 0,
          left    : 0,
          overflow: "hidden",
          opacity : 1
        });
        
        YTPlayer.wrapper.append(playerBox);
        playerBox.after(YTPlayer.overlay);
        
        if (YTPlayer.isPlayer) {
          YTPlayer.inlineWrapper = jQuery("<div/>").addClass("inline-YTPlayer");
          
          YTPlayer.inlineWrapper.css({
            position: "relative",
            maxWidth: YTPlayer.opt.containment.css("width")
          });
          
          YTPlayer.opt.containment.css({
            position     : "relative",
            paddingBottom: "56.25%",
            overflow     : "hidden",
            height       : 0
          });
          YTPlayer.opt.containment.wrap(YTPlayer.inlineWrapper);
        }
        
        /**
         Loop all the elements inside the container and check if their position is not "static"
         */
        YTPlayer.opt.containment.children().not("script, style").each(function () {
          if (jQuery(this).css("position") == "static")
            jQuery(this).css("position", "relative");
        });
        
        if (YTPlayer.isBackground) {
          jQuery("body").css({
            boxSizing: "border-box"
          });
          
          YTPlayer.wrapper.css({
            position: "fixed",
            top     : 0,
            left    : 0,
            zIndex  : 0
          });
          
        } else if (YTPlayer.opt.containment.css("position") == "static") {
          
          YTPlayer.opt.containment.css({
            position: "relative"
          });
          $YTPlayer.show();
        }
        YTPlayer.opt.containment.prepend(YTPlayer.wrapper);
        
        if (!YTPlayer.isBackground) {
          YTPlayer.overlay.on("mouseenter", function () {
            if (YTPlayer.controlBar && YTPlayer.controlBar.length)
              YTPlayer.controlBar.addClass("visible");
          }).on("mouseleave", function () {
            if (YTPlayer.controlBar && YTPlayer.controlBar.length)
              YTPlayer.controlBar.removeClass("visible");
          });
        }
        
        if (jQuery.mbBrowser.mobile && !YTPlayer.opt.useOnMobile) {
          if (YTPlayer.opt.mobileFallbackImage) {
            YTPlayer.wrapper.css({
              backgroundImage   : "url(" + YTPlayer.opt.mobileFallbackImage + ")",
              backgroundPosition: "center center",
              backgroundSize    : "cover",
              backgroundRepeat  : "no-repeat",
              opacity           : 1
            });
            YTPlayer.wrapper.css({opacity: 1})
          }
          return $YTPlayer;
        }
        
        /**
         If is on device start playing on first touch
         */
        if (jQuery.mbBrowser.mobile && YTPlayer.opt.autoPlay && YTPlayer.opt.useOnMobile)
          jQuery("body").one("touchstart", function () {
            YTPlayer.player.playVideo();
          });
        
        jQuery(document).one("YTAPIReady", function () {
          $YTPlayer.trigger("YTAPIReady_" + YTPlayer.id);
          ytp.YTAPIReady = true;
        });
        
        YTPlayer.isOnScreen = jQuery.mbYTPlayer.isOnScreen(YTPlayer, YTPlayer.opt.onScreenPercentage );
        
        $YTPlayer.one("YTAPIReady_" + YTPlayer.id, function () {
          
          var YTPlayer = this;
          var $YTPlayer = jQuery(YTPlayer);
          
          if ((YTPlayer.isBackground && ytp.backgroundIsInited) || YTPlayer.isInit)
            return;
          
          if (YTPlayer.isBackground)
            ytp.backgroundIsInited = true;
          
          YTPlayer.opt.autoPlay = typeof YTPlayer.opt.autoPlay == "undefined" ? (YTPlayer.isBackground ? true : false) : YTPlayer.opt.autoPlay;
          YTPlayer.opt.vol = YTPlayer.opt.vol ? YTPlayer.opt.vol : 100;
          
          jQuery.mbYTPlayer.getDataFromAPI(YTPlayer);
          
          jQuery(YTPlayer).on("YTPChanged", function (e) {
            
            if (YTPlayer.isInit)
              return;
            
            YTPlayer.isInit = true;
            
            /** Initialize the YT player ------------------------------------
             * Youtube player variables
             * @type {{modestbranding: number, autoplay: number, controls: number, showinfo: number, rel: number, enablejsapi: number, version: number, playerapiid: string, origin: string, allowfullscreen: boolean, iv_load_policy: (string|*|jQuery.mbYTPlayer.opt.showAnnotations), playsinline: number}}
             */
            var playerVars = {
              'modestbranding' : 1,
              'autoplay'       : 0,
              'controls'       : 0,
              'showinfo'       : 0,
              'rel'            : 0,
              'enablejsapi'    : 1,
              'version'        : 3,
              'playerapiid'    : YTPlayer.playerID,
              'origin'         : '*',
              'allowfullscreen': true,
              'wmode'          : 'transparent',
              'iv_load_policy' : YTPlayer.opt.showAnnotations,
              'cc_load_policy' : YTPlayer.opt.cc_load_policy,
              'playsinline'    : jQuery.mbBrowser.mobile ? 1 : 0,
              
              /**
               Check if the browser can play HTML5 videos
               */
              'html5': document.createElement('video').canPlayType ? 1 : 0
            };
            
            new YT.Player(YTPlayer.playerID, {
              //videoId: YTPlayer.videoID.toString(),
              playerVars: playerVars,
              events    : {
                'onReady'                : function (event) {
                  
                  YTPlayer.player = event.target;
                  
                  //todo: make playlist works
                  /* if (YTPlayer.playlistID && YTPlayer.apiKey) {
                      YTPlayer.isList = true;
                      YTPlayer.videos = [];
                      YTPlayer.player.cuePlaylist({
                        listType: 'playlist',
                        list: YTPlayer.playlistID.toString(),
                        startSeconds: YTPlayer.opt.startAt,
                        endSeconds: YTPlayer.opt.stopAt,
                        suggestedQuality: YTPlayer.opt.quality
                      });
                    }
                     else { */
                  
                  YTPlayer.player.loadVideoById({
                    videoId         : YTPlayer.videoID.toString(),
                    // startSeconds: YTPlayer.start_from_last || YTPlayer.opt.startAt,
                    // endSeconds: YTPlayer.opt.stopAt,
                    suggestedQuality: YTPlayer.opt.quality
                  });
                  
                  /*}*/
                  
                  $YTPlayer.trigger("YTPlayerIsReady_" + YTPlayer.id);
                },
                /**
                 * on State Change
                 * @param event
                 *
                 * -1 (unstarted)
                 * 0 (ended)
                 * 1 (playing)
                 * 2 (paused)
                 * 3 (buffering)
                 * 5 (video cued)
                 */
                'onStateChange'          : function (event) {
                  
                  if (typeof event.target.getPlayerState != "function")
                    return;
                  
                  var state = event.target.getPlayerState();
                  
                  if (YTPlayer.preventTrigger || YTPlayer.isStarting) {
                    YTPlayer.preventTrigger = false;
                    return
                  }
                  
                  YTPlayer.state = state;
                  // console.debug(YTPlayer.state);
                  
                  var eventType;
                  switch (state) {
                      
                      /** unstarted */
                    case -1:
                      eventType = "YTPUnstarted";
                      break;
                      
                      /** unstarted */
                    case 0:
                      eventType = "YTPRealEnd";
                      break;
                      
                      /** play */
                    case 1:
                      eventType = "YTPPlay";
                      if (YTPlayer.controlBar.length)
                        YTPlayer.controlBar.find(".mb_YTPPlayPause").html(jQuery.mbYTPlayer.controls.pause);
                      
                      if(YTPlayer.isPlayer)
                        YTPlayer.inlinePlayButton.hide();
                      
                      jQuery(document).off("mousedown.YTPstart");
                      break;
                      
                      /** pause */
                    case 2:
                      eventType = "YTPPause";
                      if (YTPlayer.controlBar.length)
                        YTPlayer.controlBar.find(".mb_YTPPlayPause").html(jQuery.mbYTPlayer.controls.play);
                      
                      if(YTPlayer.isPlayer)
                        YTPlayer.inlinePlayButton.show();
                      break;
                      
                      /** buffer */
                    case 3:
                      YTPlayer.player.setPlaybackQuality(YTPlayer.opt.quality);
                      eventType = "YTPBuffering";
                      if (YTPlayer.controlBar.length)
                        YTPlayer.controlBar.find(".mb_YTPPlayPause").html(jQuery.mbYTPlayer.controls.play);
                      break;
                      
                      /** cued */
                    case 5:
                      eventType = "YTPCued";
                      break;
                    
                    default:
                      break;
                  }
                  
                  /**
                   Trigger state events
                   */
                  var YTPEvent = jQuery.Event(eventType);
                  YTPEvent.time = YTPlayer.currentTime;
                  jQuery(YTPlayer).trigger(YTPEvent);
                },
                /**
                 * onPlaybackQualityChange
                 * @param e
                 */
                'onPlaybackQualityChange': function (e) {
                  var quality = e.target.getPlaybackQuality();
                  var YTPQualityChange = jQuery.Event("YTPQualityChange");
                  YTPQualityChange.quality = quality;
                  jQuery(YTPlayer).trigger(YTPQualityChange);
                },
                /**
                 * onError
                 * @param err
                 *
                 2 – The request contains an invalid parameter value. For example, this error occurs if you specify a video ID that does not have 11 characters, or if the video ID contains invalid characters, such as exclamation points or asterisks.
                 5 – The requested content cannot be played in an HTML5 player or another error related to the HTML5 player has occurred.
                 100 – The video requested was not found. This error occurs when a video has been removed (for any reason) or has been marked as private.
                 101 – The owner of the requested video does not allow it to be played in embedded players.
                 150 – This error is the same as 101. It's just a 101 error in disguise!
                 */
                'onError'                : function (err) {
                  
                  if (typeof YTPlayer.opt.onError == "function")
                    YTPlayer.opt.onError($YTPlayer, err);
                  
                  switch (err.data) {
                    case 2:
                      console.error("video ID:: " + YTPlayer.videoID + ": The request contains an invalid parameter value. For example, this error occurs if you specify a video ID that does not have 11 characters, or if the video ID contains invalid characters, such as exclamation points or asterisks.");
                      break;
                    case 5:
                      console.error("video ID:: " + YTPlayer.videoID + ": The requested content cannot be played in an HTML5 player or another error related to the HTML5 player has occurred.");
                      break;
                    case 100:
                      console.error("video ID:: " + YTPlayer.videoID + ": The video requested was not found. This error occurs when a video has been removed (for any reason) or has been marked as private.");
                      break;
                    case 101:
                    case 150:
                      console.error("video ID:: " + YTPlayer.videoID + ": The owner of the requested video does not allow it to be played in embedded players.");
                      break;
                  }
                  
                  if (YTPlayer.isList)
                    jQuery(YTPlayer).YTPPlayNext();
                  
                }
              }
            });
            
            $YTPlayer.on("YTPlayerIsReady_" + YTPlayer.id, function () {
              
              if (YTPlayer.isReady)
                return this;
              
              YTPlayer.playerEl = YTPlayer.player.getIframe();
              jQuery(YTPlayer.playerEl).unselectable();
              $YTPlayer.optimizeDisplay();
              
              /**
               * Optimize display on resize
               */
              jQuery(window).off("resize.YTP_" + YTPlayer.id).on("resize.YTP_" + YTPlayer.id, function () {
                $YTPlayer.optimizeDisplay();
              });
              
              /**
               * Set the time of the last visit progress
               */
              if (YTPlayer.opt.remember_last_time) {
                jQuery(window).on("unload.YTP_" + YTPlayer.id, function () {
                  var current_time = YTPlayer.player.getCurrentTime();
                  jQuery.mbCookie.set("YTPlayer_start_from" + YTPlayer.videoID, current_time, 0);
                });
              }
              
              $YTPlayer.YTPCheckForState();
              
            });
          });
        });
        
        $YTPlayer.off("YTPTime.mask");
        jQuery.mbYTPlayer.applyMask(YTPlayer);
        
        // console.timeEnd( "YTPlayerInit" );
      });
    },
    
    /**
     * isOnScreen
     * Check if the YTPlayer is on screen
     * @param YTPlayer
     * @returns {boolean}
     */
    isOnScreen: function (YTPlayer, perc) {
      perc = perc || 10;
      var playerBox = YTPlayer.wrapper;
      var winTop = jQuery(window).scrollTop();
      var winBottom = winTop + jQuery(window).height();
      
      var margin = (playerBox.height() * perc) /100 ;
      var elTop = playerBox.offset().top + margin;
      var elBottom = playerBox.offset().top + (playerBox.height() - margin);
      
      
      /*
            console.debug("-----------------------------", YTPlayer.id);
            console.debug("EL:: bottom:: ", elBottom, "top:: ",  elTop);
            console.debug("WIN:: bottom:: ", winBottom, "top:: ", winTop);
      */
      
      return ((elBottom <= winBottom) && (elTop >= winTop));
      
    },
    
    /**
     * getDataFromAPI
     * @param YTPlayer
     */
    getDataFromAPI: function (YTPlayer) {
      
      //console.debug("getDataFromAPI", YTPlayer.id, YTPlayer.videoID)
      
      YTPlayer.videoData = jQuery.mbStorage.get("YTPlayer_data_" + YTPlayer.videoID);
      jQuery(YTPlayer).off("YTPData.YTPlayer").on("YTPData.YTPlayer", function () {
        if (YTPlayer.hasData) {
          
          if (YTPlayer.isPlayer && !YTPlayer.opt.autoPlay) {
            var bgndURL = YTPlayer.opt.coverImage != "false" ? YTPlayer.opt.coverImage : (YTPlayer.videoData.thumb_max || YTPlayer.videoData.thumb_high || YTPlayer.videoData.thumb_medium);
            
            YTPlayer.opt.containment.css({
              background    : "rgba(0,0,0,0.5) url(" + bgndURL + ") center center",
              backgroundSize: "cover"
            });
            
          }
        }
      });
      
      if (YTPlayer.videoData) {
        
        setTimeout(function () {
          YTPlayer.dataReceived = true;
          
          var YTPChanged = jQuery.Event("YTPChanged");
          YTPChanged.time = YTPlayer.currentTime;
          YTPChanged.videoId = YTPlayer.videoID;
          YTPChanged.opt = YTPlayer.opt;
          jQuery(YTPlayer).trigger(YTPChanged);
          
          var YTPData = jQuery.Event("YTPData");
          YTPData.prop = {};
          for (var x in YTPlayer.videoData)
            YTPData.prop[x] = YTPlayer.videoData[x];
          jQuery(YTPlayer).trigger(YTPData);
          
        }, YTPlayer.opt.fadeOnStartTime);
        
        YTPlayer.hasData = true;
        
      } else if (jQuery.mbYTPlayer.apiKey) {
        
        /**
         * Get video info from API3 (needs api key)
         * snippet,player,contentDetails,statistics,status
         */
        jQuery.getJSON(jQuery.mbYTPlayer.locationProtocol + "//www.googleapis.com/youtube/v3/videos?id=" + YTPlayer.videoID + "&key=" + jQuery.mbYTPlayer.apiKey + "&part=snippet", function (data) {
          YTPlayer.dataReceived = true;
          
          var YTPChanged = jQuery.Event("YTPChanged");
          YTPChanged.time = YTPlayer.currentTime;
          YTPChanged.videoId = YTPlayer.videoID;
          jQuery(YTPlayer).trigger(YTPChanged);
          
          function parseYTPlayer_data(data) {
            YTPlayer.videoData = {};
            YTPlayer.videoData.id = YTPlayer.videoID;
            YTPlayer.videoData.channelTitle = data.channelTitle;
            YTPlayer.videoData.title = data.title;
            YTPlayer.videoData.description = data.description.length < 400 ? data.description : data.description.substring(0, 400) + " ...";
            YTPlayer.videoData.thumb_max = data.thumbnails.maxres ? data.thumbnails.maxres.url : null;
            YTPlayer.videoData.thumb_high = data.thumbnails.high ? data.thumbnails.high.url : null;
            YTPlayer.videoData.thumb_medium = data.thumbnails.medium ? data.thumbnails.medium.url : null;
            jQuery.mbStorage.set("YTPlayer_data_" + YTPlayer.videoID, YTPlayer.videoData);
          }
          
          if (!data.items[0]) {
            YTPlayer.videoData = {};
            YTPlayer.hasData = false;
            
          } else {
            
            parseYTPlayer_data(data.items[0].snippet);
            YTPlayer.hasData = true;
          }
          
          var YTPData = jQuery.Event("YTPData");
          YTPData.prop = {};
          for (var x in YTPlayer.videoData) YTPData.prop[x] = YTPlayer.videoData[x];
          jQuery(YTPlayer).trigger(YTPData);
        });
        
      } else {
        
        setTimeout(function () {
          var YTPChanged = jQuery.Event("YTPChanged");
          YTPChanged.time = YTPlayer.currentTime;
          YTPChanged.videoId = YTPlayer.videoID;
          jQuery(YTPlayer).trigger(YTPChanged);
        }, 50);
        
        if (!YTPlayer.opt.autoPlay) {
          // if (YTPlayer.isPlayer && !YTPlayer.opt.autoPlay) {
          var bgndURL = YTPlayer.opt.coverImage != "false" ? YTPlayer.opt.coverImage : jQuery.mbYTPlayer.locationProtocol + "//i.ytimg.com/vi/" + YTPlayer.videoID + "/maxresdefault.jpg";
          
          if (bgndURL)
            YTPlayer.opt.containment.css({
              background    : "rgba(0,0,0,0.5) url(" + bgndURL + ") center center",
              backgroundSize: "cover"
            });
        }
        
        YTPlayer.videoData = null;
        
      }
      
      YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio;
      
      if (YTPlayer.isPlayer && !YTPlayer.opt.autoPlay) { //&& ( !jQuery.mbBrowser.mobile && !jQuery.isTablet )
        YTPlayer.loading = jQuery("<div/>").addClass("loading").html("Loading").hide();
        jQuery(YTPlayer).append(YTPlayer.loading);
        YTPlayer.loading.fadeIn();
      }
    },
    
    /**
     * removeStoredData
     */
    removeStoredData: function () {
      jQuery.mbStorage.remove();
    },
    
    /**
     * getVideoData
     * @returns {*|YTPlayer.videoData}
     */
    getVideoData: function () {
      var YTPlayer = this.get(0);
      return YTPlayer.videoData;
    },
    
    /**
     * getVideoID
     * @returns {*|YTPlayer.videoID|boolean}
     */
    getVideoID: function () {
      var YTPlayer = this.get(0);
      return YTPlayer.videoID || false;
    },
    
    /**
     * getPlaylistID
     * @returns {*|YTPlayer.videoID|boolean}
     */
    getPlaylistID  : function () {
      var YTPlayer = this.get(0);
      return YTPlayer.playlistID || false;
    },
    /**
     * setVideoQuality
     * @param quality
     * @returns {jQuery.mbYTPlayer}
     */
    setVideoQuality: function (quality) {
      var YTPlayer = this.get(0);
      YTPlayer.player.setPlaybackQuality(quality);
      return this;
    },
    
    /**
     * playlist
     * @param videos -> Array or String (videoList ID)
     * @param shuffle
     * @param callback
     * @returns {jQuery.mbYTPlayer}
     *
     * To retrieve a Youtube playlist the Youtube API key is required:
     * https://console.developers.google.com/
     * jQuery.mbYTPlayer.apiKey
     */
    playlist: function (videos, shuffle, callback) {
      
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      
      /**
       get the video list from the Youtube playlist passing the ID
       */
      if (typeof videos == "String" && jQuery.mbYTPlayer.apiKey != "") {
        
        /**
         * getVideoListFromYoutube
         * @param playListID
         * @param page
         */
        function getVideoListFromYoutube(playListID, page) {
          page = page || '';
          var youtubeAPI = "https://www.googleapis.com/youtube/v3/playlistItems";
          jQuery.getJSON(youtubeAPI, {
            part      : "snippet,contentDetails",
            playlistId: playListID, //You have to enter the PlaylistID
            maxResults: 50,
            pageToken : page,
            key       : jQuery.mbYTPlayer.apiKey //You have to enter your own YoutubeAPIKey
          }).done(function (response) {
            CreateVideosArray(response);
            if (response.nextPageToken) {
              page = response.nextPageToken;
              getVideoListFromYoutube(plID, page, videos);
            } else {
              $YTPlayer.YTPlaylist(YTPlayer.videos, shuffle, callback)
            }
            ;
          });
        };
        
        /**
         * CreateVideosArray
         * @param response
         * @constructor
         */
        function CreateVideosArray(response) {
          var k = response.items.length;
          for (var i = 0; i < k; i++) {
            YTPlayer.videos.push({
              "videoURL": response.items[i].contentDetails.videoId
            });
          }
          ;
        };
        
        getVideoListFromYoutube(videos);
        return this;
        
      }
      
      YTPlayer.isList = true;
      
      if (shuffle)
        videos = jQuery.shuffle(videos);
      
      if (!YTPlayer.videoID) {
        YTPlayer.videos = videos;
        YTPlayer.videoCounter = 1;
        YTPlayer.videoLength = videos.length;
        jQuery(YTPlayer).data("property", videos[0]);
        jQuery(YTPlayer).YTPlayer();
      }
      
      if (typeof callback == "function")
        jQuery(YTPlayer).one("YTPChanged", function () {
          callback(YTPlayer);
        });
      
      jQuery(YTPlayer).on("YTPEnd", function () {
        jQuery(YTPlayer).YTPPlayNext();
      });
      return this;
    },
    
    /**
     * playNext
     * @returns {jQuery.mbYTPlayer}
     */
    playNext: function () {
      var YTPlayer = this.get(0);
      YTPlayer.videoCounter++;
      if (YTPlayer.videoCounter > YTPlayer.videoLength)
        YTPlayer.videoCounter = 1;
      jQuery(YTPlayer).YTPPlayIndex(YTPlayer.videoCounter);
      return this;
    },
    
    /**
     * playPrev
     * @returns {jQuery.mbYTPlayer}
     */
    playPrev: function () {
      var YTPlayer = this.get(0);
      YTPlayer.videoCounter--;
      if (YTPlayer.videoCounter <= 0)
        YTPlayer.videoCounter = YTPlayer.videoLength;
      jQuery(YTPlayer).YTPPlayIndex(YTPlayer.videoCounter);
      return this;
    },
    
    /**
     * playIndex
     * @param idx
     * @returns {jQuery.mbYTPlayer}
     */
    playIndex: function (idx) {
      var YTPlayer = this.get(0);
      if (YTPlayer.checkForStartAt) {
        clearInterval(YTPlayer.checkForStartAt);
        clearInterval(YTPlayer.getState);
      }
      YTPlayer.videoCounter = idx;
      
      if (YTPlayer.videoCounter >= YTPlayer.videoLength)
        YTPlayer.videoCounter = YTPlayer.videoLength;
      
      var video = YTPlayer.videos[YTPlayer.videoCounter - 1];
      jQuery(YTPlayer).YTPChangeVideo(video);
      return this;
    },
    
    /**
     * changeVideo
     * @param opt
     * @returns {jQuery.mbYTPlayer}
     */
    changeVideo: function (opt) {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      
      YTPlayer.opt.startAt = 0;
      YTPlayer.opt.stopAt = 0;
      YTPlayer.opt.mask = false;
      YTPlayer.opt.mute = true;
      YTPlayer.opt.autoPlay = true;
      YTPlayer.opt.addFilters = false;
      YTPlayer.opt.coverImage = false;
      
      YTPlayer.hasData = false;
      YTPlayer.hasChanged = true;
      
      YTPlayer.player.loopTime = undefined;
      
      if (opt)
        jQuery.extend(YTPlayer.opt, opt);
      
      YTPlayer.videoID = getYTPVideoID(YTPlayer.opt.videoURL).videoID;
      
      if (YTPlayer.opt.loop && typeof YTPlayer.opt.loop == "boolean")
        YTPlayer.opt.loop = 9999;
      
      YTPlayer.wrapper.css({
        background: "none"
      });
      
      jQuery(YTPlayer.playerEl).CSSAnimate({
        opacity: 0
      }, YTPlayer.opt.fadeOnStartTime, function () {
        
        jQuery.mbYTPlayer.getDataFromAPI(YTPlayer);
        
        $YTPlayer.YTPGetPlayer().loadVideoById({
          videoId         : YTPlayer.videoID,
          // startSeconds: YTPlayer.opt.startAt,
          // endSeconds: YTPlayer.opt.stopAt,
          suggestedQuality: YTPlayer.opt.quality
        });
        $YTPlayer.YTPPause();
        $YTPlayer.optimizeDisplay();
        
        $YTPlayer.YTPCheckForState();
      });
      
      var YTPChangeVideo = jQuery.Event("YTPChangeVideo");
      YTPChangeVideo.time = YTPlayer.currentTime;
      jQuery(YTPlayer).trigger(YTPChangeVideo);
      
      jQuery.mbYTPlayer.applyMask(YTPlayer);
      
      return this;
    },
    
    /**
     * getPlayer
     * @returns {player}
     */
    getPlayer: function () {
      return jQuery(this).get(0).player;
    },
    
    /**
     * playerDestroy
     * @returns {jQuery.mbYTPlayer}
     */
    playerDestroy: function () {
      var YTPlayer = this.get(0);
      ytp.YTAPIReady = true;
      ytp.backgroundIsInited = false;
      YTPlayer.isInit = false;
      YTPlayer.videoID = null;
      YTPlayer.isReady = false;
      YTPlayer.wrapper.remove();
      jQuery("#controlBar_" + YTPlayer.id).remove();
      clearInterval(YTPlayer.checkForStartAt);
      clearInterval(YTPlayer.getState);
      return this;
    },
    
    /**
     * fullscreen
     * @param real
     * @returns {jQuery.mbYTPlayer}
     */
    fullscreen: function (real) {
      var YTPlayer = this.get(0);
      if (typeof real == "undefined")
        real = eval(YTPlayer.opt.realfullscreen);
      
      var controls = jQuery("#controlBar_" + YTPlayer.id);
      var fullScreenBtn = controls.find(".mb_OnlyYT");
      var videoWrapper = YTPlayer.isPlayer ? YTPlayer.opt.containment : YTPlayer.wrapper;
      
      if (real) {
        var fullscreenchange = jQuery.mbBrowser.mozilla ? "mozfullscreenchange" : jQuery.mbBrowser.webkit ? "webkitfullscreenchange" : "fullscreenchange";
        jQuery(document).off(fullscreenchange).on(fullscreenchange, function () {
          var isFullScreen = RunPrefixMethod(document, "IsFullScreen") || RunPrefixMethod(document, "FullScreen");
          if (!isFullScreen) {
            YTPlayer.isAlone = false;
            fullScreenBtn.html(jQuery.mbYTPlayer.controls.onlyYT);
            jQuery(YTPlayer).YTPSetVideoQuality(YTPlayer.opt.quality);
            videoWrapper.removeClass("YTPFullscreen");
            videoWrapper.CSSAnimate({
              opacity: YTPlayer.opt.opacity
            }, YTPlayer.opt.fadeOnStartTime);
            
            videoWrapper.css({
              zIndex: 0
            });
            
            if (YTPlayer.isBackground) {
              jQuery("body").after(controls);
            } else {
              YTPlayer.wrapper.before(controls);
            }
            jQuery(window).resize();
            jQuery(YTPlayer).trigger("YTPFullScreenEnd");
          } else {
            jQuery(YTPlayer).YTPSetVideoQuality("default");
            jQuery(YTPlayer).trigger("YTPFullScreenStart");
          }
        });
      }
      if (!YTPlayer.isAlone) {
        function hideMouse() {
          YTPlayer.overlay.css({
            cursor: "none"
          });
        }
        
        jQuery(document).on("mousemove.YTPlayer", function (e) {
          YTPlayer.overlay.css({
            cursor: "auto"
          });
          clearTimeout(YTPlayer.hideCursor);
          if (!jQuery(e.target).parents().is(".mb_YTPBar"))
            YTPlayer.hideCursor = setTimeout(hideMouse, 3000);
        });
        
        hideMouse();
        
        if (real) {
          videoWrapper.css({
            opacity: 0
          });
          videoWrapper.addClass("YTPFullscreen");
          launchFullscreen(videoWrapper.get(0));
          
          setTimeout(function () {
            videoWrapper.CSSAnimate({
              opacity: 1
            }, YTPlayer.opt.fadeOnStartTime * 2);
            
            videoWrapper.append(controls);
            jQuery(YTPlayer).optimizeDisplay();
            YTPlayer.player.seekTo(YTPlayer.player.getCurrentTime() + .1, true);
            
          }, YTPlayer.opt.fadeOnStartTime)
        } else
          videoWrapper.css({
            zIndex: 10000
          }).CSSAnimate({
            opacity: 1
          }, YTPlayer.opt.fadeOnStartTime * 2);
        fullScreenBtn.html(jQuery.mbYTPlayer.controls.showSite);
        YTPlayer.isAlone = true;
      } else {
        jQuery(document).off("mousemove.YTPlayer");
        clearTimeout(YTPlayer.hideCursor);
        YTPlayer.overlay.css({
          cursor: "auto"
        });
        if (real) {
          cancelFullscreen();
        } else {
          videoWrapper.CSSAnimate({
            opacity: YTPlayer.opt.opacity
          }, YTPlayer.opt.fadeOnStartTime);
          videoWrapper.css({
            zIndex: 0
          });
        }
        fullScreenBtn.html(jQuery.mbYTPlayer.controls.onlyYT);
        YTPlayer.isAlone = false;
      }
      
      function RunPrefixMethod(obj, method) {
        var pfx = ["webkit", "moz", "ms", "o", ""];
        var p = 0,
            m, t;
        while (p < pfx.length && !obj[m]) {
          m = method;
          if (pfx[p] == "") {
            m = m.substr(0, 1).toLowerCase() + m.substr(1);
          }
          m = pfx[p] + m;
          t = typeof obj[m];
          if (t != "undefined") {
            pfx = [pfx[p]];
            return (t == "function" ? obj[m]() : obj[m]);
          }
          p++;
        }
      }
      
      function launchFullscreen(element) {
        RunPrefixMethod(element, "RequestFullScreen");
      }
      
      function cancelFullscreen() {
        if (RunPrefixMethod(document, "FullScreen") || RunPrefixMethod(document, "IsFullScreen")) {
          RunPrefixMethod(document, "CancelFullScreen");
        }
      }
      
      return this;
    },
    
    /**
     * toggleLoops
     * @returns {jQuery.mbYTPlayer}
     */
    toggleLoops: function () {
      var YTPlayer = this.get(0);
      var data = YTPlayer.opt;
      if (data.loop == 1) {
        data.loop = 0;
      } else {
        if (data.startAt) {
          YTPlayer.player.seekTo(data.startAt);
        } else {
          YTPlayer.player.playVideo();
        }
        data.loop = 1;
      }
      return this;
    },
    
    /**
     * play
     * @returns {jQuery.mbYTPlayer}
     */
    play: function () {
      var YTPlayer = this.get(0);
      
      if (!YTPlayer.isReady)
        return this;
      
      YTPlayer.player.playVideo();
      
      jQuery(YTPlayer.playerEl).css({
        opacity: 1
      });
      
      YTPlayer.wrapper.css({
        backgroundImage: "none"
      });
      
      YTPlayer.wrapper.CSSAnimate({
        opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity
      }, YTPlayer.opt.fadeOnStartTime);
      
      var controls = jQuery("#controlBar_" + YTPlayer.id);
      var playBtn = controls.find(".mb_YTPPlayPause");
      playBtn.html(jQuery.mbYTPlayer.controls.pause);
      YTPlayer.state = 1;
      YTPlayer.orig_background = jQuery(YTPlayer).css("background-image");
      
      return this;
    },
    
    /**
     * togglePlay
     * @param callback
     * @returns {jQuery.mbYTPlayer}
     */
    togglePlay: function (callback) {
      var YTPlayer = this.get(0);
      if (YTPlayer.state == 1)
        this.YTPPause();
      else
        this.YTPPlay();
      
      if (typeof callback == "function")
        callback(YTPlayer.state);
      
      return this;
    },
    
    /**
     * stop
     * @returns {jQuery.mbYTPlayer}
     */
    stop: function () {
      var YTPlayer = this.get(0);
      var controls = jQuery("#controlBar_" + YTPlayer.id);
      var playBtn = controls.find(".mb_YTPPlayPause");
      playBtn.html(jQuery.mbYTPlayer.controls.play);
      YTPlayer.player.stopVideo();
      return this;
    },
    
    /**
     * pause
     * @returns {jQuery.mbYTPlayer}
     */
    pause: function () {
      var YTPlayer = this.get(0);
      YTPlayer.player.pauseVideo();
      YTPlayer.state = 2;
      return this;
    },
    
    /**
     * seekTo
     * @param sec
     * @returns {jQuery.mbYTPlayer}
     */
    seekTo: function (sec) {
      var YTPlayer = this.get(0);
      YTPlayer.player.seekTo(sec, true);
      return this;
    },
    
    /**
     * setVolume
     * @param val
     * @returns {jQuery.mbYTPlayer}
     */
    setVolume: function (val) {
      var YTPlayer = this.get(0);
      
      YTPlayer.opt.vol = val;
      YTPlayer.player.setVolume(YTPlayer.opt.vol);
      
      if (YTPlayer.volumeBar && YTPlayer.volumeBar.length)
        YTPlayer.volumeBar.updateSliderVal(val);
      
      return this;
    },
    /**
     * getVolume
     * @returns {*}
     */
    getVolume: function () {
      var YTPlayer = this.get(0);
      return YTPlayer.player.getVolume();
    },
    
    /**
     * toggleVolume
     * @returns {jQuery.mbYTPlayer}
     */
    toggleVolume: function () {
      
      var YTPlayer = this.get(0);
      
      if (!YTPlayer)
        return this;
      
      if (YTPlayer.isMute) {
        if (!jQuery.mbBrowser.mobile)
          this.YTPSetVolume(YTPlayer.opt.vol)
        this.YTPUnmute();
      } else {
        this.YTPMute();
      }
      return this;
    },
    
    /**
     * mute
     * @returns {jQuery.mbYTPlayer}
     */
    mute: function () {
      var YTPlayer = this.get(0);
      if (YTPlayer.isMute)
        return this;
      YTPlayer.player.mute();
      YTPlayer.isMute = true;
      YTPlayer.player.setVolume(0);
      if (YTPlayer.volumeBar && YTPlayer.volumeBar.length && YTPlayer.volumeBar.width() > 10) {
        YTPlayer.volumeBar.updateSliderVal(0);
      }
      var controls = jQuery("#controlBar_" + YTPlayer.id);
      var muteBtn = controls.find(".mb_YTPMuteUnmute");
      muteBtn.html(jQuery.mbYTPlayer.controls.unmute);
      jQuery(YTPlayer).addClass("isMuted");
      if (YTPlayer.volumeBar && YTPlayer.volumeBar.length) YTPlayer.volumeBar.addClass("muted");
      var YTPEvent = jQuery.Event("YTPMuted");
      YTPEvent.time = YTPlayer.currentTime;
      
      if (!YTPlayer.preventTrigger)
        jQuery(YTPlayer).trigger(YTPEvent);
      
      return this;
    },
    
    /**
     * unmute
     * @returns {jQuery.mbYTPlayer}
     */
    unmute: function () {
      var YTPlayer = this.get(0);
      if (!YTPlayer.isMute)
        return this;
      
      YTPlayer.player.unMute();
      YTPlayer.isMute = false;
      jQuery(YTPlayer).YTPSetVolume(YTPlayer.opt.vol);
      if (YTPlayer.volumeBar && YTPlayer.volumeBar.length) YTPlayer.volumeBar.updateSliderVal(YTPlayer.opt.vol > 10 ? YTPlayer.opt.vol : 10);
      var controls = jQuery("#controlBar_" + YTPlayer.id);
      var muteBtn = controls.find(".mb_YTPMuteUnmute");
      muteBtn.html(jQuery.mbYTPlayer.controls.mute);
      jQuery(YTPlayer).removeClass("isMuted");
      if (YTPlayer.volumeBar && YTPlayer.volumeBar.length) YTPlayer.volumeBar.removeClass("muted");
      var YTPEvent = jQuery.Event("YTPUnmuted");
      YTPEvent.time = YTPlayer.currentTime;
      
      if (!YTPlayer.preventTrigger)
        jQuery(YTPlayer).trigger(YTPEvent);
      
      return this;
    },
    
    /* FILTERS ---------------------------------------------------------------------------------------------------------*/
    
    /**
     * applyFilter
     * @param filter
     * @param value
     * @returns {jQuery.mbYTPlayer}
     */
    applyFilter: function (filter, value) {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      YTPlayer.filters[filter].value = value;
      if (YTPlayer.filtersEnabled)
        $YTPlayer.YTPEnableFilters();
    },
    
    /**
     * applyFilters
     * @param filters
     * @returns {jQuery.mbYTPlayer}
     */
    applyFilters: function (filters) {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      
      if (!YTPlayer.isReady) {
        jQuery(YTPlayer).on("YTPReady", function () {
          $YTPlayer.YTPApplyFilters(filters);
        });
        return this;
      }
      
      for (var key in filters) {
        $YTPlayer.YTPApplyFilter(key, filters[key]);
      }
      
      $YTPlayer.trigger("YTPFiltersApplied");
    },
    
    /**
     * toggleFilter
     * @param filter
     * @param value
     * @returns {jQuery.mbYTPlayer}
     */
    toggleFilter: function (filter, value) {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      
      if (!YTPlayer.filters[filter].value)
        YTPlayer.filters[filter].value = value;
      else
        YTPlayer.filters[filter].value = 0;
      
      if (YTPlayer.filtersEnabled)
        jQuery(YTPlayer).YTPEnableFilters();
      
      return this;
    },
    
    /**
     * toggleFilters
     * @param callback
     * @returns {jQuery.mbYTPlayer}
     */
    toggleFilters: function (callback) {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      if (YTPlayer.filtersEnabled) {
        jQuery(YTPlayer).trigger("YTPDisableFilters");
        jQuery(YTPlayer).YTPDisableFilters();
      } else {
        jQuery(YTPlayer).YTPEnableFilters();
        jQuery(YTPlayer).trigger("YTPEnableFilters");
      }
      if (typeof callback == "function")
        callback(YTPlayer.filtersEnabled);
      
      return this;
    },
    
    /**
     * disableFilters
     * @returns {jQuery.mbYTPlayer}
     */
    disableFilters: function () {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      var iframe = jQuery(YTPlayer.playerEl);
      iframe.css("-webkit-filter", "");
      iframe.css("filter", "");
      YTPlayer.filtersEnabled = false;
      
      return this;
    },
    
    /**
     * enableFilters
     * @returns {jQuery.mbYTPlayer}
     */
    enableFilters: function () {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      
      var iframe = jQuery(YTPlayer.playerEl);
      var filterStyle = "";
      for (var key in YTPlayer.filters) {
        if (YTPlayer.filters[key].value)
          filterStyle += key.replace("_", "-") + "(" + YTPlayer.filters[key].value + YTPlayer.filters[key].unit + ") ";
      }
      iframe.css("-webkit-filter", filterStyle);
      iframe.css("filter", filterStyle);
      YTPlayer.filtersEnabled = true;
      
      return this;
    },
    
    /**
     * removeFilter
     * @param filter
     * @param callback
     * @returns {jQuery.mbYTPlayer}
     */
    removeFilter: function (filter, callback) {
      var $YTPlayer = this;
      var YTPlayer = $YTPlayer.get(0);
      
      if (typeof filter == "function") {
        callback = filter;
        filter = null;
      }
      
      if (!filter) {
        for (var key in YTPlayer.filters) {
          $YTPlayer.YTPApplyFilter(key, 0);
        }
        
        if (typeof callback == "function")
          callback(key);
        
        YTPlayer.filters = jQuery.extend(true, {}, jQuery.mbYTPlayer.defaultFilters);
        
      } else {
        $YTPlayer.YTPApplyFilter(filter, 0);
        if (typeof callback == "function") callback(filter);
      }
      
      var YTPEvent = jQuery.Event("YTPFiltersApplied");
      $YTPlayer.trigger(YTPEvent);
      
      return this;
    },
    
    /**
     * getFilters
     * @returns {filters}
     */
    getFilters: function () {
      var YTPlayer = this.get(0);
      return YTPlayer.filters;
    },
    
    /* MASK ---------------------------------------------------------------------------------------------------------*/
    
    /**
     * addMask
     * @param mask
     * @returns {jQuery.mbYTPlayer}
     */
    addMask: function (mask) {
      var YTPlayer = this.get(0);
      
      if (!mask)
        mask = YTPlayer.actualMask;
      
      var tempImg = jQuery("<img/>").attr("src", mask).on("load", function () {
        YTPlayer.overlay.CSSAnimate({
          opacity: 0
        }, YTPlayer.opt.fadeOnStartTime, function () {
          YTPlayer.hasMask = true;
          tempImg.remove();
          YTPlayer.overlay.css({
            backgroundImage   : "url(" + mask + ")",
            backgroundRepeat  : "no-repeat",
            backgroundPosition: "center center",
            backgroundSize    : "cover"
          });
          YTPlayer.overlay.CSSAnimate({
            opacity: 1
          }, YTPlayer.opt.fadeOnStartTime);
        });
      });
      
      return this;
    },
    
    /**
     * removeMask
     * @returns {jQuery.mbYTPlayer}
     */
    removeMask: function () {
      var YTPlayer = this.get(0);
      YTPlayer.overlay.CSSAnimate({
        opacity: 0
      }, YTPlayer.opt.fadeOnStartTime, function () {
        YTPlayer.hasMask = false;
        YTPlayer.overlay.css({
          backgroundImage   : "",
          backgroundRepeat  : "",
          backgroundPosition: "",
          backgroundSize    : ""
        });
        YTPlayer.overlay.CSSAnimate({
          opacity: 1
        }, YTPlayer.opt.fadeOnStartTime);
      });
      
      return this;
    },
    
    /**
     * Apply mask
     * @param YTPlayer
     */
    applyMask: function (YTPlayer) {
      var $YTPlayer = jQuery(YTPlayer);
      $YTPlayer.off("YTPTime.mask");
      
      if (YTPlayer.opt.mask) {
        if (typeof YTPlayer.opt.mask == "string") {
          $YTPlayer.YTPAddMask(YTPlayer.opt.mask);
          YTPlayer.actualMask = YTPlayer.opt.mask;
        } else if (typeof YTPlayer.opt.mask == "object") {
          for (var time in YTPlayer.opt.mask) {
            if (YTPlayer.opt.mask[time])
              var img = jQuery("<img/>").attr("src", YTPlayer.opt.mask[time]);
          }
          if (YTPlayer.opt.mask[0])
            $YTPlayer.YTPAddMask(YTPlayer.opt.mask[0]);
          $YTPlayer.on("YTPTime.mask", function (e) {
            for (var time in YTPlayer.opt.mask) {
              if (e.time == time)
                if (!YTPlayer.opt.mask[time]) {
                  $YTPlayer.YTPRemoveMask();
                } else {
                  $YTPlayer.YTPAddMask(YTPlayer.opt.mask[time]);
                  YTPlayer.actualMask = YTPlayer.opt.mask[time];
                }
            }
          });
        }
      }
    },
    
    /**
     * toggleMask
     * @returns {jQuery.mbYTPlayer}
     */
    toggleMask: function () {
      var YTPlayer = this.get(0);
      var $YTPlayer = jQuery(YTPlayer);
      if (YTPlayer.hasMask)
        $YTPlayer.YTPRemoveMask();
      else
        $YTPlayer.YTPAddMask();
      return this;
    },
    
    /* CONTROLS --------------------------------------------------------------------------------------------------------*/
    
    /**
     * manageProgress
     * @returns {{totalTime: number, currentTime: number}}
     */
    manageProgress: function () {
      var YTPlayer = this.get(0);
      var controls = jQuery("#controlBar_" + YTPlayer.id);
      var progressBar = controls.find(".mb_YTPProgress");
      var loadedBar = controls.find(".mb_YTPLoaded");
      var timeBar = controls.find(".mb_YTPseekbar");
      var totW = progressBar.outerWidth();
      var currentTime = Math.floor(YTPlayer.player.getCurrentTime());
      var totalTime = Math.floor(YTPlayer.player.getDuration());
      var timeW = (currentTime * totW) / totalTime;
      var startLeft = 0;
      var loadedW = YTPlayer.player.getVideoLoadedFraction() * 100;
      loadedBar.css({
        left : startLeft,
        width: loadedW + "%"
      });
      timeBar.css({
        left : 0,
        width: timeW
      });
      return {
        totalTime  : totalTime,
        currentTime: currentTime
      };
    },
    
    /**
     * buildControls
     * @param YTPlayer
     */
    buildControls: function (YTPlayer) {
      
      jQuery("#controlBar_" + YTPlayer.id).remove();
      if (!YTPlayer.opt.showControls) {
        YTPlayer.controlBar = false;
        return;
      }
      
      // @YTPlayer.opt.printUrl: is deprecated; use YTPlayer.opt.showYTLogo
      YTPlayer.opt.showYTLogo = YTPlayer.opt.showYTLogo || YTPlayer.opt.printUrl;
      if (jQuery("#controlBar_" + YTPlayer.id).length)
        return;
      YTPlayer.controlBar = jQuery("<span/>").attr("id", "controlBar_" + YTPlayer.id).addClass("mb_YTPBar").css({
        whiteSpace: "noWrap",
        position  : YTPlayer.isBackground ? "fixed" : "absolute",
        zIndex    : YTPlayer.isBackground ? 10000 : 1000
      }).hide().on("click", function(e){e.stopPropagation();});
      var buttonBar = jQuery("<div/>").addClass("buttonBar");
      /**
       *  play/pause button
       * */
      var playpause = jQuery("<span>" + jQuery.mbYTPlayer.controls.play + "</span>").addClass("mb_YTPPlayPause ytpicon").on("click", function (e) {
        e.stopPropagation();
        jQuery(YTPlayer).YTPTogglePlay();
      });
      /**
       *  mute/unmute button
       * */
      var MuteUnmute = jQuery("<span>" + jQuery.mbYTPlayer.controls.mute + "</span>").addClass("mb_YTPMuteUnmute ytpicon").on("click", function (e) {
        e.stopPropagation();
        jQuery(YTPlayer).YTPToggleVolume();
      });
      /**
       *  volume bar
       * */
      var volumeBar = jQuery("<div/>").addClass("mb_YTPVolumeBar").css({
        display: "inline-block"
      });
      YTPlayer.volumeBar = volumeBar;
      
      /**
       * time elapsed
       * */
      var idx = jQuery("<span/>").addClass("mb_YTPTime");
      var vURL = YTPlayer.opt.videoURL ? YTPlayer.opt.videoURL : "";
      if (vURL.indexOf("http") < 0) vURL = jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/watch?v=" + YTPlayer.opt.videoURL;
      var movieUrl = jQuery("<span/>").html(jQuery.mbYTPlayer.controls.ytLogo).addClass("mb_YTPUrl ytpicon").attr("title", "view on YouTube").on("click", function () {
        window.open(vURL, "viewOnYT")
      });
      var onlyVideo = jQuery("<span/>").html(jQuery.mbYTPlayer.controls.onlyYT).addClass("mb_OnlyYT ytpicon").on("click", function (e) {
        e.stopPropagation();
        jQuery(YTPlayer).YTPFullscreen(YTPlayer.opt.realfullscreen);
      });
      var progressBar = jQuery("<div/>").addClass("mb_YTPProgress").css("position", "absolute").on("click", function (e) {
        e.stopPropagation();
        timeBar.css({
          width: (e.clientX - timeBar.offset().left)
        });
        YTPlayer.timeW = e.clientX - timeBar.offset().left;
        YTPlayer.controlBar.find(".mb_YTPLoaded").css({
          width: 0
        });
        var totalTime = Math.floor(YTPlayer.player.getDuration());
        YTPlayer.goto = (timeBar.outerWidth() * totalTime) / progressBar.outerWidth();
        YTPlayer.player.seekTo(parseFloat(YTPlayer.goto), true);
        YTPlayer.controlBar.find(".mb_YTPLoaded").css({
          width: 0
        });
      });
      var loadedBar = jQuery("<div/>").addClass("mb_YTPLoaded").css("position", "absolute");
      var timeBar = jQuery("<div/>").addClass("mb_YTPseekbar").css("position", "absolute");
      progressBar.append(loadedBar).append(timeBar);
      buttonBar.append(playpause).append(MuteUnmute).append(volumeBar).append(idx);
      
      if (YTPlayer.opt.showYTLogo) {
        buttonBar.append(movieUrl);
      }
      
      /**
       * Full screen button
       */
      if (YTPlayer.isBackground || (eval(YTPlayer.opt.realfullscreen) && !YTPlayer.isBackground))
        buttonBar.append(onlyVideo);
      
      YTPlayer.controlBar.append(buttonBar).append(progressBar);
      
      if (!YTPlayer.isBackground) {
        YTPlayer.controlBar.addClass("inlinePlayer");
        YTPlayer.wrapper.before(YTPlayer.controlBar);
      } else {
        jQuery("body").after(YTPlayer.controlBar);
      }
      
      /**
       * Volume slider
       */
      volumeBar.simpleSlider({
        initialval : YTPlayer.opt.vol,
        scale      : 100,
        orientation: "h",
        callback   : function (el) {
          if (el.value == 0) {
            jQuery(YTPlayer).YTPMute();
          } else {
            jQuery(YTPlayer).YTPUnmute();
          }
          YTPlayer.player.setVolume(el.value);
          if (!YTPlayer.isMute)
            YTPlayer.opt.vol = el.value;
        }
      });
    },
    
    /* MANAGE PLAYER STATE ------------------------------------------------------------------------------------------*/
    
    /**
     * checkForState
     */
    checkForState: function () {
      var YTPlayer = this.get(0);
      var $YTPlayer = jQuery(YTPlayer);
      
      clearInterval(YTPlayer.getState);
      var interval = 100;
      //Checking if player has been removed from the scene
      if (!jQuery.contains(document, YTPlayer)) {
        $YTPlayer.YTPPlayerDestroy();
        clearInterval(YTPlayer.getState);
        clearInterval(YTPlayer.checkForStartAt);
        return;
      }
      
      jQuery.mbYTPlayer.checkForStart(YTPlayer);
      
      YTPlayer.getState = setInterval(function () {
        var $YTPlayer = jQuery(YTPlayer);
        
        if (!YTPlayer.isReady)
          return;
        
        var prog = jQuery(YTPlayer).YTPManageProgress();
        
        var stopAt = YTPlayer.opt.stopAt > YTPlayer.opt.startAt ? YTPlayer.opt.stopAt : 0;
        stopAt = stopAt < YTPlayer.player.getDuration() ? stopAt : 0;
        if (YTPlayer.currentTime != prog.currentTime) {
          var YTPEvent = jQuery.Event("YTPTime");
          YTPEvent.time = YTPlayer.currentTime;
          jQuery(YTPlayer).trigger(YTPEvent);
        }
        
        YTPlayer.currentTime = prog.currentTime;
        YTPlayer.totalTime = YTPlayer.player.getDuration();
        if (YTPlayer.player.getVolume() == 0) $YTPlayer.addClass("isMuted");
        else $YTPlayer.removeClass("isMuted");
        
        if (YTPlayer.opt.showControls)
          if (prog.totalTime) {
            YTPlayer.controlBar.find(".mb_YTPTime").html(jQuery.mbYTPlayer.formatTime(prog.currentTime) + " / " + jQuery.mbYTPlayer.formatTime(prog.totalTime));
          } else {
            YTPlayer.controlBar.find(".mb_YTPTime").html("-- : -- / -- : --");
          }
        
        /**
         * Manage video pause on window blur
         */
        if (eval(YTPlayer.opt.stopMovieOnBlur)) {
          if (!document.hasFocus()) {
            if (YTPlayer.state == 1) {
              YTPlayer.hasFocus = false;
              YTPlayer.preventTrigger = true;
              $YTPlayer.YTPPause();
            }
          } else if (document.hasFocus() && !YTPlayer.hasFocus && !(YTPlayer.state == -1 || YTPlayer.state == 0)) {
            YTPlayer.hasFocus = true;
            YTPlayer.preventTrigger = true;
            YTPlayer.player.playVideo();
          }
        }
        
        /**
         * Manage video pause if not on screen
         */
        if (YTPlayer.opt.playOnlyIfVisible) {
          var isOnScreen = jQuery.mbYTPlayer.isOnScreen(YTPlayer, YTPlayer.opt.onScreenPercentage);
          if (!isOnScreen && YTPlayer.state == 1) {
            YTPlayer.isOnScreen = false;
            $YTPlayer.YTPPause();
          } else if (isOnScreen && !YTPlayer.isOnScreen) {
            YTPlayer.isOnScreen = true;
            YTPlayer.player.playVideo();
          }
        }
        
        if (YTPlayer.controlBar.length && YTPlayer.controlBar.outerWidth() <= 400 && !YTPlayer.isCompact) {
          YTPlayer.controlBar.addClass("compact");
          YTPlayer.isCompact = true;
          if (!YTPlayer.isMute && YTPlayer.volumeBar) YTPlayer.volumeBar.updateSliderVal(YTPlayer.opt.vol);
        } else if (YTPlayer.controlBar.length && YTPlayer.controlBar.outerWidth() > 400 && YTPlayer.isCompact) {
          YTPlayer.controlBar.removeClass("compact");
          YTPlayer.isCompact = false;
          
          if (!YTPlayer.isMute && YTPlayer.volumeBar)
            YTPlayer.volumeBar.updateSliderVal(YTPlayer.opt.vol);
        }
        // the video is ended
        if (YTPlayer.player.getPlayerState() > 0 && ((parseFloat(YTPlayer.player.getDuration() - .5) < YTPlayer.player.getCurrentTime()) || (stopAt > 0 && parseFloat(YTPlayer.player.getCurrentTime()) > stopAt))) {
          
          if (YTPlayer.isEnded)
            return;
          
          YTPlayer.isEnded = true;
          setTimeout(function () {
            YTPlayer.isEnded = false
          }, 1000);
          
          if (YTPlayer.isList) {
            if (!YTPlayer.opt.loop || (YTPlayer.opt.loop > 0 && YTPlayer.player.loopTime === YTPlayer.opt.loop - 1)) {
              YTPlayer.player.loopTime = undefined;
              clearInterval(YTPlayer.getState);
              var YTPEnd = jQuery.Event("YTPEnd");
              YTPEnd.time = YTPlayer.currentTime;
              jQuery(YTPlayer).trigger(YTPEnd);
              return;
            }
          } else if (!YTPlayer.opt.loop || (YTPlayer.opt.loop > 0 && YTPlayer.player.loopTime === YTPlayer.opt.loop - 1)) {
            YTPlayer.player.loopTime = undefined;

            YTPlayer.state = 2;

            var bgndURL = YTPlayer.opt.coverImage != "false" ? YTPlayer.opt.coverImage : (YTPlayer.videoData.thumb_max || YTPlayer.videoData.thumb_high || YTPlayer.videoData.thumb_medium);

            YTPlayer.opt.containment.css({
              background    : "rgba(0,0,0,0.5) url(" + bgndURL + ") center center",
              backgroundSize: "cover"
            });

            jQuery(YTPlayer).YTPPause();
            YTPlayer.wrapper.CSSAnimate({
              opacity: 0
            }, YTPlayer.opt.fadeOnStartTime, function () {
              if (YTPlayer.controlBar.length)
                YTPlayer.controlBar.find(".mb_YTPPlayPause").html(jQuery.mbYTPlayer.controls.play);
              var YTPEnd = jQuery.Event("YTPEnd");
              YTPEnd.time = YTPlayer.currentTime;
              jQuery(YTPlayer).trigger(YTPEnd);
              YTPlayer.player.seekTo(YTPlayer.opt.startAt, true);
              
              if (!YTPlayer.isBackground) {
                if (YTPlayer.opt.coverImage && YTPlayer.isPlayer) {
                  YTPlayer.opt.coverImage = YTPlayer.opt.coverImage || YTPlayer.orig_background;
                  YTPlayer.opt.containment.css({
                    background    : "url(" + YTPlayer.opt.coverImage + ") center center",
                    backgroundSize: "cover"
                  });
                }
              } else if (YTPlayer.orig_background) {
                jQuery(YTPlayer).css("background-image", YTPlayer.orig_background);
              }
            });
            return;
          }
          
          YTPlayer.player.loopTime = YTPlayer.player.loopTime ? ++YTPlayer.player.loopTime : 1;
          YTPlayer.opt.startAt = YTPlayer.opt.startAt || 1;
          YTPlayer.preventTrigger = true;
          YTPlayer.state = 2;
          YTPlayer.player.pauseVideo();
          YTPlayer.player.seekTo(YTPlayer.opt.startAt, true);
          YTPlayer.player.playVideo();
        }
      }, interval);
    },
    
    /**
     * checkForStart
     * @param YTPlayer
     */
    checkForStart: function (YTPlayer) {
      var $YTPlayer = jQuery(YTPlayer);
      
      /* If the player has been removed from scene destroy it */
      if (!jQuery.contains(document, YTPlayer)) {
        $YTPlayer.YTPPlayerDestroy();
        return;
      }
      
      /* CREATE CONTROL BAR */
      jQuery.mbYTPlayer.buildControls(YTPlayer);
      
      if (YTPlayer.overlay)
        if (YTPlayer.opt.addRaster) {
          var classN = YTPlayer.opt.addRaster == "dot" ? "raster-dot" : "raster";
          YTPlayer.overlay.addClass(YTPlayer.isRetina ? classN + " retina" : classN);
        } else {
          YTPlayer.overlay.removeClass(function (index, classNames) {
            // change the list into an array
            var current_classes = classNames.split(" "),
                // array of classes which are to be removed
                classes_to_remove = [];
            jQuery.each(current_classes, function (index, class_name) {
              // if the classname begins with bg add it to the classes_to_remove array
              if (/raster.*/.test(class_name)) {
                classes_to_remove.push(class_name);
              }
            });
            classes_to_remove.push("retina");
            // turn the array back into a string
            return classes_to_remove.join(" ");
          })
        }
      
      YTPlayer.preventTrigger = true;
      YTPlayer.state = 2;
      $YTPlayer.YTPPause();
      $YTPlayer.YTPMute();
      
      var startAt = YTPlayer.start_from_last ? YTPlayer.start_from_last : YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 1;
      
      YTPlayer.preventTrigger = true;
      YTPlayer.player.playVideo();
      $YTPlayer.YTPMute();
      
      //if (YTPlayer.start_from_last)
      YTPlayer.player.seekTo(startAt, true);
      
      YTPlayer.isStarting = true;
      YTPlayer.checkForStartAt = setInterval(function () {
        
        var canPlayVideo = YTPlayer.player.getVideoLoadedFraction() >= startAt / YTPlayer.player.getDuration();
        if (YTPlayer.player.getDuration() > 0 && YTPlayer.player.getCurrentTime() >= startAt && canPlayVideo) {
          YTPlayer.start_from_last = null;
          
          clearInterval(YTPlayer.checkForStartAt);
          
          if (typeof YTPlayer.opt.onReady == "function")
            YTPlayer.opt.onReady(YTPlayer);
          
          YTPlayer.isReady = true;
          
          $YTPlayer.YTPRemoveFilter();
          
          if (YTPlayer.opt.addFilters) {
            $YTPlayer.YTPApplyFilters(YTPlayer.opt.addFilters);
          } else {
            $YTPlayer.YTPApplyFilters({});
          }
          $YTPlayer.YTPEnableFilters();
          var YTPready = jQuery.Event("YTPReady");
          YTPready.time = YTPlayer.currentTime;
          jQuery(YTPlayer).trigger(YTPready);
          
          YTPlayer.state = 2;
          jQuery(YTPlayer).YTPPause();
          
          if (!YTPlayer.opt.mute)
            jQuery(YTPlayer).YTPUnmute();
          
          if (typeof _gaq != "undefined" && eval(YTPlayer.opt.gaTrack))
            _gaq.push(['_trackEvent', 'YTPlayer', 'Play', (YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString())]);
          else if (typeof ga != "undefined" && eval(YTPlayer.opt.gaTrack))
            ga('send', 'event', 'YTPlayer', 'play', (YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString()));
          
          if (YTPlayer.opt.autoPlay) {
            var YTPStart = jQuery.Event("YTPStart");
            YTPStart.time = YTPlayer.currentTime;
            jQuery(YTPlayer).trigger(YTPStart);
            
            YTPlayer.isStarting = false;
            
            /* Fix for Safari freeze */
            if (jQuery.mbBrowser.os.name == "mac" && jQuery.mbBrowser.safari ) {
              setTimeout(function () {
                $YTPlayer.YTPPlay();
              },10);
            } else
              $YTPlayer.YTPPlay();
          } else {
            YTPlayer.player.pauseVideo();
            setTimeout(function () {
              if (YTPlayer.start_from_last)
                YTPlayer.player.seekTo(startAt, true);
              
              if (!YTPlayer.isPlayer) {
                if (!YTPlayer.opt.coverImage) {
                  jQuery(YTPlayer.playerEl).CSSAnimate({
                    opacity: 1
                  }, YTPlayer.opt.fadeOnStartTime);
                  YTPlayer.wrapper.CSSAnimate({
                    opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity
                  }, YTPlayer.opt.fadeOnStartTime);
                } else {
                  YTPlayer.wrapper.css({opacity: 0});
                  setTimeout(function () {
                    YTPlayer.wrapper.css({
                      background      : "rgba(0,0,0,0.5) url(" + YTPlayer.opt.coverImage + ") center center",
                      backgroundSize  : "cover",
                      backgroundRepeat: "no-repeat"
                    })
                  }, YTPlayer.opt.fadeOnStartTime)
                }
              }
              YTPlayer.isStarting = false;
            }, 150);
            
            if (YTPlayer.controlBar.length)
              YTPlayer.controlBar.find(".mb_YTPPlayPause").html(jQuery.mbYTPlayer.controls.play);
          }
          
          if (YTPlayer.isPlayer && !YTPlayer.opt.autoPlay && (YTPlayer.loading && YTPlayer.loading.length)) {
            YTPlayer.loading.html("Ready");
            setTimeout(function () {
              YTPlayer.loading.fadeOut();
            }, 100)
          }
          
          if (YTPlayer.controlBar && YTPlayer.controlBar.length)
            YTPlayer.controlBar.slideDown(1000);
          
        } else if (jQuery.mbBrowser.os.name == "mac" && jQuery.mbBrowser.safari ) {
          YTPlayer.player.playVideo();
          if (startAt >= 0)
            YTPlayer.player.seekTo(startAt, true);
        }
      }, 500);
      
      return $YTPlayer;
    },
    
    /* TIME METHODS -------------------------------------------------------------------------------------------*/
    
    /**
     * getTime
     * @returns {string} time
     */
    getTime: function () {
      var YTPlayer = this.get(0);
      return jQuery.mbYTPlayer.formatTime(YTPlayer.currentTime);
    },
    
    /**
     * getTotalTime
     * @returns {string} total time
     */
    getTotalTime: function (format) {
      var YTPlayer = this.get(0);
      return jQuery.mbYTPlayer.formatTime(YTPlayer.totalTime);
    },
    
    /**
     * formatTime
     * @param s
     * @returns {string}
     */
    formatTime: function (s) {
      var min = Math.floor(s / 60);
      var sec = Math.floor(s - (60 * min));
      return (min <= 9 ? "0" + min : min) + " : " + (sec <= 9 ? "0" + sec : sec);
    },
    
    /* PLAYER POSITION AND SIZE OPTIMIZATION-------------------------------------------------------------------------------------------*/
    
    /**
     * setAnchor
     * @param anchor
     */
    setAnchor: function (anchor) {
      var $YTplayer = this;
      $YTplayer.optimizeDisplay(anchor);
    },
    
    /**
     * getAnchor
     * @param anchor
     */
    getAnchor: function () {
      var YTPlayer = this.get(0);
      return YTPlayer.opt.anchor;
    }
  };
  
  /**
   * optimizeDisplay
   * @param anchor
   * can be center, top, bottom, right, left; (default is center,center)
   */
  jQuery.fn.optimizeDisplay = function (anchor) {
    var YTPlayer = this.get(0);
    var vid = {};
    
    YTPlayer.opt.anchor = anchor || YTPlayer.opt.anchor;
    YTPlayer.opt.anchor = typeof YTPlayer.opt.anchor != "undefined " ? YTPlayer.opt.anchor : "center,center";
    var YTPAlign = YTPlayer.opt.anchor.split(",");
    var el = YTPlayer.wrapper;
    var iframe = jQuery(YTPlayer.playerEl);
    
    if (YTPlayer.opt.optimizeDisplay) {
      var abundance = iframe.height() * YTPlayer.opt.abundance;
      var win = {};
      win.width = el.outerWidth();
      win.height = el.outerHeight() + abundance;
      
      // TODO why do we need to check for ratio == auto in every method, shouldn't this be handled in buildPlayer()?
      // The buildPlayer is called once while the ratio could be set each time the changeVideo is called
      
      YTPlayer.opt.ratio = YTPlayer.opt.ratio === "auto" ? 16 / 9 : YTPlayer.opt.ratio;
      YTPlayer.opt.ratio = eval(YTPlayer.opt.ratio);
      
      vid.width = win.width;
      vid.height = Math.ceil(vid.width / YTPlayer.opt.ratio);
      vid.marginTop = Math.ceil(-((vid.height - win.height) / 2));
      vid.marginLeft = 0;
      var lowest = vid.height < win.height;
      
      if (lowest) {
        vid.height = win.height;
        vid.width = Math.ceil(vid.height * YTPlayer.opt.ratio);
        vid.marginTop = 0;
        vid.marginLeft = Math.ceil(-((vid.width - win.width) / 2));
      }
      
      for (var a in YTPAlign) {
        if (YTPAlign.hasOwnProperty(a)) {
          var al = YTPAlign[a].replace(/ /g, "");
          switch (al) {
            case "top":
              vid.marginTop = lowest ? -((vid.height - win.height) / 2) : 0;
              break;
            case "bottom":
              vid.marginTop = lowest ? 0 : -(vid.height - (win.height));
              break;
            case "left":
              vid.marginLeft = 0;
              break;
            case "right":
              vid.marginLeft = lowest ? -(vid.width - win.width) : 0;
              break;
            default:
              if (vid.width > win.width)
                vid.marginLeft = -((vid.width - win.width) / 2);
              break;
          }
        }
      }
      
    } else {
      vid.width = "100%";
      vid.height = "100%";
      vid.marginTop = 0;
      vid.marginLeft = 0;
    }
    
    iframe.css({
      width     : vid.width,
      height    : vid.height,
      marginTop : vid.marginTop,
      marginLeft: vid.marginLeft,
      maxWidth  : "initial"
    });
  };
  
  /* UTILITIES -----------------------------------------------------------------------------------------------------------------------*/
  
  /**
   * shuffle
   * @param arr
   * @returns {Array|string|Blob|*}
   *
   */
  jQuery.shuffle = function (arr) {
    var newArray = arr.slice();
    var len = newArray.length;
    var i = len;
    while (i--) {
      var p = parseInt(Math.random() * len);
      var t = newArray[i];
      newArray[i] = newArray[p];
      newArray[p] = t;
    }
    return newArray;
  };
  
  /**
   * Unselectable
   * @returns {*}
   */
  jQuery.fn.unselectable = function () {
    return this.each(function () {
      jQuery(this).css({
        "-moz-user-select"   : "none",
        "-webkit-user-select": "none",
        "user-select"        : "none"
      }).attr("unselectable", "on");
    });
  };
  
  /* EXTERNAL METHODS -----------------------------------------------------------------------------------------------------------------------*/
  
  jQuery.fn.YTPlayer = jQuery.mbYTPlayer.buildPlayer;
  jQuery.fn.mb_YTPlayer = jQuery.mbYTPlayer.buildPlayer;
  
  jQuery.fn.YTPCheckForState = jQuery.mbYTPlayer.checkForState;
  
  jQuery.fn.YTPGetPlayer = jQuery.mbYTPlayer.getPlayer;
  jQuery.fn.YTPGetVideoID = jQuery.mbYTPlayer.getVideoID;
  jQuery.fn.YTPGetPlaylistID = jQuery.mbYTPlayer.getPlaylistID;
  jQuery.fn.YTPChangeVideo = jQuery.fn.YTPChangeMovie = jQuery.mbYTPlayer.changeVideo;
  jQuery.fn.YTPPlayerDestroy = jQuery.mbYTPlayer.playerDestroy;
  
  jQuery.fn.YTPPlay = jQuery.mbYTPlayer.play;
  jQuery.fn.YTPTogglePlay = jQuery.mbYTPlayer.togglePlay;
  jQuery.fn.YTPStop = jQuery.mbYTPlayer.stop;
  jQuery.fn.YTPPause = jQuery.mbYTPlayer.pause;
  jQuery.fn.YTPSeekTo = jQuery.mbYTPlayer.seekTo;
  
  jQuery.fn.YTPlaylist = jQuery.mbYTPlayer.playlist;
  jQuery.fn.YTPPlayNext = jQuery.mbYTPlayer.playNext;
  jQuery.fn.YTPPlayPrev = jQuery.mbYTPlayer.playPrev;
  jQuery.fn.YTPPlayIndex = jQuery.mbYTPlayer.playIndex;
  
  jQuery.fn.YTPMute = jQuery.mbYTPlayer.mute;
  jQuery.fn.YTPUnmute = jQuery.mbYTPlayer.unmute;
  jQuery.fn.YTPToggleVolume = jQuery.mbYTPlayer.toggleVolume;
  jQuery.fn.YTPSetVolume = jQuery.mbYTPlayer.setVolume;
  jQuery.fn.YTPGetVolume = jQuery.mbYTPlayer.getVolume;
  
  jQuery.fn.YTPGetVideoData = jQuery.mbYTPlayer.getVideoData;
  jQuery.fn.YTPFullscreen = jQuery.mbYTPlayer.fullscreen;
  jQuery.fn.YTPToggleLoops = jQuery.mbYTPlayer.toggleLoops;
  jQuery.fn.YTPSetVideoQuality = jQuery.mbYTPlayer.setVideoQuality;
  jQuery.fn.YTPManageProgress = jQuery.mbYTPlayer.manageProgress;
  
  jQuery.fn.YTPApplyFilter = jQuery.mbYTPlayer.applyFilter;
  jQuery.fn.YTPApplyFilters = jQuery.mbYTPlayer.applyFilters;
  jQuery.fn.YTPToggleFilter = jQuery.mbYTPlayer.toggleFilter;
  jQuery.fn.YTPToggleFilters = jQuery.mbYTPlayer.toggleFilters;
  jQuery.fn.YTPRemoveFilter = jQuery.mbYTPlayer.removeFilter;
  jQuery.fn.YTPDisableFilters = jQuery.mbYTPlayer.disableFilters;
  jQuery.fn.YTPEnableFilters = jQuery.mbYTPlayer.enableFilters;
  jQuery.fn.YTPGetFilters = jQuery.mbYTPlayer.getFilters;
  
  jQuery.fn.YTPGetTime = jQuery.mbYTPlayer.getTime;
  jQuery.fn.YTPGetTotalTime = jQuery.mbYTPlayer.getTotalTime;
  
  jQuery.fn.YTPAddMask = jQuery.mbYTPlayer.addMask;
  jQuery.fn.YTPRemoveMask = jQuery.mbYTPlayer.removeMask;
  jQuery.fn.YTPToggleMask = jQuery.mbYTPlayer.toggleMask;
  
  jQuery.fn.YTPSetAnchor = jQuery.mbYTPlayer.setAnchor;
  jQuery.fn.YTPGetAnchor = jQuery.mbYTPlayer.getAnchor;
  
})(jQuery, ytp);
;
/*
 * ******************************************************************************
 *  jquery.mb.components
 *  file: jquery.mb.CSSAnimate.min.js
 *
 *  Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi);
 *  Open lab srl, Firenze - Italy
 *  email: matteo@open-lab.com
 *  site: 	http://pupunzi.com
 *  blog:	http://pupunzi.open-lab.com
 * 	http://open-lab.com
 *
 *  Licences: MIT, GPL
 *  http://www.opensource.org/licenses/mit-license.php
 *  http://www.gnu.org/licenses/gpl.html
 *
 *  last modified: 26/03/14 21.40
 *  *****************************************************************************
 */

jQuery.support.CSStransition=function(){var d=(document.body||document.documentElement).style;return void 0!==d.transition||void 0!==d.WebkitTransition||void 0!==d.MozTransition||void 0!==d.MsTransition||void 0!==d.OTransition}();function uncamel(d){return d.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function setUnit(d,a){return"string"!==typeof d||d.match(/^[\-0-9\.]+jQuery/)?""+d+a:d}
function setFilter(d,a,b){var c=uncamel(a),g=jQuery.browser.mozilla?"":jQuery.CSS.sfx;d[g+"filter"]=d[g+"filter"]||"";b=setUnit(b>jQuery.CSS.filters[a].max?jQuery.CSS.filters[a].max:b,jQuery.CSS.filters[a].unit);d[g+"filter"]+=c+"("+b+") ";delete d[a]}
jQuery.CSS={name:"mb.CSSAnimate",author:"Matteo Bicocchi",version:"2.0.0",transitionEnd:"transitionEnd",sfx:"",filters:{blur:{min:0,max:100,unit:"px"},brightness:{min:0,max:400,unit:"%"},contrast:{min:0,max:400,unit:"%"},grayscale:{min:0,max:100,unit:"%"},hueRotate:{min:0,max:360,unit:"deg"},invert:{min:0,max:100,unit:"%"},saturate:{min:0,max:400,unit:"%"},sepia:{min:0,max:100,unit:"%"}},normalizeCss:function(d){var a=jQuery.extend(!0,{},d);jQuery.browser.webkit||jQuery.browser.opera?jQuery.CSS.sfx=
		"-webkit-":jQuery.browser.mozilla?jQuery.CSS.sfx="-moz-":jQuery.browser.msie&&(jQuery.CSS.sfx="-ms-");jQuery.CSS.sfx="";for(var b in a){"transform"===b&&(a[jQuery.CSS.sfx+"transform"]=a[b],delete a[b]);"transform-origin"===b&&(a[jQuery.CSS.sfx+"transform-origin"]=d[b],delete a[b]);"filter"!==b||jQuery.browser.mozilla||(a[jQuery.CSS.sfx+"filter"]=d[b],delete a[b]);"blur"===b&&setFilter(a,"blur",d[b]);"brightness"===b&&setFilter(a,"brightness",d[b]);"contrast"===b&&setFilter(a,"contrast",d[b]);"grayscale"===
b&&setFilter(a,"grayscale",d[b]);"hueRotate"===b&&setFilter(a,"hueRotate",d[b]);"invert"===b&&setFilter(a,"invert",d[b]);"saturate"===b&&setFilter(a,"saturate",d[b]);"sepia"===b&&setFilter(a,"sepia",d[b]);if("x"===b){var c=jQuery.CSS.sfx+"transform";a[c]=a[c]||"";a[c]+=" translateX("+setUnit(d[b],"px")+")";delete a[b]}"y"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" translateY("+setUnit(d[b],"px")+")",delete a[b]);"z"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" translateZ("+
		setUnit(d[b],"px")+")",delete a[b]);"rotate"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotate("+setUnit(d[b],"deg")+")",delete a[b]);"rotateX"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotateX("+setUnit(d[b],"deg")+")",delete a[b]);"rotateY"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotateY("+setUnit(d[b],"deg")+")",delete a[b]);"rotateZ"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotateZ("+setUnit(d[b],"deg")+")",delete a[b]);"scale"===b&&
(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scale("+setUnit(d[b],"")+")",delete a[b]);"scaleX"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scaleX("+setUnit(d[b],"")+")",delete a[b]);"scaleY"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scaleY("+setUnit(d[b],"")+")",delete a[b]);"scaleZ"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scaleZ("+setUnit(d[b],"")+")",delete a[b]);"skew"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" skew("+setUnit(d[b],
		"deg")+")",delete a[b]);"skewX"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" skewX("+setUnit(d[b],"deg")+")",delete a[b]);"skewY"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" skewY("+setUnit(d[b],"deg")+")",delete a[b]);"perspective"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" perspective("+setUnit(d[b],"px")+")",delete a[b])}return a},getProp:function(d){var a=[],b;for(b in d)0>a.indexOf(b)&&a.push(uncamel(b));return a.join(",")},animate:function(d,a,b,c,g){return this.each(function(){function n(){e.called=
		!0;e.CSSAIsRunning=!1;h.off(jQuery.CSS.transitionEnd+"."+e.id);clearTimeout(e.timeout);h.css(jQuery.CSS.sfx+"transition","");"function"==typeof g&&g.apply(e);"function"==typeof e.CSSqueue&&(e.CSSqueue(),e.CSSqueue=null)}var e=this,h=jQuery(this);e.id=e.id||"CSSA_"+(new Date).getTime();var k=k||{type:"noEvent"};if(e.CSSAIsRunning&&e.eventType==k.type&&!jQuery.browser.msie&&9>=jQuery.browser.version)e.CSSqueue=function(){h.CSSAnimate(d,a,b,c,g)};else if(e.CSSqueue=null,e.eventType=k.type,0!==h.length&&
		d){d=jQuery.normalizeCss(d);e.CSSAIsRunning=!0;"function"==typeof a&&(g=a,a=jQuery.fx.speeds._default);"function"==typeof b&&(c=b,b=0);"string"==typeof b&&(g=b,b=0);"function"==typeof c&&(g=c,c="cubic-bezier(0.65,0.03,0.36,0.72)");if("string"==typeof a)for(var l in jQuery.fx.speeds)if(a==l){a=jQuery.fx.speeds[l];break}else a=jQuery.fx.speeds._default;a||(a=jQuery.fx.speeds._default);"string"===typeof g&&(c=g,g=null);if(jQuery.support.CSStransition){var f={"default":"ease","in":"ease-in",out:"ease-out",
	"in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)",easeOutCubic:"cubic-bezier(.215,.61,.355,1)",easeInOutCubic:"cubic-bezier(.645,.045,.355,1)",easeInCirc:"cubic-bezier(.6,.04,.98,.335)",easeOutCirc:"cubic-bezier(.075,.82,.165,1)",easeInOutCirc:"cubic-bezier(.785,.135,.15,.86)",easeInExpo:"cubic-bezier(.95,.05,.795,.035)",easeOutExpo:"cubic-bezier(.19,1,.22,1)",easeInOutExpo:"cubic-bezier(1,0,0,1)",easeInQuad:"cubic-bezier(.55,.085,.68,.53)",easeOutQuad:"cubic-bezier(.25,.46,.45,.94)",easeInOutQuad:"cubic-bezier(.455,.03,.515,.955)",
	easeInQuart:"cubic-bezier(.895,.03,.685,.22)",easeOutQuart:"cubic-bezier(.165,.84,.44,1)",easeInOutQuart:"cubic-bezier(.77,0,.175,1)",easeInQuint:"cubic-bezier(.755,.05,.855,.06)",easeOutQuint:"cubic-bezier(.23,1,.32,1)",easeInOutQuint:"cubic-bezier(.86,0,.07,1)",easeInSine:"cubic-bezier(.47,0,.745,.715)",easeOutSine:"cubic-bezier(.39,.575,.565,1)",easeInOutSine:"cubic-bezier(.445,.05,.55,.95)",easeInBack:"cubic-bezier(.6,-.28,.735,.045)",easeOutBack:"cubic-bezier(.175, .885,.32,1.275)",easeInOutBack:"cubic-bezier(.68,-.55,.265,1.55)"};
	f[c]&&(c=f[c]);h.off(jQuery.CSS.transitionEnd+"."+e.id);f=jQuery.CSS.getProp(d);var m={};jQuery.extend(m,d);m[jQuery.CSS.sfx+"transition-property"]=f;m[jQuery.CSS.sfx+"transition-duration"]=a+"ms";m[jQuery.CSS.sfx+"transition-delay"]=b+"ms";m[jQuery.CSS.sfx+"transition-timing-function"]=c;setTimeout(function(){h.one(jQuery.CSS.transitionEnd+"."+e.id,n);h.css(m)},1);e.timeout=setTimeout(function(){e.called||!g?(e.called=!1,e.CSSAIsRunning=!1):(h.css(jQuery.CSS.sfx+"transition",""),g.apply(e),e.CSSAIsRunning=
			!1,"function"==typeof e.CSSqueue&&(e.CSSqueue(),e.CSSqueue=null))},a+b+10)}else{for(f in d)"transform"===f&&delete d[f],"filter"===f&&delete d[f],"transform-origin"===f&&delete d[f],"auto"===d[f]&&delete d[f],"x"===f&&(k=d[f],l="left",d[l]=k,delete d[f]),"y"===f&&(k=d[f],l="top",d[l]=k,delete d[f]),"-ms-transform"!==f&&"-ms-filter"!==f||delete d[f];h.delay(b).animate(d,a,g)}}})}};jQuery.fn.CSSAnimate=jQuery.CSS.animate;jQuery.normalizeCss=jQuery.CSS.normalizeCss;
jQuery.fn.css3=function(d){return this.each(function(){var a=jQuery(this),b=jQuery.normalizeCss(d);a.css(b)})};
;/*___________________________________________________________________________________________________________________________________________________
 _ jquery.mb.components                                                                                                                             _
 _                                                                                                                                                  _
 _ file: jquery.mb.browser.min.js                                                                                                                   _
 _ last modified: 24/05/17 19.56                                                                                                                    _
 _                                                                                                                                                  _
 _ Open Lab s.r.l., Florence - Italy                                                                                                                _
 _                                                                                                                                                  _
 _ email: matteo@open-lab.com                                                                                                                       _
 _ site: http://pupunzi.com                                                                                                                         _
 _       http://open-lab.com                                                                                                                        _
 _ blog: http://pupunzi.open-lab.com                                                                                                                _
 _ Q&A:  http://jquery.pupunzi.com                                                                                                                  _
 _                                                                                                                                                  _
 _ Licences: MIT, GPL                                                                                                                               _
 _    http://www.opensource.org/licenses/mit-license.php                                                                                            _
 _    http://www.gnu.org/licenses/gpl.html                                                                                                          _
 _                                                                                                                                                  _
 _ Copyright (c) 2001-2017. Matteo Bicocchi (Pupunzi);                                                                                              _
 ___________________________________________________________________________________________________________________________________________________*/

var nAgt=navigator.userAgent;jQuery.browser=jQuery.browser||{};jQuery.browser.mozilla=!1;jQuery.browser.webkit=!1;jQuery.browser.opera=!1;jQuery.browser.safari=!1;jQuery.browser.chrome=!1;jQuery.browser.androidStock=!1;jQuery.browser.msie=!1;jQuery.browser.edge=!1;jQuery.browser.ua=nAgt;function isTouchSupported(){var a=nAgt.msMaxTouchPoints,e="ontouchstart"in document.createElement("div");return a||e?!0:!1}
var getOS=function(){var a={version:"Unknown version",name:"Unknown OS"};-1!=navigator.appVersion.indexOf("Win")&&(a.name="Windows");-1!=navigator.appVersion.indexOf("Mac")&&0>navigator.appVersion.indexOf("Mobile")&&(a.name="Mac");-1!=navigator.appVersion.indexOf("Linux")&&(a.name="Linux");/Mac OS X/.test(nAgt)&&!/Mobile/.test(nAgt)&&(a.version=/Mac OS X (10[\.\_\d]+)/.exec(nAgt)[1],a.version=a.version.replace(/_/g,".").substring(0,5));/Windows/.test(nAgt)&&(a.version="Unknown.Unknown");/Windows NT 5.1/.test(nAgt)&&
(a.version="5.1");/Windows NT 6.0/.test(nAgt)&&(a.version="6.0");/Windows NT 6.1/.test(nAgt)&&(a.version="6.1");/Windows NT 6.2/.test(nAgt)&&(a.version="6.2");/Windows NT 10.0/.test(nAgt)&&(a.version="10.0");/Linux/.test(nAgt)&&/Linux/.test(nAgt)&&(a.version="Unknown.Unknown");a.name=a.name.toLowerCase();a.major_version="Unknown";a.minor_version="Unknown";"Unknown.Unknown"!=a.version&&(a.major_version=parseFloat(a.version.split(".")[0]),a.minor_version=parseFloat(a.version.split(".")[1]));return a};
jQuery.browser.os=getOS();jQuery.browser.hasTouch=isTouchSupported();jQuery.browser.name=navigator.appName;jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion);jQuery.browser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix;
if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer",
		jQuery.browser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.browser.msie=!0;jQuery.browser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.browser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Edge"))?(jQuery.browser.edge=!0,jQuery.browser.name="Microsoft Edge",jQuery.browser.fullVersion=nAgt.substring(verOffset+5)):-1!=(verOffset=nAgt.indexOf("Chrome"))?(jQuery.browser.webkit=!0,jQuery.browser.chrome=
		!0,jQuery.browser.name="Chrome",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1<nAgt.indexOf("mozilla/5.0")&&-1<nAgt.indexOf("android ")&&-1<nAgt.indexOf("applewebkit")&&!(-1<nAgt.indexOf("chrome"))?(verOffset=nAgt.indexOf("Chrome"),jQuery.browser.webkit=!0,jQuery.browser.androidStock=!0,jQuery.browser.name="androidStock",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1!=(verOffset=nAgt.indexOf("Safari"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name=
		"Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("AppleWebkit"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("Firefox"))?(jQuery.browser.mozilla=
		!0,jQuery.browser.name="Firefox",jQuery.browser.fullVersion=nAgt.substring(verOffset+8)):(nameOffset=nAgt.lastIndexOf(" ")+1)<(verOffset=nAgt.lastIndexOf("/"))&&(jQuery.browser.name=nAgt.substring(nameOffset,verOffset),jQuery.browser.fullVersion=nAgt.substring(verOffset+1),jQuery.browser.name.toLowerCase()==jQuery.browser.name.toUpperCase()&&(jQuery.browser.name=navigator.appName));
-1!=(ix=jQuery.browser.fullVersion.indexOf(";"))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix));-1!=(ix=jQuery.browser.fullVersion.indexOf(" "))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix));jQuery.browser.majorVersion=parseInt(""+jQuery.browser.fullVersion,10);isNaN(jQuery.browser.majorVersion)&&(jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10));
jQuery.browser.version=jQuery.browser.majorVersion;jQuery.browser.android=/Android/i.test(nAgt);jQuery.browser.blackberry=/BlackBerry|BB|PlayBook/i.test(nAgt);jQuery.browser.ios=/iPhone|iPad|iPod|webOS/i.test(nAgt);jQuery.browser.operaMobile=/Opera Mini/i.test(nAgt);jQuery.browser.windowsMobile=/IEMobile|Windows Phone/i.test(nAgt);jQuery.browser.kindle=/Kindle|Silk/i.test(nAgt);
jQuery.browser.mobile=jQuery.browser.android||jQuery.browser.blackberry||jQuery.browser.ios||jQuery.browser.windowsMobile||jQuery.browser.operaMobile||jQuery.browser.kindle;jQuery.isMobile=jQuery.browser.mobile;jQuery.isTablet=jQuery.browser.mobile&&765<jQuery(window).width();jQuery.isAndroidDefault=jQuery.browser.android&&!/chrome/i.test(nAgt);jQuery.mbBrowser=jQuery.browser;
jQuery.browser.versionCompare=function(a,e){if("stringstring"!=typeof a+typeof e)return!1;for(var c=a.split("."),d=e.split("."),b=0,f=Math.max(c.length,d.length);b<f;b++){if(c[b]&&!d[b]&&0<parseInt(c[b])||parseInt(c[b])>parseInt(d[b]))return 1;if(d[b]&&!c[b]&&0<parseInt(d[b])||parseInt(c[b])<parseInt(d[b]))return-1}return 0};
;/*___________________________________________________________________________________________________________________________________________________
 _ jquery.mb.components                                                                                                                             _
 _                                                                                                                                                  _
 _ file: jquery.mb.simpleSlider.min.js                                                                                                              _
 _ last modified: 09/05/17 19.31                                                                                                                    _
 _                                                                                                                                                  _
 _ Open Lab s.r.l., Florence - Italy                                                                                                                _
 _                                                                                                                                                  _
 _ email: matteo@open-lab.com                                                                                                                       _
 _ site: http://pupunzi.com                                                                                                                         _
 _       http://open-lab.com                                                                                                                        _
 _ blog: http://pupunzi.open-lab.com                                                                                                                _
 _ Q&A:  http://jquery.pupunzi.com                                                                                                                  _
 _                                                                                                                                                  _
 _ Licences: MIT, GPL                                                                                                                               _
 _    http://www.opensource.org/licenses/mit-license.php                                                                                            _
 _    http://www.gnu.org/licenses/gpl.html                                                                                                          _
 _                                                                                                                                                  _
 _ Copyright (c) 2001-2017. Matteo Bicocchi (Pupunzi);                                                                                              _
 ___________________________________________________________________________________________________________________________________________________*/


var nAgt=navigator.userAgent;jQuery.browser=jQuery.browser||{};jQuery.browser.mozilla=!1;jQuery.browser.webkit=!1;jQuery.browser.opera=!1;jQuery.browser.safari=!1;jQuery.browser.chrome=!1;jQuery.browser.androidStock=!1;jQuery.browser.msie=!1;jQuery.browser.edge=!1;jQuery.browser.ua=nAgt;function isTouchSupported(){var a=nAgt.msMaxTouchPoints,e="ontouchstart"in document.createElement("div");return a||e?!0:!1}
var getOS=function(){var a={version:"Unknown version",name:"Unknown OS"};-1!=navigator.appVersion.indexOf("Win")&&(a.name="Windows");-1!=navigator.appVersion.indexOf("Mac")&&0>navigator.appVersion.indexOf("Mobile")&&(a.name="Mac");-1!=navigator.appVersion.indexOf("Linux")&&(a.name="Linux");/Mac OS X/.test(nAgt)&&!/Mobile/.test(nAgt)&&(a.version=/Mac OS X (10[\.\_\d]+)/.exec(nAgt)[1],a.version=a.version.replace(/_/g,".").substring(0,5));/Windows/.test(nAgt)&&(a.version="Unknown.Unknown");/Windows NT 5.1/.test(nAgt)&&
(a.version="5.1");/Windows NT 6.0/.test(nAgt)&&(a.version="6.0");/Windows NT 6.1/.test(nAgt)&&(a.version="6.1");/Windows NT 6.2/.test(nAgt)&&(a.version="6.2");/Windows NT 10.0/.test(nAgt)&&(a.version="10.0");/Linux/.test(nAgt)&&/Linux/.test(nAgt)&&(a.version="Unknown.Unknown");a.name=a.name.toLowerCase();a.major_version="Unknown";a.minor_version="Unknown";"Unknown.Unknown"!=a.version&&(a.major_version=parseFloat(a.version.split(".")[0]),a.minor_version=parseFloat(a.version.split(".")[1]));return a};
jQuery.browser.os=getOS();jQuery.browser.hasTouch=isTouchSupported();jQuery.browser.name=navigator.appName;jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion);jQuery.browser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix;
if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer",
		jQuery.browser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.browser.msie=!0;jQuery.browser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.browser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Edge"))?(jQuery.browser.edge=!0,jQuery.browser.name="Microsoft Edge",jQuery.browser.fullVersion=nAgt.substring(verOffset+5)):-1!=(verOffset=nAgt.indexOf("Chrome"))?(jQuery.browser.webkit=!0,jQuery.browser.chrome=
		!0,jQuery.browser.name="Chrome",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1<nAgt.indexOf("mozilla/5.0")&&-1<nAgt.indexOf("android ")&&-1<nAgt.indexOf("applewebkit")&&!(-1<nAgt.indexOf("chrome"))?(verOffset=nAgt.indexOf("Chrome"),jQuery.browser.webkit=!0,jQuery.browser.androidStock=!0,jQuery.browser.name="androidStock",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1!=(verOffset=nAgt.indexOf("Safari"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name=
		"Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("AppleWebkit"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("Firefox"))?(jQuery.browser.mozilla=
		!0,jQuery.browser.name="Firefox",jQuery.browser.fullVersion=nAgt.substring(verOffset+8)):(nameOffset=nAgt.lastIndexOf(" ")+1)<(verOffset=nAgt.lastIndexOf("/"))&&(jQuery.browser.name=nAgt.substring(nameOffset,verOffset),jQuery.browser.fullVersion=nAgt.substring(verOffset+1),jQuery.browser.name.toLowerCase()==jQuery.browser.name.toUpperCase()&&(jQuery.browser.name=navigator.appName));
-1!=(ix=jQuery.browser.fullVersion.indexOf(";"))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix));-1!=(ix=jQuery.browser.fullVersion.indexOf(" "))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix));jQuery.browser.majorVersion=parseInt(""+jQuery.browser.fullVersion,10);isNaN(jQuery.browser.majorVersion)&&(jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10));
jQuery.browser.version=jQuery.browser.majorVersion;jQuery.browser.android=/Android/i.test(nAgt);jQuery.browser.blackberry=/BlackBerry|BB|PlayBook/i.test(nAgt);jQuery.browser.ios=/iPhone|iPad|iPod|webOS/i.test(nAgt);jQuery.browser.operaMobile=/Opera Mini/i.test(nAgt);jQuery.browser.windowsMobile=/IEMobile|Windows Phone/i.test(nAgt);jQuery.browser.kindle=/Kindle|Silk/i.test(nAgt);
jQuery.browser.mobile=jQuery.browser.android||jQuery.browser.blackberry||jQuery.browser.ios||jQuery.browser.windowsMobile||jQuery.browser.operaMobile||jQuery.browser.kindle;jQuery.isMobile=jQuery.browser.mobile;jQuery.isTablet=jQuery.browser.mobile&&765<jQuery(window).width();jQuery.isAndroidDefault=jQuery.browser.android&&!/chrome/i.test(nAgt);jQuery.mbBrowser=jQuery.browser;
jQuery.browser.versionCompare=function(a,e){if("stringstring"!=typeof a+typeof e)return!1;for(var c=a.split("."),d=e.split("."),b=0,f=Math.max(c.length,d.length);b<f;b++){if(c[b]&&!d[b]&&0<parseInt(c[b])||parseInt(c[b])>parseInt(d[b]))return 1;if(d[b]&&!c[b]&&0<parseInt(d[b])||parseInt(c[b])<parseInt(d[b]))return-1}return 0};

(function(b){b.simpleSlider={defaults:{initialval:0,scale:100,orientation:"h",readonly:!1,callback:!1},events:{start:b.browser.mobile?"touchstart":"mousedown",end:b.browser.mobile?"touchend":"mouseup",move:b.browser.mobile?"touchmove":"mousemove"},init:function(c){return this.each(function(){var a=this,d=b(a);d.addClass("simpleSlider");a.opt={};b.extend(a.opt,b.simpleSlider.defaults,c);b.extend(a.opt,d.data());var e="h"==a.opt.orientation?"horizontal":"vertical";e=b("<div/>").addClass("level").addClass(e);
	d.prepend(e);a.level=e;d.css({cursor:"default"});"auto"==a.opt.scale&&(a.opt.scale=b(a).outerWidth());d.updateSliderVal();a.opt.readonly||(d.on(b.simpleSlider.events.start,function(c){b.browser.mobile&&(c=c.changedTouches[0]);a.canSlide=!0;d.updateSliderVal(c);"h"==a.opt.orientation?d.css({cursor:"col-resize"}):d.css({cursor:"row-resize"});b.browser.mobile||(c.preventDefault(),c.stopPropagation())}),b(document).on(b.simpleSlider.events.move,function(c){b.browser.mobile&&(c=c.changedTouches[0]);a.canSlide&&
	(b(document).css({cursor:"default"}),d.updateSliderVal(c),b.browser.mobile||(c.preventDefault(),c.stopPropagation()))}).on(b.simpleSlider.events.end,function(){b(document).css({cursor:"auto"});a.canSlide=!1;d.css({cursor:"auto"})}))})},updateSliderVal:function(c){var a=this.get(0);if(a.opt){a.opt.initialval="number"==typeof a.opt.initialval?a.opt.initialval:a.opt.initialval(a);var d=b(a).outerWidth(),e=b(a).outerHeight();a.x="object"==typeof c?c.clientX+document.body.scrollLeft-this.offset().left:
				"number"==typeof c?c*d/a.opt.scale:a.opt.initialval*d/a.opt.scale;a.y="object"==typeof c?c.clientY+document.body.scrollTop-this.offset().top:"number"==typeof c?(a.opt.scale-a.opt.initialval-c)*e/a.opt.scale:a.opt.initialval*e/a.opt.scale;a.y=this.outerHeight()-a.y;a.scaleX=a.x*a.opt.scale/d;a.scaleY=a.y*a.opt.scale/e;a.outOfRangeX=a.scaleX>a.opt.scale?a.scaleX-a.opt.scale:0>a.scaleX?a.scaleX:0;a.outOfRangeY=a.scaleY>a.opt.scale?a.scaleY-a.opt.scale:0>a.scaleY?a.scaleY:0;a.outOfRange="h"==a.opt.orientation?
		a.outOfRangeX:a.outOfRangeY;a.value="undefined"!=typeof c?"h"==a.opt.orientation?a.x>=this.outerWidth()?a.opt.scale:0>=a.x?0:a.scaleX:a.y>=this.outerHeight()?a.opt.scale:0>=a.y?0:a.scaleY:"h"==a.opt.orientation?a.scaleX:a.scaleY;"h"==a.opt.orientation?a.level.width(Math.floor(100*a.x/d)+"%"):a.level.height(Math.floor(100*a.y/e));"function"==typeof a.opt.callback&&a.opt.callback(a)}}};b.fn.simpleSlider=b.simpleSlider.init;b.fn.updateSliderVal=b.simpleSlider.updateSliderVal})(jQuery);
;/*___________________________________________________________________________________________________________________________________________________
 _ jquery.mb.components                                                                                                                             _
 _                                                                                                                                                  _
 _ file: jquery.mb.storage.min.js                                                                                                                   _
 _ last modified: 24/05/15 16.08                                                                                                                    _
 _                                                                                                                                                  _
 _ Open Lab s.r.l., Florence - Italy                                                                                                                _
 _                                                                                                                                                  _
 _ email: matteo@open-lab.com                                                                                                                       _
 _ site: http://pupunzi.com                                                                                                                         _
 _       http://open-lab.com                                                                                                                        _
 _ blog: http://pupunzi.open-lab.com                                                                                                                _
 _ Q&A:  http://jquery.pupunzi.com                                                                                                                  _
 _                                                                                                                                                  _
 _ Licences: MIT, GPL                                                                                                                               _
 _    http://www.opensource.org/licenses/mit-license.php                                                                                            _
 _    http://www.gnu.org/licenses/gpl.html                                                                                                          _
 _                                                                                                                                                  _
 _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi);                                                                                              _
 ___________________________________________________________________________________________________________________________________________________*/

(function(d){d.mbCookie={set:function(a,c,f,b){"object"==typeof c&&(c=JSON.stringify(c));b=b?"; domain="+b:"";var e=new Date,d="";0<f&&(e.setTime(e.getTime()+864E5*f),d="; expires="+e.toGMTString());document.cookie=a+"="+c+d+"; path=/"+b},get:function(a){a+="=";for(var c=document.cookie.split(";"),d=0;d<c.length;d++){for(var b=c[d];" "==b.charAt(0);)b=b.substring(1,b.length);if(0==b.indexOf(a))try{return JSON.parse(b.substring(a.length,b.length))}catch(e){return b.substring(a.length,b.length)}}return null},
	remove:function(a){d.mbCookie.set(a,"",-1)}};d.mbStorage={set:function(a,c){"object"==typeof c&&(c=JSON.stringify(c));localStorage.setItem(a,c)},get:function(a){if(localStorage[a])try{return JSON.parse(localStorage[a])}catch(c){return localStorage[a]}else return null},remove:function(a){a?localStorage.removeItem(a):localStorage.clear()}}})(jQuery);
PK�uKXz�ԩwMwMspiko/assets/js/owl.carousel.js/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/**
 * Owl carousel
 * @version 2.1.6
 * @author Bartosz Wojciechowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 * @todo Lazy Load Icon
 * @todo prevent animationend bubling
 * @todo itemsScaleUp
 * @todo Test Zepto
 * @todo stagePadding calculate wrong active classes
 */
;(function($, window, document, undefined) {

	/**
	 * Creates a carousel.
	 * @class The Owl Carousel.
	 * @public
	 * @param {HTMLElement|jQuery} element - The element to create the carousel for.
	 * @param {Object} [options] - The options
	 */
	function Owl(element, options) {

		/**
		 * Current settings for the carousel.
		 * @public
		 */
		this.settings = null;

		/**
		 * Current options set by the caller including defaults.
		 * @public
		 */
		this.options = $.extend({}, Owl.Defaults, options);

		/**
		 * Plugin element.
		 * @public
		 */
		this.$element = $(element);

		/**
		 * Proxied event handlers.
		 * @protected
		 */
		this._handlers = {};

		/**
		 * References to the running plugins of this carousel.
		 * @protected
		 */
		this._plugins = {};

		/**
		 * Currently suppressed events to prevent them from beeing retriggered.
		 * @protected
		 */
		this._supress = {};

		/**
		 * Absolute current position.
		 * @protected
		 */
		this._current = null;

		/**
		 * Animation speed in milliseconds.
		 * @protected
		 */
		this._speed = null;

		/**
		 * Coordinates of all items in pixel.
		 * @todo The name of this member is missleading.
		 * @protected
		 */
		this._coordinates = [];

		/**
		 * Current breakpoint.
		 * @todo Real media queries would be nice.
		 * @protected
		 */
		this._breakpoint = null;

		/**
		 * Current width of the plugin element.
		 */
		this._width = null;

		/**
		 * All real items.
		 * @protected
		 */
		this._items = [];

		/**
		 * All cloned items.
		 * @protected
		 */
		this._clones = [];

		/**
		 * Merge values of all items.
		 * @todo Maybe this could be part of a plugin.
		 * @protected
		 */
		this._mergers = [];

		/**
		 * Widths of all items.
		 */
		this._widths = [];

		/**
		 * Invalidated parts within the update process.
		 * @protected
		 */
		this._invalidated = {};

		/**
		 * Ordered list of workers for the update process.
		 * @protected
		 */
		this._pipe = [];

		/**
		 * Current state information for the drag operation.
		 * @todo #261
		 * @protected
		 */
		this._drag = {
			time: null,
			target: null,
			pointer: null,
			stage: {
				start: null,
				current: null
			},
			direction: null
		};

		/**
		 * Current state information and their tags.
		 * @type {Object}
		 * @protected
		 */
		this._states = {
			current: {},
			tags: {
				'initializing': [ 'busy' ],
				'animating': [ 'busy' ],
				'dragging': [ 'interacting' ]
			}
		};

		$.each([ 'onResize', 'onThrottledResize' ], $.proxy(function(i, handler) {
			this._handlers[handler] = $.proxy(this[handler], this);
		}, this));

		$.each(Owl.Plugins, $.proxy(function(key, plugin) {
			this._plugins[key.charAt(0).toLowerCase() + key.slice(1)]
				= new plugin(this);
		}, this));

		$.each(Owl.Workers, $.proxy(function(priority, worker) {
			this._pipe.push({
				'filter': worker.filter,
				'run': $.proxy(worker.run, this)
			});
		}, this));

		this.setup();
		this.initialize();
	}

	/**
	 * Default options for the carousel.
	 * @public
	 */
	Owl.Defaults = {
		items: 3,
		loop: false,
		center: false,
		rewind: false,

		mouseDrag: true,
		touchDrag: true,
		pullDrag: true,
		freeDrag: false,

		margin: 0,
		stagePadding: 0,

		merge: false,
		mergeFit: true,
		autoWidth: false,

		startPosition: 0,
		rtl: false,

		smartSpeed: 250,
		fluidSpeed: false,
		dragEndSpeed: false,

		responsive: {},
		responsiveRefreshRate: 200,
		responsiveBaseElement: window,

		fallbackEasing: 'swing',

		info: false,

		nestedItemSelector: false,
		itemElement: 'div',
		stageElement: 'div',

		refreshClass: 'owl-refresh',
		loadedClass: 'owl-loaded',
		loadingClass: 'owl-loading',
		rtlClass: 'owl-rtl',
		responsiveClass: 'owl-responsive',
		dragClass: 'owl-drag',
		itemClass: 'owl-item',
		stageClass: 'owl-stage',
		stageOuterClass: 'owl-stage-outer',
		grabClass: 'owl-grab'
	};

	/**
	 * Enumeration for width.
	 * @public
	 * @readonly
	 * @enum {String}
	 */
	Owl.Width = {
		Default: 'default',
		Inner: 'inner',
		Outer: 'outer'
	};

	/**
	 * Enumeration for types.
	 * @public
	 * @readonly
	 * @enum {String}
	 */
	Owl.Type = {
		Event: 'event',
		State: 'state'
	};

	/**
	 * Contains all registered plugins.
	 * @public
	 */
	Owl.Plugins = {};

	/**
	 * List of workers involved in the update process.
	 */
	Owl.Workers = [ {
		filter: [ 'width', 'settings' ],
		run: function() {
			this._width = this.$element.width();
		}
	}, {
		filter: [ 'width', 'items', 'settings' ],
		run: function(cache) {
			cache.current = this._items && this._items[this.relative(this._current)];
		}
	}, {
		filter: [ 'items', 'settings' ],
		run: function() {
			this.$stage.children('.cloned').remove();
		}
	}, {
		filter: [ 'width', 'items', 'settings' ],
		run: function(cache) {
			var margin = this.settings.margin || '',
				grid = !this.settings.autoWidth,
				rtl = this.settings.rtl,
				css = {
					'width': 'auto',
					'margin-left': rtl ? margin : '',
					'margin-right': rtl ? '' : margin
				};

			!grid && this.$stage.children().css(css);

			cache.css = css;
		}
	}, {
		filter: [ 'width', 'items', 'settings' ],
		run: function(cache) {
			var width = (this.width() / this.settings.items).toFixed(3) - this.settings.margin,
				merge = null,
				iterator = this._items.length,
				grid = !this.settings.autoWidth,
				widths = [];

			cache.items = {
				merge: false,
				width: width
			};

			while (iterator--) {
				merge = this._mergers[iterator];
				merge = this.settings.mergeFit && Math.min(merge, this.settings.items) || merge;

				cache.items.merge = merge > 1 || cache.items.merge;

				widths[iterator] = !grid ? this._items[iterator].width() : width * merge;
			}

			this._widths = widths;
		}
	}, {
		filter: [ 'items', 'settings' ],
		run: function() {
			var clones = [],
				items = this._items,
				settings = this.settings,
				// TODO: Should be computed from number of min width items in stage
				view = Math.max(settings.items * 2, 4),
				size = Math.ceil(items.length / 2) * 2,
				repeat = settings.loop && items.length ? settings.rewind ? view : Math.max(view, size) : 0,
				append = '',
				prepend = '';

			repeat /= 2;

			while (repeat--) {
				// Switch to only using appended clones
				clones.push(this.normalize(clones.length / 2, true));
				append = append + items[clones[clones.length - 1]][0].outerHTML;
				clones.push(this.normalize(items.length - 1 - (clones.length - 1) / 2, true));
				prepend = items[clones[clones.length - 1]][0].outerHTML + prepend;
			}

			this._clones = clones;

			$(append).addClass('cloned').appendTo(this.$stage);
			$(prepend).addClass('cloned').prependTo(this.$stage);
		}
	}, {
		filter: [ 'width', 'items', 'settings' ],
		run: function() {
			var rtl = this.settings.rtl ? 1 : -1,
				size = this._clones.length + this._items.length,
				iterator = -1,
				previous = 0,
				current = 0,
				coordinates = [];

			while (++iterator < size) {
				previous = coordinates[iterator - 1] || 0;
				current = this._widths[this.relative(iterator)] + this.settings.margin;
				coordinates.push(previous + current * rtl);
			}

			this._coordinates = coordinates;
		}
	}, {
		filter: [ 'width', 'items', 'settings' ],
		run: function() {
			var padding = this.settings.stagePadding,
				coordinates = this._coordinates,
				css = {
					'width': Math.ceil(Math.abs(coordinates[coordinates.length - 1])) + padding * 2,
					'padding-left': padding || '',
					'padding-right': padding || ''
				};

			this.$stage.css(css);
		}
	}, {
		filter: [ 'width', 'items', 'settings' ],
		run: function(cache) {
			var iterator = this._coordinates.length,
				grid = !this.settings.autoWidth,
				items = this.$stage.children();

			if (grid && cache.items.merge) {
				while (iterator--) {
					cache.css.width = this._widths[this.relative(iterator)];
					items.eq(iterator).css(cache.css);
				}
			} else if (grid) {
				cache.css.width = cache.items.width;
				items.css(cache.css);
			}
		}
	}, {
		filter: [ 'items' ],
		run: function() {
			this._coordinates.length < 1 && this.$stage.removeAttr('style');
		}
	}, {
		filter: [ 'width', 'items', 'settings' ],
		run: function(cache) {
			cache.current = cache.current ? this.$stage.children().index(cache.current) : 0;
			cache.current = Math.max(this.minimum(), Math.min(this.maximum(), cache.current));
			this.reset(cache.current);
		}
	}, {
		filter: [ 'position' ],
		run: function() {
			this.animate(this.coordinates(this._current));
		}
	}, {
		filter: [ 'width', 'position', 'items', 'settings' ],
		run: function() {
			var rtl = this.settings.rtl ? 1 : -1,
				padding = this.settings.stagePadding * 2,
				begin = this.coordinates(this.current()) + padding,
				end = begin + this.width() * rtl,
				inner, outer, matches = [], i, n;

			for (i = 0, n = this._coordinates.length; i < n; i++) {
				inner = this._coordinates[i - 1] || 0;
				outer = Math.abs(this._coordinates[i]) + padding * rtl;

				if ((this.op(inner, '<=', begin) && (this.op(inner, '>', end)))
					|| (this.op(outer, '<', begin) && this.op(outer, '>', end))) {
					matches.push(i);
				}
			}

			this.$stage.children('.active').removeClass('active');
			this.$stage.children(':eq(' + matches.join('), :eq(') + ')').addClass('active');

			if (this.settings.center) {
				this.$stage.children('.center').removeClass('center');
				this.$stage.children().eq(this.current()).addClass('center');
			}
		}
	} ];

	/**
	 * Initializes the carousel.
	 * @protected
	 */
	Owl.prototype.initialize = function() {
		this.enter('initializing');
		this.trigger('initialize');

		this.$element.toggleClass(this.settings.rtlClass, this.settings.rtl);

		if (this.settings.autoWidth && !this.is('pre-loading')) {
			var imgs, nestedSelector, width;
			imgs = this.$element.find('img');
			nestedSelector = this.settings.nestedItemSelector ? '.' + this.settings.nestedItemSelector : undefined;
			width = this.$element.children(nestedSelector).width();

			if (imgs.length && width <= 0) {
				this.preloadAutoWidthImages(imgs);
			}
		}

		this.$element.addClass(this.options.loadingClass);

		// create stage
		this.$stage = $('<' + this.settings.stageElement + ' class="' + this.settings.stageClass + '"/>')
			.wrap('<div class="' + this.settings.stageOuterClass + '"/>');

		// append stage
		this.$element.append(this.$stage.parent());

		// append content
		this.replace(this.$element.children().not(this.$stage.parent()));

		// check visibility
		if (this.$element.is(':visible')) {
			// update view
			this.refresh();
		} else {
			// invalidate width
			this.invalidate('width');
		}

		this.$element
			.removeClass(this.options.loadingClass)
			.addClass(this.options.loadedClass);

		// register event handlers
		this.registerEventHandlers();

		this.leave('initializing');
		this.trigger('initialized');
	};

	/**
	 * Setups the current settings.
	 * @todo Remove responsive classes. Why should adaptive designs be brought into IE8?
	 * @todo Support for media queries by using `matchMedia` would be nice.
	 * @public
	 */
	Owl.prototype.setup = function() {
		var viewport = this.viewport(),
			overwrites = this.options.responsive,
			match = -1,
			settings = null;

		if (!overwrites) {
			settings = $.extend({}, this.options);
		} else {
			$.each(overwrites, function(breakpoint) {
				if (breakpoint <= viewport && breakpoint > match) {
					match = Number(breakpoint);
				}
			});

			settings = $.extend({}, this.options, overwrites[match]);
			if (typeof settings.stagePadding === 'function') {
				settings.stagePadding = settings.stagePadding();
			}
			delete settings.responsive;

			// responsive class
			if (settings.responsiveClass) {
				this.$element.attr('class',
					this.$element.attr('class').replace(new RegExp('(' + this.options.responsiveClass + '-)\\S+\\s', 'g'), '$1' + match)
				);
			}
		}

		this.trigger('change', { property: { name: 'settings', value: settings } });
		this._breakpoint = match;
		this.settings = settings;
		this.invalidate('settings');
		this.trigger('changed', { property: { name: 'settings', value: this.settings } });
	};

	/**
	 * Updates option logic if necessery.
	 * @protected
	 */
	Owl.prototype.optionsLogic = function() {
		if (this.settings.autoWidth) {
			this.settings.stagePadding = false;
			this.settings.merge = false;
		}
	};

	/**
	 * Prepares an item before add.
	 * @todo Rename event parameter `content` to `item`.
	 * @protected
	 * @returns {jQuery|HTMLElement} - The item container.
	 */
	Owl.prototype.prepare = function(item) {
		var event = this.trigger('prepare', { content: item });

		if (!event.data) {
			event.data = $('<' + this.settings.itemElement + '/>')
				.addClass(this.options.itemClass).append(item)
		}

		this.trigger('prepared', { content: event.data });

		return event.data;
	};

	/**
	 * Updates the view.
	 * @public
	 */
	Owl.prototype.update = function() {
		var i = 0,
			n = this._pipe.length,
			filter = $.proxy(function(p) { return this[p] }, this._invalidated),
			cache = {};

		while (i < n) {
			if (this._invalidated.all || $.grep(this._pipe[i].filter, filter).length > 0) {
				this._pipe[i].run(cache);
			}
			i++;
		}

		this._invalidated = {};

		!this.is('valid') && this.enter('valid');
	};

	/**
	 * Gets the width of the view.
	 * @public
	 * @param {Owl.Width} [dimension=Owl.Width.Default] - The dimension to return.
	 * @returns {Number} - The width of the view in pixel.
	 */
	Owl.prototype.width = function(dimension) {
		dimension = dimension || Owl.Width.Default;
		switch (dimension) {
			case Owl.Width.Inner:
			case Owl.Width.Outer:
				return this._width;
			default:
				return this._width - this.settings.stagePadding * 2 + this.settings.margin;
		}
	};

	/**
	 * Refreshes the carousel primarily for adaptive purposes.
	 * @public
	 */
	Owl.prototype.refresh = function() {
		this.enter('refreshing');
		this.trigger('refresh');

		this.setup();

		this.optionsLogic();

		this.$element.addClass(this.options.refreshClass);

		this.update();

		this.$element.removeClass(this.options.refreshClass);

		this.leave('refreshing');
		this.trigger('refreshed');
	};

	/**
	 * Checks window `resize` event.
	 * @protected
	 */
	Owl.prototype.onThrottledResize = function() {
		window.clearTimeout(this.resizeTimer);
		this.resizeTimer = window.setTimeout(this._handlers.onResize, this.settings.responsiveRefreshRate);
	};

	/**
	 * Checks window `resize` event.
	 * @protected
	 */
	Owl.prototype.onResize = function() {
		if (!this._items.length) {
			return false;
		}

		if (this._width === this.$element.width()) {
			return false;
		}

		if (!this.$element.is(':visible')) {
			return false;
		}

		this.enter('resizing');

		if (this.trigger('resize').isDefaultPrevented()) {
			this.leave('resizing');
			return false;
		}

		this.invalidate('width');

		this.refresh();

		this.leave('resizing');
		this.trigger('resized');
	};

	/**
	 * Registers event handlers.
	 * @todo Check `msPointerEnabled`
	 * @todo #261
	 * @protected
	 */
	Owl.prototype.registerEventHandlers = function() {
		if ($.support.transition) {
			this.$stage.on($.support.transition.end + '.owl.core', $.proxy(this.onTransitionEnd, this));
		}

		if (this.settings.responsive !== false) {
			this.on(window, 'resize', this._handlers.onThrottledResize);
		}

		if (this.settings.mouseDrag) {
			this.$element.addClass(this.options.dragClass);
			this.$stage.on('mousedown.owl.core', $.proxy(this.onDragStart, this));
			this.$stage.on('dragstart.owl.core selectstart.owl.core', function() { return false });
		}

		if (this.settings.touchDrag){
			this.$stage.on('touchstart.owl.core', $.proxy(this.onDragStart, this));
			this.$stage.on('touchcancel.owl.core', $.proxy(this.onDragEnd, this));
		}
	};

	/**
	 * Handles `touchstart` and `mousedown` events.
	 * @todo Horizontal swipe threshold as option
	 * @todo #261
	 * @protected
	 * @param {Event} event - The event arguments.
	 */
	Owl.prototype.onDragStart = function(event) {
		var stage = null;

		if (event.which === 3) {
			return;
		}

		if ($.support.transform) {
			stage = this.$stage.css('transform').replace(/.*\(|\)| /g, '').split(',');
			stage = {
				x: stage[stage.length === 16 ? 12 : 4],
				y: stage[stage.length === 16 ? 13 : 5]
			};
		} else {
			stage = this.$stage.position();
			stage = {
				x: this.settings.rtl ?
					stage.left + this.$stage.width() - this.width() + this.settings.margin :
					stage.left,
				y: stage.top
			};
		}

		if (this.is('animating')) {
			$.support.transform ? this.animate(stage.x) : this.$stage.stop()
			this.invalidate('position');
		}

		this.$element.toggleClass(this.options.grabClass, event.type === 'mousedown');

		this.speed(0);

		this._drag.time = new Date().getTime();
		this._drag.target = $(event.target);
		this._drag.stage.start = stage;
		this._drag.stage.current = stage;
		this._drag.pointer = this.pointer(event);

		$(document).on('mouseup.owl.core touchend.owl.core', $.proxy(this.onDragEnd, this));

		$(document).one('mousemove.owl.core touchmove.owl.core', $.proxy(function(event) {
			var delta = this.difference(this._drag.pointer, this.pointer(event));

			$(document).on('mousemove.owl.core touchmove.owl.core', $.proxy(this.onDragMove, this));

			if (Math.abs(delta.x) < Math.abs(delta.y) && this.is('valid')) {
				return;
			}

			event.preventDefault();

			this.enter('dragging');
			this.trigger('drag');
		}, this));
	};

	/**
	 * Handles the `touchmove` and `mousemove` events.
	 * @todo #261
	 * @protected
	 * @param {Event} event - The event arguments.
	 */
	Owl.prototype.onDragMove = function(event) {
		var minimum = null,
			maximum = null,
			pull = null,
			delta = this.difference(this._drag.pointer, this.pointer(event)),
			stage = this.difference(this._drag.stage.start, delta);

		if (!this.is('dragging')) {
			return;
		}

		event.preventDefault();

		if (this.settings.loop) {
			minimum = this.coordinates(this.minimum());
			maximum = this.coordinates(this.maximum() + 1) - minimum;
			stage.x = (((stage.x - minimum) % maximum + maximum) % maximum) + minimum;
		} else {
			minimum = this.settings.rtl ? this.coordinates(this.maximum()) : this.coordinates(this.minimum());
			maximum = this.settings.rtl ? this.coordinates(this.minimum()) : this.coordinates(this.maximum());
			pull = this.settings.pullDrag ? -1 * delta.x / 5 : 0;
			stage.x = Math.max(Math.min(stage.x, minimum + pull), maximum + pull);
		}

		this._drag.stage.current = stage;

		this.animate(stage.x);
	};

	/**
	 * Handles the `touchend` and `mouseup` events.
	 * @todo #261
	 * @todo Threshold for click event
	 * @protected
	 * @param {Event} event - The event arguments.
	 */
	Owl.prototype.onDragEnd = function(event) {
		var delta = this.difference(this._drag.pointer, this.pointer(event)),
			stage = this._drag.stage.current,
			direction = delta.x > 0 ^ this.settings.rtl ? 'left' : 'right';

		$(document).off('.owl.core');

		this.$element.removeClass(this.options.grabClass);

		if (delta.x !== 0 && this.is('dragging') || !this.is('valid')) {
			this.speed(this.settings.dragEndSpeed || this.settings.smartSpeed);
			this.current(this.closest(stage.x, delta.x !== 0 ? direction : this._drag.direction));
			this.invalidate('position');
			this.update();

			this._drag.direction = direction;

			if (Math.abs(delta.x) > 3 || new Date().getTime() - this._drag.time > 300) {
				this._drag.target.one('click.owl.core', function() { return false; });
			}
		}

		if (!this.is('dragging')) {
			return;
		}

		this.leave('dragging');
		this.trigger('dragged');
	};

	/**
	 * Gets absolute position of the closest item for a coordinate.
	 * @todo Setting `freeDrag` makes `closest` not reusable. See #165.
	 * @protected
	 * @param {Number} coordinate - The coordinate in pixel.
	 * @param {String} direction - The direction to check for the closest item. Ether `left` or `right`.
	 * @return {Number} - The absolute position of the closest item.
	 */
	Owl.prototype.closest = function(coordinate, direction) {
		var position = -1,
			pull = 30,
			width = this.width(),
			coordinates = this.coordinates();

		if (!this.settings.freeDrag) {
			// check closest item
			$.each(coordinates, $.proxy(function(index, value) {
				// on a left pull, check on current index
				if (direction === 'left' && coordinate > value - pull && coordinate < value + pull) {
					position = index;
				// on a right pull, check on previous index
				// to do so, subtract width from value and set position = index + 1
				} else if (direction === 'right' && coordinate > value - width - pull && coordinate < value - width + pull) {
					position = index + 1;
				} else if (this.op(coordinate, '<', value)
					&& this.op(coordinate, '>', coordinates[index + 1] || value - width)) {
					position = direction === 'left' ? index + 1 : index;
				}
				return position === -1;
			}, this));
		}

		if (!this.settings.loop) {
			// non loop boundries
			if (this.op(coordinate, '>', coordinates[this.minimum()])) {
				position = coordinate = this.minimum();
			} else if (this.op(coordinate, '<', coordinates[this.maximum()])) {
				position = coordinate = this.maximum();
			}
		}

		return position;
	};

	/**
	 * Animates the stage.
	 * @todo #270
	 * @public
	 * @param {Number} coordinate - The coordinate in pixels.
	 */
	Owl.prototype.animate = function(coordinate) {
		var animate = this.speed() > 0;

		this.is('animating') && this.onTransitionEnd();

		if (animate) {
			this.enter('animating');
			this.trigger('translate');
		}

		if ($.support.transform3d && $.support.transition) {
			this.$stage.css({
				transform: 'translate3d(' + coordinate + 'px,0px,0px)',
				transition: (this.speed() / 1000) + 's'
			});
		} else if (animate) {
			this.$stage.animate({
				left: coordinate + 'px'
			}, this.speed(), this.settings.fallbackEasing, $.proxy(this.onTransitionEnd, this));
		} else {
			this.$stage.css({
				left: coordinate + 'px'
			});
		}
	};

	/**
	 * Checks whether the carousel is in a specific state or not.
	 * @param {String} state - The state to check.
	 * @returns {Boolean} - The flag which indicates if the carousel is busy.
	 */
	Owl.prototype.is = function(state) {
		return this._states.current[state] && this._states.current[state] > 0;
	};

	/**
	 * Sets the absolute position of the current item.
	 * @public
	 * @param {Number} [position] - The new absolute position or nothing to leave it unchanged.
	 * @returns {Number} - The absolute position of the current item.
	 */
	Owl.prototype.current = function(position) {
		if (position === undefined) {
			return this._current;
		}

		if (this._items.length === 0) {
			return undefined;
		}

		position = this.normalize(position);

		if (this._current !== position) {
			var event = this.trigger('change', { property: { name: 'position', value: position } });

			if (event.data !== undefined) {
				position = this.normalize(event.data);
			}

			this._current = position;

			this.invalidate('position');

			this.trigger('changed', { property: { name: 'position', value: this._current } });
		}

		return this._current;
	};

	/**
	 * Invalidates the given part of the update routine.
	 * @param {String} [part] - The part to invalidate.
	 * @returns {Array.<String>} - The invalidated parts.
	 */
	Owl.prototype.invalidate = function(part) {
		if ($.type(part) === 'string') {
			this._invalidated[part] = true;
			this.is('valid') && this.leave('valid');
		}
		return $.map(this._invalidated, function(v, i) { return i });
	};

	/**
	 * Resets the absolute position of the current item.
	 * @public
	 * @param {Number} position - The absolute position of the new item.
	 */
	Owl.prototype.reset = function(position) {
		position = this.normalize(position);

		if (position === undefined) {
			return;
		}

		this._speed = 0;
		this._current = position;

		this.suppress([ 'translate', 'translated' ]);

		this.animate(this.coordinates(position));

		this.release([ 'translate', 'translated' ]);
	};

	/**
	 * Normalizes an absolute or a relative position of an item.
	 * @public
	 * @param {Number} position - The absolute or relative position to normalize.
	 * @param {Boolean} [relative=false] - Whether the given position is relative or not.
	 * @returns {Number} - The normalized position.
	 */
	Owl.prototype.normalize = function(position, relative) {
		var n = this._items.length,
			m = relative ? 0 : this._clones.length;

		if (!this.isNumeric(position) || n < 1) {
			position = undefined;
		} else if (position < 0 || position >= n + m) {
			position = ((position - m / 2) % n + n) % n + m / 2;
		}

		return position;
	};

	/**
	 * Converts an absolute position of an item into a relative one.
	 * @public
	 * @param {Number} position - The absolute position to convert.
	 * @returns {Number} - The converted position.
	 */
	Owl.prototype.relative = function(position) {
		position -= this._clones.length / 2;
		return this.normalize(position, true);
	};

	/**
	 * Gets the maximum position for the current item.
	 * @public
	 * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position.
	 * @returns {Number}
	 */
	Owl.prototype.maximum = function(relative) {
		var settings = this.settings,
			maximum = this._coordinates.length,
			iterator,
			reciprocalItemsWidth,
			elementWidth;

		if (settings.loop) {
			maximum = this._clones.length / 2 + this._items.length - 1;
		} else if (settings.autoWidth || settings.merge) {
			iterator = this._items.length;
			reciprocalItemsWidth = this._items[--iterator].width();
			elementWidth = this.$element.width();
			while (iterator--) {
				reciprocalItemsWidth += this._items[iterator].width() + this.settings.margin;
				if (reciprocalItemsWidth > elementWidth) {
					break;
				}
			}
			maximum = iterator + 1;
		} else if (settings.center) {
			maximum = this._items.length - 1;
		} else {
			maximum = this._items.length - settings.items;
		}

		if (relative) {
			maximum -= this._clones.length / 2;
		}

		return Math.max(maximum, 0);
	};

	/**
	 * Gets the minimum position for the current item.
	 * @public
	 * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position.
	 * @returns {Number}
	 */
	Owl.prototype.minimum = function(relative) {
		return relative ? 0 : this._clones.length / 2;
	};

	/**
	 * Gets an item at the specified relative position.
	 * @public
	 * @param {Number} [position] - The relative position of the item.
	 * @return {jQuery|Array.<jQuery>} - The item at the given position or all items if no position was given.
	 */
	Owl.prototype.items = function(position) {
		if (position === undefined) {
			return this._items.slice();
		}

		position = this.normalize(position, true);
		return this._items[position];
	};

	/**
	 * Gets an item at the specified relative position.
	 * @public
	 * @param {Number} [position] - The relative position of the item.
	 * @return {jQuery|Array.<jQuery>} - The item at the given position or all items if no position was given.
	 */
	Owl.prototype.mergers = function(position) {
		if (position === undefined) {
			return this._mergers.slice();
		}

		position = this.normalize(position, true);
		return this._mergers[position];
	};

	/**
	 * Gets the absolute positions of clones for an item.
	 * @public
	 * @param {Number} [position] - The relative position of the item.
	 * @returns {Array.<Number>} - The absolute positions of clones for the item or all if no position was given.
	 */
	Owl.prototype.clones = function(position) {
		var odd = this._clones.length / 2,
			even = odd + this._items.length,
			map = function(index) { return index % 2 === 0 ? even + index / 2 : odd - (index + 1) / 2 };

		if (position === undefined) {
			return $.map(this._clones, function(v, i) { return map(i) });
		}

		return $.map(this._clones, function(v, i) { return v === position ? map(i) : null });
	};

	/**
	 * Sets the current animation speed.
	 * @public
	 * @param {Number} [speed] - The animation speed in milliseconds or nothing to leave it unchanged.
	 * @returns {Number} - The current animation speed in milliseconds.
	 */
	Owl.prototype.speed = function(speed) {
		if (speed !== undefined) {
			this._speed = speed;
		}

		return this._speed;
	};

	/**
	 * Gets the coordinate of an item.
	 * @todo The name of this method is missleanding.
	 * @public
	 * @param {Number} position - The absolute position of the item within `minimum()` and `maximum()`.
	 * @returns {Number|Array.<Number>} - The coordinate of the item in pixel or all coordinates.
	 */
	Owl.prototype.coordinates = function(position) {
		var multiplier = 1,
			newPosition = position - 1,
			coordinate;

		if (position === undefined) {
			return $.map(this._coordinates, $.proxy(function(coordinate, index) {
				return this.coordinates(index);
			}, this));
		}

		if (this.settings.center) {
			if (this.settings.rtl) {
				multiplier = -1;
				newPosition = position + 1;
			}

			coordinate = this._coordinates[position];
			coordinate += (this.width() - coordinate + (this._coordinates[newPosition] || 0)) / 2 * multiplier;
		} else {
			coordinate = this._coordinates[newPosition] || 0;
		}

		coordinate = Math.ceil(coordinate);

		return coordinate;
	};

	/**
	 * Calculates the speed for a translation.
	 * @protected
	 * @param {Number} from - The absolute position of the start item.
	 * @param {Number} to - The absolute position of the target item.
	 * @param {Number} [factor=undefined] - The time factor in milliseconds.
	 * @returns {Number} - The time in milliseconds for the translation.
	 */
	Owl.prototype.duration = function(from, to, factor) {
		if (factor === 0) {
			return 0;
		}

		return Math.min(Math.max(Math.abs(to - from), 1), 6) * Math.abs((factor || this.settings.smartSpeed));
	};

	/**
	 * Slides to the specified item.
	 * @public
	 * @param {Number} position - The position of the item.
	 * @param {Number} [speed] - The time in milliseconds for the transition.
	 */
	Owl.prototype.to = function(position, speed) {
		var current = this.current(),
			revert = null,
			distance = position - this.relative(current),
			direction = (distance > 0) - (distance < 0),
			items = this._items.length,
			minimum = this.minimum(),
			maximum = this.maximum();

		if (this.settings.loop) {
			if (!this.settings.rewind && Math.abs(distance) > items / 2) {
				distance += direction * -1 * items;
			}

			position = current + distance;
			revert = ((position - minimum) % items + items) % items + minimum;

			if (revert !== position && revert - distance <= maximum && revert - distance > 0) {
				current = revert - distance;
				position = revert;
				this.reset(current);
			}
		} else if (this.settings.rewind) {
			maximum += 1;
			position = (position % maximum + maximum) % maximum;
		} else {
			position = Math.max(minimum, Math.min(maximum, position));
		}

		this.speed(this.duration(current, position, speed));
		this.current(position);

		if (this.$element.is(':visible')) {
			this.update();
		}
	};

	/**
	 * Slides to the next item.
	 * @public
	 * @param {Number} [speed] - The time in milliseconds for the transition.
	 */
	Owl.prototype.next = function(speed) {
		speed = speed || false;
		this.to(this.relative(this.current()) + 1, speed);
	};

	/**
	 * Slides to the previous item.
	 * @public
	 * @param {Number} [speed] - The time in milliseconds for the transition.
	 */
	Owl.prototype.prev = function(speed) {
		speed = speed || false;
		this.to(this.relative(this.current()) - 1, speed);
	};

	/**
	 * Handles the end of an animation.
	 * @protected
	 * @param {Event} event - The event arguments.
	 */
	Owl.prototype.onTransitionEnd = function(event) {

		// if css2 animation then event object is undefined
		if (event !== undefined) {
			event.stopPropagation();

			// Catch only owl-stage transitionEnd event
			if ((event.target || event.srcElement || event.originalTarget) !== this.$stage.get(0)) {
				return false;
			}
		}

		this.leave('animating');
		this.trigger('translated');
	};

	/**
	 * Gets viewport width.
	 * @protected
	 * @return {Number} - The width in pixel.
	 */
	Owl.prototype.viewport = function() {
		var width;
		if (this.options.responsiveBaseElement !== window) {
			width = $(this.options.responsiveBaseElement).width();
		} else if (window.innerWidth) {
			width = window.innerWidth;
		} else if (document.documentElement && document.documentElement.clientWidth) {
			width = document.documentElement.clientWidth;
		} else {
			console.warn('Can not detect viewport width.');
		}
		return width;
	};

	/**
	 * Replaces the current content.
	 * @public
	 * @param {HTMLElement|jQuery|String} content - The new content.
	 */
	Owl.prototype.replace = function(content) {
		this.$stage.empty();
		this._items = [];

		if (content) {
			content = (content instanceof jQuery) ? content : $(content);
		}

		if (this.settings.nestedItemSelector) {
			content = content.find('.' + this.settings.nestedItemSelector);
		}

		content.filter(function() {
			return this.nodeType === 1;
		}).each($.proxy(function(index, item) {
			item = this.prepare(item);
			this.$stage.append(item);
			this._items.push(item);
			this._mergers.push(item.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);
		}, this));

		this.reset(this.isNumeric(this.settings.startPosition) ? this.settings.startPosition : 0);

		this.invalidate('items');
	};

	/**
	 * Adds an item.
	 * @todo Use `item` instead of `content` for the event arguments.
	 * @public
	 * @param {HTMLElement|jQuery|String} content - The item content to add.
	 * @param {Number} [position] - The relative position at which to insert the item otherwise the item will be added to the end.
	 */
	Owl.prototype.add = function(content, position) {
		var current = this.relative(this._current);

		position = position === undefined ? this._items.length : this.normalize(position, true);
		content = content instanceof jQuery ? content : $(content);

		this.trigger('add', { content: content, position: position });

		content = this.prepare(content);

		if (this._items.length === 0 || position === this._items.length) {
			this._items.length === 0 && this.$stage.append(content);
			this._items.length !== 0 && this._items[position - 1].after(content);
			this._items.push(content);
			this._mergers.push(content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);
		} else {
			this._items[position].before(content);
			this._items.splice(position, 0, content);
			this._mergers.splice(position, 0, content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);
		}

		this._items[current] && this.reset(this._items[current].index());

		this.invalidate('items');

		this.trigger('added', { content: content, position: position });
	};

	/**
	 * Removes an item by its position.
	 * @todo Use `item` instead of `content` for the event arguments.
	 * @public
	 * @param {Number} position - The relative position of the item to remove.
	 */
	Owl.prototype.remove = function(position) {
		position = this.normalize(position, true);

		if (position === undefined) {
			return;
		}

		this.trigger('remove', { content: this._items[position], position: position });

		this._items[position].remove();
		this._items.splice(position, 1);
		this._mergers.splice(position, 1);

		this.invalidate('items');

		this.trigger('removed', { content: null, position: position });
	};

	/**
	 * Preloads images with auto width.
	 * @todo Replace by a more generic approach
	 * @protected
	 */
	Owl.prototype.preloadAutoWidthImages = function(images) {
		images.each($.proxy(function(i, element) {
			this.enter('pre-loading');
			element = $(element);
			$(new Image()).one('load', $.proxy(function(e) {
				element.attr('src', e.target.src);
				element.css('opacity', 1);
				this.leave('pre-loading');
				!this.is('pre-loading') && !this.is('initializing') && this.refresh();
			}, this)).attr('src', element.attr('src') || element.attr('data-src') || element.attr('data-src-retina'));
		}, this));
	};

	/**
	 * Destroys the carousel.
	 * @public
	 */
	Owl.prototype.destroy = function() {

		this.$element.off('.owl.core');
		this.$stage.off('.owl.core');
		$(document).off('.owl.core');

		if (this.settings.responsive !== false) {
			window.clearTimeout(this.resizeTimer);
			this.off(window, 'resize', this._handlers.onThrottledResize);
		}

		for (var i in this._plugins) {
			this._plugins[i].destroy();
		}

		this.$stage.children('.cloned').remove();

		this.$stage.unwrap();
		this.$stage.children().contents().unwrap();
		this.$stage.children().unwrap();

		this.$element
			.removeClass(this.options.refreshClass)
			.removeClass(this.options.loadingClass)
			.removeClass(this.options.loadedClass)
			.removeClass(this.options.rtlClass)
			.removeClass(this.options.dragClass)
			.removeClass(this.options.grabClass)
			.attr('class', this.$element.attr('class').replace(new RegExp(this.options.responsiveClass + '-\\S+\\s', 'g'), ''))
			.removeData('owl.carousel');
	};

	/**
	 * Operators to calculate right-to-left and left-to-right.
	 * @protected
	 * @param {Number} [a] - The left side operand.
	 * @param {String} [o] - The operator.
	 * @param {Number} [b] - The right side operand.
	 */
	Owl.prototype.op = function(a, o, b) {
		var rtl = this.settings.rtl;
		switch (o) {
			case '<':
				return rtl ? a > b : a < b;
			case '>':
				return rtl ? a < b : a > b;
			case '>=':
				return rtl ? a <= b : a >= b;
			case '<=':
				return rtl ? a >= b : a <= b;
			default:
				break;
		}
	};

	/**
	 * Attaches to an internal event.
	 * @protected
	 * @param {HTMLElement} element - The event source.
	 * @param {String} event - The event name.
	 * @param {Function} listener - The event handler to attach.
	 * @param {Boolean} capture - Wether the event should be handled at the capturing phase or not.
	 */
	Owl.prototype.on = function(element, event, listener, capture) {
		if (element.addEventListener) {
			element.addEventListener(event, listener, capture);
		} else if (element.attachEvent) {
			element.attachEvent('on' + event, listener);
		}
	};

	/**
	 * Detaches from an internal event.
	 * @protected
	 * @param {HTMLElement} element - The event source.
	 * @param {String} event - The event name.
	 * @param {Function} listener - The attached event handler to detach.
	 * @param {Boolean} capture - Wether the attached event handler was registered as a capturing listener or not.
	 */
	Owl.prototype.off = function(element, event, listener, capture) {
		if (element.removeEventListener) {
			element.removeEventListener(event, listener, capture);
		} else if (element.detachEvent) {
			element.detachEvent('on' + event, listener);
		}
	};

	/**
	 * Triggers a public event.
	 * @todo Remove `status`, `relatedTarget` should be used instead.
	 * @protected
	 * @param {String} name - The event name.
	 * @param {*} [data=null] - The event data.
	 * @param {String} [namespace=carousel] - The event namespace.
	 * @param {String} [state] - The state which is associated with the event.
	 * @param {Boolean} [enter=false] - Indicates if the call enters the specified state or not.
	 * @returns {Event} - The event arguments.
	 */
	Owl.prototype.trigger = function(name, data, namespace, state, enter) {
		var status = {
			item: { count: this._items.length, index: this.current() }
		}, handler = $.camelCase(
			$.grep([ 'on', name, namespace ], function(v) { return v })
				.join('-').toLowerCase()
		), event = $.Event(
			[ name, 'owl', namespace || 'carousel' ].join('.').toLowerCase(),
			$.extend({ relatedTarget: this }, status, data)
		);

		if (!this._supress[name]) {
			$.each(this._plugins, function(name, plugin) {
				if (plugin.onTrigger) {
					plugin.onTrigger(event);
				}
			});

			this.register({ type: Owl.Type.Event, name: name });
			this.$element.trigger(event);

			if (this.settings && typeof this.settings[handler] === 'function') {
				this.settings[handler].call(this, event);
			}
		}

		return event;
	};

	/**
	 * Enters a state.
	 * @param name - The state name.
	 */
	Owl.prototype.enter = function(name) {
		$.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) {
			if (this._states.current[name] === undefined) {
				this._states.current[name] = 0;
			}

			this._states.current[name]++;
		}, this));
	};

	/**
	 * Leaves a state.
	 * @param name - The state name.
	 */
	Owl.prototype.leave = function(name) {
		$.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) {
			this._states.current[name]--;
		}, this));
	};

	/**
	 * Registers an event or state.
	 * @public
	 * @param {Object} object - The event or state to register.
	 */
	Owl.prototype.register = function(object) {
		if (object.type === Owl.Type.Event) {
			if (!$.event.special[object.name]) {
				$.event.special[object.name] = {};
			}

			if (!$.event.special[object.name].owl) {
				var _default = $.event.special[object.name]._default;
				$.event.special[object.name]._default = function(e) {
					if (_default && _default.apply && (!e.namespace || e.namespace.indexOf('owl') === -1)) {
						return _default.apply(this, arguments);
					}
					return e.namespace && e.namespace.indexOf('owl') > -1;
				};
				$.event.special[object.name].owl = true;
			}
		} else if (object.type === Owl.Type.State) {
			if (!this._states.tags[object.name]) {
				this._states.tags[object.name] = object.tags;
			} else {
				this._states.tags[object.name] = this._states.tags[object.name].concat(object.tags);
			}

			this._states.tags[object.name] = $.grep(this._states.tags[object.name], $.proxy(function(tag, i) {
				return $.inArray(tag, this._states.tags[object.name]) === i;
			}, this));
		}
	};

	/**
	 * Suppresses events.
	 * @protected
	 * @param {Array.<String>} events - The events to suppress.
	 */
	Owl.prototype.suppress = function(events) {
		$.each(events, $.proxy(function(index, event) {
			this._supress[event] = true;
		}, this));
	};

	/**
	 * Releases suppressed events.
	 * @protected
	 * @param {Array.<String>} events - The events to release.
	 */
	Owl.prototype.release = function(events) {
		$.each(events, $.proxy(function(index, event) {
			delete this._supress[event];
		}, this));
	};

	/**
	 * Gets unified pointer coordinates from event.
	 * @todo #261
	 * @protected
	 * @param {Event} - The `mousedown` or `touchstart` event.
	 * @returns {Object} - Contains `x` and `y` coordinates of current pointer position.
	 */
	Owl.prototype.pointer = function(event) {
		var result = { x: null, y: null };

		event = event.originalEvent || event || window.event;

		event = event.touches && event.touches.length ?
			event.touches[0] : event.changedTouches && event.changedTouches.length ?
				event.changedTouches[0] : event;

		if (event.pageX) {
			result.x = event.pageX;
			result.y = event.pageY;
		} else {
			result.x = event.clientX;
			result.y = event.clientY;
		}

		return result;
	};

	/**
	 * Determines if the input is a Number or something that can be coerced to a Number
	 * @protected
	 * @param {Number|String|Object|Array|Boolean|RegExp|Function|Symbol} - The input to be tested
	 * @returns {Boolean} - An indication if the input is a Number or can be coerced to a Number
	 */
	Owl.prototype.isNumeric = function(number) {
		return !isNaN(parseFloat(number));
	};

	/**
	 * Gets the difference of two vectors.
	 * @todo #261
	 * @protected
	 * @param {Object} - The first vector.
	 * @param {Object} - The second vector.
	 * @returns {Object} - The difference.
	 */
	Owl.prototype.difference = function(first, second) {
		return {
			x: first.x - second.x,
			y: first.y - second.y
		};
	};

	/**
	 * The jQuery Plugin for the Owl Carousel
	 * @todo Navigation plugin `next` and `prev`
	 * @public
	 */
	$.fn.owlCarousel = function(option) {
		var args = Array.prototype.slice.call(arguments, 1);

		return this.each(function() {
			var $this = $(this),
				data = $this.data('owl.carousel');

			if (!data) {
				data = new Owl(this, typeof option == 'object' && option);
				$this.data('owl.carousel', data);

				$.each([
					'next', 'prev', 'to', 'destroy', 'refresh', 'replace', 'add', 'remove'
				], function(i, event) {
					data.register({ type: Owl.Type.Event, name: event });
					data.$element.on(event + '.owl.carousel.core', $.proxy(function(e) {
						if (e.namespace && e.relatedTarget !== this) {
							this.suppress([ event ]);
							data[event].apply(this, [].slice.call(arguments, 1));
							this.release([ event ]);
						}
					}, data));
				});
			}

			if (typeof option == 'string' && option.charAt(0) !== '_') {
				data[option].apply(data, args);
			}
		});
	};

	/**
	 * The constructor for the jQuery Plugin
	 * @public
	 */
	$.fn.owlCarousel.Constructor = Owl;

})(window.Zepto || window.jQuery, window, document);

/**
 * AutoRefresh Plugin
 * @version 2.1.0
 * @author Artus Kolanowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {

	/**
	 * Creates the auto refresh plugin.
	 * @class The Auto Refresh Plugin
	 * @param {Owl} carousel - The Owl Carousel
	 */
	var AutoRefresh = function(carousel) {
		/**
		 * Reference to the core.
		 * @protected
		 * @type {Owl}
		 */
		this._core = carousel;

		/**
		 * Refresh interval.
		 * @protected
		 * @type {number}
		 */
		this._interval = null;

		/**
		 * Whether the element is currently visible or not.
		 * @protected
		 * @type {Boolean}
		 */
		this._visible = null;

		/**
		 * All event handlers.
		 * @protected
		 * @type {Object}
		 */
		this._handlers = {
			'initialized.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.autoRefresh) {
					this.watch();
				}
			}, this)
		};

		// set default options
		this._core.options = $.extend({}, AutoRefresh.Defaults, this._core.options);

		// register event handlers
		this._core.$element.on(this._handlers);
	};

	/**
	 * Default options.
	 * @public
	 */
	AutoRefresh.Defaults = {
		autoRefresh: true,
		autoRefreshInterval: 500
	};

	/**
	 * Watches the element.
	 */
	AutoRefresh.prototype.watch = function() {
		if (this._interval) {
			return;
		}

		this._visible = this._core.$element.is(':visible');
		this._interval = window.setInterval($.proxy(this.refresh, this), this._core.settings.autoRefreshInterval);
	};

	/**
	 * Refreshes the element.
	 */
	AutoRefresh.prototype.refresh = function() {
		if (this._core.$element.is(':visible') === this._visible) {
			return;
		}

		this._visible = !this._visible;

		this._core.$element.toggleClass('owl-hidden', !this._visible);

		this._visible && (this._core.invalidate('width') && this._core.refresh());
	};

	/**
	 * Destroys the plugin.
	 */
	AutoRefresh.prototype.destroy = function() {
		var handler, property;

		window.clearInterval(this._interval);

		for (handler in this._handlers) {
			this._core.$element.off(handler, this._handlers[handler]);
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.AutoRefresh = AutoRefresh;

})(window.Zepto || window.jQuery, window, document);

/**
 * Lazy Plugin
 * @version 2.1.0
 * @author Bartosz Wojciechowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {

	/**
	 * Creates the lazy plugin.
	 * @class The Lazy Plugin
	 * @param {Owl} carousel - The Owl Carousel
	 */
	var Lazy = function(carousel) {

		/**
		 * Reference to the core.
		 * @protected
		 * @type {Owl}
		 */
		this._core = carousel;

		/**
		 * Already loaded items.
		 * @protected
		 * @type {Array.<jQuery>}
		 */
		this._loaded = [];

		/**
		 * Event handlers.
		 * @protected
		 * @type {Object}
		 */
		this._handlers = {
			'initialized.owl.carousel change.owl.carousel resized.owl.carousel': $.proxy(function(e) {
				if (!e.namespace) {
					return;
				}

				if (!this._core.settings || !this._core.settings.lazyLoad) {
					return;
				}

				if ((e.property && e.property.name == 'position') || e.type == 'initialized') {
					var settings = this._core.settings,
						n = (settings.center && Math.ceil(settings.items / 2) || settings.items),
						i = ((settings.center && n * -1) || 0),
						position = (e.property && e.property.value !== undefined ? e.property.value : this._core.current()) + i,
						clones = this._core.clones().length,
						load = $.proxy(function(i, v) { this.load(v) }, this);

					while (i++ < n) {
						this.load(clones / 2 + this._core.relative(position));
						clones && $.each(this._core.clones(this._core.relative(position)), load);
						position++;
					}
				}
			}, this)
		};

		// set the default options
		this._core.options = $.extend({}, Lazy.Defaults, this._core.options);

		// register event handler
		this._core.$element.on(this._handlers);
	};

	/**
	 * Default options.
	 * @public
	 */
	Lazy.Defaults = {
		lazyLoad: false
	};

	/**
	 * Loads all resources of an item at the specified position.
	 * @param {Number} position - The absolute position of the item.
	 * @protected
	 */
	Lazy.prototype.load = function(position) {
		var $item = this._core.$stage.children().eq(position),
			$elements = $item && $item.find('.owl-lazy');

		if (!$elements || $.inArray($item.get(0), this._loaded) > -1) {
			return;
		}

		$elements.each($.proxy(function(index, element) {
			var $element = $(element), image,
				url = (window.devicePixelRatio > 1 && $element.attr('data-src-retina')) || $element.attr('data-src');

			this._core.trigger('load', { element: $element, url: url }, 'lazy');

			if ($element.is('img')) {
				$element.one('load.owl.lazy', $.proxy(function() {
					$element.css('opacity', 1);
					this._core.trigger('loaded', { element: $element, url: url }, 'lazy');
				}, this)).attr('src', url);
			} else {
				image = new Image();
				image.onload = $.proxy(function() {
					$element.css({
						'background-image': 'url("' + url + '")',
						'opacity': '1'
					});
					this._core.trigger('loaded', { element: $element, url: url }, 'lazy');
				}, this);
				image.src = url;
			}
		}, this));

		this._loaded.push($item.get(0));
	};

	/**
	 * Destroys the plugin.
	 * @public
	 */
	Lazy.prototype.destroy = function() {
		var handler, property;

		for (handler in this.handlers) {
			this._core.$element.off(handler, this.handlers[handler]);
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.Lazy = Lazy;

})(window.Zepto || window.jQuery, window, document);

/**
 * AutoHeight Plugin
 * @version 2.1.0
 * @author Bartosz Wojciechowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {

	/**
	 * Creates the auto height plugin.
	 * @class The Auto Height Plugin
	 * @param {Owl} carousel - The Owl Carousel
	 */
	var AutoHeight = function(carousel) {
		/**
		 * Reference to the core.
		 * @protected
		 * @type {Owl}
		 */
		this._core = carousel;

		/**
		 * All event handlers.
		 * @protected
		 * @type {Object}
		 */
		this._handlers = {
			'initialized.owl.carousel refreshed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.autoHeight) {
					this.update();
				}
			}, this),
			'changed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.autoHeight && e.property.name == 'position'){
					this.update();
				}
			}, this),
			'loaded.owl.lazy': $.proxy(function(e) {
				if (e.namespace && this._core.settings.autoHeight
					&& e.element.closest('.' + this._core.settings.itemClass).index() === this._core.current()) {
					this.update();
				}
			}, this)
		};

		// set default options
		this._core.options = $.extend({}, AutoHeight.Defaults, this._core.options);

		// register event handlers
		this._core.$element.on(this._handlers);
	};

	/**
	 * Default options.
	 * @public
	 */
	AutoHeight.Defaults = {
		autoHeight: false,
		autoHeightClass: 'owl-height'
	};

	/**
	 * Updates the view.
	 */
	AutoHeight.prototype.update = function() {
		var start = this._core._current,
			end = start + this._core.settings.items,
			visible = this._core.$stage.children().toArray().slice(start, end),
			heights = [],
			maxheight = 0;

		$.each(visible, function(index, item) {
			heights.push($(item).height());
		});

		maxheight = Math.max.apply(null, heights);

		this._core.$stage.parent()
			.height(maxheight)
			.addClass(this._core.settings.autoHeightClass);
	};

	AutoHeight.prototype.destroy = function() {
		var handler, property;

		for (handler in this._handlers) {
			this._core.$element.off(handler, this._handlers[handler]);
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.AutoHeight = AutoHeight;

})(window.Zepto || window.jQuery, window, document);

/**
 * Video Plugin
 * @version 2.1.0
 * @author Bartosz Wojciechowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {

	/**
	 * Creates the video plugin.
	 * @class The Video Plugin
	 * @param {Owl} carousel - The Owl Carousel
	 */
	var Video = function(carousel) {
		/**
		 * Reference to the core.
		 * @protected
		 * @type {Owl}
		 */
		this._core = carousel;

		/**
		 * Cache all video URLs.
		 * @protected
		 * @type {Object}
		 */
		this._videos = {};

		/**
		 * Current playing item.
		 * @protected
		 * @type {jQuery}
		 */
		this._playing = null;

		/**
		 * All event handlers.
		 * @todo The cloned content removale is too late
		 * @protected
		 * @type {Object}
		 */
		this._handlers = {
			'initialized.owl.carousel': $.proxy(function(e) {
				if (e.namespace) {
					this._core.register({ type: 'state', name: 'playing', tags: [ 'interacting' ] });
				}
			}, this),
			'resize.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.video && this.isInFullScreen()) {
					e.preventDefault();
				}
			}, this),
			'refreshed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.is('resizing')) {
					this._core.$stage.find('.cloned .owl-video-frame').remove();
				}
			}, this),
			'changed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && e.property.name === 'position' && this._playing) {
					this.stop();
				}
			}, this),
			'prepared.owl.carousel': $.proxy(function(e) {
				if (!e.namespace) {
					return;
				}

				var $element = $(e.content).find('.owl-video');

				if ($element.length) {
					$element.css('display', 'none');
					this.fetch($element, $(e.content));
				}
			}, this)
		};

		// set default options
		this._core.options = $.extend({}, Video.Defaults, this._core.options);

		// register event handlers
		this._core.$element.on(this._handlers);

		this._core.$element.on('click.owl.video', '.owl-video-play-icon', $.proxy(function(e) {
			this.play(e);
		}, this));
	};

	/**
	 * Default options.
	 * @public
	 */
	Video.Defaults = {
		video: false,
		videoHeight: false,
		videoWidth: false
	};

	/**
	 * Gets the video ID and the type (YouTube/Vimeo/vzaar only).
	 * @protected
	 * @param {jQuery} target - The target containing the video data.
	 * @param {jQuery} item - The item containing the video.
	 */
	Video.prototype.fetch = function(target, item) {
			var type = (function() {
					if (target.attr('data-vimeo-id')) {
						return 'vimeo';
					} else if (target.attr('data-vzaar-id')) {
						return 'vzaar'
					} else {
						return 'youtube';
					}
				})(),
				id = target.attr('data-vimeo-id') || target.attr('data-youtube-id') || target.attr('data-vzaar-id'),
				width = target.attr('data-width') || this._core.settings.videoWidth,
				height = target.attr('data-height') || this._core.settings.videoHeight,
				url = target.attr('href');

		if (url) {

			/*
					Parses the id's out of the following urls (and probably more):
					https://www.youtube.com/watch?v=:id
					https://youtu.be/:id
					https://vimeo.com/:id
					https://vimeo.com/channels/:channel/:id
					https://vimeo.com/groups/:group/videos/:id
					https://app.vzaar.com/videos/:id

					Visual example: https://regexper.com/#(http%3A%7Chttps%3A%7C)%5C%2F%5C%2F(player.%7Cwww.%7Capp.)%3F(vimeo%5C.com%7Cyoutu(be%5C.com%7C%5C.be%7Cbe%5C.googleapis%5C.com)%7Cvzaar%5C.com)%5C%2F(video%5C%2F%7Cvideos%5C%2F%7Cembed%5C%2F%7Cchannels%5C%2F.%2B%5C%2F%7Cgroups%5C%2F.%2B%5C%2F%7Cwatch%5C%3Fv%3D%7Cv%5C%2F)%3F(%5BA-Za-z0-9._%25-%5D*)(%5C%26%5CS%2B)%3F
			*/

			id = url.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/);

			if (id[3].indexOf('youtu') > -1) {
				type = 'youtube';
			} else if (id[3].indexOf('vimeo') > -1) {
				type = 'vimeo';
			} else if (id[3].indexOf('vzaar') > -1) {
				type = 'vzaar';
			} else {
				throw new Error('Video URL not supported.');
			}
			id = id[6];
		} else {
			throw new Error('Missing video URL.');
		}

		this._videos[url] = {
			type: type,
			id: id,
			width: width,
			height: height
		};

		item.attr('data-video', url);

		this.thumbnail(target, this._videos[url]);
	};

	/**
	 * Creates video thumbnail.
	 * @protected
	 * @param {jQuery} target - The target containing the video data.
	 * @param {Object} info - The video info object.
	 * @see `fetch`
	 */
	Video.prototype.thumbnail = function(target, video) {
		var tnLink,
			icon,
			path,
			dimensions = video.width && video.height ? 'style="width:' + video.width + 'px;height:' + video.height + 'px;"' : '',
			customTn = target.find('img'),
			srcType = 'src',
			lazyClass = '',
			settings = this._core.settings,
			create = function(path) {
				icon = '<div class="owl-video-play-icon"></div>';

				if (settings.lazyLoad) {
					tnLink = '<div class="owl-video-tn ' + lazyClass + '" ' + srcType + '="' + path + '"></div>';
				} else {
					tnLink = '<div class="owl-video-tn" style="opacity:1;background-image:url(' + path + ')"></div>';
				}
				target.after(tnLink);
				target.after(icon);
			};

		// wrap video content into owl-video-wrapper div
		target.wrap('<div class="owl-video-wrapper"' + dimensions + '></div>');

		if (this._core.settings.lazyLoad) {
			srcType = 'data-src';
			lazyClass = 'owl-lazy';
		}

		// custom thumbnail
		if (customTn.length) {
			create(customTn.attr(srcType));
			customTn.remove();
			return false;
		}

		if (video.type === 'youtube') {
			path = "//img.youtube.com/vi/" + video.id + "/hqdefault.jpg";
			create(path);
		} else if (video.type === 'vimeo') {
			$.ajax({
				type: 'GET',
				url: '//vimeo.com/api/v2/video/' + video.id + '.json',
				jsonp: 'callback',
				dataType: 'jsonp',
				success: function(data) {
					path = data[0].thumbnail_large;
					create(path);
				}
			});
		} else if (video.type === 'vzaar') {
			$.ajax({
				type: 'GET',
				url: '//vzaar.com/api/videos/' + video.id + '.json',
				jsonp: 'callback',
				dataType: 'jsonp',
				success: function(data) {
					path = data.framegrab_url;
					create(path);
				}
			});
		}
	};

	/**
	 * Stops the current video.
	 * @public
	 */
	Video.prototype.stop = function() {
		this._core.trigger('stop', null, 'video');
		this._playing.find('.owl-video-frame').remove();
		this._playing.removeClass('owl-video-playing');
		this._playing = null;
		this._core.leave('playing');
		this._core.trigger('stopped', null, 'video');
	};

	/**
	 * Starts the current video.
	 * @public
	 * @param {Event} event - The event arguments.
	 */
	Video.prototype.play = function(event) {
		var target = $(event.target),
			item = target.closest('.' + this._core.settings.itemClass),
			video = this._videos[item.attr('data-video')],
			width = video.width || '100%',
			height = video.height || this._core.$stage.height(),
			html;

		if (this._playing) {
			return;
		}

		this._core.enter('playing');
		this._core.trigger('play', null, 'video');

		item = this._core.items(this._core.relative(item.index()));

		this._core.reset(item.index());

		if (video.type === 'youtube') {
			html = '<iframe width="' + width + '" height="' + height + '" src="//www.youtube.com/embed/' +
				video.id + '?autoplay=1&rel=0&v=' + video.id + '" frameborder="0" allowfullscreen></iframe>';
		} else if (video.type === 'vimeo') {
			html = '<iframe src="//player.vimeo.com/video/' + video.id +
				'?autoplay=1" width="' + width + '" height="' + height +
				'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
		} else if (video.type === 'vzaar') {
			html = '<iframe frameborder="0"' + 'height="' + height + '"' + 'width="' + width +
				'" allowfullscreen mozallowfullscreen webkitAllowFullScreen ' +
				'src="//view.vzaar.com/' + video.id + '/player?autoplay=true"></iframe>';
		}

		$('<div class="owl-video-frame">' + html + '</div>').insertAfter(item.find('.owl-video'));

		this._playing = item.addClass('owl-video-playing');
	};

	/**
	 * Checks whether an video is currently in full screen mode or not.
	 * @todo Bad style because looks like a readonly method but changes members.
	 * @protected
	 * @returns {Boolean}
	 */
	Video.prototype.isInFullScreen = function() {
		var element = document.fullscreenElement || document.mozFullScreenElement ||
				document.webkitFullscreenElement;

		return element && $(element).parent().hasClass('owl-video-frame');
	};

	/**
	 * Destroys the plugin.
	 */
	Video.prototype.destroy = function() {
		var handler, property;

		this._core.$element.off('click.owl.video');

		for (handler in this._handlers) {
			this._core.$element.off(handler, this._handlers[handler]);
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.Video = Video;

})(window.Zepto || window.jQuery, window, document);

/**
 * Animate Plugin
 * @version 2.1.0
 * @author Bartosz Wojciechowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {

	/**
	 * Creates the animate plugin.
	 * @class The Navigation Plugin
	 * @param {Owl} scope - The Owl Carousel
	 */
	var Animate = function(scope) {
		this.core = scope;
		this.core.options = $.extend({}, Animate.Defaults, this.core.options);
		this.swapping = true;
		this.previous = undefined;
		this.next = undefined;

		this.handlers = {
			'change.owl.carousel': $.proxy(function(e) {
				if (e.namespace && e.property.name == 'position') {
					this.previous = this.core.current();
					this.next = e.property.value;
				}
			}, this),
			'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) {
				if (e.namespace) {
					this.swapping = e.type == 'translated';
				}
			}, this),
			'translate.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) {
					this.swap();
				}
			}, this)
		};

		this.core.$element.on(this.handlers);
	};

	/**
	 * Default options.
	 * @public
	 */
	Animate.Defaults = {
		animateOut: false,
		animateIn: false
	};

	/**
	 * Toggles the animation classes whenever an translations starts.
	 * @protected
	 * @returns {Boolean|undefined}
	 */
	Animate.prototype.swap = function() {

		if (this.core.settings.items !== 1) {
			return;
		}

		if (!$.support.animation || !$.support.transition) {
			return;
		}

		this.core.speed(0);

		var left,
			clear = $.proxy(this.clear, this),
			previous = this.core.$stage.children().eq(this.previous),
			next = this.core.$stage.children().eq(this.next),
			incoming = this.core.settings.animateIn,
			outgoing = this.core.settings.animateOut;

		if (this.core.current() === this.previous) {
			return;
		}

		if (outgoing) {
			left = this.core.coordinates(this.previous) - this.core.coordinates(this.next);
			previous.one($.support.animation.end, clear)
				.css( { 'left': left + 'px' } )
				.addClass('animated owl-animated-out')
				.addClass(outgoing);
		}

		if (incoming) {
			next.one($.support.animation.end, clear)
				.addClass('animated owl-animated-in')
				.addClass(incoming);
		}
	};

	Animate.prototype.clear = function(e) {
		$(e.target).css( { 'left': '' } )
			.removeClass('animated owl-animated-out owl-animated-in')
			.removeClass(this.core.settings.animateIn)
			.removeClass(this.core.settings.animateOut);
		this.core.onTransitionEnd();
	};

	/**
	 * Destroys the plugin.
	 * @public
	 */
	Animate.prototype.destroy = function() {
		var handler, property;

		for (handler in this.handlers) {
			this.core.$element.off(handler, this.handlers[handler]);
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.Animate = Animate;

})(window.Zepto || window.jQuery, window, document);

/**
 * Autoplay Plugin
 * @version 2.1.0
 * @author Bartosz Wojciechowski
 * @author Artus Kolanowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {

	/**
	 * Creates the autoplay plugin.
	 * @class The Autoplay Plugin
	 * @param {Owl} scope - The Owl Carousel
	 */
	var Autoplay = function(carousel) {
		/**
		 * Reference to the core.
		 * @protected
		 * @type {Owl}
		 */
		this._core = carousel;

		/**
		 * The autoplay timeout.
		 * @type {Timeout}
		 */
		this._timeout = null;

		/**
		 * Indicates whenever the autoplay is paused.
		 * @type {Boolean}
		 */
		this._paused = false;

		/**
		 * All event handlers.
		 * @protected
		 * @type {Object}
		 */
		this._handlers = {
			'changed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && e.property.name === 'settings') {
					if (this._core.settings.autoplay) {
						this.play();
					} else {
						this.stop();
					}
				} else if (e.namespace && e.property.name === 'position') {
					//console.log('play?', e);
					if (this._core.settings.autoplay) {
						this._setAutoPlayInterval();
					}
				}
			}, this),
			'initialized.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.autoplay) {
					this.play();
				}
			}, this),
			'play.owl.autoplay': $.proxy(function(e, t, s) {
				if (e.namespace) {
					this.play(t, s);
				}
			}, this),
			'stop.owl.autoplay': $.proxy(function(e) {
				if (e.namespace) {
					this.stop();
				}
			}, this),
			'mouseover.owl.autoplay': $.proxy(function() {
				if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {
					this.pause();
				}
			}, this),
			'mouseleave.owl.autoplay': $.proxy(function() {
				if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {
					this.play();
				}
			}, this),
			'touchstart.owl.core': $.proxy(function() {
				if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {
					this.pause();
				}
			}, this),
			'touchend.owl.core': $.proxy(function() {
				if (this._core.settings.autoplayHoverPause) {
					this.play();
				}
			}, this)
		};

		// register event handlers
		this._core.$element.on(this._handlers);

		// set default options
		this._core.options = $.extend({}, Autoplay.Defaults, this._core.options);
	};

	/**
	 * Default options.
	 * @public
	 */
	Autoplay.Defaults = {
		autoplay: false,
		autoplayTimeout: 5000,
		autoplayHoverPause: false,
		autoplaySpeed: false
	};

	/**
	 * Starts the autoplay.
	 * @public
	 * @param {Number} [timeout] - The interval before the next animation starts.
	 * @param {Number} [speed] - The animation speed for the animations.
	 */
	Autoplay.prototype.play = function(timeout, speed) {
		this._paused = false;

		if (this._core.is('rotating')) {
			return;
		}

		this._core.enter('rotating');

		this._setAutoPlayInterval();
	};

	/**
	 * Gets a new timeout
	 * @private
	 * @param {Number} [timeout] - The interval before the next animation starts.
	 * @param {Number} [speed] - The animation speed for the animations.
	 * @return {Timeout}
	 */
	Autoplay.prototype._getNextTimeout = function(timeout, speed) {
		if ( this._timeout ) {
			window.clearTimeout(this._timeout);
		}
		return window.setTimeout($.proxy(function() {
			if (this._paused || this._core.is('busy') || this._core.is('interacting') || document.hidden) {
				return;
			}
			this._core.next(speed || this._core.settings.autoplaySpeed);
		}, this), timeout || this._core.settings.autoplayTimeout);
	};

	/**
	 * Sets autoplay in motion.
	 * @private
	 */
	Autoplay.prototype._setAutoPlayInterval = function() {
		this._timeout = this._getNextTimeout();
	};

	/**
	 * Stops the autoplay.
	 * @public
	 */
	Autoplay.prototype.stop = function() {
		if (!this._core.is('rotating')) {
			return;
		}

		window.clearTimeout(this._timeout);
		this._core.leave('rotating');
	};

	/**
	 * Stops the autoplay.
	 * @public
	 */
	Autoplay.prototype.pause = function() {
		if (!this._core.is('rotating')) {
			return;
		}

		this._paused = true;
	};

	/**
	 * Destroys the plugin.
	 */
	Autoplay.prototype.destroy = function() {
		var handler, property;

		this.stop();

		for (handler in this._handlers) {
			this._core.$element.off(handler, this._handlers[handler]);
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.autoplay = Autoplay;

})(window.Zepto || window.jQuery, window, document);

/**
 * Navigation Plugin
 * @version 2.1.0
 * @author Artus Kolanowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {
	'use strict';

	/**
	 * Creates the navigation plugin.
	 * @class The Navigation Plugin
	 * @param {Owl} carousel - The Owl Carousel.
	 */
	var Navigation = function(carousel) {
		/**
		 * Reference to the core.
		 * @protected
		 * @type {Owl}
		 */
		this._core = carousel;

		/**
		 * Indicates whether the plugin is initialized or not.
		 * @protected
		 * @type {Boolean}
		 */
		this._initialized = false;

		/**
		 * The current paging indexes.
		 * @protected
		 * @type {Array}
		 */
		this._pages = [];

		/**
		 * All DOM elements of the user interface.
		 * @protected
		 * @type {Object}
		 */
		this._controls = {};

		/**
		 * Markup for an indicator.
		 * @protected
		 * @type {Array.<String>}
		 */
		this._templates = [];

		/**
		 * The carousel element.
		 * @type {jQuery}
		 */
		this.$element = this._core.$element;

		/**
		 * Overridden methods of the carousel.
		 * @protected
		 * @type {Object}
		 */
		this._overrides = {
			next: this._core.next,
			prev: this._core.prev,
			to: this._core.to
		};

		/**
		 * All event handlers.
		 * @protected
		 * @type {Object}
		 */
		this._handlers = {
			'prepared.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.dotsData) {
					this._templates.push('<div class="' + this._core.settings.dotClass + '">' +
						$(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '</div>');
				}
			}, this),
			'added.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.dotsData) {
					this._templates.splice(e.position, 0, this._templates.pop());
				}
			}, this),
			'remove.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.dotsData) {
					this._templates.splice(e.position, 1);
				}
			}, this),
			'changed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && e.property.name == 'position') {
					this.draw();
				}
			}, this),
			'initialized.owl.carousel': $.proxy(function(e) {
				if (e.namespace && !this._initialized) {
					this._core.trigger('initialize', null, 'navigation');
					this.initialize();
					this.update();
					this.draw();
					this._initialized = true;
					this._core.trigger('initialized', null, 'navigation');
				}
			}, this),
			'refreshed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._initialized) {
					this._core.trigger('refresh', null, 'navigation');
					this.update();
					this.draw();
					this._core.trigger('refreshed', null, 'navigation');
				}
			}, this)
		};

		// set default options
		this._core.options = $.extend({}, Navigation.Defaults, this._core.options);

		// register event handlers
		this.$element.on(this._handlers);
	};

	/**
	 * Default options.
	 * @public
	 * @todo Rename `slideBy` to `navBy`
	 */
	Navigation.Defaults = {
		nav: false,
		navText: [ 'prev', 'next' ],
		navSpeed: false,
		navElement: 'div',
		navContainer: false,
		navContainerClass: 'owl-nav',
		navClass: [ 'owl-prev', 'owl-next' ],
		slideBy: 1,
		dotClass: 'owl-dot',
		dotsClass: 'owl-dots',
		dots: true,
		dotsEach: false,
		dotsData: false,
		dotsSpeed: false,
		dotsContainer: false
	};

	/**
	 * Initializes the layout of the plugin and extends the carousel.
	 * @protected
	 */
	Navigation.prototype.initialize = function() {
		var override,
			settings = this._core.settings;

		// create DOM structure for relative navigation
		this._controls.$relative = (settings.navContainer ? $(settings.navContainer)
			: $('<div>').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled');

		this._controls.$previous = $('<' + settings.navElement + '>')
			.addClass(settings.navClass[0])
			.html(settings.navText[0])
			.prependTo(this._controls.$relative)
			.on('click', $.proxy(function(e) {
				this.prev(settings.navSpeed);
			}, this));
		this._controls.$next = $('<' + settings.navElement + '>')
			.addClass(settings.navClass[1])
			.html(settings.navText[1])
			.appendTo(this._controls.$relative)
			.on('click', $.proxy(function(e) {
				this.next(settings.navSpeed);
			}, this));

		// create DOM structure for absolute navigation
		if (!settings.dotsData) {
			this._templates = [ $('<div>')
				.addClass(settings.dotClass)
				.append($('<span>'))
				.prop('outerHTML') ];
		}

		this._controls.$absolute = (settings.dotsContainer ? $(settings.dotsContainer)
			: $('<div>').addClass(settings.dotsClass).appendTo(this.$element)).addClass('disabled');

		this._controls.$absolute.on('click', 'div', $.proxy(function(e) {
			var index = $(e.target).parent().is(this._controls.$absolute)
				? $(e.target).index() : $(e.target).parent().index();

			e.preventDefault();

			this.to(index, settings.dotsSpeed);
		}, this));

		// override public methods of the carousel
		for (override in this._overrides) {
			this._core[override] = $.proxy(this[override], this);
		}
	};

	/**
	 * Destroys the plugin.
	 * @protected
	 */
	Navigation.prototype.destroy = function() {
		var handler, control, property, override;

		for (handler in this._handlers) {
			this.$element.off(handler, this._handlers[handler]);
		}
		for (control in this._controls) {
			this._controls[control].remove();
		}
		for (override in this.overides) {
			this._core[override] = this._overrides[override];
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	/**
	 * Updates the internal state.
	 * @protected
	 */
	Navigation.prototype.update = function() {
		var i, j, k,
			lower = this._core.clones().length / 2,
			upper = lower + this._core.items().length,
			maximum = this._core.maximum(true),
			settings = this._core.settings,
			size = settings.center || settings.autoWidth || settings.dotsData
				? 1 : settings.dotsEach || settings.items;

		if (settings.slideBy !== 'page') {
			settings.slideBy = Math.min(settings.slideBy, settings.items);
		}

		if (settings.dots || settings.slideBy == 'page') {
			this._pages = [];

			for (i = lower, j = 0, k = 0; i < upper; i++) {
				if (j >= size || j === 0) {
					this._pages.push({
						start: Math.min(maximum, i - lower),
						end: i - lower + size - 1
					});
					if (Math.min(maximum, i - lower) === maximum) {
						break;
					}
					j = 0, ++k;
				}
				j += this._core.mergers(this._core.relative(i));
			}
		}
	};

	/**
	 * Draws the user interface.
	 * @todo The option `dotsData` wont work.
	 * @protected
	 */
	Navigation.prototype.draw = function() {
		var difference,
			settings = this._core.settings,
			disabled = this._core.items().length <= settings.items,
			index = this._core.relative(this._core.current()),
			loop = settings.loop || settings.rewind;

		this._controls.$relative.toggleClass('disabled', !settings.nav || disabled);

		if (settings.nav) {
			this._controls.$previous.toggleClass('disabled', !loop && index <= this._core.minimum(true));
			this._controls.$next.toggleClass('disabled', !loop && index >= this._core.maximum(true));
		}

		this._controls.$absolute.toggleClass('disabled', !settings.dots || disabled);

		if (settings.dots) {
			difference = this._pages.length - this._controls.$absolute.children().length;

			if (settings.dotsData && difference !== 0) {
				this._controls.$absolute.html(this._templates.join(''));
			} else if (difference > 0) {
				this._controls.$absolute.append(new Array(difference + 1).join(this._templates[0]));
			} else if (difference < 0) {
				this._controls.$absolute.children().slice(difference).remove();
			}

			this._controls.$absolute.find('.active').removeClass('active');
			this._controls.$absolute.children().eq($.inArray(this.current(), this._pages)).addClass('active');
		}
	};

	/**
	 * Extends event data.
	 * @protected
	 * @param {Event} event - The event object which gets thrown.
	 */
	Navigation.prototype.onTrigger = function(event) {
		var settings = this._core.settings;

		event.page = {
			index: $.inArray(this.current(), this._pages),
			count: this._pages.length,
			size: settings && (settings.center || settings.autoWidth || settings.dotsData
				? 1 : settings.dotsEach || settings.items)
		};
	};

	/**
	 * Gets the current page position of the carousel.
	 * @protected
	 * @returns {Number}
	 */
	Navigation.prototype.current = function() {
		var current = this._core.relative(this._core.current());
		return $.grep(this._pages, $.proxy(function(page, index) {
			return page.start <= current && page.end >= current;
		}, this)).pop();
	};

	/**
	 * Gets the current succesor/predecessor position.
	 * @protected
	 * @returns {Number}
	 */
	Navigation.prototype.getPosition = function(successor) {
		var position, length,
			settings = this._core.settings;

		if (settings.slideBy == 'page') {
			position = $.inArray(this.current(), this._pages);
			length = this._pages.length;
			successor ? ++position : --position;
			position = this._pages[((position % length) + length) % length].start;
		} else {
			position = this._core.relative(this._core.current());
			length = this._core.items().length;
			successor ? position += settings.slideBy : position -= settings.slideBy;
		}

		return position;
	};

	/**
	 * Slides to the next item or page.
	 * @public
	 * @param {Number} [speed=false] - The time in milliseconds for the transition.
	 */
	Navigation.prototype.next = function(speed) {
		$.proxy(this._overrides.to, this._core)(this.getPosition(true), speed);
	};

	/**
	 * Slides to the previous item or page.
	 * @public
	 * @param {Number} [speed=false] - The time in milliseconds for the transition.
	 */
	Navigation.prototype.prev = function(speed) {
		$.proxy(this._overrides.to, this._core)(this.getPosition(false), speed);
	};

	/**
	 * Slides to the specified item or page.
	 * @public
	 * @param {Number} position - The position of the item or page.
	 * @param {Number} [speed] - The time in milliseconds for the transition.
	 * @param {Boolean} [standard=false] - Whether to use the standard behaviour or not.
	 */
	Navigation.prototype.to = function(position, speed, standard) {
		var length;

		if (!standard && this._pages.length) {
			length = this._pages.length;
			$.proxy(this._overrides.to, this._core)(this._pages[((position % length) + length) % length].start, speed);
		} else {
			$.proxy(this._overrides.to, this._core)(position, speed);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.Navigation = Navigation;

})(window.Zepto || window.jQuery, window, document);

/**
 * Hash Plugin
 * @version 2.1.0
 * @author Artus Kolanowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {
	'use strict';

	/**
	 * Creates the hash plugin.
	 * @class The Hash Plugin
	 * @param {Owl} carousel - The Owl Carousel
	 */
	var Hash = function(carousel) {
		/**
		 * Reference to the core.
		 * @protected
		 * @type {Owl}
		 */
		this._core = carousel;

		/**
		 * Hash index for the items.
		 * @protected
		 * @type {Object}
		 */
		this._hashes = {};

		/**
		 * The carousel element.
		 * @type {jQuery}
		 */
		this.$element = this._core.$element;

		/**
		 * All event handlers.
		 * @protected
		 * @type {Object}
		 */
		this._handlers = {
			'initialized.owl.carousel': $.proxy(function(e) {
				if (e.namespace && this._core.settings.startPosition === 'URLHash') {
					$(window).trigger('hashchange.owl.navigation');
				}
			}, this),
			'prepared.owl.carousel': $.proxy(function(e) {
				if (e.namespace) {
					var hash = $(e.content).find('[data-hash]').addBack('[data-hash]').attr('data-hash');

					if (!hash) {
						return;
					}

					this._hashes[hash] = e.content;
				}
			}, this),
			'changed.owl.carousel': $.proxy(function(e) {
				if (e.namespace && e.property.name === 'position') {
					var current = this._core.items(this._core.relative(this._core.current())),
						hash = $.map(this._hashes, function(item, hash) {
							return item === current ? hash : null;
						}).join();

					if (!hash || window.location.hash.slice(1) === hash) {
						return;
					}

					window.location.hash = hash;
				}
			}, this)
		};

		// set default options
		this._core.options = $.extend({}, Hash.Defaults, this._core.options);

		// register the event handlers
		this.$element.on(this._handlers);

		// register event listener for hash navigation
		$(window).on('hashchange.owl.navigation', $.proxy(function(e) {
			var hash = window.location.hash.substring(1),
				items = this._core.$stage.children(),
				position = this._hashes[hash] && items.index(this._hashes[hash]);

			if (position === undefined || position === this._core.current()) {
				return;
			}

			this._core.to(this._core.relative(position), false, true);
		}, this));
	};

	/**
	 * Default options.
	 * @public
	 */
	Hash.Defaults = {
		URLhashListener: false
	};

	/**
	 * Destroys the plugin.
	 * @public
	 */
	Hash.prototype.destroy = function() {
		var handler, property;

		$(window).off('hashchange.owl.navigation');

		for (handler in this._handlers) {
			this._core.$element.off(handler, this._handlers[handler]);
		}
		for (property in Object.getOwnPropertyNames(this)) {
			typeof this[property] != 'function' && (this[property] = null);
		}
	};

	$.fn.owlCarousel.Constructor.Plugins.Hash = Hash;

})(window.Zepto || window.jQuery, window, document);

/**
 * Support Plugin
 *
 * @version 2.1.0
 * @author Vivid Planet Software GmbH
 * @author Artus Kolanowski
 * @author David Deutsch
 * @license The MIT License (MIT)
 */
;(function($, window, document, undefined) {

	var style = $('<support>').get(0).style,
		prefixes = 'Webkit Moz O ms'.split(' '),
		events = {
			transition: {
				end: {
					WebkitTransition: 'webkitTransitionEnd',
					MozTransition: 'transitionend',
					OTransition: 'oTransitionEnd',
					transition: 'transitionend'
				}
			},
			animation: {
				end: {
					WebkitAnimation: 'webkitAnimationEnd',
					MozAnimation: 'animationend',
					OAnimation: 'oAnimationEnd',
					animation: 'animationend'
				}
			}
		},
		tests = {
			csstransforms: function() {
				return !!test('transform');
			},
			csstransforms3d: function() {
				return !!test('perspective');
			},
			csstransitions: function() {
				return !!test('transition');
			},
			cssanimations: function() {
				return !!test('animation');
			}
		};

	function test(property, prefixed) {
		var result = false,
			upper = property.charAt(0).toUpperCase() + property.slice(1);

		$.each((property + ' ' + prefixes.join(upper + ' ') + upper).split(' '), function(i, property) {
			if (style[property] !== undefined) {
				result = prefixed ? property : true;
				return false;
			}
		});

		return result;
	}

	function prefixed(property) {
		return test(property, true);
	}

	if (tests.csstransitions()) {
		/* jshint -W053 */
		$.support.transition = new String(prefixed('transition'))
		$.support.transition.end = events.transition.end[ $.support.transition ];
	}

	if (tests.cssanimations()) {
		/* jshint -W053 */
		$.support.animation = new String(prefixed('animation'))
		$.support.animation.end = events.animation.end[ $.support.animation ];
	}

	if (tests.csstransforms()) {
		/* jshint -W053 */
		$.support.transform = new String(prefixed('transform'));
		$.support.transform3d = tests.csstransforms3d();
	}

})(window.Zepto || window.jQuery, window, document);PK�uKXSøq��#spiko/assets/js/owl.carousel.min.js/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},a.each(["onResize","onThrottledResize"],a.proxy(function(b,c){this._handlers[c]=a.proxy(this[c],this)},this)),a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a.charAt(0).toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Workers,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}e.Defaults={items:3,loop:!1,center:!1,rewind:!1,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,fallbackEasing:"swing",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Type={Event:"event",State:"state"},e.Plugins={},e.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(a){var b=this.settings.margin||"",c=!this.settings.autoWidth,d=this.settings.rtl,e={width:"auto","margin-left":d?b:"","margin-right":d?"":b};!c&&this.$stage.children().css(e),a.css=e}},{filter:["width","items","settings"],run:function(a){var b=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,c=null,d=this._items.length,e=!this.settings.autoWidth,f=[];for(a.items={merge:!1,width:b};d--;)c=this._mergers[d],c=this.settings.mergeFit&&Math.min(c,this.settings.items)||c,a.items.merge=c>1||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g--;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c<b;)d=f[c-1]||0,e=this._widths[this.relative(c)]+this.settings.margin,f.push(d+e*a);this._coordinates=f}},{filter:["width","items","settings"],run:function(){var a=this.settings.stagePadding,b=this._coordinates,c={width:Math.ceil(Math.abs(b[b.length-1]))+2*a,"padding-left":a||"","padding-right":a||""};this.$stage.css(c)}},{filter:["width","items","settings"],run:function(a){var b=this._coordinates.length,c=!this.settings.autoWidth,d=this.$stage.children();if(c&&a.items.merge)for(;b--;)a.css.width=this._widths[this.relative(b)],d.eq(b).css(a.css);else c&&(a.css.width=a.items.width,d.css(a.css))}},{filter:["items"],run:function(){this._coordinates.length<1&&this.$stage.removeAttr("style")}},{filter:["width","items","settings"],run:function(a){a.current=a.current?this.$stage.children().index(a.current):0,a.current=Math.max(this.minimum(),Math.min(this.maximum(),a.current)),this.reset(a.current)}},{filter:["position"],run:function(){this.animate(this.coordinates(this._current))}},{filter:["width","position","items","settings"],run:function(){var a,b,c,d,e=this.settings.rtl?1:-1,f=2*this.settings.stagePadding,g=this.coordinates(this.current())+f,h=g+this.width()*e,i=[];for(c=0,d=this._coordinates.length;c<d;c++)a=this._coordinates[c-1]||0,b=Math.abs(this._coordinates[c])+f*e,(this.op(a,"<=",g)&&this.op(a,">",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.settings.center&&(this.$stage.children(".center").removeClass("center"),this.$stage.children().eq(this.current()).addClass("center"))}}],e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var b,c,e;b=this.$element.find("img"),c=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,e=this.$element.children(c).width(),b.length&&e<=0&&this.preloadAutoWidthImages(b)}this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+' class="'+this.settings.stageClass+'"/>').wrap('<div class="'+this.settings.stageOuterClass+'"/>'),this.$element.append(this.$stage.parent()),this.replace(this.$element.children().not(this.$stage.parent())),this.$element.is(":visible")?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b<c;)(this._invalidated.all||a.grep(this._pipe[b].filter,d).length>0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){this.enter("refreshing"),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$element.addClass(this.options.refreshClass),this.update(),this.$element.removeClass(this.options.refreshClass),this.leave("refreshing"),this.trigger("refreshed")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.$element.is(":visible")&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),this.settings.responsive!==!1&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)<Math.abs(d.y)&&this.is("valid")||(b.preventDefault(),this.enter("dragging"),this.trigger("drag"))},this)))},e.prototype.onDragMove=function(a){var b=null,c=null,d=null,e=this.difference(this._drag.pointer,this.pointer(a)),f=this.difference(this._drag.stage.start,e);this.is("dragging")&&(a.preventDefault(),this.settings.loop?(b=this.coordinates(this.minimum()),c=this.coordinates(this.maximum()+1)-b,f.x=((f.x-b)%c+c)%c+b):(b=this.settings.rtl?this.coordinates(this.maximum()):this.coordinates(this.minimum()),c=this.settings.rtl?this.coordinates(this.minimum()):this.coordinates(this.maximum()),d=this.settings.pullDrag?-1*e.x/5:0,f.x=Math.max(Math.min(f.x,b+d),c+d)),this._drag.stage.current=f,this.animate(f.x))},e.prototype.onDragEnd=function(b){var d=this.difference(this._drag.pointer,this.pointer(b)),e=this._drag.stage.current,f=d.x>0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var d=-1,e=30,f=this.width(),g=this.coordinates();return this.settings.freeDrag||a.each(g,a.proxy(function(a,h){return"left"===c&&b>h-e&&b<h+e?d=a:"right"===c&&b>h-f-e&&b<h-f+e?d=a+1:this.op(b,"<",h)&&this.op(b,">",g[a+1]||h-f)&&(d="left"===c?a+1:a),d===-1},this)),this.settings.loop||(this.op(b,">",g[this.minimum()])?d=b=this.minimum():this.op(b,"<",g[this.maximum()])&&(d=b=this.maximum())),d},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){a=this.normalize(a),a!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){for(b=this._items.length,c=this._items[--b].width(),d=this.$element.width();b--&&(c+=this._items[b].width()+this.settings.margin,!(c>d)););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2===0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=f*-1*g),a=c+e,d=((a-h)%g+g)%g+h,d!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.$element.is(":visible")&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){a=this.normalize(a,!0),a!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),this.settings.responsive!==!1&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].destroy();this.$stage.children(".cloned").remove(),this.$stage.unwrap(),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$element.removeClass(this.options.refreshClass).removeClass(this.options.loadingClass).removeClass(this.options.loadedClass).removeClass(this.options.rtlClass).removeClass(this.options.dragClass).removeClass(this.options.grabClass).attr("class",this.$element.attr("class").replace(new RegExp(this.options.responsiveClass+"-\\S+\\s","g"),"")).removeData("owl.carousel")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a<c;case">":return d?a<c:a>c;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&a.namespace.indexOf("owl")!==-1?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.$element.is(":visible"),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.$element.is(":visible")!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type))for(var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&e*-1||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);f++<e;)this.load(h/2+this._core.relative(g)),h&&a.each(this._core.clones(this._core.relative(g)),i),g++},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={lazyLoad:!1},e.prototype.load=function(c){var d=this._core.$stage.children().eq(c),e=d&&d.find(".owl-lazy");!e||a.inArray(d.get(0),this._loaded)>-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"==a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.$stage.children().toArray().slice(b,c),e=[],f=0;a.each(d,function(b,c){e.push(a(c).height())}),f=Math.max.apply(null,e),this._core.$stage.parent().height(f).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?'style="width:'+c.width+"px;height:"+c.height+'px;"':"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(a){e='<div class="owl-video-play-icon"></div>',d=k.lazyLoad?'<div class="owl-video-tn '+j+'" '+i+'="'+a+'"></div>':'<div class="owl-video-tn" style="opacity:1;background-image:url('+a+')"></div>',b.after(d),b.after(e)};if(b.wrap('<div class="owl-video-wrapper"'+g+"></div>"),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),"youtube"===f.type?c='<iframe width="'+g+'" height="'+h+'" src="//www.youtube.com/embed/'+f.id+"?autoplay=1&rel=0&v="+f.id+'" frameborder="0" allowfullscreen></iframe>':"vimeo"===f.type?c='<iframe src="//player.vimeo.com/video/'+f.id+'?autoplay=1" width="'+g+'" height="'+h+'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>':"vzaar"===f.type&&(c='<iframe frameborder="0"height="'+h+'"width="'+g+'" allowfullscreen mozallowfullscreen webkitAllowFullScreen src="//view.vzaar.com/'+f.id+'/player?autoplay=true"></iframe>'),a('<div class="owl-video-frame">'+c+"</div>").insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},
a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._timeout=null,this._paused=!1,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._core.settings.autoplay&&this._setAutoPlayInterval()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype.play=function(a,b){this._paused=!1,this._core.is("rotating")||(this._core.enter("rotating"),this._setAutoPlayInterval())},e.prototype._getNextTimeout=function(d,e){return this._timeout&&b.clearTimeout(this._timeout),b.setTimeout(a.proxy(function(){this._paused||this._core.is("busy")||this._core.is("interacting")||c.hidden||this._core.next(e||this._core.settings.autoplaySpeed)},this),d||this._core.settings.autoplayTimeout)},e.prototype._setAutoPlayInterval=function(){this._timeout=this._getNextTimeout()},e.prototype.stop=function(){this._core.is("rotating")&&(b.clearTimeout(this._timeout),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&(this._paused=!0)},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('<div class="'+this._core.settings.dotClass+'">'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"</div>")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:["prev","next"],navSpeed:!1,navElement:"div",navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("<div>").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a("<div>").addClass(c.dotClass).append(a("<span>")).prop("outerHTML")]),this._controls.$absolute=(c.dotsContainer?a(c.dotsContainer):a("<div>").addClass(c.dotsClass).appendTo(this.$element)).addClass("disabled"),this._controls.$absolute.on("click","div",a.proxy(function(b){var d=a(b.target).parent().is(this._controls.$absolute)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(d,c.dotsSpeed)},this));for(b in this._overrides)this._core[b]=a.proxy(this[b],this)},e.prototype.destroy=function(){var a,b,c,d;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},e.prototype.update=function(){var a,b,c,d=this._core.clones().length/2,e=d+this._core.items().length,f=this._core.maximum(!0),g=this._core.settings,h=g.center||g.autoWidth||g.dotsData?1:g.dotsEach||g.items;if("page"!==g.slideBy&&(g.slideBy=Math.min(g.slideBy,g.items)),g.dots||"page"==g.slideBy)for(this._pages=[],a=d,b=0,c=0;a<e;a++){if(b>=h||0===b){if(this._pages.push({start:Math.min(f,a-d),end:a-d+h-1}),Math.min(f,a-d)===f)break;b=0,++c}b+=this._core.mergers(this._core.relative(a))}},e.prototype.draw=function(){var b,c=this._core.settings,d=this._core.items().length<=c.items,e=this._core.relative(this._core.current()),f=c.loop||c.rewind;this._controls.$relative.toggleClass("disabled",!c.nav||d),c.nav&&(this._controls.$previous.toggleClass("disabled",!f&&e<=this._core.minimum(!0)),this._controls.$next.toggleClass("disabled",!f&&e>=this._core.maximum(!0))),this._controls.$absolute.toggleClass("disabled",!c.dots||d),c.dots&&(b=this._pages.length-this._controls.$absolute.children().length,c.dotsData&&0!==b?this._controls.$absolute.html(this._templates.join("")):b>0?this._controls.$absolute.append(new Array(b+1).join(this._templates[0])):b<0&&this._controls.$absolute.children().slice(b).remove(),this._controls.$absolute.find(".active").removeClass("active"),this._controls.$absolute.children().eq(a.inArray(this.current(),this._pages)).addClass("active"))},e.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotsData?1:c.dotsEach||c.items)}},e.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,a.proxy(function(a,c){return a.start<=b&&a.end>=b},this)).pop()},e.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},e.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},e.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},e.prototype.to=function(b,c,d){var e;!d&&this._pages.length?(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c)):a.proxy(this._overrides.to,this._core)(b,c)},a.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(c){this._core=c,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(c){c.namespace&&"URLHash"===this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find("[data-hash]").addBack("[data-hash]").attr("data-hash");if(!c)return;this._hashes[c]=b.content}},this),"changed.owl.carousel":a.proxy(function(c){if(c.namespace&&"position"===c.property.name){var d=this._core.items(this._core.relative(this._core.current())),e=a.map(this._hashes,function(a,b){return a===d?b:null}).join();if(!e||b.location.hash.slice(1)===e)return;b.location.hash=e}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(a){var c=b.location.hash.substring(1),e=this._core.$stage.children(),f=this._hashes[c]&&e.index(this._hashes[c]);f!==d&&f!==this._core.current()&&this._core.to(this._core.relative(f),!1,!0)},this))};e.Defaults={URLhashListener:!1},e.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){function e(b,c){var e=!1,f=b.charAt(0).toUpperCase()+b.slice(1);return a.each((b+" "+h.join(f+" ")+f).split(" "),function(a,b){if(g[b]!==d)return e=!c||b,!1}),e}function f(a){return e(a,!0)}var g=a("<support>").get(0).style,h="Webkit Moz O ms".split(" "),i={transition:{end:{WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",transition:"transitionend"}},animation:{end:{WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd",animation:"animationend"}}},j={csstransforms:function(){return!!e("transform")},csstransforms3d:function(){return!!e("perspective")},csstransitions:function(){return!!e("transition")},cssanimations:function(){return!!e("animation")}};j.csstransitions()&&(a.support.transition=new String(f("transition")),a.support.transition.end=i.transition.end[a.support.transition]),j.cssanimations()&&(a.support.animation=new String(f("animation")),a.support.animation.end=i.animation.end[a.support.animation]),j.csstransforms()&&(a.support.transform=new String(f("transform")),a.support.transform3d=j.csstransforms3d())}(window.Zepto||window.jQuery,window,document);PK�uKXʙ� spiko/assets/js/widget-custom.js(function ($){
jQuery(window).on('load', function() {
	 /* Preloader */
    setTimeout(function(){
          jQuery('body').addClass('loaded');
        }, 1500);
       jQuery('<div class="section-separator">').insertAfter(".sidebar .wp-block-search .wp-block-search__label,.sidebar .widget.widget_block h1,.sidebar .widget.widget_block h2,.sidebar .widget h2,.sidebar .widget.widget_block h3,.sidebar .widget.widget_block h4,.sidebar .widget.widget_block h5,.sidebar .widget.widget_block h6");
});

	}(jQuery));	PK�uKXfO���;spiko/assets/js/smartmenus/jquery.smartmenus.bootstrap-4.js/*!
 * SmartMenus jQuery Plugin Bootstrap 4 Addon - v0.1.0 - September 17, 2017
 * http://www.smartmenus.org/
 *
 * Copyright Vasil Dinkov, Vadikom Web Ltd.
 * http://vadikom.com
 *
 * Licensed MIT
 */

(function(factory) {
	if (typeof define === 'function' && define.amd) {
		// AMD
		define(['jquery', 'smartmenus'], factory);
	} else if (typeof module === 'object' && typeof module.exports === 'object') {
		// CommonJS
		module.exports = factory(require('jquery'));
	} else {
		// Global jQuery
		factory(jQuery);
	}
} (function($) {

	$.extend($.SmartMenus.Bootstrap = {}, {
		keydownFix: false,
		init: function() {
			// init all navbars that don't have the "data-sm-skip" attribute set
			var $navbars = $('ul.navbar-nav:not([data-sm-skip])');
			$navbars.each(function() {
				var $this = $(this),
					obj = $this.data('smartmenus');
				// if this navbar is not initialized
				if (!obj) {
					var skipBehavior = $this.is('[data-sm-skip-collapsible-behavior]'),
						rightAligned = $this.hasClass('ml-auto') || $this.prevAll('.mr-auto').length > 0;

					$this.smartmenus({
							// these are some good default options that should work for all
							subMenusSubOffsetX: 2,
							subMenusSubOffsetY: -9,
							subIndicators: !skipBehavior,
							collapsibleShowFunction: null,
							collapsibleHideFunction: null,
							rightToLeftSubMenus: rightAligned,
							bottomToTopSubMenus: $this.closest('.fixed-bottom').length > 0,
							// custom option(s) for the Bootstrap 4 addon
							bootstrapHighlightClasses: 'text-dark bg-light'
						})
						.on({
							// set/unset proper Bootstrap classes for some menu elements
							'show.smapi': function(e, menu) {
								var $menu = $(menu),
									$scrollArrows = $menu.dataSM('scroll-arrows');
								if ($scrollArrows) {
									$scrollArrows.css('background-color', $menu.css('background-color'));
								}
								$menu.parent().addClass('show');
								if (obj.opts.keepHighlighted && $menu.dataSM('level') > 2) {
									$menu.prevAll('a').addClass(obj.opts.bootstrapHighlightClasses);
								}
							},
							'hide.smapi': function(e, menu) {
								var $menu = $(menu);
								$menu.parent().removeClass('show');
								if (obj.opts.keepHighlighted && $menu.dataSM('level') > 2) {
									$menu.prevAll('a').removeClass(obj.opts.bootstrapHighlightClasses);
								}
							}
						});

					obj = $this.data('smartmenus');

					function onInit() {
						// set Bootstrap's "active" class to SmartMenus "current" items (should someone decide to enable markCurrentItem: true)
						$this.find('a.current').each(function() {
							var $this = $(this);
							// dropdown items require the class to be set to the A's while for nav items it should be set to the parent LI's
							($this.hasClass('dropdown-item') ? $this : $this.parent()).addClass('active');
						});
						// parent items fixes
						$this.find('a.has-submenu').each(function() {
							var $this = $(this);
							// remove Bootstrap required attributes that might cause conflicting issues with the SmartMenus script
							if ($this.is('[data-toggle="dropdown"]')) {
								$this.dataSM('bs-data-toggle-dropdown', true).removeAttr('data-toggle');
							}
							// remove Bootstrap's carets generating class
							if (!skipBehavior && $this.hasClass('dropdown-toggle')) {
								$this.dataSM('bs-dropdown-toggle', true).removeClass('dropdown-toggle');
							}
						});
					}

					onInit();

					function onBeforeDestroy() {
						$this.find('a.current').each(function() {
							var $this = $(this);
							($this.hasClass('active') ? $this : $this.parent()).removeClass('active');
						});
						$this.find('a.has-submenu').each(function() {
							var $this = $(this);
							if ($this.dataSM('bs-dropdown-toggle')) {
								$this.addClass('dropdown-toggle').removeDataSM('bs-dropdown-toggle');
							}
							if ($this.dataSM('bs-data-toggle-dropdown')) {
								$this.attr('data-toggle', 'dropdown').removeDataSM('bs-data-toggle-dropdown');
							}
						});
					}

					// custom "refresh" method for Bootstrap
					obj.refresh = function() {
						$.SmartMenus.prototype.refresh.call(this);
						onInit();
						// update collapsible detection
						detectCollapsible(true);
					};

					// custom "destroy" method for Bootstrap
					obj.destroy = function(refresh) {
						onBeforeDestroy();
						$.SmartMenus.prototype.destroy.call(this, refresh);
					};

					// keep Bootstrap's default behavior (i.e. use the whole item area just as a sub menu toggle)
					if (skipBehavior) {
						obj.opts.collapsibleBehavior = 'toggle';
					}

					// onresize detect when the navbar becomes collapsible and add it the "sm-collapsible" class
					var winW;
					function detectCollapsible(force) {
						var newW = obj.getViewportWidth();
						if (newW != winW || force) {
							if (obj.isCollapsible()) {
								$this.addClass('sm-collapsible');
							} else {
								$this.removeClass('sm-collapsible');
							}
							winW = newW;
						}
					}
					detectCollapsible();
					$(window).on('resize.smartmenus' + obj.rootId, detectCollapsible);
				}
			});
			// keydown fix for Bootstrap 4 conflict
			if ($navbars.length && !$.SmartMenus.Bootstrap.keydownFix) {
				// unhook BS keydown handler for all dropdowns
				$(document).off('keydown.bs.dropdown.data-api', '.dropdown-menu');
				// restore BS keydown handler for dropdowns that are not inside SmartMenus navbars
				// SmartMenus won't add the "show" class so it's handy here
				if ($.fn.dropdown && $.fn.dropdown.Constructor) {
					$(document).on('keydown.bs.dropdown.data-api', '.dropdown-menu.show', $.fn.dropdown.Constructor._dataApiKeydownHandler);
				}
				$.SmartMenus.Bootstrap.keydownFix = true;
			}
		}
	});

	// init ondomready
	$($.SmartMenus.Bootstrap.init);

	return $;
}));
PK�uKXfO���=spiko/assets/js/smartmenus/jquery.smartmenus.bootstrap-4_1.js/*!
 * SmartMenus jQuery Plugin Bootstrap 4 Addon - v0.1.0 - September 17, 2017
 * http://www.smartmenus.org/
 *
 * Copyright Vasil Dinkov, Vadikom Web Ltd.
 * http://vadikom.com
 *
 * Licensed MIT
 */

(function(factory) {
	if (typeof define === 'function' && define.amd) {
		// AMD
		define(['jquery', 'smartmenus'], factory);
	} else if (typeof module === 'object' && typeof module.exports === 'object') {
		// CommonJS
		module.exports = factory(require('jquery'));
	} else {
		// Global jQuery
		factory(jQuery);
	}
} (function($) {

	$.extend($.SmartMenus.Bootstrap = {}, {
		keydownFix: false,
		init: function() {
			// init all navbars that don't have the "data-sm-skip" attribute set
			var $navbars = $('ul.navbar-nav:not([data-sm-skip])');
			$navbars.each(function() {
				var $this = $(this),
					obj = $this.data('smartmenus');
				// if this navbar is not initialized
				if (!obj) {
					var skipBehavior = $this.is('[data-sm-skip-collapsible-behavior]'),
						rightAligned = $this.hasClass('ml-auto') || $this.prevAll('.mr-auto').length > 0;

					$this.smartmenus({
							// these are some good default options that should work for all
							subMenusSubOffsetX: 2,
							subMenusSubOffsetY: -9,
							subIndicators: !skipBehavior,
							collapsibleShowFunction: null,
							collapsibleHideFunction: null,
							rightToLeftSubMenus: rightAligned,
							bottomToTopSubMenus: $this.closest('.fixed-bottom').length > 0,
							// custom option(s) for the Bootstrap 4 addon
							bootstrapHighlightClasses: 'text-dark bg-light'
						})
						.on({
							// set/unset proper Bootstrap classes for some menu elements
							'show.smapi': function(e, menu) {
								var $menu = $(menu),
									$scrollArrows = $menu.dataSM('scroll-arrows');
								if ($scrollArrows) {
									$scrollArrows.css('background-color', $menu.css('background-color'));
								}
								$menu.parent().addClass('show');
								if (obj.opts.keepHighlighted && $menu.dataSM('level') > 2) {
									$menu.prevAll('a').addClass(obj.opts.bootstrapHighlightClasses);
								}
							},
							'hide.smapi': function(e, menu) {
								var $menu = $(menu);
								$menu.parent().removeClass('show');
								if (obj.opts.keepHighlighted && $menu.dataSM('level') > 2) {
									$menu.prevAll('a').removeClass(obj.opts.bootstrapHighlightClasses);
								}
							}
						});

					obj = $this.data('smartmenus');

					function onInit() {
						// set Bootstrap's "active" class to SmartMenus "current" items (should someone decide to enable markCurrentItem: true)
						$this.find('a.current').each(function() {
							var $this = $(this);
							// dropdown items require the class to be set to the A's while for nav items it should be set to the parent LI's
							($this.hasClass('dropdown-item') ? $this : $this.parent()).addClass('active');
						});
						// parent items fixes
						$this.find('a.has-submenu').each(function() {
							var $this = $(this);
							// remove Bootstrap required attributes that might cause conflicting issues with the SmartMenus script
							if ($this.is('[data-toggle="dropdown"]')) {
								$this.dataSM('bs-data-toggle-dropdown', true).removeAttr('data-toggle');
							}
							// remove Bootstrap's carets generating class
							if (!skipBehavior && $this.hasClass('dropdown-toggle')) {
								$this.dataSM('bs-dropdown-toggle', true).removeClass('dropdown-toggle');
							}
						});
					}

					onInit();

					function onBeforeDestroy() {
						$this.find('a.current').each(function() {
							var $this = $(this);
							($this.hasClass('active') ? $this : $this.parent()).removeClass('active');
						});
						$this.find('a.has-submenu').each(function() {
							var $this = $(this);
							if ($this.dataSM('bs-dropdown-toggle')) {
								$this.addClass('dropdown-toggle').removeDataSM('bs-dropdown-toggle');
							}
							if ($this.dataSM('bs-data-toggle-dropdown')) {
								$this.attr('data-toggle', 'dropdown').removeDataSM('bs-data-toggle-dropdown');
							}
						});
					}

					// custom "refresh" method for Bootstrap
					obj.refresh = function() {
						$.SmartMenus.prototype.refresh.call(this);
						onInit();
						// update collapsible detection
						detectCollapsible(true);
					};

					// custom "destroy" method for Bootstrap
					obj.destroy = function(refresh) {
						onBeforeDestroy();
						$.SmartMenus.prototype.destroy.call(this, refresh);
					};

					// keep Bootstrap's default behavior (i.e. use the whole item area just as a sub menu toggle)
					if (skipBehavior) {
						obj.opts.collapsibleBehavior = 'toggle';
					}

					// onresize detect when the navbar becomes collapsible and add it the "sm-collapsible" class
					var winW;
					function detectCollapsible(force) {
						var newW = obj.getViewportWidth();
						if (newW != winW || force) {
							if (obj.isCollapsible()) {
								$this.addClass('sm-collapsible');
							} else {
								$this.removeClass('sm-collapsible');
							}
							winW = newW;
						}
					}
					detectCollapsible();
					$(window).on('resize.smartmenus' + obj.rootId, detectCollapsible);
				}
			});
			// keydown fix for Bootstrap 4 conflict
			if ($navbars.length && !$.SmartMenus.Bootstrap.keydownFix) {
				// unhook BS keydown handler for all dropdowns
				$(document).off('keydown.bs.dropdown.data-api', '.dropdown-menu');
				// restore BS keydown handler for dropdowns that are not inside SmartMenus navbars
				// SmartMenus won't add the "show" class so it's handy here
				if ($.fn.dropdown && $.fn.dropdown.Constructor) {
					$(document).on('keydown.bs.dropdown.data-api', '.dropdown-menu.show', $.fn.dropdown.Constructor._dataApiKeydownHandler);
				}
				$.SmartMenus.Bootstrap.keydownFix = true;
			}
		}
	});

	// init ondomready
	$($.SmartMenus.Bootstrap.init);

	return $;
}));
PK�uKX�+n�n�/spiko/assets/js/smartmenus/jquery.smartmenus.js/*!
 * SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017
 * http://www.smartmenus.org/
 *
 * Copyright Vasil Dinkov, Vadikom Web Ltd.
 * http://vadikom.com
 *
 * Licensed MIT
 */

(function(factory) {
	if (typeof define === 'function' && define.amd) {
		// AMD
		define(['jquery'], factory);
	} else if (typeof module === 'object' && typeof module.exports === 'object') {
		// CommonJS
		module.exports = factory(require('jquery'));
	} else {
		// Global jQuery
		factory(jQuery);
	}
} (function($) {

	var menuTrees = [],
		mouse = false, // optimize for touch by default - we will detect for mouse input
		touchEvents = 'ontouchstart' in window, // we use this just to choose between toucn and pointer events, not for touch screen detection
		mouseDetectionEnabled = false,
		requestAnimationFrame = window.requestAnimationFrame || function(callback) { return setTimeout(callback, 1000 / 60); },
		cancelAnimationFrame = window.cancelAnimationFrame || function(id) { clearTimeout(id); },
		canAnimate = !!$.fn.animate;

	// Handle detection for mouse input (i.e. desktop browsers, tablets with a mouse, etc.)
	function initMouseDetection(disable) {
		var eNS = '.smartmenus_mouse';
		if (!mouseDetectionEnabled && !disable) {
			// if we get two consecutive mousemoves within 2 pixels from each other and within 300ms, we assume a real mouse/cursor is present
			// in practice, this seems like impossible to trick unintentianally with a real mouse and a pretty safe detection on touch devices (even with older browsers that do not support touch events)
			var firstTime = true,
				lastMove = null,
				events = {
					'mousemove': function(e) {
						var thisMove = { x: e.pageX, y: e.pageY, timeStamp: new Date().getTime() };
						if (lastMove) {
							var deltaX = Math.abs(lastMove.x - thisMove.x),
								deltaY = Math.abs(lastMove.y - thisMove.y);
		 					if ((deltaX > 0 || deltaY > 0) && deltaX <= 2 && deltaY <= 2 && thisMove.timeStamp - lastMove.timeStamp <= 300) {
								mouse = true;
								// if this is the first check after page load, check if we are not over some item by chance and call the mouseenter handler if yes
								if (firstTime) {
									var $a = $(e.target).closest('a');
									if ($a.is('a')) {
										$.each(menuTrees, function() {
											if ($.contains(this.$root[0], $a[0])) {
												this.itemEnter({ currentTarget: $a[0] });
												return false;
											}
										});
									}
									firstTime = false;
								}
							}
						}
						lastMove = thisMove;
					}
				};
			events[touchEvents ? 'touchstart' : 'pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut'] = function(e) {
				if (isTouchEvent(e.originalEvent)) {
					mouse = false;
				}
			};
			$(document).on(getEventsNS(events, eNS));
			mouseDetectionEnabled = true;
		} else if (mouseDetectionEnabled && disable) {
			$(document).off(eNS);
			mouseDetectionEnabled = false;
		}
	}

	function isTouchEvent(e) {
		return !/^(4|mouse)$/.test(e.pointerType);
	}

	// returns a jQuery on() ready object
	function getEventsNS(events, eNS) {
		if (!eNS) {
			eNS = '';
		}
		var eventsNS = {};
		for (var i in events) {
			eventsNS[i.split(' ').join(eNS + ' ') + eNS] = events[i];
		}
		return eventsNS;
	}

	$.SmartMenus = function(elm, options) {
		this.$root = $(elm);
		this.opts = options;
		this.rootId = ''; // internal
		this.accessIdPrefix = '';
		this.$subArrow = null;
		this.activatedItems = []; // stores last activated A's for each level
		this.visibleSubMenus = []; // stores visible sub menus UL's (might be in no particular order)
		this.showTimeout = 0;
		this.hideTimeout = 0;
		this.scrollTimeout = 0;
		this.clickActivated = true;
		this.focusActivated = true;
		this.zIndexInc = 0;
		this.idInc = 0;
		this.$firstLink = null; // we'll use these for some tests
		this.$firstSub = null; // at runtime so we'll cache them
		this.disabled = false;
		this.$disableOverlay = null;
		this.$touchScrollingSub = null;
		this.cssTransforms3d = 'perspective' in elm.style || 'webkitPerspective' in elm.style;
		this.wasCollapsible = false;
		this.init();
	};

	$.extend($.SmartMenus, {
		hideAll: function() {
			$.each(menuTrees, function() {
				this.menuHideAll();
			});
		},
		destroy: function() {
			while (menuTrees.length) {
				menuTrees[0].destroy();
			}
			initMouseDetection(true);
		},
		prototype: {
			init: function(refresh) {
				var self = this;

				if (!refresh) {
					menuTrees.push(this);

					this.rootId = (new Date().getTime() + Math.random() + '').replace(/\D/g, '');
					this.accessIdPrefix = 'sm-' + this.rootId + '-';

					if (this.$root.hasClass('sm-rtl')) {
						this.opts.rightToLeftSubMenus = true;
					}

					// init root (main menu)
					var eNS = '.smartmenus';
					this.$root
						.data('smartmenus', this)
						.attr('data-smartmenus-id', this.rootId)
						.dataSM('level', 1)
						.on(getEventsNS({
							'mouseover focusin': $.proxy(this.rootOver, this),
							'mouseout focusout': $.proxy(this.rootOut, this),
							'keydown': $.proxy(this.rootKeyDown, this)
						}, eNS))
						.on(getEventsNS({
							'mouseenter': $.proxy(this.itemEnter, this),
							'mouseleave': $.proxy(this.itemLeave, this),
							'mousedown': $.proxy(this.itemDown, this),
							'focus': $.proxy(this.itemFocus, this),
							'blur': $.proxy(this.itemBlur, this),
							'click': $.proxy(this.itemClick, this)
						}, eNS), 'a');

					// hide menus on tap or click outside the root UL
					eNS += this.rootId;
					if (this.opts.hideOnClick) {
						$(document).on(getEventsNS({
							'touchstart': $.proxy(this.docTouchStart, this),
							'touchmove': $.proxy(this.docTouchMove, this),
							'touchend': $.proxy(this.docTouchEnd, this),
							// for Opera Mobile < 11.5, webOS browser, etc. we'll check click too
							'click': $.proxy(this.docClick, this)
						}, eNS));
					}
					// hide sub menus on resize
					$(window).on(getEventsNS({ 'resize orientationchange': $.proxy(this.winResize, this) }, eNS));

					if (this.opts.subIndicators) {
						this.$subArrow = $('<span/>').addClass('sub-arrow');
						if (this.opts.subIndicatorsText) {
							this.$subArrow.html(this.opts.subIndicatorsText);
						}
					}

					// make sure mouse detection is enabled
					initMouseDetection();
				}

				// init sub menus
				this.$firstSub = this.$root.find('ul').each(function() { self.menuInit($(this)); }).eq(0);

				this.$firstLink = this.$root.find('a').eq(0);

				// find current item
				if (this.opts.markCurrentItem) {
					var reDefaultDoc = /(index|default)\.[^#\?\/]*/i,
						reHash = /#.*/,
						locHref = window.location.href.replace(reDefaultDoc, ''),
						locHrefNoHash = locHref.replace(reHash, '');
					this.$root.find('a').each(function() {
						var href = this.href.replace(reDefaultDoc, ''),
							$this = $(this);
						if (href == locHref || href == locHrefNoHash) {
							$this.addClass('current');
							if (self.opts.markCurrentTree) {
								$this.parentsUntil('[data-smartmenus-id]', 'ul').each(function() {
									$(this).dataSM('parent-a').addClass('current');
								});
							}
						}
					});
				}

				// save initial state
				this.wasCollapsible = this.isCollapsible();
			},
			destroy: function(refresh) {
				if (!refresh) {
					var eNS = '.smartmenus';
					this.$root
						.removeData('smartmenus')
						.removeAttr('data-smartmenus-id')
						.removeDataSM('level')
						.off(eNS);
					eNS += this.rootId;
					$(document).off(eNS);
					$(window).off(eNS);
					if (this.opts.subIndicators) {
						this.$subArrow = null;
					}
				}
				this.menuHideAll();
				var self = this;
				this.$root.find('ul').each(function() {
						var $this = $(this);
						if ($this.dataSM('scroll-arrows')) {
							$this.dataSM('scroll-arrows').remove();
						}
						if ($this.dataSM('shown-before')) {
							if (self.opts.subMenusMinWidth || self.opts.subMenusMaxWidth) {
								$this.css({ width: '', minWidth: '', maxWidth: '' }).removeClass('sm-nowrap');
							}
							if ($this.dataSM('scroll-arrows')) {
								$this.dataSM('scroll-arrows').remove();
							}
							$this.css({ zIndex: '', top: '', left: '', marginLeft: '', marginTop: '', display: '' });
						}
						if (($this.attr('id') || '').indexOf(self.accessIdPrefix) == 0) {
							$this.removeAttr('id');
						}
					})
					.removeDataSM('in-mega')
					.removeDataSM('shown-before')
					.removeDataSM('scroll-arrows')
					.removeDataSM('parent-a')
					.removeDataSM('level')
					.removeDataSM('beforefirstshowfired')
					.removeAttr('role')
					.removeAttr('aria-hidden')
					.removeAttr('aria-labelledby')
					.removeAttr('aria-expanded');
				this.$root.find('a.has-submenu').each(function() {
						var $this = $(this);
						if ($this.attr('id').indexOf(self.accessIdPrefix) == 0) {
							$this.removeAttr('id');
						}
					})
					.removeClass('has-submenu')
					.removeDataSM('sub')
					.removeAttr('aria-haspopup')
					.removeAttr('aria-controls')
					.removeAttr('aria-expanded')
					.closest('li').removeDataSM('sub');
				if (this.opts.subIndicators) {
					this.$root.find('span.sub-arrow').remove();
				}
				if (this.opts.markCurrentItem) {
					this.$root.find('a.current').removeClass('current');
				}
				if (!refresh) {
					this.$root = null;
					this.$firstLink = null;
					this.$firstSub = null;
					if (this.$disableOverlay) {
						this.$disableOverlay.remove();
						this.$disableOverlay = null;
					}
					menuTrees.splice($.inArray(this, menuTrees), 1);
				}
			},
			disable: function(noOverlay) {
				if (!this.disabled) {
					this.menuHideAll();
					// display overlay over the menu to prevent interaction
					if (!noOverlay && !this.opts.isPopup && this.$root.is(':visible')) {
						var pos = this.$root.offset();
						this.$disableOverlay = $('<div class="sm-jquery-disable-overlay"/>').css({
							position: 'absolute',
							top: pos.top,
							left: pos.left,
							width: this.$root.outerWidth(),
							height: this.$root.outerHeight(),
							zIndex: this.getStartZIndex(true),
							opacity: 0
						}).appendTo(document.body);
					}
					this.disabled = true;
				}
			},
			docClick: function(e) {
				if (this.$touchScrollingSub) {
					this.$touchScrollingSub = null;
					return;
				}
				// hide on any click outside the menu or on a menu link
				if (this.visibleSubMenus.length && !$.contains(this.$root[0], e.target) || $(e.target).closest('a').length) {
					this.menuHideAll();
				}
			},
			docTouchEnd: function(e) {
				if (!this.lastTouch) {
					return;
				}
				if (this.visibleSubMenus.length && (this.lastTouch.x2 === undefined || this.lastTouch.x1 == this.lastTouch.x2) && (this.lastTouch.y2 === undefined || this.lastTouch.y1 == this.lastTouch.y2) && (!this.lastTouch.target || !$.contains(this.$root[0], this.lastTouch.target))) {
					if (this.hideTimeout) {
						clearTimeout(this.hideTimeout);
						this.hideTimeout = 0;
					}
					// hide with a delay to prevent triggering accidental unwanted click on some page element
					var self = this;
					this.hideTimeout = setTimeout(function() { self.menuHideAll(); }, 350);
				}
				this.lastTouch = null;
			},
			docTouchMove: function(e) {
				if (!this.lastTouch) {
					return;
				}
				var touchPoint = e.originalEvent.touches[0];
				this.lastTouch.x2 = touchPoint.pageX;
				this.lastTouch.y2 = touchPoint.pageY;
			},
			docTouchStart: function(e) {
				var touchPoint = e.originalEvent.touches[0];
				this.lastTouch = { x1: touchPoint.pageX, y1: touchPoint.pageY, target: touchPoint.target };
			},
			enable: function() {
				if (this.disabled) {
					if (this.$disableOverlay) {
						this.$disableOverlay.remove();
						this.$disableOverlay = null;
					}
					this.disabled = false;
				}
			},
			getClosestMenu: function(elm) {
				var $closestMenu = $(elm).closest('ul');
				while ($closestMenu.dataSM('in-mega')) {
					$closestMenu = $closestMenu.parent().closest('ul');
				}
				return $closestMenu[0] || null;
			},
			getHeight: function($elm) {
				return this.getOffset($elm, true);
			},
			// returns precise width/height float values
			getOffset: function($elm, height) {
				var old;
				if ($elm.css('display') == 'none') {
					old = { position: $elm[0].style.position, visibility: $elm[0].style.visibility };
					$elm.css({ position: 'absolute', visibility: 'hidden' }).show();
				}
				var box = $elm[0].getBoundingClientRect && $elm[0].getBoundingClientRect(),
					val = box && (height ? box.height || box.bottom - box.top : box.width || box.right - box.left);
				if (!val && val !== 0) {
					val = height ? $elm[0].offsetHeight : $elm[0].offsetWidth;
				}
				if (old) {
					$elm.hide().css(old);
				}
				return val;
			},
			getStartZIndex: function(root) {
				var zIndex = parseInt(this[root ? '$root' : '$firstSub'].css('z-index'));
				if (!root && isNaN(zIndex)) {
					zIndex = parseInt(this.$root.css('z-index'));
				}
				return !isNaN(zIndex) ? zIndex : 1;
			},
			getTouchPoint: function(e) {
				return e.touches && e.touches[0] || e.changedTouches && e.changedTouches[0] || e;
			},
			getViewport: function(height) {
				var name = height ? 'Height' : 'Width',
					val = document.documentElement['client' + name],
					val2 = window['inner' + name];
				if (val2) {
					val = Math.min(val, val2);
				}
				return val;
			},
			getViewportHeight: function() {
				return this.getViewport(true);
			},
			getViewportWidth: function() {
				return this.getViewport();
			},
			getWidth: function($elm) {
				return this.getOffset($elm);
			},
			handleEvents: function() {
				return !this.disabled && this.isCSSOn();
			},
			handleItemEvents: function($a) {
				return this.handleEvents() && !this.isLinkInMegaMenu($a);
			},
			isCollapsible: function() {
				return this.$firstSub.css('position') == 'static';
			},
			isCSSOn: function() {
				return this.$firstLink.css('display') != 'inline';
			},
			isFixed: function() {
				var isFixed = this.$root.css('position') == 'fixed';
				if (!isFixed) {
					this.$root.parentsUntil('body').each(function() {
						if ($(this).css('position') == 'fixed') {
							isFixed = true;
							return false;
						}
					});
				}
				return isFixed;
			},
			isLinkInMegaMenu: function($a) {
				return $(this.getClosestMenu($a[0])).hasClass('mega-menu');
			},
			isTouchMode: function() {
				return !mouse || this.opts.noMouseOver || this.isCollapsible();
			},
			itemActivate: function($a, hideDeeperSubs) {
				var $ul = $a.closest('ul'),
					level = $ul.dataSM('level');
				// if for some reason the parent item is not activated (e.g. this is an API call to activate the item), activate all parent items first
				if (level > 1 && (!this.activatedItems[level - 2] || this.activatedItems[level - 2][0] != $ul.dataSM('parent-a')[0])) {
					var self = this;
					$($ul.parentsUntil('[data-smartmenus-id]', 'ul').get().reverse()).add($ul).each(function() {
						self.itemActivate($(this).dataSM('parent-a'));
					});
				}
				// hide any visible deeper level sub menus
				if (!this.isCollapsible() || hideDeeperSubs) {
					this.menuHideSubMenus(!this.activatedItems[level - 1] || this.activatedItems[level - 1][0] != $a[0] ? level - 1 : level);
				}
				// save new active item for this level
				this.activatedItems[level - 1] = $a;
				if (this.$root.triggerHandler('activate.smapi', $a[0]) === false) {
					return;
				}
				// show the sub menu if this item has one
				var $sub = $a.dataSM('sub');
				if ($sub && (this.isTouchMode() || (!this.opts.showOnClick || this.clickActivated))) {
					this.menuShow($sub);
				}
			},
			itemBlur: function(e) {
				var $a = $(e.currentTarget);
				if (!this.handleItemEvents($a)) {
					return;
				}
				this.$root.triggerHandler('blur.smapi', $a[0]);
			},
			itemClick: function(e) {
				var $a = $(e.currentTarget);
				if (!this.handleItemEvents($a)) {
					return;
				}
				if (this.$touchScrollingSub && this.$touchScrollingSub[0] == $a.closest('ul')[0]) {
					this.$touchScrollingSub = null;
					e.stopPropagation();
					return false;
				}
				if (this.$root.triggerHandler('click.smapi', $a[0]) === false) {
					return false;
				}
				var subArrowClicked = $(e.target).is('.sub-arrow'),
					$sub = $a.dataSM('sub'),
					firstLevelSub = $sub ? $sub.dataSM('level') == 2 : false,
					collapsible = this.isCollapsible(),
					behaviorToggle = /toggle$/.test(this.opts.collapsibleBehavior),
					behaviorLink = /link$/.test(this.opts.collapsibleBehavior),
					behaviorAccordion = /^accordion/.test(this.opts.collapsibleBehavior);
				// if the sub is hidden, try to show it
				if ($sub && !$sub.is(':visible')) {
					if (!behaviorLink || !collapsible || subArrowClicked) {
						if (this.opts.showOnClick && firstLevelSub) {
							this.clickActivated = true;
						}
						// try to activate the item and show the sub
						this.itemActivate($a, behaviorAccordion);
						// if "itemActivate" showed the sub, prevent the click so that the link is not loaded
						// if it couldn't show it, then the sub menus are disabled with an !important declaration (e.g. via mobile styles) so let the link get loaded
						if ($sub.is(':visible')) {
							this.focusActivated = true;
							return false;
						}
					}
				// if the sub is visible and we are in collapsible mode
				} else if (collapsible && (behaviorToggle || subArrowClicked)) {
					this.itemActivate($a, behaviorAccordion);
					this.menuHide($sub);
					if (behaviorToggle) {
						this.focusActivated = false;
					}
					return false;
				}
				if (this.opts.showOnClick && firstLevelSub || $a.hasClass('disabled') || this.$root.triggerHandler('select.smapi', $a[0]) === false) {
					return false;
				}
			},
			itemDown: function(e) {
				var $a = $(e.currentTarget);
				if (!this.handleItemEvents($a)) {
					return;
				}
				$a.dataSM('mousedown', true);
			},
			itemEnter: function(e) {
				var $a = $(e.currentTarget);
				if (!this.handleItemEvents($a)) {
					return;
				}
				if (!this.isTouchMode()) {
					if (this.showTimeout) {
						clearTimeout(this.showTimeout);
						this.showTimeout = 0;
					}
					var self = this;
					this.showTimeout = setTimeout(function() { self.itemActivate($a); }, this.opts.showOnClick && $a.closest('ul').dataSM('level') == 1 ? 1 : this.opts.showTimeout);
				}
				this.$root.triggerHandler('mouseenter.smapi', $a[0]);
			},
			itemFocus: function(e) {
				var $a = $(e.currentTarget);
				if (!this.handleItemEvents($a)) {
					return;
				}
				// fix (the mousedown check): in some browsers a tap/click produces consecutive focus + click events so we don't need to activate the item on focus
				if (this.focusActivated && (!this.isTouchMode() || !$a.dataSM('mousedown')) && (!this.activatedItems.length || this.activatedItems[this.activatedItems.length - 1][0] != $a[0])) {
					this.itemActivate($a, true);
				}
				this.$root.triggerHandler('focus.smapi', $a[0]);
			},
			itemLeave: function(e) {
				var $a = $(e.currentTarget);
				if (!this.handleItemEvents($a)) {
					return;
				}
				if (!this.isTouchMode()) {
					$a[0].blur();
					if (this.showTimeout) {
						clearTimeout(this.showTimeout);
						this.showTimeout = 0;
					}
				}
				$a.removeDataSM('mousedown');
				this.$root.triggerHandler('mouseleave.smapi', $a[0]);
			},
			menuHide: function($sub) {
				if (this.$root.triggerHandler('beforehide.smapi', $sub[0]) === false) {
					return;
				}
				if (canAnimate) {
					$sub.stop(true, true);
				}
				if ($sub.css('display') != 'none') {
					var complete = function() {
						// unset z-index
						$sub.css('z-index', '');
					};
					// if sub is collapsible (mobile view)
					if (this.isCollapsible()) {
						if (canAnimate && this.opts.collapsibleHideFunction) {
							this.opts.collapsibleHideFunction.call(this, $sub, complete);
						} else {
							$sub.hide(this.opts.collapsibleHideDuration, complete);
						}
					} else {
						if (canAnimate && this.opts.hideFunction) {
							this.opts.hideFunction.call(this, $sub, complete);
						} else {
							$sub.hide(this.opts.hideDuration, complete);
						}
					}
					// deactivate scrolling if it is activated for this sub
					if ($sub.dataSM('scroll')) {
						this.menuScrollStop($sub);
						$sub.css({ 'touch-action': '', '-ms-touch-action': '', '-webkit-transform': '', transform: '' })
							.off('.smartmenus_scroll').removeDataSM('scroll').dataSM('scroll-arrows').hide();
					}
					// unhighlight parent item + accessibility
					$sub.dataSM('parent-a').removeClass('highlighted').attr('aria-expanded', 'false');
					$sub.attr({
						'aria-expanded': 'false',
						'aria-hidden': 'true'
					});
					var level = $sub.dataSM('level');
					this.activatedItems.splice(level - 1, 1);
					this.visibleSubMenus.splice($.inArray($sub, this.visibleSubMenus), 1);
					this.$root.triggerHandler('hide.smapi', $sub[0]);
				}
			},
			menuHideAll: function() {
				if (this.showTimeout) {
					clearTimeout(this.showTimeout);
					this.showTimeout = 0;
				}
				// hide all subs
				// if it's a popup, this.visibleSubMenus[0] is the root UL
				var level = this.opts.isPopup ? 1 : 0;
				for (var i = this.visibleSubMenus.length - 1; i >= level; i--) {
					this.menuHide(this.visibleSubMenus[i]);
				}
				// hide root if it's popup
				if (this.opts.isPopup) {
					if (canAnimate) {
						this.$root.stop(true, true);
					}
					if (this.$root.is(':visible')) {
						if (canAnimate && this.opts.hideFunction) {
							this.opts.hideFunction.call(this, this.$root);
						} else {
							this.$root.hide(this.opts.hideDuration);
						}
					}
				}
				this.activatedItems = [];
				this.visibleSubMenus = [];
				this.clickActivated = false;
				this.focusActivated = false;
				// reset z-index increment
				this.zIndexInc = 0;
				this.$root.triggerHandler('hideAll.smapi');
			},
			menuHideSubMenus: function(level) {
				for (var i = this.activatedItems.length - 1; i >= level; i--) {
					var $sub = this.activatedItems[i].dataSM('sub');
					if ($sub) {
						this.menuHide($sub);
					}
				}
			},
			menuInit: function($ul) {
				if (!$ul.dataSM('in-mega')) {
					// mark UL's in mega drop downs (if any) so we can neglect them
					if ($ul.hasClass('mega-menu')) {
						$ul.find('ul').dataSM('in-mega', true);
					}
					// get level (much faster than, for example, using parentsUntil)
					var level = 2,
						par = $ul[0];
					while ((par = par.parentNode.parentNode) != this.$root[0]) {
						level++;
					}
					// cache stuff for quick access
					var $a = $ul.prevAll('a').eq(-1);
					// if the link is nested (e.g. in a heading)
					if (!$a.length) {
						$a = $ul.prevAll().find('a').eq(-1);
					}
					$a.addClass('has-submenu').dataSM('sub', $ul);
					$ul.dataSM('parent-a', $a)
						.dataSM('level', level)
						.parent().dataSM('sub', $ul);
					// accessibility
					var aId = $a.attr('id') || this.accessIdPrefix + (++this.idInc),
						ulId = $ul.attr('id') || this.accessIdPrefix + (++this.idInc);
					$a.attr({
						id: aId,
						'aria-haspopup': 'true',
						'aria-controls': ulId,
						'aria-expanded': 'false'
					});
					$ul.attr({
						id: ulId,
						'role': 'group',
						'aria-hidden': 'true',
						'aria-labelledby': aId,
						'aria-expanded': 'false'
					});
					// add sub indicator to parent item
					if (this.opts.subIndicators) {
						$a[this.opts.subIndicatorsPos](this.$subArrow.clone());
					}
				}
			},
			menuPosition: function($sub) {
				var $a = $sub.dataSM('parent-a'),
					$li = $a.closest('li'),
					$ul = $li.parent(),
					level = $sub.dataSM('level'),
					subW = this.getWidth($sub),
					subH = this.getHeight($sub),
					itemOffset = $a.offset(),
					itemX = itemOffset.left,
					itemY = itemOffset.top,
					itemW = this.getWidth($a),
					itemH = this.getHeight($a),
					$win = $(window),
					winX = $win.scrollLeft(),
					winY = $win.scrollTop(),
					winW = this.getViewportWidth(),
					winH = this.getViewportHeight(),
					horizontalParent = $ul.parent().is('[data-sm-horizontal-sub]') || level == 2 && !$ul.hasClass('sm-vertical'),
					rightToLeft = this.opts.rightToLeftSubMenus && !$li.is('[data-sm-reverse]') || !this.opts.rightToLeftSubMenus && $li.is('[data-sm-reverse]'),
					subOffsetX = level == 2 ? this.opts.mainMenuSubOffsetX : this.opts.subMenusSubOffsetX,
					subOffsetY = level == 2 ? this.opts.mainMenuSubOffsetY : this.opts.subMenusSubOffsetY,
					x, y;
				if (horizontalParent) {
					x = rightToLeft ? itemW - subW - subOffsetX : subOffsetX;
					y = this.opts.bottomToTopSubMenus ? -subH - subOffsetY : itemH + subOffsetY;
				} else {
					x = rightToLeft ? subOffsetX - subW : itemW - subOffsetX;
					y = this.opts.bottomToTopSubMenus ? itemH - subOffsetY - subH : subOffsetY;
				}
				if (this.opts.keepInViewport) {
					var absX = itemX + x,
						absY = itemY + y;
					if (rightToLeft && absX < winX) {
						x = horizontalParent ? winX - absX + x : itemW - subOffsetX;
					} else if (!rightToLeft && absX + subW > winX + winW) {
						x = horizontalParent ? winX + winW - subW - absX + x : subOffsetX - subW;
					}
					if (!horizontalParent) {
						if (subH < winH && absY + subH > winY + winH) {
							y += winY + winH - subH - absY;
						} else if (subH >= winH || absY < winY) {
							y += winY - absY;
						}
					}
					// do we need scrolling?
					// 0.49 used for better precision when dealing with float values
					if (horizontalParent && (absY + subH > winY + winH + 0.49 || absY < winY) || !horizontalParent && subH > winH + 0.49) {
						var self = this;
						if (!$sub.dataSM('scroll-arrows')) {
							$sub.dataSM('scroll-arrows', $([$('<span class="scroll-up"><span class="scroll-up-arrow"></span></span>')[0], $('<span class="scroll-down"><span class="scroll-down-arrow"></span></span>')[0]])
								.on({
									mouseenter: function() {
										$sub.dataSM('scroll').up = $(this).hasClass('scroll-up');
										self.menuScroll($sub);
									},
									mouseleave: function(e) {
										self.menuScrollStop($sub);
										self.menuScrollOut($sub, e);
									},
									'mousewheel DOMMouseScroll': function(e) { e.preventDefault(); }
								})
								.insertAfter($sub)
							);
						}
						// bind scroll events and save scroll data for this sub
						var eNS = '.smartmenus_scroll';
						$sub.dataSM('scroll', {
								y: this.cssTransforms3d ? 0 : y - itemH,
								step: 1,
								// cache stuff for faster recalcs later
								itemH: itemH,
								subH: subH,
								arrowDownH: this.getHeight($sub.dataSM('scroll-arrows').eq(1))
							})
							.on(getEventsNS({
								'mouseover': function(e) { self.menuScrollOver($sub, e); },
								'mouseout': function(e) { self.menuScrollOut($sub, e); },
								'mousewheel DOMMouseScroll': function(e) { self.menuScrollMousewheel($sub, e); }
							}, eNS))
							.dataSM('scroll-arrows').css({ top: 'auto', left: '0', marginLeft: x + (parseInt($sub.css('border-left-width')) || 0), width: subW - (parseInt($sub.css('border-left-width')) || 0) - (parseInt($sub.css('border-right-width')) || 0), zIndex: $sub.css('z-index') })
								.eq(horizontalParent && this.opts.bottomToTopSubMenus ? 0 : 1).show();
						// when a menu tree is fixed positioned we allow scrolling via touch too
						// since there is no other way to access such long sub menus if no mouse is present
						if (this.isFixed()) {
							var events = {};
							events[touchEvents ? 'touchstart touchmove touchend' : 'pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp'] = function(e) {
								self.menuScrollTouch($sub, e);
							};
							$sub.css({ 'touch-action': 'none', '-ms-touch-action': 'none' }).on(getEventsNS(events, eNS));
						}
					}
				}
				$sub.css({ top: 'auto', left: '0', marginLeft: x, marginTop: y - itemH });
			},
			menuScroll: function($sub, once, step) {
				var data = $sub.dataSM('scroll'),
					$arrows = $sub.dataSM('scroll-arrows'),
					end = data.up ? data.upEnd : data.downEnd,
					diff;
				if (!once && data.momentum) {
					data.momentum *= 0.92;
					diff = data.momentum;
					if (diff < 0.5) {
						this.menuScrollStop($sub);
						return;
					}
				} else {
					diff = step || (once || !this.opts.scrollAccelerate ? this.opts.scrollStep : Math.floor(data.step));
				}
				// hide any visible deeper level sub menus
				var level = $sub.dataSM('level');
				if (this.activatedItems[level - 1] && this.activatedItems[level - 1].dataSM('sub') && this.activatedItems[level - 1].dataSM('sub').is(':visible')) {
					this.menuHideSubMenus(level - 1);
				}
				data.y = data.up && end <= data.y || !data.up && end >= data.y ? data.y : (Math.abs(end - data.y) > diff ? data.y + (data.up ? diff : -diff) : end);
				$sub.css(this.cssTransforms3d ? { '-webkit-transform': 'translate3d(0, ' + data.y + 'px, 0)', transform: 'translate3d(0, ' + data.y + 'px, 0)' } : { marginTop: data.y });
				// show opposite arrow if appropriate
				if (mouse && (data.up && data.y > data.downEnd || !data.up && data.y < data.upEnd)) {
					$arrows.eq(data.up ? 1 : 0).show();
				}
				// if we've reached the end
				if (data.y == end) {
					if (mouse) {
						$arrows.eq(data.up ? 0 : 1).hide();
					}
					this.menuScrollStop($sub);
				} else if (!once) {
					if (this.opts.scrollAccelerate && data.step < this.opts.scrollStep) {
						data.step += 0.2;
					}
					var self = this;
					this.scrollTimeout = requestAnimationFrame(function() { self.menuScroll($sub); });
				}
			},
			menuScrollMousewheel: function($sub, e) {
				if (this.getClosestMenu(e.target) == $sub[0]) {
					e = e.originalEvent;
					var up = (e.wheelDelta || -e.detail) > 0;
					if ($sub.dataSM('scroll-arrows').eq(up ? 0 : 1).is(':visible')) {
						$sub.dataSM('scroll').up = up;
						this.menuScroll($sub, true);
					}
				}
				e.preventDefault();
			},
			menuScrollOut: function($sub, e) {
				if (mouse) {
					if (!/^scroll-(up|down)/.test((e.relatedTarget || '').className) && ($sub[0] != e.relatedTarget && !$.contains($sub[0], e.relatedTarget) || this.getClosestMenu(e.relatedTarget) != $sub[0])) {
						$sub.dataSM('scroll-arrows').css('visibility', 'hidden');
					}
				}
			},
			menuScrollOver: function($sub, e) {
				if (mouse) {
					if (!/^scroll-(up|down)/.test(e.target.className) && this.getClosestMenu(e.target) == $sub[0]) {
						this.menuScrollRefreshData($sub);
						var data = $sub.dataSM('scroll'),
							upEnd = $(window).scrollTop() - $sub.dataSM('parent-a').offset().top - data.itemH;
						$sub.dataSM('scroll-arrows').eq(0).css('margin-top', upEnd).end()
							.eq(1).css('margin-top', upEnd + this.getViewportHeight() - data.arrowDownH).end()
							.css('visibility', 'visible');
					}
				}
			},
			menuScrollRefreshData: function($sub) {
				var data = $sub.dataSM('scroll'),
					upEnd = $(window).scrollTop() - $sub.dataSM('parent-a').offset().top - data.itemH;
				if (this.cssTransforms3d) {
					upEnd = -(parseFloat($sub.css('margin-top')) - upEnd);
				}
				$.extend(data, {
					upEnd: upEnd,
					downEnd: upEnd + this.getViewportHeight() - data.subH
				});
			},
			menuScrollStop: function($sub) {
				if (this.scrollTimeout) {
					cancelAnimationFrame(this.scrollTimeout);
					this.scrollTimeout = 0;
					$sub.dataSM('scroll').step = 1;
					return true;
				}
			},
			menuScrollTouch: function($sub, e) {
				e = e.originalEvent;
				if (isTouchEvent(e)) {
					var touchPoint = this.getTouchPoint(e);
					// neglect event if we touched a visible deeper level sub menu
					if (this.getClosestMenu(touchPoint.target) == $sub[0]) {
						var data = $sub.dataSM('scroll');
						if (/(start|down)$/i.test(e.type)) {
							if (this.menuScrollStop($sub)) {
								// if we were scrolling, just stop and don't activate any link on the first touch
								e.preventDefault();
								this.$touchScrollingSub = $sub;
							} else {
								this.$touchScrollingSub = null;
							}
							// update scroll data since the user might have zoomed, etc.
							this.menuScrollRefreshData($sub);
							// extend it with the touch properties
							$.extend(data, {
								touchStartY: touchPoint.pageY,
								touchStartTime: e.timeStamp
							});
						} else if (/move$/i.test(e.type)) {
							var prevY = data.touchY !== undefined ? data.touchY : data.touchStartY;
							if (prevY !== undefined && prevY != touchPoint.pageY) {
								this.$touchScrollingSub = $sub;
								var up = prevY < touchPoint.pageY;
								// changed direction? reset...
								if (data.up !== undefined && data.up != up) {
									$.extend(data, {
										touchStartY: touchPoint.pageY,
										touchStartTime: e.timeStamp
									});
								}
								$.extend(data, {
									up: up,
									touchY: touchPoint.pageY
								});
								this.menuScroll($sub, true, Math.abs(touchPoint.pageY - prevY));
							}
							e.preventDefault();
						} else { // touchend/pointerup
							if (data.touchY !== undefined) {
								if (data.momentum = Math.pow(Math.abs(touchPoint.pageY - data.touchStartY) / (e.timeStamp - data.touchStartTime), 2) * 15) {
									this.menuScrollStop($sub);
									this.menuScroll($sub);
									e.preventDefault();
								}
								delete data.touchY;
							}
						}
					}
				}
			},
			menuShow: function($sub) {
				if (!$sub.dataSM('beforefirstshowfired')) {
					$sub.dataSM('beforefirstshowfired', true);
					if (this.$root.triggerHandler('beforefirstshow.smapi', $sub[0]) === false) {
						return;
					}
				}
				if (this.$root.triggerHandler('beforeshow.smapi', $sub[0]) === false) {
					return;
				}
				$sub.dataSM('shown-before', true);
				if (canAnimate) {
					$sub.stop(true, true);
				}
				if (!$sub.is(':visible')) {
					// highlight parent item
					var $a = $sub.dataSM('parent-a'),
						collapsible = this.isCollapsible();
					if (this.opts.keepHighlighted || collapsible) {
						$a.addClass('highlighted');
					}
					if (collapsible) {
						$sub.removeClass('sm-nowrap').css({ zIndex: '', width: 'auto', minWidth: '', maxWidth: '', top: '', left: '', marginLeft: '', marginTop: '' });
					} else {
						// set z-index
						$sub.css('z-index', this.zIndexInc = (this.zIndexInc || this.getStartZIndex()) + 1);
						// min/max-width fix - no way to rely purely on CSS as all UL's are nested
						if (this.opts.subMenusMinWidth || this.opts.subMenusMaxWidth) {
							$sub.css({ width: 'auto', minWidth: '', maxWidth: '' }).addClass('sm-nowrap');
							if (this.opts.subMenusMinWidth) {
							 	$sub.css('min-width', this.opts.subMenusMinWidth);
							}
							if (this.opts.subMenusMaxWidth) {
							 	var noMaxWidth = this.getWidth($sub);
							 	$sub.css('max-width', this.opts.subMenusMaxWidth);
								if (noMaxWidth > this.getWidth($sub)) {
									$sub.removeClass('sm-nowrap').css('width', this.opts.subMenusMaxWidth);
								}
							}
						}
						this.menuPosition($sub);
					}
					var complete = function() {
						// fix: "overflow: hidden;" is not reset on animation complete in jQuery < 1.9.0 in Chrome when global "box-sizing: border-box;" is used
						$sub.css('overflow', '');
					};
					// if sub is collapsible (mobile view)
					if (collapsible) {
						if (canAnimate && this.opts.collapsibleShowFunction) {
							this.opts.collapsibleShowFunction.call(this, $sub, complete);
						} else {
							$sub.show(this.opts.collapsibleShowDuration, complete);
						}
					} else {
						if (canAnimate && this.opts.showFunction) {
							this.opts.showFunction.call(this, $sub, complete);
						} else {
							$sub.show(this.opts.showDuration, complete);
						}
					}
					// accessibility
					$a.attr('aria-expanded', 'true');
					$sub.attr({
						'aria-expanded': 'true',
						'aria-hidden': 'false'
					});
					// store sub menu in visible array
					this.visibleSubMenus.push($sub);
					this.$root.triggerHandler('show.smapi', $sub[0]);
				}
			},
			popupHide: function(noHideTimeout) {
				if (this.hideTimeout) {
					clearTimeout(this.hideTimeout);
					this.hideTimeout = 0;
				}
				var self = this;
				this.hideTimeout = setTimeout(function() {
					self.menuHideAll();
				}, noHideTimeout ? 1 : this.opts.hideTimeout);
			},
			popupShow: function(left, top) {
				if (!this.opts.isPopup) {
					alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.');
					return;
				}
				if (this.hideTimeout) {
					clearTimeout(this.hideTimeout);
					this.hideTimeout = 0;
				}
				this.$root.dataSM('shown-before', true);
				if (canAnimate) {
					this.$root.stop(true, true);
				}
				if (!this.$root.is(':visible')) {
					this.$root.css({ left: left, top: top });
					// show menu
					var self = this,
						complete = function() {
							self.$root.css('overflow', '');
						};
					if (canAnimate && this.opts.showFunction) {
						this.opts.showFunction.call(this, this.$root, complete);
					} else {
						this.$root.show(this.opts.showDuration, complete);
					}
					this.visibleSubMenus[0] = this.$root;
				}
			},
			refresh: function() {
				this.destroy(true);
				this.init(true);
			},
			rootKeyDown: function(e) {
				if (!this.handleEvents()) {
					return;
				}
				switch (e.keyCode) {
					case 27: // reset on Esc
						var $activeTopItem = this.activatedItems[0];
						if ($activeTopItem) {
							this.menuHideAll();
							$activeTopItem[0].focus();
							var $sub = $activeTopItem.dataSM('sub');
							if ($sub) {
								this.menuHide($sub);
							}
						}
						break;
					case 32: // activate item's sub on Space
						var $target = $(e.target);
						if ($target.is('a') && this.handleItemEvents($target)) {
							var $sub = $target.dataSM('sub');
							if ($sub && !$sub.is(':visible')) {
								this.itemClick({ currentTarget: e.target });
								e.preventDefault();
							}
						}
						break;
				}
			},
			rootOut: function(e) {
				if (!this.handleEvents() || this.isTouchMode() || e.target == this.$root[0]) {
					return;
				}
				if (this.hideTimeout) {
					clearTimeout(this.hideTimeout);
					this.hideTimeout = 0;
				}
				if (!this.opts.showOnClick || !this.opts.hideOnClick) {
					var self = this;
					this.hideTimeout = setTimeout(function() { self.menuHideAll(); }, this.opts.hideTimeout);
				}
			},
			rootOver: function(e) {
				if (!this.handleEvents() || this.isTouchMode() || e.target == this.$root[0]) {
					return;
				}
				if (this.hideTimeout) {
					clearTimeout(this.hideTimeout);
					this.hideTimeout = 0;
				}
			},
			winResize: function(e) {
				if (!this.handleEvents()) {
					// we still need to resize the disable overlay if it's visible
					if (this.$disableOverlay) {
						var pos = this.$root.offset();
	 					this.$disableOverlay.css({
							top: pos.top,
							left: pos.left,
							width: this.$root.outerWidth(),
							height: this.$root.outerHeight()
						});
					}
					return;
				}
				// hide sub menus on resize - on mobile do it only on orientation change
				if (!('onorientationchange' in window) || e.type == 'orientationchange') {
					var collapsible = this.isCollapsible();
					// if it was collapsible before resize and still is, don't do it
					if (!(this.wasCollapsible && collapsible)) { 
						if (this.activatedItems.length) {
							this.activatedItems[this.activatedItems.length - 1][0].blur();
						}
						this.menuHideAll();
					}
					this.wasCollapsible = collapsible;
				}
			}
		}
	});

	$.fn.dataSM = function(key, val) {
		if (val) {
			return this.data(key + '_smartmenus', val);
		}
		return this.data(key + '_smartmenus');
	};

	$.fn.removeDataSM = function(key) {
		return this.removeData(key + '_smartmenus');
	};

	$.fn.smartmenus = function(options) {
		if (typeof options == 'string') {
			var args = arguments,
				method = options;
			Array.prototype.shift.call(args);
			return this.each(function() {
				var smartmenus = $(this).data('smartmenus');
				if (smartmenus && smartmenus[method]) {
					smartmenus[method].apply(smartmenus, args);
				}
			});
		}
		return this.each(function() {
			// [data-sm-options] attribute on the root UL
			var dataOpts = $(this).data('sm-options') || null;
			if (dataOpts) {
				try {
					dataOpts = eval('(' + dataOpts + ')');
				} catch(e) {
					dataOpts = null;
					alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.');
				};
			}
			new $.SmartMenus(this, $.extend({}, $.fn.smartmenus.defaults, options, dataOpts));
		});
	};

	// default settings
	$.fn.smartmenus.defaults = {
		isPopup:		false,		// is this a popup menu (can be shown via the popupShow/popupHide methods) or a permanent menu bar
		mainMenuSubOffsetX:	0,		// pixels offset from default position
		mainMenuSubOffsetY:	0,		// pixels offset from default position
		subMenusSubOffsetX:	0,		// pixels offset from default position
		subMenusSubOffsetY:	0,		// pixels offset from default position
		subMenusMinWidth:	'10em',		// min-width for the sub menus (any CSS unit) - if set, the fixed width set in CSS will be ignored
		subMenusMaxWidth:	'20em',		// max-width for the sub menus (any CSS unit) - if set, the fixed width set in CSS will be ignored
		subIndicators: 		true,		// create sub menu indicators - creates a SPAN and inserts it in the A
		subIndicatorsPos: 	'append',	// position of the SPAN relative to the menu item content ('append', 'prepend')
		subIndicatorsText:	'',		// [optionally] add text in the SPAN (e.g. '+') (you may want to check the CSS for the sub indicators too)
		scrollStep: 		30,		// pixels step when scrolling long sub menus that do not fit in the viewport height
		scrollAccelerate:	true,		// accelerate scrolling or use a fixed step
		showTimeout:		250,		// timeout before showing the sub menus
		hideTimeout:		500,		// timeout before hiding the sub menus
		showDuration:		0,		// duration for show animation - set to 0 for no animation - matters only if showFunction:null
		showFunction:		null,		// custom function to use when showing a sub menu (the default is the jQuery 'show')
							// don't forget to call complete() at the end of whatever you do
							// e.g.: function($ul, complete) { $ul.fadeIn(250, complete); }
		hideDuration:		0,		// duration for hide animation - set to 0 for no animation - matters only if hideFunction:null
		hideFunction:		function($ul, complete) { $ul.fadeOut(200, complete); },	// custom function to use when hiding a sub menu (the default is the jQuery 'hide')
							// don't forget to call complete() at the end of whatever you do
							// e.g.: function($ul, complete) { $ul.fadeOut(250, complete); }
		collapsibleShowDuration:0,		// duration for show animation for collapsible sub menus - matters only if collapsibleShowFunction:null
		collapsibleShowFunction:function($ul, complete) { $ul.slideDown(200, complete); },	// custom function to use when showing a collapsible sub menu
							// (i.e. when mobile styles are used to make the sub menus collapsible)
		collapsibleHideDuration:0,		// duration for hide animation for collapsible sub menus - matters only if collapsibleHideFunction:null
		collapsibleHideFunction:function($ul, complete) { $ul.slideUp(200, complete); },	// custom function to use when hiding a collapsible sub menu
							// (i.e. when mobile styles are used to make the sub menus collapsible)
		showOnClick:		false,		// show the first-level sub menus onclick instead of onmouseover (i.e. mimic desktop app menus) (matters only for mouse input)
		hideOnClick:		true,		// hide the sub menus on click/tap anywhere on the page
		noMouseOver:		false,		// disable sub menus activation onmouseover (i.e. behave like in touch mode - use just mouse clicks) (matters only for mouse input)
		keepInViewport:		true,		// reposition the sub menus if needed to make sure they always appear inside the viewport
		keepHighlighted:	true,		// keep all ancestor items of the current sub menu highlighted (adds the 'highlighted' class to the A's)
		markCurrentItem:	false,		// automatically add the 'current' class to the A element of the item linking to the current URL
		markCurrentTree:	true,		// add the 'current' class also to the A elements of all ancestor items of the current item
		rightToLeftSubMenus:	false,		// right to left display of the sub menus (check the CSS for the sub indicators' position)
		bottomToTopSubMenus:	false,		// bottom to top display of the sub menus
		collapsibleBehavior:	'default'	// parent items behavior in collapsible (mobile) view ('default', 'toggle', 'link', 'accordion', 'accordion-toggle', 'accordion-link')
							// 'default' - first tap on parent item expands sub, second tap loads its link
							// 'toggle' - the whole parent item acts just as a toggle button for its sub menu (expands/collapses on each tap)
							// 'link' - the parent item acts as a regular item (first tap loads its link), the sub menu can be expanded only via the +/- button
							// 'accordion' - like 'default' but on expand also resets any visible sub menus from deeper levels or other branches
							// 'accordion-toggle' - like 'toggle' but on expand also resets any visible sub menus from deeper levels or other branches
							// 'accordion-link' - like 'link' but on expand also resets any visible sub menus from deeper levels or other branches
	};

	return $;
}));PK�uKX�������)spiko/inc/class-tgm-plugin-activation.php<?php
/**
 * Plugin installation and activation for WordPress themes.
 *
 * Please note that this is a drop-in library for a theme or plugin.
 * The authors of this library (Thomas, Gary and Juliette) are NOT responsible
 * for the support of your plugin or theme. Please contact the plugin
 * or theme author for support.
 *
 * @package   TGM-Plugin-Activation
 * @version   2.6.1
 * @link      http://tgmpluginactivation.com/
 * @author    Thomas Griffin, Gary Jones, Juliette Reinders Folmer
 * @copyright Copyright (c) 2011, Thomas Griffin
 * @license   GPL-2.0+
 */

/*
	Copyright 2011 Thomas Griffin (thomasgriffinmedia.com)

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License, version 2, as
	published by the Free Software Foundation.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

if ( ! class_exists( 'TGM_Plugin_Activation' ) ) {

	/**
	 * Automatic plugin installation and activation library.
	 *
	 * Creates a way to automatically install and activate plugins from within themes.
	 * The plugins can be either bundled, downloaded from the WordPress
	 * Plugin Repository or downloaded from another external source.
	 *
	 * @since 1.0.0
	 *
	 * @package TGM-Plugin-Activation
	 * @author  Thomas Griffin
	 * @author  Gary Jones
	 */
	class TGM_Plugin_Activation {
		/**
		 * TGMPA version number.
		 *
		 * @since 2.5.0
		 *
		 * @const string Version number.
		 */
		const TGMPA_VERSION = '2.6.1';

		/**
		 * Regular expression to test if a URL is a WP plugin repo URL.
		 *
		 * @const string Regex.
		 *
		 * @since 2.5.0
		 */
		const WP_REPO_REGEX = '|^http[s]?://wordpress\.org/(?:extend/)?plugins/|';

		/**
		 * Arbitrary regular expression to test if a string starts with a URL.
		 *
		 * @const string Regex.
		 *
		 * @since 2.5.0
		 */
		const IS_URL_REGEX = '|^http[s]?://|';

		/**
		 * Holds a copy of itself, so it can be referenced by the class name.
		 *
		 * @since 1.0.0
		 *
		 * @var TGM_Plugin_Activation
		 */
		public static $instance;

		/**
		 * Holds arrays of plugin details.
		 *
		 * @since 1.0.0
		 * @since 2.5.0 the array has the plugin slug as an associative key.
		 *
		 * @var array
		 */
		public $plugins = array();

		/**
		 * Holds arrays of plugin names to use to sort the plugins array.
		 *
		 * @since 2.5.0
		 *
		 * @var array
		 */
		protected $sort_order = array();

		/**
		 * Whether any plugins have the 'force_activation' setting set to true.
		 *
		 * @since 2.5.0
		 *
		 * @var bool
		 */
		protected $has_forced_activation = false;

		/**
		 * Whether any plugins have the 'force_deactivation' setting set to true.
		 *
		 * @since 2.5.0
		 *
		 * @var bool
		 */
		protected $has_forced_deactivation = false;

		/**
		 * Name of the unique ID to hash notices.
		 *
		 * @since 2.4.0
		 *
		 * @var string
		 */
		public $id = 'tgmpa';

		/**
		 * Name of the query-string argument for the admin page.
		 *
		 * @since 1.0.0
		 *
		 * @var string
		 */
		protected $menu = 'tgmpa-install-plugins';

		/**
		 * Parent menu file slug.
		 *
		 * @since 2.5.0
		 *
		 * @var string
		 */
		public $parent_slug = 'themes.php';

		/**
		 * Capability needed to view the plugin installation menu item.
		 *
		 * @since 2.5.0
		 *
		 * @var string
		 */
		public $capability = 'edit_theme_options';

		/**
		 * Default absolute path to folder containing bundled plugin zip files.
		 *
		 * @since 2.0.0
		 *
		 * @var string Absolute path prefix to zip file location for bundled plugins. Default is empty string.
		 */
		public $default_path = '';

		/**
		 * Flag to show admin notices or not.
		 *
		 * @since 2.1.0
		 *
		 * @var boolean
		 */
		public $has_notices = true;

		/**
		 * Flag to determine if the user can dismiss the notice nag.
		 *
		 * @since 2.4.0
		 *
		 * @var boolean
		 */
		public $dismissable = true;

		/**
		 * Message to be output above nag notice if dismissable is false.
		 *
		 * @since 2.4.0
		 *
		 * @var string
		 */
		public $dismiss_msg = '';

		/**
		 * Flag to set automatic activation of plugins. Off by default.
		 *
		 * @since 2.2.0
		 *
		 * @var boolean
		 */
		public $is_automatic = false;

		/**
		 * Optional message to display before the plugins table.
		 *
		 * @since 2.2.0
		 *
		 * @var string Message filtered by wp_kses_post(). Default is empty string.
		 */
		public $message = '';

		/**
		 * Holds configurable array of strings.
		 *
		 * Default values are added in the constructor.
		 *
		 * @since 2.0.0
		 *
		 * @var array
		 */
		public $strings = array();

		/**
		 * Holds the version of WordPress.
		 *
		 * @since 2.4.0
		 *
		 * @var int
		 */
		public $wp_version;

		/**
		 * Holds the hook name for the admin page.
		 *
		 * @since 2.5.0
		 *
		 * @var string
		 */
		public $page_hook;

		/**
		 * Adds a reference of this object to $instance, populates default strings,
		 * does the tgmpa_init action hook, and hooks in the interactions to init.
		 *
		 * {@internal This method should be `protected`, but as too many TGMPA implementations
		 * haven't upgraded beyond v2.3.6 yet, this gives backward compatibility issues.
		 * Reverted back to public for the time being.}}
		 *
		 * @since 1.0.0
		 *
		 * @see TGM_Plugin_Activation::init()
		 */
		public function __construct() {
			// Set the current WordPress version.
			$this->wp_version = $GLOBALS['wp_version'];

			// Announce that the class is ready, and pass the object (for advanced use).
			do_action_ref_array( 'tgmpa_init', array( $this ) );



			// When the rest of WP has loaded, kick-start the rest of the class.
			add_action( 'init', array( $this, 'init' ) );
		}

		/**
		 * Magic method to (not) set protected properties from outside of this class.
		 *
		 * {@internal hackedihack... There is a serious bug in v2.3.2 - 2.3.6  where the `menu` property
		 * is being assigned rather than tested in a conditional, effectively rendering it useless.
		 * This 'hack' prevents this from happening.}}
		 *
		 * @see https://github.com/TGMPA/TGM-Plugin-Activation/blob/2.3.6/tgm-plugin-activation/class-tgm-plugin-activation.php#L1593
		 *
		 * @since 2.5.2
		 *
		 * @param string $name  Name of an inaccessible property.
		 * @param mixed  $value Value to assign to the property.
		 * @return void  Silently fail to set the property when this is tried from outside of this class context.
		 *               (Inside this class context, the __set() method if not used as there is direct access.)
		 */
		public function __set( $name, $value ) {
			return;
		}

		/**
		 * Magic method to get the value of a protected property outside of this class context.
		 *
		 * @since 2.5.2
		 *
		 * @param string $name Name of an inaccessible property.
		 * @return mixed The property value.
		 */
		public function __get( $name ) {
			return $this->{$name};
		}

		/**
		 * Initialise the interactions between this class and WordPress.
		 *
		 * Hooks in three new methods for the class: admin_menu, notices and styles.
		 *
		 * @since 2.0.0
		 *
		 * @see TGM_Plugin_Activation::admin_menu()
		 * @see TGM_Plugin_Activation::notices()
		 * @see TGM_Plugin_Activation::styles()
		 */
		public function init() {
			/**
			 * By default TGMPA only loads on the WP back-end and not in an Ajax call. Using this filter
			 * you can overrule that behaviour.
			 *
			 * @since 2.5.0
			 *
			 * @param bool $load Whether or not TGMPA should load.
			 *                   Defaults to the return of `is_admin() && ! defined( 'DOING_AJAX' )`.
			 */
			if ( true !== apply_filters( 'tgmpa_load', ( is_admin() && ! defined( 'DOING_AJAX' ) ) ) ) {
				return;
			}

			// Load class strings.
			$this->strings = array(
				'page_title'                      => esc_html__( 'Install Required Plugins', 'spiko'  ),
				'menu_title'                      => esc_html__( 'Install Plugins', 'spiko'  ),
				/* translators: %s: plugin name. */
				'installing'                      => esc_html__( 'Installing Plugin: %s', 'spiko'  ),
				/* translators: %s: plugin name. */
				'updating'                        => esc_html__( 'Updating Plugin: %s', 'spiko'  ),
				'oops'                            => esc_html__( 'Something went wrong with the plugin API.', 'spiko'  ),
				'notice_can_install_required'     => _n_noop(
					/* translators: 1: plugin name(s). */
					'This theme requires the following plugin: %1$s.',
					'This theme requires the following plugins: %1$s.',
					'spiko' 
				),
				'notice_can_install_recommended'  => _n_noop(
					/* translators: 1: plugin name(s). */
					'This theme recommends the following plugin: %1$s.',
					'This theme recommends the following plugins: %1$s.',
					'spiko' 
				),
				'notice_ask_to_update'            => _n_noop(
					/* translators: 1: plugin name(s). */
					'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.',
					'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.',
					'spiko' 
				),
				'notice_ask_to_update_maybe'      => _n_noop(
					/* translators: 1: plugin name(s). */
					'There is an update available for %1$s.',
					'There are updates available for the following plugins: %1$s.',
					'spiko' 
				),
				'notice_can_activate_required'    => _n_noop(
					/* translators: 1: plugin name(s). */
					'The following required plugin is currently inactive: %1$s.',
					'The following required plugins are currently inactive: %1$s.',
					'spiko' 
				),
				'notice_can_activate_recommended' => _n_noop(
					/* translators: 1: plugin name(s). */
					'The following recommended plugin is currently inactive: %1$s.',
					'The following recommended plugins are currently inactive: %1$s.',
					'spiko' 
				),
				'install_link'                    => _n_noop(
					'Begin installing plugin',
					'Begin installing plugins',
					'spiko' 
				),
				'update_link'                     => _n_noop(
					'Begin updating plugin',
					'Begin updating plugins',
					'spiko' 
				),
				'activate_link'                   => _n_noop(
					'Begin activating plugin',
					'Begin activating plugins',
					'spiko' 
				),
				'return'                          => esc_html__( 'Return to Required Plugins Installer', 'spiko'  ),
				'dashboard'                       => esc_html__( 'Return to the Dashboard', 'spiko'  ),
				'plugin_activated'                => esc_html__( 'Plugin activated successfully.', 'spiko'  ),
				'activated_successfully'          => esc_html__( 'The following plugin was activated successfully:', 'spiko'  ),
				/* translators: 1: plugin name. */
				'plugin_already_active'           => esc_html__( 'No action taken. Plugin %1$s was already active.', 'spiko'  ),
				/* translators: 1: plugin name. */
				'plugin_needs_higher_version'     => esc_html__( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'spiko'  ),
				/* translators: 1: dashboard link. */
				'complete'                        => esc_html__( 'All plugins installed and activated successfully. %1$s', 'spiko'  ),
				'dismiss'                         => esc_html__( 'Dismiss this notice', 'spiko'  ),
				'notice_cannot_install_activate'  => esc_html__( 'There are one or more required or recommended plugins to install, update or activate.', 'spiko'  ),
				'contact_admin'                   => esc_html__( 'Please contact the administrator of this site for help.', 'spiko'  ),
			);

			do_action( 'tgmpa_register' );

			/* After this point, the plugins should be registered and the configuration set. */

			// Proceed only if we have plugins to handle.
			if ( empty( $this->plugins ) || ! is_array( $this->plugins ) ) {
				return;
			}

			// Set up the menu and notices if we still have outstanding actions.
			if ( true !== $this->is_tgmpa_complete() ) {
				// Sort the plugins.
				array_multisort( $this->sort_order, SORT_ASC, $this->plugins );

				add_action( 'admin_menu', array( $this, 'admin_menu' ) );
				add_action( 'admin_head', array( $this, 'dismiss' ) );

				// Prevent the normal links from showing underneath a single install/update page.
				add_filter( 'install_plugin_complete_actions', array( $this, 'actions' ) );
				add_filter( 'update_plugin_complete_actions', array( $this, 'actions' ) );

				if ( $this->has_notices ) {
					add_action( 'admin_notices', array( $this, 'notices' ) );
					add_action( 'admin_init', array( $this, 'admin_init' ), 1 );
					add_action( 'admin_enqueue_scripts', array( $this, 'thickbox' ) );
				}
			}

			// If needed, filter plugin action links.
			add_action( 'load-plugins.php', array( $this, 'add_plugin_action_link_filters' ), 1 );

			// Make sure things get reset on switch theme.
			add_action( 'switch_theme', array( $this, 'flush_plugins_cache' ) );

			if ( $this->has_notices ) {
				add_action( 'switch_theme', array( $this, 'update_dismiss' ) );
			}

			// Setup the force activation hook.
			if ( true === $this->has_forced_activation ) {
				add_action( 'admin_init', array( $this, 'force_activation' ) );
			}

			// Setup the force deactivation hook.
			if ( true === $this->has_forced_deactivation ) {
				add_action( 'switch_theme', array( $this, 'force_deactivation' ) );
			}
		}







		/**
		 * Hook in plugin action link filters for the WP native plugins page.
		 *
		 * - Prevent activation of plugins which don't meet the minimum version requirements.
		 * - Prevent deactivation of force-activated plugins.
		 * - Add update notice if update available.
		 *
		 * @since 2.5.0
		 */
		public function add_plugin_action_link_filters() {
			foreach ( $this->plugins as $slug => $plugin ) {
				if ( false === $this->can_plugin_activate( $slug ) ) {
					add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_activate' ), 20 );
				}

				if ( true === $plugin['force_activation'] ) {
					add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_deactivate' ), 20 );
				}

				if ( false !== $this->does_plugin_require_update( $slug ) ) {
					add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_update' ), 20 );
				}
			}
		}

		/**
		 * Remove the 'Activate' link on the WP native plugins page if the plugin does not meet the
		 * minimum version requirements.
		 *
		 * @since 2.5.0
		 *
		 * @param array $actions Action links.
		 * @return array
		 */
		public function filter_plugin_action_links_activate( $actions ) {
			unset( $actions['activate'] );

			return $actions;
		}

		/**
		 * Remove the 'Deactivate' link on the WP native plugins page if the plugin has been set to force activate.
		 *
		 * @since 2.5.0
		 *
		 * @param array $actions Action links.
		 * @return array
		 */
		public function filter_plugin_action_links_deactivate( $actions ) {
			unset( $actions['deactivate'] );

			return $actions;
		}

		/**
		 * Add a 'Requires update' link on the WP native plugins page if the plugin does not meet the
		 * minimum version requirements.
		 *
		 * @since 2.5.0
		 *
		 * @param array $actions Action links.
		 * @return array
		 */
		public function filter_plugin_action_links_update( $actions ) {
			$actions['update'] = sprintf(
				'<a href="%1$s" title="%2$s" class="edit">%3$s</a>',
				esc_url( $this->get_tgmpa_status_url( 'update' ) ),
				esc_attr__( 'This plugin needs to be updated to be compatible with your theme.', 'spiko'  ),
				esc_html__( 'Update Required', 'spiko'  )
			);

			return $actions;
		}

		/**
		 * Handles calls to show plugin information via links in the notices.
		 *
		 * We get the links in the admin notices to point to the TGMPA page, rather
		 * than the typical plugin-install.php file, so we can prepare everything
		 * beforehand.
		 *
		 * WP does not make it easy to show the plugin information in the thickbox -
		 * here we have to require a file that includes a function that does the
		 * main work of displaying it, enqueue some styles, set up some globals and
		 * finally call that function before exiting.
		 *
		 * Down right easy once you know how...
		 *
		 * Returns early if not the TGMPA page.
		 *
		 * @since 2.1.0
		 *
		 * @global string $tab Used as iframe div class names, helps with styling
		 * @global string $body_id Used as the iframe body ID, helps with styling
		 *
		 * @return null Returns early if not the TGMPA page.
		 */
		public function admin_init() {
			if ( ! $this->is_tgmpa_page() ) {
				return;
			}

			if ( isset( $_REQUEST['tab'] ) && 'plugin-information' === $_REQUEST['tab'] ) {
				// Needed for install_plugin_information().
				require_once ABSPATH . 'wp-admin/includes/plugin-install.php';

				wp_enqueue_style( 'plugin-install' );

				global $tab, $body_id;
				$body_id = 'plugin-information';
				// @codingStandardsIgnoreStart
				$tab     = 'plugin-information';
				// @codingStandardsIgnoreEnd

				install_plugin_information();

				exit;
			}
		}

		/**
		 * Enqueue thickbox scripts/styles for plugin info.
		 *
		 * Thickbox is not automatically included on all admin pages, so we must
		 * manually enqueue it for those pages.
		 *
		 * Thickbox is only loaded if the user has not dismissed the admin
		 * notice or if there are any plugins left to install and activate.
		 *
		 * @since 2.1.0
		 */
		public function thickbox() {
			if ( ! get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) ) {
				add_thickbox();
			}
		}

		/**
		 * Adds submenu page if there are plugin actions to take.
		 *
		 * This method adds the submenu page letting users know that a required
		 * plugin needs to be installed.
		 *
		 * This page disappears once the plugin has been installed and activated.
		 *
		 * @since 1.0.0
		 *
		 * @see TGM_Plugin_Activation::init()
		 * @see TGM_Plugin_Activation::install_plugins_page()
		 *
		 * @return null Return early if user lacks capability to install a plugin.
		 */
		public function admin_menu() {
			// Make sure privileges are correct to see the page.
			if ( ! current_user_can( 'install_plugins' ) ) {
				return;
			}

			$args = apply_filters(
				'tgmpa_admin_menu_args',
				array(
					'parent_slug' => $this->parent_slug,                     // Parent Menu slug.
					'page_title'  => $this->strings['page_title'],           // Page title.
					'menu_title'  => $this->strings['menu_title'],           // Menu title.
					'capability'  => $this->capability,                      // Capability.
					'menu_slug'   => $this->menu,                            // Menu slug.
					'function'    => array( $this, 'install_plugins_page' ), // Callback.
				)
			);

			$this->add_admin_menu( $args );
		}

		/**
		 * Add the menu item.
		 *
		 * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA
		 * generator on the website.}}
		 *
		 * @since 2.5.0
		 *
		 * @param array $args Menu item configuration.
		 */
		protected function add_admin_menu( array $args ) {
			$this->page_hook = add_theme_page( $args['page_title'], $args['menu_title'], $args['capability'], $args['menu_slug'], $args['function'] );
		}

		/**
		 * Echoes plugin installation form.
		 *
		 * This method is the callback for the admin_menu method function.
		 * This displays the admin page and form area where the user can select to install and activate the plugin.
		 * Aborts early if we're processing a plugin installation action.
		 *
		 * @since 1.0.0
		 *
		 * @return null Aborts early if we're processing a plugin installation action.
		 */
		public function install_plugins_page() {
			// Store new instance of plugin table in object.
			$plugin_table = new TGMPA_List_Table;

			// Return early if processing a plugin installation action.
			if ( ( ( 'tgmpa-bulk-install' === $plugin_table->current_action() || 'tgmpa-bulk-update' === $plugin_table->current_action() ) && $plugin_table->process_bulk_actions() ) || $this->do_plugin_install() ) {
				return;
			}

			// Force refresh of available plugin information so we'll know about manual updates/deletes.
			wp_clean_plugins_cache( false );

			?>
			<div class="tgmpa wrap">
				<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
				<?php $plugin_table->prepare_items(); ?>

				<?php
				if ( ! empty( $this->message ) && is_string( $this->message ) ) {
					echo wp_kses_post( $this->message );
				}
				?>
				<?php $plugin_table->views(); ?>

				<form id="tgmpa-plugins" action="" method="post">
					<input type="hidden" name="tgmpa-page" value="<?php echo esc_attr( $this->menu ); ?>" />
					<input type="hidden" name="plugin_status" value="<?php echo esc_attr( $plugin_table->view_context ); ?>" />
					<?php $plugin_table->display(); ?>
				</form>
			</div>
			<?php
		}

		/**
		 * Installs, updates or activates a plugin depending on the action link clicked by the user.
		 *
		 * Checks the $_GET variable to see which actions have been
		 * passed and responds with the appropriate method.
		 *
		 * Uses WP_Filesystem to process and handle the plugin installation
		 * method.
		 *
		 * @since 1.0.0
		 *
		 * @uses WP_Filesystem
		 * @uses WP_Error
		 * @uses WP_Upgrader
		 * @uses Plugin_Upgrader
		 * @uses Plugin_Installer_Skin
		 * @uses Plugin_Upgrader_Skin
		 *
		 * @return boolean True on success, false on failure.
		 */
		protected function do_plugin_install() {
			if ( empty( $_GET['plugin'] ) ) {
				return false;
			}

			// All plugin information will be stored in an array for processing.
			$slug = $this->sanitize_key( urldecode( $_GET['plugin'] ) );

			if ( ! isset( $this->plugins[ $slug ] ) ) {
				return false;
			}

			// Was an install or upgrade action link clicked?
			if ( ( isset( $_GET['tgmpa-install'] ) && 'install-plugin' === $_GET['tgmpa-install'] ) || ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) ) {

				$install_type = 'install';
				if ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) {
					$install_type = 'update';
				}

				check_admin_referer( 'tgmpa-' . $install_type, 'tgmpa-nonce' );

				// Pass necessary information via URL if WP_Filesystem is needed.
				$url = wp_nonce_url(
					add_query_arg(
						array(
							'plugin'                 => urlencode( $slug ),
							'tgmpa-' . $install_type => $install_type . '-plugin',
						),
						$this->get_tgmpa_url()
					),
					'tgmpa-' . $install_type,
					'tgmpa-nonce'
				);

				$method = ''; // Leave blank so WP_Filesystem can populate it as necessary.

				if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, array() ) ) ) {
					return true;
				}

				if ( ! WP_Filesystem( $creds ) ) {
					request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, array() ); // Setup WP_Filesystem.
					return true;
				}

				/* If we arrive here, we have the filesystem. */

				// Prep variables for Plugin_Installer_Skin class.
				$extra         = array();
				$extra['slug'] = $slug; // Needed for potentially renaming of directory name.
				$source        = $this->get_download_url( $slug );
				$api           = ( 'repo' === $this->plugins[ $slug ]['source_type'] ) ? $this->get_plugins_api( $slug ) : null;
				$api           = ( false !== $api ) ? $api : null;

				$url = add_query_arg(
					array(
						'action' => $install_type . '-plugin',
						'plugin' => urlencode( $slug ),
					),
					'update.php'
				);

				if ( ! class_exists( 'Plugin_Upgrader', false ) ) {
					require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
				}

				$title     = ( 'update' === $install_type ) ? $this->strings['updating'] : $this->strings['installing'];
				$skin_args = array(
					'type'   => ( 'bundled' !== $this->plugins[ $slug ]['source_type'] ) ? 'web' : 'upload',
					'title'  => sprintf( $title, $this->plugins[ $slug ]['name'] ),
					'url'    => esc_url_raw( $url ),
					'nonce'  => $install_type . '-plugin_' . $slug,
					'plugin' => '',
					'api'    => $api,
					'extra'  => $extra,
				);
				unset( $title );

				if ( 'update' === $install_type ) {
					$skin_args['plugin'] = $this->plugins[ $slug ]['file_path'];
					$skin                = new Plugin_Upgrader_Skin( $skin_args );
				} else {
					$skin = new Plugin_Installer_Skin( $skin_args );
				}

				// Create a new instance of Plugin_Upgrader.
				$upgrader = new Plugin_Upgrader( $skin );

				// Perform the action and install the plugin from the $source urldecode().
				add_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1, 3 );

				if ( 'update' === $install_type ) {
					// Inject our info into the update transient.
					$to_inject                    = array( $slug => $this->plugins[ $slug ] );
					$to_inject[ $slug ]['source'] = $source;
					$this->inject_update_info( $to_inject );

					$upgrader->upgrade( $this->plugins[ $slug ]['file_path'] );
				} else {
					$upgrader->install( $source );
				}

				remove_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1 );

				// Make sure we have the correct file path now the plugin is installed/updated.
				$this->populate_file_path( $slug );

				// Only activate plugins if the config option is set to true and the plugin isn't
				// already active (upgrade).
				if ( $this->is_automatic && ! $this->is_plugin_active( $slug ) ) {
					$plugin_activate = $upgrader->plugin_info(); // Grab the plugin info from the Plugin_Upgrader method.
					if ( false === $this->activate_single_plugin( $plugin_activate, $slug, true ) ) {
						return true; // Finish execution of the function early as we encountered an error.
					}
				}

				$this->show_tgmpa_version();

				// Display message based on if all plugins are now active or not.
				if ( $this->is_tgmpa_complete() ) {
					echo '<p>', sprintf( esc_html( $this->strings['complete'] ), '<a href="' . esc_url( self_admin_url() ) . '">' . esc_html__( 'Return to the Dashboard', 'spiko'  ) . '</a>' ), '</p>';
					echo '<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
				} else {
					echo '<p><a href="', esc_url( $this->get_tgmpa_url() ), '" target="_parent">', esc_html( $this->strings['return'] ), '</a></p>';
				}

				return true;
			} elseif ( isset( $this->plugins[ $slug ]['file_path'], $_GET['tgmpa-activate'] ) && 'activate-plugin' === $_GET['tgmpa-activate'] ) {
				// Activate action link was clicked.
				check_admin_referer( 'tgmpa-activate', 'tgmpa-nonce' );

				if ( false === $this->activate_single_plugin( $this->plugins[ $slug ]['file_path'], $slug ) ) {
					return true; // Finish execution of the function early as we encountered an error.
				}
			}

			return false;
		}

		/**
		 * Inject information into the 'update_plugins' site transient as WP checks that before running an update.
		 *
		 * @since 2.5.0
		 *
		 * @param array $plugins The plugin information for the plugins which are to be updated.
		 */
		public function inject_update_info( $plugins ) {
			$repo_updates = get_site_transient( 'update_plugins' );

			if ( ! is_object( $repo_updates ) ) {
				$repo_updates = new stdClass;
			}

			foreach ( $plugins as $slug => $plugin ) {
				$file_path = $plugin['file_path'];

				if ( empty( $repo_updates->response[ $file_path ] ) ) {
					$repo_updates->response[ $file_path ] = new stdClass;
				}

				// We only really need to set package, but let's do all we can in case WP changes something.
				$repo_updates->response[ $file_path ]->slug        = $slug;
				$repo_updates->response[ $file_path ]->plugin      = $file_path;
				$repo_updates->response[ $file_path ]->new_version = $plugin['version'];
				$repo_updates->response[ $file_path ]->package     = $plugin['source'];
				if ( empty( $repo_updates->response[ $file_path ]->url ) && ! empty( $plugin['external_url'] ) ) {
					$repo_updates->response[ $file_path ]->url = $plugin['external_url'];
				}
			}

			set_site_transient( 'update_plugins', $repo_updates );
		}

		/**
		 * Adjust the plugin directory name if necessary.
		 *
		 * The final destination directory of a plugin is based on the subdirectory name found in the
		 * (un)zipped source. In some cases - most notably GitHub repository plugin downloads -, this
		 * subdirectory name is not the same as the expected slug and the plugin will not be recognized
		 * as installed. This is fixed by adjusting the temporary unzipped source subdirectory name to
		 * the expected plugin slug.
		 *
		 * @since 2.5.0
		 *
		 * @param string       $source        Path to upgrade/zip-file-name.tmp/subdirectory/.
		 * @param string       $remote_source Path to upgrade/zip-file-name.tmp.
		 * @param \WP_Upgrader $upgrader      Instance of the upgrader which installs the plugin.
		 * @return string $source
		 */
		public function maybe_adjust_source_dir( $source, $remote_source, $upgrader ) {
			if ( ! $this->is_tgmpa_page() || ! is_object( $GLOBALS['wp_filesystem'] ) ) {
				return $source;
			}

			// Check for single file plugins.
			$source_files = array_keys( $GLOBALS['wp_filesystem']->dirlist( $remote_source ) );
			if ( 1 === count( $source_files ) && false === $GLOBALS['wp_filesystem']->is_dir( $source ) ) {
				return $source;
			}

			// Multi-file plugin, let's see if the directory is correctly named.
			$desired_slug = '';

			// Figure out what the slug is supposed to be.
			if ( false === $upgrader->bulk && ! empty( $upgrader->skin->options['extra']['slug'] ) ) {
				$desired_slug = $upgrader->skin->options['extra']['slug'];
			} else {
				// Bulk installer contains less info, so fall back on the info registered here.
				foreach ( $this->plugins as $slug => $plugin ) {
					if ( ! empty( $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) && $plugin['name'] === $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) {
						$desired_slug = $slug;
						break;
					}
				}
				unset( $slug, $plugin );
			}

			if ( ! empty( $desired_slug ) ) {
				$subdir_name = untrailingslashit( str_replace( trailingslashit( $remote_source ), '', $source ) );

				if ( ! empty( $subdir_name ) && $subdir_name !== $desired_slug ) {
					$from_path = untrailingslashit( $source );
					$to_path   = trailingslashit( $remote_source ) . $desired_slug;

					if ( true === $GLOBALS['wp_filesystem']->move( $from_path, $to_path ) ) {
						return trailingslashit( $to_path );
					} else {
						return new WP_Error( 'rename_failed', esc_html__( 'The remote plugin package does not contain a folder with the desired slug and renaming did not work.', 'spiko'  ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'spiko'  ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) );
					}
				} elseif ( empty( $subdir_name ) ) {
					return new WP_Error( 'packaged_wrong', esc_html__( 'The remote plugin package consists of more than one file, but the files are not packaged in a folder.', 'spiko'  ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'spiko'  ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) );
				}
			}

			return $source;
		}

		/**
		 * Activate a single plugin and send feedback about the result to the screen.
		 *
		 * @since 2.5.0
		 *
		 * @param string $file_path Path within wp-plugins/ to main plugin file.
		 * @param string $slug      Plugin slug.
		 * @param bool   $automatic Whether this is an automatic activation after an install. Defaults to false.
		 *                          This determines the styling of the output messages.
		 * @return bool False if an error was encountered, true otherwise.
		 */
		protected function activate_single_plugin( $file_path, $slug, $automatic = false ) {
			if ( $this->can_plugin_activate( $slug ) ) {
				$activate = activate_plugin( $file_path );

				if ( is_wp_error( $activate ) ) {
					echo '<div id="message" class="error"><p>', wp_kses_post( $activate->get_error_message() ), '</p></div>',
						'<p><a href="', esc_url( $this->get_tgmpa_url() ), '" target="_parent">', esc_html( $this->strings['return'] ), '</a></p>';

					return false; // End it here if there is an error with activation.
				} else {
					if ( ! $automatic ) {
						// Make sure message doesn't display again if bulk activation is performed
						// immediately after a single activation.
						if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
							echo '<div id="message" class="updated"><p>', esc_html( $this->strings['activated_successfully'] ), ' <strong>', esc_html( $this->plugins[ $slug ]['name'] ), '.</strong></p></div>';
						}
					} else {
						// Simpler message layout for use on the plugin install page.
						echo '<p>', esc_html( $this->strings['plugin_activated'] ), '</p>';
					}
				}
			} elseif ( $this->is_plugin_active( $slug ) ) {
				// No simpler message format provided as this message should never be encountered
				// on the plugin install page.
				echo '<div id="message" class="error"><p>',
					sprintf(
						esc_html( $this->strings['plugin_already_active'] ),
						'<strong>' . esc_html( $this->plugins[ $slug ]['name'] ) . '</strong>'
					),
					'</p></div>';
			} elseif ( $this->does_plugin_require_update( $slug ) ) {
				if ( ! $automatic ) {
					// Make sure message doesn't display again if bulk activation is performed
					// immediately after a single activation.
					if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
						echo '<div id="message" class="error"><p>',
							sprintf(
								esc_html( $this->strings['plugin_needs_higher_version'] ),
								'<strong>' . esc_html( $this->plugins[ $slug ]['name'] ) . '</strong>'
							),
							'</p></div>';
					}
				} else {
					// Simpler message layout for use on the plugin install page.
					echo '<p>', sprintf( esc_html( $this->strings['plugin_needs_higher_version'] ), esc_html( $this->plugins[ $slug ]['name'] ) ), '</p>';
				}
			}

			return true;
		}

		/**
		 * Echoes required plugin notice.
		 *
		 * Outputs a message telling users that a specific plugin is required for
		 * their theme. If appropriate, it includes a link to the form page where
		 * users can install and activate the plugin.
		 *
		 * Returns early if we're on the Install page.
		 *
		 * @since 1.0.0
		 *
		 * @global object $current_screen
		 *
		 * @return null Returns early if we're on the Install page.
		 */
		public function notices() {
			// Remove nag on the install page / Return early if the nag message has been dismissed or user < author.
			if ( ( $this->is_tgmpa_page() || $this->is_core_update_page() ) || get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) || ! current_user_can( apply_filters( 'tgmpa_show_admin_notice_capability', 'publish_posts' ) ) ) {
				return;
			}

			// Store for the plugin slugs by message type.
			$message = array();

			// Initialize counters used to determine plurality of action link texts.
			$install_link_count          = 0;
			$update_link_count           = 0;
			$activate_link_count         = 0;
			$total_required_action_count = 0;

			foreach ( $this->plugins as $slug => $plugin ) {
				if ( $this->is_plugin_active( $slug ) && false === $this->does_plugin_have_update( $slug ) ) {
					continue;
				}

				if ( ! $this->is_plugin_installed( $slug ) ) {
					if ( current_user_can( 'install_plugins' ) ) {
						$install_link_count++;

						if ( true === $plugin['required'] ) {
							$message['notice_can_install_required'][] = $slug;
						} else {
							$message['notice_can_install_recommended'][] = $slug;
						}
					}
					if ( true === $plugin['required'] ) {
						$total_required_action_count++;
					}
				} else {
					if ( ! $this->is_plugin_active( $slug ) && $this->can_plugin_activate( $slug ) ) {
						if ( current_user_can( 'activate_plugins' ) ) {
							$activate_link_count++;

							if ( true === $plugin['required'] ) {
								$message['notice_can_activate_required'][] = $slug;
							} else {
								$message['notice_can_activate_recommended'][] = $slug;
							}
						}
						if ( true === $plugin['required'] ) {
							$total_required_action_count++;
						}
					}

					if ( $this->does_plugin_require_update( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) {

						if ( current_user_can( 'update_plugins' ) ) {
							$update_link_count++;

							if ( $this->does_plugin_require_update( $slug ) ) {
								$message['notice_ask_to_update'][] = $slug;
							} elseif ( false !== $this->does_plugin_have_update( $slug ) ) {
								$message['notice_ask_to_update_maybe'][] = $slug;
							}
						}
						if ( true === $plugin['required'] ) {
							$total_required_action_count++;
						}
					}
				}
			}
			unset( $slug, $plugin );

			// If we have notices to display, we move forward.
			if ( ! empty( $message ) || $total_required_action_count > 0 ) {
				krsort( $message ); // Sort messages.
				$rendered = '';

				// As add_settings_error() wraps the final message in a <p> and as the final message can't be
				// filtered, using <p>'s in our html would render invalid html output.
				$line_template = '<span style="display: block; margin: 0.5em 0.5em 0 0; clear: both;">%s</span>' . "\n";

				if ( ! current_user_can( 'activate_plugins' ) && ! current_user_can( 'install_plugins' ) && ! current_user_can( 'update_plugins' ) ) {
					$rendered  = esc_html( $this->strings['notice_cannot_install_activate'] ) . ' ' . esc_html( $this->strings['contact_admin'] );
					$rendered .= $this->create_user_action_links_for_notice( 0, 0, 0, $line_template );
				} else {

					// If dismissable is false and a message is set, output it now.
					if ( ! $this->dismissable && ! empty( $this->dismiss_msg ) ) {
						$rendered .= sprintf( $line_template, wp_kses_post( $this->dismiss_msg ) );
					}

					// Render the individual message lines for the notice.
					foreach ( $message as $type => $plugin_group ) {
						$linked_plugins = array();

						// Get the external info link for a plugin if one is available.
						foreach ( $plugin_group as $plugin_slug ) {
							$linked_plugins[] = $this->get_info_link( $plugin_slug );
						}
						unset( $plugin_slug );

						$count          = count( $plugin_group );
						$linked_plugins = array_map( array( 'TGMPA_Utils', 'wrap_in_em' ), $linked_plugins );
						$last_plugin    = array_pop( $linked_plugins ); // Pop off last name to prep for readability.
						$imploded       = empty( $linked_plugins ) ? $last_plugin : ( implode( ', ', $linked_plugins ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'spiko'  ) . ' ' . $last_plugin );

						$rendered .= sprintf(
							$line_template,
							sprintf(
								translate_nooped_plural( $this->strings[ $type ], $count, 'spiko'  ),
								$imploded,
								$count
							)
						);

					}
					unset( $type, $plugin_group, $linked_plugins, $count, $last_plugin, $imploded );

					$rendered .= $this->create_user_action_links_for_notice( $install_link_count, $update_link_count, $activate_link_count, $line_template );
				}

				// Register the nag messages and prepare them to be processed.
				add_settings_error( 'tgmpa', 'tgmpa', $rendered, $this->get_admin_notice_class() );
			}

			// Admin options pages already output settings_errors, so this is to avoid duplication.
			if ( 'options-general' !== $GLOBALS['current_screen']->parent_base ) {
				$this->display_settings_errors();
			}
		}

		/**
		 * Generate the user action links for the admin notice.
		 *
		 * @since 2.6.0
		 *
		 * @param int $install_count  Number of plugins to install.
		 * @param int $update_count   Number of plugins to update.
		 * @param int $activate_count Number of plugins to activate.
		 * @param int $line_template  Template for the HTML tag to output a line.
		 * @return string Action links.
		 */
		protected function create_user_action_links_for_notice( $install_count, $update_count, $activate_count, $line_template ) {
			// Setup action links.
			$action_links = array(
				'install'  => '',
				'update'   => '',
				'activate' => '',
				'dismiss'  => $this->dismissable ? '<a href="' . esc_url( wp_nonce_url( add_query_arg( 'tgmpa-dismiss', 'dismiss_admin_notices' ), 'tgmpa-dismiss-' . get_current_user_id() ) ) . '" class="dismiss-notice" target="_parent">' . esc_html( $this->strings['dismiss'] ) . '</a>' : '',
			);

			$link_template = '<a href="%2$s">%1$s</a>';

			if ( current_user_can( 'install_plugins' ) ) {
				if ( $install_count > 0 ) {
					$action_links['install'] = sprintf(
						$link_template,
						translate_nooped_plural( $this->strings['install_link'], $install_count, 'spiko'  ),
						esc_url( $this->get_tgmpa_status_url( 'install' ) )
					);
				}
				if ( $update_count > 0 ) {
					$action_links['update'] = sprintf(
						$link_template,
						translate_nooped_plural( $this->strings['update_link'], $update_count, 'spiko'  ),
						esc_url( $this->get_tgmpa_status_url( 'update' ) )
					);
				}
			}

			if ( current_user_can( 'activate_plugins' ) && $activate_count > 0 ) {
				$action_links['activate'] = sprintf(
					$link_template,
					translate_nooped_plural( $this->strings['activate_link'], $activate_count, 'spiko'  ),
					esc_url( $this->get_tgmpa_status_url( 'activate' ) )
				);
			}

			$action_links = apply_filters( 'tgmpa_notice_action_links', $action_links );

			$action_links = array_filter( (array) $action_links ); // Remove any empty array items.

			if ( ! empty( $action_links ) ) {
				$action_links = sprintf( $line_template, implode( ' | ', $action_links ) );
				return apply_filters( 'tgmpa_notice_rendered_action_links', $action_links );
			} else {
				return '';
			}
		}

		/**
		 * Get admin notice class.
		 *
		 * Work around all the changes to the various admin notice classes between WP 4.4 and 3.7
		 * (lowest supported version by TGMPA).
		 *
		 * @since 2.6.0
		 *
		 * @return string
		 */
		protected function get_admin_notice_class() {
			if ( ! empty( $this->strings['nag_type'] ) ) {
				return sanitize_html_class( strtolower( $this->strings['nag_type'] ) );
			} else {
				if ( version_compare( $this->wp_version, '4.2', '>=' ) ) {
					return 'notice-warning';
				} elseif ( version_compare( $this->wp_version, '4.1', '>=' ) ) {
					return 'notice';
				} else {
					return 'updated';
				}
			}
		}

		/**
		 * Display settings errors and remove those which have been displayed to avoid duplicate messages showing
		 *
		 * @since 2.5.0
		 */
		protected function display_settings_errors() {
			global $wp_settings_errors;

			settings_errors( 'tgmpa' );

			foreach ( (array) $wp_settings_errors as $key => $details ) {
				if ( 'tgmpa' === $details['setting'] ) {
					unset( $wp_settings_errors[ $key ] );
					break;
				}
			}
		}

		/**
		 * Register dismissal of admin notices.
		 *
		 * Acts on the dismiss link in the admin nag messages.
		 * If clicked, the admin notice disappears and will no longer be visible to this user.
		 *
		 * @since 2.1.0
		 */
		public function dismiss() {
			if ( isset( $_GET['tgmpa-dismiss'] ) && check_admin_referer( 'tgmpa-dismiss-' . get_current_user_id() ) ) {
				update_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, 1 );
			}
		}

		/**
		 * Add individual plugin to our collection of plugins.
		 *
		 * If the required keys are not set or the plugin has already
		 * been registered, the plugin is not added.
		 *
		 * @since 2.0.0
		 *
		 * @param array|null $plugin Array of plugin arguments or null if invalid argument.
		 * @return null Return early if incorrect argument.
		 */
		public function register( $plugin ) {
			if ( empty( $plugin['slug'] ) || empty( $plugin['name'] ) ) {
				return;
			}

			if ( empty( $plugin['slug'] ) || ! is_string( $plugin['slug'] ) || isset( $this->plugins[ $plugin['slug'] ] ) ) {
				return;
			}

			$defaults = array(
				'name'               => '',      // String
				'slug'               => '',      // String
				'source'             => 'repo',  // String
				'required'           => false,   // Boolean
				'version'            => '',      // String
				'force_activation'   => false,   // Boolean
				'force_deactivation' => false,   // Boolean
				'external_url'       => '',      // String
				'is_callable'        => '',      // String|Array.
			);

			// Prepare the received data.
			$plugin = wp_parse_args( $plugin, $defaults );

			// Standardize the received slug.
			$plugin['slug'] = $this->sanitize_key( $plugin['slug'] );

			// Forgive users for using string versions of booleans or floats for version number.
			$plugin['version']            = (string) $plugin['version'];
			$plugin['source']             = empty( $plugin['source'] ) ? 'repo' : $plugin['source'];
			$plugin['required']           = TGMPA_Utils::validate_bool( $plugin['required'] );
			$plugin['force_activation']   = TGMPA_Utils::validate_bool( $plugin['force_activation'] );
			$plugin['force_deactivation'] = TGMPA_Utils::validate_bool( $plugin['force_deactivation'] );

			// Enrich the received data.
			$plugin['file_path']   = $this->_spiko_get_plugin_basename_from_slug( $plugin['slug'] );
			$plugin['source_type'] = $this->get_plugin_source_type( $plugin['source'] );

			// Set the class properties.
			$this->plugins[ $plugin['slug'] ]    = $plugin;
			$this->sort_order[ $plugin['slug'] ] = $plugin['name'];

			// Should we add the force activation hook ?
			if ( true === $plugin['force_activation'] ) {
				$this->has_forced_activation = true;
			}

			// Should we add the force deactivation hook ?
			if ( true === $plugin['force_deactivation'] ) {
				$this->has_forced_deactivation = true;
			}
		}

		/**
		 * Determine what type of source the plugin comes from.
		 *
		 * @since 2.5.0
		 *
		 * @param string $source The source of the plugin as provided, either empty (= WP repo), a file path
		 *                       (= bundled) or an external URL.
		 * @return string 'repo', 'external', or 'bundled'
		 */
		protected function get_plugin_source_type( $source ) {
			if ( 'repo' === $source || preg_match( self::WP_REPO_REGEX, $source ) ) {
				return 'repo';
			} elseif ( preg_match( self::IS_URL_REGEX, $source ) ) {
				return 'external';
			} else {
				return 'bundled';
			}
		}

		/**
		 * Sanitizes a string key.
		 *
		 * Near duplicate of WP Core `sanitize_key()`. The difference is that uppercase characters *are*
		 * allowed, so as not to break upgrade paths from non-standard bundled plugins using uppercase
		 * characters in the plugin directory path/slug. Silly them.
		 *
		 * @see https://developer.wordpress.org/reference/hooks/sanitize_key/
		 *
		 * @since 2.5.0
		 *
		 * @param string $key String key.
		 * @return string Sanitized key
		 */
		public function sanitize_key( $key ) {
			$raw_key = $key;
			$key     = preg_replace( '`[^A-Za-z0-9_-]`', '', $key );

			/**
			 * Filter a sanitized key string.
			 *
			 * @since 2.5.0
			 *
			 * @param string $key     Sanitized key.
			 * @param string $raw_key The key prior to sanitization.
			 */
			return apply_filters( 'tgmpa_sanitize_key', $key, $raw_key );
		}

		/**
		 * Amend default configuration settings.
		 *
		 * @since 2.0.0
		 *
		 * @param array $config Array of config options to pass as class properties.
		 */
		public function config( $config ) {
			$keys = array(
				'id',
				'default_path',
				'has_notices',
				'dismissable',
				'dismiss_msg',
				'menu',
				'parent_slug',
				'capability',
				'is_automatic',
				'message',
				'strings',
			);

			foreach ( $keys as $key ) {
				if ( isset( $config[ $key ] ) ) {
					if ( is_array( $config[ $key ] ) ) {
						$this->$key = array_merge( $this->$key, $config[ $key ] );
					} else {
						$this->$key = $config[ $key ];
					}
				}
			}
		}

		/**
		 * Amend action link after plugin installation.
		 *
		 * @since 2.0.0
		 *
		 * @param array $install_actions Existing array of actions.
		 * @return false|array Amended array of actions.
		 */
		public function actions( $install_actions ) {
			// Remove action links on the TGMPA install page.
			if ( $this->is_tgmpa_page() ) {
				return false;
			}

			return $install_actions;
		}

		/**
		 * Flushes the plugins cache on theme switch to prevent stale entries
		 * from remaining in the plugin table.
		 *
		 * @since 2.4.0
		 *
		 * @param bool $clear_update_cache Optional. Whether to clear the Plugin updates cache.
		 *                                 Parameter added in v2.5.0.
		 */
		public function flush_plugins_cache( $clear_update_cache = true ) {
			wp_clean_plugins_cache( $clear_update_cache );
		}

		/**
		 * Set file_path key for each installed plugin.
		 *
		 * @since 2.1.0
		 *
		 * @param string $plugin_slug Optional. If set, only (re-)populates the file path for that specific plugin.
		 *                            Parameter added in v2.5.0.
		 */
		public function populate_file_path( $plugin_slug = '' ) {
			if ( ! empty( $plugin_slug ) && is_string( $plugin_slug ) && isset( $this->plugins[ $plugin_slug ] ) ) {
				$this->plugins[ $plugin_slug ]['file_path'] = $this->_spiko_get_plugin_basename_from_slug( $plugin_slug );
			} else {
				// Add file_path key for all plugins.
				foreach ( $this->plugins as $slug => $values ) {
					$this->plugins[ $slug ]['file_path'] = $this->_spiko_get_plugin_basename_from_slug( $slug );
				}
			}
		}

		/**
		 * Helper function to extract the file path of the plugin file from the
		 * plugin slug, if the plugin is installed.
		 *
		 * @since 2.0.0
		 *
		 * @param string $slug Plugin slug (typically folder name) as provided by the developer.
		 * @return string Either file path for plugin if installed, or just the plugin slug.
		 */
		protected function _spiko_get_plugin_basename_from_slug( $slug ) {
			$keys = array_keys( $this->get_plugins() );

			foreach ( $keys as $key ) {
				if ( preg_match( '|^' . $slug . '/|', $key ) ) {
					return $key;
				}
			}

			return $slug;
		}

		/**
		 * Retrieve plugin data, given the plugin name.
		 *
		 * Loops through the registered plugins looking for $name. If it finds it,
		 * it returns the $data from that plugin. Otherwise, returns false.
		 *
		 * @since 2.1.0
		 *
		 * @param string $name Name of the plugin, as it was registered.
		 * @param string $data Optional. Array key of plugin data to return. Default is slug.
		 * @return string|boolean Plugin slug if found, false otherwise.
		 */
		public function _get_plugin_data_from_name( $name, $data = 'slug' ) {
			foreach ( $this->plugins as $values ) {
				if ( $name === $values['name'] && isset( $values[ $data ] ) ) {
					return $values[ $data ];
				}
			}

			return false;
		}

		/**
		 * Retrieve the download URL for a package.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Plugin download URL or path to local file or empty string if undetermined.
		 */
		public function get_download_url( $slug ) {
			$dl_source = '';

			switch ( $this->plugins[ $slug ]['source_type'] ) {
				case 'repo':
					return $this->get_wp_repo_download_url( $slug );
				case 'external':
					return $this->plugins[ $slug ]['source'];
				case 'bundled':
					return $this->default_path . $this->plugins[ $slug ]['source'];
			}

			return $dl_source; // Should never happen.
		}

		/**
		 * Retrieve the download URL for a WP repo package.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Plugin download URL.
		 */
		protected function get_wp_repo_download_url( $slug ) {
			$source = '';
			$api    = $this->get_plugins_api( $slug );

			if ( false !== $api && isset( $api->download_link ) ) {
				$source = $api->download_link;
			}

			return $source;
		}

		/**
		 * Try to grab information from WordPress API.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return object Plugins_api response object on success, WP_Error on failure.
		 */
		protected function get_plugins_api( $slug ) {
			static $api = array(); // Cache received responses.

			if ( ! isset( $api[ $slug ] ) ) {
				if ( ! function_exists( 'plugins_api' ) ) {
					require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
				}

				$response = plugins_api( 'plugin_information', array( 'slug' => $slug, 'fields' => array( 'sections' => false ) ) );

				$api[ $slug ] = false;

				if ( is_wp_error( $response ) ) {
					wp_die( esc_html( $this->strings['oops'] ) );
				} else {
					$api[ $slug ] = $response;
				}
			}

			return $api[ $slug ];
		}

		/**
		 * Retrieve a link to a plugin information page.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Fully formed html link to a plugin information page if available
		 *                or the plugin name if not.
		 */
		public function get_info_link( $slug ) {
			if ( ! empty( $this->plugins[ $slug ]['external_url'] ) && preg_match( self::IS_URL_REGEX, $this->plugins[ $slug ]['external_url'] ) ) {
				$link = sprintf(
					'<a href="%1$s" target="_blank">%2$s</a>',
					esc_url( $this->plugins[ $slug ]['external_url'] ),
					esc_html( $this->plugins[ $slug ]['name'] )
				);
			} elseif ( 'repo' === $this->plugins[ $slug ]['source_type'] ) {
				$url = add_query_arg(
					array(
						'tab'       => 'plugin-information',
						'plugin'    => urlencode( $slug ),
						'TB_iframe' => 'true',
						'width'     => '640',
						'height'    => '500',
					),
					self_admin_url( 'plugin-install.php' )
				);

				$link = sprintf(
					'<a href="%1$s" class="thickbox">%2$s</a>',
					esc_url( $url ),
					esc_html( $this->plugins[ $slug ]['name'] )
				);
			} else {
				$link = esc_html( $this->plugins[ $slug ]['name'] ); // No hyperlink.
			}

			return $link;
		}

		/**
		 * Determine if we're on the TGMPA Install page.
		 *
		 * @since 2.1.0
		 *
		 * @return boolean True when on the TGMPA page, false otherwise.
		 */
		protected function is_tgmpa_page() {
			return isset( $_GET['page'] ) && $this->menu === $_GET['page'];
		}

		/**
		 * Determine if we're on a WP Core installation/upgrade page.
		 *
		 * @since 2.6.0
		 *
		 * @return boolean True when on a WP Core installation/upgrade page, false otherwise.
		 */
		protected function is_core_update_page() {
			// Current screen is not always available, most notably on the customizer screen.
			if ( ! function_exists( 'get_current_screen' ) ) {
				return false;
			}

			$screen = get_current_screen();

			if ( 'update-core' === $screen->base ) {
				// Core update screen.
				return true;
			} elseif ( 'plugins' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok.
				// Plugins bulk update screen.
				return true;
			} elseif ( 'update' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok.
				// Individual updates (ajax call).
				return true;
			}

			return false;
		}

		/**
		 * Retrieve the URL to the TGMPA Install page.
		 *
		 * I.e. depending on the config settings passed something along the lines of:
		 * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins
		 *
		 * @since 2.5.0
		 *
		 * @return string Properly encoded URL (not escaped).
		 */
		public function get_tgmpa_url() {
			static $url;

			if ( ! isset( $url ) ) {
				$parent = $this->parent_slug;
				if ( false === strpos( $parent, '.php' ) ) {
					$parent = 'admin.php';
				}
				$url = add_query_arg(
					array(
						'page' => urlencode( $this->menu ),
					),
					self_admin_url( $parent )
				);
			}

			return $url;
		}

		/**
		 * Retrieve the URL to the TGMPA Install page for a specific plugin status (view).
		 *
		 * I.e. depending on the config settings passed something along the lines of:
		 * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=install
		 *
		 * @since 2.5.0
		 *
		 * @param string $status Plugin status - either 'install', 'update' or 'activate'.
		 * @return string Properly encoded URL (not escaped).
		 */
		public function get_tgmpa_status_url( $status ) {
			return add_query_arg(
				array(
					'plugin_status' => urlencode( $status ),
				),
				$this->get_tgmpa_url()
			);
		}

		/**
		 * Determine whether there are open actions for plugins registered with TGMPA.
		 *
		 * @since 2.5.0
		 *
		 * @return bool True if complete, i.e. no outstanding actions. False otherwise.
		 */
		public function is_tgmpa_complete() {
			$complete = true;
			foreach ( $this->plugins as $slug => $plugin ) {
				if ( ! $this->is_plugin_active( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) {
					$complete = false;
					break;
				}
			}

			return $complete;
		}

		/**
		 * Check if a plugin is installed. Does not take must-use plugins into account.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if installed, false otherwise.
		 */
		public function is_plugin_installed( $slug ) {
			$installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached).

			return ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ] ) );
		}

		/**
		 * Check if a plugin is active.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if active, false otherwise.
		 */
		public function is_plugin_active( $slug ) {
			return ( ( ! empty( $this->plugins[ $slug ]['is_callable'] ) && is_callable( $this->plugins[ $slug ]['is_callable'] ) ) || is_plugin_active( $this->plugins[ $slug ]['file_path'] ) );
		}

		/**
		 * Check if a plugin can be updated, i.e. if we have information on the minimum WP version required
		 * available, check whether the current install meets them.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if OK to update, false otherwise.
		 */
		public function can_plugin_update( $slug ) {
			// We currently can't get reliable info on non-WP-repo plugins - issue #380.
			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
				return true;
			}

			$api = $this->get_plugins_api( $slug );

			if ( false !== $api && isset( $api->requires ) ) {
				return version_compare( $this->wp_version, $api->requires, '>=' );
			}

			// No usable info received from the plugins API, presume we can update.
			return true;
		}

		/**
		 * Check to see if the plugin is 'updatetable', i.e. installed, with an update available
		 * and no WP version requirements blocking it.
		 *
		 * @since 2.6.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if OK to proceed with update, false otherwise.
		 */
		public function is_plugin_updatetable( $slug ) {
			if ( ! $this->is_plugin_installed( $slug ) ) {
				return false;
			} else {
				return ( false !== $this->does_plugin_have_update( $slug ) && $this->can_plugin_update( $slug ) );
			}
		}

		/**
		 * Check if a plugin can be activated, i.e. is not currently active and meets the minimum
		 * plugin version requirements set in TGMPA (if any).
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if OK to activate, false otherwise.
		 */
		public function can_plugin_activate( $slug ) {
			return ( ! $this->is_plugin_active( $slug ) && ! $this->does_plugin_require_update( $slug ) );
		}

		/**
		 * Retrieve the version number of an installed plugin.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Version number as string or an empty string if the plugin is not installed
		 *                or version unknown (plugins which don't comply with the plugin header standard).
		 */
		public function get_installed_version( $slug ) {
			$installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached).

			if ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'] ) ) {
				return $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'];
			}

			return '';
		}

		/**
		 * Check whether a plugin complies with the minimum version requirements.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True when a plugin needs to be updated, otherwise false.
		 */
		public function does_plugin_require_update( $slug ) {
			$installed_version = $this->get_installed_version( $slug );
			$minimum_version   = $this->plugins[ $slug ]['version'];

			return version_compare( $minimum_version, $installed_version, '>' );
		}

		/**
		 * Check whether there is an update available for a plugin.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return false|string Version number string of the available update or false if no update available.
		 */
		public function does_plugin_have_update( $slug ) {
			// Presume bundled and external plugins will point to a package which meets the minimum required version.
			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
				if ( $this->does_plugin_require_update( $slug ) ) {
					return $this->plugins[ $slug ]['version'];
				}

				return false;
			}

			$repo_updates = get_site_transient( 'update_plugins' );

			if ( isset( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version ) ) {
				return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version;
			}

			return false;
		}

		/**
		 * Retrieve potential upgrade notice for a plugin.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string The upgrade notice or an empty string if no message was available or provided.
		 */
		public function get_upgrade_notice( $slug ) {
			// We currently can't get reliable info on non-WP-repo plugins - issue #380.
			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
				return '';
			}

			$repo_updates = get_site_transient( 'update_plugins' );

			if ( ! empty( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice ) ) {
				return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice;
			}

			return '';
		}

		/**
		 * Wrapper around the core WP get_plugins function, making sure it's actually available.
		 *
		 * @since 2.5.0
		 *
		 * @param string $plugin_folder Optional. Relative path to single plugin folder.
		 * @return array Array of installed plugins with plugin information.
		 */
		public function get_plugins( $plugin_folder = '' ) {
			if ( ! function_exists( 'get_plugins' ) ) {
				require_once ABSPATH . 'wp-admin/includes/plugin.php';
			}

			return get_plugins( $plugin_folder );
		}

		/**
		 * Delete dismissable nag option when theme is switched.
		 *
		 * This ensures that the user(s) is/are again reminded via nag of required
		 * and/or recommended plugins if they re-activate the theme.
		 *
		 * @since 2.1.1
		 */
		public function update_dismiss() {
			delete_metadata( 'user', null, 'tgmpa_dismissed_notice_' . $this->id, null, true );
		}

		/**
		 * Forces plugin activation if the parameter 'force_activation' is
		 * set to true.
		 *
		 * This allows theme authors to specify certain plugins that must be
		 * active at all times while using the current theme.
		 *
		 * Please take special care when using this parameter as it has the
		 * potential to be harmful if not used correctly. Setting this parameter
		 * to true will not allow the specified plugin to be deactivated unless
		 * the user switches themes.
		 *
		 * @since 2.2.0
		 */
		public function force_activation() {
			foreach ( $this->plugins as $slug => $plugin ) {
				if ( true === $plugin['force_activation'] ) {
					if ( ! $this->is_plugin_installed( $slug ) ) {
						// Oops, plugin isn't there so iterate to next condition.
						continue;
					} elseif ( $this->can_plugin_activate( $slug ) ) {
						// There we go, activate the plugin.
						activate_plugin( $plugin['file_path'] );
					}
				}
			}
		}

		/**
		 * Forces plugin deactivation if the parameter 'force_deactivation'
		 * is set to true and adds the plugin to the 'recently active' plugins list.
		 *
		 * This allows theme authors to specify certain plugins that must be
		 * deactivated upon switching from the current theme to another.
		 *
		 * Please take special care when using this parameter as it has the
		 * potential to be harmful if not used correctly.
		 *
		 * @since 2.2.0
		 */
		public function force_deactivation() {
			$deactivated = array();

			foreach ( $this->plugins as $slug => $plugin ) {
				/*
				 * Only proceed forward if the parameter is set to true and plugin is active
				 * as a 'normal' (not must-use) plugin.
				 */
				if ( true === $plugin['force_deactivation'] && is_plugin_active( $plugin['file_path'] ) ) {
					deactivate_plugins( $plugin['file_path'] );
					$deactivated[ $plugin['file_path'] ] = time();
				}
			}

			if ( ! empty( $deactivated ) ) {
				update_option( 'recently_activated', $deactivated + (array) get_option( 'recently_activated' ) );
			}
		}

		/**
		 * Echo the current TGMPA version number to the page.
		 *
		 * @since 2.5.0
		 */
		public function show_tgmpa_version() {
			echo '<p style="float: right; padding: 0em 1.5em 0.5em 0;"><strong><small>',
				esc_html(
					sprintf(
						/* translators: %s: version number */
						__( 'TGMPA v%s', 'spiko'  ),
						self::TGMPA_VERSION
					)
				),
				'</small></strong></p>';
		}

		/**
		 * Returns the singleton instance of the class.
		 *
		 * @since 2.4.0
		 *
		 * @return \TGM_Plugin_Activation The TGM_Plugin_Activation object.
		 */
		public static function spiko_get_instance() {
			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof self ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}
	}

	if ( ! function_exists( 'load_tgm_plugin_activation' ) ) {
		/**
		 * Ensure only one instance of the class is ever invoked.
		 *
		 * @since 2.5.0
		 */
		function load_tgm_plugin_activation() {
			$GLOBALS['tgmpa'] = TGM_Plugin_Activation::spiko_get_instance();
		}
	}

	if ( did_action( 'plugins_loaded' ) ) {
		load_tgm_plugin_activation();
	} else {
		add_action( 'plugins_loaded', 'load_tgm_plugin_activation' );
	}
}

if ( ! function_exists( 'tgmpa' ) ) {
	/**
	 * Helper function to register a collection of required plugins.
	 *
	 * @since 2.0.0
	 * @api
	 *
	 * @param array $plugins An array of plugin arrays.
	 * @param array $config  Optional. An array of configuration values.
	 */
	function tgmpa( $plugins, $config = array() ) {
		$instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'spiko_get_instance' ) );

		foreach ( $plugins as $plugin ) {
			call_user_func( array( $instance, 'register' ), $plugin );
		}

		if ( ! empty( $config ) && is_array( $config ) ) {
			// Send out notices for deprecated arguments passed.
			if ( isset( $config['notices'] ) ) {
				_deprecated_argument( __FUNCTION__, '2.2.0', 'The `notices` config parameter was renamed to `has_notices` in TGMPA 2.2.0. Please adjust your configuration.' );
				if ( ! isset( $config['has_notices'] ) ) {
					$config['has_notices'] = $config['notices'];
				}
			}

			if ( isset( $config['parent_menu_slug'] ) ) {
				_deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_menu_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' );
			}
			if ( isset( $config['parent_url_slug'] ) ) {
				_deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_url_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' );
			}

			call_user_func( array( $instance, 'config' ), $config );
		}
	}
}

/**
 * WP_List_Table isn't always available. If it isn't available,
 * we load it here.
 *
 * @since 2.2.0
 */
if ( ! class_exists( 'WP_List_Table' ) ) {
	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
}

if ( ! class_exists( 'TGMPA_List_Table' ) ) {

	/**
	 * List table class for handling plugins.
	 *
	 * Extends the WP_List_Table class to provide a future-compatible
	 * way of listing out all required/recommended plugins.
	 *
	 * Gives users an interface similar to the Plugin Administration
	 * area with similar (albeit stripped down) capabilities.
	 *
	 * This class also allows for the bulk install of plugins.
	 *
	 * @since 2.2.0
	 *
	 * @package TGM-Plugin-Activation
	 * @author  Thomas Griffin
	 * @author  Gary Jones
	 */
	class TGMPA_List_Table extends WP_List_Table {
		/**
		 * TGMPA instance.
		 *
		 * @since 2.5.0
		 *
		 * @var object
		 */
		protected $tgmpa;

		/**
		 * The currently chosen view.
		 *
		 * @since 2.5.0
		 *
		 * @var string One of: 'all', 'install', 'update', 'activate'
		 */
		public $view_context = 'all';

		/**
		 * The plugin counts for the various views.
		 *
		 * @since 2.5.0
		 *
		 * @var array
		 */
		protected $view_totals = array(
			'all'      => 0,
			'install'  => 0,
			'update'   => 0,
			'activate' => 0,
		);

		/**
		 * References parent constructor and sets defaults for class.
		 *
		 * @since 2.2.0
		 */
		public function __construct() {
			$this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'spiko_get_instance' ) );

			parent::__construct(
				array(
					'singular' => 'plugin',
					'plural'   => 'plugins',
					'ajax'     => false,
				)
			);

			if ( isset( $_REQUEST['plugin_status'] ) && in_array( $_REQUEST['plugin_status'], array( 'install', 'update', 'activate' ), true ) ) {
				$this->view_context = sanitize_key( $_REQUEST['plugin_status'] );
			}

			add_filter( 'tgmpa_table_data_items', array( $this, 'sort_table_items' ) );
		}

		/**
		 * Get a list of CSS classes for the <table> tag.
		 *
		 * Overruled to prevent the 'plural' argument from being added.
		 *
		 * @since 2.5.0
		 *
		 * @return array CSS classnames.
		 */
		public function get_table_classes() {
			return array( 'widefat', 'fixed' );
		}

		/**
		 * Gathers and renames all of our plugin information to be used by WP_List_Table to create our table.
		 *
		 * @since 2.2.0
		 *
		 * @return array $table_data Information for use in table.
		 */
		protected function _gather_plugin_data() {
			// Load thickbox for plugin links.
			$this->tgmpa->admin_init();
			$this->tgmpa->thickbox();

			// Categorize the plugins which have open actions.
			$plugins = $this->categorize_plugins_to_views();

			// Set the counts for the view links.
			$this->set_view_totals( $plugins );

			// Prep variables for use and grab list of all installed plugins.
			$table_data = array();
			$i          = 0;

			// Redirect to the 'all' view if no plugins were found for the selected view context.
			if ( empty( $plugins[ $this->view_context ] ) ) {
				$this->view_context = 'all';
			}

			foreach ( $plugins[ $this->view_context ] as $slug => $plugin ) {
				$table_data[ $i ]['sanitized_plugin']  = $plugin['name'];
				$table_data[ $i ]['slug']              = $slug;
				$table_data[ $i ]['plugin']            = '<strong>' . $this->tgmpa->get_info_link( $slug ) . '</strong>';
				$table_data[ $i ]['source']            = $this->get_plugin_source_type_text( $plugin['source_type'] );
				$table_data[ $i ]['type']              = $this->get_plugin_advise_type_text( $plugin['required'] );
				$table_data[ $i ]['status']            = $this->get_plugin_status_text( $slug );
				$table_data[ $i ]['installed_version'] = $this->tgmpa->get_installed_version( $slug );
				$table_data[ $i ]['minimum_version']   = $plugin['version'];
				$table_data[ $i ]['available_version'] = $this->tgmpa->does_plugin_have_update( $slug );

				// Prep the upgrade notice info.
				$upgrade_notice = $this->tgmpa->get_upgrade_notice( $slug );
				if ( ! empty( $upgrade_notice ) ) {
					$table_data[ $i ]['upgrade_notice'] = $upgrade_notice;

					add_action( "tgmpa_after_plugin_row_{$slug}", array( $this, 'wp_plugin_update_row' ), 10, 2 );
				}

				$table_data[ $i ] = apply_filters( 'tgmpa_table_data_item', $table_data[ $i ], $plugin );

				$i++;
			}

			return $table_data;
		}

		/**
		 * Categorize the plugins which have open actions into views for the TGMPA page.
		 *
		 * @since 2.5.0
		 */
		protected function categorize_plugins_to_views() {
			$plugins = array(
				'all'      => array(), // Meaning: all plugins which still have open actions.
				'install'  => array(),
				'update'   => array(),
				'activate' => array(),
			);

			foreach ( $this->tgmpa->plugins as $slug => $plugin ) {
				if ( $this->tgmpa->is_plugin_active( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) {
					// No need to display plugins if they are installed, up-to-date and active.
					continue;
				} else {
					$plugins['all'][ $slug ] = $plugin;

					if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) {
						$plugins['install'][ $slug ] = $plugin;
					} else {
						if ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) {
							$plugins['update'][ $slug ] = $plugin;
						}

						if ( $this->tgmpa->can_plugin_activate( $slug ) ) {
							$plugins['activate'][ $slug ] = $plugin;
						}
					}
				}
			}

			return $plugins;
		}

		/**
		 * Set the counts for the view links.
		 *
		 * @since 2.5.0
		 *
		 * @param array $plugins Plugins order by view.
		 */
		protected function set_view_totals( $plugins ) {
			foreach ( $plugins as $type => $list ) {
				$this->view_totals[ $type ] = count( $list );
			}
		}

		/**
		 * Get the plugin required/recommended text string.
		 *
		 * @since 2.5.0
		 *
		 * @param string $required Plugin required setting.
		 * @return string
		 */
		protected function get_plugin_advise_type_text( $required ) {
			if ( true === $required ) {
				return esc_html__( 'Required', 'spiko'  );
			}

			return esc_html__( 'Recommended', 'spiko'  );
		}

		/**
		 * Get the plugin source type text string.
		 *
		 * @since 2.5.0
		 *
		 * @param string $type Plugin type.
		 * @return string
		 */
		protected function get_plugin_source_type_text( $type ) {
			$string = '';

			switch ( $type ) {
				case 'repo':
					$string = esc_html__( 'WordPress Repository', 'spiko'  );
					break;
				case 'external':
					$string = esc_html__( 'External Source', 'spiko'  );
					break;
				case 'bundled':
					$string = esc_html__( 'Pre-Packaged', 'spiko'  );
					break;
			}

			return $string;
		}

		/**
		 * Determine the plugin status message.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string
		 */
		protected function get_plugin_status_text( $slug ) {
			if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) {
				return esc_html__( 'Not Installed', 'spiko'  );
			}

			if ( ! $this->tgmpa->is_plugin_active( $slug ) ) {
				$install_status = esc_html__( 'Installed But Not Activated', 'spiko'  );
			} else {
				$install_status = esc_html__( 'Active', 'spiko'  );
			}

			$update_status = '';

			if ( $this->tgmpa->does_plugin_require_update( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) {
				$update_status = esc_html__( 'Required Update Not Available', 'spiko'  );

			} elseif ( $this->tgmpa->does_plugin_require_update( $slug ) ) {
				$update_status = esc_html__( 'Requires Update', 'spiko'  );

			} elseif ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) {
				$update_status = esc_html__( 'Update recommended', 'spiko'  );
			}

			if ( '' === $update_status ) {
				return $install_status;
			}

			return sprintf(
				/* translators: 1: install status, 2: update status */
				_x( '%1$s, %2$s', 'Install/Update Status', 'spiko'  ),
				$install_status,
				$update_status
			);
		}

		/**
		 * Sort plugins by Required/Recommended type and by alphabetical plugin name within each type.
		 *
		 * @since 2.5.0
		 *
		 * @param array $items Prepared table items.
		 * @return array Sorted table items.
		 */
		public function sort_table_items( $items ) {
			$type = array();
			$name = array();

			foreach ( $items as $i => $plugin ) {
				$type[ $i ] = $plugin['type']; // Required / recommended.
				$name[ $i ] = $plugin['sanitized_plugin'];
			}

			array_multisort( $type, SORT_DESC, $name, SORT_ASC, $items );

			return $items;
		}

		/**
		 * Get an associative array ( id => link ) of the views available on this table.
		 *
		 * @since 2.5.0
		 *
		 * @return array
		 */
		public function get_views() {
			$status_links = array();

			foreach ( $this->view_totals as $type => $count ) {
				if ( $count < 1 ) {
					continue;
				}

				switch ( $type ) {
					case 'all':
						/* translators: 1: number of plugins. */
						$text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'plugins', 'spiko'  );
						break;
					case 'install':
						/* translators: 1: number of plugins. */
						$text = _n( 'To Install <span class="count">(%s)</span>', 'To Install <span class="count">(%s)</span>', $count, 'spiko'  );
						break;
					case 'update':
						/* translators: 1: number of plugins. */
						$text = _n( 'Updates Available <span class="count">(%s)</span>', 'Updates Available <span class="count">(%s)</span>', $count, 'spiko'  );
						break;
					case 'activate':
						/* translators: 1: number of plugins. */
						$text = _n( 'To Activate <span class="count">(%s)</span>', 'To Activate <span class="count">(%s)</span>', $count, 'spiko'  );
						break;
					default:
						$text = '';
						break;
				}

				if ( ! empty( $text ) ) {

					$status_links[ $type ] = sprintf(
						'<a href="%s"%s>%s</a>',
						esc_url( $this->tgmpa->get_tgmpa_status_url( $type ) ),
						( $type === $this->view_context ) ? ' class="current"' : '',
						sprintf( $text, number_format_i18n( $count ) )
					);
				}
			}

			return $status_links;
		}

		/**
		 * Create default columns to display important plugin information
		 * like type, action and status.
		 *
		 * @since 2.2.0
		 *
		 * @param array  $item        Array of item data.
		 * @param string $column_name The name of the column.
		 * @return string
		 */
		public function column_default( $item, $column_name ) {
			return $item[ $column_name ];
		}

		/**
		 * Required for bulk installing.
		 *
		 * Adds a checkbox for each plugin.
		 *
		 * @since 2.2.0
		 *
		 * @param array $item Array of item data.
		 * @return string The input checkbox with all necessary info.
		 */
		public function column_cb( $item ) {
			return sprintf(
				'<input type="checkbox" name="%1$s[]" value="%2$s" id="%3$s" />',
				esc_attr( $this->_args['singular'] ),
				esc_attr( $item['slug'] ),
				esc_attr( $item['sanitized_plugin'] )
			);
		}

		/**
		 * Create default title column along with the action links.
		 *
		 * @since 2.2.0
		 *
		 * @param array $item Array of item data.
		 * @return string The plugin name and action links.
		 */
		public function column_plugin( $item ) {
			return sprintf(
				'%1$s %2$s',
				$item['plugin'],
				$this->row_actions( $this->get_row_actions( $item ), true )
			);
		}

		/**
		 * Create version information column.
		 *
		 * @since 2.5.0
		 *
		 * @param array $item Array of item data.
		 * @return string HTML-formatted version information.
		 */
		public function column_version( $item ) {
			$output = array();

			if ( $this->tgmpa->is_plugin_installed( $item['slug'] ) ) {
				$installed = ! empty( $item['installed_version'] ) ? $item['installed_version'] : _x( 'unknown', 'as in: "version nr unknown"', 'spiko'  );

				$color = '';
				if ( ! empty( $item['minimum_version'] ) && $this->tgmpa->does_plugin_require_update( $item['slug'] ) ) {
					$color = ' color: #ff0000; font-weight: bold;';
				}

				$output[] = sprintf(
					'<p><span style="min-width: 32px; text-align: right; float: right;%1$s">%2$s</span>' . __( 'Installed version:', 'spiko'  ) . '</p>',
					$color,
					$installed
				);
			}

			if ( ! empty( $item['minimum_version'] ) ) {
				$output[] = sprintf(
					'<p><span style="min-width: 32px; text-align: right; float: right;">%1$s</span>' . __( 'Minimum required version:', 'spiko'  ) . '</p>',
					$item['minimum_version']
				);
			}

			if ( ! empty( $item['available_version'] ) ) {
				$color = '';
				if ( ! empty( $item['minimum_version'] ) && version_compare( $item['available_version'], $item['minimum_version'], '>=' ) ) {
					$color = ' color: #71C671; font-weight: bold;';
				}

				$output[] = sprintf(
					'<p><span style="min-width: 32px; text-align: right; float: right;%1$s">%2$s</span>' . __( 'Available version:', 'spiko'  ) . '</p>',
					$color,
					$item['available_version']
				);
			}

			if ( empty( $output ) ) {
				return '&nbsp;'; // Let's not break the table layout.
			} else {
				return implode( "\n", $output );
			}
		}

		/**
		 * Sets default message within the plugins table if no plugins
		 * are left for interaction.
		 *
		 * Hides the menu item to prevent the user from clicking and
		 * getting a permissions error.
		 *
		 * @since 2.2.0
		 */
		public function no_items() {
			echo esc_html__( 'No plugins to install, update or activate.', 'spiko'  ) . ' <a href="' . esc_url( self_admin_url() ) . '"> ' . esc_html__( 'Return to the Dashboard', 'spiko'  ) . '</a>';
			echo '<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
		}

		/**
		 * Output all the column information within the table.
		 *
		 * @since 2.2.0
		 *
		 * @return array $columns The column names.
		 */
		public function get_columns() {
			$columns = array(
				'cb'     => '<input type="checkbox" />',
				'plugin' => esc_html__( 'Plugin', 'spiko'  ),
				'source' => esc_html__( 'Source', 'spiko'  ),
				'type'   => esc_html__( 'Type', 'spiko'  ),
			);

			if ( 'all' === $this->view_context || 'update' === $this->view_context ) {
				$columns['version'] = esc_html__( 'Version', 'spiko'  );
				$columns['status']  = esc_html__( 'Status', 'spiko'  );
			}

			return apply_filters( 'tgmpa_table_columns', $columns );
		}

		/**
		 * Get name of default primary column
		 *
		 * @since 2.5.0 / WP 4.3+ compatibility
		 * @access protected
		 *
		 * @return string
		 */
		protected function get_default_primary_column_name() {
			return 'plugin';
		}

		/**
		 * Get the name of the primary column.
		 *
		 * @since 2.5.0 / WP 4.3+ compatibility
		 * @access protected
		 *
		 * @return string The name of the primary column.
		 */
		protected function get_primary_column_name() {
			if ( method_exists( 'WP_List_Table', 'get_primary_column_name' ) ) {
				return parent::get_primary_column_name();
			} else {
				return $this->get_default_primary_column_name();
			}
		}

		/**
		 * Get the actions which are relevant for a specific plugin row.
		 *
		 * @since 2.5.0
		 *
		 * @param array $item Array of item data.
		 * @return array Array with relevant action links.
		 */
		protected function get_row_actions( $item ) {
			$actions      = array();
			$action_links = array();

			// Display the 'Install' action link if the plugin is not yet available.
			if ( ! $this->tgmpa->is_plugin_installed( $item['slug'] ) ) {
				/* translators: %2$s: plugin name in screen reader markup */
				$actions['install'] = __( 'Install %2$s', 'spiko'  );
			} else {
				// Display the 'Update' action link if an update is available and WP complies with plugin minimum.
				if ( false !== $this->tgmpa->does_plugin_have_update( $item['slug'] ) && $this->tgmpa->can_plugin_update( $item['slug'] ) ) {
					/* translators: %2$s: plugin name in screen reader markup */
					$actions['update'] = esc_html__( 'Update %2$s', 'spiko'  );
				}

				// Display the 'Activate' action link, but only if the plugin meets the minimum version.
				if ( $this->tgmpa->can_plugin_activate( $item['slug'] ) ) {
					/* translators: %2$s: plugin name in screen reader markup */
					$actions['activate'] = esc_html__( 'Activate %2$s', 'spiko'  );
				}
			}

			// Create the actual links.
			foreach ( $actions as $action => $text ) {
				$nonce_url = wp_nonce_url(
					add_query_arg(
						array(
							'plugin'           => urlencode( $item['slug'] ),
							'tgmpa-' . $action => $action . '-plugin',
						),
						$this->tgmpa->get_tgmpa_url()
					),
					'tgmpa-' . $action,
					'tgmpa-nonce'
				);

				$action_links[ $action ] = sprintf(
					'<a href="%1$s">' . esc_html( $text ) . '</a>', // $text contains the second placeholder.
					esc_url( $nonce_url ),
					'<span class="screen-reader-text">' . esc_html( $item['sanitized_plugin'] ) . '</span>'
				);
			}

			$prefix = ( defined( 'WP_NETWORK_ADMIN' ) && WP_NETWORK_ADMIN ) ? 'network_admin_' : '';
			return apply_filters( "tgmpa_{$prefix}plugin_action_links", array_filter( $action_links ), $item['slug'], $item, $this->view_context );
		}

		/**
		 * Generates content for a single row of the table.
		 *
		 * @since 2.5.0
		 *
		 * @param object $item The current item.
		 */
		public function single_row( $item ) {
			parent::single_row( $item );

			/**
			 * Fires after each specific row in the TGMPA Plugins list table.
			 *
			 * The dynamic portion of the hook name, `$item['slug']`, refers to the slug
			 * for the plugin.
			 *
			 * @since 2.5.0
			 */
			do_action( "tgmpa_after_plugin_row_{$item['slug']}", $item['slug'], $item, $this->view_context );
		}

		/**
		 * Show the upgrade notice below a plugin row if there is one.
		 *
		 * @since 2.5.0
		 *
		 * @see /wp-admin/includes/update.php
		 *
		 * @param string $slug Plugin slug.
		 * @param array  $item The information available in this table row.
		 * @return null Return early if upgrade notice is empty.
		 */
		public function wp_plugin_update_row( $slug, $item ) {
			if ( empty( $item['upgrade_notice'] ) ) {
				return;
			}

			echo '
				<tr class="plugin-update-tr">
					<td colspan="', absint( $this->get_column_count() ), '" class="plugin-update colspanchange">
						<div class="update-message">',
							esc_html__( 'Upgrade message from the plugin author:', 'spiko'  ),
							' <strong>', wp_kses_data( $item['upgrade_notice'] ), '</strong>
						</div>
					</td>
				</tr>';
		}

		/**
		 * Extra controls to be displayed between bulk actions and pagination.
		 *
		 * @since 2.5.0
		 *
		 * @param string $which 'top' or 'bottom' table navigation.
		 */
		public function extra_tablenav( $which ) {
			if ( 'bottom' === $which ) {
				$this->tgmpa->show_tgmpa_version();
			}
		}

		/**
		 * Defines the bulk actions for handling registered plugins.
		 *
		 * @since 2.2.0
		 *
		 * @return array $actions The bulk actions for the plugin install table.
		 */
		public function get_bulk_actions() {

			$actions = array();

			if ( 'update' !== $this->view_context && 'activate' !== $this->view_context ) {
				if ( current_user_can( 'install_plugins' ) ) {
					$actions['tgmpa-bulk-install'] = esc_html__( 'Install', 'spiko'  );
				}
			}

			if ( 'install' !== $this->view_context ) {
				if ( current_user_can( 'update_plugins' ) ) {
					$actions['tgmpa-bulk-update'] = esc_html__( 'Update', 'spiko'  );
				}
				if ( current_user_can( 'activate_plugins' ) ) {
					$actions['tgmpa-bulk-activate'] = esc_html__( 'Activate', 'spiko'  );
				}
			}

			return $actions;
		}

		/**
		 * Processes bulk installation and activation actions.
		 *
		 * The bulk installation process looks for the $_POST information and passes that
		 * through if a user has to use WP_Filesystem to enter their credentials.
		 *
		 * @since 2.2.0
		 */
		public function process_bulk_actions() {
			// Bulk installation process.
			if ( 'tgmpa-bulk-install' === $this->current_action() || 'tgmpa-bulk-update' === $this->current_action() ) {

				check_admin_referer( 'bulk-' . $this->_args['plural'] );

				$install_type = 'install';
				if ( 'tgmpa-bulk-update' === $this->current_action() ) {
					$install_type = 'update';
				}

				$plugins_to_install = array();

				// Did user actually select any plugins to install/update ?
				if ( empty( $_POST['plugin'] ) ) {
					if ( 'install' === $install_type ) {
						$message = esc_html__( 'No plugins were selected to be installed. No action taken.', 'spiko'  );
					} else {
						$message = esc_html__( 'No plugins were selected to be updated. No action taken.', 'spiko'  );
					}

					echo '<div id="message" class="error"><p>', esc_html( $message ), '</p></div>';

					return false;
				}

				if ( is_array( $_POST['plugin'] ) ) {
					$plugins_to_install = (array) $_POST['plugin'];
				} elseif ( is_string( $_POST['plugin'] ) ) {
					// Received via Filesystem page - un-flatten array (WP bug #19643).
					$plugins_to_install = explode( ',', $_POST['plugin'] );
				}

				// Sanitize the received input.
				$plugins_to_install = array_map( 'urldecode', $plugins_to_install );
				$plugins_to_install = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins_to_install );

				// Validate the received input.
				foreach ( $plugins_to_install as $key => $slug ) {
					// Check if the plugin was registered with TGMPA and remove if not.
					if ( ! isset( $this->tgmpa->plugins[ $slug ] ) ) {
						unset( $plugins_to_install[ $key ] );
						continue;
					}

					// For install: make sure this is a plugin we *can* install and not one already installed.
					if ( 'install' === $install_type && true === $this->tgmpa->is_plugin_installed( $slug ) ) {
						unset( $plugins_to_install[ $key ] );
					}

					// For updates: make sure this is a plugin we *can* update (update available and WP version ok).
					if ( 'update' === $install_type && false === $this->tgmpa->is_plugin_updatetable( $slug ) ) {
						unset( $plugins_to_install[ $key ] );
					}
				}

				// No need to proceed further if we have no plugins to handle.
				if ( empty( $plugins_to_install ) ) {
					if ( 'install' === $install_type ) {
						$message = esc_html__( 'No plugins are available to be installed at this time.', 'spiko'  );
					} else {
						$message = esc_html__( 'No plugins are available to be updated at this time.', 'spiko'  );
					}

					echo '<div id="message" class="error"><p>', esc_html( $message ), '</p></div>';

					return false;
				}

				// Pass all necessary information if WP_Filesystem is needed.
				$url = wp_nonce_url(
					$this->tgmpa->get_tgmpa_url(),
					'bulk-' . $this->_args['plural']
				);

				// Give validated data back to $_POST which is the only place the filesystem looks for extra fields.
				$_POST['plugin'] = implode( ',', $plugins_to_install ); // Work around for WP bug #19643.

				$method = ''; // Leave blank so WP_Filesystem can populate it as necessary.
				$fields = array_keys( $_POST ); // Extra fields to pass to WP_Filesystem.

				if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ) ) ) {
					return true; // Stop the normal page form from displaying, credential request form will be shown.
				}

				// Now we have some credentials, setup WP_Filesystem.
				if ( ! WP_Filesystem( $creds ) ) {
					// Our credentials were no good, ask the user for them again.
					request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields );

					return true;
				}

				/* If we arrive here, we have the filesystem */

				// Store all information in arrays since we are processing a bulk installation.
				$names      = array();
				$sources    = array(); // Needed for installs.
				$file_paths = array(); // Needed for upgrades.
				$to_inject  = array(); // Information to inject into the update_plugins transient.

				// Prepare the data for validated plugins for the install/upgrade.
				foreach ( $plugins_to_install as $slug ) {
					$name   = $this->tgmpa->plugins[ $slug ]['name'];
					$source = $this->tgmpa->get_download_url( $slug );

					if ( ! empty( $name ) && ! empty( $source ) ) {
						$names[] = $name;

						switch ( $install_type ) {

							case 'install':
								$sources[] = $source;
								break;

							case 'update':
								$file_paths[]                 = $this->tgmpa->plugins[ $slug ]['file_path'];
								$to_inject[ $slug ]           = $this->tgmpa->plugins[ $slug ];
								$to_inject[ $slug ]['source'] = $source;
								break;
						}
					}
				}
				unset( $slug, $name, $source );

				// Create a new instance of TGMPA_Bulk_Installer.
				$installer = new TGMPA_Bulk_Installer(
					new TGMPA_Bulk_Installer_Skin(
						array(
							'url'          => esc_url_raw( $this->tgmpa->get_tgmpa_url() ),
							'nonce'        => 'bulk-' . $this->_args['plural'],
							'names'        => $names,
							'install_type' => $install_type,
						)
					)
				);

				// Wrap the install process with the appropriate HTML.
				echo '<div class="tgmpa">',
					'<h2 style="font-size: 23px; font-weight: 400; line-height: 29px; margin: 0; padding: 9px 15px 4px 0;">', esc_html( get_admin_page_title() ), '</h2>
					<div class="update-php" style="width: 100%; height: 98%; min-height: 850px; padding-top: 1px;">';

				// Process the bulk installation submissions.
				add_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1, 3 );

				if ( 'tgmpa-bulk-update' === $this->current_action() ) {
					// Inject our info into the update transient.
					$this->tgmpa->inject_update_info( $to_inject );

					$installer->bulk_upgrade( $file_paths );
				} else {
					$installer->bulk_install( $sources );
				}

				remove_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1 );

				echo '</div></div>';

				return true;
			}

			// Bulk activation process.
			if ( 'tgmpa-bulk-activate' === $this->current_action() ) {
				check_admin_referer( 'bulk-' . $this->_args['plural'] );

				// Did user actually select any plugins to activate ?
				if ( empty( $_POST['plugin'] ) ) {
					echo '<div id="message" class="error"><p>', esc_html__( 'No plugins were selected to be activated. No action taken.', 'spiko'  ), '</p></div>';

					return false;
				}

				// Grab plugin data from $_POST.
				$plugins = array();
				if ( isset( $_POST['plugin'] ) ) {
					$plugins = array_map( 'urldecode', (array) $_POST['plugin'] );
					$plugins = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins );
				}

				$plugins_to_activate = array();
				$plugin_names        = array();

				// Grab the file paths for the selected & inactive plugins from the registration array.
				foreach ( $plugins as $slug ) {
					if ( $this->tgmpa->can_plugin_activate( $slug ) ) {
						$plugins_to_activate[] = $this->tgmpa->plugins[ $slug ]['file_path'];
						$plugin_names[]        = $this->tgmpa->plugins[ $slug ]['name'];
					}
				}
				unset( $slug );

				// Return early if there are no plugins to activate.
				if ( empty( $plugins_to_activate ) ) {
					echo '<div id="message" class="error"><p>', esc_html__( 'No plugins are available to be activated at this time.', 'spiko'  ), '</p></div>';

					return false;
				}

				// Now we are good to go - let's start activating plugins.
				$activate = activate_plugins( $plugins_to_activate );

				if ( is_wp_error( $activate ) ) {
					echo '<div id="message" class="error"><p>', wp_kses_post( $activate->get_error_message() ), '</p></div>';
				} else {
					$count        = count( $plugin_names ); // Count so we can use _n function.
					$plugin_names = array_map( array( 'TGMPA_Utils', 'wrap_in_strong' ), $plugin_names );
					$last_plugin  = array_pop( $plugin_names ); // Pop off last name to prep for readability.
					$imploded     = empty( $plugin_names ) ? $last_plugin : ( implode( ', ', $plugin_names ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'spiko'  ) . ' ' . $last_plugin );

					printf( // WPCS: xss ok.
						'<div id="message" class="updated"><p>%1$s %2$s.</p></div>',
						esc_html( _n( 'The following plugin was activated successfully:', 'The following plugins were activated successfully:', $count, 'spiko'  ) ),
						$imploded
					);

					// Update recently activated plugins option.
					$recent = (array) get_option( 'recently_activated' );
					foreach ( $plugins_to_activate as $plugin => $time ) {
						if ( isset( $recent[ $plugin ] ) ) {
							unset( $recent[ $plugin ] );
						}
					}
					update_option( 'recently_activated', $recent );
				}

				unset( $_POST ); // Reset the $_POST variable in case user wants to perform one action after another.

				return true;
			}

			return false;
		}

		/**
		 * Prepares all of our information to be outputted into a usable table.
		 *
		 * @since 2.2.0
		 */
		public function prepare_items() {
			$columns               = $this->get_columns(); // Get all necessary column information.
			$hidden                = array(); // No columns to hide, but we must set as an array.
			$sortable              = array(); // No reason to make sortable columns.
			$primary               = $this->get_primary_column_name(); // Column which has the row actions.
			$this->_column_headers = array( $columns, $hidden, $sortable, $primary ); // Get all necessary column headers.

			// Process our bulk activations here.
			if ( 'tgmpa-bulk-activate' === $this->current_action() ) {
				$this->process_bulk_actions();
			}

			// Store all of our plugin data into $items array so WP_List_Table can use it.
			$this->items = apply_filters( 'tgmpa_table_data_items', $this->_gather_plugin_data() );
		}

		/* *********** DEPRECATED METHODS *********** */

		/**
		 * Retrieve plugin data, given the plugin name.
		 *
		 * @since      2.2.0
		 * @deprecated 2.5.0 use {@see TGM_Plugin_Activation::_get_plugin_data_from_name()} instead.
		 * @see        TGM_Plugin_Activation::_get_plugin_data_from_name()
		 *
		 * @param string $name Name of the plugin, as it was registered.
		 * @param string $data Optional. Array key of plugin data to return. Default is slug.
		 * @return string|boolean Plugin slug if found, false otherwise.
		 */
		protected function _get_plugin_data_from_name( $name, $data = 'slug' ) {
			_deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'TGM_Plugin_Activation::_get_plugin_data_from_name()' );

			return $this->tgmpa->_get_plugin_data_from_name( $name, $data );
		}
	}
}


if ( ! class_exists( 'TGM_Bulk_Installer' ) ) {

	/**
	 * Hack: Prevent TGMPA v2.4.1- bulk installer class from being loaded if 2.4.1- is loaded after 2.5+.
	 *
	 * @since 2.5.2
	 *
	 * {@internal The TGMPA_Bulk_Installer class was originally called TGM_Bulk_Installer.
	 *            For more information, see that class.}}
	 */
	class TGM_Bulk_Installer {
	}
}
if ( ! class_exists( 'TGM_Bulk_Installer_Skin' ) ) {

	/**
	 * Hack: Prevent TGMPA v2.4.1- bulk installer skin class from being loaded if 2.4.1- is loaded after 2.5+.
	 *
	 * @since 2.5.2
	 *
	 * {@internal The TGMPA_Bulk_Installer_Skin class was originally called TGM_Bulk_Installer_Skin.
	 *            For more information, see that class.}}
	 */
	class TGM_Bulk_Installer_Skin {
	}
}

/**
 * The WP_Upgrader file isn't always available. If it isn't available,
 * we load it here.
 *
 * We check to make sure no action or activation keys are set so that WordPress
 * does not try to re-include the class when processing upgrades or installs outside
 * of the class.
 *
 * @since 2.2.0
 */
add_action( 'admin_init', 'tgmpa_load_bulk_installer' );
if ( ! function_exists( 'tgmpa_load_bulk_installer' ) ) {
	/**
	 * Load bulk installer
	 */
	function tgmpa_load_bulk_installer() {
		// Silently fail if 2.5+ is loaded *after* an older version.
		if ( ! isset( $GLOBALS['tgmpa'] ) ) {
			return;
		}

		// Get TGMPA class instance.
		$tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'spiko_get_instance' ) );

		if ( isset( $_GET['page'] ) && $tgmpa_instance->menu === $_GET['page'] ) {
			if ( ! class_exists( 'Plugin_Upgrader', false ) ) {
				require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
			}

			if ( ! class_exists( 'TGMPA_Bulk_Installer' ) ) {

				/**
				 * Installer class to handle bulk plugin installations.
				 *
				 * Extends WP_Upgrader and customizes to suit the installation of multiple
				 * plugins.
				 *
				 * @since 2.2.0
				 *
				 * {@internal Since 2.5.0 the class is an extension of Plugin_Upgrader rather than WP_Upgrader.}}
				 * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer to TGMPA_Bulk_Installer.
				 *            This was done to prevent backward compatibility issues with v2.3.6.}}
				 *
				 * @package TGM-Plugin-Activation
				 * @author  Thomas Griffin
				 * @author  Gary Jones
				 */
				class TGMPA_Bulk_Installer extends Plugin_Upgrader {
					/**
					 * Holds result of bulk plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @var string
					 */
					public $result;

					/**
					 * Flag to check if bulk installation is occurring or not.
					 *
					 * @since 2.2.0
					 *
					 * @var boolean
					 */
					public $bulk = false;

					/**
					 * TGMPA instance
					 *
					 * @since 2.5.0
					 *
					 * @var object
					 */
					protected $tgmpa;

					/**
					 * Whether or not the destination directory needs to be cleared ( = on update).
					 *
					 * @since 2.5.0
					 *
					 * @var bool
					 */
					protected $clear_destination = false;

					/**
					 * References parent constructor and sets defaults for class.
					 *
					 * @since 2.2.0
					 *
					 * @param \Bulk_Upgrader_Skin|null $skin Installer skin.
					 */
					public function __construct( $skin = null ) {
						// Get TGMPA class instance.
						$this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'spiko_get_instance' ) );

						parent::__construct( $skin );

						if ( isset( $this->skin->options['install_type'] ) && 'update' === $this->skin->options['install_type'] ) {
							$this->clear_destination = true;
						}

						if ( $this->tgmpa->is_automatic ) {
							$this->activate_strings();
						}

						add_action( 'upgrader_process_complete', array( $this->tgmpa, 'populate_file_path' ) );
					}

					/**
					 * Sets the correct activation strings for the installer skin to use.
					 *
					 * @since 2.2.0
					 */
					public function activate_strings() {
						$this->strings['activation_failed']  = esc_html__( 'Plugin activation failed.', 'spiko'  );
						$this->strings['activation_success'] = esc_html__( 'Plugin activated successfully.', 'spiko'  );
					}

					/**
					 * Performs the actual installation of each plugin.
					 *
					 * @since 2.2.0
					 *
					 * @see WP_Upgrader::run()
					 *
					 * @param array $options The installation config options.
					 * @return null|array Return early if error, array of installation data on success.
					 */
					public function run( $options ) {
						$result = parent::run( $options );

						// Reset the strings in case we changed one during automatic activation.
						if ( $this->tgmpa->is_automatic ) {
							if ( 'update' === $this->skin->options['install_type'] ) {
								$this->upgrade_strings();
							} else {
								$this->install_strings();
							}
						}

						return $result;
					}

					/**
					 * Processes the bulk installation of plugins.
					 *
					 * @since 2.2.0
					 *
					 * {@internal This is basically a near identical copy of the WP Core
					 * Plugin_Upgrader::bulk_upgrade() method, with minor adjustments to deal with
					 * new installs instead of upgrades.
					 * For ease of future synchronizations, the adjustments are clearly commented, but no other
					 * comments are added. Code style has been made to comply.}}
					 *
					 * @see Plugin_Upgrader::bulk_upgrade()
					 * @see https://core.trac.wordpress.org/browser/tags/4.2.1/src/wp-admin/includes/class-wp-upgrader.php#L838
					 * (@internal Last synced: Dec 31st 2015 against https://core.trac.wordpress.org/browser/trunk?rev=36134}}
					 *
					 * @param array $plugins The plugin sources needed for installation.
					 * @param array $args    Arbitrary passed extra arguments.
					 * @return array|false   Install confirmation messages on success, false on failure.
					 */
					public function bulk_install( $plugins, $args = array() ) {
						// [TGMPA + ] Hook auto-activation in.
						add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						$defaults    = array(
							'clear_update_cache' => true,
						);
						$parsed_args = wp_parse_args( $args, $defaults );

						$this->init();
						$this->bulk = true;

						$this->install_strings(); // [TGMPA + ] adjusted.

						/* [TGMPA - ] $current = get_site_transient( 'update_plugins' ); */

						/* [TGMPA - ] add_filter('upgrader_clear_destination', array($this, 'delete_old_plugin'), 10, 4); */

						$this->skin->header();

						// Connect to the Filesystem first.
						$res = $this->fs_connect( array( WP_CONTENT_DIR, WP_PLUGIN_DIR ) );
						if ( ! $res ) {
							$this->skin->footer();
							return false;
						}

						$this->skin->bulk_header();

						/*
						 * Only start maintenance mode if:
						 * - running Multisite and there are one or more plugins specified, OR
						 * - a plugin with an update available is currently active.
						 * @TODO: For multisite, maintenance mode should only kick in for individual sites if at all possible.
						 */
						$maintenance = ( is_multisite() && ! empty( $plugins ) );

						/*
						[TGMPA - ]
						foreach ( $plugins as $plugin )
							$maintenance = $maintenance || ( is_plugin_active( $plugin ) && isset( $current->response[ $plugin] ) );
						*/
						if ( $maintenance ) {
							$this->maintenance_mode( true );
						}

						$results = array();

						$this->update_count   = count( $plugins );
						$this->update_current = 0;
						foreach ( $plugins as $plugin ) {
							$this->update_current++;

							/*
							[TGMPA - ]
							$this->skin->plugin_info = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin, false, true);

							if ( !isset( $current->response[ $plugin ] ) ) {
								$this->skin->set_result('up_to_date');
								$this->skin->before();
								$this->skin->feedback('up_to_date');
								$this->skin->after();
								$results[$plugin] = true;
								continue;
							}

							// Get the URL to the zip file.
							$r = $current->response[ $plugin ];

							$this->skin->plugin_active = is_plugin_active($plugin);
							*/

							$result = $this->run(
								array(
									'package'           => $plugin, // [TGMPA + ] adjusted.
									'destination'       => WP_PLUGIN_DIR,
									'clear_destination' => false, // [TGMPA + ] adjusted.
									'clear_working'     => true,
									'is_multi'          => true,
									'hook_extra'        => array(
										'plugin' => $plugin,
									),
								)
							);

							$results[ $plugin ] = $this->result;

							// Prevent credentials auth screen from displaying multiple times.
							if ( false === $result ) {
								break;
							}
						} //end foreach $plugins

						$this->maintenance_mode( false );

						/**
						 * Fires when the bulk upgrader process is complete.
						 *
						 * @since WP 3.6.0 / TGMPA 2.5.0
						 *
						 * @param Plugin_Upgrader $this Plugin_Upgrader instance. In other contexts, $this, might
						 *                              be a Theme_Upgrader or Core_Upgrade instance.
						 * @param array           $data {
						 *     Array of bulk item update data.
						 *
						 *     @type string $action   Type of action. Default 'update'.
						 *     @type string $type     Type of update process. Accepts 'plugin', 'theme', or 'core'.
						 *     @type bool   $bulk     Whether the update process is a bulk update. Default true.
						 *     @type array  $packages Array of plugin, theme, or core packages to update.
						 * }
						 */
						do_action( 'upgrader_process_complete', $this, array(
							'action'  => 'install', // [TGMPA + ] adjusted.
							'type'    => 'plugin',
							'bulk'    => true,
							'plugins' => $plugins,
						) );

						$this->skin->bulk_footer();

						$this->skin->footer();

						// Cleanup our hooks, in case something else does a upgrade on this connection.
						/* [TGMPA - ] remove_filter('upgrader_clear_destination', array($this, 'delete_old_plugin')); */

						// [TGMPA + ] Remove our auto-activation hook.
						remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						// Force refresh of plugin update information.
						wp_clean_plugins_cache( $parsed_args['clear_update_cache'] );

						return $results;
					}

					/**
					 * Handle a bulk upgrade request.
					 *
					 * @since 2.5.0
					 *
					 * @see Plugin_Upgrader::bulk_upgrade()
					 *
					 * @param array $plugins The local WP file_path's of the plugins which should be upgraded.
					 * @param array $args    Arbitrary passed extra arguments.
					 * @return string|bool Install confirmation messages on success, false on failure.
					 */
					public function bulk_upgrade( $plugins, $args = array() ) {

						add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						$result = parent::bulk_upgrade( $plugins, $args );

						remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						return $result;
					}

					/**
					 * Abuse a filter to auto-activate plugins after installation.
					 *
					 * Hooked into the 'upgrader_post_install' filter hook.
					 *
					 * @since 2.5.0
					 *
					 * @param bool $bool The value we need to give back (true).
					 * @return bool
					 */
					public function auto_activate( $bool ) {
						// Only process the activation of installed plugins if the automatic flag is set to true.
						if ( $this->tgmpa->is_automatic ) {
							// Flush plugins cache so the headers of the newly installed plugins will be read correctly.
							wp_clean_plugins_cache();

							// Get the installed plugin file.
							$plugin_info = $this->plugin_info();

							// Don't try to activate on upgrade of active plugin as WP will do this already.
							if ( ! is_plugin_active( $plugin_info ) ) {
								$activate = activate_plugin( $plugin_info );

								// Adjust the success string based on the activation result.
								$this->strings['process_success'] = $this->strings['process_success'] . "<br />\n";

								if ( is_wp_error( $activate ) ) {
									$this->skin->error( $activate );
									$this->strings['process_success'] .= $this->strings['activation_failed'];
								} else {
									$this->strings['process_success'] .= $this->strings['activation_success'];
								}
							}
						}

						return $bool;
					}
				}
			}

			if ( ! class_exists( 'TGMPA_Bulk_Installer_Skin' ) ) {

				/**
				 * Installer skin to set strings for the bulk plugin installations..
				 *
				 * Extends Bulk_Upgrader_Skin and customizes to suit the installation of multiple
				 * plugins.
				 *
				 * @since 2.2.0
				 *
				 * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer_Skin to
				 *            TGMPA_Bulk_Installer_Skin.
				 *            This was done to prevent backward compatibility issues with v2.3.6.}}
				 *
				 * @see https://core.trac.wordpress.org/browser/trunk/src/wp-admin/includes/class-wp-upgrader-skins.php
				 *
				 * @package TGM-Plugin-Activation
				 * @author  Thomas Griffin
				 * @author  Gary Jones
				 */
				class TGMPA_Bulk_Installer_Skin extends Bulk_Upgrader_Skin {
					/**
					 * Holds plugin info for each individual plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @var array
					 */
					public $plugin_info = array();

					/**
					 * Holds names of plugins that are undergoing bulk installations.
					 *
					 * @since 2.2.0
					 *
					 * @var array
					 */
					public $plugin_names = array();

					/**
					 * Integer to use for iteration through each plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @var integer
					 */
					public $i = 0;

					/**
					 * TGMPA instance
					 *
					 * @since 2.5.0
					 *
					 * @var object
					 */
					protected $tgmpa;

					/**
					 * Constructor. Parses default args with new ones and extracts them for use.
					 *
					 * @since 2.2.0
					 *
					 * @param array $args Arguments to pass for use within the class.
					 */
					public function __construct( $args = array() ) {
						// Get TGMPA class instance.
						$this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'spiko_get_instance' ) );

						// Parse default and new args.
						$defaults = array(
							'url'          => '',
							'nonce'        => '',
							'names'        => array(),
							'install_type' => 'install',
						);
						$args     = wp_parse_args( $args, $defaults );

						// Set plugin names to $this->plugin_names property.
						$this->plugin_names = $args['names'];

						// Extract the new args.
						parent::__construct( $args );
					}

					/**
					 * Sets install skin strings for each individual plugin.
					 *
					 * Checks to see if the automatic activation flag is set and uses the
					 * the proper strings accordingly.
					 *
					 * @since 2.2.0
					 */
					public function add_strings() {
						if ( 'update' === $this->options['install_type'] ) {
							parent::add_strings();
							/* translators: 1: plugin name, 2: action number 3: total number of actions. */
							$this->upgrader->strings['skin_before_update_header'] = esc_html__( 'Updating Plugin %1$s (%2$d/%3$d)', 'spiko'  );
						} else {
							/* translators: 1: plugin name, 2: error message. */
							$this->upgrader->strings['skin_update_failed_error'] = esc_html__( 'An error occurred while installing %1$s: <strong>%2$s</strong>.', 'spiko'  );
							/* translators: 1: plugin name. */
							$this->upgrader->strings['skin_update_failed'] = esc_html__( 'The installation of %1$s failed.', 'spiko'  );

							if ( $this->tgmpa->is_automatic ) {
								// Automatic activation strings.
								$this->upgrader->strings['skin_upgrade_start'] = esc_html__( 'The installation and activation process is starting. This process may take a while on some hosts, so please be patient.', 'spiko'  );
								/* translators: 1: plugin name. */
								$this->upgrader->strings['skin_update_successful'] = esc_html__( '%1$s installed and activated successfully.', 'spiko'  ) . ' <a href="#" class="hide-if-no-js" onclick="%2$s"><span>' . esc_html__( 'Show Details', 'spiko'  ) . '</span><span class="hidden">' . esc_html__( 'Hide Details', 'spiko'  ) . '</span>.</a>';
								$this->upgrader->strings['skin_upgrade_end']       = esc_html__( 'All installations and activations have been completed.', 'spiko'  );
								/* translators: 1: plugin name, 2: action number 3: total number of actions. */
								$this->upgrader->strings['skin_before_update_header'] = esc_html__( 'Installing and Activating Plugin %1$s (%2$d/%3$d)', 'spiko'  );
							} else {
								// Default installation strings.
								$this->upgrader->strings['skin_upgrade_start'] = esc_html__( 'The installation process is starting. This process may take a while on some hosts, so please be patient.', 'spiko'  );
								/* translators: 1: plugin name. */
								$this->upgrader->strings['skin_update_successful'] = esc_html__( '%1$s installed successfully.', 'spiko'  ) . ' <a href="#" class="hide-if-no-js" onclick="%2$s"><span>' . esc_html__( 'Show Details', 'spiko'  ) . '</span><span class="hidden">' . esc_html__( 'Hide Details', 'spiko'  ) . '</span>.</a>';
								$this->upgrader->strings['skin_upgrade_end']       = esc_html__( 'All installations have been completed.', 'spiko'  );
								/* translators: 1: plugin name, 2: action number 3: total number of actions. */
								$this->upgrader->strings['skin_before_update_header'] = esc_html__( 'Installing Plugin %1$s (%2$d/%3$d)', 'spiko'  );
							}
						}
					}

					/**
					 * Outputs the header strings and necessary JS before each plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @param string $title Unused in this implementation.
					 */
					public function before( $title = '' ) {
						if ( empty( $title ) ) {
							$title = esc_html( $this->plugin_names[ $this->i ] );
						}
						parent::before( $title );
					}

					/**
					 * Outputs the footer strings and necessary JS after each plugin installation.
					 *
					 * Checks for any errors and outputs them if they exist, else output
					 * success strings.
					 *
					 * @since 2.2.0
					 *
					 * @param string $title Unused in this implementation.
					 */
					public function after( $title = '' ) {
						if ( empty( $title ) ) {
							$title = esc_html( $this->plugin_names[ $this->i ] );
						}
						parent::after( $title );

						$this->i++;
					}

					/**
					 * Outputs links after bulk plugin installation is complete.
					 *
					 * @since 2.2.0
					 */
					public function bulk_footer() {
						// Serve up the string to say installations (and possibly activations) are complete.
						parent::bulk_footer();

						// Flush plugins cache so we can make sure that the installed plugins list is always up to date.
						wp_clean_plugins_cache();

						$this->tgmpa->show_tgmpa_version();

						// Display message based on if all plugins are now active or not.
						$update_actions = array();

						if ( $this->tgmpa->is_tgmpa_complete() ) {
							// All plugins are active, so we display the complete string and hide the menu to protect users.
							echo '<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
							$update_actions['dashboard'] = sprintf(
								esc_html( $this->tgmpa->strings['complete'] ),
								'<a href="' . esc_url( self_admin_url() ) . '">' . esc_html__( 'Return to the Dashboard', 'spiko'  ) . '</a>'
							);
						} else {
							$update_actions['tgmpa_page'] = '<a href="' . esc_url( $this->tgmpa->get_tgmpa_url() ) . '" target="_parent">' . esc_html( $this->tgmpa->strings['return'] ) . '</a>';
						}

						/**
						 * Filter the list of action links available following bulk plugin installs/updates.
						 *
						 * @since 2.5.0
						 *
						 * @param array $update_actions Array of plugin action links.
						 * @param array $plugin_info    Array of information for the last-handled plugin.
						 */
						$update_actions = apply_filters( 'tgmpa_update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info );

						if ( ! empty( $update_actions ) ) {
							$this->feedback( implode( ' | ', (array) $update_actions ) );
						}
					}

					/* *********** DEPRECATED METHODS *********** */

					/**
					 * Flush header output buffer.
					 *
					 * @since      2.2.0
					 * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead
					 * @see        Bulk_Upgrader_Skin::flush_output()
					 */
					public function before_flush_output() {
						_deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' );
						$this->flush_output();
					}

					/**
					 * Flush footer output buffer and iterate $this->i to make sure the
					 * installation strings reference the correct plugin.
					 *
					 * @since      2.2.0
					 * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead
					 * @see        Bulk_Upgrader_Skin::flush_output()
					 */
					public function after_flush_output() {
						_deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' );
						$this->flush_output();
						$this->i++;
					}
				}
			}
		}
	}
}

if ( ! class_exists( 'TGMPA_Utils' ) ) {

	/**
	 * Generic utilities for TGMPA.
	 *
	 * All methods are static, poor-dev name-spacing class wrapper.
	 *
	 * Class was called TGM_Utils in 2.5.0 but renamed TGMPA_Utils in 2.5.1 as this was conflicting with Soliloquy.
	 *
	 * @since 2.5.0
	 *
	 * @package TGM-Plugin-Activation
	 * @author  Juliette Reinders Folmer
	 */
	class TGMPA_Utils {
		/**
		 * Whether the PHP filter extension is enabled.
		 *
		 * @see http://php.net/book.filter
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @var bool $has_filters True is the extension is enabled.
		 */
		public static $has_filters;

		/**
		 * Wrap an arbitrary string in <em> tags. Meant to be used in combination with array_map().
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param string $string Text to be wrapped.
		 * @return string
		 */
		public static function wrap_in_em( $string ) {
			return '<em>' . wp_kses_post( $string ) . '</em>';
		}

		/**
		 * Wrap an arbitrary string in <strong> tags. Meant to be used in combination with array_map().
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param string $string Text to be wrapped.
		 * @return string
		 */
		public static function wrap_in_strong( $string ) {
			return '<strong>' . wp_kses_post( $string ) . '</strong>';
		}

		/**
		 * Helper function: Validate a value as boolean
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param mixed $value Arbitrary value.
		 * @return bool
		 */
		public static function validate_bool( $value ) {
			if ( ! isset( self::$has_filters ) ) {
				self::$has_filters = extension_loaded( 'filter' );
			}

			if ( self::$has_filters ) {
				return filter_var( $value, FILTER_VALIDATE_BOOLEAN );
			} else {
				return self::emulate_filter_bool( $value );
			}
		}

		/**
		 * Helper function: Cast a value to bool
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param mixed $value Value to cast.
		 * @return bool
		 */
		protected static function emulate_filter_bool( $value ) {
			// @codingStandardsIgnoreStart
			static $true  = array(
				'1',
				'true', 'True', 'TRUE',
				'y', 'Y',
				'yes', 'Yes', 'YES',
				'on', 'On', 'ON',
			);
			static $false = array(
				'0',
				'false', 'False', 'FALSE',
				'n', 'N',
				'no', 'No', 'NO',
				'off', 'Off', 'OFF',
			);
			// @codingStandardsIgnoreEnd

			if ( is_bool( $value ) ) {
				return $value;
			} elseif ( is_int( $value ) && ( 0 === $value || 1 === $value ) ) {
				return (bool) $value;
			} elseif ( ( is_float( $value ) && ! is_nan( $value ) ) && ( (float) 0 === $value || (float) 1 === $value ) ) {
				return (bool) $value;
			} elseif ( is_string( $value ) ) {
				$value = trim( $value );
				if ( in_array( $value, $true, true ) ) {
					return true;
				} elseif ( in_array( $value, $false, true ) ) {
					return false;
				} else {
					return false;
				}
			}

			return false;
		}
	} // End of class TGMPA_Utils
} // End of class_exists wrapperPK�uKXH�4�  %spiko/inc/breadcrumbs/breadcrumbs.php<?php

// theme sub header breadcrumb functions
if (!function_exists('spiko_breadcrumbs')):
    function spiko_breadcrumbs() {
        global $post;
        $homeLink = home_url('/');
        $hide_show_banner = get_theme_mod('banner_enable', true);
        if ($hide_show_banner == true) {?>
            <section class="page-title-section" <?php if (get_header_image()) { ?> style="background:url('<?php header_image(); ?>')" <?php } ?>>		
                <?php
                if (get_theme_mod('breadcrumb_image_overlay', true) == true) {
                    $breadcrumb_overlay = get_theme_mod('breadcrumb_overlay_section_color', 'rgba(0,0,0,0.6)');
                } else {
                    $breadcrumb_overlay = 'none';
                }?>
                <style type="text/css">
                    .page-title-section .overlay
                    {

                        background-color: <?php echo esc_attr($breadcrumb_overlay); ?>;
                    }
                </style>
                <?php
                if(get_theme_mod('breadcrumb_image_overlay',true)==true):?>
                    <!--<div class="overlay"></div>  -->   
                <?php endif;?>	
                <div class="breadcrumb-overlay">
                <div class="container">
                    <div class="row">
                        <div class="col-lg-12 col-md-12">
                        <?php include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
                        if (is_home() || is_front_page()) { 
                            if( ! function_exists( 'spiceb_activate' ) ) {
                                if(get_option('show_on_front')=='page'){
                                    if(is_front_page()){?>
                                        <div class="page-title text-center text-white">
                                            <h1 class="text-white"><?php echo esc_html(get_the_title( get_option('page_on_front', true) )); ?></h1>
                                        </div>
                                    <?php   
                                    }
                                    else if(is_home()){?>
                                        <div class="page-title text-center text-white">
                                            <h1 class="text-white"><?php echo esc_html(get_the_title( get_option('page_for_posts', true) )); ?></h1>
                                        </div>          
                                    <?php
                                    }
                                }
                                elseif(get_option('show_on_front')=='posts'){?>
                                    <div class="page-title text-center text-white">
                                        <h1 class="text-white"><?php echo wp_kses_post(get_theme_mod('blog_page_title_option', __('Home', 'spiko' ))); ?></h1>
                                    </div>
                                <?php
                                }   
                            }
                            //else condition will run when Spice Box plugin is active
                            else{
                                if(get_option('show_on_front')=='posts'){?>
                                    <div class="page-title text-center text-white">
                                        <h1 class="text-white"><?php echo wp_kses_post(get_theme_mod('blog_page_title_option', __('Home', 'spiko' ))); ?></h1>
                                    </div> 
                                <?php
                                }else{
                                    if(is_front_page()){?>
                                        <div class="page-title text-center text-white">
                                            <h1 class="text-white"><?php echo esc_html(get_the_title( get_option('page_on_front', true) )); ?></h1>
                                        </div>
                                    <?php   
                                    }else if(is_home()){?>
                                        <div class="page-title text-center text-white">
                                            <h1 class="text-white"><?php echo esc_html(get_the_title( get_option('page_for_posts', true) )); ?></h1>
                                        </div>          
                                    <?php
                                    }
                                }   
                            }
                        } 
                        else{ ?>                   
                            <div class="page-title text-center text-white">
                            <?php if (is_search()){
                                    echo '<h1 class="text-white">'. get_search_query() .'</h1>';
                            }
                            else if(is_404())
                            {
                                echo '<h1 class="text-white">'. esc_html__('Error 404','spiko' ) .'</h1>';  
                            }
                            else if(is_category())
                            {
                                echo '<h1 class="text-white">'. ( esc_html__('Category: ','spiko' ).single_cat_title( '', false ) ) .'</h1>';   
                            }
                            else if ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ){ 
                                if ( class_exists( 'WooCommerce' ) ){
                                    if(is_shop()){ ?>
                                        <h1 class="text-white"><?php woocommerce_page_title(); ?></h1>
                                        <?php 
                                        }   
                                     }
                            }
                            elseif( is_tag() )
                            {
                                echo '<h1 class="text-white">'. ( esc_html__('Tag: ','spiko' ) .single_tag_title( '', false ) ) .'</h1>';
                            }
                            else if(is_archive())
                            {   
                            the_archive_title( '<h1 class="text-white">', '</h1>' ); 
                            }
                            else
                            { ?>
                                <h1 class="text-white"><?php the_title(''); ?></h1>
                            <?php } ?>
                            </div>  
                        <?php } 
						$spiko_breadcrumb_type = get_theme_mod('spiko_breadcrumb_type','default');
					       if($spiko_breadcrumb_type == 'yoast') {
							if ( function_exists('yoast_breadcrumb') ) {
								$wpseo_titles=get_option('wpseo_titles');
								if($wpseo_titles['breadcrumbs-enable']==true){

								echo '<ul class="page-breadcrumb text-center">';
									echo '<li>';
									echo '</li>';
								$breadcrumbs = yoast_breadcrumb("","",false);
								echo wp_kses_post($breadcrumbs);
								echo '</ul>';
								}	
							}
						   }
							elseif($spiko_breadcrumb_type == 'navxt')
                                    {
                                        if( function_exists( 'bcn_display' ) )
                                        {
											echo '<nav class="page-breadcrumb text-center navxt-breadcrumb">';
                                            bcn_display();
											echo '</nav>';
                                        }
                                        
                                    }
                          elseif($spiko_breadcrumb_type == 'rankmath')
                                    {
                                        if( function_exists( 'rank_math_the_breadcrumbs' ) )
                                        {
                                            rank_math_the_breadcrumbs();
                                        } 
                                    }		
						
						?>
                        </div>
                    </div>	
                </div>
            </div>
            </section>
            <div class="page-seperate"></div>
        <?php } else { ?><div class="page-seperate"></div><?php
        }
    }

endif;
?>PK�uKXoR�JWW%spiko/inc/custom-style/custom-css.php<?php

// define function for custom color setting
function spiko_custom_light() {

$link_color = get_theme_mod('link_color','#35ac39');
list($r, $g, $b) = sscanf($link_color, "#%02x%02x%02x");
$r = $r - 50;
$g = $g - 25;
$b = $b - 40;

if ($link_color != '#ff0000') :?>
<style type="text/css">
<?php if(!is_rtl()):?>
blockquote 
{
border-left: 3px solid <?php echo esc_attr($link_color); ?>;
}
<?php else:?>
blockquote 
{
border-right: 3px solid <?php echo esc_attr($link_color); ?>;
}
<?php endif;?>    
.entry-meta .tag-links a:hover, .entry-meta .tag-links a:focus {background-color: <?php echo esc_attr($link_color); ?>;border: 1px solid <?php echo esc_attr($link_color); ?>;}
.entry-content a:hover{ color: <?php echo esc_attr($link_color); ?>;}
.entry-content a:focus{ color: <?php echo esc_attr($link_color); ?>;margin-left: 2px;}
a:hover,a:focus{color: <?php echo esc_attr($link_color); ?>;}
.entry-meta a:hover ,.entry-meta a:focus{color: <?php echo esc_attr($link_color); ?>;}
.gallery .gallery-icon img:hover { border: 1px solid <?php echo esc_attr($link_color); ?> !important;}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  border-color: <?php echo esc_attr($link_color); ?>;
}
button,
input[type="button"],
input[type="submit"] {
  background: <?php echo esc_attr($link_color); ?>;
  border: 1px solid <?php echo esc_attr($link_color); ?>;
  }
 button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
  color: <?php echo esc_attr($link_color); ?>;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: <?php echo esc_attr($link_color); ?>;
  border: 1px solid <?php echo esc_attr($link_color); ?>;
} 
button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
  color: <?php echo esc_attr($link_color); ?>;
}
.btn-default { background: <?php echo esc_attr($link_color); ?>;border: 1px solid <?php echo esc_attr($link_color); ?>;}
.blog .blog-btn .btn-small:hover ,.blog .blog-btn .btn-small:focus,
.btn-default:hover,.btn-default:focus, .btn-default:active { border: 1px solid <?php echo esc_attr($link_color); ?>;color:<?php echo esc_attr($link_color); ?>; }
.btn-light {color: <?php echo esc_attr($link_color); ?>; border: 1px solid <?php echo esc_attr($link_color); ?>;}
.btn-light:hover,.btn-light:focus,  .btn-light:active { background: <?php echo esc_attr($link_color); ?>;border: 1px solid <?php echo esc_attr($link_color); ?>; }
.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    background-color: <?php echo esc_attr($link_color); ?>;
    border-color: <?php echo esc_attr($link_color); ?>;
}
.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show>.btn-light.dropdown-toggle:focus {
    background-color: <?php echo esc_attr($link_color); ?>;
    border-color: <?php echo esc_attr($link_color); ?>;
    }

.btn-default-dark { background: <?php echo esc_attr($link_color); ?>;border: 1px solid <?php echo esc_attr($link_color); ?>; }
.btn-default-dark:hover,.btn-default-dark:focus, .btn-default-dark:active { border: 1px solid <?php echo esc_attr($link_color); ?>;color:<?php echo esc_attr($link_color); ?>; }
.btn-border:hover, .btn-border:focus, .btn-border:active {color:<?php echo esc_attr($link_color); ?>; }
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid <?php echo esc_attr($link_color); ?>;
}
.site-footer .head-contact-info li a:hover, .site-footer .head-contact-info li a:focus { color: <?php echo esc_attr($link_color); ?>; }
.widget_header .widget_info .head-contact-info li a:hover, 
.widget_header .widget_info .head-contact-info li a:focus {
    color: <?php echo esc_attr($link_color); ?>;
}
.custom-social-icons li > a:hover, .custom-social-icons li > a:focus {
    color: <?php echo esc_attr($link_color); ?>;
}
.navbar .search-box-outer .dropdown-menu {border-top: solid 1px <?php echo esc_attr($link_color); ?>;}
.search-box-outer a:hover,.search-box-outer .text-dark,.search-box-outer a:focus { color:<?php echo esc_attr($link_color); ?> !important;}

#searchbar_fullscreen .btn {
 background-color: <?php echo esc_attr($link_color); ?>;
}
#searchbar_fullscreen .close {
  background-color: <?php echo esc_attr($link_color); ?>;
  border-color: <?php echo esc_attr($link_color); ?>;
}
.navbar .search-box-outer .dropdown-menu {
  border-top: solid 1px <?php echo esc_attr($link_color); ?>;
}
.search-form input[type="submit"] {
  background: <?php echo esc_attr($link_color); ?> none repeat scroll 0 0;
  border: 1px solid <?php echo esc_attr($link_color); ?>;
}
.cart-header > a.cart-total {
  background: <?php echo esc_attr($link_color); ?>;
}
.slider-caption .inner-title:before {background: <?php echo esc_attr($link_color); ?>; }
.slider-caption .heading .sub { background-color: <?php echo esc_attr($link_color); ?>; }
.owl-carousel .owl-prev:hover, .owl-carousel .owl-prev:focus { 
  background-color: <?php echo esc_attr($link_color); ?>;
}
.owl-carousel .owl-next:hover, .owl-carousel .owl-next:focus { 
  background-color: <?php echo esc_attr($link_color); ?>;
}
.section-separator ,.section-separator::before,.section-separator::after {
  background: <?php echo esc_attr($link_color); ?>;
}
.section-header .section-subtitle:not(.testimonial .section-subtitle) {color: <?php echo esc_attr($link_color); ?>;}

.woocommerce ul.products li.product .onsale, .products span.onsale, .woocommerce span.onsale{
  background: <?php echo esc_attr($link_color); ?>;
}
.add-to-cart a:hover, .add-to-cart a:focus{ color: <?php echo esc_attr($link_color); ?>;border:1px solid <?php echo esc_attr($link_color); ?>; }   
.product-price .woocommerce-Price-amount { color: <?php echo esc_attr($link_color); ?>; }
.logo-scroll:hover { border: 1px solid <?php echo esc_attr($link_color); ?>;}
.cont-info address > i { color:<?php echo esc_attr($link_color); ?>;}
.page-breadcrumb li ,
.page-breadcrumb li a:hover, .page-breadcrumb li a:focus ,
.page-breadcrumb .icon::before, .page-breadcrumb .breadcrumb_last{
  color: <?php echo esc_attr($link_color); ?>;
}
.about-subtitle{color:<?php echo esc_attr($link_color); ?>;}

.md-pills .nav-link.active,.md-pills .nav-link:hover, 
.md-pills .nav-link:focus {  background-color: <?php echo esc_attr($link_color); ?>;}

.error-page .title { 
 color:<?php echo esc_attr($link_color); ?>;
}
.footer-sidebar .woocommerce .posted_in a:hover,.footer-sidebar .woocommerce .posted_in a:focus, 
.footer-sidebar .woocommerce-product-rating a:hover, .footer-sidebar .woocommerce-product-rating a:focus, 
.footer-sidebar .woocommerce .tagged_as a:hover,.footer-sidebar .woocommerce .tagged_as a:focus, 
.footer-sidebar .woocommerce-cart table.cart td a:hover, .footer-sidebar .woocommerce-cart table.cart td a:focus,
.footer-sidebar .woocommerce ul.cart_list li a:hover, .footer-sidebar .woocommerce ul.cart_list li a:focus,
.footer-sidebar .woocommerce ul.product_list_widget li a:hover,.footer-sidebar .woocommerce ul.product_list_widget li a:focus {
    color: <?php echo esc_attr($link_color); ?>;
}
.footer-sidebar .widget_text.site-info .custom-social-icons li > a {color: <?php echo esc_attr($link_color); ?>;}
.subscribe-form  .btn-default:hover,.subscribe-form .btn-default:focus {background: <?php echo esc_attr($link_color); ?>; border: 1px solid <?php echo esc_attr($link_color); ?>;}

.entry-date {
    background: <?php echo esc_attr($link_color); ?>;
}
.pagination .page-link:active,.pagination .page-link:hover{background-color: <?php echo esc_attr($link_color); ?>;border-color: <?php echo esc_attr($link_color); ?>;}
.page-item.disabled .page-link {background-color: <?php echo esc_attr($link_color); ?>;border-color: <?php echo esc_attr($link_color); ?>;}
.entry-content p a:hover{color: <?php echo esc_attr($link_color); ?>;}
.sidebar .custom-social-icons li > a {color: <?php echo esc_attr($link_color); ?>;}
.sidebar .custom-social-icons li > a:hover{background-color: <?php echo esc_attr($link_color); ?>;color: #fff;}
.sidebar .widget address i , .footer-sidebar .widget address i {
  color:<?php echo esc_attr($link_color); ?>;
}

.sidebar .widget a:hover, .sidebar .widget a:focus{color: <?php echo esc_attr($link_color); ?>;}

.widget .tagcloud a {border: 1px solid <?php echo esc_attr($link_color); ?>;}
.widget .tagcloud a:hover{background-color: <?php echo esc_attr($link_color); ?>;}
.widget_nav_menu li::before, .widget_pages li::before, .widget_product_categories li::before, .widget_links li::before, .widget_categories li::before, .widget_archive li::before, .widget_recent_entries li::before, .widget_meta li::before, .widget_recent_comments li::before {
    color: <?php echo esc_attr($link_color); ?>;
}
.sidebar .widget li::before{color: <?php echo esc_attr($link_color); ?>;}
.widget .post .entry-date {color: <?php echo esc_attr($link_color); ?>;}

.sidebar a:hover span {
  color: #ffffff;
}
.pagination a:hover:not(.active),
.pagination a:focus:not(.active) {
  background-color: <?php echo esc_attr($link_color); ?>;
  border-color: <?php echo esc_attr($link_color); ?>;
}

#testimonial-carousel .avatar:before , #testimonial-carousel .quotes-seprator:before {background-color: <?php echo esc_attr($link_color); ?>;}
#testimonial-carousel1 .avatar:before , #testimonial-carousel1 .quotes-seprator:before {background-color: <?php echo esc_attr($link_color); ?>;}
#testimonial-carousel .avatar:after {color: <?php echo esc_attr($link_color); ?>;}
#testimonial-carousel1 .avatar:after {color: <?php echo esc_attr($link_color); ?>;}
.testimonial .testmonial-block .name {}
.testimonial-block .entry-content::before {color: <?php echo esc_attr($link_color); ?>;}
.testimonial .rating {color: <?php echo esc_attr($link_color); ?>;}

.team .team-grid .card-body .list-inline li > a:hover, .team .team-grid .card-body .list-inline li > a:focus {
  color: <?php echo esc_attr($link_color); ?>;
}
.team .team-grid:hover .card-body .list-inline , .team .team-grid:focus-within .card-body .list-inline {
  border-bottom: 1px solid <?php echo esc_attr($link_color); ?>;
}
.team .name{color: <?php echo esc_attr($link_color); ?>;}

.services .service-icon i.fa {
  color: <?php echo esc_attr($link_color); ?>;
}
.services .btn-small{  
  color: <?php echo esc_attr($link_color); ?>;
}
.services .card:hover {
  background-color: <?php echo esc_attr($link_color); ?>;
}
.services .btn-small.btn-default{ 
  background: <?php echo esc_attr($link_color); ?>;
  border: 1px solid <?php echo esc_attr($link_color); ?>;
}
.owl-theme .owl-dots .owl-dot.active span {
    background-color: <?php echo esc_attr($link_color); ?>;
}
.funfact .overlay {background-color: rgba(53,172,57, 0.7);}
#cta-video {border: 3px solid <?php echo esc_attr($link_color); ?>;}
.video-btn a:after {border-left: 25px solid <?php echo esc_attr($link_color); ?>;}
.about-header .btn-default:hover,.about-header  .btn-default:focus {
    border: 1px solid <?php echo esc_attr($link_color); ?>;
}
footer{background-color:<?php echo esc_attr($link_color); ?>;}
.footer-sidebar .widget_text.site-info .custom-social-icons li > a:hover{background-color: <?php echo esc_attr($link_color); ?>;}
.scroll-up a {background: <?php echo esc_attr($link_color); ?>;color:#ffffff;}
.related-posts a{color:<?php echo esc_attr($link_color); ?>;}
.related-posts .entry-title a:hover {color:<?php echo esc_attr($link_color); ?>;}
.related-posts .pre-post a{color:<?php echo esc_attr($link_color); ?>;}
.comment-form .comment-reply-title{color: <?php echo esc_attr($link_color); ?>;}
.comment-form .blog-form-group:after,.comment-form .blog-form-group-textarea:after {
  color: <?php echo esc_attr($link_color); ?>;
}
.footer-sidebar .widget_text.site-info a:hover {color:<?php echo esc_attr($link_color); ?>;}
.contact .contact-widget i ,.contact .contact-widget h4 {color:<?php echo esc_attr($link_color); ?>;}
.header-sidebar {
  background: <?php echo esc_attr($link_color); ?>;
}
.owl-theme .owl-dots .owl-dot.active span {
  box-shadow: <?php echo esc_attr($link_color); ?> 0px 0px 0px 2px;
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap > li.show > .dropdown-item {
  background-color: transparent !important;
 
}
.dropdown-item.active, .dropdown-item:active,.dropdown-item:hover {
  color:<?php echo esc_attr($link_color); ?>;
}
.navbar ul li a .menu-text:hover:after,.navbar .nav li.active .nav-link .menu-text:after,.navbar-nav .show .dropdown-menu > .active > .menu-text:after , .navbar-nav .show .dropdown-menu > .active > .menu-text:focus {
  background: <?php echo esc_attr($link_color); ?>;
}

.footer-sidebar .widget .tagcloud a:hover {
  color: <?php echo esc_attr($link_color); ?> !important;
}

.pagination a:hover:not(.active) i,
.pagination a:focus:not(.active) i{
  color: #ffffff;
}
.blog .blog-btn .btn-small:hover i,
.blog .blog-btn .btn-small:focus i {color: <?php echo esc_attr($link_color); ?>;}
.contant-form .wpcf7-form-control-wrap:after ,.contact-icon i{
  color: <?php echo esc_attr($link_color); ?>;
}
.blog .btn-small ,.widget .search-submit:hover {color: <?php echo esc_attr($link_color); ?>;}
.products h5 a:hover , .products h5 a:focus {
  color: <?php echo esc_attr($link_color); ?> !important;
}

.btn-style-one:hover, .btn-style-one:focus {
  background-color: <?php echo esc_attr($link_color); ?>;
}
.btn-style-one {
  color: <?php echo esc_attr($link_color); ?>;
  border: 1px solid <?php echo esc_attr($link_color); ?>;
}
.footer-layout4 .site-info span a:hover {
  color: <?php echo esc_attr($link_color); ?>;
}
.footer-layout4 .site-info.footer-sidebar a:hover, .footer-layout4 .site-info.footer-sidebar a:focus {
  color: <?php echo esc_attr($link_color); ?>;
  font-weight: 600;
}
.layout3 .contact-icon i {
  color: <?php echo esc_attr($link_color); ?>;
}
.btn-style-two:hover, .btn-style-two:focus{
  color: <?php echo esc_attr($link_color); ?>;
}
.cont-info address > a:hover , .cont-info address > a:focus {
  color: <?php echo esc_attr($link_color); ?>;
}
 .team4 .list-inline  > a:hover {
    color: <?php echo esc_attr($link_color); ?>;
}
.btn-style-one {
  color: <?php echo esc_attr($link_color); ?>;
  border: 1px solid <?php echo esc_attr($link_color); ?>;
}
.search-box-outer a.text-dark:hover {color:<?php echo esc_attr($link_color); ?> !important;}

.slide-widget .widget li a:hover, 
.slide-widget .widget_archive li a:hover, 
.slide-widget .widget_categories li a:hover, 
.slide-widget .widget_links li a:hover, 
.slide-widget .widget_meta li a:hover, 
.slide-widget .widget_nav_menu li a:hover, 
.slide-widget .widget_pages li a:hover, 
.slide-widget .widget_recent_comments li a:hover, 
.slide-widget .widget_recent_entries li a:hover {
    color: <?php echo esc_attr($link_color); ?>;
}
.slider-caption.yes .widget li a:hover, 
.slider-caption.yes .widget_archive li a:hover, 
.slider-caption.yes .widget_categories li a:hover, 
.slider-caption.yes .widget_links li a:hover, 
.slider-caption.yes .widget_meta li a:hover, 
.slider-caption.yes .widget_nav_menu li a:hover, 
.slider-caption.yes .widget_pages li a:hover, 
.slider-caption.yes .widget_recent_comments li a:hover, 
.slider-caption.yes .widget_recent_entries li a:hover {
    color: <?php echo esc_attr($link_color); ?>;
}
.pagination .nav-links .page-numbers.current , .pagination .page-link.active {
    background-color: <?php echo esc_attr($link_color); ?>;
    border: 1px solid <?php echo esc_attr($link_color); ?>;
    color: #fff;
}
.spiko-preloader-cube .spiko-cube:before {background: <?php echo esc_attr($link_color); ?>;}
.spiko_header_btn{color: <?php echo esc_attr($link_color); ?>; border: 1px solid <?php echo esc_attr($link_color); ?>;}
a.spiko_header_btn:hover{background-color: <?php echo esc_attr($link_color); ?>;color: #ffffff;}

.dropdown-menu > li.active > a, .navbar .nav .nav-item.current_page_ancestor .nav-link {
    color: <?php echo esc_attr($link_color); ?>;
}

.dropdown-menu > li.active > a, 
.navbar .nav .nav-item.current_page_ancestor.current_page_parent .nav-link,
.navbar .nav .nav-item.current_page_ancestor.current_page_parent > .dropdown-item{
    color: <?php echo esc_attr($link_color); ?>;
}
.navbar .nav .nav-item .dropdown.active > a, .navbar .nav .nav-item .dropdown:hover > a {
    color: <?php echo esc_attr($link_color); ?> !important;
}
.dropdown-item .current-menu-item.active, .dropdown-item:active, .dropdown-item:hover, a.text-dark:focus, a.text-dark:hover, a.bg-light:focus, a.bg-light:hover {
    color: <?php echo esc_attr($link_color); ?> !important;
}
.dropdown-item,a.text-dark,a.bg-light{color:#fff;}
.navbar .nav .nav-item:hover .nav-link, .navbar .nav .nav-item .nav-link:focus{color: <?php echo esc_attr($link_color); ?>;}
.navbar .nav .nav-item.active .nav-link {
    color: #ffffff !important;
    background-color: <?php echo esc_attr($link_color); ?>;
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap > li.show > .dropdown-item {
  color:<?php echo esc_attr($link_color); ?> !important;
}
.woocommerce-loop-product__title:hover{color: <?php echo esc_attr($link_color); ?>;}
.woocommerce ul.products li.product .button, .owl-item .item .cart .add_to_cart_button {
    background: <?php echo esc_attr($link_color); ?>;
}
.woocommerce div.product form.cart .button, .woocommerce a.button, .woocommerce a.button:hover, .woocommerce a.button, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: <?php echo esc_attr($link_color); ?>;
}
.woocommerce ul.product_list_widget li a:hover, .woocommerce ul.product_list_widget li a:focus, .woocommerce .posted_in a:hover, .woocommerce .posted_in a:focus {
    color: <?php echo esc_attr($link_color); ?>;
}
.woocommerce-cart.woocommerce-page thead th {
    border-bottom: 2px solid <?php echo esc_attr($link_color); ?>;
}
.woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover, .woocommerce #respond input#submit:disabled[disabled]:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled:hover, .woocommerce a.button:disabled[disabled]:hover, .woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover, .woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover {
    background-color: <?php echo esc_attr($link_color); ?>;
    opacity: 0.7;
}
.woocommerce-info {
    border-top-color: <?php echo esc_attr($link_color); ?>;
}
.woocommerce-info::before {
    color: <?php echo esc_attr($link_color); ?>;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: <?php echo esc_attr($link_color); ?>;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #ffffff;
    color: <?php echo esc_attr($link_color); ?> !important;
    border-color: <?php echo esc_attr($link_color); ?> !important;
}
.woocommerce-order-received .page .post {box-shadow: 0px 0px 0px 2px <?php echo esc_attr($link_color); ?>;}
.woocommerce-order-received ul.order_details li {border-right: 1px dashed <?php echo esc_attr($link_color); ?>;}
.navbar .nav .nav-item.html a:hover{color: <?php echo esc_attr($link_color); ?>;}
.footer-sidebar .widget_text address a:hover{color: <?php echo esc_attr($link_color); ?>;}
.widget .wp-block-tag-cloud a {border: 1px solid <?php echo esc_attr($link_color); ?>;}
.widget .wp-block-tag-cloud a:hover{background-color: <?php echo esc_attr($link_color); ?>;color: #fff;}
.wp-block-search__button:hover::after{color: <?php echo esc_attr($link_color); ?>;}
.sidebar .woocommerce a:hover span{color: <?php echo esc_attr($link_color); ?>;}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: <?php echo esc_attr($link_color); ?>;
}
.home-blog .entry-title a:hover{color: <?php echo esc_attr($link_color); ?>;}
.nav-item .widget a:hover{color: <?php echo esc_attr($link_color); ?>;}
.nav-item .widget .widget-title{color: <?php echo esc_attr($link_color); ?>;}
.testimonial .testmonial-block .name a:hover{color: <?php echo esc_attr($link_color); ?> !important;}
.entry-content a.wp-block-button__link:hover{color: <?php echo esc_attr($link_color); ?> !important;}
a.comment-reply-link:hover{color: <?php echo esc_attr($link_color); ?>;}
.remove-image {background: <?php echo esc_attr($link_color); ?>;}

        </style>
        <?php
    endif;
}
?>PK�uKX"*�d	d	%spiko/inc/customizer/blog-options.php<?php
/**
 * Blog Options Customizer
 *
 * @package spiko
 */

function spiko_blog_customizer ( $wp_customize )
{

$wp_customize->add_section('spiko_blog_section', 
	array(
	'title' => esc_html__('Blog Page' , 'spiko' ),
	'panel' => 'spiko_theme_panel',
	'priority' => 4,
));



/******************** Blog Content *******************************/
$wp_customize->add_setting('spiko_blog_content', 
	array(
		'default' 			=> esc_html__('excerpt','spiko' ),
		'sanitize_callback' => 'spiko_sanitize_radio'
		)
	);

$wp_customize->add_control('spiko_blog_content', 
	array(		
		'label' 	=> esc_html__('Choose Options', 'spiko' ),		
		'section' 	=> 'spiko_blog_section',
		'type' 		=> 'radio',
		'priority' => 2,
		'choices' 	=>  array(
			'excerpt' 	=> esc_html__('Excerpt', 'spiko' ),
			'content' 	=> esc_html__('Full Content', 'spiko' ),
			)
		)
	);

/******************** Blog Length *******************************/
$wp_customize->add_setting( 'spiko_blog_content_length',
	array(
		'default'           => 30,
		'capability'        => 'edit_theme_options',
		'sanitize_callback' => 'spiko_sanitize_number_range',
		)
);
$wp_customize->add_control( 'spiko_blog_content_length',
	array(
		'label'       => esc_html__( 'Excerpt Length', 'spiko'  ),
		'section'     => 'spiko_blog_section',
		'type'        => 'number',
		'priority' => 2,
		'input_attrs' => array( 'min' => 10, 'max' => 200, 'step' => 1, 'style' => 'width: 200px;' ),
	)
);

/************************* Blog Meta Rearrange*********************************/
$default = array( 'blog_author', 'blog_category','blog_tag');

$choices = array(
        'blog_author' => esc_html__( 'Author', 'spiko'  ),
        'blog_category' => esc_html__( 'Category', 'spiko'  ),
        'blog_tag' => esc_html__( 'Tag', 'spiko'  ),
    );
    
$wp_customize->add_setting( 'spiko_blog_meta_sort', 
    array(
        'capability'  => 'edit_theme_options',
        'sanitize_callback' => 'spiko_sanitize_array',
        'default'     => $default
    ) );

$wp_customize->add_control( new Spiko_Control_Sortable( $wp_customize, 'spiko_blog_meta_sort', 
    array(
        'label' => esc_html__( 'Drag And Drop To Rearrange', 'spiko'  ),
        'section' => 'spiko_blog_section',
        'settings' => 'spiko_blog_meta_sort',
        'type'=> 'sortable',
        'choices'     => $choices
    ) ) );
}
add_action( 'customize_register', 'spiko_blog_customizer' );PK�uKX患1xx*spiko/inc/customizer/blog-page-options.php<?php
/**
 * Single Blog Options Customizer
 *
 * @package spiko
 */
function spiko_blog_page_options_customizer ( $wp_customize )
{
		// News section title
		$wp_customize->add_setting( 'blog_page_title_option',array(
		'capability'     => 'edit_theme_options',
		'default' => esc_html__('Home','spiko' ),
		'sanitize_callback' => 'spiko_sanitize_text',
		));	
		$wp_customize->add_control( 'blog_page_title_option',array(
		'label'   => esc_html__('Main Title','spiko' ),
		'section' => 'spiko_blog_section',
		'type' => 'text',
		'priority' => 1,
		));

}
add_action( 'customize_register', 'spiko_blog_page_options_customizer' );PK�uKX~+�[['spiko/inc/customizer/custom-control.php<?php

if (!function_exists('spiko_register_custom_controls')) :

    /**
     * Register Custom Controls
     */
    function spiko_register_custom_controls($wp_customize) {

        require_once get_template_directory() . '/inc/customizer/toggle/class-toggle-control.php';
        require_once get_template_directory() . '/inc/customizer/sortable/class-sortable-control.php';
        $wp_customize->register_control_type('Spiko_Toggle_Control');
        $wp_customize->register_control_type('Spiko_Control_Sortable');


    }

endif;
add_action('customize_register', 'spiko_register_custom_controls');PK�uKX6o�UU/spiko/inc/customizer/customizer-pro-feature.php<?php //Pro Details
function spiko_pro_feature_customizer( $wp_customize ) {
    class WP_Pro_Feature_Customize_Control extends WP_Customize_Control {
        public $type = 'new_menu';
        /**
        * Render the control's content.
        */
        public function render_content() {
        ?>
        <div class="spiko-pro-features-customizer">
            <ul class="spiko-pro-features">
                <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Advanced Hook Settings','spiko'  ); ?>
                </li>
                <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Multiple Blog Templates','spiko'  ); ?>
                </li>   
                <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Portfolio Management','spiko'  ); ?>
                </li>
                <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Slide Variations','spiko'  ); ?>
                </li>
              <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Create Unlimited Services','spiko'  ); ?>
                </li>
                 <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Callout Section','spiko'  ); ?>
                </li>
              <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Manage Contact Details','spiko'  ); ?>
                </li>
                <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Testimonial Variations','spiko'  ); ?>
                </li>
                <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Client Section','spiko'  ); ?>
                </li>
              <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Team Variations','spiko'  ); ?>
                </li>
              <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Custom Color Schemes','spiko'  ); ?>
                </li>
              <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Section Reordering','spiko'  ); ?>
                </li>
                  <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Sections Shortcode','spiko'  ); ?>
                </li>
                <li>
                    <span class="spiko-pro-label"><?php esc_html_e( 'PRO','spiko'  ); ?></span>
                    <?php esc_html_e( 'Quality Support','spiko'  ); ?>
                </li>
            </ul>
            <a target="_blank" href="<?php echo esc_url('https://spicethemes.com/spiko-plus');?>" class="spiko-pro-button button-primary"><?php esc_html_e( 'UPGRADE TO PRO','spiko'  ); ?></a>
            <hr>
        </div>
        <?php
        }
    }
    $wp_customize->add_section( 'spiko_pro_feature_section' , array(
    		'title'      => esc_html__('View PRO Details', 'spiko' ),
    		'priority'   => 1,
       	) );
    $wp_customize->add_setting(
        'upgrade_pro_feature',
        array(
            'capability'     => 'edit_theme_options',
            'sanitize_callback' => 'sanitize_text_field',
        )	
    );
    $wp_customize->add_control( new WP_Pro_Feature_Customize_Control( $wp_customize, 'upgrade_pro_feature', array(
    		'section' => 'spiko_pro_feature_section',
    		'setting' => 'upgrade_pro_feature',
        ))
    );
    class WP_Feature_Document_Customize_Control extends WP_Customize_Control {
        public $type = 'new_menu';
        /**
        * Render the control's content.
        */
        public function render_content() {
        ?>
       
         <div class="spiko-pro-content">
            <ul class="spiko-pro-des">
                    <li> <?php esc_html_e('With individual hook settings, you can insert html or php code according to your needs.','spiko' );?></li>
                    <li> <?php esc_html_e('The theme comes with multiple blog templates like blog switcher, blog list view, and blog masonry etc.','spiko' );?></li>
                    <li> <?php esc_html_e('Create a professional-looking portfolio.','spiko' );?></li>
                    <li> <?php esc_html_e('PRO version comes with slide variation options, so you can adjust your content through text alignment.','spiko' );?></li>
                    <li> <?php esc_html_e('Add as many services as you like. You can even display each service on a separate page.','spiko' );?></li>       
                    <li> <?php esc_html_e('Theme comes with a beautifully designed section where you can manage your contact details.','spiko' );?></li>
                    <li> <?php esc_html_e('Show all your team members, clients, testimonials on front page.','spiko' );?></li>
                    <li> <?php esc_html_e('You can select amongst predefined color skins, or you can create your own without writing any CSS code.','spiko' );?></li>
                    <li> <?php esc_html_e('The layout manager will help you rearrange all sections.','spiko' );?></li>
                    <li> <?php esc_html_e('The theme comes with a homepage sections shortcode used to add the homepage sections in other pages with any combination.','spiko' );?></li>
                    <li> <?php esc_html_e('Translation-ready, the theme supports popular plugins WPML and Polylang.','spiko' );?></li>
                    <li> <?php esc_html_e('24/7 professional support for Google Maps.','spiko' );?></li>
                    <li> <?php esc_html_e('Dedicated support, widget and sidebar management.','spiko' );?></li>
                </ul>
         </div>
        <?php
        }
    }

    $wp_customize->add_setting(
        'spiko_pro_feature',
        array(
            'capability'     => 'edit_theme_options',
            'sanitize_callback' => 'sanitize_text_field',
        )	
    );
    $wp_customize->add_control( new WP_Feature_Document_Customize_Control( $wp_customize, 'spiko_pro_feature', array(	
    		'section' => 'spiko_pro_feature_section',
    		'setting' => 'spiko_pro_feature',
        ))
    );

}
add_action( 'customize_register', 'spiko_pro_feature_customizer' ); ?>PK�uKX:x�6spiko/inc/customizer/customizer-recommended-plugin.php<?php
/* Notifications in customizer */
 if ( ! function_exists( 'spiko_plus_activate' ) ):
require SPIKO_TEMPLATE_DIR . '/inc/customizer-notify/spiko-customizer-notify.php';
$spiko_config_customizer = array(
	'recommended_plugins'       => array(
		'spicebox' => array(
			'recommended' => true,
			'description' => sprintf( esc_html__( 'Install and activate the %s plugin to take full advantage of all the features this theme has to offer.', 'spiko'  ), sprintf( '<strong>%s</strong>', 'Spice Box' ) ),
		),
	),
	'recommended_actions'       => array(),
	'recommended_actions_title' => esc_html__( 'Recommended Actions', 'spiko'  ),
	'recommended_plugins_title' => esc_html__( 'Recommended Plugin', 'spiko'  ),
	'install_button_label'      => esc_html__( 'Install and Activate', 'spiko'  ),
	'activate_button_label'     => esc_html__( 'Activate', 'spiko'  ),
	'deactivate_button_label'   => esc_html__( 'Deactivate', 'spiko'  ),
);
Spiko_Customizer_Notify::init( apply_filters( 'spiko_customizer_notify_array', $spiko_config_customizer ) );
endif;PK�uKX���h��#spiko/inc/customizer/customizer.php<?php
function spiko_home_page_sanitize_text($input) {
    return wp_kses_post(force_balance_tags($input));
}

function spiko_sanitize_radio($input, $setting) {

    //input must be a slug: lowercase alphanumeric characters, dashes and underscores are allowed only
    $input = sanitize_key($input);

    //get the list of possible radio box options 
    $choices = $setting->manager->get_control($setting->id)->choices;

    //return input if valid or return default option
    return ( array_key_exists($input, $choices) ? $input : $setting->default );
}

if (!function_exists('spiko_sanitize_number_range')) :

        /**
         * Sanitize number range.
         *
         * @since 1.0.0
         *
         * @see absint() https://developer.wordpress.org/reference/functions/absint/
         *
         * @param int  $input Number to check within the numeric range defined by the setting.
         * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
         * @return int|string The number, if it is zero or greater and falls within the defined range; otherwise, the setting default.
         */
        function spiko_sanitize_number_range($input, $setting) {

            // Ensure input is an absolute integer.
            $input = absint($input);

            // Get the input attributes associated with the setting.
            $atts = $setting->manager->get_control($setting->id)->input_attrs;

            // Get min.
            $min = ( isset($atts['min']) ? $atts['min'] : $input );

            // Get max.
            $max = ( isset($atts['max']) ? $atts['max'] : $input );

            // Get Step.
            $step = ( isset($atts['step']) ? $atts['step'] : 1 );

            // If the input is within the valid range, return it; otherwise, return the default.
            return ( $min <= $input && $input <= $max && is_int($input / $step) ? $input : $setting->default );
        }
endif;PK�uKX��F��]�]7spiko/inc/customizer/customizer_color_back_settings.php<?php

function spiko_color_back_settings_customizer($wp_customize) {

    $selective_refresh = isset($wp_customize->selective_refresh) ? 'postMessage' : 'refresh';

    /* Home Page Panel */
    $wp_customize->add_panel('colors_back_settings', array(
        'priority' => 111,
        'capability' => 'edit_theme_options',
        'title' => esc_html__('Colors & Background', 'spiko' ),
    ));

     $wp_customize->add_section("background_image", array(
        'title' => esc_html__('Background Image', 'spiko' ),
        'panel' => 'colors_back_settings',
    ));

    /* ------------------------------------------------ */
    /* Header Color Settings */
    $wp_customize->add_section('header_color_settings', array(
        'title' => esc_html__('Header', 'spiko' ),
        'panel' => 'colors_back_settings',
    ));


    // Header enable/disable 
    $wp_customize->add_setting(
            'header_clr_enable',
            array('capability' => 'edit_theme_options',
                'default' => false,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control(
            'header_clr_enable',
            array(
                'type' => 'checkbox',
                'label' => esc_html__('Click here to apply the below color settings', 'spiko' ),
                'section' => 'header_color_settings',
            )
    );

    class WP_Sitetitle_Color_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Site Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'site_title_color',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'sanitize_text_field',
            )
    );
    $wp_customize->add_control(new WP_Sitetitle_Color_Customize_Control($wp_customize, 'site_title_color', array(
                'section' => 'header_color_settings',
                'setting' => 'site_title_color',
                    ))
    );

    //Site title link color
    $wp_customize->add_setting('site_title_link_color', array(
        'default' => '#ffffff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'site_title_link_color', array(
                'label' => esc_html__('Link Color', 'spiko' ),
                'section' => 'header_color_settings',
                'settings' => 'site_title_link_color',)
    ));

    //Site title link hover color
    $wp_customize->add_setting('site_title_link_hover_color', array(
        'default' => '#35ac39',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'site_title_link_hover_color', array(
                'label' => esc_html__('Link Hover Color', 'spiko' ),
                'section' => 'header_color_settings',
                'settings' => 'site_title_link_hover_color',)
    ));

    class WP_Sitetagline_Color_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Site Tagline', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'site_tagline_color',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'sanitize_text_field',
            )
    );
    $wp_customize->add_control(new WP_Sitetagline_Color_Customize_Control($wp_customize, 'site_tagline_color', array(
                'section' => 'header_color_settings',
                'setting' => 'site_tagline_color',
                    ))
    );

    //Site tagline text color
    $wp_customize->add_setting('site_tagline_text_color', array(
        'default' => '#acacac',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'site_tagline_text_color', array(
                'label' => esc_html__('Text Color', 'spiko' ),
                'section' => 'header_color_settings',
                'settings' => 'site_tagline_text_color',)
    ));


    /* ------------------------------------------------ */
    /* Primary Menu Color Settings */
    $wp_customize->add_section('primary_menu_color_settings', array(
        'title' => esc_html__('Primary Menu', 'spiko' ),
        'panel' => 'colors_back_settings',
    ));

    // enable/disable 
    $wp_customize->add_setting(
            'apply_menu_clr_enable',
            array('capability' => 'edit_theme_options',
                'default' => false,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control(
            'apply_menu_clr_enable',
            array(
                'type' => 'checkbox',
                'label' => esc_html__('Click here to apply the below color settings', 'spiko' ),
                'section' => 'primary_menu_color_settings',
            )
    );

    class WP_Menus_Color_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Menus', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'menus_color',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'sanitize_text_field',
            )
    );
    $wp_customize->add_control(new WP_Menus_Color_Customize_Control($wp_customize, 'menus_color', array(
                'section' => 'primary_menu_color_settings',
                'setting' => 'menus_color',
                    ))
    );

    //Menus text/link color
    $wp_customize->add_setting('menus_link_color', array(
        'default' => '#ffffff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'menus_link_color', array(
                'label' => esc_html__('Text/Link Color', 'spiko' ),
                'section' => 'primary_menu_color_settings',
                'settings' => 'menus_link_color',)
    ));

    //Menus text/link hover color
    $wp_customize->add_setting('menus_link_hover_color', array(
        'default' => '#35ac39',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'menus_link_hover_color', array(
                'label' => esc_html__('Link Hover Color', 'spiko' ),
                'section' => 'primary_menu_color_settings',
                'settings' => 'menus_link_hover_color',)
    ));

    //Menus text/link active color
    $wp_customize->add_setting('menus_link_active_color', array(
        'default' => '#ffffff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'menus_link_active_color', array(
                'label' => esc_html__('Active Link Color', 'spiko' ),
                'section' => 'primary_menu_color_settings',
                'settings' => 'menus_link_active_color',)
    ));

    class WP_Submenus_Color_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Submenus', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'submenus_color',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'sanitize_text_field',
            )
    );
    $wp_customize->add_control(new WP_Submenus_Color_Customize_Control($wp_customize, 'submenus_color', array(
                'section' => 'primary_menu_color_settings',
                'setting' => 'submenus_color',
                    ))
    );

    //Submenus Background color
    $wp_customize->add_setting('submenus_background_color', array(
        'default' => '#000000',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'submenus_background_color', array(
                'label' => esc_html__('Background Color', 'spiko' ),
                'section' => 'primary_menu_color_settings',
                'settings' => 'submenus_background_color',)
    ));

    //Submenus text/link color
    $wp_customize->add_setting('submenus_link_color', array(
        'default' => '#ffffff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'submenus_link_color', array(
                'label' => esc_html__('Text/Link Color', 'spiko' ),
                'section' => 'primary_menu_color_settings',
                'settings' => 'submenus_link_color',)
    ));

    //Submenus text/link hover color
    $wp_customize->add_setting('submenus_link_hover_color', array(
        'default' => '#35ac39',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'submenus_link_hover_color', array(
                'label' => esc_html__('Link Hover Color', 'spiko' ),
                'section' => 'primary_menu_color_settings',
                'settings' => 'submenus_link_hover_color',)
    ));


    /* ------------------------------------------------ */
    /* Banner Color Settings */
    $wp_customize->add_section('banner_color_settings', array(
        'title' => esc_html__('Banner', 'spiko' ),
        'panel' => 'colors_back_settings',
    ));

    class WP_Banner_Color_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Banner Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'banner_title_color',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'sanitize_text_field',
            )
    );
    $wp_customize->add_control(new WP_Banner_Color_Customize_Control($wp_customize, 'banner_title_color', array(
                'section' => 'banner_color_settings',
                'setting' => 'banner_title_color',
                    ))
    );

    //Banner title color
    $wp_customize->add_setting('banner_text_color', array(
        'default' => '#fff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'banner_text_color', array(
                'label' => esc_html__('Title Color', 'spiko' ),
                'section' => 'banner_color_settings',
                'settings' => 'banner_text_color',)
    ));

    class WP_Breadcrumb_Color_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Breadcrumb Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    // Image overlay
    $wp_customize->add_setting('enable_brd_link_clr_setting', array(
        'default' => false,
        'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_brd_link_clr_setting', array(
        'label' => esc_html__('Click here to apply the below color settings', 'spiko' ),
        'section' => 'banner_color_settings',
        'type' => 'checkbox',
    ));
    $wp_customize->add_setting(
            'breadcrumb_title_color',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'sanitize_text_field',
            )
    );
    $wp_customize->add_control(new WP_Breadcrumb_Color_Customize_Control($wp_customize, 'breadcrumb_title_color', array(
                'section' => 'banner_color_settings',
                'setting' => 'breadcrumb_title_color',
                    ))
    );

    //Breadcrumb title link color
    $wp_customize->add_setting('breadcrumb_title_link_color', array(
        'default' => '#ffffff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'breadcrumb_title_link_color', array(
                'label' => esc_html__('Link Color', 'spiko' ),
                'section' => 'banner_color_settings',
                'settings' => 'breadcrumb_title_link_color',)
    ));

    //Breadcrumb title link hover color
    $wp_customize->add_setting('breadcrumb_title_link_hover_color', array(
        'default' => '#35ac39',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'breadcrumb_title_link_hover_color', array(
                'label' => esc_html__('Link Hover Color', 'spiko' ),
                'section' => 'banner_color_settings',
                'settings' => 'breadcrumb_title_link_hover_color',)
    ));


    /* ------------------------------------------------ */
    /* Content Color Settings */
    $wp_customize->add_section('content_color_settings', array(
        'title' => esc_html__('Content', 'spiko' ),
        'panel' => 'colors_back_settings',
    ));

     // Content enable/disable 
    $wp_customize->add_setting(
            'content_clr_enable',
            array('capability' => 'edit_theme_options',
                'default' => false,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control(
            'content_clr_enable',
            array(
                'type' => 'checkbox',
                'label' => esc_html__('Click here to apply the below color settings', 'spiko'),
                'section' => 'content_color_settings',
            )
    );
    
    //H1 color
    $wp_customize->add_setting('h1_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'h1_color', array(
                'label' => esc_html__('H1 Color', 'spiko' ),
                'section' => 'content_color_settings',
                'settings' => 'h1_color',)
    ));

    //H2 color
    $wp_customize->add_setting('h2_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'h2_color', array(
                'label' => esc_html__('H2 Color', 'spiko' ),
                'section' => 'content_color_settings',
                'settings' => 'h2_color',)
    ));

    //H3 color
    $wp_customize->add_setting('h3_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'h3_color', array(
                'label' => esc_html__('H3 Color', 'spiko' ),
                'section' => 'content_color_settings',
                'settings' => 'h3_color',)
    ));

    //H4 color
    $wp_customize->add_setting('h4_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'h4_color', array(
                'label' => esc_html__('H4 Color', 'spiko' ),
                'section' => 'content_color_settings',
                'settings' => 'h4_color',)
    ));

    //H5 color
    $wp_customize->add_setting('h5_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'h5_color', array(
                'label' => esc_html__('H5 Color', 'spiko' ),
                'section' => 'content_color_settings',
                'settings' => 'h5_color',)
    ));

    //H6 color
    $wp_customize->add_setting('h6_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'h6_color', array(
                'label' => esc_html__('H6 Color', 'spiko' ),
                'section' => 'content_color_settings',
                'settings' => 'h6_color',)
    ));

    //P color
    $wp_customize->add_setting('p_color', array(
        'default' => '#888888',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'p_color', array(
                'label' => esc_html__('Paragraph Text Color', 'spiko' ),
                'section' => 'content_color_settings',
                'settings' => 'p_color',)
    ));


    /* ------------------------------------------------ */
    /* Sidebar Widget Color Settings */
    $wp_customize->add_section('sidebar_widget_color_settings', array(
        'title' => esc_html__('Sidebar', 'spiko' ),
        'panel' => 'colors_back_settings',
    ));

    // enable/disable Callout section from service page
    $wp_customize->add_setting(
            'apply_sibar_link_hover_clr_enable',
            array('capability' => 'edit_theme_options',
                'default' => false,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control(
            'apply_sibar_link_hover_clr_enable',
            array(
                'type' => 'checkbox',
                'label' => esc_html__('Click here to apply the below color settings', 'spiko' ),
                'section' => 'sidebar_widget_color_settings',
            )
    );

    //Sidebar widget title color
    $wp_customize->add_setting('sidebar_widget_title_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'sidebar_widget_title_color', array(
                'label' => esc_html__('Title Color', 'spiko' ),
                'section' => 'sidebar_widget_color_settings',
                'settings' => 'sidebar_widget_title_color',)
    ));

    //Sidebar widget text color
    $wp_customize->add_setting('sidebar_widget_text_color', array(
        'default' => '#727272',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'sidebar_widget_text_color', array(
                'label' => esc_html__('Text Color', 'spiko' ),
                'section' => 'sidebar_widget_color_settings',
                'settings' => 'sidebar_widget_text_color',)
    ));

    //Sidebar widget link color
    $wp_customize->add_setting('sidebar_widget_link_color', array(
        'default' => '#0a0a0a',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'sidebar_widget_link_color', array(
                'label' => esc_html__('Link Color', 'spiko' ),
                'section' => 'sidebar_widget_color_settings',
                'settings' => 'sidebar_widget_link_color',)
    ));

    //Sidebar widget link hover color
    $wp_customize->add_setting('sidebar_widget_link_hover_color', array(
        'default' => '#35ac39',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'sidebar_widget_link_hover_color', array(
                'label' => esc_html__('Link Hover Color', 'spiko' ),
                'section' => 'sidebar_widget_color_settings',
                'settings' => 'sidebar_widget_link_hover_color',)
    ));


    /* ------------------------------------------------ */
    /* Footer Widget Color Settings */
    $wp_customize->add_section('footer_widget_color_settings', array(
        'title' => esc_html__('Footer Widgets', 'spiko' ),
        'panel' => 'colors_back_settings',
    ));

    // enable/disable Callout section from service page
    $wp_customize->add_setting(
            'apply_ftrsibar_link_hover_clr_enable',
            array('capability' => 'edit_theme_options',
                'default' => false,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control(
            'apply_ftrsibar_link_hover_clr_enable',
            array(
                'type' => 'checkbox',
                'label' => esc_html__('Click here to apply the below color settings', 'spiko' ),
                'section' => 'footer_widget_color_settings',
            )
    );

    //Footer widget background color
    $wp_customize->add_setting('footer_widget_background_color', array(
        'default' => '#21202e',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_widget_background_color', array(
                'label' => esc_html__('Background Color', 'spiko' ),
                'section' => 'footer_widget_color_settings',
                'settings' => 'footer_widget_background_color',)
    ));

    //Footer widget title color
    $wp_customize->add_setting('footer_widget_title_color', array(
        'default' => '#fff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_widget_title_color', array(
                'label' => esc_html__('Title Color', 'spiko' ),
                'section' => 'footer_widget_color_settings',
                'settings' => 'footer_widget_title_color',)
    ));

    //Footer widget text color
    $wp_customize->add_setting('footer_widget_text_color', array(
        'default' => '#fff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_widget_text_color', array(
                'label' => esc_html__('Text Color', 'spiko' ),
                'section' => 'footer_widget_color_settings',
                'settings' => 'footer_widget_text_color',)
    ));

    //Footer widget link color
    $wp_customize->add_setting('footer_widget_link_color', array(
        'default' => '#ffffff',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_widget_link_color', array(
                'label' => esc_html__('Link Color', 'spiko' ),
                'section' => 'footer_widget_color_settings',
                'settings' => 'footer_widget_link_color',)
    ));

    //Footer widget link hover color
    $wp_customize->add_setting('footer_widget_link_hover_color', array(
        'default' => '#35ac39',
        'sanitize_callback' => 'sanitize_hex_color',
    ));

    $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_widget_link_hover_color', array(
                'label' => esc_html__('Link Hover Color', 'spiko' ),
                'section' => 'footer_widget_color_settings',
                'settings' => 'footer_widget_link_hover_color',)
    ));
}
add_action('customize_register', 'spiko_color_back_settings_customizer');PK�uKX�9V�C	C	5spiko/inc/customizer/customizer_sections_settings.php<?php

/* * *********************** Theme Customizer with Sanitize function ******************************** */

function spiko_theme_option($wp_customize) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh'; 

    function spiko_copyright_sanitize_text($input) {
        return wp_kses_post(force_balance_tags($input));
    }

    function spiko_sanitize_array($value) {
        if (is_array($value)) {
            foreach ($value as $key => $subvalue) {
                $value[$key] = esc_attr($subvalue);
            }
            return $value;
        }
        return esc_attr($value);
    }

    function spiko_sanitize_select($input, $setting) {

        //input must be a slug: lowercase alphanumeric characters, dashes and underscores are allowed only
        $input = sanitize_key($input);

        //get the list of possible radio box options 
        $choices = $setting->manager->get_control($setting->id)->choices;

        //return input if valid or return default option
        return ( array_key_exists($input, $choices) ? $input : $setting->default );
    }

    function spiko_column_callback($control) {
        if ($control->manager->get_setting('home_news_design_layout')->value() == '2') {
            return false;
        }
        return true;
    }

    $wp_customize->add_panel('spiko_theme_panel',
            array(
                'priority' => 2,
                'capability' => 'edit_theme_options',
                'title' => esc_html__('Blog Options', 'spiko' )
            )
    );

     /******************** Logo Length *******************************/
    $wp_customize->add_setting( 'spiko_logo_length',
            array(
                'default' => 212,
                'transport' => 'postMessage',
                'sanitize_callback' => 'absint'
            )
        );
        $wp_customize->add_control( new Spiko_Slider_Custom_Control( $wp_customize, 'spiko_logo_length',
            array(
                'label' => esc_html__( 'Logo Width', 'spiko'  ),
                'priority' => 50,
                'section' => 'title_tagline',
                'input_attrs' => array(
                    'min' => 0,
                    'max' => 500,
                    'step' => 1,
                ),
            )
        ) );
}

add_action('customize_register', 'spiko_theme_option');PK�uKX�n��OO/spiko/inc/customizer/customizer_theme_style.php<?php 
// Adding customizer home page setting
function spiko_custom_color($wp_customize)
{
	//Layout Style
	class WP_Style_Layout_Customize_Control extends WP_Customize_Control {

	    public $type = 'new_menu';

	    function render_content() {
	        echo '<h3>', esc_html__('Theme Layout', 'spiko') . '</h3>';
	        $name = '_customize-layout-radio-' . $this->id;
	        foreach ($this->choices as $key => $value) {
	            ?>
	            <label>
	                <input type="radio" value="<?php echo esc_attr($key); ?>" name="<?php echo esc_attr($name); ?>" data-customize-setting-link="<?php echo esc_attr($this->id); ?>" <?php if ($this->value() == $key) {
	                echo 'checked';
	            } ?>>
	                <img <?php if ($this->value() == $key) {
	                echo 'class="color_scheem_active"';
	            } ?> src="<?php echo esc_url(SPIKO_TEMPLATE_DIR_URI); ?>/assets/images/<?php echo esc_attr($value); ?>" alt="<?php echo esc_attr($value); ?>" />
	            </label>

	            <?php }
	        ?>
	        <script>
	            jQuery(document).ready(function ($) {
	                $("#customize-control-spiko_layout_style label img").click(function () {
	                    $("#customize-control-spiko_layout_style label img").removeClass("color_scheem_active");
	                    $(this).addClass("color_scheem_active");
	                });
	            });
	        </script>
	        <?php
	    }

	}

	//Theme Layout
	$wp_customize->add_setting(
	        'spiko_layout_style', array(
	    'default' => 'wide',
	    'capability' => 'edit_theme_options',
	    'sanitize_callback' => 'spiko_sanitize_radio',
	));
	$wp_customize->add_control(new WP_Style_Layout_Customize_Control($wp_customize, 'spiko_layout_style',
	                array(
	            'label' => esc_html__('Layout style', 'spiko'),
	            'section' => 'theme_style',
	            'type' => 'radio',
	            'choices' => array(
	                'wide' => 'wide.png',
	                'boxed' => 'boxed.png',
	            )
        )));

	/* Theme Style settings */
	$wp_customize->add_section( 'theme_style' , array(
		'title'      => esc_html__('Theme Style Settings', 'spiko' ),
		'priority'   => 110,
   	) );

	// enable/disable custom color settings 
	$wp_customize->add_setting('custom_color_enable', array(
		'capability'  => 'edit_theme_options',
		'default' => false,
		'sanitize_callback' => 'spiko_sanitize_checkbox',
		));
	$wp_customize->add_control('custom_color_enable',array(
			'type' => 'checkbox',
			'label' => esc_html__('Enable custom color skin','spiko' ),
			'section' => 'theme_style',
		)
	);
	
	// link color settings
	$wp_customize->add_setting('link_color', array(
		'capability'     => 'edit_theme_options',
		'default' => '#35ac39',
		'sanitize_callback' => 'sanitize_hex_color'
    ));
	
	$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize,'link_color', 
	array(
		'label'      => esc_html__( 'Skin Color', 'spiko'  ),
		'section'    => 'theme_style',
		'settings'   => 'link_color',
	) ) );	
	
}
add_action( 'customize_register', 'spiko_custom_color' );PK�uKX Y�
��.spiko/inc/customizer/customizer_typography.php<?php
function spiko_typography_customizer($wp_customize) {

    $wp_customize->add_panel('spiko_typography_setting', array(
        'priority' => 990,
        'capability' => 'edit_theme_options',
        'title' => esc_html__('Typography Settings', 'spiko' ),
    ));


    $font_size = array();
    for ($i = 9; $i <= 100; $i++) {
        $font_size[$i] = $i;
    }

    $line_height = array();
    for($i=1; $i<=100; $i++)
    {           
        $line_height[$i] = $i;
    }

    $font_family = spiko_typo_fonts();
	
	
	  /* ====================
    * Enable Local google font  section 
    ==================== */
	
$wp_customize->add_section('local_google_font',
	array(
		'title' => esc_html__('Performance(Google Font)', 'spiko'),
		'panel' => 'spiko_typography_setting',
		'priority' => 1
	));


$wp_customize->add_setting('spiko_enable_local_google_font',
	array(
		'default' => true,
		'sanitize_callback' => 'spiko_sanitize_checkbox',
	)
);
$wp_customize->add_control(new Spiko_Toggle_Control( $wp_customize, 'spiko_enable_local_google_font',
	array(
		'label' => esc_html__('Load Google Fonts Locally?', 'spiko'),
		'type' => 'toggle',
		'section' => 'local_google_font',
		'priority' => 4,
	)
));

// Header typography section
    $wp_customize->add_section('spiko_header_typography', array(
        'title' => esc_html__('Header', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 2,
    ));
// Enable/Disable Header typography section
    $wp_customize->add_setting(
            'enable_header_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_header_typography', array(
        'label' => esc_html__('Enable Header Typography', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'enable_header_typography',
        'type' => 'checkbox'
    ));

    class WP_Sitetitle_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Site Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'site_title',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Sitetitle_Customize_Control($wp_customize, 'site_title', array(
                'section' => 'spiko_header_typography',
                'setting' => 'site_title',
                    ))
    );
    $wp_customize->add_setting(
            'site_title_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('site_title_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'site_title_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'site_title_fontsize',
            array(
                'default' => 36,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('site_title_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'site_title_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));    
    $wp_customize->add_setting(
        'site_title_line_height',
        array(
            'default'           =>  39,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('site_title_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_header_typography',
            'setting' => 'site_title_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

    class WP_Sitetagline_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Site Tagline', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'site_tagline',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Sitetagline_Customize_Control($wp_customize, 'site_tagline', array(
                'section' => 'spiko_header_typography',
                'setting' => 'site_tagline',
                    ))
    );
    $wp_customize->add_setting(
            'site_tagline_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('site_tagline_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'site_tagline_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'site_tagline_fontsize',
            array(
                'default' => 20,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('site_tagline_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'site_tagline_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'site_tagline_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('site_tagline_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_header_typography',
            'setting' => 'site_tagline_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

    class WP_Menus_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Menus', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'menus_title',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Menus_Customize_Control($wp_customize, 'menus_title', array(
                'section' => 'spiko_header_typography',
                'setting' => 'menus_title',
                    ))
    );
    $wp_customize->add_setting(
            'menu_title_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('menu_title_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'menu_title_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'menu_title_fontsize',
            array(
                'default' => 15,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('menu_title_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'menu_title_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'menu_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('menu_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_header_typography',
            'setting' => 'menu_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));


    class WP_SubMenus_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Submenus', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'submenus_title',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_SubMenus_Customize_Control($wp_customize, 'submenus_title', array(
                'section' => 'spiko_header_typography',
                'setting' => 'submenus_title',
                    ))
    );
    $wp_customize->add_setting(
            'submenu_title_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('submenu_title_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'submenu_title_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'submenu_title_fontsize',
            array(
                'default' => 15,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('submenu_title_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_header_typography',
        'setting' => 'submenu_title_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'submenu_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('submenu_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_header_typography',
            'setting' => 'submenu_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
    

// Slider title typography section
    $wp_customize->add_section('spiko_slider_typography', array(
        'title' => esc_html__('Slider', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 4,
    ));
// Enable/Disable Slider title typography section
    $wp_customize->add_setting(
            'enable_slider_title_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));
    $wp_customize->add_control('enable_slider_title_typography', array(
        'label' => esc_html__('Enable Slider Typography', 'spiko' ),
        'section' => 'spiko_slider_typography',
        'setting' => 'enable_slider_title_typography',
        'type' => 'checkbox'
    ));
    $wp_customize->add_setting(
            'slider_title_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('slider_title_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_slider_typography',
        'setting' => 'slider_title_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'slider_title_fontsize',
            array(
                'default' => 50,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('slider_title_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_slider_typography',
        'setting' => 'slider_title_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'slider_line_height',
        array(
            'default'           =>  85,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('slider_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_slider_typography',
            'setting' => 'slider_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

   
// Section title typography section
    $wp_customize->add_section('spiko_section_typography', array(
        'title' => esc_html__('Homepage Sections', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 5,
    ));
// Enable/Disable Section title typography section
    $wp_customize->add_setting(
            'enable_section_title_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_section_title_typography', array(
        'label' => esc_html__('Enable Homepage Sections Typography', 'spiko' ),
        'section' => 'spiko_section_typography',
        'setting' => 'enable_section_title_typography',
        'type' => 'checkbox'
    ));


//    section sub-title typography
    class WP_Section_Sub_Title_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Section Sub Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'section_subtitle',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Section_Sub_Title_Customize_Control($wp_customize, 'section_subtitle', array(
                'section' => 'spiko_section_typography',
                'setting' => 'section_subtitle',
                    ))
    );

    $wp_customize->add_setting(
            'section_subtitle_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('section_subtitle_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_section_typography',
        'setting' => 'section_subtitle_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'section_subtitle_fontsize',
            array(
                'default' => 15,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('section_subtitle_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_section_typography',
        'setting' => 'section_subtitle_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'section_description_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('section_description_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_section_typography',
            'setting' => 'section_description_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
    
    class WP_Section_Title_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Section Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'section_title',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Section_Title_Customize_Control($wp_customize, 'section_title', array(
                'section' => 'spiko_section_typography',
                'setting' => 'section_title',
                    ))
    );

    $wp_customize->add_setting(
            'section_title_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('section_title_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_section_typography',
        'setting' => 'section_title_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'section_title_fontsize',
            array(
                'default' => 36,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('section_title_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_section_typography',
        'setting' => 'section_title_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'section_title_line_height',
        array(
            'default'           =>  54,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('section_title_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_section_typography',
            'setting' => 'section_title_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));


        
// Content typography section
    $wp_customize->add_section('spiko_content_typography', array(
        'title' => esc_html__('Content', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 6,
    ));
// Enable/Disable Content typography section
    $wp_customize->add_setting(
            'enable_content_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_content_typography', array(
        'label' => esc_html__('Enable Content Typography', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'enable_content_typography',
        'type' => 'checkbox'
    ));

// h1 typography settings
    class WP_Content_H1_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 1 (H1)', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_h1',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_H1_Customize_Control($wp_customize, 'content_h1', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_h1',
                    ))
    );
    $wp_customize->add_setting(
            'h1_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('h1_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h1_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'h1_typography_fontsize',
            array(
                'default' => 36,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('h1_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h1_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'h1_line_height',
        array(
            'default'           =>  54,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('h1_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'h1_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
   
// h2 typography settings
    class WP_Content_H2_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 2 (H2)', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_h2',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_H2_Customize_Control($wp_customize, 'content_h2', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_h2',
                    ))
    );
    $wp_customize->add_setting(
            'h2_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('h2_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h2_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'h2_typography_fontsize',
            array(
                'default' => 30,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('h2_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h2_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'h2_line_height',
        array(
            'default'           =>  45,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('h2_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'h2_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
    
// h3 typography settings
    class WP_Content_H3_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 3 (H3)', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_h3',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_H3_Customize_Control($wp_customize, 'content_h3', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_h3',
                    ))
    );
    $wp_customize->add_setting(
            'h3_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('h3_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h3_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'h3_typography_fontsize',
            array(
                'default' => 24,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('h3_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h3_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'h3_line_height',
        array(
            'default'           =>  36,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('h3_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'h3_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
   
// h4 typography settings
    class WP_Content_H4_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 4 (H4)', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_h4',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_H4_Customize_Control($wp_customize, 'content_h4', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_h4',
                    ))
    );
    $wp_customize->add_setting(
            'h4_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('h4_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h4_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'h4_typography_fontsize',
            array(
                'default' => 20,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('h4_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h4_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'h4_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('h4_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'h4_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));


// h5 typography settings
    class WP_Content_H5_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 5 (H5)', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_h5',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_H5_Customize_Control($wp_customize, 'content_h5', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_h5',
                    ))
    );
    $wp_customize->add_setting(
            'h5_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('h5_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h5_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'h5_typography_fontsize',
            array(
                'default' => 20,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('h5_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h5_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'h5_line_height',
        array(
            'default'           =>  24,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('h5_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'h5_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

// h6 typography settings
    class WP_Content_H6_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 6 (H6)', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_h6',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_H6_Customize_Control($wp_customize, 'content_h6', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_h6',
                    ))
    );
    $wp_customize->add_setting(
            'h6_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('h6_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h6_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));

    $wp_customize->add_setting(
            'h6_typography_fontsize',
            array(
                'default' => 14,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('h6_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'h6_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'h6_line_height',
        array(
            'default'           =>  21,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('h6_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'h6_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

// Paragraph typography settings
    class WP_Content_P_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Paragraph', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_p',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_P_Customize_Control($wp_customize, 'content_p', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_p',
                    ))
    );
    $wp_customize->add_setting(
            'p_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('p_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'p_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'p_typography_fontsize',
            array(
                'default' => 15,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('p_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'p_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'p_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('p_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'p_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

// Button text typography settings
    class WP_Content_Button_Text_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Button Text', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'content_button_text',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Content_Button_Text_Customize_Control($wp_customize, 'content_button_text', array(
                'section' => 'spiko_content_typography',
                'setting' => 'content_button_text',
                    ))
    );
    $wp_customize->add_setting(
            'button_text_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('button_text_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'button_text_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));

    $wp_customize->add_setting(
            'button_text_typography_fontsize',
            array(
                'default' => 15,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('button_text_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_content_typography',
        'setting' => 'button_text_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'button_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('button_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_content_typography',
            'setting' => 'button_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
    
// Blog Page/Archive/Single Post typography 
    $wp_customize->add_section('spiko_post_typography', array(
        'title' => esc_html__('Blog/Archive/Single Post', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 7,
    ));
// Enable/Disable Blog/Archive/Single Post typography
    $wp_customize->add_setting(
            'enable_post_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_post_typography', array(
        'label' => esc_html__('Enable Blog/Archive/Single Post Typography', 'spiko' ),
        'section' => 'spiko_post_typography',
        'setting' => 'enable_post_typography',
        'type' => 'checkbox'
    ));
    $wp_customize->add_setting(
            'post-title_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('post-title_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_post_typography',
        'setting' => 'post-title_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'post-title_fontsize',
            array(
                'default' => 36,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('post-title_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_post_typography',
        'setting' => 'post-title_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'post-title_line_height',
        array(
            'default'           =>  54,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('post-title_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_post_typography',
            'setting' => 'post-title_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));


// Shop Page typography 
    $wp_customize->add_section('spiko_shop_page_typography', array(
        'title' => esc_html__('Shop Page', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 9,
    ));
// Enable/Disable Shop Page typography
    $wp_customize->add_setting(
            'enable_shop_page_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_shop_page_typography', array(
        'label' => esc_html__('Enable Shop Page Typography', 'spiko' ),
        'section' => 'spiko_shop_page_typography',
        'setting' => 'enable_shop_page_typography',
        'type' => 'checkbox'
    ));

// h1 typography settings
    class WP_Shop_Content_H1_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 1 (H1)', 'spiko' ); ?></h3>
            <p><?php esc_html_e('Only for product detail page', 'spiko' ); ?></p>
            <?php
        }

    }

    $wp_customize->add_setting(
            'shop_content_h1',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Shop_Content_H1_Customize_Control($wp_customize, 'shop_content_h1', array(
                'section' => 'spiko_shop_page_typography',
                'setting' => 'shop_content_h1',
                    ))
    );
    $wp_customize->add_setting(
            'shop_h1_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('shop_h1_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_shop_page_typography',
        'setting' => 'shop_h1_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'shop_h1_typography_fontsize',
            array(
                'default' => 36,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('shop_h1_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_shop_page_typography',
        'setting' => 'shop_h1_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    
    $wp_customize->add_setting(
        'shop_h1_line_height',
        array(
            'default'           =>  48,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('shop_h1_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_shop_page_typography',
            'setting' => 'shop_h1_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

// h2 typography settings
    class WP_Shop_Content_H2_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 2 (H2)', 'spiko' ); ?></h3>
            <p><?php esc_html_e('Only for product title in Shop Page', 'spiko' ); ?></p>
            <?php
        }

    }

    $wp_customize->add_setting(
            'shop_content_h2',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Shop_Content_H2_Customize_Control($wp_customize, 'shop_content_h2', array(
                'section' => 'spiko_shop_page_typography',
                'setting' => 'shop_content_h2',
                    ))
    );
    $wp_customize->add_setting(
            'shop_h2_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('shop_h2_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_shop_page_typography',
        'setting' => 'shop_h2_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'shop_h2_typography_fontsize',
            array(
                'default' => 18,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('shop_h2_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_shop_page_typography',
        'setting' => 'shop_h2_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'shop_h2_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('shop_h2_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_shop_page_typography',
            'setting' => 'shop_h2_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
   
// h3 typography settings
    class WP_Shop_Content_H3_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Heading 3 (H3)', 'spiko' ); ?></h3>
            <p><?php esc_html_e('Only for Product checkout page', 'spiko' ); ?></p>
            <?php
        }

    }

    $wp_customize->add_setting(
            'shop_content_h3',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Shop_Content_H3_Customize_Control($wp_customize, 'shop_content_h3', array(
                'section' => 'spiko_shop_page_typography',
                'setting' => 'shop_content_h3',
                    ))
    );
    $wp_customize->add_setting(
            'shop_h3_typography_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('shop_h3_typography_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_shop_page_typography',
        'setting' => 'shop_h3_typography_fontfamily',
        'type' => 'select',
        'choices' => $font_family
    ));
    $wp_customize->add_setting(
            'shop_h3_typography_fontsize',
            array(
                'default' => 24,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('shop_h3_typography_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_shop_page_typography',
        'setting' => 'shop_h3_typography_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'shop_h3_line_height',
        array(
            'default'           =>  36,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('shop_h3_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_shop_page_typography',
            'setting' => 'shop_h3_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

// Sidebar typography section
    $wp_customize->add_section('spiko_sidebar_typography', array(
        'title' => esc_html__('Sidebar Widgets', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 10,
    ));
// Enable/Disable Sidebar typography section
    $wp_customize->add_setting(
            'enable_sidebar_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_sidebar_typography', array(
        'label' => esc_html__('Enable Sidebar Widgets Typography', 'spiko' ),
        'section' => 'spiko_sidebar_typography',
        'setting' => 'enable_sidebar_typography',
        'type' => 'checkbox'
    ));

    class WP_Sidebar_Widget_Title_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Sidebar Widget Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'sidebar_widget_title',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Sidebar_Widget_Title_Customize_Control($wp_customize, 'sidebar_widget_title', array(
                'section' => 'spiko_sidebar_typography',
                'setting' => 'sidebar_widget_title',
                    ))
    );
    $wp_customize->add_setting(
            'sidebar_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('sidebar_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_sidebar_typography',
        'setting' => 'sidebar_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'sidebar_fontsize',
            array(
                'default' => 24,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('sidebar_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_sidebar_typography',
        'setting' => 'sidebar_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'sidebar_line_height',
        array(
            'default'           =>  36,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('sidebar_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_sidebar_typography',
            'setting' => 'sidebar_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));
    
    class WP_Sidebar_Widget_Content_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Sidebar Widget Content', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'sidebar_widget_content',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Sidebar_Widget_Content_Customize_Control($wp_customize, 'sidebar_widget_content', array(
                'section' => 'spiko_sidebar_typography',
                'setting' => 'sidebar_widget_content',
                    ))
    );
    $wp_customize->add_setting(
            'sidebar_widget_content_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('sidebar_widget_content_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_sidebar_typography',
        'setting' => 'sidebar_widget_content_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'sidebar_widget_content_fontsize',
            array(
                'default' => 15,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('sidebar_widget_content_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_sidebar_typography',
        'setting' => 'sidebar_widget_content_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'sidebar_widget_content_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('sidebar_widget_content_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_sidebar_typography',
            'setting' => 'sidebar_widget_content_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));


// Footer Widgets typography section
    $wp_customize->add_section('spiko_widget_typography', array(
        'title' => esc_html__('Footer Widgets', 'spiko' ),
        'panel' => 'spiko_typography_setting',
        'priority' => 11,
    ));
// Enable/Disable Footer Widgets typography section
    $wp_customize->add_setting(
            'enable_footer_widget_typography',
            array(
                'default' => false,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_checkbox',
    ));

    $wp_customize->add_control('enable_footer_widget_typography', array(
        'label' => esc_html__('Enable Footer Widgets Typography', 'spiko' ),
        'section' => 'spiko_widget_typography',
        'setting' => 'enable_footer_widget_typography',
        'type' => 'checkbox'
    ));

    class WP_Footer_Widget_Title_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Footer Widget Title', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'footer_widget_title',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Footer_Widget_Title_Customize_Control($wp_customize, 'footer_widget_title', array(
                'section' => 'spiko_widget_typography',
                'setting' => 'footer_widget_title',
                    ))
    );
    $wp_customize->add_setting(
            'footer_widget_title_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('footer_widget_title_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_widget_typography',
        'setting' => 'footer_widget_title_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'footer_widget_title_fontsize',
            array(
                'default' => 24,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('footer_widget_title_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_widget_typography',
        'setting' => 'footer_widget_title_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'footer_widget_title_line_height',
        array(
            'default'           =>  36,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('footer_widget_title_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_widget_typography',
            'setting' => 'footer_widget_title_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

    
    class WP_Footer_Widget_Content_Customize_Control extends WP_Customize_Control {

        public $type = 'new_menu';

        /**
         * Render the control's content.
         */
        public function render_content() {
            ?>
            <h3><?php esc_html_e('Footer Widget Content', 'spiko' ); ?></h3>
            <?php
        }

    }

    $wp_customize->add_setting(
            'footer_widget_content',
            array(
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control(new WP_Footer_Widget_Content_Customize_Control($wp_customize, 'footer_widget_content', array(
                'section' => 'spiko_widget_typography',
                'setting' => 'footer_widget_content',
                    ))
    );
    $wp_customize->add_setting(
            'footer_widget_content_fontfamily',
            array(
                'default' => 'Open Sans',
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'spiko_sanitize_text',
            )
    );
    $wp_customize->add_control('footer_widget_content_fontfamily', array(
        'label' => esc_html__('Font family', 'spiko' ),
        'section' => 'spiko_widget_typography',
        'setting' => 'footer_widget_content_fontfamily',
        'type' => 'select',
        'choices' => $font_family,
    ));
    $wp_customize->add_setting(
            'footer_widget_content_fontsize',
            array(
                'default' => 15,
                'capability' => 'edit_theme_options',
                'sanitize_callback' => 'absint',
            )
    );
    $wp_customize->add_control('footer_widget_content_fontsize', array(
        'label' => esc_html__('Font size (px)', 'spiko' ),
        'section' => 'spiko_widget_typography',
        'setting' => 'footer_widget_content_fontsize',
        'type' => 'select',
        'choices' => $font_size,
    ));
    $wp_customize->add_setting(
        'footer_widget_content_line_height',
        array(
            'default'           =>  30,
            'capability'        =>  'edit_theme_options',
            'sanitize_callback' =>  'absint',
        )   
    );
    $wp_customize->add_control('footer_widget_content_line_height', array(
            'label' => esc_html__('Line height (px)','spiko' ),
            'section' => 'spiko_widget_typography',
            'setting' => 'footer_widget_content_line_height',
            'type'    =>  'select',
            'choices'=>$line_height,
    ));

}

add_action('customize_register', 'spiko_typography_customizer');
?>PK�uKXR��W$W$)spiko/inc/customizer/general-settings.php<?php
/**
 * General Settings Customizer
 *
 * @package spiko
 */
function spiko_general_settings_customizer ( $wp_customize )
{
	        
	$wp_customize->add_panel('spiko_general_settings',
		array(
			'priority' => 112,
			'capability' => 'edit_theme_options',
			'title' => esc_html__('General Settings','spiko' )
		)
	);
	
	// Preloader
	$wp_customize->add_section(
        'preloader_section',
        array(
            'title' =>esc_html__('Preloader','spiko' ),
			'panel'  => 'spiko_general_settings',
			'priority'   => 1,
			
			)
    );

     $wp_customize->add_setting('preloader_enable',
		array(
			'default' => false,
			'sanitize_callback' => 'spiko_sanitize_checkbox'
			)
	);

	$wp_customize->add_control(new Spiko_Toggle_Control( $wp_customize, 'preloader_enable',
		array(
			'label'    => esc_html__( 'Enable/Disable Preloader', 'spiko'  ),
			'section'  => 'preloader_section',
			'type'     => 'toggle',
			'priority' => 1,
		)
	));

	// Sticky Header 
	$wp_customize->add_section(
        'sticky_header_section',
        array(
            'title' =>esc_html__('Sticky Header','spiko' ),
			'panel'  => 'spiko_general_settings',
			'priority'   => 1,
			
			)
    );

     $wp_customize->add_setting('sticky_header_enable',
		array(
			'default' => false,
			'sanitize_callback' => 'spiko_sanitize_checkbox'
			)
	);

	$wp_customize->add_control(new Spiko_Toggle_Control( $wp_customize, 'sticky_header_enable',
		array(
			'label'    => esc_html__( 'Enable/Disable Sticky Header', 'spiko'  ),
			'section'  => 'sticky_header_section',
			'type'     => 'toggle',
			'priority' => 1,
		)
	));
	// add section to manage breadcrumb settings
	$wp_customize->add_section(
        'breadcrumb_setting_section',
        array(
            'title' =>__('Breadcrumb settings','spiko'),
			'panel'  => 'spiko_general_settings',
			'priority'   => 3,
			
			)
    );
	//Dropdown button or html option
	$wp_customize->add_setting(
    'spiko_breadcrumb_type',
    array(
        'default'           =>  'default',
		'capability'        =>  'edit_theme_options',
		'sanitize_callback' =>  'spiko_sanitize_select',
    ));
	$wp_customize->add_control('spiko_breadcrumb_type', array(
		'label' => esc_html__('Breadcrumb type','spiko'),
		'description' => esc_html__( 'If you use other than "default" one you will need to install and activate respective plugins Breadcrumb NavXT, Yoast SEO and Rank Math SEO', 'spiko' ),
        'section' => 'breadcrumb_setting_section',
		'setting' => 'spiko_breadcrumb_type',
		'type'    =>  'select',
		'choices' =>  array(
			'default' => __( 'Default(Blank)', 'spiko' ),
            'yoast'  => __( 'Yoast SEO', 'spiko' ),
            'rankmath'  => __( 'Rank Math', 'spiko' ),
			'navxt'  => __( 'NavXT', 'spiko' ),
			)
	));

	// Scroll to top
	$wp_customize->add_section(
        'scrolltotop_setting_section',
        array(
            'title' =>esc_html__('Scroll to Top','spiko' ),
			'panel'  => 'spiko_general_settings',
			'priority'   => 3,
			
			)
    );
	
    $wp_customize->add_setting('scrolltotop_setting_enable',
		array(
			'default' => true,
			'sanitize_callback' => 'spiko_sanitize_checkbox'
			)
	);

	$wp_customize->add_control(new Spiko_Toggle_Control( $wp_customize, 'scrolltotop_setting_enable',
		array(
			'label'    => esc_html__( 'Enable/Disable Scroll to Top', 'spiko'  ),
			'section'  => 'scrolltotop_setting_section',
			'type'     => 'toggle',
			'priority' => 1,
		)
	));

	// After Menu
	$wp_customize->add_section(
        'after_menu_setting_section',
        array(
            'title' =>esc_html__('After Menu','spiko' ),
			'panel'  => 'spiko_general_settings',
			'priority'   => 3,
			)
    );

	//Dropdown button or html option
	$wp_customize->add_setting(
    'after_menu_multiple_option',
    array(
        'default'           =>  'none',
		'capability'        =>  'edit_theme_options',
		'sanitize_callback' =>  'spiko_sanitize_select',
    ));
	$wp_customize->add_control('after_menu_multiple_option', array(
		'label' => esc_html__('After Menu','spiko' ),
        'section' => 'after_menu_setting_section',
		'setting' => 'after_menu_multiple_option',
		'type'    =>  'select',
		'choices' =>  array(
			'none'		=>	esc_html__('None', 'spiko' ),
			'menu_btn' 	=> esc_html__('Button', 'spiko' ),
			'html' 		=> esc_html__('HTML', 'spiko' ),
			)
	));

	//After Menu Button Text
	$wp_customize->add_setting(
    'after_menu_btn_txt',
    array(
        'default'           =>  '',
		'capability'        =>  'edit_theme_options',
		'sanitize_callback' =>  'spiko_sanitize_text',
    ));
	$wp_customize->add_control('after_menu_btn_txt', array(
		'label' => esc_html__('Button Text','spiko' ),
        'section' => 'after_menu_setting_section',
		'setting' => 'after_menu_btn_txt',
		'type' => 'text',
	));

	//After Menu Button Link
	$wp_customize->add_setting(
    'after_menu_btn_link',
    array(
        'default'           =>  '',
		'capability'        =>  'edit_theme_options',
		'sanitize_callback' =>  'esc_url_raw',
    ));
	$wp_customize->add_control('after_menu_btn_link', array(
		'label' => esc_html__('Button Link','spiko' ),
        'section' => 'after_menu_setting_section',
		'setting' => 'after_menu_btn_link',
		'type' => 'text',
	));

	//Open in new tab
	$wp_customize->add_setting(
    'after_menu_btn_new_tabl',
    array(
        'default'           =>  false,
		'capability'        =>  'edit_theme_options',
		'sanitize_callback' =>  'spiko_sanitize_checkbox',
    ) );
	
	$wp_customize->add_control('after_menu_btn_new_tabl', array(
		'label' => esc_html__('Open link in a new tab','spiko' ),
        'section' => 'after_menu_setting_section',
		'setting' => 'after_menu_btn_new_tabl',
		'type'    =>  'checkbox'
	));	

	//Border Radius
	$wp_customize->add_setting( 'after_menu_btn_border',
			array(
				'default' => 0,
				'transport' => 'postMessage',
				'sanitize_callback' => 'absint'
			)
		);
		$wp_customize->add_control( new Spiko_Slider_Custom_Control( $wp_customize, 'after_menu_btn_border',
			array(
				'label' => esc_html__( 'Button Border Radius', 'spiko'  ),
				'section' => 'after_menu_setting_section',
				'input_attrs' => array(
					'min' => 0,
					'max' => 30,
					'step' => 1,),)
		));

	//After Menu HTML section
	$wp_customize->add_setting('after_menu_html', 
		array(
		'default'=>	'',
			'capability'        =>  'edit_theme_options',
			'sanitize_callback'=> 'spiko_sanitize_text',
		)
	);

	$wp_customize->add_control('after_menu_html', 
		array(
			'label'=> esc_html__('HTML','spiko' ),
			'section'=> 'after_menu_setting_section',
			'type'=> 'textarea',
		)
	);

	//Enable/Disable Search Icon
    $wp_customize->add_setting('search_btn_enable',
		array(
			'default' => false,
			'sanitize_callback' => 'spiko_sanitize_checkbox'
			)
	);

	$wp_customize->add_control(new Spiko_Toggle_Control( $wp_customize, 'search_btn_enable',
		array(
			'label'    => esc_html__( 'Enable/Disable Search Icon', 'spiko'  ),
			'section'  => 'after_menu_setting_section',
			'type'     => 'toggle',
		)
	));

	//Enable/Disable Cart Icon
    $wp_customize->add_setting('cart_btn_enable',
		array(
			'default' => false,
			'sanitize_callback' => 'spiko_sanitize_checkbox'
			)
	);

	$wp_customize->add_control(new Spiko_Toggle_Control( $wp_customize, 'cart_btn_enable',
		array(
			'label'    => esc_html__( 'Enable/Disable Cart Icon', 'spiko'  ),
			'section'  => 'after_menu_setting_section',
			'type'     => 'toggle',
		)
	));	

	// Container Width
	$wp_customize->add_section(
        'container_width_section',
        array(
            'title' =>esc_html__('Container Width','spiko' ),
			'panel'  => 'spiko_general_settings',
			'priority'   => 5,
			
			)
    );

    $wp_customize->add_setting( 'container_width',
			array(
				'default' => 1140,
				'transport' => 'postMessage',
				'sanitize_callback' => 'absint'
			)
		);
		$wp_customize->add_control( new Spiko_Slider_Custom_Control( $wp_customize, 'container_width',
			array(
				'label' => esc_html__( 'Container Width', 'spiko'  ),
				'section' => 'container_width_section',
				'input_attrs' => array(
					'min' => 600,
					'max' => 1920,
					'step' => 1,),)
		));

	/******************** Footer Widgets *******************************/
	$wp_customize->add_section(
        'fwidgets_setting_section',
        array(
            'title' =>esc_html__('Footer Widgets','spiko' ),
			'panel'  => 'spiko_general_settings',
			)
    );

	$wp_customize->add_setting( 'footer_widgets_section',
	array(
		'default' => 3,
		'capability'        =>  'edit_theme_options',
		'sanitize_callback' => 'spiko_sanitize_select'
	));
	$wp_customize->add_control( new Spiko_Image_Radio_Button_Custom_Control( $wp_customize, 'footer_widgets_section',
	array(
		'label' => esc_html__( 'Footer Widgets', 'spiko'  ),
		'section' => 'fwidgets_setting_section',
		'choices' => array(
			2 => array( 
				'image' => trailingslashit( get_template_directory_uri() ) . 'assets/images/2-col.png',
			),
			3 => array(
				'image' => trailingslashit( get_template_directory_uri() ) . 'assets/images/3-col.png',
			),
			4 => array(
				'image' => trailingslashit( get_template_directory_uri() ) . 'assets/images/4-col.png',
			)
		)
	)
) );

	}
add_action( 'customize_register', 'spiko_general_settings_customizer' );PK�uKXǕ���(spiko/inc/customizer/helper-function.php<?php
/**
 * Helper functions.
 *
 * @package spiko
 */

if (!function_exists('spiko_custom_navigation')) :

    function spiko_custom_navigation() {
        echo '<div class="row justify-content-center">';
        if (!is_rtl()) {
            the_posts_pagination(array(
                'prev_text' => __('<i class="fa fa-angle-double-left"></i>', 'spiko' ),
                'next_text' => __('<i class="fa fa-angle-double-right"></i>', 'spiko' ),
            ));
        } else {
            the_posts_pagination(array(
                'prev_text' => __('<i class="fa fa-angle-double-right"></i>', 'spiko' ),
                'next_text' => __('<i class="fa fa-angle-double-left"></i>', 'spiko' ),
            ));
        }
        echo '</div>';
    }

endif;
add_action('spiko_post_navigation', 'spiko_custom_navigation');

function spiko_comment($comment, $args, $depth) {
    $tag = 'div';
    $add_below = 'comment';
    ?>
    <div class="media comment-box">
        <span class="pull-left-comment">
    <?php echo get_avatar($comment, 100, null, 'comments user', array('class' => array('img-fluid comment-img'))); ?>
        </span>
        <div class="media-body">
            <div class="comment-detail">
                <h5 class="comment-detail-title"><?php esc_html(comment_author()); ?><time class="comment-date"><?php printf(esc_html__('%1$s  %2$s', 'spiko' ), esc_html(get_comment_date()), esc_html(get_comment_time())); ?></time></h5>
    <?php comment_text(); ?>

                <div class="reply">
    <?php comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
                </div>
            </div>


        </div>      

    </div>
    <?php
}

if (!function_exists('spiko_posted_content')) :

    /**
     * Content
     *
     */
    function spiko_posted_content() {
        $blog_content = get_theme_mod('spiko_blog_content', 'excerpt');
        $excerpt_length = get_theme_mod('spiko_blog_content_length', 30);

        if ('excerpt' == $blog_content) {
            $excerpt = spiko_the_excerpt(absint($excerpt_length));
            if (!empty($excerpt)) :
                ?>


                <?php
                echo wp_kses_post(wpautop($excerpt));
                ?>


            <?php endif;
        } else {
            ?>

            <?php the_content(); ?>

        <?php }
        ?>
    <?php
    }

endif;



if (!function_exists('spiko_the_excerpt')) :

    /**
     * Generate excerpt.
     *
     */
    function spiko_the_excerpt($length = 0, $post_obj = null) {

        global $post;

        if (is_null($post_obj)) {
            $post_obj = $post;
        }

        $length = absint($length);

        if (0 === $length) {
            return;
        }

        $source_content = $post_obj->post_content;

        if (!empty($post_obj->post_excerpt)) {
            $source_content = $post_obj->post_excerpt;
        }

        $source_content = preg_replace('`\[[^\]]*\]`', '', $source_content);
        $trimmed_content = wp_trim_words($source_content, $length, '&hellip;');
        return $trimmed_content;
    }

endif;

if (!function_exists('spiko_button_title')) :

    /**
     * Display Button on Archive/Blog Page 
     */
    function spiko_button_title() {
        if (get_theme_mod('spiko_enable_blog_read_button', true) == true):
            $blog_button = get_theme_mod('spiko_blog_button_title', 'READ MORE');

            if (empty($blog_button)) {
                return;
            }
            echo '<p><a href = "' . esc_url(get_the_permalink()) . '" class="btn-small">' . esc_html($blog_button) . ' <i class="fa fa-angle-double-right"></i></a></p>';

        endif;
    }

endif;

/**
 * Displays the author name
 */
function spiko_get_author_name($post) {

    $user_id = $post->post_author;
    if (empty($user_id)) {
        return;
    }

    $user_info = get_userdata($user_id);
    echo esc_html($user_info->display_name);
}

function spiko_footer_section_hook() {
    ?>
    <footer class="site-footer">  
        <div class="container">
            <?php if (is_active_sidebar('footer-sidebar-1') || is_active_sidebar('footer-sidebar-2') || is_active_sidebar('footer-sidebar-3') | is_active_sidebar('footer-sidebar-4')): ?> 
                <?php get_template_part('sidebar', 'footer');
            endif;?>  
        </div>

        <?php if (get_theme_mod('ftr_bar_enable', true) == true): ?>
            <div class="site-info text-center">
            <?php echo wp_kses_post(get_theme_mod('footer_copyright', '<span class="copyright">'.__( 'Proudly powered by <a href="https://wordpress.org">WordPress</a> | Theme: <a href="https://spicethemes.com/spiko-wordpress-theme" rel="nofollow">Spiko</a> by <a href="https://spicethemes.com" rel="nofollow">Spicethemes</a>', 'spiko').'</span>')); ?>     
            </div>
        <?php endif; ?>
         <style type="text/css">
    <?php
    if (get_theme_mod('testimonial_image_overlay', true) != false) {
        $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(255,255,255,0.8)');
        ?>
        .section-space.testimonial:before {
            background-color:<?php echo esc_attr($testimonial_overlay_section_color); ?>;
        }
        
        <?php } ?>

    </style>
    </footer>
    <?php
    $scrolltotop_setting_enable = get_theme_mod('scrolltotop_setting_enable', true);
    if ($scrolltotop_setting_enable == true) {
        ?>
        <div class="scroll-up custom right"><a href="#totop"><i class="fa fa-arrow-up"></i></a></div>
    <?php }
}

add_action('spiko_footer_section_hook', 'spiko_footer_section_hook');

if ( ! function_exists( 'spiko_plus_activate' ) ):

//Container Setting For Page
function spiko_container()
{
 
$container_width= "";
return $container_width;
}

//Container Setting For Blog Post
function spiko_blog_post_container()
{

$container_width= "";
return $container_width;
}

//Conainer Setting For Single Post

function spiko_single_post_container()
{
$container_width= "";
return $container_width;
}
//Preloader feature section function
function spiko_preloader_feaure_section_fn(){
if(get_theme_mod('preloader_enable',false)==true):?>
  <div id="preloader1" class="spiko-loader">
        <div class="spiko-preloader-cube">
        <div class="spiko-cube1 spiko-cube"></div>
        <div class="spiko-cube2 spiko-cube"></div>
        <div class="spiko-cube4 spiko-cube"></div>
        <div class="spiko-cube3 spiko-cube"></div>
    </div> </div>
  <?php endif;
}
add_action('spiko_preloader_feaure_section_hook','spiko_preloader_feaure_section_fn');

//Admin customizer preview
if ( ! function_exists( 'spiko_customizer_preview_scripts' ) ) {
    function spiko_customizer_preview_scripts() {
        wp_enqueue_script( 'spiko-customizer-preview', trailingslashit( get_template_directory_uri() ) . 'inc/customizer/customizer-slider/js/customizer-preview.js', array( 'customize-preview', 'jquery' ) );
    }
}
add_action( 'customize_preview_init', 'spiko_customizer_preview_scripts' );

endif;PK�uKX}���!
!
,spiko/inc/customizer/single-blog-options.php<?php

/**
 * Single Blog Options Customizer
 *
 * @package spiko
 */
function spiko_single_blog_customizer($wp_customize) {
    $wp_customize->add_section('spiko_single_blog_section',
            array(
                'title' => esc_html__('Single Post', 'spiko' ),
                'panel' => 'spiko_theme_panel',
                'priority' => 5
    ));

/*     * *********************** Meta Hide Show ******************************** */
    
    $wp_customize->add_setting('spiko_enable_single_post_admin',
            array(
                'default' => true,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
            )
    );
    $wp_customize->add_control(new Spiko_Toggle_Control($wp_customize, 'spiko_enable_single_post_admin',
                    array(
                'label' => esc_html__('Hide/Show Author', 'spiko' ),
                'type' => 'toggle',
                'section' => 'spiko_single_blog_section',
                'priority' => 4,
                    )
    ));

    $wp_customize->add_setting('spiko_enable_single_post_date',
            array(
                'default' => true,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
            )
    );
    $wp_customize->add_control(new Spiko_Toggle_Control($wp_customize, 'spiko_enable_single_post_date',
                    array(
                'label' => esc_html__('Hide/Show Date', 'spiko' ),
                'type' => 'toggle',
                'section' => 'spiko_single_blog_section',
                'priority' => 5,
                    )
    ));

    $wp_customize->add_setting('spiko_enable_single_post_category',
            array(
                'default' => true,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
            )
    );
    $wp_customize->add_control(new Spiko_Toggle_Control($wp_customize, 'spiko_enable_single_post_category',
                    array(
                'label' => esc_html__('Hide/Show Category', 'spiko' ),
                'type' => 'toggle',
                'section' => 'spiko_single_blog_section',
                'priority' => 6,
                    )
    ));  


    $wp_customize->add_setting('spiko_enable_single_post_tag',
            array(
                'default' => true,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
            )
    );
    $wp_customize->add_control(new Spiko_Toggle_Control($wp_customize, 'spiko_enable_single_post_tag',
                    array(
                'label' => esc_html__('Hide/Show Tag', 'spiko' ),
                'type' => 'toggle',
                'section' => 'spiko_single_blog_section',
                'priority' => 8,
                    )
    ));
    $wp_customize->add_setting('spiko_enable_single_post_admin_details',
            array(
                'default' => true,
                'sanitize_callback' => 'spiko_sanitize_checkbox',
            )
    );
    $wp_customize->add_control(new Spiko_Toggle_Control($wp_customize, 'spiko_enable_single_post_admin_details',
                    array(
                'label' => esc_html__('Hide/Show Author Details', 'spiko' ),
                'type' => 'toggle',
                'section' => 'spiko_single_blog_section',
                'priority' => 9,
                    )
    ));
}

add_action('customize_register', 'spiko_single_blog_customizer');PK�uKX�m
��Fspiko/inc/customizer/customizer-image-radio/customizer-image-radio.php<?php
if ( class_exists( 'WP_Customize_Control' ) ) {
	class Spiko_Img_Radio_Control extends WP_Customize_Control {
		protected function get_spiko_resource_url() {
			if( strpos( wp_normalize_path( __DIR__ ), wp_normalize_path( WP_PLUGIN_DIR ) ) === 0 ) {
				// We're in a plugin directory and need to determine the url accordingly.
				return plugin_dir_url( __DIR__ );
			}

			return trailingslashit( get_template_directory_uri() );
		}
	}

	class Spiko_Image_Radio_Button_Custom_Control extends Spiko_Img_Radio_Control {
		/**
		 * The type of control being rendered
		 */
		public $type = 'image_radio_button';
		/**
		 * Enqueue our scripts and styles
		 */
		public function enqueue() {
			wp_enqueue_style( 'spiko-custom-img-radio-controls-css', SPIKO_TEMPLATE_DIR_URI . '/inc/customizer/customizer-image-radio/css/customizer.css', array(), '1.0', 'all' );
		}
		/**
		 * Render the control in the customizer
		 */
		public function render_content() {
		?>
			<div class="image_radio_button_control">
				<?php if( !empty( $this->label ) ) { ?>
					<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
				<?php } ?>
				<?php if( !empty( $this->description ) ) { ?>
					<span class="customize-control-description"><?php echo esc_html( $this->description ); ?></span>
				<?php } ?>

				<?php foreach ( $this->choices as $key => $value ) { ?>
					<label class="radio-button-label">
						<input type="radio" name="<?php echo esc_attr( $this->id ); ?>" value="<?php echo esc_attr( $key ); ?>" <?php $this->link(); ?> <?php checked( esc_attr( $key ), $this->value() ); ?>/>
						<img src="<?php echo esc_attr( $value['image'] ); ?>" title="<?php echo esc_attr( $key ); ?> Column" />
					</label>
				<?php	} ?>
			</div>
		<?php
		}
	}
}PK�uKXS�z���>spiko/inc/customizer/customizer-image-radio/css/customizer.css/* ==========================================================================
   Image Radio Buttons
   ========================================================================== */
.image_radio_button_control .radio-button-label > input {
	display: none;
}

.image_radio_button_control .radio-button-label > img {
	cursor: pointer;
	border: 3px solid #ddd;
	width: 25%;
	background-color: #2271b1;
}

.image_radio_button_control .radio-button-label > input:checked + img {
	border: 3px solid #2885bb;
}PK�uKX+@�ff>spiko/inc/customizer/customizer-slider/customizer-controls.php<?php
if ( class_exists( 'WP_Customize_Control' ) ) {
	class Spiko_Range_Slider_Control extends WP_Customize_Control {
		protected function get_spiko_resource_url() {
			if( strpos( wp_normalize_path( __DIR__ ), wp_normalize_path( WP_PLUGIN_DIR ) ) === 0 ) {
				// We're in a plugin directory and need to determine the url accordingly.
				return plugin_dir_url( __DIR__ );
			}

			return trailingslashit( get_template_directory_uri() );
		}
	}

	class Spiko_Slider_Custom_Control extends Spiko_Range_Slider_Control {
		/**
		 * The type of control being rendered
		 */
		public $type = 'slider_control';
		/**
		 * Enqueue our scripts and styles
		 */
		public function enqueue() {
			wp_enqueue_script( 'spiko-custom-controls-js', $this->get_spiko_resource_url() . 'inc/customizer/customizer-slider/js/customizer.js', array( 'jquery', 'jquery-ui-core' ), '1.0', true );
			wp_enqueue_style( 'spiko-custom-controls-css', $this->get_spiko_resource_url() . 'inc/customizer/customizer-slider/css/customizer.css', array(), '1.0', 'all' );
		}
		/**
		 * Render the control in the customizer
		 */
		public function render_content() {
		?>
			<div class="slider-custom-control">
				<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span><input type="number" id="<?php echo esc_attr( $this->id ); ?>" name="<?php echo esc_attr( $this->id ); ?>" value="<?php echo esc_attr( $this->value() ); ?>" class="customize-control-slider-value" <?php $this->link(); ?> />
				<div class="slider" slider-min-value="<?php echo esc_attr( $this->input_attrs['min'] ); ?>" slider-max-value="<?php echo esc_attr( $this->input_attrs['max'] ); ?>" slider-step-value="<?php echo esc_attr( $this->input_attrs['step'] ); ?>"></div><span class="slider-reset dashicons dashicons-image-rotate" slider-reset-value="<?php echo esc_attr( $this->value() ); ?>"></span>
			</div>
		<?php
		}
	}

}PK�uKX`I�Y<spiko/inc/customizer/customizer-slider/customizer-slider.php<?php
/**
 * Load Slider Customizer Controls
 */
require_once trailingslashit( dirname(__FILE__) ) . 'customizer-controls.php';PK�uKX%�:¼�9spiko/inc/customizer/customizer-slider/css/customizer.css/* ==========================================================================
   CSS for Customizer Custom Controls Slider
   ========================================================================== */
.slider-custom-control {
	margin-bottom: 30px;
}

.slider-custom-control input[type=number]::-webkit-inner-spin-button,
.slider-custom-control input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.slider-custom-control input[type=number] {
	-moz-appearance: textfield;
}

.slider-custom-control  .customize-control-title {
	display: inline-block;
}

.slider-custom-control input[type=number] {
	text-align: right;
	width: 50px;
	float: right;
}

.slider-custom-control .slider {
	width: 85%;
	float: left;
	margin: 20px 0 10px;
}

.slider-custom-control .slider-reset {
	float: right;
	cursor: pointer;
}

.slider-custom-control .slider-value {
	border: none;
	text-align: right;
	width: 50px;
	margin-right: 5px;
}

.slider-custom-control .slider-value,
.slider-custom-control .slider-unit {
	float: right;
}

.slider-custom-control .ui-widget.ui-widget-content {
	border: 1px solid #cac1c1;
}

.slider-custom-control .ui-corner-all,
.slider-custom-control .ui-corner-bottom,
.slider-custom-control .ui-corner-right,
.slider-custom-control .ui-corner-br {
	border-bottom-right-radius: 3px;
}

.slider-custom-control .ui-corner-all,
.slider-custom-control .ui-corner-bottom,
.slider-custom-control .ui-corner-left,
.slider-custom-control .ui-corner-bl {
	border-bottom-left-radius: 3px;
}

.slider-custom-control .ui-corner-all,
.slider-custom-control .ui-corner-top,
.slider-custom-control .ui-corner-right,
.slider-custom-control .ui-corner-tr {
	border-top-right-radius: 3px;
}

.slider-custom-control .ui-corner-all,
.slider-custom-control .ui-corner-top,
.slider-custom-control .ui-corner-left,
.slider-custom-control .ui-corner-tl {
	border-top-left-radius: 3px;
}

.slider-custom-control .ui-widget-content {
	background: #f4f4f4 none repeat scroll 0 0;
	color: #333;
}

.slider-custom-control .ui-slider-horizontal {
	height: 3px;
}

.slider-custom-control .ui-slider {
	position: relative;
	text-align: left;
}

.slider-custom-control .ui-state-default,
.slider-custom-control .ui-widget-content .ui-state-default,
.slider-custom-control .ui-widget-header .ui-state-default,
.slider-custom-control .ui-button,
.slider-custom-control .ui-button.ui-state-disabled:hover,
.slider-custom-control .ui-button.ui-state-disabled:active {
	background: #2885bb none repeat scroll 0 0;
	border: 1px solid #2885bb;
	color: #454545;
	font-weight: normal;
}

.slider-custom-control .ui-slider-horizontal .ui-slider-handle {
	margin-left: -7px;
	top: -7px;
	border-radius: 50%;
}

.slider-custom-control .ui-slider .ui-slider-handle {
	cursor: pointer;
	height: 14px;
	position: absolute;
	width: 14px;
	z-index: 2;
}

.slider-custom-control .dashicons-image-rotate {
	margin-top: 10px;
	color: #d4d4d4;
	size: 16px;
}

.slider-custom-control .dashicons-image-rotate:hover {
	color: #a7a7a7;
}
.rtl .dashicons-image-rotate:before {
    position: absolute;
    left: 0;
}
.rtl .slider-custom-control input[type=number]
 {
    position: absolute;
    left: 0;
}
.rtl .slider-custom-control .ui-slider {
    margin-left: 16px;
}PK�uKXO�(44?spiko/inc/customizer/customizer-slider/js/customizer-preview.jsjQuery( document ).ready(function($) {
	// Change the width of logo
	wp.customize('spiko_logo_length', function(control) {
		control.bind(function( controlValue ) {
			$('.custom-logo').css('max-width', '500px');
			$('.custom-logo').css('width', controlValue + 'px');
			$('.custom-logo').css('height', 'auto');
		});
	});

	// Change button border radius
	wp.customize('after_menu_btn_border', function(control) {
		control.bind(function( borderRadius ) {
		$('.spiko_header_btn').css('border-radius', borderRadius + 'px');
			
		});
	});

	// Change container width
	wp.customize('container_width', function(control) {
		control.bind(function( containerWidth ) {
		$('#content .container').css('max-width', containerWidth + 'px');
		$("#content .site-footer .container").css('max-width','1140px');
			
		});
	});

});PK�uKX.�XT$$7spiko/inc/customizer/customizer-slider/js/customizer.jsjQuery( document ).ready(function($) {
	"use strict";

	// Set our slider defaults and initialise the slider
	$('.slider-custom-control').each(function(){
		var sliderValue = $(this).find('.customize-control-slider-value').val();
		var newSlider = $(this).find('.slider');
		var sliderMinValue = parseFloat(newSlider.attr('slider-min-value'));
		var sliderMaxValue = parseFloat(newSlider.attr('slider-max-value'));
		var sliderStepValue = parseFloat(newSlider.attr('slider-step-value'));

		newSlider.slider({
			value: sliderValue,
			min: sliderMinValue,
			max: sliderMaxValue,
			step: sliderStepValue,
			change: function(e,ui){
				// Important! When slider stops moving make sure to trigger change event so Customizer knows it has to save the field
				$(this).parent().find('.customize-control-slider-value').trigger('change');
	      }
		});
	});

	// Change the value of the input field as the slider is moved
	$('.slider').on('slide', function(event, ui) {
		$(this).parent().find('.customize-control-slider-value').val(ui.value);
	});

	// Reset slider and input field back to the default value
	$('.slider-reset').on('click', function() {
		var resetValue = $(this).attr('slider-reset-value');
		$(this).parent().find('.customize-control-slider-value').val(resetValue);
		$(this).parent().find('.slider').slider('value', resetValue);
	});

	// Update slider if the input field loses focus as it's most likely changed
	$('.customize-control-slider-value').blur(function() {
		var resetValue = $(this).val();
		var slider = $(this).parent().find('.slider');
		var sliderMinValue = parseInt(slider.attr('slider-min-value'));
		var sliderMaxValue = parseInt(slider.attr('slider-max-value'));

		// Make sure our manual input value doesn't exceed the minimum & maxmium values
		if(resetValue < sliderMinValue) {
			resetValue = sliderMinValue;
			$(this).val(resetValue);
		}
		if(resetValue > sliderMaxValue) {
			resetValue = sliderMaxValue;
			$(this).val(resetValue);
		}
		$(this).parent().find('.slider').slider('value', resetValue);
	});

});

( jQuery, wp.customize );PK�uKX�ȼ�
�
8spiko/inc/customizer/sortable/class-sortable-control.php<?php
/**
 * Customizer Control: sortable.
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Sortable control (uses checkboxes).
 */
class Spiko_Control_Sortable extends WP_Customize_Control {

	public $type = 'sortable';
    
    public $option_type = 'theme_mod';
    
	public function enqueue() {

		wp_enqueue_script( 'spiko-sortable', SPIKO_TEMPLATE_DIR_URI . '/inc/customizer/sortable/sortable.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable' ), false, true );
		wp_enqueue_style( 'spiko-sortable-css', SPIKO_TEMPLATE_DIR_URI . '/inc/customizer/sortable/sortable.css', null );

	}

	public function to_json() {
		parent::to_json();

		$this->json['default'] = $this->setting->default;
		if ( isset( $this->default ) ) {
			$this->json['default'] = $this->default;
		}
		
		$this->json['value']   = maybe_unserialize( $this->value() );
		$this->json['choices'] = $this->choices;
		$this->json['link']    = $this->get_link();
		$this->json['id']      = $this->id;

		if ( 'user_meta' === $this->option_type ) {
			$this->json['value'] = get_user_meta( get_current_user_id(), $this->id, true );
		}

		$this->json['inputAttrs'] = '';
		foreach ( $this->input_attrs as $attr => $value ) {
			$this->json['inputAttrs'] .= $attr . '="' . esc_attr( $value ) . '" ';
		}
		$this->json['inputAttrs'] = maybe_serialize( $this->input_attrs() );

	}

	/**
	 * An Underscore (JS) template for this control's content (but not its container).
	 *
	 * Class variables for this control class are available in the `data` JS object;
	 * export custom variables by overriding {@see WP_Customize_Control::to_json()}.
	 *
	 * @see WP_Customize_Control::print_template()
	 *
	 * @access protected
	 */
	protected function content_template() {
		?>
		<label class='sortable'>
			<span class="customize-control-title">
				{{{ data.label }}}
			</span>
			<# if ( data.description ) { #>
				<span class="description customize-control-description">{{{ data.description }}}</span>
			<# } #>

			<ul class="sortable">
				<# _.each( data.value, function( choiceID ) { #>
					<li {{{ data.inputAttrs }}} class='sortable-item' data-value='{{ choiceID }}'>
						<i class='dashicons dashicons-menu'></i>
						<i class="dashicons dashicons-visibility visibility"></i>
						{{{ data.choices[ choiceID ] }}}
					</li>
				<# }); #>
				<# _.each( data.choices, function( choiceLabel, choiceID ) { #>
					<# if ( -1 === data.value.indexOf( choiceID ) ) { #>
						<li {{{ data.inputAttrs }}} class='sortable-item invisible' data-value='{{ choiceID }}'>
							<i class='dashicons dashicons-menu'></i>
							<i class="dashicons dashicons-visibility visibility"></i>
							{{{ data.choices[ choiceID ] }}}
						</li>
					<# } #>
				<# }); #>
			</ul>
		</label>

		<?php
	}
}PK�uKX��	*spiko/inc/customizer/sortable/sortable.css.customize-control-sortable ul.ui-sortable li {
  padding: 5px 10px;
  border: 1px solid #333;
  background: #fff; }
  .customize-control-sortable ul.ui-sortable li .dashicons.dashicons-menu {
    float: right; }
  .customize-control-sortable ul.ui-sortable li .dashicons.visibility {
    margin-right: 10px; }
  .customize-control-sortable ul.ui-sortable li.invisible {
    color: #aaa;
    border: 1px dashed #aaa; }
    .customize-control-sortable ul.ui-sortable li.invisible .dashicons.visibility {
      color: #aaa; }
PK�uKX,���ww)spiko/inc/customizer/sortable/sortable.jswp.customize.controlConstructor['sortable'] = wp.customize.Control.extend({

	ready: function() {

		'use strict';

		var control = this;

		// Set the sortable container.
		control.sortableContainer = control.container.find( 'ul.sortable' ).first();

		// Init sortable.
		control.sortableContainer.sortable({

			// Update value when we stop sorting.
			stop: function() {
				control.updateValue();
			}
		}).disableSelection().find( 'li' ).each( function() {

			// Enable/disable options when we click on the eye of Thundera.
			jQuery( this ).find( 'i.visibility' ).click( function() {
				jQuery( this ).toggleClass( 'dashicons-visibility-faint' ).parents( 'li:eq(0)' ).toggleClass( 'invisible' );
			});
		}).click( function() {

			// Update value on click.
			control.updateValue();
		});
	},

	/**
	 * Updates the sorting list
	 */
	updateValue: function() {

		'use strict';

		var control = this,
		    newValue = [];

		this.sortableContainer.find( 'li' ).each( function() {
			if ( ! jQuery( this ).is( '.invisible' ) ) {
				newValue.push( jQuery( this ).data( 'value' ) );
			}
		});

		control.setting.set( newValue );
	}
});PK�uKX�c�-		4spiko/inc/customizer/toggle/class-toggle-control.php<?php
/**
 * Customizer Control: toggle.
 */
// Exit if accessed directly.
if (!defined('ABSPATH')) {
    exit;
}

if (!class_exists('Spiko_Toggle_Control')) {

    /**
     * Toggle control (modified checkbox).
     */
    class Spiko_Toggle_Control extends WP_Customize_Control {

        public $type = 'toggle';
        public $tooltip = '';

        public function to_json() {
            parent::to_json();

            if (isset($this->default)) {
                $this->json['default'] = $this->default;
            } else {
                $this->json['default'] = $this->setting->default;
            }

            $this->json['value'] = $this->value();
            $this->json['link'] = $this->get_link();
            $this->json['id'] = $this->id;
            $this->json['tooltip'] = $this->tooltip;

            $this->json['inputAttrs'] = '';
            foreach ($this->input_attrs as $attr => $value) {
                $this->json['inputAttrs'] .= $attr . '="' . esc_attr($value) . '" ';
            }
        }

        public function enqueue() {
            wp_enqueue_style('spiko-toggle', get_template_directory_uri() . '/inc/customizer/toggle/toggle.css', null);
            wp_enqueue_script('spiko-toggle', get_template_directory_uri() . '/inc/customizer/toggle/toggle.js', array('jquery'), false, true); //for toggle        
        }

        protected function content_template() {
            ?>
            <# if ( data.tooltip ) { #>
            <a href="#" class="tooltip hint--left" data-hint="{{ data.tooltip }}"><span class='dashicons dashicons-info'></span></a>
            <# } #>
            <label for="toggle_{{ data.id }}">
                <span class="customize-control-title">
                    {{{ data.label }}}
                </span>
                <# if ( data.description ) { #>
                <span class="description customize-control-description">{{{ data.description }}}</span>
                <# } #>
                <input {{{ data.inputAttrs }}} name="toggle_{{ data.id }}" id="toggle_{{ data.id }}" type="checkbox" value="{{ data.value }}" {{{ data.link }}}<# if ( '1' == data.value ) { #> checked<# } #> hidden />
                <span class="switch" style="margin-top:7px;"></span>
            </label>
            <?php
        }

    }

}PK�uKX�����&spiko/inc/customizer/toggle/toggle.css.customize-control-toggle label {
    display: flex;
    flex-wrap: wrap; 
}
.customize-control-toggle label .customize-control-title {
    width: calc(100% - 55px); 
}
.customize-control-toggle label .description {
    order: 99; 
}
.customize-control-toggle input[type="checkbox"] {
    display: none; 
}
.customize-control-toggle .switch { 
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 35px;
    height: 12px;
    border-radius: 8px;
    background: #ccc;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: background 350ms ease; 
}
.customize-control-toggle .switch:before, .customize-control-toggle .switch:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -3px;
    transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98), background 150ms ease; 
}
.customize-control-toggle .switch:before {
    background: rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -50%, 0) scale(0); 
}
.customize-control-toggle .switch:after {
    background: #999;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: translate3d(0, -50%, 0); 
}
.customize-control-toggle .switch:active:before {
    transform: translate3d(0, -50%, 0) scale(3);
}
.customize-control-toggle input:checked + .switch {
    background: rgba(52, 152, 222, 0.3); 
}
.customize-control-toggle input:checked + .switch:before {
    background: rgba(52, 152, 222, 0.075);
    transform: translate3d(100%, -50%, 0) scale(1); 
}
.customize-control-toggle input:checked + .switch:after {
    background: #3498DE;
    transform: translate3d(100%, -50%, 0); 
}
.customize-control-toggle input:checked + .switch:active:before {
    background: rgba(52, 152, 222, 0.075);
    transform: translate3d(100%, -50%, 0) scale(3); 
}
/*.toggle-icon.switch{
    position: absolute;
    bottom: 32px;
    right: 20px;
}*/PK�uKX��P���%spiko/inc/customizer/toggle/toggle.jswp.customize.controlConstructor['toggle'] = wp.customize.Control.extend({

    ready: function () {

        'use strict';

        var control = this,
                checkboxValue = control.setting._value;

        // Save the value
        this.container.on('change', 'input', function () {
            checkboxValue = (jQuery(this).is(':checked')) ? true : false;
            control.setting.set(checkboxValue);
        });

    }

});PK�uKX���1�1?spiko/inc/customizer-notify/spiko-customizer-notify-section.php<?php

class Spiko_Customizer_Notify_Section extends WP_Customize_Section {
	
	public $type = 'spiko-customizer-notify-section';
	
	public $recommended_actions = '';
	
	public $recommended_plugins = '';
	
	public $total_actions = '';
	
	public $plugin_text = '';
	
	public $dismiss_button = '';

	
	public function check_active( $slug ) {
		if ( file_exists( ABSPATH . 'wp-content/plugins/' . $slug . '/' . $slug . '.php' ) ) {
			include_once( ABSPATH . 'wp-admin/includes/plugin.php' );

			$needs = function_exists( 'spiceb_activate' ) ? 'deactivate' : 'activate';

			return array(
				'status' => function_exists( 'spiceb_activate' ),
				'needs'  => $needs,
			);
		}

		return array(
			'status' => false,
			'needs'  => 'install',
		);
	}

	
	public function create_action_link( $state, $slug ) {
		switch ( $state ) {
			case 'install':
				return wp_nonce_url(
					add_query_arg(
						array(
							'action' => 'install-plugin',
							'plugin' => $slug,
						),
						network_admin_url( 'update.php' )
					),
					'install-plugin_' . $slug
				);
				break;
			case 'deactivate':
				return add_query_arg(
					array(
						'action'        => 'deactivate',
						'plugin'        => rawurlencode( $slug . '/' . $slug . '.php' ),
						'plugin_status' => 'all',
						'paged'         => '1',
						'_wpnonce'      => wp_create_nonce( 'deactivate-plugin_' . $slug . '/' . $slug . '.php' ),
					), network_admin_url( 'plugins.php' )
				);
				break;
			case 'activate':
				return add_query_arg(
					array(
						'action'        => 'activate',
						'plugin'        => rawurlencode( $slug . '/' . $slug . '.php' ),
						'plugin_status' => 'all',
						'paged'         => '1',
						'_wpnonce'      => wp_create_nonce( 'activate-plugin_' . $slug . '/' . $slug . '.php' ),
					), network_admin_url( 'plugins.php' )
				);
				break;
		}// End switch().
	}

	
	public function call_plugin_api( $slug ) {
		include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' );
		$call_api = get_transient( 'spiko_cust_notify_plugin_info_' . $slug );
		if ( false === $call_api ) {
			$call_api = plugins_api(
				'plugin_information', array(
					'slug'   => $slug,
					'fields' => array(
						'downloaded'        => false,
						'rating'            => false,
						'description'       => false,
						'short_description' => true,
						'donate_link'       => false,
						'tags'              => false,
						'sections'          => false,
						'homepage'          => false,
						'added'             => false,
						'last_updated'      => false,
						'compatibility'     => false,
						'tested'            => false,
						'requires'          => false,
						'downloadlink'      => false,
						'icons'             => false,
					),
				)
			);
			set_transient( 'spiko_cust_notify_plugin_info_' . $slug, $call_api, 30 * MINUTE_IN_SECONDS );
		}

		return $call_api;
	}

	
	public function json() {
		$json = parent::json();
		global $spiko_customizer_notify_recommended_actions;
		global $spiko_customizer_notify_recommended_plugins;

		global $install_button_label;
		global $activate_button_label;
		global $deactivate_button_label;

		$formatted_array                               = array();
		$spiko_customizer_notify_show_recommended_actions = get_option( 'spiko_customizer_notify_show' );
		foreach ( $spiko_customizer_notify_recommended_actions as $key => $spiko_lite_customizer_notify_recommended_action ) {
			if ( $spiko_customizer_notify_show_recommended_actions[ $spiko_lite_customizer_notify_recommended_action['id'] ] === false ) {
				continue;
			}
			if ( $spiko_lite_customizer_notify_recommended_action['check'] ) {
				continue;
			}

			$spiko_lite_customizer_notify_recommended_action['index'] = $key + 1;

			if ( isset( $spiko_lite_customizer_notify_recommended_action['plugin_slug'] ) ) {
				$active = $this->check_active( $spiko_customizer_notify_recommended_action['plugin_slug'] );
				$spiko_lite_customizer_notify_recommended_action['url'] = $this->create_action_link( $active['needs'], $spiko_lite_customizer_notify_recommended_action['plugin_slug'] );
				if ( $active['needs'] !== 'install' && $active['status'] ) {
					$spiko_lite_customizer_notify_recommended_action['class'] = 'active';
				} else {
					$spiko_lite_customizer_notify_recommended_action['class'] = '';
				}

				switch ( $active['needs'] ) {
					case 'install':
						$spiko_lite_customizer_notify_recommended_action['button_class'] = 'install-now button';
						$spiko_lite_customizer_notify_recommended_action['button_label'] = $install_button_label;
						break;
					case 'activate':
						$spiko_lite_customizer_notify_recommended_action['button_class'] = 'activate-now button button-primary';
						$spiko_lite_customizer_notify_recommended_action['button_label'] = $activate_button_label;
						break;
					case 'deactivate':
						$spiko_lite_customizer_notify_recommended_action['button_class'] = 'deactivate-now button';
						$spiko_lite_customizer_notify_recommended_action['button_label'] = $deactivate_button_label;
						break;
				}
			}
			$formatted_array[] = $spiko_lite_customizer_notify_recommended_action;
		}// End foreach().

		$customize_plugins = array();

		$spiko_lite_customizer_notify_show_recommended_plugins = get_option( 'spiko_customizer_notify_show_recommended_plugins' );

		foreach ( $spiko_customizer_notify_recommended_plugins as $slug => $plugin_opt ) {

			if ( ! $plugin_opt['recommended'] ) {
				continue;
			}

			if ( isset( $spiko_lite_customizer_notify_show_recommended_plugins[ $slug ] ) && $spiko_lite_customizer_notify_show_recommended_plugins[ $slug ] ) {
				continue;
			}

			$active = $this->check_active( $slug );

			if ( ! empty( $active['needs'] ) && ( $active['needs'] == 'deactivate' ) ) {
				continue;
			}

			$ti_customizer_notify_recommended_plugin['url'] = $this->create_action_link( $active['needs'], $slug );
			if ( $active['needs'] !== 'install' && $active['status'] ) {
				$ti_customizer_notify_recommended_plugin['class'] = 'active';
			} else {
				$ti_customizer_notify_recommended_plugin['class'] = '';
			}

			switch ( $active['needs'] ) {
				case 'install':
					$ti_customizer_notify_recommended_plugin['button_class'] = 'install-now button';
					$ti_customizer_notify_recommended_plugin['button_label'] = $install_button_label;
					break;
				case 'activate':
					$ti_customizer_notify_recommended_plugin['button_class'] = 'activate-now button button-primary';
					$ti_customizer_notify_recommended_plugin['button_label'] = $activate_button_label;
					break;
				case 'deactivate':
					$ti_customizer_notify_recommended_plugin['button_class'] = 'deactivate-now button';
					$ti_customizer_notify_recommended_plugin['button_label'] = $deactivate_button_label;
					break;
			}
			$info = $this->call_plugin_api( $slug );
			$ti_customizer_notify_recommended_plugin['id']          = $slug;
			$ti_customizer_notify_recommended_plugin['plugin_slug'] = $slug;

			if ( ! empty( $plugin_opt['description'] ) ) {
				$ti_customizer_notify_recommended_plugin['description'] = $plugin_opt['description'];
			} else {
				$ti_customizer_notify_recommended_plugin['description'] = $info->short_description;
			}

			$ti_customizer_notify_recommended_plugin['title'] = $info->name;

			$customize_plugins[] = $ti_customizer_notify_recommended_plugin;

		}// End foreach().

		$json['recommended_actions'] = $formatted_array;
		$json['recommended_plugins'] = $customize_plugins;
		$json['total_actions']       = count( $spiko_customizer_notify_recommended_actions );
		$json['plugin_text']         = $this->plugin_text;
		$json['dismiss_button']      = $this->dismiss_button;
		return $json;

	}
	
	protected function render_template() {
	?>
		<# if( data.recommended_actions.length > 0 || data.recommended_plugins.length > 0 ){ #>
			<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }} cannot-expand">

				<h3 class="accordion-section-title">
					<span class="section-title" data-plugin_text="{{ data.plugin_text }}">
						<# if( data.recommended_actions.length > 0 ){ #>
							{{ data.title }}
						<# }else{ #>
							<# if( data.recommended_plugins.length > 0 ){ #>
								{{ data.plugin_text }}
							<# }#>
						<# } #>
					</span>
					<# if( data.recommended_actions.length > 0 ){ #>
						<span class="spiko-customizer-plugin-notify-actions-count">
							<span class="current-index">{{ data.recommended_actions[0].index }}</span>
							{{ data.total_actions }}
						</span>
					<# } #>
				</h3>
				<div class="spiko-theme-recomended-actions_container" id="plugin-filter">
					<# if( data.recommended_actions.length > 0 ){ #>
						<# for (action in data.recommended_actions) { #>
							<div class="spiko-recommeded-actions-container epsilon-required-actions" data-index="{{ data.recommended_actions[action].index }}">
								<# if( !data.recommended_actions[action].check ){ #>
									<div class="spiko-epsilon-recommeded-actions">
										<p class="title">{{ data.recommended_actions[action].title }}</p>
										<span data-action="dismiss" class="dashicons dashicons-no spiko-customizer-notify-dismiss-recommended-action" id="{{ data.recommended_actions[action].id }}"></span>
										<div class="description">{{{ data.recommended_actions[action].description }}}</div>
										<# if( data.recommended_actions[action].plugin_slug ){ #>
											<div class="custom-action">
												<p class="plugin-card-{{ data.recommended_actions[action].plugin_slug }} action_button {{ data.recommended_actions[action].class }}">
													<a data-slug="{{ data.recommended_actions[action].plugin_slug }}" class="{{ data.recommended_actions[action].button_class }}" href="{{ data.recommended_actions[action].url }}">{{ data.recommended_actions[action].button_label }}</a>
												</p>
											</div>
										<# } #>
										<# if( data.recommended_actions[action].help ){ #>
											<div class="custom-action">{{{ data.recommended_actions[action].help }}}</div>
										<# } #>
									</div>
								<# } #>
							</div>
						<# } #>
					<# } #>

					<# if( data.recommended_plugins.length > 0 ){ #>
						<# for (action in data.recommended_plugins) { #>
							<div class="spiko-recommeded-actions-container epsilon-recommended-plugins" data-index="{{ data.recommended_plugins[action].index }}">
								<# if( !data.recommended_plugins[action].check ){ #>
									<div class="spiko-epsilon-recommeded-actions">
                                                                                    <?php if (!is_rtl()) { ?>
                                                                                        <p class="title">{{ data.recommended_plugins[action].title }}</p>
                                                                                        <span data-action="dismiss" class="dashicons dashicons-no spiko-customizer-notify-dismiss-button-recommended-plugin" id="{{ data.recommended_plugins[action].id }}"></span>
                                                                                    <?php } else {
                                                                                        ?>
                                                                                        <span data-action="dismiss" class="dashicons dashicons-no spiko-customizer-notify-dismiss-button-recommended-plugin" id="{{ data.recommended_plugins[action].id }}"></span>
                                                                                        <p class="title">{{ data.recommended_plugins[action].title }}</p>
                                                                                    <?php } ?>
										<div class="description">{{{ data.recommended_plugins[action].description }}}</div>
										<# if( data.recommended_plugins[action].plugin_slug ){ #>
											<div class="custom-action">
												<p class="plugin-card-{{ data.recommended_plugins[action].plugin_slug }} action_button {{ data.recommended_plugins[action].class }}">
													<a data-slug="{{ data.recommended_plugins[action].plugin_slug }}" class="{{ data.recommended_plugins[action].button_class }}" href="{{ data.recommended_plugins[action].url }}">{{ data.recommended_plugins[action].button_label }}</a>
												</p>
											</div>
										<# } #>
										<# if( data.recommended_plugins[action].help ){ #>
											<div class="custom-action">{{{ data.recommended_plugins[action].help }}}</div>
										<# } #>
									</div>
								<# } #>
							</div>
						<# } #>
					<# } #>
				</div>
			</li>
		<# } #>
	<?php
	}
}PK�uKX�l|�::7spiko/inc/customizer-notify/spiko-customizer-notify.php<?php

class Spiko_Customizer_Notify {

	private $recommended_actions;

	
	private $recommended_plugins;

	
	private static $instance;

	
	private $recommended_actions_title;

	
	private $recommended_plugins_title;

	
	private $dismiss_button;

	
	private $install_button_label;

	
	private $activate_button_label;

	
	private $deactivate_button_label;

	
	public static function init( $config ) {
		if ( ! isset( self::$instance ) && ! ( self::$instance instanceof spiko_Customizer_Notify ) ) {
			self::$instance = new spiko_Customizer_Notify;
			if ( ! empty( $config ) && is_array( $config ) ) {
				self::$instance->config = $config;
				self::$instance->setup_config();
				self::$instance->setup_actions();
			}
		}

	}

	public function setup_config() {

		global $spiko_customizer_notify_recommended_plugins;
		global $spiko_customizer_notify_recommended_actions;

		global $install_button_label;
		global $activate_button_label;
		global $deactivate_button_label;

		$this->recommended_actions = isset( $this->config['recommended_actions'] ) ? $this->config['recommended_actions'] : array();
		$this->recommended_plugins = isset( $this->config['recommended_plugins'] ) ? $this->config['recommended_plugins'] : array();

		$this->recommended_actions_title = isset( $this->config['recommended_actions_title'] ) ? $this->config['recommended_actions_title'] : '';
		$this->recommended_plugins_title = isset( $this->config['recommended_plugins_title'] ) ? $this->config['recommended_plugins_title'] : '';
		$this->dismiss_button            = isset( $this->config['dismiss_button'] ) ? $this->config['dismiss_button'] : '';

		$spiko_customizer_notify_recommended_plugins = array();
		$spiko_customizer_notify_recommended_actions = array();

		if ( isset( $this->recommended_plugins ) ) {
			$spiko_customizer_notify_recommended_plugins = $this->recommended_plugins;
		}

		if ( isset( $this->recommended_actions ) ) {
			$spiko_customizer_notify_recommended_actions = $this->recommended_actions;
		}

		$install_button_label    = isset( $this->config['install_button_label'] ) ? $this->config['install_button_label'] : '';
		$activate_button_label   = isset( $this->config['activate_button_label'] ) ? $this->config['activate_button_label'] : '';
		$deactivate_button_label = isset( $this->config['deactivate_button_label'] ) ? $this->config['deactivate_button_label'] : '';

	}

	public function setup_actions() {

		// Register the section
		add_action( 'customize_register', array( $this, 'plugin_notification_customize_register' ) );

		// Enqueue scripts and styles
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'customizer_notify_scripts_for_customizer' ), 0 );

		/* ajax callback for dismissable recommended actions */
		add_action( 'wp_ajax_quality_customizer_notify_dismiss_action', array( $this, 'customizer_notify_dismiss_recommended_action_callback' ) );

		add_action( 'wp_ajax_ti_customizer_notify_dismiss_recommended_plugins', array( $this, 'customizer_notify_dismiss_recommended_plugins_callback' ) );

	}

	
	public function customizer_notify_scripts_for_customizer() {

		wp_enqueue_style( 'spiko-customizer-notify-css', SPIKO_TEMPLATE_DIR_URI . '/inc/customizer-notify/css/spiko-customizer-notify.css', array());
                wp_style_add_data( 'spiko-customizer-notify-css', 'rtl', 'replace' );
		wp_enqueue_style( 'plugin-install' );
		wp_enqueue_script( 'plugin-install' );
		wp_add_inline_script( 'plugin-install', 'var pagenow = "customizer";' );

		wp_enqueue_script( 'updates' );

		wp_enqueue_script( 'spiko-customizer-notify-js', SPIKO_TEMPLATE_DIR_URI . '/inc/customizer-notify/js/spiko-customizer-notify.js', array( 'customize-controls' ));
		wp_localize_script(
			'spiko-customizer-notify-js', 'softwareCustomizercompanionObject', array(
				'ajaxurl'            => esc_url(admin_url( 'admin-ajax.php' )),
				'template_directory' => SPIKO_TEMPLATE_DIR_URI,
				'base_path'          => esc_url(admin_url()),
				'activating_string'  => esc_html__( 'Activating', 'spiko'  ),
			)
		);

	}

	
	public function plugin_notification_customize_register( $wp_customize ) {

		
		require_once SPIKO_TEMPLATE_DIR . '/inc/customizer-notify/spiko-customizer-notify-section.php';

		$wp_customize->register_section_type( 'spiko_Customizer_Notify_Section' );

		$wp_customize->add_section(
			new spiko_Customizer_Notify_Section(
				$wp_customize,
				'spiko-customizer-notify-section',
				array(
					'title'          => $this->recommended_actions_title,
					'plugin_text'    => $this->recommended_plugins_title,
					'dismiss_button' => $this->dismiss_button,
					'priority'       => 0,
				)
			)
		);

	}

	
	public function customizer_notify_dismiss_recommended_action_callback() {

		global $spiko_customizer_notify_recommended_actions;

		$action_id = ( isset( $_GET['id'] ) ) ? $_GET['id'] : 0;

		echo esc_html( $action_id );  

		if ( ! empty( $action_id ) ) {

			
			if ( get_option( 'spiko_customizer_notify_show' ) ) {

				$spiko_customizer_notify_show_recommended_actions = get_option( 'spiko_customizer_notify_show' );
				switch ( $_GET['todo'] ) {
					case 'add':
						$spiko_customizer_notify_show_recommended_actions[ $action_id ] = true;
						break;
					case 'dismiss':
						$spiko_customizer_notify_show_recommended_actions[ $action_id ] = false;
						break;
				}
				update_option( 'spiko_customizer_notify_show', $spiko_customizer_notify_show_recommended_actions );

				
			} else {
				$spiko_customizer_notify_show_recommended_actions_new = array();
				if ( ! empty( $spiko_customizer_notify_recommended_actions ) ) {
					foreach ( $spiko_customizer_notify_recommended_actions as $spiko_lite_customizer_notify_recommended_action ) {
						if ( $spiko_lite_customizer_notify_recommended_action['id'] == $action_id ) {
							$spiko_customizer_notify_show_recommended_actions_new[ $spiko_lite_customizer_notify_recommended_action['id'] ] = false;
						} else {
							$spiko_customizer_notify_show_recommended_actions_new[ $spiko_lite_customizer_notify_recommended_action['id'] ] = true;
						}
					}
					update_option( 'spiko_customizer_notify_show', $spiko_customizer_notify_show_recommended_actions_new );
				}
			}
		}
		die(); 
	}

	
	public function customizer_notify_dismiss_recommended_plugins_callback() {

		$action_id = ( isset( $_GET['id'] ) ) ? $_GET['id'] : 0;

		echo esc_html( $action_id );  

		if ( ! empty( $action_id ) ) {

			$spiko_lite_customizer_notify_show_recommended_plugins = get_option( 'spiko_customizer_notify_show_recommended_plugins' );

			switch ( $_GET['todo'] ) {
				case 'add':
					$spiko_lite_customizer_notify_show_recommended_plugins[ $action_id ] = false;
					break;
				case 'dismiss':
					$spiko_lite_customizer_notify_show_recommended_plugins[ $action_id ] = true;
					break;
			}
			update_option( 'spiko_customizer_notify_show_recommended_plugins', $spiko_lite_customizer_notify_show_recommended_plugins );
		}
		die(); 
	}

}PK�uKX���XX?spiko/inc/customizer-notify/css/spiko-customizer-notify-rtl.css.spiko-customizer-plugin-notify-actions-count {
	display: inline-block;
	z-index: 26;
	margin: 1px 2px 0 0;
	padding: 0 6px;
	border-radius: 10px;
	color: #fff;
	background-color: #d54e21;
	font-size: 9px;
	font-weight: 600;
	line-height: 17px;
	vertical-align: top;
}

div.spiko-theme-recomended-actions_container {
	margin-bottom: 2em;
	padding: 0 10px;
}

.spiko-theme-recomended-actions_container p.succes {
	margin: 1em 0;
}

.spiko-epsilon-recommeded-actions p.title {
	margin-bottom: 0;
	color: #555d66;
	font-size: 14px;
	font-weight: 600;
}

.spiko-epsilon-recommeded-actions div.description {
	font-size: 12px;
}

.spiko-epsilon-recommeded-actions .custom-action {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px solid #fafafa;
}

.spiko-epsilon-recommeded-actions .custom-action p {
	margin-top: 0;
}

.spiko-theme-recomended-actions_container .spiko-recommeded-actions-container:not(:first-child) {
	overflow: hidden;
	height: 0;
	opacity: 0;
}

.spiko-theme-recomended-actions_container .spiko-recommeded-actions-container:first-child {
	height: auto;
	opacity: 1;
}

.spiko-theme-recomended-actions_container .spiko-recommeded-actions-container {
	-webkit-transition: opacity 2s;
	/* Safari */
	transition: opacity 2s;
}

.spiko-theme-recomended-actions_container .hide {
	display: none;
}

.spiko-customizer-plugin-notify-actions-count.complete {
	background-color: #79ba49;
}

.spiko-theme-recomended-actions_container #demo_content .button {
	display: block;
	margin-bottom: 1em;
	text-align: center;
}

.spiko-theme-recomended-actions_container .succes a {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.spiko-theme-recomended-actions_container .succes a.social {
	width: 49%;
	margin-bottom: 1em;
	padding-top: 4px;
	line-height: 20px;
}

.spiko-theme-recomended-actions_container .succes a.social span,
.spiko-theme-recomended-actions_container .succes  span {
	margin-left: 5px;
}

.spiko-theme-recomended-actions_container .succes {
	padding-top: 4px;
	line-height: 20px;
}

.spiko-customizer-notify-dismiss-button-recommended-plugin,
.spiko-customizer-notify-dismiss-recommended-action {
	position: absolute;
	top: 10px;
	left: 10px;
	border-radius: 50%;
	color: #d54e21;
	text-decoration: none;
	cursor: pointer;
}

.spiko-epsilon-recommeded-actions {
	position: relative;
}

.spiko-customizer-notify-dismiss-recommended-action,
.spiko-epsilon-recommeded-actions .spiko-customizer-notify-dismiss-button-recommended-plugin {
	top: 0;
	left: 0;
}

.spiko-epsilon-recommeded-actions #temp_load {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;

	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.spiko-epsilon-recommeded-actions #temp_load img {
	margin: 0 auto;
}

/*Customizer Spice Box install/activate/ icon rotate clockwise*/
@keyframes spiko_rotate {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
.button.updating-message:before {
    animation: spiko_rotate 2s infinite linear !important;
}PK�uKX��;;;spiko/inc/customizer-notify/css/spiko-customizer-notify.css.spiko-customizer-plugin-notify-actions-count {
	display: inline-block;
	z-index: 26;
	margin: 1px 0 0 2px;
	padding: 0 6px;
	border-radius: 10px;
	color: #fff;
	background-color: #d54e21;
	font-size: 9px;
	font-weight: 600;
	line-height: 17px;
	vertical-align: top;
}

div.spiko-theme-recomended-actions_container {
	margin-bottom: 2em;
	padding: 0 10px;
}

.spiko-theme-recomended-actions_container p.succes {
	margin: 1em 0;
}

.spiko-epsilon-recommeded-actions p.title {
	margin-bottom: 0;
	color: #555d66;
	font-size: 14px;
	font-weight: 600;
}

.spiko-epsilon-recommeded-actions div.description {
	font-size: 12px;
}

.spiko-epsilon-recommeded-actions .custom-action {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px solid #fafafa;
}

.spiko-epsilon-recommeded-actions .custom-action p {
	margin-top: 0;
}

.spiko-theme-recomended-actions_container .spiko-recommeded-actions-container:not(:first-child) {
	overflow: hidden;
	height: 0;
	opacity: 0;
}

.spiko-theme-recomended-actions_container .spiko-recommeded-actions-container:first-child {
	height: auto;
	opacity: 1;
}

.spiko-theme-recomended-actions_container .spiko-recommeded-actions-container {
	-webkit-transition: opacity 2s;
	/* Safari */
	transition: opacity 2s;
}

.spiko-theme-recomended-actions_container .hide {
	display: none;
}

.spiko-customizer-plugin-notify-actions-count.complete {
	background-color: #79ba49;
}

.spiko-theme-recomended-actions_container #demo_content .button {
	display: block;
	margin-bottom: 1em;
	text-align: center;
}

.spiko-theme-recomended-actions_container .succes a {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.spiko-theme-recomended-actions_container .succes a.social {
	width: 49%;
	margin-bottom: 1em;
	padding-top: 4px;
	line-height: 20px;
}

.spiko-theme-recomended-actions_container .succes a.social span,
.spiko-theme-recomended-actions_container .succes  span {
	margin-right: 5px;
}

.spiko-theme-recomended-actions_container .succes {
	padding-top: 4px;
	line-height: 20px;
}

.spiko-customizer-notify-dismiss-button-recommended-plugin,
.spiko-customizer-notify-dismiss-recommended-action {
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 50%;
	color: #d54e21;
	text-decoration: none;
	cursor: pointer;
}

.spiko-epsilon-recommeded-actions {
	position: relative;
}

.spiko-customizer-notify-dismiss-recommended-action,
.spiko-epsilon-recommeded-actions .spiko-customizer-notify-dismiss-button-recommended-plugin {
	top: 0;
	right: 0;
}

.spiko-epsilon-recommeded-actions #temp_load {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.spiko-epsilon-recommeded-actions #temp_load img {
	margin: 0 auto;
}PK�uKX�Ÿ���9spiko/inc/customizer-notify/js/spiko-customizer-notify.js/**
 * Customizer notification system
 */


(function (api) {

	api.sectionConstructor['spiko-customizer-notify-section'] = api.Section.extend(
		{

			// No events for this type of section.
			attachEvents: function () {
			},

			// Always make the section active.
			isContextuallyActive: function () {
				return true;
			}
		}
	);

})( wp.customize );

					jQuery( document ).ready(
						function () {

							jQuery( '.spiko-customizer-notify-dismiss-recommended-action' ).click(
								function () {

									var id = jQuery( this ).attr( 'id' ),
									action = jQuery( this ).attr( 'data-action' );
									jQuery.ajax(
										{
											type: 'GET',
											data: {action: 'spiko_customizer_notify_dismiss_action', id: id, todo: action},
											dataType: 'html',
											url: softwareCustomizercompanionObject.ajaxurl,
											beforeSend: function () {
												jQuery( '#' + id ).parent().append( '<div id="temp_load" style="text-align:center"><img src="' + softwareCustomizercompanionObject.base_path + '/images/spinner-2x.gif" /></div>' );
											},
											success: function (data) {
												var container          = jQuery( '#' + data ).parent().parent();
												var index              = container.next().data( 'index' );
												var recommended_sction = jQuery( '#accordion-section-ti_customizer_notify_recomended_actions' );
												var actions_count      = recommended_sction.find( '.spiko-customizer-plugin-notify-actions-count' );
												var section_title      = recommended_sction.find( '.section-title' );
												jQuery( '.spiko-customizer-plugin-notify-actions-count .current-index' ).text( index );
												container.slideToggle().remove();
												if (jQuery( '.spiko-theme-recomended-actions_container > .epsilon-recommended-actions' ).length === 0) {

													actions_count.remove();

													if (jQuery( '.spiko-theme-recomended-actions_container > .epsilon-recommended-plugins' ).length === 0) {
														jQuery( '.control-section-ti-customizer-notify-recomended-actions' ).remove();
													} else {
														section_title.text( section_title.data( 'plugin_text' ) );
													}

												}
											},
											error: function (jqXHR, textStatus, errorThrown) {
												console.log( jqXHR + ' :: ' + textStatus + ' :: ' + errorThrown );
											}
										}
									);
								}
							);

										jQuery( '.spiko-customizer-notify-dismiss-button-recommended-plugin' ).click(
											function () {
												var id = jQuery( this ).attr( 'id' ),
												action = jQuery( this ).attr( 'data-action' );
												jQuery.ajax(
													{
														type: 'GET',
														data: {action: 'ti_customizer_notify_dismiss_recommended_plugins', id: id, todo: action},
														dataType: 'html',
														url: softwareCustomizercompanionObject.ajaxurl,
														beforeSend: function () {
															jQuery( '#' + id ).parent().append( '<div id="temp_load" style="text-align:center"><img src="' + softwareCustomizercompanionObject.base_path + '/images/spinner-2x.gif" /></div>' );
														},
														success: function (data) {
															var container = jQuery( '#' + data ).parent().parent();
															var index     = container.next().data( 'index' );
															jQuery( '.spiko-customizer-plugin-notify-actions-count .current-index' ).text( index );
															container.slideToggle().remove();

															if (jQuery( '.spiko-theme-recomended-actions_container > .epsilon-recommended-plugins' ).length === 0) {
																jQuery( '.control-section-ti-customizer-notify-recomended-section' ).remove();
															}
														},
														error: function (jqXHR, textStatus, errorThrown) {
															console.log( jqXHR + ' :: ' + textStatus + ' :: ' + errorThrown );
														}
													}
												);
											}
										);

										// Remove activate button and replace with activation in progress button.
										jQuery( document ).on(
											'DOMNodeInserted','.activate-now', function () {
												var activateButton = jQuery( '.activate-now' );
												if (activateButton.length) {
													var url = jQuery( activateButton ).attr( 'href' );
													if (typeof url !== 'undefined') {
														// Request plugin activation.
														jQuery.ajax(
															{
																beforeSend: function () {
																	jQuery( activateButton ).replaceWith( '<a class="button updating-message">' + softwareCustomizercompanionObject.activating_string + '...</a>' );
																},
																async: true,
																type: 'GET',
																url: url,
																success: function () {
																	// Reload the page.
																	location.reload();
																}
															}
														);
													}
												}
											}
										);
						}
					);
					
					
					
/**
 * Remove activate button and replace with activation in progress button.
 *
 * @package spiko
 */


jQuery( document ).ready(
	function ($) {
		$( 'body' ).on(
			'click', ' .spiko-install-plugin ', function () {
				var slug = $( this ).attr( 'data-slug' );

				wp.updates.installPlugin(
					{
						slug: slug
					}
				);
				return false;
			}
		);

		$( '.activate-now' ).on(
			'click', function (e) {
				
				var activateButton = $( this );
				e.preventDefault();
				if ($( activateButton ).length) {
					var url = $( activateButton ).attr( 'href' );

					if (typeof url !== 'undefined') {
						// Request plugin activation.
						$.ajax(
							{
								beforeSend: function () {
									$( activateButton ).replaceWith( '<a class="button updating-message">'+"activating"+'...</a>' );
								},
								async: true,
								type: 'GET',
								url: url,
								success: function () {
									// Reload the page.
									location.reload();
								}
							}
						);
					}
				}
			}
		);
	}
);PK�uKX�d/B��spiko/inc/font/font.php<?php

/*--------------------------------------------------------------------*/
/*     Register Google Fonts
/*--------------------------------------------------------------------*/
//Load font from google api.
/* Typography Fonts */
/* Typography Fonts */
if (!function_exists('spiko_typo_fonts')) {

    function spiko_typo_fonts() {
        return array('ABeeZee' => 'ABeeZee', 'Abel' => 'Abel', 'Abril Fatface' => 'Abril Fatface', 'Aclonica' => 'Aclonica', 'Acme' => 'Acme', 'Actor' => 'Actor', 'Adamina' => 'Adamina', 'Advent Pro' => 'Advent Pro', 'Aguafina Script' => 'Aguafina Script', 'Akronim' => 'Akronim', 'Aladin' => 'Aladin', 'Aldrich' => 'Aldrich', 'Alef' => 'Alef', 'Alegreya' => 'Alegreya', 'Alegreya SC' => 'Alegreya SC', 'Alegreya Sans' => 'Alegreya Sans', 'Alegreya Sans SC' => 'Alegreya Sans SC', 'Alex Brush' => 'Alex Brush', 'Alfa Slab One' => 'Alfa Slab One', 'Alice' => 'Alice', 'Alike' => 'Alike', 'Alike Angular' => 'Alike Angular', 'Allan' => 'Allan', 'Allerta' => 'Allerta', 'Allerta Stencil' => 'Allerta Stencil', 'Allura' => 'Allura', 'Almendra' => 'Almendra', 'Almendra Display' => 'Almendra Display', 'Almendra SC' => 'Almendra SC', 'Amarante' => 'Amarante', 'Amaranth' => 'Amaranth', 'Amatic SC' => 'Amatic SC', 'Amatica SC' => 'Amatica SC', 'Amethysta' => 'Amethysta', 'Amiko' => 'Amiko', 'Amiri' => 'Amiri', 'Amita' => 'Amita', 'Anaheim' => 'Anaheim', 'Andada' => 'Andada', 'Andika' => 'Andika', 'Angkor' => 'Angkor', 'Annie Use Your Telescope' => 'Annie Use Your Telescope', 'Anonymous Pro' => 'Anonymous Pro', 'Antic' => 'Antic', 'Antic Didone' => 'Antic Didone', 'Antic Slab' => 'Antic Slab', 'Anton' => 'Anton', 'Arapey' => 'Arapey', 'Arbutus' => 'Arbutus', 'Arbutus Slab' => 'Arbutus Slab', 'Architects Daughter' => 'Architects Daughter', 'Archivo Black' => 'Archivo Black', 'Archivo Narrow' => 'Archivo Narrow', 'Aref Ruqaa' => 'Aref Ruqaa', 'Arima Madurai' => 'Arima Madurai', 'Arimo' => 'Arimo', 'Arizonia' => 'Arizonia', 'Armata' => 'Armata', 'Artifika' => 'Artifika', 'Arvo' => 'Arvo', 'Arya' => 'Arya', 'Asap' => 'Asap', 'Asar' => 'Asar', 'Asset' => 'Asset', 'Assistant' => 'Assistant', 'Astloch' => 'Astloch', 'Asul' => 'Asul', 'Athiti' => 'Athiti', 'Atma' => 'Atma', 'Atomic Age' => 'Atomic Age', 'Aubrey' => 'Aubrey', 'Audiowide' => 'Audiowide', 'Autour One' => 'Autour One', 'Average' => 'Average', 'Average Sans' => 'Average Sans', 'Averia Gruesa Libre' => 'Averia Gruesa Libre', 'Averia Libre' => 'Averia Libre', 'Averia Sans Libre' => 'Averia Sans Libre', 'Averia Serif Libre' => 'Averia Serif Libre', 'Bad Script' => 'Bad Script', 'Baloo' => 'Baloo', 'Baloo Bhai' => 'Baloo Bhai', 'Baloo Da' => 'Baloo Da', 'Baloo Thambi' => 'Baloo Thambi', 'Balthazar' => 'Balthazar', 'Bangers' => 'Bangers', 'Basic' => 'Basic', 'Battambang' => 'Battambang', 'Baumans' => 'Baumans', 'Bayon' => 'Bayon', 'Belgrano' => 'Belgrano', 'Belleza' => 'Belleza', 'BenchNine' => 'BenchNine', 'Bentham' => 'Bentham', 'Berkshire Swash' => 'Berkshire Swash', 'Bevan' => 'Bevan', 'Bigelow Rules' => 'Bigelow Rules', 'Bigshot One' => 'Bigshot One', 'Bilbo' => 'Bilbo', 'Bilbo Swash Caps' => 'Bilbo Swash Caps', 'BioRhyme' => 'BioRhyme', 'BioRhyme Expanded' => 'BioRhyme Expanded', 'Biryani' => 'Biryani', 'Bitter' => 'Bitter', 'Black Ops One' => 'Black Ops One', 'Bokor' => 'Bokor', 'Bonbon' => 'Bonbon', 'Boogaloo' => 'Boogaloo', 'Bowlby One' => 'Bowlby One', 'Bowlby One SC' => 'Bowlby One SC', 'Brawler' => 'Brawler', 'Bree Serif' => 'Bree Serif', 'Bubblegum Sans' => 'Bubblegum Sans', 'Bubbler One' => 'Bubbler One', 'Buda' => 'Buda', 'Buenard' => 'Buenard', 'Bungee' => 'Bungee', 'Bungee Hairline' => 'Bungee Hairline', 'Bungee Inline' => 'Bungee Inline', 'Bungee Outline' => 'Bungee Outline', 'Bungee Shade' => 'Bungee Shade', 'Butcherman' => 'Butcherman', 'Butterfly Kids' => 'Butterfly Kids', 'Cabin' => 'Cabin', 'Cabin Condensed' => 'Cabin Condensed', 'Cabin Sketch' => 'Cabin Sketch', 'Caesar Dressing' => 'Caesar Dressing', 'Cagliostro' => 'Cagliostro', 'Cairo' => 'Cairo', 'Calligraffitti' => 'Calligraffitti', 'Cambay' => 'Cambay', 'Cambo' => 'Cambo', 'Candal' => 'Candal', 'Cantarell' => 'Cantarell', 'Cantata One' => 'Cantata One', 'Cantora One' => 'Cantora One', 'Capriola' => 'Capriola', 'Cardo' => 'Cardo', 'Carme' => 'Carme', 'Carrois Gothic' => 'Carrois Gothic', 'Carrois Gothic SC' => 'Carrois Gothic SC', 'Carter One' => 'Carter One', 'Catamaran' => 'Catamaran', 'Caudex' => 'Caudex', 'Caveat' => 'Caveat', 'Caveat Brush' => 'Caveat Brush', 'Cedarville Cursive' => 'Cedarville Cursive', 'Ceviche One' => 'Ceviche One', 'Changa' => 'Changa', 'Changa One' => 'Changa One', 'Chango' => 'Chango', 'Chathura' => 'Chathura', 'Chau Philomene One' => 'Chau Philomene One', 'Chela One' => 'Chela One', 'Chelsea Market' => 'Chelsea Market', 'Chenla' => 'Chenla', 'Cherry Cream Soda' => 'Cherry Cream Soda', 'Cherry Swash' => 'Cherry Swash', 'Chewy' => 'Chewy', 'Chicle' => 'Chicle', 'Chivo' => 'Chivo', 'Chonburi' => 'Chonburi', 'Cinzel' => 'Cinzel', 'Cinzel Decorative' => 'Cinzel Decorative', 'Clicker Script' => 'Clicker Script', 'Coda' => 'Coda', 'Coda Caption' => 'Coda Caption', 'Codystar' => 'Codystar', 'Coiny' => 'Coiny', 'Combo' => 'Combo', 'Comfortaa' => 'Comfortaa', 'Coming Soon' => 'Coming Soon', 'Concert One' => 'Concert One', 'Condiment' => 'Condiment', 'Content' => 'Content', 'Contrail One' => 'Contrail One', 'Convergence' => 'Convergence', 'Cookie' => 'Cookie', 'Copse' => 'Copse', 'Corben' => 'Corben', 'Cormorant' => 'Cormorant', 'Cormorant Garamond' => 'Cormorant Garamond', 'Cormorant Infant' => 'Cormorant Infant', 'Cormorant SC' => 'Cormorant SC', 'Cormorant Unicase' => 'Cormorant Unicase', 'Cormorant Upright' => 'Cormorant Upright', 'Courgette' => 'Courgette', 'Cousine' => 'Cousine', 'Coustard' => 'Coustard', 'Covered By Your Grace' => 'Covered By Your Grace', 'Crafty Girls' => 'Crafty Girls', 'Creepster' => 'Creepster', 'Crete Round' => 'Crete Round', 'Crimson Text' => 'Crimson Text', 'Croissant One' => 'Croissant One', 'Crushed' => 'Crushed', 'Cuprum' => 'Cuprum', 'Cutive' => 'Cutive', 'Cutive Mono' => 'Cutive Mono', 'Damion' => 'Damion', 'Dancing Script' => 'Dancing Script', 'Dangrek' => 'Dangrek', 'David Libre' => 'David Libre', 'Dawning of a New Day' => 'Dawning of a New Day', 'Days One' => 'Days One', 'Dekko' => 'Dekko', 'Delius' => 'Delius', 'Delius Swash Caps' => 'Delius Swash Caps', 'Delius Unicase' => 'Delius Unicase', 'Della Respira' => 'Della Respira', 'Denk One' => 'Denk One', 'Devonshire' => 'Devonshire', 'Dhurjati' => 'Dhurjati', 'Didact Gothic' => 'Didact Gothic', 'Diplomata' => 'Diplomata', 'Diplomata SC' => 'Diplomata SC', 'Domine' => 'Domine', 'Donegal One' => 'Donegal One', 'Doppio One' => 'Doppio One', 'Dorsa' => 'Dorsa', 'Dosis' => 'Dosis', 'Dr Sugiyama' => 'Dr Sugiyama', 'Droid Sans' => 'Droid Sans', 'Droid Sans Mono' => 'Droid Sans Mono', 'Droid Serif' => 'Droid Serif', 'Duru Sans' => 'Duru Sans', 'Dynalight' => 'Dynalight', 'EB Garamond' => 'EB Garamond', 'Eagle Lake' => 'Eagle Lake', 'Eater' => 'Eater', 'Economica' => 'Economica', 'Eczar' => 'Eczar', 'Ek Mukta' => 'Ek Mukta', 'El Messiri' => 'El Messiri', 'Electrolize' => 'Electrolize', 'Elsie' => 'Elsie', 'Elsie Swash Caps' => 'Elsie Swash Caps', 'Emblema One' => 'Emblema One', 'Emilys Candy' => 'Emilys Candy', 'Engagement' => 'Engagement', 'Englebert' => 'Englebert', 'Enriqueta' => 'Enriqueta', 'Erica One' => 'Erica One', 'Esteban' => 'Esteban', 'Euphoria Script' => 'Euphoria Script', 'Ewert' => 'Ewert', 'Exo' => 'Exo', 'Exo 2' => 'Exo 2', 'Expletus Sans' => 'Expletus Sans', 'Fanwood Text' => 'Fanwood Text', 'Farsan' => 'Farsan', 'Fascinate' => 'Fascinate', 'Fascinate Inline' => 'Fascinate Inline', 'Faster One' => 'Faster One', 'Fasthand' => 'Fasthand', 'Fauna One' => 'Fauna One', 'Federant' => 'Federant', 'Federo' => 'Federo', 'Felipa' => 'Felipa', 'Fenix' => 'Fenix', 'Finger Paint' => 'Finger Paint', 'Fira Mono' => 'Fira Mono', 'Fira Sans' => 'Fira Sans', 'Fjalla One' => 'Fjalla One', 'Fjord One' => 'Fjord One', 'Flamenco' => 'Flamenco', 'Flavors' => 'Flavors', 'Fondamento' => 'Fondamento', 'Fontdiner Swanky' => 'Fontdiner Swanky', 'Forum' => 'Forum', 'Francois One' => 'Francois One', 'Frank Ruhl Libre' => 'Frank Ruhl Libre', 'Freckle Face' => 'Freckle Face', 'Fredericka the Great' => 'Fredericka the Great', 'Fredoka One' => 'Fredoka One', 'Freehand' => 'Freehand', 'Fresca' => 'Fresca', 'Frijole' => 'Frijole', 'Fruktur' => 'Fruktur', 'Fugaz One' => 'Fugaz One', 'GFS Didot' => 'GFS Didot', 'GFS Neohellenic' => 'GFS Neohellenic', 'Gabriela' => 'Gabriela', 'Gafata' => 'Gafata', 'Galada' => 'Galada', 'Galdeano' => 'Galdeano', 'Galindo' => 'Galindo', 'Gentium Basic' => 'Gentium Basic', 'Gentium Book Basic' => 'Gentium Book Basic', 'Geo' => 'Geo', 'Geostar' => 'Geostar', 'Geostar Fill' => 'Geostar Fill', 'Germania One' => 'Germania One', 'Gidugu' => 'Gidugu', 'Gilda Display' => 'Gilda Display', 'Give You Glory' => 'Give You Glory', 'Glass Antiqua' => 'Glass Antiqua', 'Glegoo' => 'Glegoo', 'Gloria Hallelujah' => 'Gloria Hallelujah', 'Goblin One' => 'Goblin One', 'Gochi Hand' => 'Gochi Hand', 'Gorditas' => 'Gorditas', 'Goudy Bookletter 1911' => 'Goudy Bookletter 1911', 'Graduate' => 'Graduate', 'Grand Hotel' => 'Grand Hotel', 'Gravitas One' => 'Gravitas One', 'Great Vibes' => 'Great Vibes', 'Griffy' => 'Griffy', 'Gruppo' => 'Gruppo', 'Gudea' => 'Gudea', 'Gurajada' => 'Gurajada', 'Habibi' => 'Habibi', 'Halant' => 'Halant', 'Hammersmith One' => 'Hammersmith One', 'Hanalei' => 'Hanalei', 'Hanalei Fill' => 'Hanalei Fill', 'Handlee' => 'Handlee', 'Hanuman' => 'Hanuman', 'Happy Monkey' => 'Happy Monkey', 'Harmattan' => 'Harmattan', 'Headland One' => 'Headland One', 'Heebo' => 'Heebo', 'Henny Penny' => 'Henny Penny', 'Herr Von Muellerhoff' => 'Herr Von Muellerhoff', 'Hind' => 'Hind', 'Hind Guntur' => 'Hind Guntur', 'Hind Madurai' => 'Hind Madurai', 'Hind Siliguri' => 'Hind Siliguri', 'Hind Vadodara' => 'Hind Vadodara', 'Holtwood One SC' => 'Holtwood One SC', 'Homemade Apple' => 'Homemade Apple', 'Homenaje' => 'Homenaje', 'IM Fell DW Pica' => 'IM Fell DW Pica', 'IM Fell DW Pica SC' => 'IM Fell DW Pica SC', 'IM Fell Double Pica' => 'IM Fell Double Pica', 'IM Fell Double Pica SC' => 'IM Fell Double Pica SC', 'IM Fell English' => 'IM Fell English', 'IM Fell English SC' => 'IM Fell English SC', 'IM Fell French Canon' => 'IM Fell French Canon', 'IM Fell French Canon SC' => 'IM Fell French Canon SC', 'IM Fell Great Primer' => 'IM Fell Great Primer', 'IM Fell Great Primer SC' => 'IM Fell Great Primer SC', 'Iceberg' => 'Iceberg', 'Iceland' => 'Iceland', 'Imprima' => 'Imprima', 'Inconsolata' => 'Inconsolata', 'Inder' => 'Inder', 'Indie Flower' => 'Indie Flower', 'Inika' => 'Inika', 'Inknut Antiqua' => 'Inknut Antiqua', 'Irish Grover' => 'Irish Grover', 'Istok Web' => 'Istok Web', 'Italiana' => 'Italiana', 'Italianno' => 'Italianno', 'Itim' => 'Itim', 'Jacques Francois' => 'Jacques Francois', 'Jacques Francois Shadow' => 'Jacques Francois Shadow', 'Jaldi' => 'Jaldi', 'Jim Nightshade' => 'Jim Nightshade', 'Jockey One' => 'Jockey One', 'Jolly Lodger' => 'Jolly Lodger', 'Jomhuria' => 'Jomhuria', 'Josefin Sans' => 'Josefin Sans', 'Josefin Slab' => 'Josefin Slab', 'Joti One' => 'Joti One', 'Judson' => 'Judson', 'Julee' => 'Julee', 'Julius Sans One' => 'Julius Sans One', 'Junge' => 'Junge', 'Jura' => 'Jura', 'Just Another Hand' => 'Just Another Hand', 'Just Me Again Down Here' => 'Just Me Again Down Here', 'Kadwa' => 'Kadwa', 'Kalam' => 'Kalam', 'Kameron' => 'Kameron', 'Kanit' => 'Kanit', 'Kantumruy' => 'Kantumruy', 'Karla' => 'Karla', 'Karma' => 'Karma', 'Katibeh' => 'Katibeh', 'Kaushan Script' => 'Kaushan Script', 'Kavivanar' => 'Kavivanar', 'Kavoon' => 'Kavoon', 'Kdam Thmor' => 'Kdam Thmor', 'Keania One' => 'Keania One', 'Kelly Slab' => 'Kelly Slab', 'Kenia' => 'Kenia', 'Khand' => 'Khand', 'Khmer' => 'Khmer', 'Khula' => 'Khula', 'Kite One' => 'Kite One', 'Knewave' => 'Knewave', 'Kotta One' => 'Kotta One', 'Koulen' => 'Koulen', 'Kranky' => 'Kranky', 'Kreon' => 'Kreon', 'Kristi' => 'Kristi', 'Krona One' => 'Krona One', 'Kumar One' => 'Kumar One', 'Kumar One Outline' => 'Kumar One Outline', 'Kurale' => 'Kurale', 'La Belle Aurore' => 'La Belle Aurore', 'Laila' => 'Laila', 'Lakki Reddy' => 'Lakki Reddy', 'Lalezar' => 'Lalezar', 'Lancelot' => 'Lancelot', 'Lateef' => 'Lateef', 'Lato' => 'Lato', 'League Script' => 'League Script', 'Leckerli One' => 'Leckerli One', 'Ledger' => 'Ledger', 'Lekton' => 'Lekton', 'Lemon' => 'Lemon', 'Lemonada' => 'Lemonada', 'Libre Baskerville' => 'Libre Baskerville', 'Libre Franklin' => 'Libre Franklin', 'Life Savers' => 'Life Savers', 'Lilita One' => 'Lilita One', 'Lily Script One' => 'Lily Script One', 'Limelight' => 'Limelight', 'Linden Hill' => 'Linden Hill', 'Lobster' => 'Lobster', 'Lobster Two' => 'Lobster Two', 'Londrina Outline' => 'Londrina Outline', 'Londrina Shadow' => 'Londrina Shadow', 'Londrina Sketch' => 'Londrina Sketch', 'Londrina Solid' => 'Londrina Solid', 'Lora' => 'Lora', 'Love Ya Like A Sister' => 'Love Ya Like A Sister', 'Loved by the King' => 'Loved by the King', 'Lovers Quarrel' => 'Lovers Quarrel', 'Luckiest Guy' => 'Luckiest Guy', 'Lusitana' => 'Lusitana', 'Lustria' => 'Lustria', 'Macondo' => 'Macondo', 'Macondo Swash Caps' => 'Macondo Swash Caps', 'Mada' => 'Mada', 'Magra' => 'Magra', 'Maiden Orange' => 'Maiden Orange', 'Maitree' => 'Maitree', 'Mako' => 'Mako', 'Mallanna' => 'Mallanna', 'Mandali' => 'Mandali', 'Marcellus' => 'Marcellus', 'Marcellus SC' => 'Marcellus SC', 'Marck Script' => 'Marck Script', 'Margarine' => 'Margarine', 'Marko One' => 'Marko One', 'Marmelad' => 'Marmelad', 'Martel' => 'Martel', 'Martel Sans' => 'Martel Sans', 'Marvel' => 'Marvel', 'Mate' => 'Mate', 'Mate SC' => 'Mate SC', 'Maven Pro' => 'Maven Pro', 'McLaren' => 'McLaren', 'Meddon' => 'Meddon', 'MedievalSharp' => 'MedievalSharp', 'Medula One' => 'Medula One', 'Meera Inimai' => 'Meera Inimai', 'Megrim' => 'Megrim', 'Meie Script' => 'Meie Script', 'Merienda' => 'Merienda', 'Merienda One' => 'Merienda One', 'Merriweather' => 'Merriweather', 'Merriweather Sans' => 'Merriweather Sans', 'Metal' => 'Metal', 'Metal Mania' => 'Metal Mania', 'Metamorphous', 'Metrophobic' => 'Metrophobic', 'Michroma' => 'Michroma', 'Milonga' => 'Milonga', 'Miltonian' => 'Miltonian', 'Miltonian Tattoo' => 'Miltonian Tattoo', 'Miniver' => 'Miniver', 'Miriam Libre' => 'Miriam Libre', 'Mirza' => 'Mirza', 'Miss Fajardose' => 'Miss Fajardose', 'Mitr' => 'Mitr', 'Modak' => 'Modak', 'Modern Antiqua' => 'Modern Antiqua', 'Mogra' => 'Mogra', 'Molengo' => 'Molengo', 'Molle' => 'Molle', 'Monda' => 'Monda', 'Monofett' => 'Monofett', 'Monoton' => 'Monoton', 'Monsieur La Doulaise' => 'Monsieur La Doulaise', 'Montaga' => 'Montaga', 'Montez' => 'Montez', 'Montserrat' => 'Montserrat', 'Montserrat Alternates' => 'Montserrat Alternates', 'Montserrat Subrayada' => 'Montserrat Subrayada', 'Moul' => 'Moul', 'Moulpali' => 'Moulpali', 'Mountains of Christmas' => 'Mountains of Christmas', 'Mouse Memoirs' => 'Mouse Memoirs', 'Mr Bedfort' => 'Mr Bedfort', 'Mr Dafoe' => 'Mr Dafoe', 'Mr De Haviland' => 'Mr De Haviland', 'Mrs Saint Delafield' => 'Mrs Saint Delafield', 'Mrs Sheppards' => 'Mrs Sheppards', 'Mukta Vaani' => 'Mukta Vaani', 'Muli' => 'Muli', 'Mystery Quest' => 'Mystery Quest', 'NTR' => 'NTR', 'Neucha' => 'Neucha', 'Neuton' => 'Neuton', 'New Rocker' => 'New Rocker', 'News Cycle' => 'News Cycle', 'Niconne' => 'Niconne', 'Nixie One' => 'Nixie One', 'Nobile' => 'Nobile', 'Nokora' => 'Nokora', 'Norican' => 'Norican', 'Nosifer' => 'Nosifer', 'Nothing You Could Do' => 'Nothing You Could Do', 'Noticia Text' => 'Noticia Text', 'Noto Sans' => 'Noto Sans', 'Noto Serif' => 'Noto Serif', 'Nova Cut' => 'Nova Cut', 'Nova Flat' => 'Nova Flat', 'Nova Mono' => 'Nova Mono', 'Nova Oval' => 'Nova Oval', 'Nova Round' => 'Nova Round', 'Nova Script' => 'Nova Script', 'Nova Slim' => 'Nova Slim', 'Nova Square' => 'Nova Square', 'Numans' => 'Numans', 'Nunito' => 'Nunito', 'Odor Mean Chey' => 'Odor Mean Chey', 'Offside' => 'Offside', 'Old Standard TT' => 'Old Standard TT', 'Oldenburg' => 'Oldenburg', 'Oleo Script' => 'Oleo Script', 'Oleo Script Swash Caps' => 'Oleo Script Swash Caps', 'Open Sans' => 'Open Sans', 'Open Sans Condensed' => 'Open Sans Condensed', 'Oranienbaum' => 'Oranienbaum', 'Orbitron' => 'Orbitron', 'Oregano' => 'Oregano', 'Orienta' => 'Orienta', 'Original Surfer' => 'Original Surfer', 'Oswald' => 'Oswald', 'Over the Rainbow' => 'Over the Rainbow', 'Overlock' => 'Overlock', 'Overlock SC' => 'Overlock SC', 'Ovo' => 'Ovo', 'Oxygen' => 'Oxygen', 'Oxygen Mono' => 'Oxygen Mono', 'PT Mono' => 'PT Mono', 'PT Sans' => 'PT Sans', 'PT Sans Caption' => 'PT Sans Caption', 'PT Sans Narrow' => 'PT Sans Narrow', 'PT Serif' => 'PT Serif', 'PT Serif Caption' => 'PT Serif Caption', 'Pacifico' => 'Pacifico', 'Palanquin' => 'Palanquin', 'Palanquin Dark' => 'Palanquin Dark', 'Paprika' => 'Paprika', 'Parisienne' => 'Parisienne', 'Passero One' => 'Passero One', 'Passion One' => 'Passion One', 'Pathway Gothic One' => 'Pathway Gothic One', 'Patrick Hand' => 'Patrick Hand', 'Patrick Hand SC' => 'Patrick Hand SC', 'Pattaya' => 'Pattaya', 'Patua One' => 'Patua One', 'Pavanam' => 'Pavanam', 'Paytone One' => 'Paytone One', 'Peddana' => 'Peddana', 'Peralta' => 'Peralta', 'Permanent Marker' => 'Permanent Marker', 'Petit Formal Script' => 'Petit Formal Script', 'Petrona' => 'Petrona', 'Philosopher' => 'Philosopher', 'Piedra' => 'Piedra', 'Pinyon Script' => 'Pinyon Script', 'Pirata One' => 'Pirata One', 'Plaster' => 'Plaster', 'Play' => 'Play', 'Playball' => 'Playball', 'Playfair Display' => 'Playfair Display', 'Playfair Display SC' => 'Playfair Display SC', 'Podkova' => 'Podkova', 'Poiret One' => 'Poiret One', 'Poller One' => 'Poller One', 'Poly' => 'Poly', 'Pompiere' => 'Pompiere', 'Pontano Sans' => 'Pontano Sans', 'Poppins' => 'Poppins', 'Port Lligat Sans' => 'Port Lligat Sans', 'Port Lligat Slab' => 'Port Lligat Slab', 'Pragati Narrow' => 'Pragati Narrow', 'Prata' => 'Prata', 'Preahvihear' => 'Preahvihear', 'Press Start 2P' => 'Press Start 2P', 'Pridi' => 'Pridi', 'Princess Sofia' => 'Princess Sofia', 'Prociono' => 'Prociono', 'Prompt' => 'Prompt', 'Prosto One' => 'Prosto One', 'Proza Libre' => 'Proza Libre', 'Puritan' => 'Puritan', 'Purple Purse' => 'Purple Purse', 'Quando' => 'Quando', 'Quantico' => 'Quantico', 'Quattrocento' => 'Quattrocento', 'Quattrocento Sans' => 'Quattrocento Sans', 'Questrial' => 'Questrial', 'Quicksand' => 'Quicksand', 'Quintessential' => 'Quintessential', 'Qwigley' => 'Qwigley', 'Racing Sans One' => 'Racing Sans One', 'Radley' => 'Radley', 'Rajdhani' => 'Rajdhani', 'Rakkas' => 'Rakkas', 'Raleway' => 'Raleway', 'Raleway Dots' => 'Raleway Dots', 'Ramabhadra' => 'Ramabhadra', 'Ramaraja' => 'Ramaraja', 'Rambla' => 'Rambla', 'Rammetto One' => 'Rammetto One', 'Ranchers' => 'Ranchers', 'Rancho' => 'Rancho', 'Ranga' => 'Ranga', 'Rasa' => 'Rasa', 'Rationale' => 'Rationale', 'Redressed' => 'Redressed', 'Reem Kufi' => 'Reem Kufi', 'Reenie Beanie' => 'Reenie Beanie', 'Revalia' => 'Revalia', 'Rhodium Libre' => 'Rhodium Libre', 'Ribeye' => 'Ribeye', 'Ribeye Marrow' => 'Ribeye Marrow', 'Righteous' => 'Righteous', 'Risque' => 'Risque', 'Roboto' => 'Roboto', 'Roboto Condensed' => 'Roboto Condensed', 'Roboto Mono' => 'Roboto Mono', 'Roboto Slab' => 'Roboto Slab', 'Rochester' => 'Rochester', 'Rock Salt' => 'Rock Salt', 'Rokkitt' => 'Rokkitt', 'Romanesco' => 'Romanesco', 'Ropa Sans' => 'Ropa Sans', 'Rosario' => 'Rosario', 'Rosarivo' => 'Rosarivo', 'Rouge Script' => 'Rouge Script', 'Rozha One' => 'Rozha One', 'Rubik' => 'Rubik', 'Rubik Mono One' => 'Rubik Mono One', 'Rubik One' => 'Rubik One', 'Ruda' => 'Ruda', 'Rufina' => 'Rufina', 'Ruge Boogie' => 'Ruge Boogie', 'Ruluko' => 'Ruluko', 'Rum Raisin' => 'Rum Raisin', 'Ruslan Display' => 'Ruslan Display', 'Russo One => Russo One', 'Ruthie' => 'Ruthie', 'Rye' => 'Rye', 'Sacramento' => 'Sacramento', 'Sahitya' => 'Sahitya', 'Sail' => 'Sail', 'Salsa' => 'Salsa', 'Sanchez' => 'Sanchez', 'Sancreek' => 'Sancreek', 'Sansita One' => 'Sansita One', 'Sarala' => 'Sarala', 'Sarina' => 'Sarina', 'Sarpanch' => 'Sarpanch', 'Satisfy' => 'Satisfy', 'Scada' => 'Scada', 'Scheherazade' => 'Scheherazade', 'Schoolbell' => 'Schoolbell', 'Scope One' => 'Scope One', 'Seaweed Script' => 'Seaweed Script', 'Secular One' => 'Secular One', 'Sevillana' => 'Sevillana', 'Seymour One' => 'Seymour One', 'Shadows Into Light' => 'Shadows Into Light', 'Shadows Into Light Two' => 'Shadows Into Light Two', 'Shanti' => 'Shanti', 'Share' => 'Share', 'Share Tech' => 'Share Tech', 'Share Tech Mono' => 'Share Tech Mono', 'Shojumaru' => 'Shojumaru', 'Short Stack' => 'Short Stack', 'Shrikhand' => 'Shrikhand', 'Siemreap' => 'Siemreap', 'Sigmar One' => 'Sigmar One', 'Signika' => 'Signika', 'Signika Negative' => 'Signika Negative', 'Simonetta' => 'Simonetta', 'Sintony' => 'Sintony', 'Sirin Stencil' => 'Sirin Stencil', 'Six Caps' => 'Six Caps', 'Skranji' => 'Skranji', 'Slabo 13px' => 'Slabo 13px', 'Slabo 27px' => 'Slabo 27px', 'Slackey' => 'Slackey', 'Smokum' => 'Smokum', 'Smythe' => 'Smythe', 'Sniglet' => 'Sniglet', 'Snippet' => 'Snippet', 'Snowburst One' => 'Snowburst One', 'Sofadi One' => 'Sofadi One', 'Sofia' => 'Sofia', 'Sonsie One' => 'Sonsie One', 'Sorts Mill Goudy' => 'Sorts Mill Goudy', 'Source Code Pro' => 'Source Code Pro', 'Source Sans Pro' => 'Source Sans Pro', 'Source Serif Pro' => 'Source Serif Pro', 'Space Mono' => 'Space Mono', 'Special Elite' => 'Special Elite', 'Spicy Rice' => 'Spicy Rice', 'Spinnaker' => 'Spinnaker', 'Spirax' => 'Spirax', 'Squada One' => 'Squada One', 'Sree Krushnadevaraya' => 'Sree Krushnadevaraya', 'Sriracha' => 'Sriracha', 'Stalemate' => 'Stalemate', 'Stalinist One' => 'Stalinist One', 'Stardos Stencil' => 'Stardos Stencil', 'Stint Ultra Condensed' => 'Stint Ultra Condensed', 'Stint Ultra Expanded' => 'Stint Ultra Expanded', 'Stoke' => 'Stoke', 'Strait' => 'Strait', 'Sue Ellen Francisco' => 'Sue Ellen Francisco', 'Suez One' => 'Suez One', 'Sumana' => 'Sumana', 'Sunshiney' => 'Sunshiney', 'Supermercado One' => 'Supermercado One', 'Sura' => 'Sura', 'Suranna' => 'Suranna', 'Suravaram' => 'Suravaram', 'Suwannaphum' => 'Suwannaphum', 'Swanky and Moo Moo' => 'Swanky and Moo Moo', 'Syncopate' => 'Syncopate', 'Tangerine' => 'Tangerine', 'Taprom' => 'Taprom', 'Tauri' => 'Tauri', 'Taviraj' => 'Taviraj', 'Teko' => 'Teko', 'Telex' => 'Telex', 'Tenali Ramakrishna' => 'Tenali Ramakrishna', 'Tenor Sans' => 'Tenor Sans', 'Text Me One' => 'Text Me One', 'The Girl Next Door' => 'The Girl Next Door', 'Tienne' => 'Tienne', 'Tillana' => 'Tillana', 'Timmana' => 'Timmana', 'Tinos' => 'Tinos', 'Titan One' => 'Titan One', 'Titillium Web' => 'Titillium Web', 'Trade Winds' => 'Trade Winds', 'Trirong' => 'Trirong', 'Trocchi' => 'Trocchi', 'Trochut' => 'Trochut', 'Trykker' => 'Trykker', 'Tulpen One' => 'Tulpen One', 'Ubuntu' => 'Ubuntu', 'Ubuntu Condensed' => 'Ubuntu Condensed', 'Ubuntu Mono' => 'Ubuntu Mono', 'Ultra' => 'Ultra', 'Uncial Antiqua' => 'Uncial Antiqua', 'Underdog' => 'Underdog', 'Unica One' => 'Unica One', 'UnifrakturCook' => 'UnifrakturCook', 'UnifrakturMaguntia' => 'UnifrakturMaguntia', 'Unkempt' => 'Unkempt', 'Unlock' => 'Unlock', 'Unna' => 'Unna', 'VT323' => 'VT323', 'Vampiro One' => 'Vampiro One', 'Varela' => 'Varela', 'Varela Round' => 'Varela Round', 'Vast Shadow' => 'Vast Shadow', 'Vesper Libre' => 'Vesper Libre', 'Vibur' => 'Vibur', 'Vidaloka' => 'Vidaloka', 'Viga' => 'Viga', 'Voces' => 'Voces', 'Volkhov' => 'Volkhov', 'Vollkorn' => 'Vollkorn', 'Voltaire' => 'Voltaire', 'Waiting for the Sunrise' => 'Waiting for the Sunrise', 'Wallpoet' => 'Wallpoet', 'Walter Turncoat' => 'Walter Turncoat', 'Warnes' => 'Warnes', 'Wellfleet' => 'Wellfleet', 'Wendy One' => 'Wendy One', 'Wire One' => 'Wire One', 'Work Sans' => 'Work Sans', 'Yanone Kaffeesatz' => 'Yanone Kaffeesatz', 'Yantramanav' => 'Yantramanav', 'Yatra One' => 'Yatra One', 'Yellowtail' => 'Yellowtail', 'Yeseva One' => 'Yeseva One', 'Yesteryear' => 'Yesteryear', 'Yrsa' => 'Yrsa', 'Zeyada' => 'Zeyada');
    }

}
function spiko_google_fonts_url() {
    $fonts_url = '';
    $font_families = array();
    $font_families = spiko_typo_fonts();
        $query_args = array(
            'family' => urlencode( implode( '|', $font_families ) ),
            'subset' => urlencode( 'latin,latin-ext' ),
        );
        $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' );
    return $fonts_url;
}
function spiko_google_font_scripts_styles() {
    wp_enqueue_style( 'spiko-google-fonts', spiko_google_fonts_url(), array(), null );
	wp_enqueue_style('spiko-font', 'https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i'); 
}
 if(get_theme_mod('spiko_enable_local_google_font',true) ==false){
add_action( 'wp_enqueue_scripts', 'spiko_google_font_scripts_styles');
 }


?>
<?php 
/**
* Enqueue theme fonts.
*/
 if(get_theme_mod('spiko_enable_local_google_font',true) ==true){
add_action( 'wp_enqueue_scripts', 'spiko_theme_fonts',1 );
add_action( 'enqueue_block_editor_assets', 'spiko_theme_fonts',1 );
add_action( 'customize_preview_init', 'spiko_theme_fonts', 1 );

function spiko_theme_fonts() {
    $fonts_url = spiko_get_fonts_url();
    // Load Fonts if necessary.
    if ( $fonts_url ) {
        require_once (get_theme_file_path( '/inc/font/wptt-webfont-loader.php' ));
        wp_enqueue_style( 'spiko-theme-fonts', wptt_get_webfont_url( $fonts_url ), array(), '20201110' );
    }
}
}
/**
 * Retrieve webfont URL to load fonts locally.
 */
function spiko_get_fonts_url() {
        $st_font                     = get_theme_mod('site_title_fontfamily','Poppins');
	    $tag_font                   = get_theme_mod('site_tagline_fontfamily','Open Sans');
	    $menu_font                  = get_theme_mod('menu_title_fontfamily','Work Sans');
        $submenu_font               = get_theme_mod('submenu_title_fontfamily','Open Sans');
        $banner_font                = get_theme_mod('banner_title_fontfamily','Open Sans');
        $bread_font                 = get_theme_mod('breadcrumb_title_fontfamily','Open Sans');
        $slider_title               = get_theme_mod('slider_title_fontfamily','Open Sans');
        $homepage_title             = get_theme_mod('section_title_fontfamily','Open Sans');
        $homepage_description       = get_theme_mod('section_subtitle_fontfamily','Open Sans');
        $post_title_font            = get_theme_mod('post-title_fontfamily','Open Sans');
        $side_font                  = get_theme_mod('sidebar_fontfamily','Open Sans');
        $side_content_font          = get_theme_mod('sidebar_widget_content_fontfamily','Open Sans');
        $footer_widget_font         = get_theme_mod('footer_widget_title_fontfamily','Open Sans');
        $footer_widget_content_font = get_theme_mod('footer_widget_content_fontfamily','Open Sans');
        $h1_font                    = get_theme_mod('h1_typography_fontfamily','Open Sans');
        $h2_font                    = get_theme_mod('h2_typography_fontfamily','Open Sans');
        $h3_font                    = get_theme_mod('h3_typography_fontfamily','Open Sans');
        $h4_font                    = get_theme_mod('h4_typography_fontfamily','Open Sans');
        $h5_font                    = get_theme_mod('h5_typography_fontfamily','Open Sans');
        $h6_font                    = get_theme_mod('h6_typography_fontfamily','Open Sans');
        $p_font                     = get_theme_mod('p_typography_fontfamily','Open Sans');
        $btn_font                   = get_theme_mod('button_text_typography_fontfamily','Open Sans');
		$shop_h1_font               = get_theme_mod('shop_h1_typography_fontfamily','Open Sans');
        $shop_h2_font               = get_theme_mod('shop_h2_typography_fontfamily','Open Sans');
        $shop_h3_font               = get_theme_mod('shop_h3_typography_fontfamily','Open Sans'); 
		$after_btn_fontfamily       = get_theme_mod('after_btn_fontfamily','Open Sans'); 
		$tobar_font                 = get_theme_mod('topbar_widget_title_fontfamily','Open Sans');
        $tob_content_font           = get_theme_mod('top_widget_typography_fontfamily','Open Sans') ;
		$meta_font                  = get_theme_mod('meta_fontfamily','Open Sans');
		$fbar_font                  = get_theme_mod('footer_bar_fontfamily','Open Sans');
	 
    $font_families = array(
       $st_font .':100', $st_font .':100italic', $st_font .':200', $st_font .':200italic', $st_font .':300', $st_font .':300italic', $st_font .':400', $st_font .':400italic', $st_font .':500', $st_font .':500italic', $st_font .':600', $st_font .':600italic', $st_font .':700', $st_font .':700italic', $st_font .':800', $st_font .':800italic', $st_font .':900', $st_font .':900italic',
		$tag_font .':100', $tag_font .':100italic', $tag_font .':200', $tag_font .':200italic', $tag_font .':300', $tag_font .':300italic', $tag_font .':400', $tag_font .':400italic', $tag_font .':500', $tag_font .':500italic', $tag_font .':600', $tag_font .':600italic', $tag_font .':700', $tag_font .':700italic', $tag_font .':800', $tag_font .':800italic', $tag_font .':900', $tag_font .':900italic',
		$menu_font .':100', $menu_font .':100italic', $menu_font .':200', $menu_font .':200italic', $menu_font .':300', $menu_font .':300italic', $menu_font .':400', $menu_font .':400italic', $menu_font .':500', $menu_font .':500italic', $menu_font .':600', $menu_font .':600italic', $menu_font .':700', $menu_font .':700italic', $menu_font .':800', $menu_font .':800italic', $menu_font .':900', $menu_font .':900italic',
		$submenu_font .':100', $submenu_font .':100italic', $submenu_font .':200', $submenu_font .':200italic', $submenu_font .':300', $submenu_font .':300italic', $submenu_font .':400', $submenu_font .':400italic', $submenu_font .':500', $submenu_font .':500italic', $submenu_font .':600', $submenu_font .':600italic', $submenu_font .':700', $submenu_font .':700italic', $submenu_font .':800', $submenu_font .':800italic', $submenu_font .':900', $submenu_font .':900italic',
		$banner_font .':100', $banner_font .':100italic', $banner_font .':200', $banner_font .':200italic', $banner_font .':300', $banner_font .':300italic', $banner_font .':400', $banner_font .':400italic', $banner_font .':500', $banner_font .':500italic', $banner_font .':600', $banner_font .':600italic', $banner_font .':700', $banner_font .':700italic', $banner_font .':800', $banner_font .':800italic', $banner_font .':900', $banner_font .':900italic',
		$bread_font .':100', $bread_font .':100italic', $bread_font .':200', $bread_font .':200italic', $bread_font .':300', $bread_font .':300italic', $bread_font .':400', $bread_font .':400italic', $bread_font .':500', $bread_font .':500italic', $bread_font .':600', $bread_font .':600italic', $bread_font .':700', $bread_font .':700italic', $bread_font .':800', $bread_font .':800italic', $bread_font .':900', $bread_font .':900italic',
		$slider_title .':100', $slider_title .':100italic', $slider_title .':200', $slider_title .':200italic', $slider_title .':300', $slider_title .':300italic', $slider_title .':400', $slider_title .':400italic', $slider_title .':500', $slider_title .':500italic', $slider_title .':600', $slider_title .':600italic', $slider_title .':700', $slider_title .':700italic', $slider_title .':800', $slider_title .':800italic', $slider_title .':900', $slider_title .':900italic',
        $homepage_title .':100', $homepage_title .':100italic', $homepage_title .':200', $homepage_title .':200italic', $homepage_title .':300', $homepage_title .':300italic', $homepage_title .':400', $homepage_title .':400italic', $homepage_title .':500', $homepage_title .':500italic', $homepage_title .':600', $homepage_title .':600italic', $homepage_title .':700', $homepage_title .':700italic', $homepage_title .':800', $homepage_title .':800italic', $homepage_title .':900', $homepage_title .':900italic',
		$homepage_description .':100', $homepage_description .':100italic', $homepage_description .':200', $homepage_description .':200italic', $homepage_description .':300', $homepage_description .':300italic', $homepage_description .':400', $homepage_description .':400italic', $homepage_description .':500', $homepage_description .':500italic', $homepage_description .':600', $homepage_description .':600italic', $homepage_description .':700', $homepage_description .':700italic', $homepage_description .':800', $homepage_description .':800italic', $homepage_description .':900', $homepage_description .':900italic',
		$post_title_font .':100', $post_title_font .':100italic', $post_title_font .':200', $post_title_font .':200italic', $post_title_font .':300', $post_title_font .':300italic', $post_title_font .':400', $post_title_font .':400italic', $post_title_font .':500', $post_title_font .':500italic', $post_title_font .':600', $post_title_font .':600italic', $post_title_font .':700', $post_title_font .':700italic', $post_title_font .':800', $post_title_font .':800italic', $post_title_font .':900', $post_title_font .':900italic',
		$side_font .':100', $side_font .':100italic', $side_font .':200', $side_font .':200italic', $side_font .':300', $side_font .':300italic', $side_font .':400', $side_font .':400italic', $side_font .':500', $side_font .':500italic', $side_font .':600', $side_font .':600italic', $side_font .':700', $side_font .':700italic', $side_font .':800', $side_font .':800italic', $side_font .':900', $side_font .':900italic',
		$side_content_font .':100', $side_content_font .':100italic', $side_content_font .':200', $side_content_font .':200italic', $side_content_font .':300', $side_content_font .':300italic', $side_content_font .':400', $side_content_font .':400italic', $side_content_font .':500', $side_content_font .':500italic', $side_content_font .':600', $side_content_font .':600italic', $side_content_font .':700', $side_content_font .':700italic', $side_content_font .':800', $side_content_font .':800italic', $side_content_font .':900', $side_content_font .':900italic',
		$footer_widget_font .':100', $footer_widget_font .':100italic', $footer_widget_font .':200', $footer_widget_font .':200italic', $footer_widget_font .':300', $footer_widget_font .':300italic', $footer_widget_font .':400', $footer_widget_font .':400italic', $footer_widget_font .':500', $footer_widget_font .':500italic', $footer_widget_font .':600', $footer_widget_font .':600italic', $footer_widget_font .':700', $footer_widget_font .':700italic', $footer_widget_font .':800', $footer_widget_font .':800italic', $footer_widget_font .':900', $footer_widget_font .':900italic',
		$footer_widget_content_font .':100', $footer_widget_content_font .':100italic', $footer_widget_content_font .':200', $footer_widget_content_font .':200italic', $footer_widget_content_font .':300', $footer_widget_content_font .':300italic', $footer_widget_content_font .':400', $footer_widget_content_font .':400italic', $footer_widget_content_font .':500', $footer_widget_content_font .':500italic', $footer_widget_content_font .':600', $footer_widget_content_font .':600italic', $footer_widget_content_font .':700', $footer_widget_content_font .':700italic', $footer_widget_content_font .':800', $footer_widget_content_font .':800italic', $footer_widget_content_font .':900', $footer_widget_content_font .':900italic',
		$h1_font .':100', $h1_font .':100italic', $h1_font .':200', $h1_font .':200italic', $h1_font .':300', $h1_font .':300italic', $h1_font .':400', $h1_font .':400italic', $h1_font .':500', $h1_font .':500italic', $h1_font .':600', $h1_font .':600italic', $h1_font .':700', $h1_font .':700italic', $h1_font .':800', $h1_font .':800italic', $h1_font .':900', $h1_font .':900italic',
		$h2_font .':100', $h2_font .':100italic', $h2_font .':200', $h2_font .':200italic', $h2_font .':300', $h2_font .':300italic', $h2_font .':400', $h2_font .':400italic', $h2_font .':500', $h2_font .':500italic', $h2_font .':600', $h2_font .':600italic', $h2_font .':700', $h2_font .':700italic', $h2_font .':800', $h2_font .':800italic', $h2_font .':900', $h2_font .':900italic',
		$h3_font .':100', $h3_font .':100italic', $h3_font .':200', $h3_font .':200italic', $h3_font .':300', $h3_font .':300italic', $h3_font .':400', $h3_font .':400italic', $h3_font .':500', $h3_font .':500italic', $h3_font .':600', $h3_font .':600italic', $h3_font .':700', $h3_font .':700italic', $h3_font .':800', $h3_font .':800italic', $h3_font .':900', $h3_font .':900italic',
		$h4_font .':100', $h4_font .':100italic', $h4_font .':200', $h4_font .':200italic', $h4_font .':300', $h4_font .':300italic', $h4_font .':400', $h4_font .':400italic', $h4_font .':500', $h4_font .':500italic', $h4_font .':600', $h4_font .':600italic', $h4_font .':700', $h4_font .':700italic', $h4_font .':800', $h4_font .':800italic', $h4_font .':900', $h4_font .':900italic',
		$h5_font .':100', $h5_font .':100italic', $h5_font .':200', $h5_font .':200italic', $h5_font .':300', $h5_font .':300italic', $h5_font .':400', $h5_font .':400italic', $h5_font .':500', $h5_font .':500italic', $h5_font .':600', $h5_font .':600italic', $h5_font .':700', $h5_font .':700italic', $h5_font .':800', $h5_font .':800italic', $h5_font .':900', $h5_font .':900italic',
		$h6_font .':100', $h6_font .':100italic', $h6_font .':200', $h6_font .':200italic', $h6_font .':300', $h6_font .':300italic', $h6_font .':400', $h6_font .':400italic', $h6_font .':500', $h6_font .':500italic', $h6_font .':600', $h6_font .':600italic', $h6_font .':700', $h6_font .':700italic', $h6_font .':800', $h6_font .':800italic', $h6_font .':900', $h6_font .':900italic',
		$p_font .':100', $p_font .':100italic', $p_font .':200', $p_font .':200italic', $p_font .':300', $p_font .':300italic', $p_font .':400', $p_font .':400italic', $p_font .':500', $p_font .':500italic', $p_font .':600', $p_font .':600italic', $p_font .':700', $p_font .':700italic', $p_font .':800', $p_font .':800italic', $p_font .':900', $p_font .':900italic',
		$btn_font .':100', $btn_font .':100italic', $btn_font .':200', $btn_font .':200italic', $btn_font .':300', $btn_font .':300italic', $btn_font .':400', $btn_font .':400italic', $btn_font .':500', $btn_font .':500italic', $btn_font .':600', $btn_font .':600italic', $btn_font .':700', $btn_font .':700italic', $btn_font .':800', $btn_font .':800italic', $btn_font .':900', $btn_font .':900italic',	
		$shop_h1_font .':100', $shop_h1_font .':100italic', $shop_h1_font .':200', $shop_h1_font .':200italic', $shop_h1_font .':300', $shop_h1_font .':300italic', $shop_h1_font .':400', $shop_h1_font .':400italic', $shop_h1_font .':500', $shop_h1_font .':500italic', $shop_h1_font .':600', $shop_h1_font .':600italic', $shop_h1_font .':700', $shop_h1_font .':700italic', $shop_h1_font .':800', $shop_h1_font .':800italic', $shop_h1_font .':900', $shop_h1_font .':900italic',
		$shop_h2_font .':100', $shop_h2_font .':100italic', $shop_h2_font .':200', $shop_h2_font .':200italic', $shop_h2_font .':300', $shop_h2_font .':300italic', $shop_h2_font .':400', $shop_h2_font .':400italic', $shop_h2_font .':500', $shop_h2_font .':500italic', $shop_h2_font .':600', $shop_h2_font .':600italic', $shop_h2_font .':700', $shop_h2_font .':700italic', $shop_h2_font .':800', $shop_h2_font .':800italic', $shop_h2_font .':900', $shop_h2_font .':900italic',
		$shop_h3_font .':100', $shop_h3_font .':100italic', $shop_h3_font .':200', $shop_h3_font .':200italic', $shop_h3_font .':300', $shop_h3_font .':300italic', $shop_h3_font .':400', $shop_h3_font .':400italic', $shop_h3_font .':500', $shop_h3_font .':500italic', $shop_h3_font .':600', $shop_h3_font .':600italic', $shop_h3_font .':700', $shop_h3_font .':700italic', $shop_h3_font .':800', $shop_h3_font .':800italic', $shop_h3_font .':900', $shop_h3_font .':900italic', 
	    $tobar_font .':100', $tobar_font .':100italic', $tobar_font .':200', $tobar_font .':200italic', $tobar_font .':300', $tobar_font .':300italic', $tobar_font .':400', $tobar_font .':400italic', $tobar_font .':500', $tobar_font .':500italic', $tobar_font .':600', $tobar_font .':600italic', $tobar_font .':700', $tobar_font .':700italic', $tobar_font .':800', $tobar_font .':800italic', $tobar_font .':900', $tobar_font .':900italic',
		$tob_content_font .':100', $tob_content_font .':100italic', $tob_content_font .':200', $tob_content_font .':200italic', $tob_content_font .':300', $tob_content_font .':300italic', $tob_content_font .':400', $tob_content_font .':400italic', $tob_content_font .':500', $tob_content_font .':500italic', $tob_content_font .':600', $tob_content_font .':600italic', $tob_content_font .':700', $tob_content_font .':700italic', $tob_content_font .':800', $tob_content_font .':800italic', $tob_content_font .':900', $tob_content_font .':900italic',
		$meta_font .':100', $meta_font .':100italic', $meta_font .':200', $meta_font .':200italic', $meta_font .':300', $meta_font .':300italic', $meta_font .':400', $meta_font .':400italic', $meta_font .':500', $meta_font .':500italic', $meta_font .':600', $meta_font .':600italic', $meta_font .':700', $meta_font .':700italic', $meta_font .':800', $meta_font .':800italic', $meta_font .':900', $meta_font .':900italic',
		$fbar_font .':100', $fbar_font .':100italic', $fbar_font .':200', $fbar_font .':200italic', $fbar_font .':300', $fbar_font .':300italic', $fbar_font .':400', $fbar_font .':400italic', $fbar_font .':500', $fbar_font .':500italic', $fbar_font .':600', $fbar_font .':600italic', $fbar_font .':700', $fbar_font .':700italic', $fbar_font .':800', $fbar_font .':800italic', $fbar_font .':900', $fbar_font .':900italic',	
	    $after_btn_fontfamily .':100', $after_btn_fontfamily .':100italic', $after_btn_fontfamily .':200', $after_btn_fontfamily .':200italic', $after_btn_fontfamily .':300', $after_btn_fontfamily .':300italic', $after_btn_fontfamily .':400', $after_btn_fontfamily .':400italic', $after_btn_fontfamily .':500', $after_btn_fontfamily .':500italic', $after_btn_fontfamily .':600', $after_btn_fontfamily .':600italic', $after_btn_fontfamily .':700', $after_btn_fontfamily .':700italic', $after_btn_fontfamily .':800', $after_btn_fontfamily .':800italic', $after_btn_fontfamily .':900', $after_btn_fontfamily .':900italic',		
	    
		
		
    );
    $query_args = array(
        'family'  => urlencode( implode( '|', $font_families ) ),
        'subset'  => urlencode( 'latin,latin-ext' ),
        'display' => urlencode( 'swap' ),
    );
    return apply_filters( 'spiko_get_fonts_url', add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ) );
}
?>PK�uKX����@�@&spiko/inc/font/wptt-webfont-loader.php<?php
/**
 * Download webfonts locally.
 * https://make.wordpress.org/themes/2020/09/25/new-package-to-allow-locally-hosting-webfonts/
 *
 * @version 1.1.1
 * @package wptt/font-loader
 * @license https://opensource.org/licenses/MIT
 */

if ( ! class_exists( 'WPTT_WebFont_Loader' ) ) {
	/**
	 * Download webfonts locally.
	 */
	class WPTT_WebFont_Loader {

		/**
		 * The font-format.
		 *
		 * Use "woff" or "woff2".
		 * This will change the user-agent user to make the request.
		 *
		 * @access protected
		 * @since 1.0.0
		 * @var string
		 */
		protected $font_format = 'woff2';

		/**
		 * The remote URL.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $remote_url;

		/**
		 * Base path.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $base_path;

		/**
		 * Base URL.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $base_url;

		/**
		 * Subfolder name.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $subfolder_name;

		/**
		 * The fonts folder.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $fonts_folder;

		/**
		 * The local stylesheet's path.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $local_stylesheet_path;

		/**
		 * The local stylesheet's URL.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $local_stylesheet_url;

		/**
		 * The remote CSS.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $remote_styles;

		/**
		 * The final CSS.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $css;

		/**
		 * Cleanup routine frequency.
		 */
		const CLEANUP_FREQUENCY = 'monthly';

		/**
		 * Constructor.
		 *
		 * Get a new instance of the object for a new URL.
		 *
		 * @access public
		 * @since 1.1.0
		 * @param string $url The remote URL.
		 */
		public function __construct( $url = '' ) {
			$this->remote_url = $url;

			// Add a cleanup routine.
			$this->schedule_cleanup();
			add_action( 'delete_fonts_folder', array( $this, 'delete_fonts_folder' ) );
		}

		/**
		 * Get the local URL which contains the styles.
		 *
		 * Fallback to the remote URL if we were unable to write the file locally.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_url() {

			// Check if the local stylesheet exists.
			if ( $this->local_file_exists() ) {

				// Attempt to update the stylesheet. Return the local URL on success.
				if ( $this->write_stylesheet() ) {
					return $this->get_local_stylesheet_url();
				}
			}

			// If the local file exists, return its URL, with a fallback to the remote URL.
			return file_exists( $this->get_local_stylesheet_path() )
				? $this->get_local_stylesheet_url()
				: $this->remote_url;
		}

		/**
		 * Get the local stylesheet URL.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_local_stylesheet_url() {
			if ( ! $this->local_stylesheet_url ) {
				$this->local_stylesheet_url = str_replace(
					$this->get_base_path(),
					$this->get_base_url(),
					$this->get_local_stylesheet_path()
				);
			}
			return $this->local_stylesheet_url;
		}

		/**
		 * Get styles with fonts downloaded locally.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return string
		 */
		public function get_styles() {

			// If we already have the local file, return its contents.
			$local_stylesheet_contents = $this->get_local_stylesheet_contents();
			if ( $local_stylesheet_contents ) {
				return $local_stylesheet_contents;
			}

			// Get the remote URL contents.
			$this->remote_styles = $this->get_remote_url_contents();

			// Get an array of locally-hosted files.
			$files = $this->get_local_files_from_css();

			// Convert paths to URLs.
			foreach ( $files as $remote => $local ) {
				$files[ $remote ] = str_replace(
					$this->get_base_path(),
					$this->get_base_url(),
					$local
				);
			}

			$this->css = str_replace(
				array_keys( $files ),
				array_values( $files ),
				$this->remote_styles
			);

			$this->write_stylesheet();

			return $this->css;
		}

		/**
		 * Get local stylesheet contents.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string|false Returns the remote URL contents.
		 */
		public function get_local_stylesheet_contents() {
			$local_path = $this->get_local_stylesheet_path();

			// Check if the local stylesheet exists.
			if ( $this->local_file_exists() ) {

				// Attempt to update the stylesheet. Return false on fail.
				if ( ! $this->write_stylesheet() ) {
					return false;
				}
			}
			
			ob_start();
			include $local_path;
			return ob_get_clean();
		}

		/**
		 * Get remote file contents.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return string Returns the remote URL contents.
		 */
		public function get_remote_url_contents() {

			/**
			 * The user-agent we want to use.
			 *
			 * The default user-agent is the only one compatible with woff (not woff2)
			 * which also supports unicode ranges.
			 */
			$user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8';

			// Switch to a user-agent supporting woff2 if we don't need to support IE.
			if ( 'woff2' === $this->font_format ) {
				$user_agent = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0';
			}

			// Get the response.
			$response = wp_remote_get( $this->remote_url, array( 'user-agent' => $user_agent ) );

			// Early exit if there was an error.
			if ( is_wp_error( $response ) ) {
				return;
			}

			// Get the CSS from our response.
			$contents = wp_remote_retrieve_body( $response );

			// Early exit if there was an error.
			if ( is_wp_error( $contents ) ) {
				return;
			}

			return $contents;
		}

		/**
		 * Download files mentioned in our CSS locally.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return array Returns an array of remote URLs and their local counterparts.
		 */
		public function get_local_files_from_css() {
			$font_files = $this->get_remote_files_from_css();
			$stored     = get_site_option( 'downloaded_font_files', array() );
			$change     = false; // If in the end this is true, we need to update the cache option.

			// If the fonts folder don't exist, create it.
			if ( ! file_exists( $this->get_fonts_folder() ) ) {
				$this->get_filesystem()->mkdir( $this->get_fonts_folder(), FS_CHMOD_DIR );
			}

			foreach ( $font_files as $font_family => $files ) {

				// The folder path for this font-family.
				$folder_path = $this->get_fonts_folder() . '/' . $font_family;

				// If the folder doesn't exist, create it.
				if ( ! file_exists( $folder_path ) ) {
					$this->get_filesystem()->mkdir( $folder_path, FS_CHMOD_DIR );
				}

				foreach ( $files as $url ) {

					// Get the filename.
					$filename  = basename( wp_parse_url( $url, PHP_URL_PATH ) );
					$font_path = $folder_path . '/' . $filename;

					// Check if the file already exists.
					if ( file_exists( $font_path ) ) {

						// Skip if already cached.
						if ( isset( $stored[ $url ] ) ) {
							continue;
						}

						// Add file to the cache and change the $changed var to indicate we need to update the option.
						$stored[ $url ] = $font_path;
						$change         = true;

						// Since the file exists we don't need to proceed with downloading it.
						continue;
					}

					/**
					 * If we got this far, we need to download the file.
					 */

					// require file.php if the download_url function doesn't exist.
					if ( ! function_exists( 'download_url' ) ) {
						require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
					}

					// Download file to temporary location.
					$tmp_path = download_url( $url );

					// Make sure there were no errors.
					if ( is_wp_error( $tmp_path ) ) {
						continue;
					}

					// Move temp file to final destination.
					$success = $this->get_filesystem()->move( $tmp_path, $font_path, true );
					if ( $success ) {
						$stored[ $url ] = $font_path;
						$change         = true;
					}
				}
			}

			// If there were changes, update the option.
			if ( $change ) {

				// Cleanup the option and then save it.
				foreach ( $stored as $url => $path ) {
					if ( ! file_exists( $path ) ) {
						unset( $stored[ $url ] );
					}
				}
				update_site_option( 'downloaded_font_files', $stored );
			}

			return $stored;
		}

		/**
		 * Get font files from the CSS.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return array Returns an array of font-families and the font-files used.
		 */
		public function get_remote_files_from_css() {

			$font_faces = explode( '@font-face', $this->remote_styles );

			$result = array();

			// Loop all our font-face declarations.
			foreach ( $font_faces as $font_face ) {

				// Make sure we only process styles inside this declaration.
				$style = explode( '}', $font_face )[0];

				// Sanity check.
				if ( false === strpos( $style, 'font-family' ) ) {
					continue;
				}

				// Get an array of our font-families.
				preg_match_all( '/font-family.*?\;/', $style, $matched_font_families );

				// Get an array of our font-files.
				preg_match_all( '/url\(.*?\)/i', $style, $matched_font_files );

				// Get the font-family name.
				$font_family = 'unknown';
				if ( isset( $matched_font_families[0] ) && isset( $matched_font_families[0][0] ) ) {
					$font_family = rtrim( ltrim( $matched_font_families[0][0], 'font-family:' ), ';' );
					$font_family = trim( str_replace( array( "'", ';' ), '', $font_family ) );
					$font_family = sanitize_key( strtolower( str_replace( ' ', '-', $font_family ) ) );
				}

				// Make sure the font-family is set in our array.
				if ( ! isset( $result[ $font_family ] ) ) {
					$result[ $font_family ] = array();
				}

				// Get files for this font-family and add them to the array.
				foreach ( $matched_font_files as $match ) {

					// Sanity check.
					if ( ! isset( $match[0] ) ) {
						continue;
					}

					// Add the file URL.
					$result[ $font_family ][] = rtrim( ltrim( $match[0], 'url(' ), ')' );
				}

				// Make sure we have unique items.
				// We're using array_flip here instead of array_unique for improved performance.
				$result[ $font_family ] = array_flip( array_flip( $result[ $font_family ] ) );
			}
			return $result;
		}

		/**
		 * Write the CSS to the filesystem.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @return string|false Returns the absolute path of the file on success, or false on fail.
		 */
		protected function write_stylesheet() {
			$file_path  = $this->get_local_stylesheet_path();
			$filesystem = $this->get_filesystem();

			// If the folder doesn't exist, create it.
			if ( ! file_exists( $this->get_fonts_folder() ) ) {
				$this->get_filesystem()->mkdir( $this->get_fonts_folder(), FS_CHMOD_DIR );
			}

			// If the file doesn't exist, create it. Return false if it can not be created.
			if ( ! $filesystem->exists( $file_path ) && ! $filesystem->touch( $file_path ) ) {
				return false;
			}

			// If we got this far, we need to write the file.
			// Get the CSS.
			if ( ! $this->css ) {
				$this->get_styles();
			}

			// Put the contents in the file. Return false if that fails.
			if ( ! $filesystem->put_contents( $file_path, $this->css ) ) {
				return false;
			}

			return $file_path;
		}

		/**
		 * Get the stylesheet path.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_local_stylesheet_path() {
			if ( ! $this->local_stylesheet_path ) {
				$this->local_stylesheet_path = $this->get_fonts_folder() . '/' . $this->get_local_stylesheet_filename() . '.css';
			}
			return $this->local_stylesheet_path;
		}

		/**
		 * Get the local stylesheet filename.
		 *
		 * This is a hash, generated from the site-URL, the wp-content path and the URL.
		 * This way we can avoid issues with sites changing their URL, or the wp-content path etc.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_local_stylesheet_filename() {
			return md5( $this->get_base_url() . $this->get_base_path() . $this->remote_url );
		}

		/**
		 * Set the font-format to be used.
		 *
		 * @access public
		 * @since 1.0.0
		 * @param string $format The format to be used. Use "woff" or "woff2".
		 * @return void
		 */
		public function set_font_format( $format = 'woff2' ) {
			$this->font_format = $format;
		}

		/**
		 * Check if the local stylesheet exists.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return bool
		 */
		public function local_file_exists() {
			return ( ! file_exists( $this->get_local_stylesheet_path() ) );
		}

		/**
		 * Get the base path.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_base_path() {
			if ( ! $this->base_path ) {
				$this->base_path = apply_filters( 'wptt_get_local_fonts_base_path', $this->get_filesystem()->wp_content_dir() );
			}
			return $this->base_path;
		}

		/**
		 * Get the base URL.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_base_url() {
			if ( ! $this->base_url ) {
				$this->base_url = apply_filters( 'wptt_get_local_fonts_base_url', content_url() );
			}
			return $this->base_url;
		}

		/**
		 * Get the subfolder name.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_subfolder_name() {
			if ( ! $this->subfolder_name ) {
				$this->subfolder_name = apply_filters( 'wptt_get_local_fonts_subfolder_name', 'fonts' );
			}
			return $this->subfolder_name;
		}

		/**
		 * Get the folder for fonts.
		 *
		 * @access public
		 * @return string
		 */
		public function get_fonts_folder() {
			if ( ! $this->fonts_folder ) {
				$this->fonts_folder = $this->get_base_path();
				if ( $this->get_subfolder_name() ) {
					$this->fonts_folder .= '/' . $this->get_subfolder_name();
				}
			}
			return $this->fonts_folder;
		}

		/**
		 * Schedule a cleanup.
		 *
		 * Deletes the fonts files on a regular basis.
		 * This way font files will get updated regularly,
		 * and we avoid edge cases where unused files remain in the server.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return void
		 */
		public function schedule_cleanup() {
			if ( ! is_multisite() || ( is_multisite() && is_main_site() ) ) {
				if ( ! wp_next_scheduled( 'delete_fonts_folder' ) && ! wp_installing() ) {
					wp_schedule_event( time(), self::CLEANUP_FREQUENCY, 'delete_fonts_folder' );
				}
			}
		}

		/**
		 * Delete the fonts folder.
		 *
		 * This runs as part of a cleanup routine.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return bool
		 */
		public function delete_fonts_folder() {
			return $this->get_filesystem()->delete( $this->get_fonts_folder(), true );
		}

		/**
		 * Get the filesystem.
		 *
		 * @access protected
		 * @since 1.0.0
		 * @return WP_Filesystem
		 */
		protected function get_filesystem() {
			global $wp_filesystem;

			// If the filesystem has not been instantiated yet, do it here.
			if ( ! $wp_filesystem ) {
				if ( ! function_exists( 'WP_Filesystem' ) ) {
					require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
				}
				WP_Filesystem();
			}
			return $wp_filesystem;
		}
	}
}

if ( ! function_exists( 'wptt_get_webfont_styles' ) ) {
	/**
	 * Get styles for a webfont.
	 *
	 * This will get the CSS from the remote API,
	 * download any fonts it contains,
	 * replace references to remote URLs with locally-downloaded assets,
	 * and finally return the resulting CSS.
	 *
	 * @since 1.0.0
	 *
	 * @param string $url    The URL of the remote webfont.
	 * @param string $format The font-format. If you need to support IE, change this to "woff".
	 *
	 * @return string Returns the CSS.
	 */
	function wptt_get_webfont_styles( $url, $format = 'woff2' ) {
		$font = new WPTT_WebFont_Loader( $url );
		$font->set_font_format( $format );
		return $font->get_styles();
	}
}

if ( ! function_exists( 'wptt_get_webfont_url' ) ) {
	/**
	 * Get a stylesheet URL for a webfont.
	 *
	 * @since 1.1.0
	 *
	 * @param string $url    The URL of the remote webfont.
	 * @param string $format The font-format. If you need to support IE, change this to "woff".
	 *
	 * @return string Returns the CSS.
	 */
	function wptt_get_webfont_url( $url, $format = 'woff2' ) {
		$font = new WPTT_WebFont_Loader( $url );
		$font->set_font_format( $format );
		return $font->get_url();
	}
}PK�uKXG_����$spiko/inc/footer-widget/layout-1.php<?php
	for($i=1; $i<=2; $i++)
		{
			echo '<div class="col-lg-6 col-md-6 col-sm-12">';
			dynamic_sidebar('footer-sidebar-'.$i);
			echo '</div>';
		}PK�uKX4���$spiko/inc/footer-widget/layout-2.php<?php
	for($i=1; $i<=3; $i++)
		{
			echo '<div class="col-lg-4 col-md-4 col-sm-12">';
			dynamic_sidebar('footer-sidebar-'.$i);
			echo '</div>';
		}PK�uKX���ܖ�$spiko/inc/footer-widget/layout-3.php<?php
	for($i=1; $i<=4; $i++)
		{
			echo '<div class="col-lg-3 col-md-3 col-sm-12">';
			dynamic_sidebar('footer-sidebar-'.$i);
			echo '</div>';
		}PK�uKXHEX9��spiko/inc/header/header-nav.php<nav class="navbar navbar-expand-lg navbar-dark custom <?php if(get_theme_mod('sticky_header_enable',false)===true):?>header-sticky<?php endif;?>">
	<div class="container">
		<?php the_custom_logo();?>		
		<div class="custom-logo-link-url"> 
			<h2 class="site-title"><a class="site-title-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
	    	</h2>
	    <?php
			$spiko_description = get_bloginfo( 'description', 'display' );
			if ( $spiko_description || is_customize_preview() ) : ?>
				<p class="site-description"><?php echo $spiko_description; ?></p>
			<?php endif;?>
		</div>
		<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="<?php esc_attr_e('Toggle navigation', 'spiko' ); ?>">
			<span class="navbar-toggler-icon"></span>
		</button>
		<div class="collapse navbar-collapse" id="navbarNavDropdown">
			<div class="<?php echo (!is_rtl()) ? "ml-auto" : "mr-auto"; ?>">
			<?php 
			$spiko_shop_button = '<ul class="nav navbar-nav mr-auto">%3$s';
			   //Hence This condition only work when woocommerce plugin will be activate
		    if(get_theme_mod('after_menu_btn_new_tabl',false)==true) { $spiko_target="_blank";}
		 	else { $spiko_target="_self"; }
		 	if((get_theme_mod('after_menu_btn_txt')!='') && (get_theme_mod('after_menu_multiple_option')=='menu_btn')):
		 		$spiko_shop_button .= '<li class="nav-item menu-item main-header-btn"><a target='.$spiko_target.' class="spiko_header_btn" href='.get_theme_mod('after_menu_btn_link','').'>'.get_theme_mod('after_menu_btn_txt').'</a></li>';
			endif;
			if((get_theme_mod('after_menu_html')!='') && (get_theme_mod('after_menu_multiple_option')=='html')):
				$spiko_shop_button .= '<li class="nav-item html menu-item lite-html">'.get_theme_mod('after_menu_html').'</li>';

			endif;
			if(get_theme_mod('search_btn_enable',false)==true) { $spiko_header_border='search_exists'; } 
			else { $spiko_header_border='shop_exists';} 
			$spiko_shop_button .= '<li class="nav-item"><div class="'.$spiko_header_border.' header-module">';
		   
		   //Hence This condition only work when woocommerce plugin will be activate
			if(get_theme_mod('search_btn_enable',false)==true){
		    $spiko_shop_button .= '<div class="nav-search nav-light-search wrap">
		                           			<div class="search-box-outer">
	                            				<div class="dropdown">
                  									<a href="#" title="'.esc_attr__('Search','spiko').'" class="search-icon condition has-submenu" aria-haspopup="true" aria-expanded="false">
               										<i class="fa fa-search"></i>
             										<span class="sub-arrow"></span></a>
             										<ul class="dropdown-menu pull-right search-panel"  role="group" aria-hidden="true" aria-expanded="false">
                             							<li class="panel-outer">
                             								<div class="form-container">
                               									 <form role="'.esc_attr('Search','spiko').'" method="get" class="search-form" action="'.esc_url( home_url( '/' )).'">
                                									 <label>
                                  										<input type="search" class="search-field" placeholder="'.esc_attr__('Search','spiko').'" value="" name="s" autocomplete="off">
                                 									 </label>
                                 									<input type="submit" class="search-submit" value="'.esc_attr__('Search','spiko').'">
                                								 </form>                   
                               								</div>
                             							</li>
                           							</ul>
	                       						</div>
		                     				</div>
		                   				</div>';
		                   			}
			   if ( class_exists( 'WooCommerce' ) ) {
			   		if(get_theme_mod('cart_btn_enable',false)==true ){		   	  
					   $spiko_shop_button .='<div class="cart-header">';
					      global $woocommerce; 
					      $spiko_link = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : $woocommerce->cart->get_cart_url();
					      $spiko_shop_button .= '<a class="cart-icon" href="'.esc_url($spiko_link).'" >';
					      
					      if ($woocommerce->cart->cart_contents_count == 0){
					          $spiko_shop_button .= '<i class="fa fa-shopping-cart" aria-hidden="true"></i>';
					        }
					        else
					        {
					          $spiko_shop_button .= '<i class="fa fa-cart-plus" aria-hidden="true"></i>';
					        }
					           
					        $spiko_shop_button .= '</a>';

					         
					        $spiko_shop_button .= '<a class="cart-total" href="'.esc_url($spiko_link).'" ><span>'.sprintf(_n('%d <span>item</span>', '%d <span>items</span>', $woocommerce->cart->cart_contents_count, 'spiko' ), $woocommerce->cart->cart_contents_count).'</span></a>';

					    }
					}
				$spiko_shop_button .= '</li></div>';
			   $spiko_shop_button .= '</ul>'; 
			   $spiko_menu_class='';
			    wp_nav_menu( array
			             (
			             'theme_location'=> 'spiko-primary', 
			             'menu_class'    => 'nav navbar-nav mr-auto '.$spiko_menu_class.'',
			             'items_wrap'    => $spiko_shop_button,
			             'fallback_cb'   => 'spiko_fallback_page_menu',
			             'walker'        => new Spiko_Nav_Walker()
			             )); ?>
	        </div>
		</div>
</nav>PK�uKX}�&��&spiko/inc/menu/default_menu_walker.php<?php

function spiko_page_menu_args($args) {
    if (!isset($args['show_home']))
        $args['show_home'] = true;
    return $args;
}

add_filter('wp_page_menu_args', 'spiko_page_menu_args');

function spiko_fallback_page_menu($args = array()) {
    $defaults = array('sort_column' => 'menu_order, post_title', 'menu_class' => 'menu', 'echo' => true, 'link_before' => '', 'link_after' => '');
    $args = wp_parse_args($args, $defaults);
    $args = apply_filters('wp_page_menu_args', $args);
    $menu = '';
    $list_args = $args;
    // Show Home in the menu
    if (!empty($args['show_home'])) {
        if (true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'])
            $text = esc_html__('Home', 'spiko' );
        else
            $text = $args['show_home'];
        $class = '';
        if (is_front_page() && !is_paged()) {
            $class = 'class="nav-item menu-item active"';
        } else {
            $class = 'class="nav-item menu-item"';
        }
        $menu .= '<li ' . $class . '><a class="nav-link 1" href="' . esc_url(home_url('/')) . '" title="' . esc_attr($text) . '">' . $args['link_before'] . $text . $args['link_after'] . '</a></li>';
        // If the front page is a page, add it to the exclude list
        if (get_option('show_on_front') == 'page') {
            if (!empty($list_args['exclude'])) {
                $list_args['exclude'] .= ',';
            } else {
                $list_args['exclude'] = '';
            }
            $list_args['exclude'] .= get_option('page_on_front');
        }
    }
    $list_args['echo'] = false;
    $list_args['title_li'] = '';
    $list_args['walker'] = new Spiko_Walker_Page_Menu;
    $menu .= str_replace(array("\r", "\n", "\t"), '', wp_list_pages($list_args));
    if ($menu)
        $menu = '<ul class="' . esc_attr($args['menu_class']) . '">' . $menu . '</ul>';

    $menu = $menu . "\n";
    $menu = apply_filters('wp_page_menu', $menu, $args);
    if ($args['echo'])
      echo $menu;
    else
        return $menu;
}

class Spiko_Walker_Page_Menu extends Walker_Page {

    function start_lvl(&$output, $depth = 0, $args = array()) {
        $indent = str_repeat("\t", $depth);
        $output .= "\n$indent<ul class='dropdown-menu default'>\n";
    }

    function start_el(&$output, $page, $depth = 0, $args = array(), $current_page = 0) {
        if ($depth)
            $indent = str_repeat("\t", $depth);
        else
            $indent = '';

        if ($depth === 0) {
            $child_class = 'nav-link';
        } else if ($depth > 0) {
            $child_class = 'dropdown-item';
        } else {
            $child_class = '';
        }
        extract($args, EXTR_SKIP);
        $css_class = array('menu-item page_item dropdown', 'page-item-' . $page->ID);
        if (!empty($current_page)) {
            $_current_page = get_post($current_page);
            if (in_array($page->ID, $_current_page->ancestors))
                $css_class[] = 'current_page_ancestor';
            if ($page->ID == $current_page)
                $css_class[] = 'nav-item active';
            elseif ($_current_page && $page->ID == $_current_page->post_parent)
                $css_class[] = 'current_page_parent';
        } elseif ($page->ID == get_option('page_for_posts')) {
            $css_class[] = 'current_page_parent';
        }
        $css_class = implode(' ', apply_filters('page_css_class', $css_class, $page, $depth, $args, $current_page));
        $output .= $indent . '<li class="nav-item ' . $css_class . '"><a class="' . $child_class . '" href="' . get_permalink($page->ID) . '"><span class="menu-text">' . $link_before . apply_filters('the_title', $page->post_title, $page->ID) . $link_after . '</span></a>';
        if (!empty($show_date)) {
            if ('modified' == $show_date)
                $time = $page->post_modified;
            else
                $time = $page->post_date;
            $output .= " " . mysql2date($date_format, $time);
        }
    }

}PK�uKX11KK��#spiko/inc/menu/spiko_nav_walker.php<?php class Spiko_Nav_Walker extends Walker_Nav_Menu {	
	function start_lvl( &$output, $depth = 0, $args = array() ) {
		$indent = str_repeat("\t", $depth);
		$output .= "\n$indent<ul class=\"dropdown-menu\">\n";
	}
	function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
		$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

		$class_names = $value = '';

		$classes = empty( $item->classes ) ? array() : (array) $item->classes;
		
		if(!$args->has_children && $depth === 0) {
			$classes[] = 'menu-item-' . $item->ID . ' nav-item';
			$spiko_drop_item='nav-link';
		}
		else
		{
			$spiko_drop_item='dropdown-item';
		}
		if ($args->has_children && $depth > 0) {
			$classes[] = 'dropdown';
			$spiko_drop_item='dropdown-item has-submenu';
		} else if($args->has_children && $depth === 0) {
			$classes[] = 'dropdown nav-item';
			$spiko_drop_item='nav-link';
		
		}
		
		$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
		$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';

		$id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
		$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';

        $output .= $indent . '<li' . $id . $value . $class_names .'>';

		$attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
		$attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
		$attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
		$attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
		//$attributes .= ($args->has_children) 	    ? ' data-toggle="dropdown" data-target="#" class="dropdown-toggle"' : '';
			
		$item_output = $args->before;
		$item_output .= '<a class="'.$spiko_drop_item.'" '. $attributes .'><span class="menu-text">';
		$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
		$item_output .= ($args->has_children) ? '</span></a>' : '</a>';
		$item_output .= $args->after;

		$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
	}
	function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {

		if ( !$element )
			return;

		$id_field = $this->db_fields['id'];

		//display this element
		if ( is_array( $args[0] ) )
			$args[0]['has_children'] = ! empty( $children_elements[$element->$id_field] );
		else if ( is_object( $args[0] ) ) 
			$args[0]->has_children = ! empty( $children_elements[$element->$id_field] ); 
		$cb_args = array_merge( array(&$output, $element, $depth), $args);
		call_user_func_array(array($this, 'start_el'), $cb_args);

		$id = $element->$id_field;

		// descend only when the depth is right and there are childrens for this element
		if ( ($max_depth == 0 || $max_depth > $depth+1 ) && isset( $children_elements[$id]) ) {

			foreach( $children_elements[ $id ] as $child ){

				if ( !isset($newlevel) ) {
					$newlevel = true;
					//start the child delimiter
					$cb_args = array_merge( array(&$output, $depth), $args);
					call_user_func_array(array($this, 'start_lvl'), $cb_args);
				}
				$this->display_element( $child, $children_elements, $max_depth, $depth + 1, $args, $output );
			}
			unset( $children_elements[ $id ] );
		}

		if ( isset($newlevel) && $newlevel ){
			//end the child delimiter
			$cb_args = array_merge( array(&$output, $depth), $args);
			call_user_func_array(array($this, 'end_lvl'), $cb_args);
		}

		//end this element
		$cb_args = array_merge( array(&$output, $element, $depth), $args);
		call_user_func_array(array($this, 'end_el'), $cb_args);
	}
}
function spiko_nav_menu_css_class( $classes ) {
	if ( in_array('current-menu-item', $classes ) OR in_array( 'current-menu-ancestor', $classes ) )
		$classes[]	=	'active';

	return $classes;
}
add_filter('nav_menu_css_class','spiko_nav_menu_css_class');PK�uKX�Q�[�f�f"spiko/inc/scripts/custom_style.php<?php
// Typography
$spiko_enable_top_widget_typography = get_theme_mod('enable_top_widget_typography', false);
$spiko_enable_header_typography = get_theme_mod('enable_header_typography', false);
$spiko_enable_banner_typography = get_theme_mod('enable_banner_typography', false);
$spiko_enable_section_title_typography = get_theme_mod('enable_section_title_typography', false);
$spiko_enable_slider_title_typography = get_theme_mod('enable_slider_title_typography', false);
$spiko_enable_content_typography = get_theme_mod('enable_content_typography', false);
$spiko_enable_post_typography = get_theme_mod('enable_post_typography', false);
$spiko_enable_meta_typography = get_theme_mod('enable_meta_typography', false);
$spiko_enable_shop_page_typography = get_theme_mod('enable_shop_page_typography', false);
$spiko_enable_sidebar_typography = get_theme_mod('enable_sidebar_typography', false);
$spiko_enable_footer_bar_typography = get_theme_mod('enable_footer_bar_typography', false);
$spiko_enable_footer_widget_typography = get_theme_mod('enable_footer_widget_typography', false);

/* Site title and tagline */
if ($spiko_enable_header_typography == true) {
    ?>
    <style>
        .site-title {
            font-size:<?php echo intval(get_theme_mod('site_title_fontsize', '36')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('site_title_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('site_title_line_height','39')).'px'; ?> !important;
        }
       .site-description {
            font-size:<?php echo intval(get_theme_mod('site_tagline_fontsize', '20')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('site_tagline_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('site_tagline_line_height','30')).'px'; ?> !important;
        }

        .navbar .nav > li > a {
            font-size:<?php echo intval(get_theme_mod('menu_title_fontsize', '15')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('menu_title_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('menu_line_height','30')).'px'; ?> !important;
        }

        .dropdown-menu .dropdown-item{
            font-size:<?php echo intval(get_theme_mod('submenu_title_fontsize', '15')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('submenu_title_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('submenu_line_height','30')).'px'; ?> !important;
        }
    </style>
    <?php
}

/* Section Title */
if ($spiko_enable_section_title_typography == true) {
    ?>
    <style>
        .section-header  h2:not(.cta-2-title), .contact .section-header h2, .funfact h2.funfact-title {
            font-size:<?php echo intval(get_theme_mod('section_title_fontsize', '36')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('section_title_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('section_title_line_height','54')).'px'; ?> !important;
        }

        .section-header .section-subtitle, .testimonial .section-header p, .funfact p.description{
            font-size:<?php echo intval(get_theme_mod('section_subtitle_fontsize', '36')) . 'px'; ?> !important;           
            font-family:<?php echo esc_attr(get_theme_mod('section_subtitle_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('section_description_line_height','30')).'px'; ?> !important;
        }
    </style>
    <?php
}


/* Slider Title */
if ($spiko_enable_slider_title_typography == true) {
    ?>
    <style>
        .slider-caption h2  {
            font-size:<?php echo intval(get_theme_mod('slider_title_fontsize', '50')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('slider_line_height','85')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('slider_title_fontfamily', 'Open Sans')); ?> !important;
            
        }
    </style>
    <?php
}


/* Content */
if ($spiko_enable_content_typography == true) {
    ?>
    <style>
        /* Heading H1 */
        .about-section h1, body:not(.woocommerce-page) .entry-content h1, .services h1, .contact h1, .error-page h1, .cta_main h1 {
            font-size:<?php echo intval(get_theme_mod('h1_typography_fontsize', '36')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('h1_line_height','54')).'px'; ?> !important;;
            font-family:<?php echo esc_attr(get_theme_mod('h1_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }

        /* Heading H2 */
        body:not(.woocommerce-page) .entry-content h2, .about h2, .contact h2, .cta-2 h2, .section-space.abou-section h2, .section-header h2.counter-value,.about-header h2,.about-section h2{
            font-size:<?php echo intval(get_theme_mod('h2_typography_fontsize', '30')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('h2_line_height','45')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('h2_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }

        .error-page h2{
            font-size:<?php echo intval(get_theme_mod('h2_typography_fontsize', '30')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('h2_line_height','45')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('h2_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }

        /* Heading H3 */
        body:not(.woocommerce-page) .entry-content h3, .related-posts h3, .about-sections h3, .services h3, .contact h3, .contact-form-map .title h3, .section-space .about-section h3, .comment-form .comment-respond h3, .home-blog .entry-header h3.entry-title a, .error-page h3 {
            font-size:<?php echo intval(get_theme_mod('h3_typography_fontsize', '24')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('h3_line_height','36')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('h3_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }
        .comment-title h3{
            font-size:<?php echo intval(get_theme_mod('h3_typography_fontsize', '24')) + 4 . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('h3_typography_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('h3_line_height','36')).'px'; ?> !important;
        }

        /* Heading H4 */
        body h4:not(.blog h4.blog-title), .entry-content h4, .about-header h4:not(.blog-title), .team-grid h4, .entry-header h4 a:not(.blog-title), .contact-widget h4, .about-section h4, .testimonial .testmonial-block .name, .services h4, .contact h4, .portfolio h4, .section-space .about-sections h4, #related-posts-carousel .entry-header h4 a:not(.blog-title), .blog-author h4.name, .error-page h4, .services h4 a{
            font-size:<?php echo intval(get_theme_mod('h4_typography_fontsize', '20')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('h4_line_height','30')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('h4_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }

        /* Heading H5 */
        .product-price h5, .blog-author h5, .comment-detail h5, .entry-content h5, .about h5, .contact h5, .section-space .about-sections h5, .contact-info h5,.about-section h5 {
            font-size:<?php echo intval(get_theme_mod('h5_typography_fontsize', '18')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('h5_line_height','24')).'px'; ?> !important;
           font-family:<?php echo esc_attr(get_theme_mod('h5_typography_fontfamily', 'Open Sans')); ?> !important;
           
        }

        /* Heading H6 */
        body h6, .entry-content h6, .about-sections h6, .services h6, .contact h6, .section-space .about-section h6 {
            font-size:<?php echo intval(get_theme_mod('h6_typography_fontsize', '14')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('h6_line_height','21')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('h6_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }

        /* Paragraph */
        .entry-content p, .about-content p, .funfact p, .woocommerce-product-details__short-description p, .wpcf7 .wpcf7-form p label, .testimonial .testmonial-block .designation, .about-section p, .entry-content li, .contact address, .contact p, .services p, .contact p, .sponsors p, .cta-2 p{
            font-size:<?php echo intval(get_theme_mod('p_typography_fontsize', '15')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('p_line_height','30')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('p_typography_fontfamily', 'Open Sans')); ?> !important;
           
        }
        .slider-caption p, body p:not(.footer-sidebar p,.sidebar p, .custom-logo-link-url p){
            font-size:<?php echo intval(get_theme_mod('p_typography_fontsize', '15')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('p_line_height','30')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('p_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }

        .portfolio .tab a, .portfolio li a{
            font-size:<?php echo intval(get_theme_mod('p_typography_fontsize', '15')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('p_line_height','30')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('p_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }


        /* Button Text */
        .btn-combo a, .mx-auto a, .pt-3 a, .wpcf7-form .wpcf7-submit,  .woocommerce .button, .btn-default, .btn-light, .sidebar .woocommerce button[type="submit"], .site-footer .woocommerce button[type="submit"], .sidebar .widget .search-submit, #commentform input[type="submit"], .woocommerce .added_to_cart,.spiko_header_btn,.search-submit,.wp-block-button__link,.more-link{
            font-size:<?php echo intval(get_theme_mod('button_text_typography_fontsize', '15')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('button_line_height','30')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('button_text_typography_fontfamily', 'Open Sans')); ?> !important;
           
        }
    </style>
    <?php
}

/* Blog / Archive / Single Post */
if ($spiko_enable_post_typography == true) {
    ?>
    <style>
        .entry-header h4.blog-title, .entry-header h4 a.blog-title, #related-posts-carousel .entry-header h4 a.blog-title,.entry-header h2 a, .entry-header h3.entry-title a:not(.home-blog-title){
            font-size:<?php echo intval(get_theme_mod('post-title_fontsize', '36')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('post-title_line_height','54')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('post-title_fontfamily', 'Open Sans')); ?> !important;
        }
    </style>
    <?php
}


/* Shop Page */
if ($spiko_enable_shop_page_typography == true) {
    ?>
    <style>
        /* Heading H1 */
        .woocommerce div.product h1.product_title,.woocommerce h1{
            font-size:<?php echo intval(get_theme_mod('shop_h1_typography_fontsize', '36')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('shop_h1_line_height','54')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('shop_h1_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }
        .woocommerce .breadcrumb-overlay h1{
            font-size: 32px !important;
            line-height: 1.3 !important;
            font-family: inherit !important;
        }
        /* Heading H2 */
        .woocommerce .products h2, .woocommerce .cart_totals h2, .woocommerce-Tabs-panel h2, .woocommerce .cross-sells h2, .woocommerce div.product h2.product_title,.woocommerce h2:NOT(.site-title){
            font-size:<?php echo intval(get_theme_mod('shop_h2_typography_fontsize', '18')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('shop_h2_line_height','30')).'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('shop_h2_typography_fontfamily', 'Open Sans')); ?> !important;
            
        }

        /* Heading H3 */
        .woocommerce .checkout h3:not(footer h3),.woocommerce h3:not(footer h3) {
            font-size:<?php echo intval(get_theme_mod('shop_h3_typography_fontsize', '24')) . 'px'; ?> !important;
            line-height:<?php echo intval(get_theme_mod('shop_h3_line_height','36')).'px'; ?> !important;
           font-family:<?php echo esc_attr(get_theme_mod('shop_h3_typography_fontfamily', 'Open Sans')); ?> !important;
          
        }
    </style>
    <?php
}


/* Sidebar widgets */
if ($spiko_enable_sidebar_typography == true) {
    ?>
    <style>
        .sidebar .wp-block-search__label, .sidebar .widget-title,body .sidebar .widget.widget_block :is(h1,h2,h3,h4,h5,h6){
            font-size:<?php echo intval(get_theme_mod('sidebar_fontsize', '24')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('sidebar_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('sidebar_line_height','36')).'px'; ?> !important;
        }
        /* Sidebar Widget Content */
        .sidebar .widget_recent_entries a, .sidebar a, .sidebar p ,.sidebar .wp-block-latest-posts__post-excerpt{
            font-size:<?php echo intval(get_theme_mod('sidebar_widget_content_fontsize', '15')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('sidebar_widget_content_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('sidebar_widget_content_line_height','30')).'px'; ?> !important;
        }
    </style>
    <?php
}

/* Footer Widget */
if ($spiko_enable_footer_widget_typography == true) {
    ?>
    <style>
        /* Footer Widget Title */
        .site-footer .wp-block-search__label, .site-footer .footer-typo .widget-title,.footer-sidebar .widget.widget_block :is(h1,h2,h3,h4,h5,h6){
            font-size:<?php echo intval(get_theme_mod('footer_widget_title_fontsize', '24')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('footer_widget_title_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('footer_widget_title_line_height','36')).'px'; ?> !important;
        }
        /* Footer Widget Content */
        .footer-sidebar .widget_recent_entries a, .footer-sidebar.footer-typo a, .footer-sidebar.footer-typo p, .footer-sidebar.footer-typo .textwidget, .footer-sidebar  .head-contact-info li, .footer-sidebar .head-contact-info li a, .footer-sidebar em,.footer-sidebar .wp-block-latest-posts__post-excerpt  {
            font-size:<?php echo intval(get_theme_mod('footer_widget_content_fontsize', '15')) . 'px'; ?> !important;
            font-family:<?php echo esc_attr(get_theme_mod('footer_widget_content_fontfamily', 'Open Sans')); ?> !important;
            line-height:<?php echo intval(get_theme_mod('footer_widget_content_line_height','30')).'px'; ?> !important;
        }
    </style>
<?php } ?>

<?php
// -----------------Colors & Background----------------------
?>



<style>
    /* Header */

    <?php if (get_theme_mod('header_clr_enable', false) == true) : ?>
        /* Site Title & Tagline */
        .site-title a{
            color: <?php echo esc_attr(get_theme_mod('site_title_link_color', '#ffffff')); ?>;
        }
        .site-title a:hover{
            color: <?php echo esc_attr(get_theme_mod('site_title_link_hover_color', '#35ac39')); ?>;
        }
        .navbar p.site-description{
            color: <?php echo esc_attr(get_theme_mod('site_tagline_text_color', '#acacac')); ?>;
        }
    <?php endif; ?>

    /* Primary Menu */
    <?php if (get_theme_mod('apply_menu_clr_enable', false) == true) : ?>
       .navbar.custom .nav .nav-item .nav-link,body .navbar .nav .nav-item .nav-link,body .navbar.navbar1 .nav .nav-item .nav-link {
            color: <?php echo esc_attr(get_theme_mod('menus_link_color', '#ffffff')); ?>;
        }
        .navbar.custom .nav .nav-item:hover .nav-link,body .navbar .nav .nav-item:hover .nav-link, .navbar.custom .nav .nav-item.active .nav-link:hover,body .navbar .nav .nav-item.active .nav-link:hover {
            color: <?php echo esc_attr(get_theme_mod('menus_link_hover_color', '#35ac39')); ?>;
        }
        .nav.navbar-nav a.dropdown-item:hover {
            color: <?php echo esc_attr(get_theme_mod('menus_link_hover_color', '#35ac39')); ?>!important;
        }
        .navbar ul li.menu-item a .menu-text:hover:after{
            background: <?php echo esc_attr(get_theme_mod('menus_link_hover_color', '#35ac39')); ?>;
        }
        .navbar .nav li.active .nav-link .menu-text:after{
            background:<?php echo esc_attr(get_theme_mod('menus_link_hover_color', '#35ac39')); ?>!important; 
            width: 100%;
        }
        .navbar.custom .nav .nav-item.active.current_page_ancestor .nav-link,body .navbar .nav .nav-item.active .nav-link  {
            background-color: <?php echo esc_attr(get_theme_mod('menus_link_hover_color', '#35ac39')); ?>!important;
        }

        .navbar.custom .nav .nav-item.active .nav-link,body .navbar .nav .nav-item.active .nav-link {
            color: <?php echo esc_attr(get_theme_mod('menus_link_active_color', '#ffffff')); ?>!important;
        }
        
        /* Submenus */
        .nav.navbar-nav .dropdown-item, .nav.navbar-nav .dropdown-menu {
            background-color: <?php echo esc_attr(get_theme_mod('submenus_background_color', '#000000')); ?>;
        }
        .nav.navbar-nav a.dropdown-item,.nav.navbar-nav ul.dropdown-menu .menu-item-has-children.active ul.dropdown-menu a.dropdown-item{
            color: <?php echo esc_attr(get_theme_mod('submenus_link_color', '#ffffff')); ?>!important;
        }
        .nav.navbar-nav a.dropdown-item:hover,.nav.navbar-nav ul.dropdown-menu .current_page_item.active a.dropdown-item,.nav.navbar-nav a.bg-light.dropdown-item,.nav.navbar-nav ul.dropdown-menu .menu-item-has-children.active a.dropdown-item,.nav.navbar-nav ul.dropdown-menu .menu-item-has-children.active ul.dropdown-menu li.active a.dropdown-item, body .navbar-nav:not(.sm-collapsible) .sm-nowrap > li.show > .dropdown-item , body .navbar .nav .nav-item .dropdown:hover > a{
    
            color: <?php echo esc_attr(get_theme_mod('submenus_link_hover_color', '#35ac39')); ?> !important;

        }
        .navbar ul.dropdown-menu li.menu-item a .menu-text:hover:after{
            background: <?php echo esc_attr(get_theme_mod('submenus_link_hover_color', '#35ac39')); ?>;
        }
        body .navbar .nav .nav-item.active li.active a.dropdown-item .nav-link:hover{
         color: <?php echo esc_attr(get_theme_mod('menus_link_active_color', '#ffffff')); ?>!important;
        }

        .nav.navbar-nav .dropdown-item:focus, .nav.navbar-nav .dropdown-item:hover
        {
            background-color: transparent;
        }

    <?php endif; ?>

    /* Banner */
    .page-title-section .page-title h1{
        color: <?php echo esc_attr(get_theme_mod('banner_text_color', '#fff')); ?> !Important;
    }

    /* Breadcrumb */
    <?php
    $enable_brd_link_clr_setting = get_theme_mod('enable_brd_link_clr_setting', false);
    if ($enable_brd_link_clr_setting == true):
        ?>
        .page-breadcrumb.text-center span a
        {
            color: <?php echo esc_attr(get_theme_mod('breadcrumb_title_link_color', '#ffffff')); ?> !important;
        }
        .page-breadcrumb.text-center span a:hover {
            color: <?php echo esc_attr(get_theme_mod('breadcrumb_title_link_hover_color', '#35ac39')); ?> !important;
        }
    <?php endif; ?>

    /* Content */
    <?php
    $enable_content_link_clr_setting = get_theme_mod('content_clr_enable', false);
    if ($enable_content_link_clr_setting == true):?>
        body h1 {
            color: <?php echo esc_attr(get_theme_mod('h1_color', '#0a0a0a')); ?> ;
        } 
        body .sidebar h1{color:#0a0a0a;} 
        body.dark .sidebar h1{color:#ffffff;}  
        body .section-header h2:not(.testimonial h2, .funfact h2, h2.widget-title), body h2:not(.testimonial h2, .funfact h2, h2.widget-title, .widget.widget_block h2){
            color: <?php echo esc_attr(get_theme_mod('h2_color', '#0a0a0a')); ?>;
        }
        body h3 {
            color: <?php echo esc_attr(get_theme_mod('h3_color', '#0a0a0a')); ?>;
        }
        body .sidebar h3{color:#0a0a0a;} 
        body.dark .sidebar h3{color:#ffffff;} 
        body .entry-header h4 > a:not(.blog-title), body h4, .section-space.contact-detail .contact-area h4,.services h4.entry-title a,body .team .name{
            color: <?php echo esc_attr(get_theme_mod('h4_color', '#0a0a0a')); ?>;
        }
        body .sidebar h4{color:#0a0a0a;} 
        body.dark .sidebar h4{color:#ffffff;} 
        body .blog-author h5, body .comment-detail h5, body h5{
            color: <?php echo esc_attr(get_theme_mod('h5_color', '#0a0a0a')); ?>;
        }
        body .sidebar h5{color:#0a0a0a;} 
        body.dark .sidebar h5{color:#ffffff;} 
        .section-header h5.section-subtitle{
            color: <?php echo esc_attr(get_theme_mod('h5_color', '#0a0a0a')); ?>;
        }

        body .product-price h5 > a{
            color: <?php echo esc_attr(get_theme_mod('h5_color', '#0a0a0a')); ?>;
        }

        body h6, .section-space.contact-detail .contact-area h6 {
            color: <?php echo esc_attr(get_theme_mod('h6_color', '#0a0a0a')); ?>;
        }
        body .sidebar h6{color:#0a0a0a;} 
        body.dark .sidebar h6{color:#ffffff;} 
        p:not(.woocommerce-mini-cart__total, .slider-caption .description, .site-description, .testimonial p, .funfact p,.sidebar p,.footer-sidebar p){
            color: <?php echo esc_attr(get_theme_mod('p_color', '#888888')); ?>;
        }
    <?php endif;?>
   

    /* Sidebar */
    <?php if (get_theme_mod('apply_sibar_link_hover_clr_enable', false) == true): ?>
        body .sidebar .widget .widget-title,body .sidebar .widget.widget_block :is(h1,h2,h3,h4,h5,h6),body .sidebar .widget .wp-block-search__label
         {
            color: <?php echo esc_attr(get_theme_mod('sidebar_widget_title_color', '#0a0a0a')); ?>;
        }
        body .sidebar p, body .sidebar .wp-block-latest-posts__post-excerpt {
            color: <?php echo esc_attr(get_theme_mod('sidebar_widget_text_color', '#727272')); ?>!important;
        }
        body .sidebar a {
            color: <?php echo esc_attr(get_theme_mod('sidebar_widget_link_color', '#0a0a0a')); ?> !important;
        }
        body .sidebar.s-l-space .sidebar a:hover, body .sidebar .widget a:hover, body .sidebar .widget a:focus {
            color: <?php echo esc_attr(get_theme_mod('sidebar_widget_link_hover_color', '#00BFFF')); ?> !important;
        }
    <?php endif; ?>

    /* Footer Widgets */
    <?php if (get_theme_mod('apply_ftrsibar_link_hover_clr_enable', false) == true) { ?>
        body .site-footer {
            background-color: <?php echo esc_attr(get_theme_mod('footer_widget_background_color', '#21202e')); ?>;
        }
        .footer-sidebar .widget .widget-title, .footer-sidebar .widget.widget_block :is(h1,h2,h3,h4,h5,h6), 
        .footer-sidebar .widget .wp-block-search__label{
            color: <?php echo esc_attr(get_theme_mod('footer_widget_title_color', '#ffffff')); ?> !important;
        }
        body .footer-sidebar .widget.widget_block h1:after,body .footer-sidebar .widget.widget_block h2:after,
        body .footer-sidebar .widget.widget_block h3:after,body .footer-sidebar .widget.widget_block h4:after,
        body .footer-sidebar .widget.widget_block h5:after,body .footer-sidebar .widget.widget_block h6:after,
        body .footer-sidebar .widget .wp-block-search__label:after{
            background-color: <?php echo esc_attr(get_theme_mod('footer_widget_title_color', '#ffffff')); ?> !important;
        }
        body .footer-sidebar p,  body .footer-sidebar .widget, body .footer-sidebar .widget_text p {
            color: <?php echo esc_attr(get_theme_mod('footer_widget_text_color', '#ffffff')); ?>;
        }
        body .footer-sidebar .widget a, body .footer-sidebar .widget_recent_entries .post-date  {
            color: <?php echo esc_attr(get_theme_mod('footer_widget_link_color', '#ffffff')); ?>;
        }
        .footer-sidebar .widget li:before {
            color: <?php echo esc_attr(get_theme_mod('footer_widget_link_color', '#ffffff')); ?> !important;
        }
        body .footer-sidebar .widget a:hover{
            color: <?php echo esc_attr(get_theme_mod('footer_widget_link_hover_color', '#35ac39')); ?>;
        }
    <?php } else { ?>
        .site-footer p {
            color: #fff;
        }
    <?php } 
    if (get_theme_mod('search_btn_enable', false) == true ){ if(!is_rtl()) { ?>
    .cart-header {
        border-left: 1px solid #747474;
        padding: 0 0 0 0.5rem;
    } 
    <?php } else{?>
        .cart-header {
        border-right: 1px solid #747474;
        padding: 0 0 0 0.5rem;
    } 
    <?php }
    }?>
.custom-logo{width: <?php echo intval(get_theme_mod('spiko_logo_length',212));?>px; height: auto;}
.spiko_header_btn{ -webkit-border-radius: <?php echo intval(get_theme_mod('after_menu_btn_border',0));?>px;border-radius: <?php echo intval(get_theme_mod('after_menu_btn_border',0));?>px;}
#content .container{max-width: <?php echo intval(get_theme_mod('container_width','1140'));?>px;}
#wrapper .site-footer .container{max-width: 1140px;}
</style>PK�uKX��O���spiko/inc/scripts/script.php<?php

function spiko_enqueue_script() {

    $suffix = ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) ? '' : '.min';

    wp_enqueue_style('bootstrap', SPIKO_TEMPLATE_DIR_URI . '/assets/css/bootstrap' . $suffix . '.css', array(), '4.0.0');
    wp_style_add_data('bootstrap', 'rtl', 'replace');
    wp_enqueue_style('spiko-style', get_stylesheet_uri());
    wp_style_add_data('spiko-style', 'rtl', 'replace');
    wp_enqueue_style('jquery-starrtment', SPIKO_TEMPLATE_DIR_URI . '/assets/css/jquery.smartmenus.bootstrap-4.css');
    wp_style_add_data('jquery-starrtment', 'rtl', 'replace');   
    wp_enqueue_style('owl', SPIKO_TEMPLATE_DIR_URI. '/assets/css/owl.carousel.css');
    wp_enqueue_style('font-awesome', SPIKO_TEMPLATE_DIR_URI . '/assets/css/font-awesome/css/font-awesome' . $suffix . '.css', array(), '');
    
   if ( ! function_exists( 'spiko_plus_activate' ) ):
        require_once('custom_style.php');    
        if (get_theme_mod('custom_color_enable') == true) {
            add_action('wp_footer', 'spiko_custom_light');
        } else {
            wp_enqueue_style('spiko-default', SPIKO_TEMPLATE_DIR_URI . '/assets/css/default.css');
        }
        wp_enqueue_script('spiko-custom-js', SPIKO_TEMPLATE_DIR_URI . '/assets/js/custom.js', array('jquery'), '', true);    
    endif;

//js file
    wp_enqueue_script('spiko-widget-custom-js', SPIKO_TEMPLATE_DIR_URI . '/assets/js/widget-custom.js', array('jquery'), '', true);
    wp_enqueue_script('bootstrap', SPIKO_TEMPLATE_DIR_URI . '/assets/js/bootstrap' . $suffix . '.js', array('jquery'), '', true);
    wp_enqueue_script('jquery-menu', SPIKO_TEMPLATE_DIR_URI . '/assets/js/smartmenus/jquery.smartmenus.js', array('jquery'), '', true);
    wp_enqueue_script('jquery-menu-bootstrap', SPIKO_TEMPLATE_DIR_URI . '/assets/js/smartmenus/jquery.smartmenus.bootstrap-4.js', array('jquery'), '', true);
    wp_enqueue_script('owl', SPIKO_TEMPLATE_DIR_URI. '/assets/js/owl.carousel' . $suffix . '.js', array('jquery'), '', true);
    
    wp_enqueue_script('spiko-video-slider-js', SPIKO_TEMPLATE_DIR_URI . '/assets/js/jquery.mb.YTPlayer.js');    
    if (is_singular() && comments_open() && get_option('thread_comments')) {
        wp_enqueue_script('comment-reply');
    }
}
add_action('wp_enqueue_scripts', 'spiko_enqueue_script');

/**
* Added skip link focus
*/
function spiko_skip_link_fn() {
?>
<script>
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
</script>
<?php
}
add_action( 'wp_print_footer_scripts', 'spiko_skip_link_fn' );


/**
* Added Close toggle after last menu's link focus
*/
function spiko_close_toggle_link_fn() {?>
    <script>

    jQuery('a,input').bind('focus', function() {
             if(!jQuery(this).closest(".menu-item").length ) {
                jQuery("li.dropdown ul").css("display", "none");
            }
    });  
       
    jQuery('a,input').bind('focus', function() {
    if(!jQuery(this).closest(".menu-item").length && !jQuery(this).closest(".search-box-outer").length && ( jQuery(window).width() <= 992) ) {
                jQuery('.navbar-collapse').removeClass('show');
        }
    })
    </script>
<?php
}
add_action( 'wp_print_footer_scripts', 'spiko_close_toggle_link_fn' );

if ( ! function_exists( 'spiko_plus_activate' ) ):

    function spiko_enqueue_scripts(){
    wp_enqueue_style('spiko-customize-css', SPIKO_TEMPLATE_DIR_URI . '/assets/css/spiko-customize.css');
    }
    add_action( 'customize_controls_enqueue_scripts', 'spiko_enqueue_scripts' );


    //Load script at admin side
    function spiko_admin_scripts() {
        wp_enqueue_script( 'spiko-admin-script', SPIKO_TEMPLATE_DIR_URI . '/assets/js/admin.js', array('jquery'));
    }
    add_action( 'customize_controls_enqueue_scripts', 'spiko_admin_scripts');
endif;
?>
PK�uKX�8m�	�	spiko/inc/widgets/sidebars.php<?php

add_action('widgets_init', 'spiko_widgets_init');

function spiko_widgets_init() {

    /* sidebar */

    register_sidebar(array(
        'name' => esc_html__('Sidebar widget area', 'spiko' ),
        'id' => 'sidebar-1',
        'description' => esc_html__('Sidebar widget area', 'spiko' ),
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget' => '</aside>',
        'before_title' => '<h2 class="widget-title">',
        'after_title' => '</h2>',
    ));

    register_sidebar(array(
        'name' => esc_html__('Footer widget 1', 'spiko' ),
        'id' => 'footer-sidebar-1',
        'description' => esc_html__('Footer widget area 1', 'spiko' ),
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget' => '</aside>',
        'before_title' => '<h2 class="widget-title">',
        'after_title' => '</h2>',
    ));

    register_sidebar(array(
        'name' => esc_html__('Footer widget 2', 'spiko' ),
        'id' => 'footer-sidebar-2',
        'description' => esc_html__('Footer widget area 2', 'spiko' ),
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget' => '</aside>',
        'before_title' => '<h2 class="widget-title">',
        'after_title' => '</h2>',
    ));

    register_sidebar(array(
        'name' => esc_html__('Footer widget 3', 'spiko' ),
        'id' => 'footer-sidebar-3',
        'description' => esc_html__('Footer widget area 3', 'spiko' ),
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget' => '</aside>',
        'before_title' => '<h2 class="widget-title">',
        'after_title' => '</h2>',
    ));

    register_sidebar(array(
        'name' => esc_html__('Footer widget 4', 'spiko' ),
        'id' => 'footer-sidebar-4',
        'description' => esc_html__('Footer widget 4', 'spiko' ),
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget' => '</aside>',
        'before_title' => '<h2 class="widget-title">',
        'after_title' => '</h2>',
    ));

    register_sidebar(array(
        'name' => esc_html__('WooCommerce sidebar widget area', 'spiko' ),
        'id' => 'woocommerce',
        'description' => esc_html__('WooCommerce sidebar widget area', 'spiko' ),
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget' => '</aside>',
        'before_title' => '<h2 class="widget-title">',
        'after_title' => '</h2>',
    ));
}PK�uKX��
>��spiko/languages/spiko.pot# Spiko WordPress Pot
# Copyright 2021 ...
# This file is distributed under the GNU General Public License v3 or later.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Spice "
"Spiko WordPress Pot v1.0.0\n"
"Report-Msgid-Bugs-To: "
"Translator Name "
"<translations@example.com>\n"
"POT-Creation-Date: "
"2023-07-06 18:49+0530\n"
"PO-Revision-Date: \n"
"Last-Translator: Your Name "
"<you@example.com>\n"
"Language-Team: Your Team "
"<translations@example.com>\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; "
"charset=UTF-8\n"
"Content-Transfer-Encoding: "
"8bit\n"
"Plural-Forms: nplurals=2; "
"plural=n != 1;\n"
"X-Textdomain-Support: yesX-"
"Generator: Poedit 1.6.4\n"
"X-Poedit-SourceCharset: "
"UTF-8\n"
"X-Poedit-KeywordsList: __;_e;"
"esc_html_e;esc_html_x:1,2c;"
"esc_html__;esc_attr_e;"
"esc_attr_x:1,2c;esc_attr__;"
"_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2;_x:1,2c;"
"_n:1,2;_n_noop:1,2;"
"__ngettext:1,2;"
"__ngettext_noop:1,2;_c,"
"_nc:4c,1,2\n"
"X-Poedit-Basepath: ..\n"
"X-Generator: Poedit 3.2.2\n"
"X-Poedit-SearchPath-0: .\n"

#: 404.php:15
msgid "404"
msgstr ""

#: 404.php:16
msgid ""
"Oops! Page is not available"
msgstr ""

#: 404.php:17
msgid ""
"We're not being able to find "
"the page you're looking for"
msgstr ""

#: 404.php:19
msgid "Back to Homepage"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:70
#: admin/inc/include-companion.php:41
#: admin/inc/plugin-include-control.php:40
msgid "Installing"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:71
#: admin/inc/include-companion.php:42
#: admin/inc/plugin-include-control.php:41
#: inc/customizer-notify/spiko-customizer-notify.php:109
msgid "Activating"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:72
#: admin/inc/include-companion.php:43
#: admin/inc/plugin-include-control.php:42
msgid "Error"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:110
msgid "View Theme Info"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:118
#, php-format
msgid "About %1$s %2$s"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:119
#, php-format
msgid "Welcome to %1$s %2$s"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:132
#, php-format
msgid ""
"Spiko theme is installed. To "
"take full advantage of the "
"features this theme has to "
"offer visit our %1$swelcome "
"page%2$s"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:133
msgid ""
"Get started with Spiko theme"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:245
msgid "Getting Started"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:251
#: inc/customizer/customizer-recommended-plugin.php:13
msgid "Recommended Actions"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:329
#, php-format
msgid "Install %s now"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:331
#: admin/inc/include-companion.php:81
msgid "Install and activate"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:348
#, php-format
msgid "Activate %s now"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:350
#: inc/class-tgm-plugin-activation.php:2726
#: inc/customizer/customizer-recommended-plugin.php:16
msgid "Activate"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:353
#: inc/class-tgm-plugin-activation.php:2321
msgid "Active"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:500
#: admin/inc/include-companion.php:80
#: admin/inc/include-companion.php:97
#: functions.php:196
msgid "Spice Box"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:502
msgid ""
"To access the advanced "
"Frontpage sections and the "
"other features, please "
"install the Spice Box plugin."
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:506
#: functions.php:191
msgid "Contact Form 7"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:508
msgid ""
"To display the contact form, "
"please install the Contact "
"Form 7 plugin."
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:512
#: functions.php:201
msgid "Unique Headers"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:514
msgid ""
"You can add different banner "
"image for a different page "
"or post according to you."
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:517
msgid "WooCommerce"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:519
msgid ""
"To create a shop page you "
"just need to install this "
"plugin & activate it."
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:523
#: functions.php:206
#: inc/customizer/general-settings.php:97
msgid "Yoast SEO"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:525
msgid ""
"To display breadcrumbs, "
"please install the Yoast SEO "
"plugin."
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:529
#: functions.php:211
msgid "Spice Post Slider"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:531
msgid ""
"To display the posts in "
"beautiful slider with "
"multiple options you just "
"need to install & activate "
"this plugin."
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:535
#: functions.php:216
msgid "Spice Social Share"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:537
msgid ""
"To add social share buttons "
"to your posts you just need "
"to install & activate this "
"plugin."
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:540
#: functions.php:221
msgid "Seo Optimized Images"
msgstr ""

#: admin/inc/class-spicethemes-about-page.php:542
msgid ""
"It is recommended that you "
"install & activate the Seo "
"Optimized Images plugin to "
"dynamically insert SEO "
"Friendly alt attributes and "
"title attributes to your "
"Images."
msgstr ""

#: admin/inc/include-companion.php:79
msgid ""
"To take advantage of this "
"theme's features in the "
"customizer you need to "
"install the Spice Box plugin."
msgstr ""

#: admin/inc/include-companion.php:80
msgid "Install Spice Box Now"
msgstr ""

#: admin/inc/include-companion.php:96
msgid ""
"You have installed the Spice "
"Box plugin. To take "
"advantage of this theme's "
"features in the customizer, "
"you need to activate it."
msgstr ""

#: admin/inc/include-companion.php:97
msgid "Activate Spice Box now"
msgstr ""

#: admin/inc/include-companion.php:98
msgid "Activate now"
msgstr ""

#: admin/tab-pages/getting-started.php:10
msgid ""
"Spiko Theme Configuration"
msgstr ""

#: admin/tab-pages/getting-started.php:28
msgid ""
"Additional features in Spiko "
"Plus"
msgstr ""

#: admin/tab-pages/getting-started.php:32
msgid "Unlimited slides"
msgstr ""

#: admin/tab-pages/getting-started.php:35
msgid "Unlimited services"
msgstr ""

#: admin/tab-pages/getting-started.php:38
msgid "Boxed layout support"
msgstr ""

#: admin/tab-pages/getting-started.php:41
msgid "Portfolio section"
msgstr ""

#: admin/tab-pages/getting-started.php:44
msgid "Funfact section"
msgstr ""

#: admin/tab-pages/getting-started.php:47
msgid "Google Maps section"
msgstr ""

#: admin/tab-pages/getting-started.php:50
msgid "Client section"
msgstr ""

#: admin/tab-pages/getting-started.php:53
msgid "Multiple Blog templates"
msgstr ""

#: admin/tab-pages/getting-started.php:57
msgid "WPML support"
msgstr ""

#: admin/tab-pages/getting-started.php:61
msgid ""
"Drag and drop section orders"
msgstr ""

#: admin/tab-pages/getting-started.php:65
msgid ""
"Team section with grid effect"
msgstr ""

#: admin/tab-pages/getting-started.php:69
msgid ""
"Shop section with unlimited "
"items"
msgstr ""

#: admin/tab-pages/getting-started.php:72
msgid ""
"Shop section with carousel "
"effect"
msgstr ""

#: admin/tab-pages/getting-started.php:75
msgid ""
"Testimonial section with "
"grid effect"
msgstr ""

#: admin/tab-pages/getting-started.php:78
msgid ""
"Homepage Sections Before/"
"After Hooks"
msgstr ""

#: admin/tab-pages/getting-started.php:82
msgid ""
"Homepage Sections Shortcode"
msgstr ""

#: admin/tab-pages/getting-started.php:92
msgid ""
"Links to Customizer Settings"
msgstr ""

#: admin/tab-pages/getting-started.php:96
msgid "Site Logo"
msgstr ""

#: admin/tab-pages/getting-started.php:99
#: inc/customizer/customizer_sections_settings.php:45
msgid "Blog Options"
msgstr ""

#: admin/tab-pages/getting-started.php:102
#: inc/customizer/customizer_color_back_settings.php:586
#: inc/customizer/customizer_typography.php:1713
#: inc/customizer/general-settings.php:305
#: inc/customizer/general-settings.php:318
msgid "Footer Widgets"
msgstr ""

#: admin/tab-pages/getting-started.php:105
#: inc/customizer/customizer_typography.php:437
msgid "Homepage Sections"
msgstr ""

#: admin/tab-pages/getting-started.php:108
#: inc/customizer/general-settings.php:14
msgid "General Settings"
msgstr ""

#: admin/tab-pages/getting-started.php:111
#: inc/customizer/customizer_color_back_settings.php:11
msgid "Colors & Background"
msgstr ""

#: admin/tab-pages/getting-started.php:114
#: inc/customizer/customizer_typography.php:7
msgid "Typography Settings"
msgstr ""

#: admin/tab-pages/getting-started.php:117
#: inc/customizer/customizer_theme_style.php:59
msgid "Theme Style Settings"
msgstr ""

#: admin/tab-pages/getting-started.php:124
msgid "Useful Links"
msgstr ""

#: admin/tab-pages/getting-started.php:128
msgid "Spiko Demo"
msgstr ""

#: admin/tab-pages/getting-started.php:131
msgid "Spiko Plus Demo"
msgstr ""

#: admin/tab-pages/getting-started.php:135
msgid "Spiko Theme Support"
msgstr ""

#: admin/tab-pages/getting-started.php:139
msgid ""
"Your feedback is valuable to "
"us"
msgstr ""

#: admin/tab-pages/getting-started.php:143
msgid "Spiko Plus Details"
msgstr ""

#: admin/tab-pages/getting-started.php:147
msgid "Pre-sales enquiry"
msgstr ""

#: admin/tab-pages/getting-started.php:151
msgid "Free vs Plus"
msgstr ""

#: admin/tab-pages/getting-started.php:155
msgid "Changelog"
msgstr ""

#: comments.php:29
msgid "1 comment"
msgstr ""

#: comments.php:35
#, php-format
msgctxt "comments title"
msgid "%1$s comment"
msgid_plural "%1$s comments"
msgstr[0] ""
msgstr[1] ""

#: comments.php:51
msgid "Comments are closed."
msgstr ""

#: comments.php:59
msgid "Your Name"
msgstr ""

#: comments.php:62
msgid "Your Email"
msgstr ""

#: comments.php:66
msgid "Website"
msgstr ""

#: comments.php:79
msgid "Message"
msgstr ""

#: comments.php:81
msgid "Logged in as"
msgstr ""

#: comments.php:81
msgid ""
"Log out from this Account"
msgstr ""

#: comments.php:81
msgid "Log out"
msgstr ""

#: comments.php:83
msgid "Send Message"
msgstr ""

#: comments.php:86
msgid "Leave a Reply"
msgstr ""

#: functions.php:62
msgid "Page"
msgstr ""

#: functions.php:103
msgid "Primary"
msgstr ""

#: functions.php:158
msgid "Read More"
msgstr ""

#: header.php:25
msgid "Skip to content"
msgstr ""

#: inc/breadcrumbs/breadcrumbs.php:51
#: inc/breadcrumbs/breadcrumbs.php:60
#: inc/customizer/blog-page-options.php:12
#: inc/menu/default_menu_walker.php:20
msgid "Home"
msgstr ""

#: inc/breadcrumbs/breadcrumbs.php:85
msgid "Error 404"
msgstr ""

#: inc/breadcrumbs/breadcrumbs.php:89
msgid "Category: "
msgstr ""

#: inc/breadcrumbs/breadcrumbs.php:101
msgid "Tag: "
msgstr ""

#: inc/class-tgm-plugin-activation.php:327
msgid ""
"Install Required Plugins"
msgstr ""

#: inc/class-tgm-plugin-activation.php:328
msgid "Install Plugins"
msgstr ""

#: inc/class-tgm-plugin-activation.php:330
#, php-format
msgid "Installing Plugin: %s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:332
#, php-format
msgid "Updating Plugin: %s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:333
msgid ""
"Something went wrong with "
"the plugin API."
msgstr ""

#: inc/class-tgm-plugin-activation.php:336
#, php-format
msgid ""
"This theme requires the "
"following plugin: %1$s."
msgid_plural ""
"This theme requires the "
"following plugins: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:342
#, php-format
msgid ""
"This theme recommends the "
"following plugin: %1$s."
msgid_plural ""
"This theme recommends the "
"following plugins: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:348
#, php-format
msgid ""
"The following plugin needs "
"to be updated to its latest "
"version to ensure maximum "
"compatibility with this "
"theme: %1$s."
msgid_plural ""
"The following plugins need "
"to be updated to their "
"latest version to ensure "
"maximum compatibility with "
"this theme: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:354
#, php-format
msgid ""
"There is an update available "
"for %1$s."
msgid_plural ""
"There are updates available "
"for the following plugins: "
"%1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:360
#, php-format
msgid ""
"The following required "
"plugin is currently "
"inactive: %1$s."
msgid_plural ""
"The following required "
"plugins are currently "
"inactive: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:366
#, php-format
msgid ""
"The following recommended "
"plugin is currently "
"inactive: %1$s."
msgid_plural ""
"The following recommended "
"plugins are currently "
"inactive: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:371
msgid "Begin installing plugin"
msgid_plural ""
"Begin installing plugins"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:376
msgid "Begin updating plugin"
msgid_plural ""
"Begin updating plugins"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:381
msgid "Begin activating plugin"
msgid_plural ""
"Begin activating plugins"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:385
msgid ""
"Return to Required Plugins "
"Installer"
msgstr ""

#: inc/class-tgm-plugin-activation.php:386
#: inc/class-tgm-plugin-activation.php:827
#: inc/class-tgm-plugin-activation.php:2533
#: inc/class-tgm-plugin-activation.php:3580
msgid "Return to the Dashboard"
msgstr ""

#: inc/class-tgm-plugin-activation.php:387
#: inc/class-tgm-plugin-activation.php:3159
msgid ""
"Plugin activated "
"successfully."
msgstr ""

#: inc/class-tgm-plugin-activation.php:388
#: inc/class-tgm-plugin-activation.php:2952
msgid ""
"The following plugin was "
"activated successfully:"
msgid_plural ""
"The following plugins were "
"activated successfully:"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:390
#, php-format
msgid ""
"No action taken. Plugin %1$s "
"was already active."
msgstr ""

#: inc/class-tgm-plugin-activation.php:392
#, php-format
msgid ""
"Plugin not activated. A "
"higher version of %s is "
"needed for this theme. "
"Please update the plugin."
msgstr ""

#: inc/class-tgm-plugin-activation.php:394
#, php-format
msgid ""
"All plugins installed and "
"activated successfully. %1$s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:395
msgid "Dismiss this notice"
msgstr ""

#: inc/class-tgm-plugin-activation.php:396
msgid ""
"There are one or more "
"required or recommended "
"plugins to install, update "
"or activate."
msgstr ""

#: inc/class-tgm-plugin-activation.php:397
msgid ""
"Please contact the "
"administrator of this site "
"for help."
msgstr ""

#: inc/class-tgm-plugin-activation.php:522
msgid ""
"This plugin needs to be "
"updated to be compatible "
"with your theme."
msgstr ""

#: inc/class-tgm-plugin-activation.php:523
msgid "Update Required"
msgstr ""

#: inc/class-tgm-plugin-activation.php:934
msgid ""
"The remote plugin package "
"does not contain a folder "
"with the desired slug and "
"renaming did not work."
msgstr ""

#: inc/class-tgm-plugin-activation.php:934
#: inc/class-tgm-plugin-activation.php:937
msgid ""
"Please contact the plugin "
"provider and ask them to "
"package their plugin "
"according to the WordPress "
"guidelines."
msgstr ""

#: inc/class-tgm-plugin-activation.php:937
msgid ""
"The remote plugin package "
"consists of more than one "
"file, but the files are not "
"packaged in a folder."
msgstr ""

#: inc/class-tgm-plugin-activation.php:1121
#: inc/class-tgm-plugin-activation.php:2948
msgctxt ""
"plugin A *and* plugin B"
msgid "and"
msgstr ""

#: inc/class-tgm-plugin-activation.php:1982
#, php-format
msgid "TGMPA v%s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2273
msgid "Required"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2276
msgid "Recommended"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2292
msgid "WordPress Repository"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2295
msgid "External Source"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2298
msgid "Pre-Packaged"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2315
msgid "Not Installed"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2319
msgid ""
"Installed But Not Activated"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2327
msgid ""
"Required Update Not Available"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2330
msgid "Requires Update"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2333
msgid "Update recommended"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2342
#, php-format
msgctxt "Install/Update Status"
msgid "%1$s, %2$s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2388
#, php-format
msgctxt "plugins"
msgid ""
"All <span "
"class=\"count\">(%s)</span>"
msgid_plural ""
"All <span "
"class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:2392
#, php-format
msgid ""
"To Install <span "
"class=\"count\">(%s)</span>"
msgid_plural ""
"To Install <span "
"class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:2396
#, php-format
msgid ""
"Updates Available <span "
"class=\"count\">(%s)</span>"
msgid_plural ""
"Updates Available <span "
"class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:2400
#, php-format
msgid ""
"To Activate <span "
"class=\"count\">(%s)</span>"
msgid_plural ""
"To Activate <span "
"class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""

#: inc/class-tgm-plugin-activation.php:2482
msgctxt ""
"as in: \"version nr unknown\""
msgid "unknown"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2490
msgid "Installed version:"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2498
msgid ""
"Minimum required version:"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2510
msgid "Available version:"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2533
msgid ""
"No plugins to install, "
"update or activate."
msgstr ""

#: inc/class-tgm-plugin-activation.php:2547
msgid "Plugin"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2548
msgid "Source"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2549
msgid "Type"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2553
msgid "Version"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2554
msgid "Status"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2603
#, php-format
msgid "Install %2$s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2608
#, php-format
msgid "Update %2$s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2614
#, php-format
msgid "Activate %2$s"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2684
msgid ""
"Upgrade message from the "
"plugin author:"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2717
msgid "Install"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2723
msgid "Update"
msgstr ""

#: inc/class-tgm-plugin-activation.php:2757
msgid ""
"No plugins were selected to "
"be installed. No action "
"taken."
msgstr ""

#: inc/class-tgm-plugin-activation.php:2759
msgid ""
"No plugins were selected to "
"be updated. No action taken."
msgstr ""

#: inc/class-tgm-plugin-activation.php:2800
msgid ""
"No plugins are available to "
"be installed at this time."
msgstr ""

#: inc/class-tgm-plugin-activation.php:2802
msgid ""
"No plugins are available to "
"be updated at this time."
msgstr ""

#: inc/class-tgm-plugin-activation.php:2908
msgid ""
"No plugins were selected to "
"be activated. No action "
"taken."
msgstr ""

#: inc/class-tgm-plugin-activation.php:2934
msgid ""
"No plugins are available to "
"be activated at this time."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3158
msgid ""
"Plugin activation failed."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3498
#, php-format
msgid ""
"Updating Plugin %1$s (%2$d/"
"%3$d)"
msgstr ""

#: inc/class-tgm-plugin-activation.php:3501
#, php-format
msgid ""
"An error occurred while "
"installing %1$s: "
"<strong>%2$s</strong>."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3503
#, php-format
msgid ""
"The installation of %1$s "
"failed."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3507
msgid ""
"The installation and "
"activation process is "
"starting. This process may "
"take a while on some hosts, "
"so please be patient."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3509
#, php-format
msgid ""
"%1$s installed and activated "
"successfully."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3509
#: inc/class-tgm-plugin-activation.php:3517
msgid "Show Details"
msgstr ""

#: inc/class-tgm-plugin-activation.php:3509
#: inc/class-tgm-plugin-activation.php:3517
msgid "Hide Details"
msgstr ""

#: inc/class-tgm-plugin-activation.php:3510
msgid ""
"All installations and "
"activations have been "
"completed."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3512
#, php-format
msgid ""
"Installing and Activating "
"Plugin %1$s (%2$d/%3$d)"
msgstr ""

#: inc/class-tgm-plugin-activation.php:3515
msgid ""
"The installation process is "
"starting. This process may "
"take a while on some hosts, "
"so please be patient."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3517
#, php-format
msgid ""
"%1$s installed successfully."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3518
msgid ""
"All installations have been "
"completed."
msgstr ""

#: inc/class-tgm-plugin-activation.php:3520
#, php-format
msgid ""
"Installing Plugin %1$s (%2$d/"
"%3$d)"
msgstr ""

#: inc/customizer/blog-options.php:13
msgid "Blog Page"
msgstr ""

#: inc/customizer/blog-options.php:23
msgid "excerpt"
msgstr ""

#: inc/customizer/blog-options.php:30
msgid "Choose Options"
msgstr ""

#: inc/customizer/blog-options.php:35
msgid "Excerpt"
msgstr ""

#: inc/customizer/blog-options.php:36
msgid "Full Content"
msgstr ""

#: inc/customizer/blog-options.php:51
msgid "Excerpt Length"
msgstr ""

#: inc/customizer/blog-options.php:63
msgid "Author"
msgstr ""

#: inc/customizer/blog-options.php:64
msgid "Category"
msgstr ""

#: inc/customizer/blog-options.php:65
msgid "Tag"
msgstr ""

#: inc/customizer/blog-options.php:77
msgid ""
"Drag And Drop To Rearrange"
msgstr ""

#: inc/customizer/blog-page-options.php:16
msgid "Main Title"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:13
#: inc/customizer/customizer-pro-feature.php:17
#: inc/customizer/customizer-pro-feature.php:21
#: inc/customizer/customizer-pro-feature.php:25
#: inc/customizer/customizer-pro-feature.php:29
#: inc/customizer/customizer-pro-feature.php:33
#: inc/customizer/customizer-pro-feature.php:37
#: inc/customizer/customizer-pro-feature.php:41
#: inc/customizer/customizer-pro-feature.php:45
#: inc/customizer/customizer-pro-feature.php:49
#: inc/customizer/customizer-pro-feature.php:53
#: inc/customizer/customizer-pro-feature.php:57
#: inc/customizer/customizer-pro-feature.php:61
#: inc/customizer/customizer-pro-feature.php:65
msgid "PRO"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:14
msgid "Advanced Hook Settings"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:18
msgid "Multiple Blog Templates"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:22
msgid "Portfolio Management"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:26
msgid "Slide Variations"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:30
msgid ""
"Create Unlimited Services"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:34
msgid "Callout Section"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:38
msgid "Manage Contact Details"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:42
msgid "Testimonial Variations"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:46
msgid "Client Section"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:50
msgid "Team Variations"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:54
msgid "Custom Color Schemes"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:58
msgid "Section Reordering"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:62
msgid "Sections Shortcode"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:66
msgid "Quality Support"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:69
msgid "UPGRADE TO PRO"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:76
msgid "View PRO Details"
msgstr ""

#: inc/customizer/customizer-pro-feature.php:101
msgid ""
"With individual hook "
"settings, you can insert "
"html or php code according "
"to your needs."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:102
msgid ""
"The theme comes with "
"multiple blog templates like "
"blog switcher, blog list "
"view, and blog masonry etc."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:103
msgid ""
"Create a professional-"
"looking portfolio."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:104
msgid ""
"PRO version comes with slide "
"variation options, so you "
"can adjust your content "
"through text alignment."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:105
msgid ""
"Add as many services as you "
"like. You can even display "
"each service on a separate "
"page."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:106
msgid ""
"Theme comes with a "
"beautifully designed section "
"where you can manage your "
"contact details."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:107
msgid ""
"Show all your team members, "
"clients, testimonials on "
"front page."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:108
msgid ""
"You can select amongst "
"predefined color skins, or "
"you can create your own "
"without writing any CSS code."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:109
msgid ""
"The layout manager will help "
"you rearrange all sections."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:110
msgid ""
"The theme comes with a "
"homepage sections shortcode "
"used to add the homepage "
"sections in other pages with "
"any combination."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:111
msgid ""
"Translation-ready, the theme "
"supports popular plugins "
"WPML and Polylang."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:112
msgid ""
"24/7 professional support "
"for Google Maps."
msgstr ""

#: inc/customizer/customizer-pro-feature.php:113
msgid ""
"Dedicated support, widget "
"and sidebar management."
msgstr ""

#: inc/customizer/customizer-recommended-plugin.php:9
#, php-format
msgid ""
"Install and activate the %s "
"plugin to take full "
"advantage of all the "
"features this theme has to "
"offer."
msgstr ""

#: inc/customizer/customizer-recommended-plugin.php:14
msgid "Recommended Plugin"
msgstr ""

#: inc/customizer/customizer-recommended-plugin.php:15
msgid "Install and Activate"
msgstr ""

#: inc/customizer/customizer-recommended-plugin.php:17
msgid "Deactivate"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:15
msgid "Background Image"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:22
#: inc/customizer/customizer_typography.php:54
msgid "Header"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:39
#: inc/customizer/customizer_color_back_settings.php:156
#: inc/customizer/customizer_color_back_settings.php:359
#: inc/customizer/customizer_color_back_settings.php:420
#: inc/customizer/customizer_color_back_settings.php:529
#: inc/customizer/customizer_color_back_settings.php:602
msgid ""
"Click here to apply the "
"below color settings"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:53
#: inc/customizer/customizer_typography.php:83
msgid "Site Title"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:79
#: inc/customizer/customizer_color_back_settings.php:383
#: inc/customizer/customizer_color_back_settings.php:565
#: inc/customizer/customizer_color_back_settings.php:650
msgid "Link Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:91
#: inc/customizer/customizer_color_back_settings.php:208
#: inc/customizer/customizer_color_back_settings.php:284
#: inc/customizer/customizer_color_back_settings.php:395
#: inc/customizer/customizer_color_back_settings.php:577
#: inc/customizer/customizer_color_back_settings.php:662
msgid "Link Hover Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:105
#: inc/customizer/customizer_typography.php:156
msgid "Site Tagline"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:131
#: inc/customizer/customizer_color_back_settings.php:553
#: inc/customizer/customizer_color_back_settings.php:638
msgid "Text Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:140
msgid "Primary Menu"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:170
#: inc/customizer/customizer_typography.php:229
msgid "Menus"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:196
#: inc/customizer/customizer_color_back_settings.php:272
msgid "Text/Link Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:220
msgid "Active Link Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:234
#: inc/customizer/customizer_typography.php:303
msgid "Submenus"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:260
#: inc/customizer/customizer_color_back_settings.php:614
msgid "Background Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:293
msgid "Banner"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:306
msgid "Banner Title"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:332
#: inc/customizer/customizer_color_back_settings.php:541
#: inc/customizer/customizer_color_back_settings.php:626
msgid "Title Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:346
msgid "Breadcrumb Title"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:404
#: inc/customizer/customizer_typography.php:611
msgid "Content"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:432
msgid "H1 Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:444
msgid "H2 Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:456
msgid "H3 Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:468
msgid "H4 Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:480
msgid "H5 Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:492
msgid "H6 Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:504
msgid "Paragraph Text Color"
msgstr ""

#: inc/customizer/customizer_color_back_settings.php:513
msgid "Sidebar"
msgstr ""

#: inc/customizer/customizer_sections_settings.php:59
msgid "Logo Width"
msgstr ""

#: inc/customizer/customizer_theme_style.php:11
msgid "Theme Layout"
msgstr ""

#: inc/customizer/customizer_theme_style.php:48
msgid "Layout style"
msgstr ""

#: inc/customizer/customizer_theme_style.php:71
msgid ""
"Enable custom color skin"
msgstr ""

#: inc/customizer/customizer_theme_style.php:85
msgid "Skin Color"
msgstr ""

#: inc/customizer/customizer_typography.php:31
msgid ""
"Performance(Google Font)"
msgstr ""

#: inc/customizer/customizer_typography.php:45
msgid ""
"Load Google Fonts Locally?"
msgstr ""

#: inc/customizer/customizer_typography.php:68
msgid ""
"Enable Header Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:110
#: inc/customizer/customizer_typography.php:183
#: inc/customizer/customizer_typography.php:256
#: inc/customizer/customizer_typography.php:330
#: inc/customizer/customizer_typography.php:397
#: inc/customizer/customizer_typography.php:496
#: inc/customizer/customizer_typography.php:570
#: inc/customizer/customizer_typography.php:668
#: inc/customizer/customizer_typography.php:742
#: inc/customizer/customizer_typography.php:816
#: inc/customizer/customizer_typography.php:890
#: inc/customizer/customizer_typography.php:965
#: inc/customizer/customizer_typography.php:1039
#: inc/customizer/customizer_typography.php:1114
#: inc/customizer/customizer_typography.php:1188
#: inc/customizer/customizer_typography.php:1256
#: inc/customizer/customizer_typography.php:1354
#: inc/customizer/customizer_typography.php:1430
#: inc/customizer/customizer_typography.php:1505
#: inc/customizer/customizer_typography.php:1600
#: inc/customizer/customizer_typography.php:1673
#: inc/customizer/customizer_typography.php:1769
#: inc/customizer/customizer_typography.php:1843
msgid "Font family"
msgstr ""

#: inc/customizer/customizer_typography.php:125
#: inc/customizer/customizer_typography.php:198
#: inc/customizer/customizer_typography.php:271
#: inc/customizer/customizer_typography.php:345
#: inc/customizer/customizer_typography.php:412
#: inc/customizer/customizer_typography.php:511
#: inc/customizer/customizer_typography.php:585
#: inc/customizer/customizer_typography.php:683
#: inc/customizer/customizer_typography.php:757
#: inc/customizer/customizer_typography.php:831
#: inc/customizer/customizer_typography.php:905
#: inc/customizer/customizer_typography.php:980
#: inc/customizer/customizer_typography.php:1055
#: inc/customizer/customizer_typography.php:1129
#: inc/customizer/customizer_typography.php:1204
#: inc/customizer/customizer_typography.php:1271
#: inc/customizer/customizer_typography.php:1369
#: inc/customizer/customizer_typography.php:1445
#: inc/customizer/customizer_typography.php:1520
#: inc/customizer/customizer_typography.php:1615
#: inc/customizer/customizer_typography.php:1688
#: inc/customizer/customizer_typography.php:1784
#: inc/customizer/customizer_typography.php:1858
msgid "Font size (px)"
msgstr ""

#: inc/customizer/customizer_typography.php:140
#: inc/customizer/customizer_typography.php:213
#: inc/customizer/customizer_typography.php:286
#: inc/customizer/customizer_typography.php:360
#: inc/customizer/customizer_typography.php:427
#: inc/customizer/customizer_typography.php:526
#: inc/customizer/customizer_typography.php:600
#: inc/customizer/customizer_typography.php:698
#: inc/customizer/customizer_typography.php:772
#: inc/customizer/customizer_typography.php:846
#: inc/customizer/customizer_typography.php:920
#: inc/customizer/customizer_typography.php:995
#: inc/customizer/customizer_typography.php:1070
#: inc/customizer/customizer_typography.php:1144
#: inc/customizer/customizer_typography.php:1219
#: inc/customizer/customizer_typography.php:1286
#: inc/customizer/customizer_typography.php:1385
#: inc/customizer/customizer_typography.php:1460
#: inc/customizer/customizer_typography.php:1535
#: inc/customizer/customizer_typography.php:1630
#: inc/customizer/customizer_typography.php:1703
#: inc/customizer/customizer_typography.php:1799
#: inc/customizer/customizer_typography.php:1873
msgid "Line height (px)"
msgstr ""

#: inc/customizer/customizer_typography.php:370
msgid "Slider"
msgstr ""

#: inc/customizer/customizer_typography.php:383
msgid ""
"Enable Slider Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:451
msgid ""
"Enable Homepage Sections "
"Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:468
msgid "Section Sub Title"
msgstr ""

#: inc/customizer/customizer_typography.php:542
msgid "Section Title"
msgstr ""

#: inc/customizer/customizer_typography.php:625
msgid ""
"Enable Content Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:641
#: inc/customizer/customizer_typography.php:1326
msgid "Heading 1 (H1)"
msgstr ""

#: inc/customizer/customizer_typography.php:715
#: inc/customizer/customizer_typography.php:1402
msgid "Heading 2 (H2)"
msgstr ""

#: inc/customizer/customizer_typography.php:789
#: inc/customizer/customizer_typography.php:1477
msgid "Heading 3 (H3)"
msgstr ""

#: inc/customizer/customizer_typography.php:863
msgid "Heading 4 (H4)"
msgstr ""

#: inc/customizer/customizer_typography.php:938
msgid "Heading 5 (H5)"
msgstr ""

#: inc/customizer/customizer_typography.php:1012
msgid "Heading 6 (H6)"
msgstr ""

#: inc/customizer/customizer_typography.php:1087
msgid "Paragraph"
msgstr ""

#: inc/customizer/customizer_typography.php:1161
#: inc/customizer/general-settings.php:169
msgid "Button Text"
msgstr ""

#: inc/customizer/customizer_typography.php:1228
msgid ""
"Blog/Archive/Single Post"
msgstr ""

#: inc/customizer/customizer_typography.php:1242
msgid ""
"Enable Blog/Archive/Single "
"Post Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:1296
msgid "Shop Page"
msgstr ""

#: inc/customizer/customizer_typography.php:1310
msgid ""
"Enable Shop Page Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:1327
msgid ""
"Only for product detail page"
msgstr ""

#: inc/customizer/customizer_typography.php:1403
msgid ""
"Only for product title in "
"Shop Page"
msgstr ""

#: inc/customizer/customizer_typography.php:1478
msgid ""
"Only for Product checkout "
"page"
msgstr ""

#: inc/customizer/customizer_typography.php:1544
msgid "Sidebar Widgets"
msgstr ""

#: inc/customizer/customizer_typography.php:1558
msgid ""
"Enable Sidebar Widgets "
"Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:1573
msgid "Sidebar Widget Title"
msgstr ""

#: inc/customizer/customizer_typography.php:1646
msgid "Sidebar Widget Content"
msgstr ""

#: inc/customizer/customizer_typography.php:1727
msgid ""
"Enable Footer Widgets "
"Typography"
msgstr ""

#: inc/customizer/customizer_typography.php:1742
msgid "Footer Widget Title"
msgstr ""

#: inc/customizer/customizer_typography.php:1816
msgid "Footer Widget Content"
msgstr ""

#: inc/customizer/general-settings.php:22
msgid "Preloader"
msgstr ""

#: inc/customizer/general-settings.php:38
msgid ""
"Enable/Disable Preloader"
msgstr ""

#: inc/customizer/general-settings.php:49
msgid "Sticky Header"
msgstr ""

#: inc/customizer/general-settings.php:65
msgid ""
"Enable/Disable Sticky Header"
msgstr ""

#: inc/customizer/general-settings.php:75
msgid "Breadcrumb settings"
msgstr ""

#: inc/customizer/general-settings.php:90
msgid "Breadcrumb type"
msgstr ""

#: inc/customizer/general-settings.php:91
msgid ""
"If you use other than "
"\"default\" one you will "
"need to install and activate "
"respective plugins "
"Breadcrumb NavXT, Yoast SEO "
"and Rank Math SEO"
msgstr ""

#: inc/customizer/general-settings.php:96
msgid "Default(Blank)"
msgstr ""

#: inc/customizer/general-settings.php:98
msgid "Rank Math"
msgstr ""

#: inc/customizer/general-settings.php:99
msgid "NavXT"
msgstr ""

#: inc/customizer/general-settings.php:107
msgid "Scroll to Top"
msgstr ""

#: inc/customizer/general-settings.php:123
msgid ""
"Enable/Disable Scroll to Top"
msgstr ""

#: inc/customizer/general-settings.php:134
#: inc/customizer/general-settings.php:149
msgid "After Menu"
msgstr ""

#: inc/customizer/general-settings.php:154
msgid "None"
msgstr ""

#: inc/customizer/general-settings.php:155
msgid "Button"
msgstr ""

#: inc/customizer/general-settings.php:156
#: inc/customizer/general-settings.php:235
msgid "HTML"
msgstr ""

#: inc/customizer/general-settings.php:184
msgid "Button Link"
msgstr ""

#: inc/customizer/general-settings.php:200
msgid "Open link in a new tab"
msgstr ""

#: inc/customizer/general-settings.php:216
msgid "Button Border Radius"
msgstr ""

#: inc/customizer/general-settings.php:251
msgid ""
"Enable/Disable Search Icon"
msgstr ""

#: inc/customizer/general-settings.php:267
msgid ""
"Enable/Disable Cart Icon"
msgstr ""

#: inc/customizer/general-settings.php:277
#: inc/customizer/general-settings.php:293
msgid "Container Width"
msgstr ""

#: inc/customizer/helper-function.php:14
#: inc/customizer/helper-function.php:20
msgid ""
"<i class=\"fa fa-angle-"
"double-left\"></i>"
msgstr ""

#: inc/customizer/helper-function.php:15
#: inc/customizer/helper-function.php:19
msgid ""
"<i class=\"fa fa-angle-"
"double-right\"></i>"
msgstr ""

#: inc/customizer/helper-function.php:39
#, php-format
msgid "%1$s  %2$s"
msgstr ""

#: inc/customizer/helper-function.php:167
msgid ""
"Proudly powered by <a "
"href=\"https://wordpress."
"org\">WordPress</a> | Theme: "
"<a href=\"https://"
"spicethemes.com/spiko-"
"wordpress-theme\" "
"rel=\"nofollow\">Spiko</a> "
"by <a href=\"https://"
"spicethemes.com\" "
"rel=\"nofollow\">Spicethemes</"
"a>"
msgstr ""

#: inc/customizer/single-blog-options.php:11
msgid "Single Post"
msgstr ""

#: inc/customizer/single-blog-options.php:26
msgid "Hide/Show Author"
msgstr ""

#: inc/customizer/single-blog-options.php:41
msgid "Hide/Show Date"
msgstr ""

#: inc/customizer/single-blog-options.php:56
msgid "Hide/Show Category"
msgstr ""

#: inc/customizer/single-blog-options.php:72
msgid "Hide/Show Tag"
msgstr ""

#: inc/customizer/single-blog-options.php:86
msgid ""
"Hide/Show Author Details"
msgstr ""

#: inc/header/header-nav.php:13
msgid "Toggle navigation"
msgstr ""

#: inc/header/header-nav.php:39
#: inc/header/header-nav.php:47
#: inc/header/header-nav.php:49
msgid "Search"
msgstr ""

#: inc/header/header-nav.php:76
#, php-format
msgid "%d <span>item</span>"
msgid_plural ""
"%d <span>items</span>"
msgstr[0] ""
msgstr[1] ""

#: inc/widgets/sidebars.php:10
#: inc/widgets/sidebars.php:12
msgid "Sidebar widget area"
msgstr ""

#: inc/widgets/sidebars.php:20
msgid "Footer widget 1"
msgstr ""

#: inc/widgets/sidebars.php:22
msgid "Footer widget area 1"
msgstr ""

#: inc/widgets/sidebars.php:30
msgid "Footer widget 2"
msgstr ""

#: inc/widgets/sidebars.php:32
msgid "Footer widget area 2"
msgstr ""

#: inc/widgets/sidebars.php:40
msgid "Footer widget 3"
msgstr ""

#: inc/widgets/sidebars.php:42
msgid "Footer widget area 3"
msgstr ""

#: inc/widgets/sidebars.php:50
#: inc/widgets/sidebars.php:52
msgid "Footer widget 4"
msgstr ""

#: inc/widgets/sidebars.php:60
#: inc/widgets/sidebars.php:62
msgid ""
"WooCommerce sidebar widget "
"area"
msgstr ""

#: searchform.php:2
msgctxt "placeholder"
msgid "Search"
msgstr ""

#: template-business.php:22
msgid ""
"This template shows the "
"homepage sections, and to "
"show these sections you have "
"to activate the companion "
"plugin."
msgstr ""

#: template-parts/auth-details.php:7
msgid "Written by:"
msgstr ""

#: template-parts/auth-details.php:15
msgid "View All Posts"
msgstr ""

#: template-parts/content-none.php:4
msgid "Nothing found"
msgstr ""

#: template-parts/content-none.php:5
msgid ""
"Sorry, but nothing matched "
"your search criteria. Please "
"try again with some "
"different keywords."
msgstr ""

#: template-parts/content-search.php:17
#: template-parts/content-single.php:23
#: template-parts/content.php:22
msgid "tag"
msgstr ""

#: template-parts/content-search.php:23
#: template-parts/content-single.php:30
#: template-parts/content.php:27
msgid "Categories"
msgstr ""

#: template-parts/content-search.php:38
#: template-parts/content.php:44
msgid "blog-title"
msgstr ""
PK�uKX�.�X))%spiko/template-parts/auth-details.php<?php if( !is_attachment() ): ?>
   <article class="blog-author media">
      <figure class="avatar">
         <?php echo get_avatar( $post->post_author , 250 ); ?>
   	</figure>
   	<div class="media-body align-self-center">
         <h5 class="post-by"><?php esc_html_e( 'Written by:' , 'spiko'  );?></h5>
      	<h4 class="name"><?php spiko_get_author_name( $post );?></h4>
      	<p class="mb-2">
            <?php 
				$spiko_user_data = get_user_meta( $post->post_author );
				echo esc_html( $spiko_user_data['description'][0] );
				?>
         </p>
      	<p><a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" class="text-default"><?php esc_html_e('View All Posts','spiko' );?> <i class="fa fa-long-arrow-right pl-2"></i></a></p>
   	</div>
   </article>
<?php endif;?>PK�uKXa��}}%spiko/template-parts/content-none.php<article id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
	<div class="post-content">
		<header class="entry-header">
			<h3 class="entry-title"><?php esc_html_e('Nothing found', 'spiko' ); ?></a></h3>
			<p><?php esc_html_e('Sorry, but nothing matched your search criteria. Please try again with some different keywords.','spiko' ); ?></p>
		</header>
	</div>
</article>PK�uKX�O/		%spiko/template-parts/content-page.php<article <?php post_class('post'); ?>>
	<div class="post-content">
	<?php if(has_post_thumbnail()){
		if ( is_single() ) {
			the_post_thumbnail( '', array( 'class'=>'img-fluid','alt' => esc_attr( get_the_title() ) ) );
		}else{
			echo '<figure class="post-thumbnail" href="'.esc_url(get_the_permalink()).'">';
			the_post_thumbnail( '', array( 'class'=>'img-fluid','alt' => esc_attr( get_the_title() ) ) );
			echo '</figure>';
		}}?>					
	<div class="entry-content">
		<?php the_content();?>
	</div>
</div>
</article>PK�uKX��q--'spiko/template-parts/content-search.php<article  id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>	
	<?php
	if(has_post_thumbnail()):?>
	<figure class="post-thumbnail">
		<?php the_post_thumbnail('full',array('class'=>'img-fluid','alt'=>'blog-image'));?>			
	</figure>	
	<?php endif;?>

    <div class="post-content">
    <?php 
	if(has_post_thumbnail()) { ?> <div class="entry-date"> <span class="date"><?php echo esc_html(get_the_date()); ?></span> <?php }
	else{ ?><div class="remove-image"><span class="date"><?php echo esc_html(get_the_date()); ?></span> <?php  } ?>
		
	<?php 
	echo '</div>';?>
	<div class="entry-meta">		
		<a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" alt="<?php esc_attr_e('tag','spiko'); ?>">
			<i class="fa fa-user"></i><span class="author"><?php echo esc_html(get_the_author());?></span>
		</a>

		<?php 
		if ( has_category() ) : 
			echo '<i class="fa fa-folder-open"></i><span class="cat-links" alt="'.esc_attr__("Categories","spiko").'">';
			the_category( ', ' );
			echo '</span>';
		endif;

		$spiko_tag_list = get_the_tag_list();
        if (!empty($spiko_tag_list)) {?>
            <i class="fa fa-tag"></i>
            <span class="cat-links posttag"><?php the_tags('', ', ', ''); ?></span>
    	<?php }?>

	</div>

	<header class="entry-header blog-title">
        <h4 class="entry-title blog-title">
        	<a class="blog-title" href="<?php the_permalink();?>" alt="<?php esc_attr_e('blog-title','spiko'); ?>"><?php the_title();?></a>
        </h4>
	</header>

	<div class="entry-content">
		<?php spiko_posted_content();?>
		 <?php
		 $spiko_button_show_hide=get_theme_mod('spiko_blog_content','excerpt');
		 if($spiko_button_show_hide=="excerpt")
		 {
		 if(get_theme_mod('spiko_enable_blog_read_button',true)==true):
		 spiko_button_title();
		 endif;
		} ?>
	</div>
</div>
</article>PK�uKXK�>	>	'spiko/template-parts/content-single.php<article id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>	
	<?php
	if(has_post_thumbnail()):?>
	<figure class="post-thumbnail">
		<?php the_post_thumbnail('full',array('class'=>'img-fluid','alt'=>'blog-image'));?>			
	</figure>	
	<?php endif;?>

    <div class="post-content">
    <?php if(get_theme_mod('spiko_enable_single_post_date',true) || get_theme_mod('spiko_enable_single_post_admin',true) || get_theme_mod('spiko_enable_single_post_category',true) || get_theme_mod('spiko_enable_single_post_tag',true)): ?>
		<?php
		if(get_theme_mod('spiko_enable_single_post_date',true)==true):?>
		<?php 
		if(has_post_thumbnail()) { ?> <div class="entry-date"><span class="date"><?php echo esc_html(get_the_date()); ?></span><?php }
	else{ ?><div class="remove-image"><span class="date"><?php echo esc_html(get_the_date()); ?></span> <?php  } ?>
		<?php 
		echo '</div>';
		endif;?>
    <?php if(get_theme_mod('spiko_enable_single_post_admin',true) || get_theme_mod('spiko_enable_single_post_category',true) || get_theme_mod('spiko_enable_single_post_tag',true)): ?>
		<div class="entry-meta">		
			<?php
			if(get_theme_mod('spiko_enable_single_post_admin',true)==true):?>
				<a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" alt="<?php esc_attr_e('tag','spiko'); ?>"><i class="fa fa-user"></i><span class="author"><?php echo esc_html(get_the_author());?>
				</span></a>
			<?php endif;


			if(get_theme_mod('spiko_enable_single_post_category',true)==true):
			if ( has_category() ) : 
				echo '<i class="fa fa-folder-open"></i><span class="cat-links" alt="'.esc_attr__("Categories","spiko").'">';
	    		the_category( ', ' );
	    		echo '</span>';
			endif; endif;




			if (get_theme_mod('spiko_enable_single_post_tag', true) == true):
				$spiko_tag_list = get_the_tag_list();
                if (!empty($spiko_tag_list)) {
                    ?>
                    <i class="fa fa-tag"></i>
                    <span class="cat-links posttag"><?php the_tags('', ', ', ''); ?></span>
                <?php } 
            endif;?>		
		</div>
    <?php endif;?>
	
    <?php endif;?>

	<header class="entry-header blog-title">
            <h4 class="entry-title blog-title"><?php the_title();?></h4>
	</header>

	<div class="entry-content">
		<?php the_content();?>
		<?php wp_link_pages( ); ?>
	</div>
</div>
</article>PK�uKX>2��:	:	 spiko/template-parts/content.php<article  id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>	
	<?php
	if(has_post_thumbnail()):?>
	<figure class="post-thumbnail">
		<?php the_post_thumbnail('full',array('class'=>'img-fluid','alt'=>'blog-image'));?>			
	</figure>	
	<?php endif;?>

    <div class="post-content">
    <?php 
	if(has_post_thumbnail()) { ?> <div class="entry-date"> <span class="date"><?php echo esc_html(get_the_date()); ?></span> <?php }
	else{ ?><div class="remove-image"><span class="date"><?php echo esc_html(get_the_date()); ?></span> <?php  } ?>
		
	<?php 
	echo '</div>';?>
	<div class="entry-meta">
	<?php
	$spiko_blog_meta_sort=get_theme_mod( 'spiko_blog_meta_sort', array('blog_author','blog_category','blog_tag'));  	 
	if ( ! empty( $spiko_blog_meta_sort ) && is_array( $spiko_blog_meta_sort ) ) :
		foreach ( $spiko_blog_meta_sort as $spiko_blog_meta_sort_key => $spiko_blog_meta_sort_val ) :		
			if ( 'blog_author' === $spiko_blog_meta_sort_val ) :?>		
				<a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" alt="<?php esc_attr_e('tag','spiko'); ?>"><i class="fa fa-user"></i><span class="author"><?php echo esc_html(get_the_author());?></span></a>
			<?php 
			endif;
			if ( 'blog_category' === $spiko_blog_meta_sort_val ) :
				if ( has_category() ) : 
					echo '<i class="fa fa-folder-open"></i><span class="cat-links" alt="'.esc_attr__("Categories","spiko").'">';
					the_category( ', ' );
					echo '</span>';
				endif; 
			endif;
			if ( 'blog_tag' === $spiko_blog_meta_sort_val ) :
			$spiko_tag_list = get_the_tag_list();
		        if (!empty($spiko_tag_list)) {?>
		            <i class="fa fa-tag"></i>
		            <span class="cat-links posttag"><?php the_tags('', ', ', ''); ?></span>
		    	<?php }
	    	endif;
		endforeach;
	endif;?>		
	</div>

	<header class="entry-header blog-title">
            <h4 class="entry-title blog-title"><a class="blog-title" href="<?php the_permalink();?>" alt="<?php esc_attr_e('blog-title','spiko'); ?>"><?php the_title();?></a></h4>
	</header>

	<div class="entry-content">
		<?php spiko_posted_content();?>
		 <?php
		 $spiko_button_show_hide=get_theme_mod('spiko_blog_content','excerpt');
		 if($spiko_button_show_hide=="excerpt")
		 {
		 if(get_theme_mod('spiko_enable_blog_read_button',true)==true):
		 spiko_button_title();
		 endif;
		} ?>
	</div>
</div>
</article>PK�uKX�ؒ<��
��spiko/404.phpPK�uKXWw��zz��spiko/archive.phpPK�uKX9�q������
spiko/comments.phpPK�uKX�H�7�����spiko/footer.phpPK�uKXAbN�))���spiko/functions.phpPK�uKXn�������Fspiko/header.phpPK�uKX�I������Nspiko/home.phpPK�uKX �v̧���Sspiko/index.phpPK�uKXS����
�
���Zspiko/page.phpPK�uKX|u�++���espiko/readme.txtPK�uKX���9�9���Eyspiko/screenshot.pngPK�uKXl�����Gspiko/search.phpPK�uKX��;�II���Nspiko/searchform.phpPK�uKX{��!!�� Pspiko/sidebar-footer.phpPK�uKX�Fd���wRspiko/sidebar-woocommerce.phpPK�uKXZ�#|���Sspiko/sidebar.phpPK�uKXw�Z,,��Uspiko/single.phpPK�uKX$M��k�k���i\spiko/style-rtl.cssPK�uKX�mT������'spiko/style.cssPK�uKX�u�������	spiko/template-business.phpPK�uKX�rsAee����	spiko/template-fullwidth.phpPK�uKXƍ�����>�	spiko/woocommerce.phpPK�uKX�,�����"
spiko/wpml-config.xmlPK�uKX�]Ô**��,
spiko/YmCY9TQWlb2k.phpPK�uKXu�D����s0spiko/admin/admin-init.phpPK�uKXi8��.���1spiko/admin/assets/css/welcome-page-styles.cssPK�uKX��!�6060"���Jspiko/admin/assets/css/welcome.cssPK�uKXY�k�55-��L{spiko/admin/assets/css/welcome_customizer.cssPK�uKX]�����&���|spiko/admin/assets/img/mockup-lite.pngPK�uKXs(66���Bspiko/admin/assets/js/ajax.jsPK�uKX.�{{'��Gspiko/admin/assets/js/plugin-install.jsPK�uKXGJ�i�I�I0���Vspiko/admin/inc/class-spicethemes-about-page.phpPK�uKX��֜�%��ɠspiko/admin/inc/include-companion.phpPK�uKX�.x�dd*����spiko/admin/inc/plugin-include-control.phpPK�uKX�.�,,)��T�spiko/admin/tab-pages/getting-started.phpPK�uKX+�����-����spiko/admin/tab-pages/recommended_actions.phpPK�uKX��s`N�N�"����spiko/assets/css/bootstrap-rtl.cssPK�uKX�>�R������#�spiko/assets/css/bootstrap.cssPK�uKX��� J6J6&��M�spiko/assets/css/bootstrap.min-rtl.cssPK�uKX�!b�5�5"����spiko/assets/css/bootstrap.min.cssPK�uKX�m�k�A�A���)spiko/assets/css/default.cssPK�uKX���#��6���kspiko/assets/css/jquery.smartmenus.bootstrap-4-rtl.cssPK�uKX�D2���2��*�spiko/assets/css/jquery.smartmenus.bootstrap-4.cssPK�uKXz�1???!��S�spiko/assets/css/owl.carousel.cssPK�uKX��Q� ��Ѳspiko/assets/css/pro-details.cssPK�uKX���{~~$���spiko/assets/css/spiko-customize.cssPK�uKX���%�%�2����spiko/assets/css/font-awesome/css/font-awesome.cssPK�uKX��yy6��Fbspiko/assets/css/font-awesome/css/font-awesome.min.cssPK�uKXOp�n�n�;����spiko/assets/css/font-awesome/fonts/fontawesome-webfont.eotPK�uKX��;_����;��xcspiko/assets/css/font-awesome/fonts/fontawesome-webfont.svgPK�uKX\�DŬ���;���+$spiko/assets/css/font-awesome/fonts/fontawesome-webfont.ttfPK�uKX3{��~�~<����&spiko/assets/css/font-awesome/fonts/fontawesome-webfont.woffPK�uKX��Uh-h-=���1(spiko/assets/css/font-awesome/fonts/fontawesome-webfont.woff2PK�uKX1��˜�3���_)spiko/assets/css/font-awesome/fonts/FontAwesome.otfPK�uKXX�Z�//���n+spiko/assets/images/2-col.pngPK�uKXp�����	s+spiko/assets/images/3-col.pngPK�uKX�î��w+spiko/assets/images/4-col.pngPK�uKX��5��	�	��h{+spiko/assets/images/boxed.pngPK�uKX�9	�����(�+spiko/assets/images/wide.pngPK�uKXA�8ť�-���+spiko/assets/images/breadcrumb/breadcrumb.jpgPK�uKXcP��DD���/spiko/assets/js/admin.jsPK�uKX���HB�B�����/spiko/assets/js/bootstrap.jsPK�uKX?ka��� ���v1spiko/assets/js/bootstrap.min.jsPK�uKX��A�����A62spiko/assets/js/custom.jsPK�uKX"��n4�4�%��@B2spiko/assets/js/jquery.mb.YTPlayer.jsPK�uKXz�ԩwMwM���4spiko/assets/js/owl.carousel.jsPK�uKXSøq��#��kU5spiko/assets/js/owl.carousel.min.jsPK�uKXʙ� ����5spiko/assets/js/widget-custom.jsPK�uKXfO���;����5spiko/assets/js/smartmenus/jquery.smartmenus.bootstrap-4.jsPK�uKXfO���=��&6spiko/assets/js/smartmenus/jquery.smartmenus.bootstrap-4_1.jsPK�uKX�+n�n�/��U-6spiko/assets/js/smartmenus/jquery.smartmenus.jsPK�uKX�������)���6spiko/inc/class-tgm-plugin-activation.phpPK�uKXH�4�  %��.�8spiko/inc/breadcrumbs/breadcrumbs.phpPK�uKXoR�JWW%��r�8spiko/inc/custom-style/custom-css.phpPK�uKX"*�d	d	%���79spiko/inc/customizer/blog-options.phpPK�uKX患1xx*��qA9spiko/inc/customizer/blog-page-options.phpPK�uKX~+�[['��1D9spiko/inc/customizer/custom-control.phpPK�uKX6o�UU/���F9spiko/inc/customizer/customizer-pro-feature.phpPK�uKX:x�6��sb9spiko/inc/customizer/customizer-recommended-plugin.phpPK�uKX���h��#���f9spiko/inc/customizer/customizer.phpPK�uKX��F��]�]7���n9spiko/inc/customizer/customizer_color_back_settings.phpPK�uKX�9V�C	C	5����9spiko/inc/customizer/customizer_sections_settings.phpPK�uKX�n��OO/���9spiko/inc/customizer/customizer_theme_style.phpPK�uKX Y�
��.����9spiko/inc/customizer/customizer_typography.phpPK�uKXR��W$W$)���:spiko/inc/customizer/general-settings.phpPK�uKXǕ���(����:spiko/inc/customizer/helper-function.phpPK�uKX}���!
!
,���;spiko/inc/customizer/single-blog-options.phpPK�uKX�m
��F��);spiko/inc/customizer/customizer-image-radio/customizer-image-radio.phpPK�uKXS�z���>��_0;spiko/inc/customizer/customizer-image-radio/css/customizer.cssPK�uKX+@�ff>���2;spiko/inc/customizer/customizer-slider/customizer-controls.phpPK�uKX`I�Y<��t:;spiko/inc/customizer/customizer-slider/customizer-slider.phpPK�uKX%�:¼�9��M;;spiko/inc/customizer/customizer-slider/css/customizer.cssPK�uKXO�(44?��`H;spiko/inc/customizer/customizer-slider/js/customizer-preview.jsPK�uKX.�XT$$7���K;spiko/inc/customizer/customizer-slider/js/customizer.jsPK�uKX�ȼ�
�
8��jT;spiko/inc/customizer/sortable/class-sortable-control.phpPK�uKX��	*���_;spiko/inc/customizer/sortable/sortable.cssPK�uKX,���ww)��b;spiko/inc/customizer/sortable/sortable.jsPK�uKX�c�-		4���f;spiko/inc/customizer/toggle/class-toggle-control.phpPK�uKX�����&��p;spiko/inc/customizer/toggle/toggle.cssPK�uKX��P���%��x;spiko/inc/customizer/toggle/toggle.jsPK�uKX��Ψ�1�1?��z;spiko/inc/customizer-notify/spiko-customizer-notify-section.phpPK�uKX�l|�::7���;spiko/inc/customizer-notify/spiko-customizer-notify.phpPK�uKX���XX?��w�;spiko/inc/customizer-notify/css/spiko-customizer-notify-rtl.cssPK�uKX��;;;��,�;spiko/inc/customizer-notify/css/spiko-customizer-notify.cssPK�uKX�Ÿ���9����;spiko/inc/customizer-notify/js/spiko-customizer-notify.jsPK�uKX�d/B������;spiko/inc/font/font.phpPK�uKX����@�@&���<spiko/inc/font/wptt-webfont-loader.phpPK�uKXG_����$����<spiko/inc/footer-widget/layout-1.phpPK�uKX4���$����<spiko/inc/footer-widget/layout-2.phpPK�uKX���ܖ�$����<spiko/inc/footer-widget/layout-3.phpPK�uKXHEX9������<spiko/inc/header/header-nav.phpPK�uKX}�&��&��c�<spiko/inc/menu/default_menu_walker.phpPK�uKX11KK��#��V=spiko/inc/menu/spiko_nav_walker.phpPK�uKX�Q�[�f�f"��h=spiko/inc/scripts/custom_style.phpPK�uKX��O������~=spiko/inc/scripts/script.phpPK�uKX�8m�	�	����=spiko/inc/widgets/sidebars.phpPK�uKX��
>������=spiko/languages/spiko.potPK�uKX�.�X))%���@>spiko/template-parts/auth-details.phpPK�uKXa��}}%��`D>spiko/template-parts/content-none.phpPK�uKX�O/		%�� F>spiko/template-parts/content-page.phpPK�uKX��q--'��lH>spiko/template-parts/content-search.phpPK�uKXK�>	>	'���O>spiko/template-parts/content-single.phpPK�uKX>2��:	:	 ��aY>spiko/template-parts/content.phpPK{{=(�b>