| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/i/n/f/infrafs/INFRABIKEIT/wp-content/plugins/ |
Upload File : |
post/discussion-meta.php 0000604 00000001600 15132754652 0011354 0 ustar 00 <?php
/**
* The template for displaying Current Discussion on posts
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
/* Get data from current discussion on post. */
$discussion = twentynineteen_get_discussion_data();
$has_responses = $discussion->responses > 0;
if ( $has_responses ) {
/* translators: %d: Number of comments. */
$meta_label = sprintf( _n( '%d Comment', '%d Comments', $discussion->responses, 'twentynineteen' ), $discussion->responses );
} else {
$meta_label = __( 'No comments', 'twentynineteen' );
}
?>
<div class="discussion-meta">
<?php
if ( $has_responses ) {
twentynineteen_discussion_avatars_list( $discussion->authors );
}
?>
<p class="discussion-meta-info">
<?php echo twentynineteen_get_icon_svg( 'comment', 24 ); ?>
<span><?php echo esc_html( $meta_label ); ?></span>
</p>
</div><!-- .discussion-meta -->
post/author-bio.php 0000604 00000001431 15132754652 0010320 0 ustar 00 <?php
/**
* The template for displaying Author info
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
if ( (bool) get_the_author_meta( 'description' ) ) : ?>
<div class="author-bio">
<h2 class="author-title">
<span class="author-heading">
<?php
printf(
/* translators: %s: Post author. */
__( 'Published by %s', 'twentynineteen' ),
esc_html( get_the_author() )
);
?>
</span>
</h2>
<p class="author-description">
<?php the_author_meta( 'description' ); ?>
<a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
<?php _e( 'View more posts', 'twentynineteen' ); ?>
</a>
</p><!-- .author-description -->
</div><!-- .author-bio -->
<?php endif; ?>
footer/footer-widgets.php 0000604 00000001020 15132754652 0011514 0 ustar 00 <?php
/**
* Displays the footer widget area
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<aside class="widget-area" role="complementary" aria-label="<?php esc_attr_e( 'Footer', 'twentynineteen' ); ?>">
<?php
if ( is_active_sidebar( 'sidebar-1' ) ) {
?>
<div class="widget-column footer-widget-1">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div>
<?php
}
?>
</aside><!-- .widget-area -->
<?php endif; ?>
content/content.php 0000644 00000001537 15132754652 0010421 0 ustar 00 <div class="post-list-item col-xs-12 space-bottom">
<div id="post-<?php the_ID(); ?>" <?php post_class( 'blog-post card ' ); ?>>
<div class="post-content">
<div class="row">
<div class="col-sm-4">
<?php \ColibriWP\Theme\View::printEntryThumb(); ?>
</div>
<div class="col-sm-8 col-xs-12 col-padding col-padding-xs">
<h3 class="post-title">
<a href="<?php the_permalink(); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h3>
<?php get_template_part( 'template-parts/content/content-list-post-meta' ); ?>
<div class="post-excerpt">
<?php the_excerpt(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
content/content-none.php 0000644 00000001557 15132754652 0011360 0 ustar 00 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-content-single">
<h3 class="page-title">
<?php _e( 'Nothing Found', 'colibri-wp' ); ?>
</h3>
<?php if ( is_home() && current_user_can( 'publish_posts' ) ): ?>
<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.',
'colibri-wp' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
<?php elseif ( is_search() ): ?>
<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.',
'colibri-wp' ); ?></p>
<?php get_search_form(); ?>
<?php else: ?>
<p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.',
'colibri-wp' ); ?></p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
</div>
content/content-page.php 0000644 00000001077 15132754652 0011332 0 ustar 00 <div id="post-<?php the_ID();?>" <?php post_class(); ?>>
<div>
<?php
the_content();
wp_link_pages(array(
'before' => '<div class="page-links"><span class="page-links-title">' . __('Pages:', 'colibri-wp') . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . __('Page', 'colibri-wp') . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
));
?>
</div>
</div>
content/content-excerpt.php 0000604 00000001660 15132754652 0012062 0 ustar 00 <?php
/**
* Template part for displaying post archives and search results
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php
if ( is_sticky() && is_home() && ! is_paged() ) {
printf( '<span class="sticky-post">%s</span>', _x( 'Featured', 'post', 'twentynineteen' ) );
}
the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
?>
</header><!-- .entry-header -->
<?php twentynineteen_post_thumbnail(); ?>
<div class="entry-content">
<?php the_excerpt(); ?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php twentynineteen_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->
content/content-single.php 0000644 00000003707 15132754652 0011701 0 ustar 00 <div id="post-<?php the_ID(); ?>"<?php post_class(); ?>>
<div class="post-content-single">
<h2 class="h1"><?php the_title(); ?></h2>
<?php get_template_part( 'template-parts/content/content-post-single-header' ) ?>
<div class="post-content-inner">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'post-thumbnail', array( "class" => "space-bottom-small space-bottom-xs" ) );
}
the_content();
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:',
'colibri-wp' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'colibri-wp' )
. ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
) );
?>
</div>
<?php echo get_the_tag_list( '<p class="tags-list"><i data-cp-fa="true" class="font-icon-25 fa fa-tags"></i> ',
' ', '</p>' ); ?>
</div>
<?php
the_post_navigation( array(
'next_text' => '<span class="meta-nav" aria-hidden="true">' . esc_html__( 'Next:', 'colibri-wp' )
. '</span> ' .
'<span class="screen-reader-text">' . esc_html__( 'Next post:', 'colibri-wp' ) . '</span> ' .
'<span class="post-title">%title</span><i class="font-icon-post fa fa-angle-double-right"></i>',
'prev_text' => '<i class="font-icon-post fa fa-angle-double-left"></i>' .
'<span class="meta-nav" aria-hidden="true">' . esc_html__( 'Previous:', 'colibri-wp' )
. '</span> ' .
'<span class="screen-reader-text">' . esc_html__( 'Previous post:', 'colibri-wp' )
. '</span> ' .
'<span class="post-title">%title</span>',
) );
if ( comments_open() || get_comments_number() ):
comments_template();
endif;
?>
</div>
header/entry-header.php 0000604 00000002133 15132754652 0011101 0 ustar 00 <?php
/**
* Displays the post header
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
$discussion = ! is_page() && twentynineteen_can_show_post_thumbnail() ? twentynineteen_get_discussion_data() : null; ?>
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<?php if ( ! is_page() ) : ?>
<div class="entry-meta">
<?php twentynineteen_posted_by(); ?>
<?php twentynineteen_posted_on(); ?>
<span class="comment-count">
<?php
if ( ! empty( $discussion ) ) {
twentynineteen_discussion_avatars_list( $discussion->authors );
}
?>
<?php twentynineteen_comment_count(); ?>
</span>
<?php
// Edit post link.
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Post title. Only visible to screen readers. */
__( 'Edit <span class="screen-reader-text">%s</span>', 'twentynineteen' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'<span class="edit-link">' . twentynineteen_get_icon_svg( 'edit', 16 ),
'</span>'
);
?>
</div><!-- .entry-meta -->
<?php endif; ?>
header/site-branding.php 0000604 00000003520 15132754652 0011241 0 ustar 00 <?php
/**
* Displays header site branding
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
?>
<div class="site-branding">
<?php if ( has_custom_logo() ) : ?>
<div class="site-logo"><?php the_custom_logo(); ?></div>
<?php endif; ?>
<?php $blog_info = get_bloginfo( 'name' ); ?>
<?php if ( ! empty( $blog_info ) ) : ?>
<?php if ( is_front_page() && is_home() ) : ?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php endif; ?>
<?php endif; ?>
<?php
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) :
?>
<p class="site-description">
<?php echo $description; ?>
</p>
<?php endif; ?>
<?php if ( has_nav_menu( 'menu-1' ) ) : ?>
<nav id="site-navigation" class="main-navigation" aria-label="<?php esc_attr_e( 'Top Menu', 'twentynineteen' ); ?>">
<?php
wp_nav_menu(
array(
'theme_location' => 'menu-1',
'menu_class' => 'main-menu',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
)
);
?>
</nav><!-- #site-navigation -->
<?php endif; ?>
<?php if ( has_nav_menu( 'social' ) ) : ?>
<nav class="social-navigation" aria-label="<?php esc_attr_e( 'Social Links Menu', 'twentynineteen' ); ?>">
<?php
wp_nav_menu(
array(
'theme_location' => 'social',
'menu_class' => 'social-links-menu',
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>' . twentynineteen_get_icon_svg( 'link' ),
'depth' => 1,
)
);
?>
</nav><!-- .social-navigation -->
<?php endif; ?>
</div><!-- .site-branding -->
main/item_template.php 0000644 00000007753 15133252504 0011046 0 ustar 00 <div class="h-column h-column-container d-flex h-col-lg-12 h-col-md-12 h-col-12 masonry-item style-544-outer style-local-432-m4-outer">
<div data-colibri-id="432-m4" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-544 style-local-432-m4 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="432-m5" class="colibri-post-thumbnail <?php colibriwp_post_thumbnail_classes(); ?> <?php colibriwp_post_thumb_placeholder_classes(); ?> style-545 style-local-432-m5 h-overflow-hidden position-relative h-element">
<div class="h-global-transition-all colibri-post-thumbnail-shortcode style-dynamic-432-m5-height">
<?php colibriwp_post_thumbnail(array (
'link' => false,
)); ?>
</div>
<div class="colibri-post-thumbnail-content align-items-lg-center align-items-md-center align-items-center flex-basis-100">
<div class="w-100 h-y-container"></div>
</div>
</div>
<div data-colibri-id="432-m6" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-546 style-local-432-m6 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-547-outer style-local-432-m7-outer">
<div data-colibri-id="432-m7" class="d-flex h-flex-basis h-column__inner h-px-lg-3 h-px-md-3 h-px-3 v-inner-lg-3 v-inner-md-3 v-inner-3 style-547 style-local-432-m7 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<?php if ( apply_filters( 'colibriwp_show_post_meta', true ) ): ?>
<div data-colibri-id="432-m8" class="h-blog-meta style-548 style-local-432-m8 position-relative h-element">
<div name="1" class="metadata-item">
<span class="metadata-prefix">
<?php esc_html_e('by','colibri-wp'); ?>
</span>
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
<?php echo get_the_author_meta( 'display_name', get_the_author_meta( 'ID' ) ); ?>
</a>
</div>
<div name="2" class="metadata-item">
<span class="metadata-prefix">
<?php esc_html_e('on','colibri-wp'); ?>
</span>
<a href="<?php colibriwp_post_meta_date_url(); ?>">
<?php colibriwp_the_date('F j, Y'); ?>
</a>
</div>
</div>
<?php endif; ?>
<div data-colibri-id="432-m9" class="style-549 style-local-432-m9 position-relative h-element">
<div class="h-global-transition-all colibri-post-content">
<?php the_content(); ?>
</div>
</div>
<?php colibriwp_layout_wrapper(array (
'name' => 'categories_container',
'slug' => 'categories-container-1',
)); ?><?php colibriwp_layout_wrapper(array (
'name' => 'tags_container',
'slug' => 'tags-container-1',
)); ?>
</div>
</div>
</div>
</div>
</div>
<?php colibriwp_layout_wrapper(array (
'name' => 'navigation_container',
'slug' => 'navigation-container-1',
)); ?>
</div>
</div>
</div>
main/404.php 0000644 00000006376 15133252504 0006524 0 ustar 00 <div data-colibri-id="22-m1" class="style-103 style-local-22-m1 position-relative">
<div data-colibri-id="22-m2" id="nothing-found"
class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-104 style-local-22-m2 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg h-col-md h-col-auto style-105-outer style-local-22-m3-outer">
<div data-colibri-id="22-m3"
class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-105 style-local-22-m3 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="22-m4"
class="h-global-transition-all h-heading style-106 style-local-22-m4 position-relative h-element">
<?php esc_html_e('404','colibri-wp'); ?>
</div>
<div data-colibri-id="22-m5"
class="h-text h-text-component style-107 style-local-22-m5 position-relative h-element">
<div>
<p>
<?php esc_html_e( 'Sorry, page not found!', 'colibri-wp' ); ?>
</p>
</div>
</div>
<div data-colibri-id="22-m6"
class="h-x-container style-108 style-local-22-m6 position-relative h-element">
<div class="h-x-container-inner style-dynamic-22-m6-group">
<span class="h-button__outer style-109-outer style-local-22-m7-outer d-inline-flex h-element">
<a h-use-smooth-scroll="true" href="<?php esc_url( home_url() ); ?>" data-colibri-id="22-m7"
class="d-flex w-100 align-items-center h-button justify-content-lg-center justify-content-md-center justify-content-center style-109 style-local-22-m7 position-relative">
<span>
<?php esc_html_e( 'Go to Homepage!', 'colibri-wp' ); ?>
</span>
<span class="h-svg-icon h-button__icon style-109-icon style-local-22-m7-icon">
<!--Icon by Icons8 Line Awesome (https://icons8.com/line-awesome)-->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="arrow-right" viewBox="0 0 512 545.5">
<path d="M299.5 140.5l136 136 11 11.5-11 11.5-136 136-23-23L385 304H64v-32h321L276.5 163.5z"></path>
</svg>
</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
main/search_item_template.php 0000644 00000015163 15133252504 0012365 0 ustar 00 <div class="h-column h-column-container d-flex h-col-lg-12 h-col-md-12 h-col-12 masonry-item style-114-outer style-local-25-m5-outer">
<div data-colibri-id="25-m5" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-114 style-local-25-m5 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="25-m6" class="h-blog-categories style-115 style-local-25-m6 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_categories(array (
'prefix' => '',
)); ?>
</div>
</div>
<div data-colibri-id="25-m7" class="h-blog-title style-116 style-local-25-m7 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_title(array (
'heading_type' => 'h4',
'classes' => 'colibri-word-wrap',
)); ?>
</div>
</div>
<?php if ( apply_filters( 'colibriwp_show_post_meta', true ) ): ?>
<div data-colibri-id="25-m8" class="h-blog-meta style-117 style-local-25-m8 position-relative h-element">
<div name="1" class="metadata-item">
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
<span class="h-svg-icon">
<!--Icon by Font Awesome (https://fontawesome.com)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="user" viewBox="0 0 1354.8114 1896.0833">
<path d="M1280 1399q0 109-62.5 187t-150.5 78H213q-88 0-150.5-78T0 1399q0-85 8.5-160.5t31.5-152 58.5-131 94-89T327 832q131 128 313 128t313-128q76 0 134.5 34.5t94 89 58.5 131 31.5 152 8.5 160.5zm-256-887q0 159-112.5 271.5T640 896 368.5 783.5 256 512t112.5-271.5T640 128t271.5 112.5T1024 512z"></path>
</svg>
</span>
<?php echo get_the_author_meta( 'display_name', get_the_author_meta( 'ID' ) ); ?>
</a>
<span class="meta-separator">|</span>
</div>
<div name="2" class="metadata-item">
<a href="<?php colibriwp_post_meta_date_url(); ?>">
<span class="h-svg-icon">
<!--Icon by Font Awesome (https://fontawesome.com)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="calendar" viewBox="0 0 1672.2646 1896.0833">
<path d="M128 1664h288v-288H128v288zm352 0h320v-288H480v288zm-352-352h288V992H128v320zm352 0h320V992H480v320zM128 928h288V640H128v288zm736 736h320v-288H864v288zM480 928h320V640H480v288zm768 736h288v-288h-288v288zm-384-352h320V992H864v320zM512 448V160q0-13-9.5-22.5T480 128h-64q-13 0-22.5 9.5T384 160v288q0 13 9.5 22.5T416 480h64q13 0 22.5-9.5T512 448zm736 864h288V992h-288v320zM864 928h320V640H864v288zm384 0h288V640h-288v288zm32-480V160q0-13-9.5-22.5T1248 128h-64q-13 0-22.5 9.5T1152 160v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zm384-64v1280q0 52-38 90t-90 38H128q-52 0-90-38t-38-90V384q0-52 38-90t90-38h128v-96q0-66 47-113T416 0h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"></path>
</svg>
</span>
<?php colibriwp_the_date('F j, Y'); ?>
</a>
<span class="meta-separator">|</span>
</div>
<div name="3" class="metadata-item">
<a href="<?php colibriwp_post_meta_time_url(); ?>">
<span class="h-svg-icon">
<!--Icon by Font Awesome (https://fontawesome.com)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="clock-o" viewBox="0 0 1536 1896.0833">
<path d="M896 544v448q0 14-9 23t-23 9H544q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224V544q0-14 9-23t23-9h64q14 0 23 9t9 23zm416 352q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zm224 0q0 209-103 385.5T1153.5 1561 768 1664t-385.5-103T103 1281.5 0 896t103-385.5T382.5 231 768 128t385.5 103T1433 510.5 1536 896z"></path>
</svg>
</span>
<?php echo get_the_time(); ?>
</a>
<span class="meta-separator">|</span>
</div>
<div name="4" class="metadata-item">
<a href="<?php comments_link(); ?>">
<span class="h-svg-icon">
<!--Icon by Font Awesome (https://fontawesome.com)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="comment" viewBox="0 0 1792 1896.0833">
<path d="M1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22-17 2-30.5-9t-17.5-29v-1q-3-4-.5-12t2-10 4.5-9.5l6-9 7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220T0 896q0-130 71-248.5T262 443t286-136.5T896 256q244 0 450 85.5t326 233T1792 896z"></path>
</svg>
</span>
<?php echo get_comments_number(); ?>
</a>
</div>
</div>
<?php endif; ?>
<div data-colibri-id="25-m9" class="style-118 style-local-25-m9 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_excerpt(array (
'max_length' => '',
)); ?>
</div>
</div>
<div data-colibri-id="25-m10" class="h-x-container style-119 style-local-25-m10 position-relative h-element">
<div class="h-x-container-inner style-dynamic-25-m10-group">
<span class="h-button__outer style-120-outer style-local-25-m11-outer d-inline-flex h-element">
<a h-use-smooth-scroll="true" href="<?php the_permalink(); ?>" data-colibri-id="25-m11" class="d-flex w-100 align-items-center h-button justify-content-lg-center justify-content-md-center justify-content-center style-120 style-local-25-m11 position-relative">
<span>
<?php esc_html_e('Read more','colibri-wp'); ?>
</span>
<span class="h-svg-icon h-button__icon style-120-icon style-local-25-m11-icon">
<!--Icon by Icons8 Line Awesome (https://icons8.com/line-awesome)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="arrow-right" viewBox="0 0 512 545.5">
<path d="M299.5 140.5l136 136 11 11.5-11 11.5-136 136-23-23L385 304H64v-32h321L276.5 163.5z"></path>
</svg>
</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
main/archive_item_template.php 0000644 00000017753 15133252504 0012550 0 ustar 00 <div class="<?php colibriwp_print_archive_entry_class("h-column h-column-container d-flex masonry-item style-581-outer style-local-435-m4-outer");?>" data-masonry-width="<?php colibriwp_print_masonry_col_class(true); ?>">
<div data-colibri-id="435-m4" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-581 style-local-435-m4 h-overflow-hidden position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-href="<?php the_permalink(); ?>" data-colibri-component="link" data-colibri-id="435-m5" class="colibri-post-thumbnail <?php colibriwp_post_thumbnail_classes(); ?> style-582 style-local-435-m5 h-overflow-hidden position-relative h-element">
<div class="h-global-transition-all colibri-post-thumbnail-shortcode style-dynamic-435-m5-height">
<?php colibriwp_post_thumbnail(array (
'link' => true,
)); ?>
</div>
<div class="colibri-post-thumbnail-content align-items-lg-center align-items-md-center align-items-center flex-basis-100">
<div class="w-100 h-y-container"></div>
</div>
</div>
<div data-colibri-id="435-m6" class="h-row-container gutters-row-lg-3 gutters-row-md-3 gutters-row-3 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-583 style-local-435-m6 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-3 gutters-col-md-3 gutters-col-3 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-584-outer style-local-435-m7-outer">
<div data-colibri-id="435-m7" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-3 v-inner-md-3 v-inner-3 style-584 style-local-435-m7 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<?php if ( apply_filters( 'colibriwp_show_post_meta', true ) ): ?>
<div data-colibri-id="435-m8" class="h-blog-meta style-585 style-local-435-m8 position-relative h-element">
<div name="1" class="metadata-item">
<span class="metadata-prefix">
<?php esc_html_e('by','colibri-wp'); ?>
</span>
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
<?php echo get_the_author_meta( 'display_name', get_the_author_meta( 'ID' ) ); ?>
</a>
</div>
</div>
<?php endif; ?>
<div data-colibri-id="435-m9" class="h-blog-meta style-586 style-local-435-m9 position-relative h-element">
<div name="2" class="metadata-item">
<a href="<?php colibriwp_post_meta_date_url(); ?>">
<?php colibriwp_the_date('F j, Y'); ?>
</a>
</div>
</div>
<div data-colibri-id="435-m10" class="h-blog-title style-587 style-local-435-m10 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_title(array (
'heading_type' => 'h4',
'classes' => 'colibri-word-wrap',
)); ?>
</div>
</div>
<div data-colibri-id="435-m11" class="style-588 style-local-435-m11 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_excerpt(array (
'max_length' => 16,
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-colibri-id="435-m12" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-589 style-local-435-m12 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-590-outer style-local-435-m13-outer">
<div data-colibri-id="435-m13" class="d-flex h-flex-basis h-column__inner h-px-lg-3 h-px-md-3 h-px-3 v-inner-lg-2 v-inner-md-2 v-inner-2 style-590 style-local-435-m13 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="435-m14" class="h-blog-meta style-591 style-local-435-m14 position-relative h-element">
<div name="4" class="metadata-item">
<a href="<?php comments_link(); ?>">
<span class="h-svg-icon">
<!--Icon by Icons8 Line Awesome (https://icons8.com/line-awesome)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="comments" viewBox="0 0 512 545.5">
<path d="M32 112h320v256H197.5L122 428.5l-26 21V368H32V112zm32 32v192h64v46.5l54-43 4.5-3.5H320V144H64zm320 32h96v256h-64v81.5L314.5 432h-149l40-32h120l58.5 46.5V400h64V208h-64v-32z"></path>
</svg>
</span>
<?php echo get_comments_number(); ?>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-592-outer style-local-435-m15-outer">
<div data-colibri-id="435-m15" class="d-flex h-flex-basis h-column__inner h-px-lg-3 h-px-md-3 h-px-3 v-inner-lg-2 v-inner-md-2 v-inner-2 style-592 style-local-435-m15 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="435-m16" class="h-x-container style-593 style-local-435-m16 position-relative h-element">
<div class="h-x-container-inner style-dynamic-435-m16-group">
<span class="h-button__outer style-594-outer style-local-435-m17-outer d-inline-flex h-element">
<a h-use-smooth-scroll="true" href="<?php the_permalink(); ?>" data-colibri-id="435-m17" class="d-flex w-100 align-items-center h-button justify-content-lg-center justify-content-md-center justify-content-center style-594 style-local-435-m17 position-relative">
<span>
<?php esc_html_e('read more','colibri-wp'); ?>
</span>
<span class="h-svg-icon h-button__icon style-594-icon style-local-435-m17-icon">
<!--Icon by Icons8 Line Awesome (https://icons8.com/line-awesome)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="arrow-right" viewBox="0 0 512 545.5">
<path d="M299.5 140.5l136 136 11 11.5-11 11.5-136 136-23-23L385 304H64v-32h321L276.5 163.5z"></path>
</svg>
</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
main/search.php 0000644 00000011653 15133252504 0007454 0 ustar 00 <div data-colibri-id="25-m1" class="style-110 style-local-25-m1 position-relative">
<div data-colibri-id="25-m2" id="search-results" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-111 style-local-25-m2 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-12 h-col-md-12 h-col-12 style-112-outer style-local-25-m3-outer">
<div data-colibri-id="25-m3" class="d-flex h-flex-basis h-column__inner h-px-lg-1 h-px-md-1 h-px-1 v-inner-lg-0 v-inner-md-0 v-inner-0 style-112 style-local-25-m3 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="25-m4" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 colibri-dynamic-list style-113 style-local-25-m4 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0 style-113-row style-local-25-m4-row">
<?php colibriwp_theme()->get('search-loop')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-colibri-id="25-m13" id="results-navigation" class="h-row-container gutters-row-lg-1 gutters-row-md-1 gutters-row-0 gutters-row-v-lg-1 gutters-row-v-md-1 gutters-row-v-1 style-122 style-local-25-m13 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-1 gutters-col-md-1 gutters-col-0 gutters-col-v-lg-1 gutters-col-v-md-1 gutters-col-v-1">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-123-outer style-local-25-m14-outer">
<div data-colibri-id="25-m14" class="d-flex h-flex-basis h-column__inner h-px-lg-1 h-px-md-1 h-px-1 v-inner-lg-0 v-inner-md-0 v-inner-0 style-123 style-local-25-m14 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="25-m15" class="style-124 style-local-25-m15 position-relative h-element">
<div class="h-global-transition-all archive-nav-button">
<?php colibriwp_archive_nav_button(array (
'type' => 'prev',
'next_label' => __('Next', 'colibri-wp'),
'prev_label' => __('Back', 'colibri-wp'),
)); ?>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg h-col-md h-col-auto style-125-outer style-local-25-m16-outer">
<div data-colibri-id="25-m16" class="d-flex h-flex-basis h-column__inner h-px-lg-1 h-px-md-1 h-px-1 v-inner-lg-0 v-inner-md-0 v-inner-0 style-125 style-local-25-m16 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="25-m17" class="style-126 style-local-25-m17 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_archive_pagination(); ?>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-127-outer style-local-25-m18-outer">
<div data-colibri-id="25-m18" class="d-flex h-flex-basis h-column__inner h-px-lg-1 h-px-md-1 h-px-1 v-inner-lg-0 v-inner-md-0 v-inner-0 style-127 style-local-25-m18 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="25-m19" class="style-128 style-local-25-m19 position-relative h-element">
<div class="h-global-transition-all archive-nav-button">
<?php colibriwp_archive_nav_button(array (
'type' => 'next',
'next_label' => __('Next', 'colibri-wp'),
'prev_label' => __('Back', 'colibri-wp'),
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
main/post.php 0000644 00000006377 15133252504 0007203 0 ustar 00 <div data-colibri-id="432-m1" class="style-537 style-local-432-m1 h-overflow-hidden position-relative">
<div data-colibri-component="section" data-colibri-id="432-m2" id="blog-post" class="h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-538 style-local-432-m2 position-relative">
<div class="h-section-grid-container h-section-boxed-container">
<div data-colibri-id="432-m3" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 colibri-dynamic-list colibri-single-post-loop style-543 style-local-432-m3 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<?php colibriwp_theme()->get('post-loop')->render(); ?>
</div>
</div>
</div>
</div>
<div data-colibri-component="section" data-colibri-id="432-m29" id="comments" class="h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-565 style-local-432-m29 position-relative">
<div class="h-section-grid-container h-section-boxed-container">
<div data-colibri-id="432-m30" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-570 style-local-432-m30 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-571-outer style-local-432-m31-outer">
<div data-colibri-id="432-m31" class="d-flex h-flex-basis h-column__inner h-px-lg-3 h-px-md-3 h-px-3 v-inner-lg-3 v-inner-md-3 v-inner-3 style-571 style-local-432-m31 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="432-m32" class="style-572 style-local-432-m32 position-relative">
<div class="h-global-transition-all blog-post-comments">
<?php colibriwp_post_comments(array (
'none' => __('No responses yet', 'colibri-wp'),
'one' => __('One response', 'colibri-wp'),
'multiple' => __('{COMMENTS-COUNT} Responses', 'colibri-wp'),
'disabled' => 'Comments are closed',
'avatar_size' => 30,
)); ?>
</div>
</div>
<div data-colibri-id="432-m33" class="position-relative">
<div class="h-global-transition-all">
<?php colibriwp_post_comment_form(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
main/archive.php 0000644 00000002442 15133252504 0007624 0 ustar 00 <div data-colibri-id="435-m1" class="style-574 style-local-435-m1 position-relative">
<div data-colibri-component="section" data-colibri-id="435-m2" id="blog-posts" class="h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-575 style-local-435-m2 position-relative">
<div class="h-section-grid-container h-section-boxed-container">
<div data-colibri-id="435-m3" class="h-row-container gutters-row-lg-3 gutters-row-md-2 gutters-row-2 gutters-row-v-lg-3 gutters-row-v-md-2 gutters-row-v-3 colibri-dynamic-list style-580 style-local-435-m3 position-relative">
<div data-colibri-component="masonry" class="h-row justify-content-lg-start justify-content-md-start justify-content-start align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-3 gutters-col-md-2 gutters-col-2 gutters-col-v-lg-3 gutters-col-v-md-2 gutters-col-v-3 style-580-row style-local-435-m3-row" data-show-masonry="<?php colibriwp_theme()->get('main')->printMasonryFlag();?>">
<?php colibriwp_theme()->get('archive-loop')->render(); ?>
</div>
</div>
<?php colibriwp_layout_wrapper(array (
'name' => 'navigation_container',
'slug' => 'navigation-container-2',
)); ?>
</div>
</div>
</div>
blog/searchform.php 0000644 00000002642 15133252504 0010335 0 ustar 00 <form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div class="h-row no-gutters">
<div class="h-col">
<label class="d-block">
<span class="screen-reader-text"><?php esc_html_x( 'Search for:', 'label', 'colibri-wp' ); ?></span>
<input type="search"
class="search-field w-100"
placeholder="<?php esc_attr_e( 'Search …', 'colibri-wp' ); ?>"
value="<?php echo esc_attr( get_search_query() ); ?>" name="s"/>
</label>
</div>
<div class="h-col h-col-auto">
<input type="submit" class="search-submit text-button"
value="<?php echo esc_attr_x( 'Search', 'submit button', 'colibri-wp' ); ?> "/>
<button type="submit" class="icon-button search-submit">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" id="search" viewBox="0 0 1672.2646 1896.0833">
<path d="M1152 832q0-185-131.5-316.5T704 384 387.5 515.5 256 832t131.5 316.5T704 1280t316.5-131.5T1152 832zm512 832q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225T0 832t55.5-273.5 150-225 225-150T704 128t273.5 55.5 225 150 150 225T1408 832q0 220-124 399l343 343q37 37 37 90z"></path>
</svg>
</button>
</div>
</div>
</form>
blog/comments.php 0000644 00000002146 15133252504 0010030 0 ustar 00 <?php
if ( post_password_required() ):
return;
endif;
?>
<div class="post-comments">
<h3 class="comments-title">
<span class="comments-number">
<?php comments_number(
__( 'No responses yet', 'colibri-wp' ),
__( 'One response', 'colibri-wp' ),
__( '% Responses', 'colibri-wp' )
); ?>
</span>
</h3>
<ol class="comment-list">
<?php wp_list_comments( array( 'avatar_size' => 32, ) ); ?>
</ol>
<?php
if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ):
?>
<div class="navigation">
<div class="prev-posts">
<?php previous_comments_link( __( 'Older Comments', 'colibri-wp' ) ); ?>
</div>
<div class="next-posts">
<?php next_comments_link( __( 'Newer Comments', 'colibri-wp' ) ); ?>
</div>
</div>
<?php
endif;
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ):
?>
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'colibri-wp' ); ?></p>
<?php
endif;
?>
</div>
front-header/subtitle.php 0000644 00000000430 15133252504 0011463 0 ustar 00 <div data-colibri-id="7-h29" class="h-lead h-text h-text-component style-23 style-local-7-h29 position-relative h-element">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div>
<p>
<?php $component->printSubtitle(); ?>
</p>
</div>
</div>
front-header/button_group.php 0000644 00000000526 15133252504 0012365 0 ustar 00 <div data-colibri-id="7-h30" class="h-x-container style-24 style-local-7-h30 position-relative h-element">
<div class="h-x-container-inner style-dynamic-7-h30-group style-24-spacing style-local-7-h30-spacing">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<?php $component->printButtons(); ?>
</div>
</div>
front-header/image.php 0000644 00000166711 15133252504 0010731 0 ustar 00 <div data-colibri-id="7-h34" class="d-block style-148 style-local-7-h34 position-relative h-element">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div class="h-image__frame-container-outer">
<div class="h-image__frame-container">
<?php $component->printImage('wp-image- style-148-image style-local-7-h34-image', 'data:image/png;base64,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gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2gACrNp2EBAgQIECAAIG0gAAr7WItAQIECBAgQKC2wMymzTfPH3TgxtoZSEiAAAECBAgQIECAAAECBAgQIEBgXAJbbrkjOEM4Ll35EiBAgAABAgQIECBAgAABAgQINCJgAqsRRpkQIECAAAECBAgQIECAAAECBAiMS8AE1rhk5UuAAAECBAgQIECAAAECBAgQINCIgAmsRhhlQoAAAQIECBAgQIAAAQIECBAgMC4BE1jjkpUvAQIECBAgQIAAAQIECBAgQIBAIwImsBphlAkBAgQIECBAgAABAgQIECBAgMC4BExgjUtWvgQIECBAgAABAgQIECBAgAABAo0ImMBqhFEmBAgQIECAAAECBAgQIECAAAEC4xIwgTUuWfkSIECAAAECBAgQIECAAAECBAg0ImACqxFGmRAgQIAAAQIECBAgQIAAAQIECIxLwATWuGTlS4AAAQIECBAgQIAAAQIECBAg0IiACaxGGGVCgAABAgQIECBAgAABAgQIECAwLgETWOOSlS8BAgQIECBAgAABAgQIECBAgEAjAiawGmGUCQECBAgQIECAAAECBAgQIECAwLgETGCNS1a+BAgQIECAAAECBAgQIECAAAECjQiYwGqEUSYECBAgQIAAAQIECBAgQIAAAQLjEjCBNS5Z+RIgQIAAAQIECBAgQIAAAQIECDQiYAKrEUaZECBAgAABAgQIECBAgAABAgQIjEvABNa4ZOVLgAABAgQIECBAgAABAgQIECDQiIAJrEYYZUKAAAECBAgQIECAAAECBAgQIDAuARNY45KVLwECBAgQIECAAAECBAgQIECAQCMCJrAaYZQJAQIECBAgQIAAAQIECBAgQIDAuARMYI1LVr4ECBAgQIAAAQIECBAgQIAAAQKNCJjAaoRRJgQIECBAgAABAgQIECBAgAABAuMSMIE1Lln5EiBAgAABAgQIECBAgAABAgQINCJgAqsRRpkQIECAAAECBAgQIECAAAECBAiMS8AE1rhk5UuAAAECBAgQIECAAAECBAgQINCIgAmsRhhlQoAAAQIECBAgQIAAAQIECBAgMC4BE1jjkpUvAQIECBAgQIAAAQIECBAgQIBAIwImsBphlAkBAgQIECBAgAABAgQIECBAgMC4BExgjUtWvgQIECBAgAABAgQIECBAgAABAo0ImMBqhFEmBAgQIECAAAECBAgQIECAAAEC4xIwgTUuWfkSIECAAAECBAgQIECAAAECBAg0ImACqxFGmRAgQIAAAQIECBAgQIAAAQIECIxLwATWuGTlS4AAAQIECBAgQIAAAQIECBAg0IiACaxGGGVCgAABAgQIECBAgAABAgQIECAwLgETWOOSlS8BAgQIECBAgAABAgQIECBAgEAjAiawGmGUCQECBAgQIECAAAECBAgQIECAwLgETGCNS1a+BAgQIECAAAECBAgQIECAAAECjQiYwGqEUSYECBAgQIAAAQIECBAgQIAAAQLjEjCBNS5Z+RIgQIAAAQIECBAgQIAAAQIECDQiYAKrEUaZECBAgAABAgQIECBAgAABAgQIjEvABNa4ZOVLgAABAgQIECBAgAABAgQIECDQiIAJrEYYZUKAAAECBAgQIECAAAECBAgQIDAuARNY45KVLwECBAgQIECAAAECBAgQIECAQCMCJrAaYZQJAQIECBAgQIAAAQIECBAgQIDAuARMYI1LVr4ECBAgQIAAAQIECBAgQIAAAQKNCJjAaoRRJgQIECBAgAABAgQIECBAgAABAuMSMIE1Lln5EiBAgAABAgQIECBAgAABAgQINCJgAqsRRpkQIECAAAECBAgQIECAAAECBAiMS8AE1rhk5UuAAAECBAgQIECAAAECBAgQIPD/t3cnYJZU9d2AT2/DzgADCIiogIKyKyrK4oqiCG4xLnHD3Wg0Lp+amJjPuMQYP5XEJMY9URM1xgURBAkgsokKsoiIyCK7wzqy9vqdfw/tTEHfqro9Vd010+95nn5mqu+9p069p+7trl+fc6oRAQFWI4wqIUCAAAECBAgQIECAAAECBAgQaEtAgNWWrHoJECBAgAABAgQIECBAgAABAgQaERBgNcKoEgIECBAgQIAAAQIECBAgQIAAgbYEBFhtyaqXAAECBAgQIECAAAECBAgQIECgEQEBViOMKiFAgAABAgQIECBAgAABAgQIEGhLQIDVlqx6CRAgQIAAAQIECBAgQIAAAQIEGhEQYDXCqBICBAgQIECAAAECBAgQIECAAIG2BARYbcmqlwABAgQIECBAgAABAgQIECBAoBEBAVYjjCohQIAAAQIECBAgQIAAAQIECBBoS0CA1ZasegkQIECAAAECBAgQIECAAAECBBoREGA1wqgSAgQIECBAgAABAgQIECBAgACBtgQEWG3JqpcAAQIECBAgQIAAAQIECBAgQKARAQFWI4wqIUCAAAECBAgQIECAAAECBAgQaEtAgNWWrHoJECBAgAABAgQIECBAgAABAgQaERBgNcKoEgIECBAgQIAAAQIECBAgQIAAgbYEBFhtyaqXAAECBAgQIECAAAECBAgQIECgEQEBViOMKiFAgAABAgQIECBAgAABAgQIEGhLQIDVlqx6CRAgQIAAAQIECBAgQIAAAQIEGhEQYDXCqBICBAgQIECAAAECBAgQIECAAIG2BARYbcmqlwABAgQIECBAgAABAgQIECBAoBEBAVYjjCohQIAAAQIECBAgQIAAAQIECBBoS0CA1ZasegkQIECAAAECBAgQIECAAAECBBoREGA1wqgSAgQIECBAgAABAgQIECBAgACBtgQEWG3JqpcAAQIECBAgQIAAAQIECBAgQKARAQFWI4wqIUCAAAECBAgQIECAAAECBAgQaEtAgNWWrHoJECBAgAABAgQIECBAgAABAgQaERBgNcKoEgIECBAgQIAAAQIECBAgQIAAgbYEBFhtyaqXAAECBAgQIECAAAECBAgQIECgEQEBViOMKiFAgAABAgQIECBAgAABAgQIEGhLQIDVlqx6CRAgQIAAAQIECBAgQIAAAQIEGhEQYDXCqBICBAgQIECAAAECBAgQIECAAIG2BARYbcmqlwABAgQIECBAgAABAgQIECBAoBEBAVYjjCohQIAAAQIECBAgQIAAAQIECBBoS0CA1ZasegkQIECAAAECBAgQIECAAAECBBoREGA1wqgSAgQIECBAgAABAgQIECBAgACBtgQEWG3JqpcAAQIECBAgQIAAAQIECBAgQKARAQFWI4wqIUCAAAECBAgQIECAAAECBAgQaEtAgNWWrHoJECBAgAABAgQIECBAgAABAgQaERBgNcKoEgIECBAgQIAAAQIECBAgQIAAgbYEBFhtyaqXAAECBAgQIECAAAECBAgQIECgEQEBViOMKiFAgAABAgQIECBAgAABAgQIEGhLQIDVlqx6CRAgQIAAAQIECBAgQIAAAQIEGhEQYDXCqBICBAgQIECAAAECBAgQIECAAIG2BARYbcmqlwABAgQIECBAgAABAgQIECBAoBEBAVYjjCohQIAAAQIECBAgQIAAAQIECBBoS0CA1ZasegkQIECAAAECBAgQIECAAAECBBoREGA1wqgSAgQIECBAgAABAgQIECBAgACBtgQEWG3JqpcAAQIECBAgQIAAAQIECBAgQKARAQFWI4wqIUCAAAECBAgQIECAAAECBAgQaEtAgNWWrHoJECBAgAABAgQIECBAgAABAgQaERBgNcKoEgIECBAgQIAAAQIECBAgQIAAgbYEBFhtyaqXAAECBAgQIECAAAECBAgQIECgEQEBViOMKiFAgAABAgQIECBAgAABAgQIEGhLQIDVlqx6CRAgQIAAAQIECBAgQIAAAQIEGhEQYDXCqBICBAgQIECAAAECBAgQIECAAIG2BARYbcmqlwABAgQIECBAgAABAgQIECBAoBEBAVYjjCohQIAAAQIECBAgQIAAAQIECBBoS0CA1ZasegkQIECAAAECBAgQIECAAAECBBoREGA1wqgSAgQIECBAgAABAgQIECBAgACBtgQEWG3JqpcAAQIECBAgQIAAAQIECBAgQKARAQFWI4wqIUCAAAECBAgQIECAAAECBAgQaEtAgNWWrHoJECBAgAABAgQIECBAgAABAgQaERBgNcKoEgIECBAgQIAAAQIECBAgQIAAgbYEBFhtyaqXAAECBAgQIECAAAECBAgQIECgEQEBViOMKiFAgAABAgQIECBAgAABAgQIEGhLQIDVlqx6CRAgQIAAAQIECBAgQIAAAQIEGhEQYDXCqBICBAgQIECAAAECBAgQIECAAIG2BARYbcmqlwABAgQIECBAgAABAgQIECBAoBEBAVYjjCohQIAAAQIECBAgQIAAAQIECBBoS0CA1ZasegkQIECAAAECBAgQIECAAAECBBoREGA1wqgSAgQIECBAgAABAgQIECBAgACBtgQEWG3JqpcAAQIECBAgQIAAAQIECBAgQKARAQFWI4wqIUCAAAECBAgQIECAAAECBAgQaEtAgNWWrHoJECBAgAABAgQIECBAgAABAgQaERBgNcKoEgIECBAgQIAAAQIECBAgQIAAgbYEBFhtyaqXAAECBAgQIECAAAECBAgQIECg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08nLp9JVd02la/LXirH7PM031kGBTUdS2m79gbR9/nrCVgPp2fcfTDtsINpcB7vaIREgQIAAgXkXuPa6G5IAa97Z7ZAAAQIECBAgQIAAAQIECBAgQKCuQARYphDW1fI8AgQIECBAgAABAgQIECBAgACBBREQYC0Iu50SIECAAAECBAgQIECAAAECBAjUFRBg1ZXyPAIECBAgQIAAAQIECBAgQIAAgQUREGAtCLudEiBAgAABAgQIECBAgAABAgQI1BUQYNWV8jwCBAgQIECAAAECBAgQIECAAIEFERBgLQi7nRIgQIAAAQIECBAgQIAAAQIECNQVEGDVlfI8AgQIECBAgAABAgQIECBAgACBBREQYC0Iu50SIECAAAECBAgQIECAAAECBAjUFRBg1ZXyPAIECBAgQIAAAQIECBAgQIAAgQUREGAtCLudEiBAgAABAgQIECBAgAABAgQI1BUQYNWV8jwCBAgQIECAAAECBAgQIECAAIEFERBgLQi7nRIgQIAAAQIECBAgQIAAAQIECNQVEGDVlfI8AgQIECBAgAABAgQIECBAgACBBREQYC0Iu50SIECAAAECBAgQIECAAAECBAjUFRiu+0TPI0CAAIE1F7jw91PpS7+dSP9z9VS67q6pviscyX92eOKWg+mNOw/lfwf6fv1sL/jWNZPp5T8dn+2hP3zvgLyvYx438oftpv+zxwlj6Yo7yj1Of8JI2n3TZo55pv0TeZffvHoyfe2qyfS/yydTbPdToj+estVgeuH2g+lZ2w2mwWab109T0q1jKf3nlXEsE+nsW/o8kLynTXP3Hr7NUPqTHQbT/svm/0B+fdtU+tzlE9PHcEs+lrmUh248kF6a2/8nDxhKW643lxpWveayfD7ulc/LhS77bDaYfnjQ/Py69oIfj6djr58sPeTPPWI4PT+f73XKRy+eSH970USdp04/54gHDqYj95qfY129UXvmfr684vNn9eef+cSR9PBN2n+PvOJn49OfT6vve/X/x+fNRQePpG3Wb78tq++31/9/nj93vpo/f75//VS69Pb+P4Oi3q3y+/YlOwylVz1oMO2wQXPHdd6tk+mAH5b/nOt1XE1+/8D82fq9/dv7WdpkW9VFgACBLgrM/28JXVTQJgIECLQocOQlE+l9v5xI43P7fb7QsrF8bXn87yanv2YeeO79B9M/7jk8HUDMfM+/vQWuvnMqvfLs8XTGjWveIdEfccE/fdH/s5X7PChfoHz2kcPzclF51k1T6Yh8LFf2cfHdS2ZFzmq+fOXE9NfMcyJQ+Mgew2m9ennFzMtq/Rth4cd/PZE+nEOO0fLMpFZ98aSLcwj21xdOTH/F9l5LB9Mn9x6c/je2lW4LfOGKyXTQlpPpefkzbb7KG38+0Vd4NV/t+vzlk6XhVbRjMr+HDjt9PP3kSQsTiMTPtH/I799P5J9xd9bPKUsJl9+98nMhPhuibDCU0vsfPpxe++D5OydKG+hBAgQIEFhQAQHWgvLbOQEC66rAjaNxYTGWLlix5iFJlVGMIPrm1aNpab6GOe6A+RkZUNWmLj7+jTzK6tXnjE9f9LXZvlNyMPbQ48fSUB488PkcZD0nj8xquvzFL8bTP/+modSnpHERKHzhitG0bElKR+cReLs1MALu93kQxHPOHEsRvrVdzs2jLg784Uqnj+WQ99V5VIfSbYFX5UB2/2XzM6roa3nEYoyI7VqJIPbPz6s3WuhX9zz3E/n8nq8S7+E//vFYOq2BPwJUtTmCsXecP56/Unrq1oPpvx49nGLkq0KAAAECi1Ng/n7aLU5fR02AwCIU+KMzxwsjpKoIYhrIAVsMpJ3zlJRt1hvIYcFAui3/afuWfJFwUQ7Azrp5MkUgVlViCtl+J41NT205NU+3G647+6L9HKGq6WmqxTb8PIcYT/7ReIrRUv2UXfJ0tO3WT2nbDQenQ69r75xM19yVUkx1q1NihFFMzXxtvtg6+aBmwp//yBfbb8ojRvopS/L+d9l4cPpY7penGt2WGxbTV6+4I6UYjVanxPn32JPH0oM2HEin5XNrkzn+9vAvl06md19Q78I82hXTAA/MU2b3ysHZtrkvNhkZSOO5H28Zm0pX3pnST26aTGfkIOzuGn37thwIvOcXOeTN03f23qzum6OOjuf0Eqh3dhVfHaOKnplHFf205VFFV+VRi6/NgXbXyszx99OuGK114LL5Gbn2+vz58599hn6PyO+3x+SfcfHzbZv8Po533y1jA+m3+TP1rJun0tn5q84I5Rh9vOzo0elppjE6VCFAgACBxScwx19BFx+UIyZAgECVwG/ymh+POnGs1i/iL8trfHxwt6HpUVNV9a7++FfyFK+3nVc+XSPW2XrgsaPpnCcvSVvXWQdoHb6Wj1EMcXFXVYLgT3caTH+z63BaP09Zmb0UH4jQ5H2/XDkSquxCPZ4X4c/rd8zT8Xaf24/dqP+gvH5LjCiqKhvlXXwwT7l5ZR+jjSLQesu5E5XrH8U6Qfc/ZjR9IY8s63ea1//N02g/ds+0oLJjeE6ePvaZfYZTBG/VZVWfxJo7Lz5rPMX536vEaI6DThmbrv8FD6i1g15VTX9/42x9zTPy8DSlUYGZEUhtjio67Izx1PtMafRw+qospgTPZX3EV+b1sh63xUjatsF1o1Zv+E05xH5M/hy7vsbajfvlsOpf8nt4542qfrgU34OxDmKs+/WzHGiVlbecm6eA3zSUPr3Pqvd/2fPrPhZriV381IWZjlm3jZ5HgACBxS5Q/Mmx2DUcPwECBOYoEL9w7/O/1eFVBFcrDl+S1+XpP7yKpsXi1NcfuiS9JS/iXlZiise+J472PeqorM42Hxuous6Zw84jzKgTXv1T7otbc5/83W5l4dV9GxDrQn0ovyZe+8+5jqryqTz66OX54qzfEutD7Z4Xma4KrzbMTTjpwJF0bQ5U+gmvoj1x4fa1xwxPn5tHPLD6WI7Ix9HPFMZz8uLOdcKrWBz733M4Vi+8KkrumC+W4/VfeVR1SPiaPPImQhKlXYE1eVvXWQNqrq1/cw5r4w8OXSufzWH7t/KU8LmUOJpD88i1NkrcVGHXH4xWhlexsP1VT1+Sjs9T2avDq/u29IF5hGd8hl34lJHpta/u+4xV3/lq/mPOJ+dhGvWqPfofAQIECHRBQIDVhV7QBgIE1mqBm/Nfpp92WvXdyuKvxRFcNVHe//Ch9MY8YqisxEVHrPm0GEusEXX0deUXgrFm2GWHLEkvz6HimpaX5jqirriTX1mJi9P393FXtqjrGXkttapF2h+5+UC6Lgeb8e+aliP3GkrH1rhLVhhX3bFupi2n1lgr5yU5nG3izm6HbTuY3vaQ6j792CXl58dM2/3bnkBMLSub6hw3W5jLaKSyFsdaeF+8ovc03LhL3EKUi/LIwZjmWlbOy8HOE0ruPntJDuUinGu6PPlHY+muimrjZiIRIFd9BtZp2/Y5yLro4CWVQfZf5s+gqs/GOvvzHAIECBBYewTKr37WnuPQUgIECCyYwKvyaJSqu6i946FD6YX5Ar3JEtPEqi4WIjBp+gKwyWNoo67j8jopVaODYhHgC56yZHpx8qbaEAudn5enbcbi7WUl7tp1Zs0FzD/4q4nKxc53z+tDxaiFJsv++SL+f/arHsn0kp+M17r7WAXJdNPLL937O7pY7LmqnJ9HhSkLKxDr/30lL8rdq8zcZa/X4/1+/9q85lssEt+rxOfpvz6id3t6vW5Nvx/HeXie0lhW/j5PP4416L70qJHSRcwjnPt6DumaKh/IgXvVun/xGfTFPHKyybJ5/jyNY64qn883mlAIECBAYPEIVP9kWDwWjpQAAQJ9C5yeR5acsLz8F+iYnvXeXZsNr6KhcfH3vO2G8l3iyv80/o2rp9KbdqoTIfR9+J18wft/Wd4f0eh/23u47/XH6hzsFvmi6+N7DlWOgoi1s6pGOd2er2c/msOuqvLVPPWvjXJwDoFiVNSX81SdXiUWxv9wbuP7HlZ+fh+0Za8aVn0/pgQ9Jo8ge1Ufa3etenXxf4/LAVxM1VW6LRDrKj39foPTU6KPvGT28yzushcjk+Iukmtaqta9+s5+I+mO8hxpTZsw6+tj3aeyPzQ8Po+6ekNeQy9KjBz9dF5fKqbx9iqvySFdrIcVI5nWtPzbZbP3y+r1fqrhtahm6o7Pglc9yPt4xsO/BAgQIJCvfyAQIECAwNwFvnlN9S/3L9i+vY/amO4VF+plX2+qmGo496Pv3ivPzqNqzqtY6Dz+sv9HLfZJTCesWsMpbj8fC6KXlS9fOZniToZl5ZB88b9DS4s2x35f/eDqc/fLNe5ItufSwfSeXcpDrtjfW3NQEXcZi7sVxqgUZd0WuHF0ZSfHlOhHlUx/nV4b6prqYLpMK86tsnXPPpjXs4spuHXu+Fq2n34f+8xlk+nbJccWUyxj1NXqJW6gUPYZFqpNrIcVI7ni7rZlJab9xvtbIUCAAAEC8yHgJ858KNsHAQLrrMDJy6uvsmM6ljI/AsddX32R+9zt2v3RF1MID83rMFWV464vP3eOr3Us7Z5bsUZR1SiO5XenFIu0V5V35QDrL2uEWDGq690XjKfNvjuaNj1qNO13Ur5rYL7Ir7qQrtq/x7snEH06E1R++7HlC3fHiKM6d8Cb7ShjKvXnSu5Geug2g+nP7gn6b7onVJutnqa/F3fMfPv5vUdSxf5itNVmxfxquhkxinS278+08bIckL/x59V/YJl5/mz/XlTjRgdP2Krdz6DZ2uV7BAgQILB4BdZ8PPbitXPkBAgQSNffXX3hvn2LI2TmqwtOvWFqOkyYr/3NdT+X3VH9ylhHpu3ygBp9fsUdEbb1Drrq3CVthw17v76pY9x+/ZSuqnC9Il8s75PDrqry7hxgvWmnofSkvCh0LFpdp8xc5L/9/FXPjhFuT95qMD1r24H0jG2HSi/kV72q+f/dlrOHCNmaLh/dYzi9tsbot6b3uxD13ZD5tl4vpU3yb6T/nafwPbPHDTFm1on6cV4ovJ8SodcRJetebZX3/eXV7lw5Myqsn33M5bkxuvJZFetexcLovUZaxTp+MTLrsHyTh17lS3l05AHLUnrRHNdfjPd1VZmPz6CqNjT1eEzjbOP9/Kl885YXN3CzkKaOUz0ECBBYmwXa/813bdbRdgIECFQI1BkVstSfCioUm3t4eb4AqSrb5TXJ2i73W696H7/LI5fKyvIa4eh2G5TV0MxjsYZbVYlRWHXLxvn9cFYOIW7NU19jVNZcStw0Ie6A+Po8wmSHY1eO1IoLz4f9YGx6+uEdazbwZC5N8po5Cqw+4umgPFq1bJTeL2uMWLp3M2Jx9JlRXvd+LLa/97iRwo0X5msK4St+Wj6iLNa6+kwefVVWVl8bq9fzXnfORPptXrx+LuWaGq/bYmRudc+lPV5DgAABAgTKfzLyIUCAAAECa5HAxFT1xVR1HLPmB1x1J8LYQ1VLq9a/ijrm41jiZgFVpXri5n1riGpjXaz4Gs8YMcXr43kh7zoXzfetbeV3rs4X3DH98N0XrNx+6MYD6VM5BNi3ZH2lXnX5/vwI3DswilF6Z9w4mU7Koz5nKzGd9MBlk+nZNaYCvyNPz4vQq1c5cq/htGtew2n1Mh8jsD6dj+E715a/a/6j4m6DM22OO/Udc91YKhstdehp4+n8p/Q3cm2m/jb+bXKU08Ny//U7Kq+NY1InAQIECMyPgABrfpzthQCBRSxQvsLJ2gETgUyMCGir3JynEfW+zKy/1w1jxeOKmlbMQ4esGKs+mo0rBh9tlH9CV40kunV6P8UL8Ppa9Z75+94zlP5QwcbD1cf7hyfP8p/ottflKXPxNVPOXzGZvvTbWOB6qvQObTPPn+3fWLQ7pitGiTsqfjJP5akTyM1W12zfC/ndN13V5tmeM5fvLVtEN15bGRgVz+Gv56mEOx03mlb0OPdiPazHZaSYetirHJUDogiKepU/zjdyOOKB9+27m8aKben1+rl+/xcrplIEa2Ul3gdPzHcerFu++ujh9NiTe2DlSiLcitGKMZWtn3Jfnfu++s7J+u2876u79Z34OffwTeocdX/t3rzGiNz+avRsAgQILF4BAdbi7XtHToBAAwIxvars9uexi+vvSunBGzawswWs4rF5as8xeapNW2WPE8pHENTd7zZ5vaaqck2NaYZVdVQ9fl2N6X9bV0zN23b9wbT87t4X4NGGa/PUvT2rGrOGj19fY3rgVi1coO2Rg6GP7B5fxQP4yc1T6Vv57p9fy3dI62fq4pevnEjx9bE9h9OrH9TMRWqEjKc9wa9SxR7qb+umWZYQWy93z1F5UfcnnDJ7KBOjEw/Paz+d2WM9rDgvXp6n6PUqcefOzz5i9n67qcZ7t1e9Vd+fbvcZsx/TzGujbf+Q10Drp+y26UD6612H0vsv6j139j/vWQ8rgty6ZftYY+/G3nVGPVfVmGZYd38L/bz4HPN+XuhesH8CBAiUC/T3E7K8Lo8SIEBg0QnsuFHKAVb5YV9++2Tab4v6Fw3ltXm0TODReSHxz5c9IT92Zp6elFK7/XH2zRWNyA8/umJa276bp3TereX1nHnjVHra1uXPWZNHIz87/9byEC3qf8zmzQRCddr6qOz2qM2H04d2W/XsH2WHv7hgIntVt/Vt542na+8amr7gX1WD/y2UQK8pe3EHzA/uNpze84vZg6hY3P//5JFMs4U9z87rXpVNwT12/96//t7Q4l0IX5ZDtarQ9eV5VFiMHuu37JKn0m2bw69rSwKlP83rYe2/bDD/QaXeqKmHbVLdinNyoNxvOXb/en8MiRs9vDW/XxUCBAgQIDAj0Psn+Mwz/EuAAAECPQUO3WYonX5j+S/Y37l2Kr3wAT2r8ECDAnFHulRx6/hTctgRdya7X8UIqLk2K25f//OKICXuIPakfBe9svKMbQbT5/O6UGXlv/MopL95WHth3HeumayYkJnDqy0GWp1eWnb8M48dmEcInvr4lb/SxBpY/3Jpuds/XDyRHpkDkjBWFlagV4AVrfqznQbz5+tg+t51s/fnv8V6WFtOpsO3XdWP78r9H9NPe5XP5ZFXDygJcG6sMeKwV91l3/9UPie/WyOYKhtFVVZ/3ccOPX08XVhzPaxYZ+y9F5aPwDph+eT0KOQ6N3uYaeP++f1ap8TdRhUCBAgQILC6gABrdQ3/J0CAQJ8Cr8h/LX/vhan0r/1x8XXp7VNpx43q/dLeTxMOzbecj9EnZSVuEb/6BV7Zc9f2xzbLf9h//Y6DKS4Wy8rbzp9IX8kubZS/+kX5BV/s8+0PGSrc+Wy2djx168EUo1DOvqV3/8bdxY7MC5+/Zed2Qqy/qrh4jXa/86G99x1B4Qd/Vd4XGwxNpViIuqny4VzXyODEtEtZnd/M4ZwAq0xofh4bKz89Unx+7XL8aOp1186YKnjxU5ekrfJ6WPFZ+68l7/1X5qmjz89rX5WV8j9HlL2y92MX5HWv3pmDtS6Uq3LA/ppzxivvcBhtfVAO+uJnR9WIsLe3+HnaBTNtIECAAIHuCJT/FO9OO7WEAAECnRTYJF93v6vkAn6m0a86u/mLl1gLqCq8irVknrnIRpn87cOGK0cExUiIqlE6M33Xz7//nteZqRplESO/6pwzsd8j9+odDs20669zyBTnQtPlTXkkW9X6bk+/32A6OAdtvcrSkYH0xSsmSr8icIi7BzZZDqtxzv/kpmb32WT715W6mhCOhbWPLll/L6YKPiuvKxV3M3zpT3p/zsbd6j6R1z+b7xJ32Dy8Yt2r+W7T166cTPFZVaf8/e5DlXc7jc+8f/pNRRJZZ2eeQ4AAAQIEKgTm/yd5RYM8TIAAgbVNIG77fuZNk+nE5b0v136WA4bHnzKefnhQMx+7cXeu5/+4fDHgcPx4DkCavOtaW30z1Zuu712unzOf7+c1VsruyhWVxlSzy++IRcKb6ZOP5GlpHyhZRHnmQI553HDl6KuZ5+61dDD9417D6c3n9r4wj+c+Od9p7/N5atQfVYwumam36t/nnzmejvtd+QVpjHj5Sr77WVmJvoi7vX09T3UsK2/II0KOKgkpyl4722M/Kxm1NvP8WDNIaVegKeFdc18dmd8Hb+nxPogRTg/+/iyrwd9zeHGXy7IQrE2Fl+VQ7YaKaYmxjtfLdugdBPfbvtvzx8XDTxhNd5VkVH+WA+oD8npYO1WMDL5/Xlfr6/sNp/hMKCuxVtl5KwZrjewqq8djBAgQIECgTKC5n5Zle/EYAQIE1nGBb+c7Zu1bsSj3ObdMpqVHjVZOx6iiOvb6ybRDvlib7e5dq782wox+7ji1+mvn+/8DTV3p3tPwuCvXWfkOZVXhXUw13OK7o+kHFWFNmce5eb2r7Y4ZrQyvoi0/fdJIesjG/R1sTFP91N7VI7FemUf5PeT4sRRrcM21fDXfpW/TfI5WhVfb5YvaCw9ekiIYqCr/uvdwWrak/Fkn3zCVdjpuNP36trm3fWYPEZbFOkhV5UUNhX1V+/F4MwJH5PdBhKFzKTENMQLX+S4xyvPoHut3zbQlRjC+7sGDaYP8Fm/qa8t8rJ9/ZHm4HPuP9bDqvOOeltv4jRxiVZUY2RWfH3HHwybKZXnqvUKAAAECBFYXmNtvAqvX4P8ECBAgMC1w4oEj+a/o5UFD/Dr+kvwX+fglP9avilFbkzV+R4+A5bn5zlrxuhf8eLzyNX+RR4XFiJzFXGLUxtVPX5J2rhhhEFN8npdHF4TtfieNpc/lhdPLwsHbcjYSF2oHnzo2/ZoDfzie4ntlJe76dVVuy0P7DK9m6nxxPq9+ksOvDctPr+nF6fc6YWW7np2nLX0rr/MUdxLsVWKKYFxk73nPa16b71JWVQ7N0/MuOngkxfTUOiUWrI81iqr6Ie7O9sgTV7b9DbkdVQvhr77vOI535DvSRUD86hrTdV/0gKH0nPvXPIDVd3Sv/8dbN96/bX/da7drzWaNj7a+juWzFQuwz1bZm/P6cAux1lncETNGeZaVWKT8i/u28zkdU8er/oBxTZ66W3d6e6zJF4u/V4XRcbyvz6O74vN09x+Mpa/kUPzW6sHC00wxYuxLOfyKz+F4fZ33cpnvXB5r+71c5+f9XNrtNQQIEFgsAu381Fwseo6TAAEC9xL4ZB4p85adB9PTcjhVNW0k1q/6UcNro8SdoI4/YHh68d17NW1Rbm6Uf8qd/eSR6VFvr8iLPUdYVVYuvOe27W89r+xZ9R+LAUqfyRfdcx05svqedsnh13WHLkl/m6cpfjRPV6wqEY6euLz8ArqqjtUfjwXyv5unP8a0xn5LhFjRD3HXxDoXzHHR+5Ur+91LvefHlMwY1dZEialam+URfG2Xa56xJG28Fv7GVmOAXt90x+4/PB2M1HlhjIr9wMMrUt86FfX5nPiceVb+g0NVic+GWEexrRI/j47/3UTPBfBjv9/I78kDl02mGOFWVbbPQfxlhyxJn80h/9vOqz6+uMlEhNFvSNWfV1X7nu3xWNfs+APyB1NDJYLw+Xg/rzi8YkhqQ8ejGgIECKyLAtU/rdbFo3ZMBAgQaFEgpohd+rQl01PYqkadNNWMuMPhKY8fziNdRoRXs6DGnbRuOmzJ9DpLsYh62yXCnv/K60Pdmi9UmgivVm/ve3cdSnEB9P/yujnzcZv5OJ/PeMJI+m0eQTaX8Gr1tscd4KLt38nrXUXYOp8l7vwY+24qvJrPttvXKoEd8vTVz+xTnfrE+mvfyVO7F6LEKNtYVL6sxOfCc7Zr99fwmLb8X4+uNoi1xS7uY/ruq/PdHOO99NX8GbfFAmQxz8ujJ6/PYf6P8zTxpdWHV9YNHiNAgACBtUyg+jeAteyANJcAAQJdEYgpbDHqJMpJeY2f9104ns6usbh03fY/ZouBFBflh+Q7wSn1BJ6w5UD6dQ75osRaYu/Ld/CLUVdNlLjl/F/ncClCmvkor8nr5rzmwUumR5V9IY+I+PuLx0tHWvTTpv3yufW+fDfHxy5rJ2R6Yu6HCFujxFTBD100mb6f+6PJEutzvTRPvXxfHoETgaKy7gi84AGD6fSbhtIX8h0ue5Vv7DfS6uimXvv953w3vmMq1r3aPIc+n6oRwvXaRz/ff1QehfaOfKfcqlGbz8zrYcXU4Kp1A1ffd0zNvDyPyIoSn6cf/tVEOqfBn3Ez+4qp12/aaTDF1N+6U5dnXutfAgQIEFi3BAYuueyaqW232XLdOipHQ4AAgY4L/D7Pvjh5+WS+eJ9K5+Zf+GPh7RX5e7eMrgxTNl8ykDbPF91xoRMLZu+3+WB6zBYp7bHpYF8XGHUYrs/TJs6vCHG2GBlIj9isnTAj2nhank55Z8XiII/NBjElsK0S67SccsPKPvl57pMrcp/cek+fRK9ECLI0O2y/fkp7bTaY9lk6kA7YcnBBFoeuMrg6T905NYem5+Rw6Nx8jl13V8rHMpXPrzQ9amtpPr82y5Yxcm/vfBx754vcg/IdyWIR6S6UmHoUfXFebvtvbkvp0ryYc7Q/1hobyznXprkvNs0JVfTH1vk9smc+N/e55ytG6DRRYj2eU/PdRbtQnpTPs36Chbm2OW5IsLxi5NDuOZivO3ru8vweuqRiIe7or7muDTe9huAsy5Bvu95Aihs5zKWsyWfRRP6gOCmft1VltxzIbNvQeVq1r5nH40YJ4xW3e421+qruSjhTX9W/o5nh1Py5fm6+ecl5+S6RF/8+pZvze3jF2FSKqbcxcmpZ/hyKNbXi3y3z1/3yZ+t+OTTff4vmP4vis+PMm6v7puq4mnj8KVvNzx85mmirOggQINAlgWuvuyEJsLrUI9pCgAABAgQIECBAgAABAgQIECBQEIgAy58ACiQ2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DUBAVbXekR7CBAgQIAAAQIECBAgQIAAAQIECgICrAKHDQIECBAgQIAAAQIECBAgQIAAga4JCLC61iPaQ4AAAQIECBAgQIAAAQIECBAgUBAQYBU4bBAgQIAAAQIECBAgQIAAAQIECHRNQIDVtR7RHgIECBAgQIAAAQIECBAgQIAAgYKAAKvAYYMAAQIECBAgQIAAAQIECBAgQKBrAgKsrvWI9hAgQIAAAQIECBAgQIAAAQIECBQEBFgFDhsECBAgQIAAAQIECBAgQIAAAQJdExBgda1HtIcAAQIECBAgQIAAAQIECBAgQKAgIMAqcNggQIAAAQIECBAgQIAAAQIECBDomoAAq2s9oj0ECBAgQIAAAQIECBAgQIAAAQIFAQFWgcMGAQIECBAgQIAAAQIECBAgQIBA1wQEWF3rEe0hQIAAAQIECBAgQIAAAQIECBAoCAiwChw2CBAgQIAAAQIECBAgQIAAAQIEuiYgwOpaj2gPAQIECBAgQIAAAQIECBAgQIBAQUCAVeCwQYAAAQIECBAgQIAAAQIECBAg0DWB4WjQtdfd0LV2aQ8BAgQIECBAgAABAgQIECBAgACBaYH/D/apudRKlW0KAAAAAElFTkSuQmCC'); ?>
<div class="h-image__frame style-148-frameImage style-local-7-h34-frameImage <?php $component->printFrameClasses(); ?>"></div>
</div>
</div>
</div>
front-header/logo.php 0000644 00000001613 15133252504 0010574 0 ustar 00 <div data-colibri-id="7-h5" class="d-flex align-items-center text-lg-center text-md-center text-center justify-content-lg-center justify-content-md-center justify-content-center style-5 style-local-7-h5 position-relative h-element">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<?php if ($component->getLayoutType() == 'image') : ?>
<a rel="home" href="<?php echo $component->getHomeUrl(); ?>" h-use-smooth-scroll="true" class="d-flex align-items-center">
<img src="<?php echo $component->customLogoUrl(); ?>" class="h-logo__image h-logo__image_h logo-image style-5-image style-local-7-h5-image"/>
<img src="<?php echo $component->alternateLogoUrl(); ?>" class="h-logo__alt-image h-logo__alt-image_h logo-alt-image style-5-image style-local-7-h5-image"/>
</a>
<?php endif; ?>
<?php $component->printTextLogo(); ?>
</div>
front-header/header-menu.php 0000644 00000012434 15133252504 0012031 0 ustar 00 <?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div data-colibri-component="dropdown-menu" role="navigation" h-use-smooth-scroll-all="true" data-colibri-id="7-h9" class="h-menu h-global-transition-all h-ignore-global-body-typography <?php echo $component->hasOffCanvasMobile(); ?> h-menu-horizontal h-dropdown-menu style-9 style-local-7-h9 position-relative h-element <?php $component->printContainerClasses(); ?>">
<div class="h-global-transition-all h-main-menu">
<?php $component->printHeaderMenu(); ?>
</div>
<div data-colibri-id="7-h10" class="h-mobile-menu h-global-transition-disable style-10 style-local-7-h10 position-relative h-element">
<a data-click-outside="true" data-target="#offcanvas-wrapper-7-h10" data-target-id="offcanvas-wrapper-7-h10" data-offcanvas-overlay-id="offcanvas-overlay-7-h10" href="#" data-colibri-component="offcanvas" data-direction="right" data-push="false" title="Menu" class="h-hamburger-button" rel="noopener noreferrer">
<div class="icon-container h-hamburger-icon">
<div class="h-icon-svg" style="width: 100%; height: 100%;">
<!--Icon by Font Awesome (https://fontawesome.com)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="bars" viewBox="0 0 1536 1896.0833">
<path d="M1536 1344v128q0 26-19 45t-45 19H64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19H64q-26 0-45-19T0 960V832q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19H64q-26 0-45-19T0 448V320q0-26 19-45t45-19h1408q26 0 45 19t19 45z"></path>
</svg>
</div>
</div>
</a>
<div id="offcanvas-wrapper-7-h10" class="h-offcanvas-panel offcanvas offcanvas-right hide force-hide style-10-offscreen style-local-7-h10-offscreen">
<div data-colibri-id="7-h11" class="d-flex flex-column h-offscreen-panel style-11 style-local-7-h11 position-relative h-element">
<div class="offscreen-header h-ui-empty-state-container">
<div data-colibri-id="7-h13" class="h-row-container gutters-row-lg-2 gutters-row-md-2 gutters-row-0 gutters-row-v-lg-2 gutters-row-v-md-2 gutters-row-v-2 style-12 style-local-7-h13 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-2 gutters-col-md-2 gutters-col-0 gutters-col-v-lg-2 gutters-col-v-md-2 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-6 h-col-md-6 h-col-12 style-13-outer style-local-7-h14-outer">
<div data-colibri-id="7-h14" class="d-flex h-flex-basis h-column__inner h-px-lg-2 h-px-md-2 h-px-2 v-inner-lg-2 v-inner-md-2 v-inner-2 style-13 style-local-7-h14 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<?php colibriwp_theme()->get('logo')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offscreen-content">
<div data-colibri-component="accordion-menu" role="navigation" h-use-smooth-scroll-all="true" data-colibri-id="7-h12" class="h-menu h-global-transition-all h-ignore-global-body-typography h-mobile-menu h-menu-accordion style-18 style-local-7-h12 position-relative h-element">
<div class="h-global-transition-all h-mobile-menu">
<?php $component->printHeaderMenu(); ?>
</div>
</div>
</div>
<div class="offscreen-footer h-ui-empty-state-container">
<div data-colibri-id="7-h16" class="h-row-container gutters-row-lg-2 gutters-row-md-2 gutters-row-0 gutters-row-v-lg-2 gutters-row-v-md-2 gutters-row-v-2 style-15 style-local-7-h16 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-2 gutters-col-md-2 gutters-col-0 gutters-col-v-lg-2 gutters-col-v-md-2 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-6 h-col-md-6 h-col-12 style-16-outer style-local-7-h17-outer">
<div data-colibri-id="7-h17" class="d-flex h-flex-basis h-column__inner h-px-lg-2 h-px-md-2 h-px-2 v-inner-lg-2 v-inner-md-2 v-inner-2 style-16 style-local-7-h17 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="7-h18" class="h-text h-text-component style-17 style-local-7-h18 position-relative h-element">
<div>
<p>
<?php colibriwp_print_offscreen_copyright(); ?>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="offcanvas-overlay-7-h10" class="offscreen-overlay style-10-offscreenOverlay style-local-7-h10-offscreenOverlay"></div>
</div>
</div>
front-header/navigation.php 0000644 00000006222 15133252504 0011774 0 ustar 00 <?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div data-colibri-navigation-overlap="true" role="banner" class="h-navigation_outer <?php echo $component->printNavigationClasses(); ?> style-2-outer style-local-7-h2-outer">
<?php colibriwp_theme()->get('front-top-bar')->render(); ?>
<div id="navigation" data-colibri-component="navigation" data-colibri-id="7-h2" class="h-section h-navigation h-navigation d-flex style-2 style-local-7-h2">
<div class="h-section-grid-container h-section-fluid-container">
<div>
<div data-colibri-id="7-h3" class="h-row-container <?php echo $component->printContainerClasses(); ?> gutters-row-lg-0 gutters-row-md-0 gutters-row-2 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-2 style-3 style-local-7-h3 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-2 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-none style-4-outer style-local-7-h4-outer">
<div data-colibri-id="7-h4" data-placeholder-provider="navigation-logo" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-4 style-local-7-h4 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('logo')->render(); ?>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-none style-6-outer style-local-7-h6-outer h-hide-sm">
<div data-colibri-id="7-h6" data-placeholder-provider="navigation-spacing" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-6 style-local-7-h6 h-hide-sm position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="7-h7" class="style-7 style-local-7-h7 position-relative h-element"></div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-none style-8-outer style-local-7-h8-outer">
<div data-colibri-id="7-h8" data-placeholder-provider="navigation-menu" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-8 style-local-7-h8 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('header-menu')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="display: none;"></div>
</div>
</div>
</div>
<?php $component->printSticky();?>
front-header/top-bar.php 0000644 00000003452 15133252504 0011203 0 ustar 00 <div class="h-section-grid-container h-section-fluid-container" data-colibri-id="7-h19">
<div data-colibri-id="7-h20" class="h-row-container style-139 style-local-7-h20 h-hide-sm position-relative">
<div class="h-section-boxed-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-none style-140-outer style-local-7-h21-outer">
<div data-colibri-id="7-h21" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-140 style-local-7-h21 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('top-bar-list-icons')->render(); ?>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-none style-142-outer style-local-7-h23-outer">
<div data-colibri-id="7-h23" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-142 style-local-7-h23 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('top-bar-social-icons')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
front-header/hero.php 0000644 00000004445 15133252504 0010577 0 ustar 00 <div data-colibri-id="7-h25" id="hero" class="h-section h-hero d-flex align-items-lg-center align-items-md-center align-items-center style-19 style-local-7-h25 position-relative">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<?php $component->printBackground(); ?>
<?php $component->printSeparator(); ?>
<div class="h-section-grid-container h-navigation-padding h-section-boxed-container">
<div data-colibri-id="7-h26" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-20 style-local-7-h26 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-21-outer style-local-7-h27-outer">
<div data-colibri-id="7-h27" class="d-flex h-flex-basis h-column__inner h-px-lg-3 h-px-md-3 h-px-3 v-inner-lg-3 v-inner-md-3 v-inner-3 style-21 style-local-7-h27 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('front-title')->render(); ?>
<?php colibriwp_theme()->get('front-subtitle')->render(); ?>
<?php colibriwp_theme()->get('front-buttons')->render(); ?>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-147-outer style-local-7-h33-outer">
<div data-colibri-id="7-h33" class="d-flex h-flex-basis h-column__inner h-px-lg-3 h-px-md-3 h-px-3 v-inner-lg-3 v-inner-md-3 v-inner-3 style-147 style-local-7-h33 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('front-image')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
front-header/buttons/button-1.php 0000644 00000000766 15133252504 0013013 0 ustar 00 <span class="h-button__outer style-26-outer style-local-7-h32-outer d-inline-flex h-element">
<a h-use-smooth-scroll="true" href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'url' )); ?>" data-colibri-id="7-h32" class="d-flex w-100 align-items-center h-button justify-content-lg-center justify-content-md-center justify-content-center style-26 style-local-7-h32 position-relative">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'label' )); ?>
</span>
</a>
</span>
front-header/buttons/button-0.php 0000644 00000000766 15133252504 0013012 0 ustar 00 <span class="h-button__outer style-25-outer style-local-7-h31-outer d-inline-flex h-element">
<a h-use-smooth-scroll="true" href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'url' )); ?>" data-colibri-id="7-h31" class="d-flex w-100 align-items-center h-button justify-content-lg-center justify-content-md-center justify-content-center style-25 style-local-7-h31 position-relative">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'label' )); ?>
</span>
</a>
</span>
front-header/top-bar/list-icon-middle.php 0000644 00000001532 15133252504 0014335 0 ustar 00 <li class="list-item no-gutters">
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true" class="item-link no-gutters">
<div class="d-flex h-col no-gutters align-items-lg-center align-items-md-center align-items-center list-item-text-wrapper">
<div class="d-flex">
<span class="h-svg-icon style-141-icon style-local-7-h22-icon">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</span>
</div>
<span class="list-text d-block">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'text' )); ?>
</span>
</span>
</div>
</a>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start"></div>
</li>
front-header/top-bar/list-icon-last.php 0000644 00000001774 15133252504 0014052 0 ustar 00 <li class="list-item no-gutters">
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true" class="item-link no-gutters">
<div class="d-flex h-col no-gutters align-items-lg-center align-items-md-center align-items-center list-item-text-wrapper">
<div class="d-flex">
<span class="h-svg-icon style-141-icon style-local-7-h22-icon">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</span>
</div>
<span class="list-text d-block">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'text' )); ?>
</span>
</span>
</div>
</a>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start" style="display: none;"></div>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start last-el-spacer"></div>
</li>
front-header/top-bar/social-icon.php 0000644 00000000702 15133252504 0013376 0 ustar 00 <div class="social-icon-container d-inline-flex">
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true">
<div class="icon-container h-social-icon h-global-transition">
<div class="h-icon-svg" style="width: 100%; height: 100%;">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</div>
</div>
</a>
</div>
front-header/top-bar/list-icons.php 0000644 00000000716 15133252504 0013267 0 ustar 00 <div data-colibri-id="7-h22" class="icon-list d-flex justify-content-lg-start justify-content-md-start justify-content-start style-141 style-local-7-h22 position-relative h-element">
<ul class="ul-list-icon horizontal-on-desktop horizontal-on-tablet horizontal-on-mobile justify-content-lg-start justify-content-md-start justify-content-start">
<?php $component = \ColibriWP\Theme\View::getData( "component" ); $component->printIcons(); ?>
</ul>
</div>
front-header/top-bar/social-icons.php 0000644 00000000507 15133252504 0013564 0 ustar 00 <div data-colibri-id="7-h24" class="style-143 style-local-7-h24 position-relative h-element">
<div class="d-flex flex-wrap h-social-icons justify-content-lg-end justify-content-md-end justify-content-center">
<?php $component = \ColibriWP\Theme\View::getData( "component" ); $component->printIcons(); ?>
</div>
</div>
front-header/top-bar/list-icon-first.php 0000644 00000001746 15133252504 0014235 0 ustar 00 <li class="list-item no-gutters">
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start first-el-spacer"></div>
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true" class="item-link no-gutters">
<div class="d-flex h-col no-gutters align-items-lg-center align-items-md-center align-items-center list-item-text-wrapper">
<div class="d-flex">
<span class="h-svg-icon style-141-icon style-local-7-h22-icon">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</span>
</div>
<span class="list-text d-block">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'text' )); ?>
</span>
</span>
</div>
</a>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start"></div>
</li>
front-header/title.php 0000644 00000000403 15133252504 0010751 0 ustar 00 <div data-colibri-id="7-h28" class="h-global-transition-all h-heading style-22 style-local-7-h28 position-relative h-element">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<h1>
<?php $component->printTitle(); ?>
</h1>
</div>
front-footer/footer.php 0000644 00000003476 15133252504 0011211 0 ustar 00 <?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div data-enabled="true" data-colibri-component="footer-parallax" data-colibri-id="13-f1" class="page-footer style-49 style-local-13-f1 position-relative">
<div data-colibri-component="section" data-colibri-id="13-f2" id="copyright" class="h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-50 style-local-13-f2 position-relative">
<div class="h-section-grid-container h-section-boxed-container">
<div data-colibri-id="13-f3" class="h-row-container gutters-row-lg-1 gutters-row-md-1 gutters-row-2 gutters-row-v-lg-1 gutters-row-v-md-1 gutters-row-v-2 style-51 style-local-13-f3 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-1 gutters-col-md-1 gutters-col-2 gutters-col-v-lg-1 gutters-col-v-md-1 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-52-outer style-local-13-f4-outer">
<div data-colibri-id="13-f4" class="d-flex h-flex-basis h-column__inner h-px-lg-1 h-px-md-1 h-px-2 v-inner-lg-1 v-inner-md-1 v-inner-2 style-52 style-local-13-f4 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="13-f5" class="style-53 style-local-13-f5 position-relative h-element">
<?php colibriwp_theme_print_footer_copyright(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php $component->printParalaxJsToggle();?>
content/content-post-single-header.php 0000644 00000000727 15133252504 0014077 0 ustar 00 <div class="post-meta muted">
<i class="font-icon-post fa fa-user"></i>
<?php the_author_posts_link(); ?>
<i class="font-icon-post fa fa-folder-o"></i>
<?php the_category(' ', ' ');?>
<i class="font-icon-post fa fa-calendar"></i>
<span class="post-date"><?php the_time(get_option('date_format')); ?></span>
| <i class="font-icon-post fa fa-comment-o"></i>
<span><?php echo get_comments_number(); ?></span>
</div>
content/content-list-post-meta.php 0000644 00000000216 15133252504 0013260 0 ustar 00 <div class="post-meta small muted space-bottom-small">
<span class="date"><?php the_time( get_option( 'date_format' ) ); ?></span>
</div>
sidebar/post.php 0000644 00000003610 15133252504 0007653 0 ustar 00 <?php
if (!is_active_sidebar('colibri-sidebar-1') ) {
return;
}
?>
<div data-colibri-id="438-s1" class="style-603 style-local-438-s1 position-relative">
<div data-colibri-component="section" data-colibri-id="438-s2" id="blog-sidebar" class="h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-604 style-local-438-s2 position-relative">
<div class="h-section-grid-container h-section-boxed-container">
<div data-colibri-id="438-s3" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-2 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-2 style-609 style-local-438-s3 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-2 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-610-outer style-local-438-s4-outer">
<div data-colibri-id="438-s4" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-610 style-local-438-s4 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="438-s5" class="h-widget-area style-611 style-local-438-s5 position-relative h-element">
<div class="h-global-transition-all widget-shortcode">
<?php colibriwp_widget_area(array (
'id' => 'sidebar-1',
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
sidebar/ecommerce-left.php 0000644 00000004204 15133252504 0011555 0 ustar 00 <?php
if (!is_active_sidebar('colibri-ecommerce-left') ) {
return;
}
?>
<div data-colibri-id="438-s1" class="style-603 style-local-438-s1 position-relative">
<div data-colibri-component="section" data-colibri-id="438-s2" id="blog-sidebar" class="h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-604 style-local-438-s2 position-relative">
<div class="h-section-grid-container h-section-boxed-container">
<div data-colibri-id="438-s3" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-2 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-2 style-609 style-local-438-s3 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-2 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-610-outer style-local-438-s4-outer">
<div data-colibri-id="438-s4" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-610 style-local-438-s4 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="438-s5" class="h-widget-area style-611 style-local-438-s5 position-relative h-element">
<div class="h-global-transition-all widget-shortcode">
<?php colibriwp_widget_area(array (
'id' => 'ecommerce-left',
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
layout-wrapper-content/categories-container-1.php 0000644 00000004106 15133252504 0016164 0 ustar 00 <div data-colibri-id="432-m10" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-550 style-local-432-m10 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-551-outer style-local-432-m11-outer">
<div data-colibri-id="432-m11" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-551 style-local-432-m11 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="432-m12" class="h-text h-text-component style-552 style-local-432-m12 position-relative h-element">
<div>
<p>
<?php esc_html_e('Categories:','colibri-wp'); ?>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg h-col-md h-col style-553-outer style-local-432-m13-outer">
<div data-colibri-id="432-m13" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-553 style-local-432-m13 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="432-m14" class="h-blog-categories style-554 style-local-432-m14 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_categories(array (
'prefix' => '',
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
layout-wrapper-content/navigation-container-1.php 0000644 00000005037 15133252504 0016202 0 ustar 00 <div data-colibri-id="432-m20" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-560 style-local-432-m20 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-561-outer style-local-432-m21-outer">
<div data-colibri-id="432-m21" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-2 v-inner-md-2 v-inner-2 style-561 style-local-432-m21 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="432-m22" class="post-nav-button hide-title style-562 style-local-432-m22 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_nav_button(array (
'type' => 'prev',
'prev_post' => __('Previous post', 'colibri-wp'),
'next_post' => __('Next post:', 'colibri-wp'),
'show_title' => false,
'title_length' => 40,
)); ?>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-563-outer style-local-432-m23-outer">
<div data-colibri-id="432-m23" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-2 v-inner-md-2 v-inner-2 style-563 style-local-432-m23 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="432-m24" class="post-nav-button hide-title style-564 style-local-432-m24 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_nav_button(array (
'type' => 'next',
'prev_post' => __('Previous post:', 'colibri-wp'),
'next_post' => __('Next post', 'colibri-wp'),
'show_title' => false,
'title_length' => 30,
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
layout-wrapper-content/navigation-container-2.php 0000644 00000006137 15133252504 0016205 0 ustar 00 <div data-colibri-id="435-m18" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-595 style-local-435-m18 position-relative">
<div class="h-row justify-content-lg-end justify-content-md-end justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-597-outer style-local-435-m19-outer">
<div data-colibri-id="435-m19" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-2 v-inner-md-2 v-inner-2 style-597 style-local-435-m19 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="435-m20" class="style-598 style-local-435-m20 position-relative h-element">
<div class="h-global-transition-all archive-nav-button">
<?php colibriwp_archive_nav_button(array (
'type' => 'prev',
'next_label' => __('Next', 'colibri-wp'),
'prev_label' => __('Previous', 'colibri-wp'),
)); ?>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-599-outer style-local-435-m21-outer">
<div data-colibri-id="435-m21" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-2 v-inner-md-2 v-inner-2 style-599 style-local-435-m21 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="435-m22" class="style-600 style-local-435-m22 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_archive_pagination(); ?>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-601-outer style-local-435-m23-outer">
<div data-colibri-id="435-m23" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-2 v-inner-md-2 v-inner-2 style-601 style-local-435-m23 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="435-m24" class="style-602 style-local-435-m24 position-relative h-element">
<div class="h-global-transition-all archive-nav-button">
<?php colibriwp_archive_nav_button(array (
'type' => 'next',
'next_label' => __('Next', 'colibri-wp'),
'prev_label' => __('Back', 'colibri-wp'),
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
layout-wrapper-content/tags-container-1.php 0000644 00000004267 15133252504 0015005 0 ustar 00 <div data-colibri-id="432-m15" class="h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-555 style-local-432-m15 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-center align-items-md-center align-items-center gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto align-self-lg-center align-self-md-center align-self-center style-556-outer style-local-432-m16-outer">
<div data-colibri-id="432-m16" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-556 style-local-432-m16 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="432-m17" class="h-text h-text-component style-557 style-local-432-m17 position-relative h-element">
<div>
<p>
<?php esc_html_e('Tags:','colibri-wp'); ?>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-lg h-col-md h-col align-self-lg-center align-self-md-center align-self-center style-558-outer style-local-432-m18-outer">
<div data-colibri-id="432-m18" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-558 style-local-432-m18 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="432-m19" class="h-blog-tags empty-preview style-559 style-local-432-m19 position-relative h-element">
<div class="h-global-transition-all">
<?php colibriwp_post_tags(array (
'prefix' => '',
)); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
inner-header/header-menu.php 0000644 00000012437 15133252504 0012017 0 ustar 00 <?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div data-colibri-component="dropdown-menu" role="navigation" h-use-smooth-scroll-all="true" data-colibri-id="10-h9" class="h-menu h-global-transition-all h-ignore-global-body-typography <?php echo $component->hasOffCanvasMobile(); ?> h-menu-horizontal h-dropdown-menu style-201 style-local-10-h9 position-relative h-element <?php $component->printContainerClasses(); ?>">
<div class="h-global-transition-all h-main-menu">
<?php $component->printHeaderMenu(); ?>
</div>
<div data-colibri-id="10-h10" class="h-mobile-menu h-global-transition-disable style-10 style-local-10-h10 position-relative h-element">
<a data-click-outside="true" data-target="#offcanvas-wrapper-10-h10" data-target-id="offcanvas-wrapper-10-h10" data-offcanvas-overlay-id="offcanvas-overlay-10-h10" href="#" data-colibri-component="offcanvas" data-direction="right" data-push="false" title="Menu" class="h-hamburger-button">
<div class="icon-container h-hamburger-icon">
<div class="h-icon-svg" style="width: 100%; height: 100%;">
<!--Icon by Font Awesome (https://fontawesome.com)-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="bars" viewBox="0 0 1536 1896.0833">
<path d="M1536 1344v128q0 26-19 45t-45 19H64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19H64q-26 0-45-19T0 960V832q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19H64q-26 0-45-19T0 448V320q0-26 19-45t45-19h1408q26 0 45 19t19 45z"></path>
</svg>
</div>
</div>
</a>
<div id="offcanvas-wrapper-10-h10" class="h-offcanvas-panel offcanvas offcanvas-right hide force-hide style-10-offscreen style-local-10-h10-offscreen">
<div data-colibri-id="10-h11" class="d-flex flex-column h-offscreen-panel style-11 style-local-10-h11 position-relative h-element">
<div class="offscreen-header h-ui-empty-state-container">
<div data-colibri-id="10-h13" class="h-row-container gutters-row-lg-2 gutters-row-md-2 gutters-row-0 gutters-row-v-lg-2 gutters-row-v-md-2 gutters-row-v-2 style-12 style-local-10-h13 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-2 gutters-col-md-2 gutters-col-0 gutters-col-v-lg-2 gutters-col-v-md-2 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-6 h-col-md-6 h-col-12 style-13-outer style-local-10-h14-outer">
<div data-colibri-id="10-h14" class="d-flex h-flex-basis h-column__inner h-px-lg-2 h-px-md-2 h-px-2 v-inner-lg-2 v-inner-md-2 v-inner-2 style-13 style-local-10-h14 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<?php colibriwp_theme()->get('logo')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offscreen-content">
<div data-colibri-component="accordion-menu" role="navigation" h-use-smooth-scroll-all="true" data-colibri-id="10-h12" class="h-menu h-global-transition-all h-ignore-global-body-typography h-mobile-menu h-menu-accordion style-18 style-local-10-h12 position-relative h-element">
<div class="h-global-transition-all h-mobile-menu">
<?php $component->printHeaderMenu(); ?>
</div>
</div>
</div>
<div class="offscreen-footer h-ui-empty-state-container">
<div data-colibri-id="10-h16" class="h-row-container gutters-row-lg-2 gutters-row-md-2 gutters-row-0 gutters-row-v-lg-2 gutters-row-v-md-2 gutters-row-v-2 style-15 style-local-10-h16 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-2 gutters-col-md-2 gutters-col-0 gutters-col-v-lg-2 gutters-col-v-md-2 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-6 h-col-md-6 h-col-12 style-16-outer style-local-10-h17-outer">
<div data-colibri-id="10-h17" class="d-flex h-flex-basis h-column__inner h-px-lg-2 h-px-md-2 h-px-2 v-inner-lg-2 v-inner-md-2 v-inner-2 style-16 style-local-10-h17 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<div data-colibri-id="10-h18" class="h-text h-text-component style-17 style-local-10-h18 position-relative h-element">
<div>
<p>
<?php colibriwp_print_offscreen_copyright(); ?>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="offcanvas-overlay-10-h10" class="offscreen-overlay style-10-offscreenOverlay style-local-10-h10-offscreenOverlay"></div>
</div>
</div>
inner-header/hero.php 0000644 00000003220 15133252504 0010550 0 ustar 00 <?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div data-colibri-id="10-h25" id="hero" class="h-section h-hero d-flex align-items-lg-center align-items-md-center align-items-center style-184 style-local-10-h25 position-relative" style=" <?php $component->printPostFeaturedImage(); ?>">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<?php $component->printBackground();?>
<?php $component->printSeparator(); ?>
<div class="h-section-grid-container h-navigation-padding h-section-boxed-container">
<div data-colibri-id="10-h26" class="h-row-container gutters-row-lg-2 gutters-row-md-2 gutters-row-0 gutters-row-v-lg-2 gutters-row-v-md-2 gutters-row-v-2 style-192 style-local-10-h26 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-2 gutters-col-md-2 gutters-col-0 gutters-col-v-lg-2 gutters-col-v-md-2 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-193-outer style-local-10-h27-outer">
<div data-colibri-id="10-h27" class="d-flex h-flex-basis h-column__inner h-px-lg-2 h-px-md-2 h-px-2 v-inner-lg-2 v-inner-md-2 v-inner-2 style-193 style-local-10-h27 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start">
<?php colibriwp_theme()->get('inner-title')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
inner-header/top-bar/social-icon.php 0000644 00000000702 15133252504 0013361 0 ustar 00 <div class="social-icon-container d-inline-flex">
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true">
<div class="icon-container h-social-icon h-global-transition">
<div class="h-icon-svg" style="width: 100%; height: 100%;">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</div>
</div>
</a>
</div>
inner-header/top-bar/list-icon-middle.php 0000644 00000001533 15133252504 0014321 0 ustar 00 <li class="list-item no-gutters">
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true" class="item-link no-gutters">
<div class="d-flex h-col no-gutters align-items-lg-center align-items-md-center align-items-center list-item-text-wrapper">
<div class="d-flex">
<span class="h-svg-icon style-141-icon style-local-10-h22-icon">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</span>
</div>
<span class="list-text d-block">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'text' )); ?>
</span>
</span>
</div>
</a>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start"></div>
</li>
inner-header/top-bar/social-icons.php 0000644 00000000511 15133252504 0013542 0 ustar 00 <div data-colibri-id="10-h24" class="style-143 style-local-10-h24 position-relative h-element">
<div class="d-flex flex-wrap h-social-icons justify-content-lg-end justify-content-md-end justify-content-center">
<?php $component = \ColibriWP\Theme\View::getData( "component" ); $component->printIcons(); ?>
</div>
</div>
inner-header/top-bar/list-icons.php 0000644 00000000720 15133252504 0013245 0 ustar 00 <div data-colibri-id="10-h22" class="icon-list d-flex justify-content-lg-start justify-content-md-start justify-content-start style-141 style-local-10-h22 position-relative h-element">
<ul class="ul-list-icon horizontal-on-desktop horizontal-on-tablet horizontal-on-mobile justify-content-lg-start justify-content-md-start justify-content-start">
<?php $component = \ColibriWP\Theme\View::getData( "component" ); $component->printIcons(); ?>
</ul>
</div>
inner-header/top-bar/list-icon-last.php 0000644 00000001775 15133252504 0014036 0 ustar 00 <li class="list-item no-gutters">
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true" class="item-link no-gutters">
<div class="d-flex h-col no-gutters align-items-lg-center align-items-md-center align-items-center list-item-text-wrapper">
<div class="d-flex">
<span class="h-svg-icon style-141-icon style-local-10-h22-icon">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</span>
</div>
<span class="list-text d-block">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'text' )); ?>
</span>
</span>
</div>
</a>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start" style="display: none;"></div>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start last-el-spacer"></div>
</li>
inner-header/top-bar/list-icon-first.php 0000644 00000001747 15133252504 0014221 0 ustar 00 <li class="list-item no-gutters">
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start first-el-spacer"></div>
<a href="<?php echo esc_url(\ColibriWP\Theme\View::getData( 'link_value' )); ?>" h-use-smooth-scroll="true" class="item-link no-gutters">
<div class="d-flex h-col no-gutters align-items-lg-center align-items-md-center align-items-center list-item-text-wrapper">
<div class="d-flex">
<span class="h-svg-icon style-141-icon style-local-10-h22-icon">
<?php $icon = \ColibriWP\Theme\View::getData( 'icon' ); if (isset($icon['content'])) echo $icon['content'] ?>
</span>
</div>
<span class="list-text d-block">
<span>
<?php echo esc_html(\ColibriWP\Theme\View::getData( 'text' )); ?>
</span>
</span>
</div>
</a>
<div class="list-container-divider d-flex justify-content-lg-start justify-content-md-start justify-content-start"></div>
</li>
inner-header/logo.php 0000644 00000001625 15133252504 0010562 0 ustar 00 <div data-colibri-id="10-h5" class="d-flex align-items-center text-lg-center text-md-center text-center justify-content-lg-center justify-content-md-center justify-content-center style-204 style-local-10-h5 position-relative h-element">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<?php if ($component->getLayoutType() == 'image') : ?>
<a rel="home" href="<?php echo $component->getHomeUrl(); ?>" h-use-smooth-scroll="true" class="d-flex align-items-center">
<img src="<?php echo $component->customLogoUrl(); ?>" class="h-logo__image h-logo__image_h logo-image style-204-image style-local-10-h5-image"/>
<img src="<?php echo $component->alternateLogoUrl(); ?>" class="h-logo__alt-image h-logo__alt-image_h logo-alt-image style-204-image style-local-10-h5-image"/>
</a>
<?php endif; ?>
<?php $component->printTextLogo(); ?>
</div>
inner-header/navigation.php 0000644 00000006262 15133252504 0011763 0 ustar 00 <?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div data-colibri-navigation-overlap="true" role="banner" class="h-navigation_outer <?php echo $component->printNavigationClasses(); ?> style-200-outer style-local-10-h2-outer">
<?php colibriwp_theme()->get('inner-top-bar')->render(); ?>
<div id="navigation" data-colibri-component="navigation" data-colibri-id="10-h2" class="h-section h-navigation h-navigation d-flex style-200 style-local-10-h2">
<div class="h-section-grid-container h-section-fluid-container">
<div>
<div data-colibri-id="10-h3" class="h-row-container <?php echo $component->printContainerClasses(); ?> gutters-row-lg-0 gutters-row-md-0 gutters-row-2 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-2 style-3 style-local-10-h3 position-relative">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-2 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-2">
<div class="h-column h-column-container d-flex h-col-none style-205-outer style-local-10-h4-outer">
<div data-colibri-id="10-h4" data-placeholder-provider="navigation-logo" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-205 style-local-10-h4 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('logo')->render(); ?>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-none style-203-outer style-local-10-h6-outer h-hide-sm">
<div data-colibri-id="10-h6" data-placeholder-provider="navigation-spacing" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-203 style-local-10-h6 h-hide-sm position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<div data-colibri-id="10-h7" class="style-7 style-local-10-h7 position-relative h-element"></div>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-none style-202-outer style-local-10-h8-outer">
<div data-colibri-id="10-h8" data-placeholder-provider="navigation-menu" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-202 style-local-10-h8 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-auto align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('header-menu')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="display: none;"></div>
</div>
</div>
</div>
<?php $component->printSticky();?>
inner-header/title.php 0000644 00000000461 15133252504 0010740 0 ustar 00 <div data-colibri-id="10-h28" class="page-title style-194 style-local-10-h28 position-relative h-element">
<?php $component = \ColibriWP\Theme\View::getData( 'component' ); ?>
<div class="h-global-transition-all">
<?php colibriwp_page_title(array (
'tag' => 'h1',
)); ?>
</div>
</div>
inner-header/top-bar.php 0000644 00000003463 15133252504 0011170 0 ustar 00 <div class="h-section-grid-container h-section-fluid-container" data-colibri-id="10-h19">
<div data-colibri-id="10-h20" class="h-row-container style-139 style-local-10-h20 h-hide-sm position-relative">
<div class="h-section-boxed-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0">
<div class="h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0">
<div class="h-column h-column-container d-flex h-col-none style-140-outer style-local-10-h21-outer">
<div data-colibri-id="10-h21" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-140 style-local-10-h21 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('top-bar-list-icons')->render(); ?>
</div>
</div>
</div>
<div class="h-column h-column-container d-flex h-col-none style-142-outer style-local-10-h23-outer">
<div data-colibri-id="10-h23" class="d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-142 style-local-10-h23 position-relative">
<div class="w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-center align-self-md-center align-self-center">
<?php colibriwp_theme()->get('top-bar-social-icons')->render(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>