Done ! 403WebShell
403Webshell
Server IP : 46.105.57.169  /  Your IP : 216.73.217.35
Web Server : Apache
System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : verseaumee ( 152031)
PHP Version : 8.5.7
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/verseaumee/123click/assets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/verseaumee/123click/assets/bizone.zip
PK!���}}html/pagination.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to pagination rendering.
 *
 * pagination_list_footer
 * 	Input variable $list is an array with offsets:
 * 		$list[limit]		: int
 * 		$list[limitstart]	: int
 * 		$list[total]		: int
 * 		$list[limitfield]	: string
 * 		$list[pagescounter]	: string
 * 		$list[pageslinks]	: string
 *
 * pagination_list_render
 * 	Input variable $list is an array with offsets:
 * 		$list[all]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[start]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[previous]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[next]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[end]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[pages]
 * 			[{PAGE}][data]		: string
 * 			[{PAGE}][active]	: boolean
 *
 * pagination_item_active
 * 	Input variable $item is an object with fields:
 * 		$item->base	: integer
 * 		$item->link	: string
 * 		$item->text	: string
 *
 * pagination_item_inactive
 * 	Input variable $item is an object with fields:
 * 		$item->base	: integer
 * 		$item->link	: string
 * 		$item->text	: string
 *
 * This gives template designers ultimate control over how pagination is rendered.
 *
 * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both
 */

/**
 * Renders the pagination footer
 *
 * @param   array   $list  Array containing pagination footer
 *
 * @return  string         HTML markup for the full pagination footer
 *
 * @since   3.0
 */
function pagination_list_footer($list)
{
	$html = "<div class=\"pagination\">\n";
	$html .= $list['pageslinks'];
	$html .= "\n<input type=\"hidden\" name=\"" . $list['prefix'] . "limitstart\" value=\"" . $list['limitstart'] . "\" />";
	$html .= "\n</div>";

	return $html;
}

/**
 * Renders the pagination list
 *
 * @param   array   $list  Array containing pagination information
 *
 * @return  string         HTML markup for the full pagination object
 *
 * @since   3.0
 */
function pagination_list_render($list)
{
	// Calculate to display range of pages
	$currentPage = 1;
	$range = 1;
	$step = 5;
	foreach ($list['pages'] as $k => $page)
	{
		if (!$page['active'])
		{
			$currentPage = $k;
		}
	}
	if ($currentPage >= $step)
	{
		if ($currentPage % $step == 0)
		{
			$range = ceil($currentPage / $step) + 1;
		}
		else
		{
			$range = ceil($currentPage / $step);
		}
	}

	$html = '<ul class="pagination-list pagination">';
	$html .= $list['start']['data'];
	$html .= $list['previous']['data'];

	foreach ($list['pages'] as $k => $page)
	{
		if (in_array($k, range($range * $step - ($step + 1), $range * $step)))
		{
			if (($k % $step == 0 || $k == $range * $step - ($step + 1)) && $k != $currentPage && $k != $range * $step - $step)
			{
				$page['data'] = preg_replace('#(<a.*?>).*?(</a>)#', '$1...$2', $page['data']);
			}
		}

		$html .= $page['data'];
	}

	$html .= $list['next']['data'];
	$html .= $list['end']['data'];

	$html .= '</ul>';
	return $html;
}

/**
 * Renders an active item in the pagination block
 *
 * @param   JPaginationObject  $item  The current pagination object
 *
 * @return  string                    HTML markup for active item
 *
 * @since   3.0
 */
function pagination_item_active(&$item)
{
	$class = '';

	// Check for "Start" item
	if ($item->text == JText::_('JLIB_HTML_START'))
	{
		$display = '<i class="fa fa-angle-double-left"></i>';
	}

	// Check for "Prev" item
	if ($item->text == JText::_('JPREV'))
	{
		$display = '<i class="fa fa-long-arrow-left"></i>' .JText::_('JPREV');
		$class   = ' class="morepost pull-left"';
	}

	// Check for "Next" item
	if ($item->text == JText::_('JNEXT'))
	{
		$display = JText::_('JNEXT') .' <i class="fa fa-long-arrow-right"></i>';
		$class   = ' class="morepost pull-right"';
	}

	// Check for "End" item
	if ($item->text == JText::_('JLIB_HTML_END'))
	{
		$display = '<i class="fa fa-angle-double-right"></i>';
	}

	// If the display object isn't set already, just render the item with its text
	if (!isset($display))
	{
		$display = $item->text;
		$class   = ' class="hidden-phone"';
	}

	return '<li' . $class . '><a title="' . $item->text . '" href="' . $item->link . '" class="pagenav">' . $display . '</a></li>';
}

/**
 * Renders an inactive item in the pagination block
 *
 * @param   JPaginationObject  $item  The current pagination object
 *
 * @return  string  HTML markup for inactive item
 *
 * @since   3.0
 */
function pagination_item_inactive(&$item)
{
	// Check for "Start" item
	if ($item->text == JText::_('JLIB_HTML_START'))
	{
		return '<li class="disabled"><a><i class="icon-first"></i></a></li>';
	}

	// Check for "Prev" item
	if ($item->text == JText::_('JPREV'))
	{
		return '<li class="disabled morepost pull-left"><a><i class="fa fa-long-arrow-left"></i>' .JText::_('JPREV') .'</a></li>';
	}

	// Check for "Next" item
	if ($item->text == JText::_('JNEXT'))
	{
		return '<li class="disabled morepost pull-right"><a>' .JText::_('JNEXT') .'<i class="imorepost pull-right"></i></a></li>';
	}

	// Check for "End" item
	if ($item->text == JText::_('JLIB_HTML_END'))
	{
		return '<li class="disabled"><a><i class="icon-last"></i></a></li>';
	}

	// Check if the item is the active page
	if (isset($item->active) && ($item->active))
	{
		return '<li class="active hidden-phone"><a>' . $item->text . '</a></li>';
	}

	// Doesn't match any other condition, render a normal item
	return '<li class="disabled hidden-phone"><a>' . $item->text . '</a></li>';
}
PK!��h��*html/com_blue_pagebuilder/page/default.phpnu�[���<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_BLUE_PAGEBUILDER
 *
 * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
// check sidebar
$checksidebar = JFactory::getApplication()->getTemplate(true)->params->get('type');
?>
<?php if($this->itemConfig->id!="") echo "<section id='{$this->itemConfig->id}'>"; ?>
<?php if($this->itemConfig->class!="") echo "<div class='{$this->itemConfig->class}'>"; ?>
<?php if($this->itemConfig->fullwidth!="1" && !$checksidebar) echo '<div class="container">'; ?>
<?php echo do_shortcode($this->item->code); ?>
<?php if(!$this->itemConfig->fullwidth && !$checksidebar) echo '</div>'; ?>
<?php if($this->itemConfig->class!="") echo "</div>"; ?>
<?php if($this->itemConfig->id!="") echo "</section>"; ?>
PK!\9�l��*html/layouts/com_contact/fields/render.phpnu�[���<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
defined('_JEXEC') or die;

// Check if we have all the data
if (!key_exists('item', $displayData) || !key_exists('context', $displayData))
{
	return;
}

// Setting up for display
$item = $displayData['item'];

if (!$item)
{
	return;
}

$context = $displayData['context'];

if (!$context)
{
	return;
}

JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR . '/components/com_fields/helpers/fields.php');

$parts     = explode('.', $context);
$component = $parts[0];
$fields    = null;

if (key_exists('fields', $displayData))
{
	$fields = $displayData['fields'];
}
else
{
	$fields = $item->jcfields ?: FieldsHelper::getFields($context, $item, true);
}

if (!$fields)
{
	return;
}

// Check if we have mail context in first element
$isMail = (reset($fields)->context == 'com_contact.mail');

if (!$isMail)
{
	// Print the container tag
	echo '<dl class="fields-container contact-fields dl-horizontal">';
}

// Loop through the fields and print them
foreach ($fields as $field)
{
	// If the value is empty do nothing
	if (!strlen($field->value) && !$isMail)
	{
		continue;
	}

	$layout = $field->params->get('layout', 'render');
	echo FieldsHelper::render($context, 'field.' . $layout, array('field' => $field));
}

if (!$isMail)
{
	// Close the container
	echo '</dl>';
}

PK!�T+~~ html/mod_breadcrumbs/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_breadcrumbs
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');
?>

	<?php
	// Get rid of duplicated entries on trail including home page when using multilanguage
	for ($i = 0; $i < $count; $i++)
	{
		if ($i == 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link == $list[$i - 1]->link)
		{
			unset($list[$i]);
		}
	}

	// Find last and penultimate items in breadcrumbs list
	end($list);
	$last_item_key = key($list);
	prev($list);
	$penult_item_key = key($list);

	// Make a link if not the last item in the breadcrumbs
	$show_last = $params->get('showLast', 1);

	// Generate the trail
	foreach ($list as $key => $item) :
		if ($key != $last_item_key) :
			// Render all but last item - along with separator ?>
			<?php if (!empty($item->link)) : ?>
				<a href="<?php echo $item->link; ?>"><i class="fa fa-circle"></i><?php echo $item->name; ?></a>
			<?php else : ?>
				<a href="#."><i class="fa fa-circle"></i><?php echo $item->name; ?></a>
			<?php endif; ?>
		<?php elseif ($show_last) :
			// Render last item if reqd. ?>

			<span><i class="fa fa-angle-right"></i><?php echo $item->name; ?></span>
		<?php endif;
	endforeach; ?>PK!߄�B  html/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!��<V�� html/mod_k2_tools/categories.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CategoriesListBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php echo $output; ?>
</div>
PK!��html/mod_k2_tools/authors.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2AuthorsListBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
  <ul>
    <?php foreach ($authors as $author): ?>
    <li>
      <?php if ($params->get('authorAvatar')): ?>
      <a class="k2Avatar abAuthorAvatar" rel="author" href="<?php echo $author->link; ?>" title="<?php echo K2HelperUtilities::cleanHtml($author->name); ?>">
      	<img src="<?php echo $author->avatar; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($author->name); ?>" style="width:<?php echo $avatarWidth; ?>px;height:auto;" />
      </a>
      <?php endif; ?>

      <a class="abAuthorName" rel="author" href="<?php echo $author->link; ?>">
      	<?php echo $author->name; ?>

      	<?php if ($params->get('authorItemsCounter')): ?>
      	<span>(<?php echo $author->items; ?>)</span>
      	<?php endif; ?>
      </a>

      <?php if ($params->get('authorLatestItem')): ?>
      <a class="abAuthorLatestItem" href="<?php echo $author->latest->link; ?>" title="<?php echo K2HelperUtilities::cleanHtml($author->latest->title); ?>">
      	<?php echo $author->latest->title; ?>
	      <span class="abAuthorCommentsCount">
	      	(<?php echo $author->latest->numOfComments; ?> <?php if($author->latest->numOfComments=='1') echo JText::_('K2_MODK2TOOLS_COMMENT'); else echo JText::_('K2_MODK2TOOLS_COMMENTS'); ?>)
	      </span>
      </a>
      <?php endif; ?>
    </li>
    <?php endforeach; ?>
  </ul>
</div>
PK!�Q�Shtml/mod_k2_tools/calendar.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CalendarBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php echo $calendar; ?>
	<div class="clr"></div>
</div>
PK!�L��}}html/mod_k2_tools/search.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

/*
Important note:
If you wish to use the live search option, it's important that you maintain the same class names for wrapping elements, e.g. the wrapping div and form.
*/

?>
<div id="search" class="k2SearchBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); if($params->get('liveSearch')) echo ' k2LiveSearchBlock'; ?>">
	<button type="button" class="close">×</button>
	<form action="<?php echo $action; ?>" method="get" autocomplete="off" class="k2SearchBlockForm">

		<input type="text" value="<?php echo $text; ?>" name="searchword" maxlength="500" size="<?php echo $width; ?>" alt="<?php echo $button_text; ?>" class="inputbox" onblur="if(this.value=='') this.value='<?php echo $text; ?>';" onfocus="if(this.value=='<?php echo $text; ?>') this.value='';" />

		<?php if($button): ?>
		<?php if($imagebutton): ?>
		<input type="image" value="<?php echo $button_text; ?>" class="button" onclick="this.form.searchword.focus();" src="<?php echo JURI::base(true); ?>/components/com_k2/images/fugue/search.png" />
		<?php else: ?>
		<button type="submit" class="btn btn-primary"><?php echo $button_text; ?></button>
		<?php endif; ?>
		<?php endif; ?>
		<?php if($categoryFilter): ?>
		<input type="hidden" name="categories" value="<?php echo $categoryFilter; ?>" />
		<?php endif; ?>
		<?php if(!$app->getCfg('sef')): ?>
		<input type="hidden" name="option" value="com_k2" />
		<input type="hidden" name="view" value="itemlist" />
		<input type="hidden" name="task" value="search" />
		<?php endif; ?>
		<?php if($params->get('liveSearch')): ?>
		<input type="hidden" name="format" value="html" />
		<input type="hidden" name="t" value="" />
		<input type="hidden" name="tpl" value="search" />
		<?php endif; ?>
	</form>

	<?php if($params->get('liveSearch')): ?>
	<div class="k2LiveSearchResults"></div>
	<?php endif; ?>
</div>
PK!��U%��!html/mod_k2_tools/breadcrumbs.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2BreadcrumbsBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php
	$output = '';
	if ($params->get('home')) {
		$output .= '<span class="bcTitle">'.JText::_('K2_YOU_ARE_HERE').'</span>';
		$output .= '<a href="'.JURI::root().'">'.$params->get('home',JText::_('K2_HOME')).'</a>';
		if (count($path)) {
			foreach ($path as $link) {
				$output .= '<span class="bcSeparator">'.$params->get('seperator','&raquo;').'</span>'.$link;
			}
		}
		if($title){
			$output .= '<span class="bcSeparator">'.$params->get('seperator','&raquo;').'</span>'.$title;
		}
	} else {
		if($title){
			$output .= '<span class="bcTitle">'.JText::_('K2_YOU_ARE_HERE').'</span>';
		}
		if (count($path)) {
			foreach ($path as $link) {
				$output .= $link.'<span class="bcSeparator">'.$params->get('seperator','&raquo;').'</span>';
			}
		}
		$output .= $title;
	}

	echo $output;
	?>
</div>
PK!�J;rYYhtml/mod_k2_tools/tags.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="tag-cloud <?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<ul>
	<?php foreach ($tags as $tag): ?>
	<?php if(!empty($tag->tag)): ?>
		<li><a href="<?php echo $tag->link; ?>" style="font-size:<?php echo $tag->size; ?>%" title="<?php echo $tag->count.' '.JText::_('K2_ITEMS_TAGGED_WITH').' '.K2HelperUtilities::cleanHtml($tag->tag); ?>">
			<?php echo $tag->tag; ?>
		</a></li>
	<?php endif; ?>
	<?php endforeach; ?>
	</ul>
	<div class="clr"></div>
</div>
PK!�'Nhtml/mod_k2_tools/archive.phpnu&1i�<?php 
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2ArchivesBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
  <ul>
    <?php foreach ($months as $month): ?>
    <li>
      <a href="<?php echo $month->link; ?>">
        <?php echo $month->name.' '.$month->y; ?>
        <?php if ($params->get('archiveItemsCounter')) echo '('.$month->numOfItems.')'; ?>
      </a>
    </li>
    <?php endforeach; ?>
  </ul>
</div>
PK!��� html/mod_k2_tools/customcode.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CustomCodeBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php echo $customcode; ?>
</div>
PK!e���::html/st_template/contact.phpnu&1i�<?php 
defined('_JEXEC') or die;
$doc = JFactory::getDocument();
$doc->addScript(JURI::root(true).'/plugins/system/bluetheme/assets/js/form-validation.js');
$app = JFactory::getApplication('site');
$componentParams = $app->getParams('com_blue_pagebuilder');
$style = $componentParams->get('style','1');
$params = $app->getTemplate(true)->params;
if($params->get('stateggcaptcha') == '1' && $params->get('captchasecret') && $params->get('captchasitekey')){
   $captcha = true;
}
else
    $captcha = false;
if(strtoupper(trim($sid)) == 'EN' || $sid == '1' || empty($sid)){
    $prefix_lang = '';
} else {
    $prefix_lang = '_' .strtoupper(trim($sid));
}
?>
<div class="leigie-contact <?php echo $title; ?>">
    <div class="contact-form-wrapper">
        <form name="myform" id="contact-form" class="form-inline contact-margin" action="index.php?option=com_blue_pagebuilder&amp;task=page.contact&amp;tmpl=component" enctype="multipart/form-data" method="post">        
            <div class="notifications clearfix bt-clearfix">
                <div class="alert alert-error error text-center theme_btn color1 inverse support_widget clearfix" id="fname">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_NAME_MUST_NOT_BE_EMPTY_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="fmail">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_EMAIL_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="fsubject">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_SUBJECT_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="fmsg">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_MESSAGE_SHOULD_NOT_BE_EMPTY_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="frecaptcha">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_CAPTCHA_NOT_VALIDATED' .$prefix_lang);?></p>
                </div>
                <div class="contact-success-message alert alert-success success text-center theme_btn inverse color3"></div>
            </div>
            <!--Name and Email Field Box-->
            <div class="row">
                <div class="col-md-6 col-sm-12 col-xs-12 form-group">
                    <input id="name" class="form-control" type="text" name="name" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_YOUR_NAME_TEXT' .$prefix_lang);?>"/>
                </div>
                <div class="col-md-6 col-sm-12 col-xs-12 form-group">
                    <input id="email" class="form-control" type="text" name="email" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_VALID_EMAIL_ID_TEXT' .$prefix_lang);?>"/>
                </div>
            </div>
            <div class="row">
                <div class="col-xs-12 col-md-12">
                    <textarea id="message" class="form-control"  name="message" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_YOUR_MESSAGE_TEXT' .$prefix_lang);?>" ></textarea>
                </div>
            </div>

            <?php if($captcha): ?>
            <div class="row">
                <div class="col-xs-12 col-md-12">
                    <script src='https://www.google.com/recaptcha/api.js'></script>
                    <div class="g-recaptcha" data-sitekey="<?php echo $params->get('captchasitekey'); ?>"></div>
                </div>
            </div>
            <?php endif; ?>

            <div class="row">
                <div class="col-xs-12 col-md-12">
                    <button id="submit_btn" class="btn-black btn-blue bounce-green" type="submit"> <?php echo JText::_('COM_BLUE_PAGEBUILDER_BTN_SUBMIT' .$prefix_lang); ?> </button>
                </div>
            </div>

            <input type="hidden" class="thank" name="thanks" value="<?php echo (!empty($thanks)? $thanks : ''); ?>" />
            <input type="hidden" class="emailauthor" name="emailauthor" value="<?php echo (!empty($email)? $email : ''); ?>" />
            <input type="hidden" class="subject" name="subject" value="<?php echo (!empty($subject)? $subject : ''); ?>" />
        </form>
        
    </div>
</div>PK!r ���"html/st_template/blog_carousel.phpnu�[���<?php 
$app = JFactory::getApplication();
$doc = JFactory::getDocument();
$item_menu = '';
if ($menuid != '') {
	(int)$itemid = $menuid;
	$item_menu = '&amp;Itemid='.$itemid;
}
?>
<div id="publication-slider" class="owl-carousel">
	<?php if(isset($catItems) && count($catItems)) : foreach($catItems as $key=> $item): ?>
		<?php
			$image_normal = $bt->getImageK2($item->id, 'XL');
	        $link = 'index.php?option=com_k2&amp;view=item&amp;id='.$item->id.':'.$item->alias .$item_menu ;
			$total = $K2ModelItem->countItemComments($item->id);
			$date = new DateTime($item->created);
			$author = $bt->getK2Author($item->created_by);
			
		?>
		<div class="item"> 
			<img src="<?php echo $image_normal; ?>" alt="<?php echo $item->title; ?>">
			<h5>Cliquez sur le titre</h5>
			<h4><a href="<?php echo  JRoute::_($link); ?>"><?php echo $item->title; ?></a></h4>
			<p><?php echo JText::_(''); ?> <a href="<?php echo  JRoute::_($link); ?>" class="name"></a>  
			<a href="<?php echo  JRoute::_($link); ?>" class="comment"></a></p>
			<div class="introtext">
				<?php echo $item->introtext; ?>
			</div>
			<a href="<?php echo  JRoute::_($link); ?>"><?php echo JText::_('En savoir plus'); ?></a> 
        </div>
	<?php endforeach; endif; ?>
</div>PK!|E�$$(html/com_k2/templates/generic_search.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<?php if(count($this->items)): ?>
<ul class="liveSearchResults">
	<?php foreach($this->items as $item): ?>
	<li><a href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a></li>
	<?php endforeach; ?>
</ul>
<?php endif; ?>
PK!�r��%html/com_k2/templates/default/tag.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Tag Layout -->
<div id="k2Container" class="tagView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title')): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if($this->params->get('tagFeedIcon',1)): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if(count($this->items)): ?>
	<div class="tagItemList">
		<?php foreach($this->items as $item): ?>

		<!-- Start K2 Item Layout -->
		<div class="tagItemView">

			<div class="tagItemHeader">
				<?php if($item->params->get('tagItemDateCreated',1)): ?>
				<!-- Date created -->
				<span class="tagItemDateCreated">
					<?php echo JHTML::_('date', $item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
				</span>
				<?php endif; ?>

			  <?php if($item->params->get('tagItemTitle',1)): ?>
			  <!-- Item title -->
			  <h2 class="tagItemTitle">
			  	<?php if ($item->params->get('tagItemTitleLinked',1)): ?>
					<a href="<?php echo $item->link; ?>">
			  		<?php echo $item->title; ?>
			  	</a>
			  	<?php else: ?>
			  	<?php echo $item->title; ?>
			  	<?php endif; ?>
			  </h2>
			  <?php endif; ?>
		  </div>

		  <div class="tagItemBody">
			  <?php if($item->params->get('tagItemImage',1) && !empty($item->imageGeneric)): ?>
			  <!-- Item Image -->
			  <div class="tagItemImageBlock">
				  <span class="tagItemImage">
				    <a href="<?php echo $item->link; ?>" title="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>">
				    	<img src="<?php echo $item->imageGeneric; ?>" alt="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>" style="width:<?php echo $item->params->get('itemImageGeneric'); ?>px; height:auto;" />
				    </a>
				  </span>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

			  <?php if($item->params->get('tagItemIntroText',1)): ?>
			  <!-- Item introtext -->
			  <div class="tagItemIntroText">
			  	<?php echo $item->introtext; ?>
			  </div>
			  <?php endif; ?>

			  <div class="clr"></div>
		  </div>

		  <div class="clr"></div>

		  <?php if($item->params->get('tagItemExtraFields',0) && count($item->extra_fields)): ?>
		  <!-- Item extra fields -->
		  <div class="tagItemExtraFields">
		  	<h4><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h4>
		  	<ul>
				<?php foreach ($item->extra_fields as $key=>$extraField): ?>
				<?php if($extraField->value != ''): ?>
				<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
					<?php if($extraField->type == 'header'): ?>
					<h4 class="tagItemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
					<?php else: ?>
					<span class="tagItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
					<span class="tagItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
					<?php endif; ?>
				</li>
				<?php endif; ?>
				<?php endforeach; ?>
				</ul>
		    <div class="clr"></div>
		  </div>
		  <?php endif; ?>

			<?php if($item->params->get('tagItemCategory')): ?>
			<!-- Item category name -->
			<div class="tagItemCategory">
				<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
				<a href="<?php echo $item->category->link; ?>"><?php echo $item->category->name; ?></a>
			</div>
			<?php endif; ?>

			<?php if ($item->params->get('tagItemReadMore')): ?>
			<!-- Item "read more..." link -->
			<div class="tagItemReadMore">
				<a class="k2ReadMore" href="<?php echo $item->link; ?>">
					<?php echo JText::_('K2_READ_MORE'); ?>
				</a>
			</div>
			<?php endif; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 Item Layout -->

		<?php endforeach; ?>
	</div>

	<!-- Pagination -->
	<?php if($this->pagination->getPagesLinks()): ?>
	<div class="k2Pagination">
		<?php echo $this->pagination->getPagesLinks(); ?>
		<div class="clr"></div>
		<?php echo $this->pagination->getPagesCounter(); ?>
	</div>
	<?php endif; ?>

	<?php endif; ?>

</div>
<!-- End K2 Tag Layout -->
PK!�.q��$�$*html/com_k2/templates/default/category.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Category Layout -->
<div id="k2Container" class="itemListView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title')): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if($this->params->get('catFeedIcon')): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if(isset($this->category) || ( $this->params->get('subCategories') && isset($this->subCategories) && count($this->subCategories) )): ?>
	<!-- Blocks for current category and subcategories -->
	<div class="itemListCategoriesBlock">

		<?php if(isset($this->category) && ( $this->params->get('catImage') || $this->params->get('catTitle') || $this->params->get('catDescription') || $this->category->event->K2CategoryDisplay )): ?>
		<!-- Category block -->
		<div class="itemListCategory">

			<?php if(isset($this->addLink)): ?>
			<!-- Item add link -->
			<span class="catItemAddLink">
				<a data-k2-modal="edit" href="<?php echo $this->addLink; ?>">
					<?php echo JText::_('K2_ADD_A_NEW_ITEM_IN_THIS_CATEGORY'); ?>
				</a>
			</span>
			<?php endif; ?>

			<?php if($this->params->get('catImage') && $this->category->image): ?>
			<!-- Category image -->
			<img alt="<?php echo K2HelperUtilities::cleanHtml($this->category->name); ?>" src="<?php echo $this->category->image; ?>" style="width:<?php echo $this->params->get('catImageWidth'); ?>px; height:auto;" />
			<?php endif; ?>

			<?php if($this->params->get('catTitle')): ?>
			<!-- Category title -->
			<h2><?php echo $this->category->name; ?><?php if($this->params->get('catTitleItemCounter')) echo ' ('.$this->pagination->total.')'; ?></h2>
			<?php endif; ?>

			<?php if($this->params->get('catDescription')): ?>
			<!-- Category description -->
			<div><?php echo $this->category->description; ?></div>
			<?php endif; ?>

			<!-- K2 Plugins: K2CategoryDisplay -->
			<?php echo $this->category->event->K2CategoryDisplay; ?>

			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if($this->params->get('subCategories') && isset($this->subCategories) && count($this->subCategories)): ?>
		<!-- Subcategories -->
		<div class="itemListSubCategories">
			<h3><?php echo JText::_('K2_CHILDREN_CATEGORIES'); ?></h3>

			<?php foreach($this->subCategories as $key=>$subCategory): ?>

			<?php
			// Define a CSS class for the last container on each row
			if((($key+1)%($this->params->get('subCatColumns'))==0))
				$lastContainer= ' subCategoryContainerLast';
			else
				$lastContainer='';
			?>

			<div class="subCategoryContainer<?php echo $lastContainer; ?>"<?php echo (count($this->subCategories)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('subCatColumns'), 1).'%;"'; ?>>
				<div class="subCategory">
					<?php if($this->params->get('subCatImage') && $subCategory->image): ?>
					<!-- Subcategory image -->
					<a class="subCategoryImage" href="<?php echo $subCategory->link; ?>">
						<img alt="<?php echo K2HelperUtilities::cleanHtml($subCategory->name); ?>" src="<?php echo $subCategory->image; ?>" />
					</a>
					<?php endif; ?>

					<?php if($this->params->get('subCatTitle')): ?>
					<!-- Subcategory title -->
					<h2>
						<a href="<?php echo $subCategory->link; ?>">
							<?php echo $subCategory->name; ?><?php if($this->params->get('subCatTitleItemCounter')) echo ' ('.$subCategory->numOfItems.')'; ?>
						</a>
					</h2>
					<?php endif; ?>

					<?php if($this->params->get('subCatDescription')): ?>
					<!-- Subcategory description -->
					<div><?php echo $subCategory->description; ?></div>
					<?php endif; ?>

					<!-- Subcategory more... -->
					<a class="subCategoryMore" href="<?php echo $subCategory->link; ?>">
						<?php echo JText::_('K2_VIEW_ITEMS'); ?>
					</a>

					<div class="clr"></div>
				</div>
			</div>
			<?php if(($key+1)%($this->params->get('subCatColumns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>

			<div class="clr"></div>
		</div>
		<?php endif; ?>

	</div>
	<?php endif; ?>

	<?php if((isset($this->leading) || isset($this->primary) || isset($this->secondary) || isset($this->links)) && (count($this->leading) || count($this->primary) || count($this->secondary) || count($this->links))): ?>
	<!-- Item list -->
	<div class="itemList">

		<?php if(isset($this->leading) && count($this->leading)): ?>
		<!-- Leading items -->
		<div id="itemListLeading">
			<?php foreach($this->leading as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if((($key+1)%($this->params->get('num_leading_columns'))==0) || count($this->leading)<$this->params->get('num_leading_columns'))
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->leading)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_leading_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_leading_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if(isset($this->primary) && count($this->primary)): ?>
		<!-- Primary items -->
		<div id="itemListPrimary">
			<?php foreach($this->primary as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if( (($key+1)%($this->params->get('num_primary_columns'))==0) || count($this->primary)<$this->params->get('num_primary_columns') )
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->primary)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_primary_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_primary_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if(isset($this->secondary) && count($this->secondary)): ?>
		<!-- Secondary items -->
		<div id="itemListSecondary">
			<?php foreach($this->secondary as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if( (($key+1)%($this->params->get('num_secondary_columns'))==0) || count($this->secondary)<$this->params->get('num_secondary_columns') )
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->secondary)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_secondary_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_secondary_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if(isset($this->links) && count($this->links)): ?>
		<!-- Link items -->
		<div id="itemListLinks">
			<h4><?php echo JText::_('K2_MORE'); ?></h4>
			<?php foreach($this->links as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if((($key+1)%($this->params->get('num_links_columns'))==0) || count($this->links)<$this->params->get('num_links_columns'))
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->links)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_links_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_links_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

	</div>

	<!-- Pagination -->
	<?php if($this->pagination->getPagesLinks()): ?>
    <div class="row pagination-list">
	    <div class="col-md-12">
	    	<div class="morepost-wrap">
	    		<?php if($this->params->get('catPagination')) echo $this->pagination->getPagesLinks(); ?>
	    	</div>
	    </div>
    </div>
	<?php endif; ?>

	<?php endif; ?>
</div>

<!-- End K2 Category Layout -->
PK!�uL��-html/com_k2/templates/default/latest_item.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Item Layout -->
<div class="latestItemView">

	<!-- Plugins: BeforeDisplay -->
	<?php echo $this->item->event->BeforeDisplay; ?>

	<!-- K2 Plugins: K2BeforeDisplay -->
	<?php echo $this->item->event->K2BeforeDisplay; ?>

	<div class="latestItemHeader">
	  <?php if($this->item->params->get('latestItemTitle')): ?>
	  <!-- Item title -->
	  <h2 class="latestItemTitle">
	  	<?php if ($this->item->params->get('latestItemTitleLinked')): ?>
			<a href="<?php echo $this->item->link; ?>">
	  		<?php echo $this->item->title; ?>
	  	</a>
	  	<?php else: ?>
	  	<?php echo $this->item->title; ?>
	  	<?php endif; ?>
	  </h2>
	  <?php endif; ?>
  </div>
  
	<?php if($this->item->params->get('latestItemDateCreated')): ?>
	<!-- Date created -->
	<span class="latestItemDateCreated">
		<?php echo JHTML::_('date', $this->item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
	</span>
	<?php endif; ?>

  <!-- Plugins: AfterDisplayTitle -->
  <?php echo $this->item->event->AfterDisplayTitle; ?>

  <!-- K2 Plugins: K2AfterDisplayTitle -->
  <?php echo $this->item->event->K2AfterDisplayTitle; ?>

  <div class="latestItemBody">

	  <!-- Plugins: BeforeDisplayContent -->
	  <?php echo $this->item->event->BeforeDisplayContent; ?>

	  <!-- K2 Plugins: K2BeforeDisplayContent -->
	  <?php echo $this->item->event->K2BeforeDisplayContent; ?>

	  <?php if($this->item->params->get('latestItemImage') && !empty($this->item->image)): ?>
	  <!-- Item Image -->
	  <div class="latestItemImageBlock">
		  <span class="latestItemImage">
		    <a href="<?php echo $this->item->link; ?>" title="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>">
		    	<img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px;height:auto;" />
		    </a>
		  </span>
		  <div class="clr"></div>
	  </div>
	  <?php endif; ?>

	  <?php if($this->item->params->get('latestItemIntroText')): ?>
	  <!-- Item introtext -->
	  <div class="latestItemIntroText">
	  	<?php echo $this->item->introtext; ?>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>

	  <!-- Plugins: AfterDisplayContent -->
	  <?php echo $this->item->event->AfterDisplayContent; ?>

	  <!-- K2 Plugins: K2AfterDisplayContent -->
	  <?php echo $this->item->event->K2AfterDisplayContent; ?>

	  <div class="clr"></div>
  </div>

  <?php if($this->item->params->get('latestItemCategory') || $this->item->params->get('latestItemTags')): ?>
  <div class="latestItemLinks">

		<?php if($this->item->params->get('latestItemCategory')): ?>
		<!-- Item category name -->
		<div class="latestItemCategory">
			<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
			<a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
		</div>
		<?php endif; ?>

	  <?php if($this->item->params->get('latestItemTags') && count($this->item->tags)): ?>
	  <!-- Item tags -->
	  <div class="latestItemTagsBlock">
		  <span><?php echo JText::_('K2_TAGGED_UNDER'); ?></span>
		  <ul class="latestItemTags">
		    <?php foreach ($this->item->tags as $tag): ?>
		    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
		    <?php endforeach; ?>
		  </ul>
		  <div class="clr"></div>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>
  </div>
  <?php endif; ?>

	<div class="clr"></div>

  <?php if($this->params->get('latestItemVideo') && !empty($this->item->video)): ?>
  <!-- Item video -->
  <div class="latestItemVideoBlock">
  	<h3><?php echo JText::_('K2_RELATED_VIDEO'); ?></h3>
	  <span class="latestItemVideo<?php if($this->item->videoType=='embedded'): ?> embedded<?php endif; ?>"><?php echo $this->item->video; ?></span>
  </div>
  <?php endif; ?>

	<?php if($this->item->params->get('latestItemCommentsAnchor') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
	<!-- Anchor link to comments below -->
	<div class="latestItemCommentsLink">
		<?php if(!empty($this->item->event->K2CommentsCounter)): ?>
			<!-- K2 Plugins: K2CommentsCounter -->
			<?php echo $this->item->event->K2CommentsCounter; ?>
		<?php else: ?>
			<?php if($this->item->numOfComments > 0): ?>
			<a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
				<?php echo $this->item->numOfComments; ?> <?php echo ($this->item->numOfComments>1) ? JText::_('K2_COMMENTS') : JText::_('K2_COMMENT'); ?>
			</a>
			<?php else: ?>
			<a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
				<?php echo JText::_('K2_BE_THE_FIRST_TO_COMMENT'); ?>
			</a>
			<?php endif; ?>
		<?php endif; ?>
	</div>
	<?php endif; ?>

	<?php if ($this->item->params->get('latestItemReadMore')): ?>
	<!-- Item "read more..." link -->
	<div class="latestItemReadMore">
		<a class="k2ReadMore" href="<?php echo $this->item->link; ?>">
			<?php echo JText::_('K2_READ_MORE'); ?>
		</a>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

  <!-- Plugins: AfterDisplay -->
  <?php echo $this->item->event->AfterDisplay; ?>

  <!-- K2 Plugins: K2AfterDisplay -->
  <?php echo $this->item->event->K2AfterDisplay; ?>

	<div class="clr"></div>
</div>
<!-- End K2 Item Layout -->
PK!���P��4html/com_k2/templates/default/item_comments_form.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>
<div class="post-comment"> 
    <h3><?php echo JText::_('K2_LEAVE_A_COMMENT') ?></h3>
    <?php if($this->params->get('commentsFormNotes')): ?>
    <p class="itemCommentsFormNotes">
        <?php if($this->params->get('commentsFormNotesText')): ?>
        <?php echo nl2br($this->params->get('commentsFormNotesText')); ?>
        <?php else: ?>
        <?php echo JText::_('K2_COMMENT_FORM_NOTES') ?>
        <?php endif; ?>
    </p>
    <?php endif; ?>
    <form action="<?php echo JURI::root(true); ?>/index.php" method="post" id="comment-form" class="form-inline submit-form form-validate">
        <div class="row">
            <div class="col-md-4 col-sm-12 form-group">
                <input class="form-control inputbox" type="text" name="userName" id="userName" placeholder="<?php echo JText::_('K2_ENTER_YOUR_NAME'); ?>" />
            </div>
            <div class="col-md-4 col-sm-12 form-group">
                <input type="text" id="commentEmail" class="inputbox form-control" name="commentEmail"  placeholder="<?php echo JText::_('K2_ENTER_YOUR_EMAIL_ADDRESS'); ?>">
            </div>
            <div class="col-md-4 col-sm-12 form-group">
                <input class="inputbox form-control" type="text" name="commentURL" id="commentURL" placeholder="<?php echo JText::_('K2_ENTER_YOUR_SITE_URL'); ?>" />
            </div>
        </div>
        <div class="row comment-message">
            <div class="col-md-12 col-sm-12 form-group">
                <textarea name="commentText" id="commentText" class="form-control" placeholder="<?php echo JText::_('K2_ENTER_YOUR_MESSAGE_HERE'); ?>';"></textarea>
            </div>
        </div>

        <?php if($this->params->get('recaptcha') && ($this->user->guest || $this->params->get('recaptchaForRegistered', 1))): ?>
            <?php if(!$this->params->get('recaptchaV2')): ?>
            <label class="formRecaptcha"><?php echo JText::_('K2_ENTER_THE_TWO_WORDS_YOU_SEE_BELOW'); ?></label>
            <?php endif; ?>
            <div id="recaptcha" class="<?php echo $this->recaptchaClass; ?>"></div>
            <?php endif; ?>

            <input type="submit" class="hvr-bounce-to-bottom" id="submitCommentButton" value="<?php echo JText::_('K2_SUBMIT_COMMENT'); ?>" />

            <span id="formLog"></span>

            <input type="hidden" name="option" value="com_k2" />
            <input type="hidden" name="view" value="item" />
            <input type="hidden" name="task" value="comment" />
            <input type="hidden" name="itemID" value="<?php echo JRequest::getInt('id'); ?>" />
            <?php echo JHTML::_('form.token'); ?>
        </form>
    </form>
</div>PK!��<��c�c&html/com_k2/templates/default/item.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<?php if(JRequest::getInt('print')==1): ?>
<!-- Print button at the top of the print page only -->
<a class="itemPrintThisPage" rel="nofollow" href="#" onclick="window.print();return false;">
	<span><?php echo JText::_('K2_PRINT_THIS_PAGE'); ?></span>
</a>
<?php endif; ?>

<!-- Start K2 Item Layout -->
<span id="startOfPageId<?php echo JRequest::getInt('id'); ?>"></span>

<div id="k2Container" class="blog-item itemView<?php echo ($this->item->featured) ? ' itemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">

	<!-- Plugins: BeforeDisplay -->
	<?php echo $this->item->event->BeforeDisplay; ?>

	<!-- K2 Plugins: K2BeforeDisplay -->
	<?php echo $this->item->event->K2BeforeDisplay; ?>
	<?php if($this->item->params->get('itemImage') && !empty($this->item->image)): ?>
	<div class="blog-img">
    	<img class="img-responsive" src="<?php echo $this->item->image; ?>" alt="<?php echo $this->item->title; ?>" />
    </div>
    <?php endif; ?>
    <div class="blog-content">
        <?php if($this->item->params->get('itemTitle')): ?>
        <h3><?php echo $this->item->title; ?></h3>
        <?php endif; ?>
        <ul class="blog-author">
            <?php if($this->item->params->get('itemAuthor')): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-user"></i><?php echo $this->item->author->name; ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemCommentsAnchor') && $this->item->params->get('itemComments') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-comment-o"></i><?php echo $this->item->numOfComments; ?> <?php echo JText::_('K2_COMMENTS'); ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemDateCreated')): 
                $date = new DateTime($this->item->created);
            ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-clock-o"></i><?php echo $date->format('m F, Y'); ?></a></li>
            <?php endif; ?>                            
        </ul>
        <?php if(!empty($this->item->fulltext)): ?>
                <?php if($this->item->params->get('itemFullText')): ?>
                <!-- Item fulltext -->
                <div class="itemFullText">
                    <?php echo $this->item->fulltext; ?>
                </div>
                <?php endif; ?>

                <?php else: ?>

                <!-- Item text -->
                <div class="itemFullText">
                    <?php echo $this->item->introtext; ?>
                </div>

        <?php endif; ?>
    </div>

	<!-- Plugins: AfterDisplayTitle -->
	<?php echo $this->item->event->AfterDisplayTitle; ?>

	<!-- K2 Plugins: K2AfterDisplayTitle -->
	<?php echo $this->item->event->K2AfterDisplayTitle; ?>

	<?php if(
		$this->item->params->get('itemFontResizer') ||
		$this->item->params->get('itemPrintButton') ||
		$this->item->params->get('itemEmailButton') ||
		$this->item->params->get('itemSocialButton') ||
		($this->item->params->get('itemVideoAnchor') && !empty($this->item->video)) ||
		($this->item->params->get('itemImageGalleryAnchor') && !empty($this->item->gallery))
	): ?>
	<div class="itemToolbar">
		<ul>
			<?php if($this->item->params->get('itemFontResizer')): ?>
			<!-- Font Resizer -->
			<li>
				<span class="itemTextResizerTitle"><?php echo JText::_('K2_FONT_SIZE'); ?></span>
				<a href="#" id="fontDecrease">
					<span><?php echo JText::_('K2_DECREASE_FONT_SIZE'); ?></span>
				</a>
				<a href="#" id="fontIncrease">
					<span><?php echo JText::_('K2_INCREASE_FONT_SIZE'); ?></span>
				</a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemPrintButton') && !JRequest::getInt('print')): ?>
			<!-- Print Button -->
			<li>
				<a class="itemPrintLink" rel="nofollow" href="<?php echo $this->item->printLink; ?>" onclick="window.open(this.href,'printWindow','width=900,height=600,location=no,menubar=no,resizable=yes,scrollbars=yes'); return false;">
					<span><?php echo JText::_('K2_PRINT'); ?></span>
				</a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemEmailButton') && !JRequest::getInt('print')): ?>
			<!-- Email Button -->
			<li>
				<a class="itemEmailLink" rel="nofollow" href="<?php echo $this->item->emailLink; ?>" onclick="window.open(this.href,'emailWindow','width=400,height=350,location=no,menubar=no,resizable=no,scrollbars=no'); return false;">
					<span><?php echo JText::_('K2_EMAIL'); ?></span>
				</a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemSocialButton') && !is_null($this->item->params->get('socialButtonCode', NULL))): ?>
			<!-- Item Social Button -->
			<li>
				<?php echo $this->item->params->get('socialButtonCode'); ?>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemVideoAnchor') && !empty($this->item->video)): ?>
			<!-- Anchor link to item video below - if it exists -->
			<li>
				<a class="itemVideoLink k2Anchor" href="<?php echo $this->item->link; ?>#itemVideoAnchor"><?php echo JText::_('K2_MEDIA'); ?></a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemImageGalleryAnchor') && !empty($this->item->gallery)): ?>
			<!-- Anchor link to item image gallery below - if it exists -->
			<li>
				<a class="itemImageGalleryLink k2Anchor" href="<?php echo $this->item->link; ?>#itemImageGalleryAnchor"><?php echo JText::_('K2_IMAGE_GALLERY'); ?></a>
			</li>
			<?php endif; ?>
		</ul>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemRating')): ?>
	<!-- Item Rating -->
	<div class="itemRatingBlock">
		<span><?php echo JText::_('K2_RATE_THIS_ITEM'); ?></span>
		<div class="itemRatingForm">
			<ul class="itemRatingList">
				<li class="itemCurrentRating" id="itemCurrentRating<?php echo $this->item->id; ?>" style="width:<?php echo $this->item->votingPercentage; ?>%;"></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_1_STAR_OUT_OF_5'); ?>" class="one-star">1</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_2_STARS_OUT_OF_5'); ?>" class="two-stars">2</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_3_STARS_OUT_OF_5'); ?>" class="three-stars">3</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_4_STARS_OUT_OF_5'); ?>" class="four-stars">4</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_5_STARS_OUT_OF_5'); ?>" class="five-stars">5</a></li>
			</ul>
			<div id="itemRatingLog<?php echo $this->item->id; ?>" class="itemRatingLog"><?php echo $this->item->numOfvotes; ?></div>
			<div class="clr"></div>
		</div>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<div class="itemBody">

		<!-- Plugins: BeforeDisplayContent -->
		<?php echo $this->item->event->BeforeDisplayContent; ?>

		<!-- K2 Plugins: K2BeforeDisplayContent -->
		<?php echo $this->item->event->K2BeforeDisplayContent; ?>

		<?php if($this->item->params->get('itemExtraFields') && count($this->item->extra_fields)): ?>
		<!-- Item extra fields -->
		<div class="itemExtraFields">
			<h3><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h3>
			<ul>
				<?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
				<?php if($extraField->value != ''): ?>
				<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
					<?php if($extraField->type == 'header'): ?>
					<h4 class="itemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
					<?php else: ?>
					<span class="itemExtraFieldsLabel"><?php echo $extraField->name; ?>:</span>
					<span class="itemExtraFieldsValue"><?php echo $extraField->value; ?></span>
					<?php endif; ?>
				</li>
				<?php endif; ?>
				<?php endforeach; ?>
			</ul>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if($this->item->params->get('itemHits') || ($this->item->params->get('itemDateModified') && intval($this->item->modified)!=0)): ?>
		<div class="itemContentFooter">

			<?php if($this->item->params->get('itemHits')): ?>
			<!-- Item Hits -->
			<span class="itemHits">
				<?php echo JText::_('K2_READ'); ?> <b><?php echo $this->item->hits; ?></b> <?php echo JText::_('K2_TIMES'); ?>
			</span>
			<?php endif; ?>

			<?php if($this->item->params->get('itemDateModified') && intval($this->item->modified)!=0): ?>
			<!-- Item date modified -->
			<span class="itemDateModified">
				<?php echo JText::_('K2_LAST_MODIFIED_ON'); ?> <?php echo JHTML::_('date', $this->item->modified, JText::_('K2_DATE_FORMAT_LC2')); ?>
			</span>
			<?php endif; ?>

			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<!-- Plugins: AfterDisplayContent -->
		<?php echo $this->item->event->AfterDisplayContent; ?>

		<!-- K2 Plugins: K2AfterDisplayContent -->
		<?php echo $this->item->event->K2AfterDisplayContent; ?>

		<div class="clr"></div>

	</div>

    <div class="post-tag clearfix"> 
        <?php if($this->item->params->get('itemTags') && count($this->item->tags)): ?>
        <!-- Item tags -->                        
        <ul class="tag-cloud pull-left">
            <?php foreach ($this->item->tags as $tag): ?>
            <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
            <?php endforeach; ?>
        </ul>
        <?php endif; ?>
        <ul class="blue-social social-link pull-right">
        	<?php if($this->item->params->get('itemFacebookButton',1)): ?>
            <li><a href="#" class="facebook text-center" data-social='{"type":"facebook", "url":"<?php echo $this->item->absoluteURL; ?>", "text": "<?php echo $this->item->title; ?>"}'><i class="fa fa-facebook"></i><span></span></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemTwitterButton',1)): ?>
            <li><a href="#" class="twitter text-center" data-social='{"type":"twitter", "url":"<?php echo $this->item->absoluteURL; ?>", "text": "<?php echo $this->item->title; ?>"}'><i class="fa fa-twitter"></i><span></span></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemGooglePlusOneButton',1)): ?>
            <li><a href="#" class="plusone text-center" data-social='{"type":"plusone", "url":"<?php echo $this->item->absoluteURL; ?>", "text": "<?php echo $this->item->title; ?>"}'><i class="fa fa-google"></i><span></span></a></li>
            <?php endif; ?>
        </ul>
    </div>

	<?php if(
		$this->item->params->get('itemCategory') ||
		$this->item->params->get('itemTags') ||
		$this->item->params->get('itemAttachments')
	): ?>
	<div class="itemLinks">

		<?php if($this->item->params->get('itemCategory')): ?>
		<!-- Item category -->
		<div class="itemCategory">
			<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
			<a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
		</div>
		<?php endif; ?>

		<?php if($this->item->params->get('itemAttachments') && count($this->item->attachments)): ?>
		<!-- Item attachments -->
		<div class="itemAttachmentsBlock">
			<span><?php echo JText::_('K2_DOWNLOAD_ATTACHMENTS'); ?></span>
			<ul class="itemAttachments">
				<?php foreach ($this->item->attachments as $attachment): ?>
				<li>
					<a title="<?php echo K2HelperUtilities::cleanHtml($attachment->titleAttribute); ?>" href="<?php echo $attachment->link; ?>"><?php echo $attachment->title; ?></a>
					<?php if($this->item->params->get('itemAttachmentsCounter')): ?>
					<span>(<?php echo $attachment->hits; ?> <?php echo ($attachment->hits==1) ? JText::_('K2_DOWNLOAD') : JText::_('K2_DOWNLOADS'); ?>)</span>
					<?php endif; ?>
				</li>
				<?php endforeach; ?>
			</ul>
		</div>
		<?php endif; ?>

		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemAuthorBlock') && empty($this->item->created_by_alias)): ?>
	<!-- Author Block -->
	<div class="itemAuthorBlock">
		<?php if($this->item->params->get('itemAuthorImage') && !empty($this->item->author->avatar)): ?>
		<img class="itemAuthorAvatar" src="<?php echo $this->item->author->avatar; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($this->item->author->name); ?>" />
		<?php endif; ?>

		<div class="itemAuthorDetails">
			<h3 class="itemAuthorName">
				<a rel="author" href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
			</h3>

			<?php if($this->item->params->get('itemAuthorDescription') && !empty($this->item->author->profile->description)): ?>
			<p><?php echo $this->item->author->profile->description; ?></p>
			<?php endif; ?>

			<?php if($this->item->params->get('itemAuthorURL') && !empty($this->item->author->profile->url)): ?>
			<span class="itemAuthorUrl"><i class="k2icon-globe"></i> <a rel="me" href="<?php echo $this->item->author->profile->url; ?>" target="_blank"><?php echo str_replace('http://','',$this->item->author->profile->url); ?></a></span>
			<?php endif; ?>
			
			<?php if($this->item->params->get('itemAuthorURL') && !empty($this->item->author->profile->url) && $this->item->params->get('itemAuthorEmail')): ?>
			<span class="k2HorizontalSep">|</span>
			<?php endif; ?>
			
			<?php if($this->item->params->get('itemAuthorEmail')): ?>
			<span class="itemAuthorEmail"><i class="k2icon-envelope"></i> <?php echo JHTML::_('Email.cloak', $this->item->author->email); ?></span>
			<?php endif; ?>

			<div class="clr"></div>

			<!-- K2 Plugins: K2UserDisplay -->
			<?php echo $this->item->event->K2UserDisplay; ?>

			<div class="clr"></div>
		</div>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemAuthorLatest') && empty($this->item->created_by_alias) && isset($this->authorLatestItems)): ?>
	<!-- Latest items from author -->
	<div class="itemAuthorLatest">
		<h3><?php echo JText::_('K2_LATEST_FROM'); ?> <?php echo $this->item->author->name; ?></h3>
		<ul>
			<?php foreach($this->authorLatestItems as $key=>$item): ?>
			<li class="<?php echo ($key%2) ? "odd" : "even"; ?>">
				<a href="<?php echo $item->link ?>"><?php echo $item->title; ?></a>
			</li>
			<?php endforeach; ?>
		</ul>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php
	/*
	A note regarding 'Related Items'...
	If you add:
	- the CSS rule 'overflow-x:scroll;' in the element div.itemRelated {…} in the k2.css
	- the class 'k2Scroller' to the ul element below
	- the classes 'k2ScrollerElement' and 'k2EqualHeights' to the li element inside the foreach loop below
	- the style attribute 'style="width:<?php echo $item->imageWidth; ?>px;"' to the li element inside the foreach loop below
	...then your Related Items will be transformed into a vertical-scrolling block, inside which, all items have the same height (equal column heights). This can be very useful if you want to show your related articles or products with title/author/category/image etc., which would take a significant amount of space in the classic list-style display.
	*/
	?>

	<?php if($this->item->params->get('itemRelated') && isset($this->relatedItems)): ?>
	<!-- Related items by tag -->
	<div class="itemRelated">
		<h3><?php echo JText::_("K2_RELATED_ITEMS_BY_TAG"); ?></h3>
		<ul>
			<?php foreach($this->relatedItems as $key=>$item): ?>
			<li class="<?php echo ($key%2) ? "odd" : "even"; ?>">

				<?php if($this->item->params->get('itemRelatedTitle', 1)): ?>
				<a class="itemRelTitle" href="<?php echo $item->link ?>"><?php echo $item->title; ?></a>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedCategory')): ?>
				<div class="itemRelCat"><?php echo JText::_("K2_IN"); ?> <a href="<?php echo $item->category->link ?>"><?php echo $item->category->name; ?></a></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedAuthor')): ?>
				<div class="itemRelAuthor"><?php echo JText::_("K2_BY"); ?> <a rel="author" href="<?php echo $item->author->link; ?>"><?php echo $item->author->name; ?></a></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedImageSize')): ?>
				<img style="width:<?php echo $item->imageWidth; ?>px;height:auto;" class="itemRelImg" src="<?php echo $item->image; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($item->title); ?>" />
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedIntrotext')): ?>
				<div class="itemRelIntrotext"><?php echo $item->introtext; ?></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedFulltext')): ?>
				<div class="itemRelFulltext"><?php echo $item->fulltext; ?></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedMedia')): ?>
				<?php if($item->videoType=='embedded'): ?>
				<div class="itemRelMediaEmbedded"><?php echo $item->video; ?></div>
				<?php else: ?>
				<div class="itemRelMedia"><?php echo $item->video; ?></div>
				<?php endif; ?>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedImageGallery')): ?>
				<div class="itemRelImageGallery"><?php echo $item->gallery; ?></div>
				<?php endif; ?>
			</li>
			<?php endforeach; ?>
			<li class="clr"></li>
		</ul>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

	<?php if($this->item->params->get('itemVideo') && !empty($this->item->video)): ?>
	<!-- Item video -->
	<a name="itemVideoAnchor" id="itemVideoAnchor"></a>
	<div class="itemVideoBlock">
		<h3><?php echo JText::_('K2_MEDIA'); ?></h3>

		<?php if($this->item->videoType=='embedded'): ?>
		<div class="itemVideoEmbedded">
			<?php echo $this->item->video; ?>
		</div>
		<?php else: ?>
		<span class="itemVideo"><?php echo $this->item->video; ?></span>
		<?php endif; ?>

		<?php if($this->item->params->get('itemVideoCaption') && !empty($this->item->video_caption)): ?>
		<span class="itemVideoCaption"><?php echo $this->item->video_caption; ?></span>
		<?php endif; ?>

		<?php if($this->item->params->get('itemVideoCredits') && !empty($this->item->video_credits)): ?>
		<span class="itemVideoCredits"><?php echo $this->item->video_credits; ?></span>
		<?php endif; ?>

		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemImageGallery') && !empty($this->item->gallery)): ?>
	<!-- Item image gallery -->
	<a name="itemImageGalleryAnchor" id="itemImageGalleryAnchor"></a>
	<div class="itemImageGallery">
		<h3><?php echo JText::_('K2_IMAGE_GALLERY'); ?></h3>
		<?php echo $this->item->gallery; ?>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemNavigation') && !JRequest::getCmd('print') && (isset($this->item->nextLink) || isset($this->item->previousLink))): ?>
	<!-- Item navigation -->
	<div class="itemNavigation">
		<span class="itemNavigationTitle"><?php echo JText::_('K2_MORE_IN_THIS_CATEGORY'); ?></span>

		<?php if(isset($this->item->previousLink)): ?>
		<a class="itemPrevious" href="<?php echo $this->item->previousLink; ?>">&laquo; <?php echo $this->item->previousTitle; ?></a>
		<?php endif; ?>

		<?php if(isset($this->item->nextLink)): ?>
		<a class="itemNext" href="<?php echo $this->item->nextLink; ?>"><?php echo $this->item->nextTitle; ?> &raquo;</a>
		<?php endif; ?>
	</div>
	<?php endif; ?>

	<!-- Plugins: AfterDisplay -->
	<?php echo $this->item->event->AfterDisplay; ?>

	<!-- K2 Plugins: K2AfterDisplay -->
	<?php echo $this->item->event->K2AfterDisplay; ?>

	<?php if(
        $this->item->params->get('itemComments') &&
        (($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1'))
    ): ?>
    <!-- K2 Plugins: K2CommentsBlock -->
    <?php echo $this->item->event->K2CommentsBlock; ?>
    <?php endif; ?>

    <?php if(
        $this->item->params->get('itemComments') &&
        ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2')) && empty($this->item->event->K2CommentsBlock)
    ): ?>
    <!-- Item comments -->
    <a name="itemCommentsAnchor" id="itemCommentsAnchor"></a>
    <div class="itemComments">
        <?php if($this->item->params->get('commentsFormPosition')=='above' && $this->item->params->get('itemComments') && !JRequest::getInt('print') && ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2' && K2HelperPermissions::canAddComment($this->item->catid)))): ?>
        <!-- Item comments form -->
        <div class="itemCommentsForm">
            <?php echo $this->loadTemplate('comments_form'); ?>
        </div>
        <?php endif; ?>

        <?php if($this->item->numOfComments>0 && $this->item->params->get('itemComments') && ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2'))): ?>
        <!-- Item user comments -->
        <h3 class="itemCommentsCounter">
            <span><?php echo $this->item->numOfComments; ?></span> <?php echo ($this->item->numOfComments>1) ? JText::_('K2_COMMENTS') : JText::_('K2_COMMENT'); ?>
        </h3>

        <div class="itemCommentsList">
            <?php foreach ($this->item->comments as $key=>$comment): ?>                            
            <div class="media blog-reply"> 
                <?php if($comment->userImage): ?>
                <div class="pull-left"> 
                    <img src="<?php echo JUri::root(); ?>images/default.gif" alt="Bianca Reid" width="74" height="74" /> 
                </div>
                <?php endif; ?>
                <div class="media-body">
                    <h4><?php echo $comment->userName; ?></h4>
                    <p><?php echo $comment->commentText; ?></p>
                    <a href="<?php echo $this->item->link; ?>#comment<?php echo $comment->id; ?>" class="btn-rep" name="comment<?php echo $comment->id; ?>" id="comment<?php echo $comment->id; ?>">
                        <?php echo JText::_('K2_COMMENT_LINK'); ?>
                    </a> 
                </div>

                <?php if(
                    $this->inlineCommentsModeration ||
                    ($comment->published && ($this->params->get('commentsReporting')=='1' || ($this->params->get('commentsReporting')=='2' && !$this->user->guest)))
                ): ?>
                <span class="commentToolbar">
                    <?php if($this->inlineCommentsModeration): ?>
                    <?php if(!$comment->published): ?>
                    <a class="commentApproveLink" href="<?php echo JRoute::_('index.php?option=com_k2&view=comments&task=publish&commentID='.$comment->id.'&format=raw')?>"><?php echo JText::_('K2_APPROVE')?></a>
                    <?php endif; ?>

                    <a class="commentRemoveLink" href="<?php echo JRoute::_('index.php?option=com_k2&view=comments&task=remove&commentID='.$comment->id.'&format=raw')?>"><?php echo JText::_('K2_REMOVE')?></a>
                    <?php endif; ?>

                    <?php if($comment->published && ($this->params->get('commentsReporting')=='1' || ($this->params->get('commentsReporting')=='2' && !$this->user->guest))): ?>
                    <a data-k2-modal="iframe" href="<?php echo JRoute::_('index.php?option=com_k2&view=comments&task=report&commentID='.$comment->id)?>"><?php echo JText::_('K2_REPORT')?></a>
                    <?php endif; ?>

                    <?php if($comment->reportUserLink): ?>
                    <a class="k2ReportUserButton" href="<?php echo $comment->reportUserLink; ?>"><?php echo JText::_('K2_FLAG_AS_SPAMMER'); ?></a>
                    <?php endif; ?>
                </span>
                <?php endif; ?>
            </div>
            <?php endforeach; ?>
        </div>

        <!-- Comments Pagination -->
        <div class="itemCommentsPagination">
            <?php echo $this->pagination->getPagesLinks(); ?>
            <div class="clr"></div>
        </div>
        <?php endif; ?>

        <?php if(
            $this->item->params->get('commentsFormPosition')=='below' &&
            $this->item->params->get('itemComments') &&
            !JRequest::getInt('print') &&
            ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2' && K2HelperPermissions::canAddComment($this->item->catid)))
        ): ?>
        <!-- Item comments form -->
        <div class="itemCommentsForm">
            <?php echo $this->loadTemplate('comments_form'); ?>
        </div>
        <?php endif; ?>

        <?php $user = JFactory::getUser(); if($this->item->params->get('comments') == '2' && $user->guest): ?>
        <div class="itemCommentsLoginFirst"><?php echo JText::_('K2_LOGIN_TO_POST_COMMENTS'); ?></div>
        <?php endif; ?>

    </div>
    <?php endif; ?>

	<?php if(!JRequest::getCmd('print')): ?>
	<div class="itemBackToTop">
		<a class="k2Anchor" href="<?php echo $this->item->link; ?>#startOfPageId<?php echo JRequest::getInt('id'); ?>">
			<?php echo JText::_('K2_BACK_TO_TOP'); ?>
		</a>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

</div>
<!-- End K2 Item Layout -->
PK!\X[�((/html/com_k2/templates/default/category_item.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

// Define default image size (do not change)
K2HelperUtilities::setDefaultImage($this->item, 'itemlist', $this->params);

?>

<!-- Start K2 Item Layout -->
<div class="blog-item-v3 catItemView group<?php echo ucfirst($this->item->itemGroup); ?><?php echo ($this->item->featured) ? ' catItemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">

	<!-- Plugins: BeforeDisplay -->
	<?php echo $this->item->event->BeforeDisplay; ?>

	<!-- K2 Plugins: K2BeforeDisplay -->
	<?php echo $this->item->event->K2BeforeDisplay; ?>

	<?php if($this->item->params->get('catItemImage') && !empty($this->item->image)): ?>
	<!-- Item Image -->
	<div class="catItemImageBlock">
	  <span class="catItemImage">
	    <a href="<?php echo $this->item->link; ?>" title="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>">
	    	<img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
	    </a>
	  </span>
	  <div class="clr"></div>
	</div>
	<?php endif; ?>

	<div class="blog-content catItemHeader">
		<?php if($this->item->params->get('catItemTitle')): ?>
			<?php if ($this->item->params->get('catItemTitleLinked')): ?>
				<h3><a href="<?php echo $this->item->link; ?>"><?php echo $this->item->title; ?></a></h3>
			<?php else: ?>
				<h3><?php echo $this->item->title; ?></h3>
			<?php endif; ?>
		<?php endif; ?>
        <ul class="blog-author">
            <?php if($this->item->params->get('itemAuthor')): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-user"></i><?php echo $this->item->author->name; ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemCommentsAnchor') && $this->item->params->get('itemComments') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-comment-o"></i><?php echo $this->item->numOfComments; ?> <?php echo JText::_('K2_COMMENTS'); ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemDateCreated')): 
                $date = new DateTime($this->item->created);
            ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-clock-o"></i><?php echo $date->format('m F, Y'); ?></a></li>
            <?php endif; ?>
        </ul>
  	</div>

  <!-- Plugins: AfterDisplayTitle -->
  <?php echo $this->item->event->AfterDisplayTitle; ?>

  <!-- K2 Plugins: K2AfterDisplayTitle -->
  <?php echo $this->item->event->K2AfterDisplayTitle; ?>

	<?php if($this->item->params->get('catItemRating')): ?>
	<!-- Item Rating -->
	<div class="catItemRatingBlock">
		<span><?php echo JText::_('K2_RATE_THIS_ITEM'); ?></span>
		<div class="itemRatingForm">
			<ul class="itemRatingList">
				<li class="itemCurrentRating" id="itemCurrentRating<?php echo $this->item->id; ?>" style="width:<?php echo $this->item->votingPercentage; ?>%;"></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_1_STAR_OUT_OF_5'); ?>" class="one-star">1</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_2_STARS_OUT_OF_5'); ?>" class="two-stars">2</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_3_STARS_OUT_OF_5'); ?>" class="three-stars">3</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_4_STARS_OUT_OF_5'); ?>" class="four-stars">4</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_5_STARS_OUT_OF_5'); ?>" class="five-stars">5</a></li>
			</ul>
			<div id="itemRatingLog<?php echo $this->item->id; ?>" class="itemRatingLog"><?php echo $this->item->numOfvotes; ?></div>
			<div class="clr"></div>
		</div>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

  <div class="blog-content catItemBody" style="padding: 0;">

	  <!-- Plugins: BeforeDisplayContent -->
	  <?php echo $this->item->event->BeforeDisplayContent; ?>

	  <!-- K2 Plugins: K2BeforeDisplayContent -->
	  <?php echo $this->item->event->K2BeforeDisplayContent; ?>

	  <?php if($this->item->params->get('catItemIntroText')): ?>
	  <!-- Item introtext -->
	  <div class="catItemIntroText">
	  	<?php echo $this->item->introtext; ?>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>

	  <?php if($this->item->params->get('catItemExtraFields') && count($this->item->extra_fields)): ?>
	  <!-- Item extra fields -->
	  <div class="catItemExtraFields">
	  	<h4><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h4>
	  	<ul>
			<?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
			<?php if($extraField->value != ''): ?>
			<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
				<?php if($extraField->type == 'header'): ?>
				<h4 class="catItemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
				<?php else: ?>
				<span class="catItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
				<span class="catItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
				<?php endif; ?>
			</li>
			<?php endif; ?>
			<?php endforeach; ?>
			</ul>
	    <div class="clr"></div>
	  </div>
	  <?php endif; ?>

	  <!-- Plugins: AfterDisplayContent -->
	  <?php echo $this->item->event->AfterDisplayContent; ?>

	  <!-- K2 Plugins: K2AfterDisplayContent -->
	  <?php echo $this->item->event->K2AfterDisplayContent; ?>

	  <div class="clr"></div>
  </div>

  <?php if(
  $this->item->params->get('catItemHits') ||
  $this->item->params->get('catItemCategory') ||
  $this->item->params->get('catItemTags') ||
  $this->item->params->get('catItemAttachments')
  ): ?>
  <div class="catItemLinks">

		<?php if($this->item->params->get('catItemHits')): ?>
		<!-- Item Hits -->
		<div class="catItemHitsBlock">
			<span class="catItemHits">
				<?php echo JText::_('K2_READ'); ?> <b><?php echo $this->item->hits; ?></b> <?php echo JText::_('K2_TIMES'); ?>
			</span>
		</div>
		<?php endif; ?>

		<?php if($this->item->params->get('catItemCategory')): ?>
		<!-- Item category name -->
		<div class="catItemCategory">
			<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
			<a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
		</div>
		<?php endif; ?>

	  <?php if($this->item->params->get('catItemTags') && count($this->item->tags)): ?>
	  <!-- Item tags -->
	  <div class="catItemTagsBlock">
		  <span><?php echo JText::_('K2_TAGGED_UNDER'); ?></span>
		  <ul class="catItemTags">
		    <?php foreach ($this->item->tags as $tag): ?>
		    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
		    <?php endforeach; ?>
		  </ul>
		  <div class="clr"></div>
	  </div>
	  <?php endif; ?>

	  <?php if($this->item->params->get('catItemAttachments') && count($this->item->attachments)): ?>
	  <!-- Item attachments -->
	  <div class="catItemAttachmentsBlock">
		  <span><?php echo JText::_('K2_DOWNLOAD_ATTACHMENTS'); ?></span>
		  <ul class="catItemAttachments">
		    <?php foreach ($this->item->attachments as $attachment): ?>
		    <li>
			    <a title="<?php echo K2HelperUtilities::cleanHtml($attachment->titleAttribute); ?>" href="<?php echo $attachment->link; ?>">
			    	<?php echo $attachment->title ; ?>
			    </a>
			    <?php if($this->item->params->get('catItemAttachmentsCounter')): ?>
			    <span>(<?php echo $attachment->hits; ?> <?php echo ($attachment->hits==1) ? JText::_('K2_DOWNLOAD') : JText::_('K2_DOWNLOADS'); ?>)</span>
			    <?php endif; ?>
		    </li>
		    <?php endforeach; ?>
		  </ul>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>
  </div>
  <?php endif; ?>

	<div class="clr"></div>

  <?php if($this->item->params->get('catItemVideo') && !empty($this->item->video)): ?>
  <!-- Item video -->
  <div class="catItemVideoBlock">
  	<h3><?php echo JText::_('K2_RELATED_VIDEO'); ?></h3>
		<?php if($this->item->videoType=='embedded'): ?>
		<div class="catItemVideoEmbedded">
			<?php echo $this->item->video; ?>
		</div>
		<?php else: ?>
		<span class="catItemVideo"><?php echo $this->item->video; ?></span>
		<?php endif; ?>
  </div>
  <?php endif; ?>

  <?php if($this->item->params->get('catItemImageGallery') && !empty($this->item->gallery)): ?>
  <!-- Item image gallery -->
  <div class="catItemImageGallery">
	  <h4><?php echo JText::_('K2_IMAGE_GALLERY'); ?></h4>
	  <?php echo $this->item->gallery; ?>
  </div>
  <?php endif; ?>

  <div class="clr"></div>

	<?php if ($this->item->params->get('catItemReadMore')): ?>
	<!-- Item "read more..." link -->
	<div class="catItemReadMore">
		<a class="btn-common btn-green bounce-top" href="<?php echo $this->item->link; ?>"><?php echo JText::_('K2_READ_MORE'); ?></a>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

	<?php if($this->item->params->get('catItemDateModified')): ?>
	<!-- Item date modified -->
	<?php if($this->item->modified != $this->nullDate && $this->item->modified != $this->item->created ): ?>
	<span class="catItemDateModified">
		<?php echo JText::_('K2_LAST_MODIFIED_ON'); ?> <?php echo JHTML::_('date', $this->item->modified, JText::_('K2_DATE_FORMAT_LC2')); ?>
	</span>
	<?php endif; ?>
	<?php endif; ?>

  <!-- Plugins: AfterDisplay -->
  <?php echo $this->item->event->AfterDisplay; ?>

  <!-- K2 Plugins: K2AfterDisplay -->
  <?php echo $this->item->event->K2AfterDisplay; ?>

	<div class="clr"></div>
</div>
<!-- End K2 Item Layout -->
PK!C�b%b%&html/com_k2/templates/default/user.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

// Get user stuff (do not change)
$user = JFactory::getUser();

?>

<!-- Start K2 User Layout -->

<div id="k2Container" class="userView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title') && $this->params->get('page_title')!=$this->user->name): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if($this->params->get('userFeedIcon',1)): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if ($this->params->get('userImage') || $this->params->get('userName') || $this->params->get('userDescription') || $this->params->get('userURL') || $this->params->get('userEmail')): ?>
	<div class="userBlock">

		<?php if(isset($this->addLink) && JRequest::getInt('id')==$user->id): ?>
		<!-- Item add link -->
		<span class="userItemAddLink">
			<a data-k2-modal="edit" href="<?php echo $this->addLink; ?>">
				<?php echo JText::_('K2_POST_A_NEW_ITEM'); ?>
			</a>
		</span>
		<?php endif; ?>

		<?php if ($this->params->get('userImage') && !empty($this->user->avatar)): ?>
		<img src="<?php echo $this->user->avatar; ?>" alt="<?php echo htmlspecialchars($this->user->name, ENT_QUOTES, 'UTF-8'); ?>" style="width:<?php echo $this->params->get('userImageWidth'); ?>px; height:auto;" />
		<?php endif; ?>

		<?php if ($this->params->get('userName')): ?>
		<h2><?php echo $this->user->name; ?></h2>
		<?php endif; ?>

		<?php if ($this->params->get('userDescription') && trim($this->user->profile->description)): ?>
		<div class="userDescription"><?php echo $this->user->profile->description; ?></div>
		<?php endif; ?>

		<?php if (($this->params->get('userURL') && isset($this->user->profile->url) && $this->user->profile->url) || $this->params->get('userEmail')): ?>
		<div class="userAdditionalInfo">
			<?php if ($this->params->get('userURL') && isset($this->user->profile->url) && $this->user->profile->url): ?>
			<span class="userURL">
				<?php echo JText::_('K2_WEBSITE_URL'); ?>: <a href="<?php echo $this->user->profile->url; ?>" target="_blank" rel="me"><?php echo $this->user->profile->url; ?></a>
			</span>
			<?php endif; ?>

			<?php if ($this->params->get('userEmail')): ?>
			<span class="userEmail">
				<?php echo JText::_('K2_EMAIL'); ?>: <?php echo JHTML::_('Email.cloak', $this->user->email); ?>
			</span>
			<?php endif; ?>
		</div>
		<?php endif; ?>

		<div class="clr"></div>

		<?php echo $this->user->event->K2UserDisplay; ?>

		<div class="clr"></div>
	</div>
	<?php endif; ?>



	<?php if(count($this->items)): ?>
	<!-- Item list -->
	<div class="userItemList">
		<?php foreach ($this->items as $item): ?>

		<!-- Start K2 Item Layout -->
		<div class="userItemView<?php if(!$item->published || ($item->publish_up != $this->nullDate && $item->publish_up > $this->now) || ($item->publish_down != $this->nullDate && $item->publish_down < $this->now)) echo ' userItemViewUnpublished'; ?><?php echo ($item->featured) ? ' userItemIsFeatured' : ''; ?>">

			<!-- Plugins: BeforeDisplay -->
			<?php echo $item->event->BeforeDisplay; ?>

			<!-- K2 Plugins: K2BeforeDisplay -->
			<?php echo $item->event->K2BeforeDisplay; ?>

			<div class="userItemHeader">
				<?php if($this->params->get('userItemDateCreated')): ?>
				<!-- Date created -->
				<span class="userItemDateCreated">
					<?php echo JHTML::_('date', $item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
				</span>
				<?php endif; ?>

			  <?php if($this->params->get('userItemTitle')): ?>
			  <!-- Item title -->
			  <h3 class="userItemTitle">
					<?php if(isset($item->editLink)): ?>
					<!-- Item edit link -->
					<span class="userItemEditLink">
						<a data-k2-modal="edit" href="<?php echo $item->editLink; ?>">
							<?php echo JText::_('K2_EDIT_ITEM'); ?>
						</a>
					</span>
					<?php endif; ?>

			  	<?php if ($this->params->get('userItemTitleLinked') && $item->published): ?>
					<a href="<?php echo $item->link; ?>">
			  		<?php echo $item->title; ?>
			  	</a>
			  	<?php else: ?>
			  	<?php echo $item->title; ?>
			  	<?php endif; ?>
			  	<?php if(!$item->published || ($item->publish_up != $this->nullDate && $item->publish_up > $this->now) || ($item->publish_down != $this->nullDate && $item->publish_down < $this->now)): ?>
			  	<span>
		  			<sup>
		  				<?php echo JText::_('K2_UNPUBLISHED'); ?>
		  			</sup>
	  			</span>
	  			<?php endif; ?>
			  </h3>
			  <?php endif; ?>
		  </div>

		  <!-- Plugins: AfterDisplayTitle -->
		  <?php echo $item->event->AfterDisplayTitle; ?>

		  <!-- K2 Plugins: K2AfterDisplayTitle -->
		  <?php echo $item->event->K2AfterDisplayTitle; ?>

		  <div class="userItemBody">

			  <!-- Plugins: BeforeDisplayContent -->
			  <?php echo $item->event->BeforeDisplayContent; ?>

			  <!-- K2 Plugins: K2BeforeDisplayContent -->
			  <?php echo $item->event->K2BeforeDisplayContent; ?>

			  <?php if($this->params->get('userItemImage') && !empty($item->imageGeneric)): ?>
			  <!-- Item Image -->
			  <div class="userItemImageBlock">
				  <span class="userItemImage">
				    <a href="<?php echo $item->link; ?>" title="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>">
				    	<img src="<?php echo $item->imageGeneric; ?>" alt="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>" style="width:<?php echo $this->params->get('itemImageGeneric'); ?>px; height:auto;" />
				    </a>
				  </span>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

			  <?php if($this->params->get('userItemIntroText')): ?>
			  <!-- Item introtext -->
			  <div class="userItemIntroText">
			  	<?php echo $item->introtext; ?>
			  </div>
			  <?php endif; ?>

				<div class="clr"></div>

			  <!-- Plugins: AfterDisplayContent -->
			  <?php echo $item->event->AfterDisplayContent; ?>

			  <!-- K2 Plugins: K2AfterDisplayContent -->
			  <?php echo $item->event->K2AfterDisplayContent; ?>

			  <div class="clr"></div>
		  </div>

		  <?php if($this->params->get('userItemCategory') || $this->params->get('userItemTags')): ?>
		  <div class="userItemLinks">

				<?php if($this->params->get('userItemCategory')): ?>
				<!-- Item category name -->
				<div class="userItemCategory">
					<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
					<a href="<?php echo $item->category->link; ?>"><?php echo $item->category->name; ?></a>
				</div>
				<?php endif; ?>

			  <?php if($this->params->get('userItemTags') && isset($item->tags)): ?>
			  <!-- Item tags -->
			  <div class="userItemTagsBlock">
				  <span><?php echo JText::_('K2_TAGGED_UNDER'); ?></span>
				  <ul class="userItemTags">
				    <?php foreach ($item->tags as $tag): ?>
				    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
				    <?php endforeach; ?>
				  </ul>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

				<div class="clr"></div>
		  </div>
		  <?php endif; ?>

			<div class="clr"></div>

			<?php if($this->params->get('userItemCommentsAnchor') && ( ($this->params->get('comments') == '2' && !$this->user->guest) || ($this->params->get('comments') == '1')) ): ?>
			<!-- Anchor link to comments below -->
			<div class="userItemCommentsLink">
				<?php if(!empty($item->event->K2CommentsCounter)): ?>
					<!-- K2 Plugins: K2CommentsCounter -->
					<?php echo $item->event->K2CommentsCounter; ?>
				<?php else: ?>
					<?php if($item->numOfComments > 0): ?>
					<a href="<?php echo $item->link; ?>#itemCommentsAnchor">
						<?php echo $item->numOfComments; ?> <?php echo ($item->numOfComments>1) ? JText::_('K2_COMMENTS') : JText::_('K2_COMMENT'); ?>
					</a>
					<?php else: ?>
					<a href="<?php echo $item->link; ?>#itemCommentsAnchor">
						<?php echo JText::_('K2_BE_THE_FIRST_TO_COMMENT'); ?>
					</a>
					<?php endif; ?>
				<?php endif; ?>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('userItemReadMore')): ?>
			<!-- Item "read more..." link -->
			<div class="userItemReadMore">
				<a class="k2ReadMore" href="<?php echo $item->link; ?>">
					<?php echo JText::_('K2_READ_MORE'); ?>
				</a>
			</div>
			<?php endif; ?>

			<div class="clr"></div>

		  <!-- Plugins: AfterDisplay -->
		  <?php echo $item->event->AfterDisplay; ?>

		  <!-- K2 Plugins: K2AfterDisplay -->
		  <?php echo $item->event->K2AfterDisplay; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 Item Layout -->

		<?php endforeach; ?>
	</div>

	<!-- Pagination -->
	<?php if(count($this->pagination->getPagesLinks())): ?>
	<div class="k2Pagination">
		<?php echo $this->pagination->getPagesLinks(); ?>
		<div class="clr"></div>
		<?php echo $this->pagination->getPagesCounter(); ?>
	</div>
	<?php endif; ?>

	<?php endif; ?>

</div>

<!-- End K2 User Layout -->
PK!8XC7}}(html/com_k2/templates/default/latest.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Latest Layout -->
<div id="k2Container" class="latestView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title')): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php foreach($this->blocks as $key=>$block): ?>
	<div class="latestItemsContainer" style="width:<?php echo number_format(100/$this->params->get('latestItemsCols'), 1); ?>%;">

		<?php if($this->source=='categories'): $category=$block; ?>

		<?php if($this->params->get('categoryFeed') || $this->params->get('categoryImage') || $this->params->get('categoryTitle') || $this->params->get('categoryDescription')): ?>
		<!-- Start K2 Category block -->
		<div class="latestItemsCategory">
			<?php if($this->params->get('categoryFeed')): ?>
			<!-- RSS feed icon -->
			<div class="k2FeedIcon">
				<a href="<?php echo $category->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
					<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
				</a>
				<div class="clr"></div>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('categoryImage') && !empty($category->image)): ?>
			<div class="latestItemsCategoryImage">
				<img src="<?php echo $category->image; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($category->name); ?>" style="width:<?php echo $this->params->get('catImageWidth'); ?>px;height:auto;" />
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('categoryTitle')): ?>
			<h2><a href="<?php echo $category->link; ?>"><?php echo $category->name; ?></a></h2>
			<?php endif; ?>

			<?php if ($this->params->get('categoryDescription') && isset($category->description)): ?>
			<p><?php echo $category->description; ?></p>
			<?php endif; ?>

			<div class="clr"></div>

			<!-- K2 Plugins: K2CategoryDisplay -->
			<?php echo $category->event->K2CategoryDisplay; ?>
			<div class="clr"></div>
		</div>
		<!-- End K2 Category block -->
		<?php endif; ?>

		<?php else: $user=$block; ?>

		<?php if ($this->params->get('userFeed') || $this->params->get('userImage') || $this->params->get('userName') || $this->params->get('userDescription') || $this->params->get('userURL') || $this->params->get('userEmail')): ?>
		<!-- Start K2 User block -->
		<div class="latestItemsUser">

			<?php if($this->params->get('userFeed')): ?>
			<!-- RSS feed icon -->
			<div class="k2FeedIcon">
				<a href="<?php echo $user->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
					<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
				</a>
				<div class="clr"></div>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('userImage') && !empty($user->avatar)): ?>
			<img src="<?php echo $user->avatar; ?>" alt="<?php echo $user->name; ?>" style="width:<?php echo $this->params->get('userImageWidth'); ?>px;height:auto;" />
			<?php endif; ?>

			<?php if ($this->params->get('userName')): ?>
			<h2><a rel="author" href="<?php echo $user->link; ?>"><?php echo $user->name; ?></a></h2>
			<?php endif; ?>

			<?php if ($this->params->get('userDescription') && isset($user->profile->description)): ?>
			<p class="latestItemsUserDescription"><?php echo $user->profile->description; ?></p>
			<?php endif; ?>

			<?php if ($this->params->get('userURL') || $this->params->get('userEmail')): ?>
			<p class="latestItemsUserAdditionalInfo">
				<?php if ($this->params->get('userURL') && isset($user->profile->url)): ?>
				<span class="latestItemsUserURL">
					<?php echo JText::_('K2_WEBSITE_URL'); ?>: <a rel="me" href="<?php echo $user->profile->url; ?>" target="_blank"><?php echo $user->profile->url; ?></a>
				</span>
				<?php endif; ?>

				<?php if ($this->params->get('userEmail')): ?>
				<span class="latestItemsUserEmail">
					<?php echo JText::_('K2_EMAIL'); ?>: <?php echo JHTML::_('Email.cloak', $user->email); ?>
				</span>
				<?php endif; ?>
			</p>
			<?php endif; ?>

			<div class="clr"></div>

			<?php echo $user->event->K2UserDisplay; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 User block -->
		<?php endif; ?>

		<?php endif; ?>

		<!-- Start Items list -->
		<div class="latestItemList">
			<?php if($this->params->get('latestItemsDisplayEffect')=="first"): ?>

			<?php foreach ($block->items as $itemCounter=>$item): K2HelperUtilities::setDefaultImage($item, 'latest', $this->params); ?>
			<?php if($itemCounter==0): ?>
			<?php $this->item=$item; echo $this->loadTemplate('item'); ?>
			<?php else: ?>
			<h2 class="latestItemTitleList">
				<?php if ($item->params->get('latestItemTitleLinked')): ?>
				<a href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a>
				<?php else: ?>
				<?php echo $item->title; ?>
				<?php endif; ?>
			</h2>
			<?php endif; ?>
			<?php endforeach; ?>

			<?php else: ?>

			<?php foreach ($block->items as $item): K2HelperUtilities::setDefaultImage($item, 'latest', $this->params); ?>
			<?php $this->item=$item; echo $this->loadTemplate('item'); ?>
			<?php endforeach; ?>

			<?php endif; ?>
		</div>
		<!-- End Item list -->

	</div>

	<?php if(($key+1)%($this->params->get('latestItemsCols'))==0): ?>
	<div class="clr"></div>
	<?php endif; ?>

	<?php endforeach; ?>
	<div class="clr"></div>
</div>

<!-- End K2 Latest Layout -->
PK!
���~�~�*html/com_k2/templates/default/itemform.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

$document = JFactory::getDocument();
$document->addScriptDeclaration("
	Joomla.submitbutton = function(pressbutton){
		if (pressbutton == 'cancel') {
			submitform( pressbutton );
			return;
		}
		if (\$K2.trim(\$K2('#title').val()) == '') {
			alert( '".JText::_('K2_ITEM_MUST_HAVE_A_TITLE', true)."' );
		}
		else if (\$K2.trim(\$K2('#catid').val()) == '0') {
			alert( '".JText::_('K2_PLEASE_SELECT_A_CATEGORY', true)."' );
		}
		else {
			syncExtraFieldsEditor();
			var validation = validateExtraFields();
			if(validation === true) {
				\$K2('#selectedTags option').attr('selected', 'selected');
				submitform( pressbutton );
			}
		}
	};
");

?>

<form action="<?php echo JURI::root(true); ?>/index.php" enctype="multipart/form-data" method="post" name="adminForm" id="adminForm">
	<?php if($this->mainframe->isSite()): ?>
	<div id="k2FrontendContainer" class="isJ<?php echo K2_JVERSION; ?>">
		<div id="k2Frontend">
			<table class="k2FrontendToolbar" cellpadding="2" cellspacing="4">
				<tr>
					<td id="toolbar-save" class="button">
						<a class="toolbar" href="#" onclick="Joomla.submitbutton('save'); return false;">
							<span title="<?php echo JText::_('K2_SAVE'); ?>" class="icon-32-save icon-save"></span> <?php echo JText::_('K2_SAVE'); ?>
						</a>
					</td>
					<td id="toolbar-cancel" class="button">
						<a class="toolbar" href="#">
							<span title="<?php echo JText::_('K2_CANCEL'); ?>" class="icon-32-cancel icon-cancel"></span> <?php echo JText::_('K2_CLOSE'); ?>
						</a>
					</td>
				</tr>
			</table>

			<div id="k2FrontendEditToolbar">
				<h2 class="header icon-48-k2">
					<?php echo (JRequest::getInt('cid')) ? JText::_('K2_EDIT_ITEM') : JText::_('K2_ADD_ITEM'); ?>
				</h2>
			</div>

			<div class="clr"></div>

			<div id="k2FrontendPermissionsNotice">
				<p><i class="icon-info"></i> <?php echo $this->permissionsMessage; ?></p>
			</div>
			<?php endif; ?>

			<div id="k2ToggleSidebarContainer">
				<a href="#" id="k2ToggleSidebar"><?php echo JText::_('K2_TOGGLE_SIDEBAR'); ?></a>
			</div>

			<table cellspacing="0" cellpadding="0" border="0" class="adminFormK2Container table">
				<tbody>
					<tr>
						<td id="adminFormK2tabs">
							<table class="adminFormK2">
								<tr>
									<td class="adminK2LeftCol">
										<label for="title"><?php echo JText::_('K2_TITLE'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<input class="text_area k2TitleBox" type="text" name="title" id="title" maxlength="250" value="<?php echo $this->row->title; ?>" />
									</td>
								</tr>
								<tr>
									<td class="adminK2LeftCol">
										<label for="alias"><?php echo JText::_('K2_TITLE_ALIAS'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<input class="text_area k2TitleAliasBox" type="text" name="alias" id="alias" maxlength="250" value="<?php echo $this->row->alias; ?>" />
									</td>
								</tr>
								<tr>
									<td class="adminK2LeftCol">
										<label><?php echo JText::_('K2_CATEGORY'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php echo $this->lists['categories']; ?>
									</td>
								</tr>
								<tr>
									<td class="adminK2LeftCol">
										<label><?php echo JText::_('K2_TAGS'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php if($this->params->get('taggingSystem')): ?>
										<!-- Free tagging -->
										<ul class="tags">
											<?php if(isset($this->row->tags) && count($this->row->tags)): ?>
											<?php foreach($this->row->tags as $tag): ?>
											<li class="tagAdded">
												<?php echo $tag->name; ?>
												<span title="<?php echo JText::_('K2_CLICK_TO_REMOVE_TAG'); ?>" class="tagRemove">x</span>
												<input type="hidden" name="tags[]" value="<?php echo $tag->name; ?>" />
											</li>
											<?php endforeach; ?>
											<?php endif; ?>
											<li class="tagAdd">
												<input type="text" id="search-field" />
											</li>
											<li class="clr"></li>
										</ul>
										<span class="k2Note"> <?php echo JText::_('K2_WRITE_A_TAG_AND_PRESS_RETURN_OR_COMMA_TO_ADD_IT'); ?> </span>
										<?php else: ?>
										<!-- Selection based tagging -->
										<?php if( !$this->params->get('lockTags') || $this->user->gid>23): ?>
										<div style="float:left;">
											<input type="text" name="tag" id="tag" />
											<input type="button" id="newTagButton" value="<?php echo JText::_('K2_ADD'); ?>" />
										</div>
										<div id="tagsLog"></div>
										<div class="clr"></div>
										<span class="k2Note"> <?php echo JText::_('K2_WRITE_A_TAG_AND_PRESS_ADD_TO_INSERT_IT_TO_THE_AVAILABLE_TAGS_LISTNEW_TAGS_ARE_APPENDED_AT_THE_BOTTOM_OF_THE_AVAILABLE_TAGS_LIST_LEFT'); ?> </span>
										<?php endif; ?>
										<table cellspacing="0" cellpadding="0" border="0" id="tagLists">
											<tr>
												<td id="tagListsLeft">
													<span><?php echo JText::_('K2_AVAILABLE_TAGS'); ?></span> <?php echo $this->lists['tags'];	?>
												</td>
												<td id="tagListsButtons">
													<input type="button" id="addTagButton" value="<?php echo JText::_('K2_ADD'); ?> &raquo;" />
													<br />
													<br />
													<input type="button" id="removeTagButton" value="&laquo; <?php echo JText::_('K2_REMOVE'); ?>" />
												</td>
												<td id="tagListsRight">
													<span><?php echo JText::_('K2_SELECTED_TAGS'); ?></span> <?php echo $this->lists['selectedTags']; ?>
												</td>
											</tr>
										</table>
										<?php endif; ?>
									</td>
								</tr>
								<?php if($this->mainframe->isAdmin() || ($this->mainframe->isSite() && $this->permissions->get('publish')  || ($this->permissions->get('editPublished') && $this->row->id && $this->row->published)  )): ?>
								<?php if($this->permissions->get('publish')): ?>
								<tr>
									<td class="adminK2LeftCol">
										<label for="featured"><?php echo JText::_('K2_IS_IT_FEATURED'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php echo $this->lists['featured']; ?>
									</td>
								</tr>
								<?php endif; ?>
								<tr>
									<td class="adminK2LeftCol">
										<label><?php echo JText::_('K2_PUBLISHED'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php echo $this->lists['published']; ?>
									</td>
								</tr>
								<?php endif; ?>
							</table>

							<!-- Required extra field warning -->
							<div id="k2ExtraFieldsValidationResults">
								<h3><?php echo JText::_('K2_THE_FOLLOWING_FIELDS_ARE_REQUIRED'); ?></h3>
								<ul id="k2ExtraFieldsMissing">
									<li><?php echo JText::_('K2_LOADING'); ?></li>
								</ul>
							</div>

							<!-- Tabs start here -->
							<div class="k2Tabs" id="k2Tabs">
								<ul class="k2TabsNavigation">
									<li id="tabContent"><a href="#k2Tab1"><?php echo JText::_('K2_CONTENT'); ?></a></li>
									<?php if ($this->params->get('showImageTab')): ?>
									<li id="tabImage"><a href="#k2Tab2"><?php echo JText::_('K2_IMAGE'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showImageGalleryTab')): ?>
									<li id="tabImageGallery"><a href="#k2Tab3"><?php echo JText::_('K2_IMAGE_GALLERY'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showVideoTab')): ?>
									<li id="tabVideo"><a href="#k2Tab4"><?php echo JText::_('K2_MEDIA'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showExtraFieldsTab')): ?>
									<li id="tabExtraFields"><a href="#k2Tab5"><?php echo JText::_('K2_EXTRA_FIELDS'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showAttachmentsTab')): ?>
									<li id="tabAttachments"><a href="#k2Tab6"><?php echo JText::_('K2_ATTACHMENTS'); ?></a></li>
									<?php endif; ?>
									<?php if(count(array_filter($this->K2PluginsItemOther)) && $this->params->get('showK2Plugins')): ?>
									<li id="tabPlugins"><a href="#k2Tab7"><?php echo JText::_('K2_PLUGINS'); ?></a></li>
									<?php endif; ?>
								</ul>

								<!-- Tab content -->
								<div class="k2TabsContent" id="k2Tab1">
									<?php if($this->params->get('mergeEditors')): ?>
									<div class="k2ItemFormEditor"> <?php echo $this->text; ?>
										<div class="dummyHeight"></div>
										<div class="clr"></div>
									</div>
									<?php else: ?>
									<div class="k2ItemFormEditor"> <span class="k2ItemFormEditorTitle"> <?php echo JText::_('K2_INTROTEXT_TEASER_CONTENTEXCERPT'); ?> </span> <?php echo $this->introtext; ?>
										<div class="dummyHeight"></div>
										<div class="clr"></div>
									</div>
									<div class="k2ItemFormEditor"> <span class="k2ItemFormEditorTitle"> <?php echo JText::_('K2_FULLTEXT_MAIN_CONTENT'); ?> </span> <?php echo $this->fulltext; ?>
										<div class="dummyHeight"></div>
										<div class="clr"></div>
									</div>
									<?php endif; ?>
									<?php if (count($this->K2PluginsItemContent)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemContent as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
									<div class="clr"></div>
								</div>
								<?php if ($this->params->get('showImageTab')): ?>
								<!-- Tab image -->
								<div class="k2TabsContent" id="k2Tab2">
									<table class="admintable">
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE'); ?>
											</td>
											<td>
												<input type="file" name="image" class="fileUpload" />
												<i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i>
												<br />
												<br />
												<input type="text" name="existingImage" id="existingImageValue" class="text_area" readonly />
												<input type="button" value="<?php echo JText::_('K2_BROWSE_SERVER'); ?>" id="k2ImageBrowseServer"  />
												<br />
												<br />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE_CAPTION'); ?>
											</td>
											<td>
												<input type="text" name="image_caption" size="30" class="text_area" value="<?php echo $this->row->image_caption; ?>" />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE_CREDITS'); ?>
											</td>
											<td>
												<input type="text" name="image_credits" size="30" class="text_area" value="<?php echo $this->row->image_credits; ?>" />
											</td>
										</tr>
										<?php if (!empty($this->row->image)): ?>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE_PREVIEW'); ?>
											</td>
											<td>
												<a class="modal" rel="{handler: 'image'}" href="<?php echo $this->row->image; ?>" title="<?php echo JText::_('K2_CLICK_ON_IMAGE_TO_PREVIEW_IN_ORIGINAL_SIZE'); ?>">
													<img alt="<?php echo $this->row->title; ?>" src="<?php echo $this->row->thumb; ?>" class="k2AdminImage" />
												</a>
												<input type="checkbox" name="del_image" id="del_image" />
												<label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
											</td>
										</tr>
										<?php endif; ?>
									</table>
									<?php if (count($this->K2PluginsItemImage)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemImage as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showImageGalleryTab')): ?>
								<!-- Tab image gallery -->
								<div class="k2TabsContent" id="k2Tab3">
									<?php if ($this->lists['checkSIG']): ?>
									<table class="admintable table" id="item_gallery_content">
										<tr>
											<td align="right" valign="top" class="key">
												<?php echo JText::_('K2_COM_BE_ITEM_ITEM_IMAGE_GALLERY'); ?>
											</td>
											<td valign="top">
												<?php if($this->sigPro): ?>
												<a class="modal" rel="{handler: 'iframe', size: {x: 940, y: 560}}" href="index.php?option=com_sigpro&view=galleries&task=create&newFolder=<?php echo $this->sigProFolder; ?>&type=k2&tmpl=component&template=system"><?php echo JText::_('K2_COM_BE_ITEM_SIGPRO_UPLOAD'); ?></a> <i>(<?php echo JText::_('K2_COM_BE_ITEM_SIGPRO_UPLOAD_NOTE'); ?>)</i>
												<input name="sigProFolder" type="hidden" value="<?php echo $this->sigProFolder; ?>" />
												<br />
												<br />
												<?php echo JText::_('K2_OR'); ?>
												<?php endif; ?>
												<?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_WITH_IMAGES'); ?> <input type="file" name="gallery" class="fileUpload" /> <span class="hasTip k2GalleryNotice" title="<?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP_HEADER'); ?>::<?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP_TEXT'); ?>"><?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP'); ?></span> <i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i>
												<br />
												<br />
												<?php echo JText::_('K2_OR_ENTER_A_FLICKR_SET_URL'); ?><?php echo JText::_('K2_OR_ENTER_A_FLICKR_SET_URL'); ?>
												<input type="text" name="flickrGallery" size="50" value="<?php echo ($this->row->galleryType == 'flickr') ? $this->row->galleryValue : ''; ?>" /> <span class="hasTip k2GalleryNotice" title="<?php echo JText::_('K2_VALID_FLICK_API_KEY_HELP_HEADER'); ?>::<?php echo JText::_('K2_VALID_FLICK_API_KEY_HELP_TEXT'); ?>"><?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP'); ?></span>

												<?php if (!empty($this->row->gallery)): ?>
												<!-- Preview -->
												<div id="itemGallery">
													<?php echo $this->row->gallery; ?>
													<br />
													<input type="checkbox" name="del_gallery" id="del_gallery" />
													<label for="del_gallery"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_GALLERY_OR_JUST_UPLOAD_A_NEW_IMAGE_GALLERY_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
												</div>
												<?php endif; ?>
											</td>
										</tr>
									</table>
									<?php else: ?>
										<?php if (K2_JVERSION == '15'): ?>
										<dl id="system-message">
											<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
											<dd class="notice message fade">
												<ul>
													<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_SIMPLE_IMAGE_GALLERY_PRO_PLUGIN_IF_YOU_WANT_TO_USE_THE_IMAGE_GALLERY_FEATURES_OF_K2'); ?></li>
												</ul>
											</dd>
										</dl>
										<?php elseif(K2_JVERSION == '25'): ?>
										<div id="system-message-container">
											<dl id="system-message">
												<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
												<dd class="notice message">
													<ul>
														<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_SIMPLE_IMAGE_GALLERY_PRO_PLUGIN_IF_YOU_WANT_TO_USE_THE_IMAGE_GALLERY_FEATURES_OF_K2'); ?></li>
													</ul>
												</dd>
											</dl>
										</div>
										<?php else: ?>
										<div class="alert">
											<h4 class="alert-heading"><?php echo JText::_('K2_NOTICE'); ?></h4>
											<div><p><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_SIMPLE_IMAGE_GALLERY_PRO_PLUGIN_IF_YOU_WANT_TO_USE_THE_IMAGE_GALLERY_FEATURES_OF_K2'); ?></p></div>
										</div>
										<?php endif; ?>
									<?php endif; ?>
									<?php if (count($this->K2PluginsItemGallery)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemGallery as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showVideoTab')): ?>
								<!-- Tab video -->
								<div class="k2TabsContent" id="k2Tab4">
									<?php if ($this->lists['checkAllVideos']): ?>
									<table class="admintable" id="item_video_content">
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_SOURCE'); ?>
											</td>
											<td>
												<div id="k2VideoTabs" class="k2Tabs">
													<ul class="k2TabsNavigation">
														<li><a href="#k2VideoTab1"><?php echo JText::_('K2_UPLOAD'); ?></a></li>
														<li><a href="#k2VideoTab2"><?php echo JText::_('K2_BROWSE_SERVERUSE_REMOTE_MEDIA'); ?></a></li>
														<li><a href="#k2VideoTab3"><?php echo JText::_('K2_MEDIA_USE_ONLINE_VIDEO_SERVICE'); ?></a></li>
														<li><a href="#k2VideoTab4"><?php echo JText::_('K2_EMBED'); ?></a></li>
													</ul>
													<div id="k2VideoTab1" class="k2TabsContent">
														<div class="panel" id="Upload_video">
															<input type="file" name="video" class="fileUpload" />
															<i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i> </div>
													</div>
													<div id="k2VideoTab2" class="k2TabsContent">
														<div class="panel" id="Remote_video"> <a id="k2MediaBrowseServer" href="index.php?option=com_k2&view=media&type=video&tmpl=component&fieldID=remoteVideo"><?php echo JText::_('K2_BROWSE_VIDEOS_ON_SERVER')?></a> <?php echo JText::_('K2_OR'); ?> <?php echo JText::_('K2_PASTE_REMOTE_VIDEO_URL'); ?>
															<br />
															<br />
															<input type="text" size="50" name="remoteVideo" id="remoteVideo" value="<?php echo $this->lists['remoteVideo'] ?>" />
														</div>
													</div>
													<div id="k2VideoTab3" class="k2TabsContent">
														<div class="panel" id="Video_from_provider"> <?php echo JText::_('K2_SELECT_VIDEO_PROVIDER'); ?> <?php echo $this->lists['providers']; ?> <br/><br/> <?php echo JText::_('K2_AND_ENTER_VIDEO_ID'); ?>
															<input type="text" size="50" name="videoID" value="<?php echo $this->lists['providerVideo'] ?>" />
															<br />
															<br />
															<a class="modal" rel="{handler: 'iframe', size: {x: 990, y: 600}}" href="http://www.joomlaworks.net/allvideos-documentation"><?php echo JText::_('K2_READ_THE_ALLVIDEOS_DOCUMENTATION_FOR_MORE'); ?></a> </div>
													</div>
													<div id="k2VideoTab4" class="k2TabsContent">
														<div class="panel" id="embedVideo">
															<?php echo JText::_('K2_PASTE_HTML_EMBED_CODE_BELOW'); ?>
															<br />
															<textarea name="embedVideo" rows="5" cols="50" class="textarea"><?php echo $this->lists['embedVideo']; ?></textarea>
														</div>
													</div>
												</div>
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CAPTION'); ?>
											</td>
											<td>
												<input type="text" name="video_caption" size="50" class="text_area" value="<?php echo $this->row->video_caption; ?>" />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CREDITS'); ?>
											</td>
											<td>
												<input type="text" name="video_credits" size="50" class="text_area" value="<?php echo $this->row->video_credits; ?>" />
											</td>
										</tr>
										<?php if($this->row->video): ?>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_PREVIEW'); ?>
											</td>
											<td>
												<?php echo $this->row->video; ?>
												<br />
												<input type="checkbox" name="del_video" id="del_video" />
												<label for="del_video"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_VIDEO_OR_USE_THE_FORM_ABOVE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
											</td>
										</tr>
										<?php endif; ?>
									</table>
									<?php else: ?>
										<?php if (K2_JVERSION == '15'): ?>
										<dl id="system-message">
											<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
											<dd class="notice message fade">
												<ul>
													<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_ALLVIDEOS_PLUGIN_IF_YOU_WANT_TO_USE_THE_FULL_VIDEO_FEATURES_OF_K2'); ?></li>
												</ul>
											</dd>
										</dl>
										<?php elseif(K2_JVERSION == '25'): ?>
										<div id="system-message-container">
											<dl id="system-message">
												<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
												<dd class="notice message">
													<ul>
														<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_ALLVIDEOS_PLUGIN_IF_YOU_WANT_TO_USE_THE_FULL_VIDEO_FEATURES_OF_K2'); ?></li>
													</ul>
												</dd>
											</dl>
										</div>
										<?php else: ?>
										<div class="alert">
											<h4 class="alert-heading"><?php echo JText::_('K2_NOTICE'); ?></h4>
											<div><p><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_ALLVIDEOS_PLUGIN_IF_YOU_WANT_TO_USE_THE_FULL_VIDEO_FEATURES_OF_K2'); ?></p></div>
										</div>
										<?php endif; ?>
									<table class="admintable" id="item_video_content">
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_SOURCE'); ?>
											</td>
											<td>
												<div id="k2VideoTabs" class="k2Tabs">
													<ul class="k2TabsNavigation">
														<li><a href="#k2VideoTab4"><?php echo JText::_('K2_EMBED'); ?></a></li>
													</ul>
													<div class="k2TabsContent" id="k2VideoTab4">
														<div class="panel" id="embedVideo">
															<?php echo JText::_('K2_PASTE_HTML_EMBED_CODE_BELOW'); ?>
															<br />
															<textarea name="embedVideo" rows="5" cols="50" class="textarea"><?php echo $this->lists['embedVideo']; ?></textarea>
														</div>
													</div>
												</div>
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CAPTION'); ?>
											</td>
											<td>
												<input type="text" name="video_caption" size="50" class="text_area" value="<?php echo $this->row->video_caption; ?>" />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CREDITS'); ?>
											</td>
											<td>
												<input type="text" name="video_credits" size="50" class="text_area" value="<?php echo $this->row->video_credits; ?>" />
											</td>
										</tr>
										<?php if($this->row->video): ?>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_PREVIEW'); ?>
											</td>
											<td>
												<?php echo $this->row->video; ?>
												<br />
												<input type="checkbox" name="del_video" id="del_video" />
												<label for="del_video"><?php echo JText::_('K2_USE_THE_FORM_ABOVE_TO_REPLACE_THE_EXISTING_VIDEO_OR_CHECK_THIS_BOX_TO_DELETE_CURRENT_VIDEO'); ?></label>
											</td>
										</tr>
										<?php endif; ?>
									</table>
									<?php endif; ?>
									<?php if (count($this->K2PluginsItemVideo)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemVideo as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showExtraFieldsTab')): ?>
								<!-- Tab extra fields -->
								<div class="k2TabsContent" id="k2Tab5">
									<div id="extraFieldsContainer">
										<?php if (count($this->extraFields)): ?>
										<table class="admintable" id="extraFields">
											<?php foreach($this->extraFields as $extraField): ?>
											<?php if($extraField->type == 'header'): ?>
											<tr>
												<td colspan="2" ><h4 class="k2ExtraFieldHeader"><?php echo $extraField->name; ?></h4></td>
											</tr>
											<?php else: ?>
											<tr>
												<td align="right" class="key">
													<label for="K2ExtraField_<?php echo $extraField->id; ?>"><?php echo $extraField->name; ?></label>
												</td>
												<td>
													<?php echo $extraField->element; ?>
												</td>
											</tr>
											<?php endif; ?>
											<?php endforeach; ?>
										</table>
										<?php else: ?>
											<?php if (K2_JVERSION == '15'): ?>
												<dl id="system-message">
													<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
													<dd class="notice message fade">
														<ul>
															<li><?php echo JText::_('K2_PLEASE_SELECT_A_CATEGORY_FIRST_TO_RETRIEVE_ITS_RELATED_EXTRA_FIELDS'); ?></li>
														</ul>
													</dd>
												</dl>
											<?php elseif (K2_JVERSION == '25'): ?>
											<div id="system-message-container">
												<dl id="system-message">
													<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
													<dd class="notice message">
														<ul>
															<li><?php echo JText::_('K2_PLEASE_SELECT_A_CATEGORY_FIRST_TO_RETRIEVE_ITS_RELATED_EXTRA_FIELDS'); ?></li>
														</ul>
													</dd>
												</dl>
											</div>
											<?php else: ?>
											<div class="alert">
												<h4 class="alert-heading"><?php echo JText::_('K2_NOTICE'); ?></h4>
												<div>
													<p><?php echo JText::_('K2_PLEASE_SELECT_A_CATEGORY_FIRST_TO_RETRIEVE_ITS_RELATED_EXTRA_FIELDS'); ?></p>
												</div>
											</div>
											<?php endif; ?>
										<?php endif; ?>
									</div>
									<?php if (count($this->K2PluginsItemExtraFields)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemExtraFields as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showAttachmentsTab')): ?>
								<!-- Tab attachements -->
								<div class="k2TabsContent" id="k2Tab6">
									<div class="itemAttachments">
										<?php if (count($this->row->attachments)): ?>
										<table class="adminlist">
											<tr>
												<th>
													<?php echo JText::_('K2_FILENAME'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_TITLE'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_TITLE_ATTRIBUTE'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_DOWNLOADS'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_OPERATIONS'); ?>
												</th>
											</tr>
											<?php foreach($this->row->attachments as $attachment): ?>
											<tr>
												<td class="attachment_entry">
													<?php echo $attachment->filename; ?>
												</td>
												<td>
													<?php echo $attachment->title; ?>
												</td>
												<td>
													<?php echo $attachment->titleAttribute; ?>
												</td>
												<td>
													<?php echo $attachment->hits; ?>
												</td>
												<td>
													<a href="<?php echo $attachment->link; ?>"><?php echo JText::_('K2_DOWNLOAD'); ?></a> <a class="deleteAttachmentButton" href="<?php echo JURI::base(true); ?>/index.php?option=com_k2&amp;view=item&amp;task=deleteAttachment&amp;id=<?php echo $attachment->id?>&amp;cid=<?php echo $this->row->id; ?>"><?php echo JText::_('K2_DELETE'); ?></a>
												</td>
											</tr>
											<?php endforeach; ?>
										</table>
										<?php endif; ?>
									</div>
									<div id="addAttachment">
										<input type="button" id="addAttachmentButton" class="k2Selector k2Button" value="<?php echo JText::_('K2_ADD_ATTACHMENT_FIELD'); ?>" />
										<i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i> </div>
									<div id="itemAttachments"></div>
									<?php if (count($this->K2PluginsItemAttachments)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemAttachments as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if(count(array_filter($this->K2PluginsItemOther)) && $this->params->get('showK2Plugins')): ?>
								<!-- Tab other plugins -->
								<div class="k2TabsContent" id="k2Tab7">
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemOther as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
								</div>
								<?php endif; ?>
							</div>
							<!-- Tabs end here -->

							<input type="hidden" name="isSite" value="<?php echo (int)$this->mainframe->isSite(); ?>" />
							<?php if($this->mainframe->isSite()): ?>
							<input type="hidden" name="lang" value="<?php echo JRequest::getCmd('lang'); ?>" />
							<?php endif; ?>
							<input type="hidden" name="id" value="<?php echo $this->row->id; ?>" />
							<input type="hidden" name="option" value="com_k2" />
							<input type="hidden" name="view" value="item" />
							<input type="hidden" name="task" value="<?php echo JRequest::getVar('task'); ?>" />
							<input type="hidden" name="Itemid" value="<?php echo JRequest::getInt('Itemid'); ?>" />
							<?php echo JHTML::_('form.token'); ?>
						</td>

						<!-- Sidebar -->
						<td id="adminFormK2Sidebar"<?php if($this->mainframe->isSite() && !$this->params->get('sideBarDisplayFrontend')): ?> style="display:none;"<?php endif; ?> class="xmlParamsFields">
							<?php if($this->row->id): ?>
							<table class="sidebarDetails">
								<tr>
									<td>
										<strong><?php echo JText::_('K2_ITEM_ID'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->id; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_PUBLISHED'); ?></strong>
									</td>
									<td>
										<?php echo ($this->row->published > 0) ? JText::_('K2_YES') : JText::_('K2_NO'); ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_FEATURED'); ?></strong>
									</td>
									<td>
										<?php echo ($this->row->featured > 0) ? JText::_('K2_YES'):	JText::_('K2_NO'); ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_CREATED_DATE'); ?></strong>
									</td>
									<td>
										<?php echo $this->lists['created']; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_CREATED_BY'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->author; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_MODIFIED_DATE'); ?></strong>
									</td>
									<td>
										<?php echo $this->lists['modified']; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_MODIFIED_BY'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->moderator; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_HITS'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->hits; ?>
										<?php if($this->row->hits): ?>
										<input id="resetHitsButton" type="button" value="<?php echo JText::_('K2_RESET'); ?>" class="button" name="resetHits" />
										<?php endif; ?>
									</td>
								</tr>
								<?php endif; ?>
								<?php if($this->row->id): ?>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_RATING'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->ratingCount; ?> <?php echo JText::_('K2_VOTES'); ?>
										<?php if($this->row->ratingCount): ?>
										<br />
										(<?php echo JText::_('K2_AVERAGE_RATING'); ?>: <?php echo number_format(($this->row->ratingSum/$this->row->ratingCount),2); ?>/5.00)
										<?php endif; ?>
										<input id="resetRatingButton" type="button" value="<?php echo JText::_('K2_RESET'); ?>" class="button" name="resetRating" />
									</td>
								</tr>
							</table>
							<?php endif; ?>
							<!-- Author Publishing Status -->
							<h3><a href="#"><?php echo JText::_('K2_AUTHOR_PUBLISHING_STATUS'); ?></a></h3>
							<div>
								<table class="admintable">
									<?php if(isset($this->lists['language'])): ?>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_LANGUAGE'); ?>
										</td>
										<td>
											<?php echo $this->lists['language']; ?>
										</td>
									</tr>
									<?php endif; ?>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_AUTHOR'); ?>
										</td>
										<td id="k2AuthorOptions">
											<span id="k2Author"><?php echo $this->row->author; ?></span>
											<?php if($this->mainframe->isAdmin() || ($this->mainframe->isSite() && $this->permissions->get('editAll'))): ?>
											<a class="modal" rel="{handler:'iframe', size: {x: 800, y: 460}}" href="index.php?option=com_k2&amp;view=users&amp;task=element&amp;tmpl=component"><?php echo JText::_('K2_CHANGE'); ?></a>
											<input type="hidden" name="created_by" value="<?php echo $this->row->created_by; ?>" />
											<?php endif; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_AUTHOR_ALIAS'); ?>
										</td>
										<td>
											<input class="text_area" type="text" name="created_by_alias" maxlength="250" value="<?php echo $this->row->created_by_alias; ?>" />
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_ACCESS_LEVEL'); ?>
										</td>
										<td>
											<?php echo $this->lists['access']; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_CREATION_DATE'); ?>
										</td>
										<td class="k2ItemFormDateField">
											<?php echo $this->lists['createdCalendar']; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_START_PUBLISHING'); ?>
										</td>
										<td class="k2ItemFormDateField">
											<?php echo $this->lists['publish_up']; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_FINISH_PUBLISHING'); ?>
										</td>
										<td class="k2ItemFormDateField">
											<?php echo $this->lists['publish_down']; ?>
										</td>
									</tr>
								</table>
							</div>

							<!-- Metadata Info -->
							<h3><a href="#"><?php echo JText::_('K2_METADATA_INFORMATION'); ?></a></h3>
							<div>
								<table class="admintable">
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_DESCRIPTION'); ?>
										</td>
										<td>
											<textarea name="metadesc" rows="5" cols="20"><?php echo $this->row->metadesc; ?></textarea>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_KEYWORDS'); ?>
										</td>
										<td>
											<textarea name="metakey" rows="5" cols="20"><?php echo $this->row->metakey; ?></textarea>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_ROBOTS'); ?>
										</td>
										<td>
											<input type="text" name="meta[robots]" value="<?php echo $this->lists['metadata']->get('robots'); ?>" />
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_AUTHOR'); ?>
										</td>
										<td>
											<input type="text" name="meta[author]" value="<?php echo $this->lists['metadata']->get('author'); ?>" />
										</td>
									</tr>
								</table>
							</div>

							<?php if($this->mainframe->isAdmin()): ?>
							<h3><a href="#"><?php echo JText::_('K2_ITEM_VIEW_OPTIONS_IN_CATEGORY_LISTINGS'); ?></a></h3>
							<div>
								<?php if(version_compare( JVERSION, '1.6.0', 'ge' )): ?>
								<fieldset class="panelform">
									<ul class="adminformlist">
										<?php foreach($this->form->getFieldset('item-view-options-listings') as $field): ?>
										<li>
											<?php if($field->type=='header'): ?>
											<div class="paramValueHeader"><?php echo $field->input; ?></div>
											<?php elseif($field->type=='Spacer'): ?>
											<div class="paramValueSpacer">&nbsp;</div>
											<div class="clr"></div>
											<?php else: ?>
											<div class="paramLabel"><?php echo $field->label; ?></div>
											<div class="paramValue"><?php echo $field->input; ?></div>
											<div class="clr"></div>
											<?php endif; ?>
										</li>
										<?php endforeach; ?>
									</ul>
								</fieldset>
								<?php else: ?>
								<?php echo $this->form->render('params', 'item-view-options-listings'); ?>
								<?php endif; ?>
							</div>

							<h3><a href="#"><?php echo JText::_('K2_ITEM_VIEW_OPTIONS'); ?></a></h3>
							<div>
								<?php if(version_compare( JVERSION, '1.6.0', 'ge' )): ?>
								<fieldset class="panelform">
									<ul class="adminformlist">
										<?php foreach($this->form->getFieldset('item-view-options') as $field): ?>
										<li>
											<?php if($field->type=='header'): ?>
											<div class="paramValueHeader"><?php echo $field->input; ?></div>
											<?php elseif($field->type=='Spacer'): ?>
											<div class="paramValueSpacer">&nbsp;</div>
											<div class="clr"></div>
											<?php else: ?>
											<div class="paramLabel"><?php echo $field->label; ?></div>
											<div class="paramValue"><?php echo $field->input; ?></div>
											<div class="clr"></div>
											<?php endif; ?>
										</li>
										<?php endforeach; ?>
									</ul>
								</fieldset>
								<?php else: ?>
								<?php echo $this->form->render('params', 'item-view-options'); ?>
								<?php endif; ?>
							</div>
							<?php endif; ?>
						</td>
					</tr>
				</tbody>
			</table>
			<div class="clr"></div>
			<?php if($this->mainframe->isSite()): ?>
		</div>
	</div>
	<?php endif; ?>
</form>
PK!%���##"html/com_k2/templates/register.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- K2 user register form -->
<?php if(isset($this->message)) $this->display('message'); ?>

<form action="<?php echo JURI::root(true); ?>/index.php" enctype="multipart/form-data" method="post" id="josForm" name="josForm" class="form-validate">
	<?php if($this->params->def('show_page_title',1)): ?>
	<div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>
	<div id="k2Container" class="k2AccountPage">
		<table class="admintable" cellpadding="0" cellspacing="0">
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ACCOUNT_DETAILS'); ?>
				</th>
			</tr>
			<tr>
				<td class="key">
					<label id="namemsg" for="name"><?php echo JText::_('K2_NAME'); ?></label>
				</td>
				<td>
					<input type="text" name="<?php echo $this->nameFieldName; ?>" id="name" size="40" value="<?php echo $this->escape($this->user->get( 'name' )); ?>" class="inputbox required" maxlength="50" />
					*
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="usernamemsg" for="username"><?php echo JText::_('K2_USER_NAME'); ?></label>
				</td>
				<td>
					<input type="text" id="username" name="<?php echo $this->usernameFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'username' )); ?>" class="inputbox required validate-username" maxlength="25" />
					*
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="emailmsg" for="email"><?php echo JText::_('K2_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email" name="<?php echo $this->emailFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'email' )); ?>" class="inputbox required validate-email" maxlength="100" />
					*
				</td>
			</tr>
			<?php if(version_compare(JVERSION, '1.6', 'ge')): ?>
			<tr>
				<td class="key">
					<label id="email2msg" for="email2"><?php echo JText::_('K2_CONFIRM_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email2" name="jform[email2]" size="40" value="" class="inputbox required validate-email" maxlength="100" />
					*
				</td>
			</tr>
			<?php endif; ?>
			<tr>
				<td class="key">
					<label id="pwmsg" for="password"><?php echo JText::_('K2_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox required validate-password" type="password" id="password" name="<?php echo $this->passwordFieldName; ?>" size="40" value="" />
					*
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="pw2msg" for="password2"><?php echo JText::_('K2_VERIFY_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox required validate-passverify" type="password" id="password2" name="<?php echo $this->passwordVerifyFieldName; ?>" size="40" value="" />
					*
				</td>
			</tr>
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_PERSONAL_DETAILS'); ?>
				</th>
			</tr>
			<!-- K2 attached fields -->
			<tr>
				<td class="key">
					<label id="gendermsg" for="gender"><?php echo JText::_('K2_GENDER'); ?></label>
				</td>
				<td>
					<?php echo $this->lists['gender']; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="descriptionmsg" for="description"><?php echo JText::_('K2_DESCRIPTION'); ?></label>
				</td>
				<td>
					<?php echo $this->editor; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="imagemsg" for="image"><?php echo JText::_( 'K2_USER_IMAGE_AVATAR' ); ?></label>
				</td>
				<td>
					<input type="file" id="image" name="image"/>
					<?php if ($this->K2User->image): ?>
					<img class="k2AdminImage" src="<?php echo JURI::root().'media/k2/users/'.$this->K2User->image; ?>" alt="<?php echo $this->user->name; ?>" />
					<input type="checkbox" name="del_image" id="del_image" />
					<label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
					<?php endif; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="urlmsg" for="url"><?php echo JText::_('K2_URL'); ?></label>
				</td>
				<td>
					<input type="text" size="50" value="<?php echo $this->K2User->url; ?>" name="url" id="url"/>
				</td>
			</tr>
			<?php if(count(array_filter($this->K2Plugins))): ?>
			<!-- K2 Plugin attached fields -->
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ADDITIONAL_DETAILS'); ?>
				</th>
			</tr>
			<?php foreach ($this->K2Plugins as $K2Plugin): ?>
			<?php if(!is_null($K2Plugin)): ?>
			<tr>
				<td colspan="2">
					<?php echo $K2Plugin->fields; ?>
				</td>
			</tr>
			<?php endif; ?>
			<?php endforeach; ?>
			<?php endif; ?>
			
			<!-- Joomla! 1.6+ JForm implementation -->
			<?php if(isset($this->form)): ?>
			<?php foreach ($this->form->getFieldsets() as $fieldset): // Iterate through the form fieldsets and display each one.?>
				<?php if($fieldset->name != 'default'): ?>
				<?php $fields = $this->form->getFieldset($fieldset->name);?>
				<?php if (count($fields)):?>
					<?php if (isset($fieldset->label)):// If the fieldset has a label set, display it as the legend.?>
					<tr>
						<th colspan="2" class="k2ProfileHeading">
							<?php echo JText::_($fieldset->label);?>
						</th>
					</tr>
					<?php endif;?>
					<?php foreach($fields as $field):// Iterate through the fields in the set and display them.?>
						<?php if ($field->hidden):// If the field is hidden, just display the input.?>
							<tr><td colspan="2"><?php echo $field->input;?></td></tr>
						<?php else:?>
							<tr>
								<td class="key">
									<?php echo $field->label; ?>
									<?php if (!$field->required && $field->type != 'Spacer'): ?>
										<span class="optional"><?php echo JText::_('COM_USERS_OPTIONAL');?></span>
									<?php endif; ?>
								</td>
								<td><?php echo $field->input;?></td>
							</tr>
						<?php endif;?>
					<?php endforeach;?>
				<?php endif;?>
				<?php endif; ?>
			<?php endforeach;?>
			<?php endif; ?>
			
		</table>
		
		<?php if($this->K2Params->get('recaptchaOnRegistration') && $this->K2Params->get('recaptcha_public_key')): ?>
		<label class="formRecaptcha"><?php echo JText::_('K2_ENTER_THE_TWO_WORDS_YOU_SEE_BELOW'); ?></label>
		<div id="recaptcha"></div>
		<?php endif; ?>
		
		<div class="k2AccountPageNotice"><?php echo JText::_('K2_REGISTER_REQUIRED'); ?></div>
		<div class="k2AccountPageUpdate">
			<button class="button validate" type="submit">
				<?php echo JText::_('K2_REGISTER'); ?>
			</button>
		</div>
	</div>
	<input type="hidden" name="option" value="<?php echo $this->optionValue; ?>" />
	<input type="hidden" name="task" value="<?php echo $this->taskValue; ?>" />
	<input type="hidden" name="id" value="0" />
	<input type="hidden" name="gid" value="0" />
	<input type="hidden" name="K2UserForm" value="1" />
	<?php echo JHTML::_( 'form.token' ); ?>
</form>
PK!�&�HH!html/com_k2/templates/profile.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- K2 user profile form -->
<form action="<?php echo JURI::root(true); ?>/index.php" enctype="multipart/form-data" method="post" name="userform" autocomplete="off" class="form-validate">
	<?php if($this->params->def('show_page_title',1)): ?>
	<div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>
	<div id="k2Container" class="k2AccountPage">
		<table class="admintable" cellpadding="0" cellspacing="0">
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ACCOUNT_DETAILS'); ?>
				</th>
			</tr>
			<tr>
				<td class="key">
					<label for="username"><?php echo JText::_('K2_USER_NAME'); ?></label>
				</td>
				<td>
					<span><b><?php echo $this->user->get('username'); ?></b></span>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="namemsg" for="name"><?php echo JText::_('K2_NAME'); ?></label>
				</td>
				<td>
					<input type="text" name="<?php echo $this->nameFieldName; ?>" id="name" size="40" value="<?php echo $this->escape($this->user->get( 'name' )); ?>" class="inputbox required" maxlength="50" />
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="emailmsg" for="email"><?php echo JText::_('K2_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email" name="<?php echo $this->emailFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'email' )); ?>" class="inputbox required validate-email" maxlength="100" />
				</td>
			</tr>
			<?php if(version_compare(JVERSION, '2.5', 'ge')): ?>
			<tr>
				<td class="key">
					<label id="email2msg" for="email2"><?php echo JText::_('K2_CONFIRM_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email2" name="jform[email2]" size="40" value="<?php echo $this->escape($this->user->get( 'email' )); ?>" class="inputbox required validate-email" maxlength="100" />
					*
				</td>
			</tr>
			<?php endif; ?>
			<tr>
				<td class="key">
					<label id="pwmsg" for="password"><?php echo JText::_('K2_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox validate-password" type="password" id="password" name="<?php echo $this->passwordFieldName; ?>" size="40" value="" />
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="pw2msg" for="password2"><?php echo JText::_('K2_VERIFY_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox validate-passverify" type="password" id="password2" name="<?php echo $this->passwordVerifyFieldName; ?>" size="40" value="" />
				</td>
			</tr>
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_PERSONAL_DETAILS'); ?>
				</th>
			</tr>
			<!-- K2 attached fields -->
			<tr>
				<td class="key">
					<label id="gendermsg" for="gender"><?php echo JText::_('K2_GENDER'); ?></label>
				</td>
				<td>
					<?php echo $this->lists['gender']; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="descriptionmsg" for="description"><?php echo JText::_('K2_DESCRIPTION'); ?></label>
				</td>
				<td>
					<?php echo $this->editor; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="imagemsg" for="image"><?php echo JText::_( 'K2_USER_IMAGE_AVATAR' ); ?></label>
				</td>
				<td>
					<input type="file" id="image" name="image"/>
					<?php if ($this->K2User->image): ?>
					<img class="k2AccountPageImage" src="<?php echo JURI::root(true).'/media/k2/users/'.$this->K2User->image; ?>" alt="<?php echo $this->user->name; ?>" />
					<input type="checkbox" name="del_image" id="del_image" />
					<label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
					<?php endif; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="urlmsg" for="url"><?php echo JText::_('K2_URL'); ?></label>
				</td>
				<td>
					<input type="text" size="50" value="<?php echo $this->K2User->url; ?>" name="url" id="url"/>
				</td>
			</tr>
			<?php if(count(array_filter($this->K2Plugins))): ?>
			<!-- K2 Plugin attached fields -->
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ADDITIONAL_DETAILS'); ?>
				</th>
			</tr>
			<?php foreach($this->K2Plugins as $K2Plugin): ?>
			<?php if(!is_null($K2Plugin)): ?>
			<tr>
				<td colspan="2">
					<?php echo $K2Plugin->fields; ?>
				</td>
			</tr>
			<?php endif; ?>
			<?php endforeach; ?>
			<?php endif; ?>
			<?php if(isset($this->params) && version_compare(JVERSION, '1.6', 'lt')): ?>
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ADMINISTRATIVE_DETAILS'); ?>
				</th>
			</tr>
			<tr>
				<td colspan="2" id="userAdminParams">
					<?php echo $this->params->render('params'); ?>
				</td>
			</tr>
			<?php endif; ?>
			<!-- Joomla! 1.6+ JForm implementation -->
			<?php if(isset($this->form)): ?>
			<?php foreach ($this->form->getFieldsets() as $fieldset): // Iterate through the form fieldsets and display each one.?>
				<?php if($fieldset->name != 'core'): ?>
				<?php $fields = $this->form->getFieldset($fieldset->name);?>
				<?php if (count($fields)):?>
					<?php if (isset($fieldset->label)):// If the fieldset has a label set, display it as the legend.?>
					<tr>
						<th colspan="2" class="k2ProfileHeading">
							<?php echo JText::_($fieldset->label);?>
						</th>
					</tr>
					<?php endif;?>
					<?php foreach($fields as $field):// Iterate through the fields in the set and display them.?>
						<?php if ($field->hidden):// If the field is hidden, just display the input.?>
							<tr><td colspan="2"><?php echo $field->input;?></td></tr>
						<?php else:?>
							<tr>
								<td class="key">
									<?php echo $field->label; ?>
									<?php if (!$field->required && $field->type != 'Spacer'): ?>
										<span class="optional"><?php echo JText::_('COM_USERS_OPTIONAL');?></span>
									<?php endif; ?>
								</td>
								<td><?php echo $field->input;?></td>
							</tr>
						<?php endif;?>
					<?php endforeach;?>
				<?php endif;?>
				<?php endif; ?>
			<?php endforeach;?>
			<?php endif; ?>
		</table>
		<div class="k2AccountPageUpdate">
			<button class="button validate" type="submit" onclick="submitbutton( this.form );return false;">
				<?php echo JText::_('K2_SAVE'); ?>
			</button>
		</div>
	</div>
	<input type="hidden" name="<?php echo $this->usernameFieldName; ?>" value="<?php echo $this->user->get('username'); ?>" />
	<input type="hidden" name="<?php echo $this->idFieldName; ?>" value="<?php echo $this->user->get('id'); ?>" />
	<input type="hidden" name="gid" value="<?php echo $this->user->get('gid'); ?>" />
	<input type="hidden" name="option" value="<?php echo $this->optionValue; ?>" />
	<input type="hidden" name="task" value="<?php echo $this->taskValue; ?>" />
	<input type="hidden" name="K2UserForm" value="1" />
	<?php echo JHTML::_( 'form.token' ); ?>
</form>
PK!�r]<<!html/com_k2/templates/generic.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Generic (search/date) Layout -->
<div id="k2Container" class="genericView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title') || JRequest::getCmd('task')=='search' || JRequest::getCmd('task')=='date'): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if(JRequest::getCmd('task')=='search' && $this->params->get('googleSearch')): ?>
	<!-- Google Search container -->
	<div id="<?php echo $this->params->get('googleSearchContainer'); ?>"></div>
	<?php endif; ?>

	<?php if(count($this->items) && $this->params->get('genericFeedIcon',1)): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if(count($this->items)): ?>

	<div class="genericItemList">
		<?php foreach($this->items as $item): ?>

		<!-- Start K2 Item Layout -->
		<div class="genericItemView">

			<div class="genericItemHeader">
				<?php if($this->params->get('genericItemDateCreated')): ?>
				<!-- Date created -->
				<span class="genericItemDateCreated">
					<?php echo JHTML::_('date', $item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
				</span>
				<?php endif; ?>

			  <?php if($this->params->get('genericItemTitle')): ?>
			  <!-- Item title -->
			  <h2 class="genericItemTitle">
			  	<?php if ($this->params->get('genericItemTitleLinked')): ?>
					<a href="<?php echo $item->link; ?>">
			  		<?php echo $item->title; ?>
			  	</a>
			  	<?php else: ?>
			  	<?php echo $item->title; ?>
			  	<?php endif; ?>
			  </h2>
			  <?php endif; ?>
		  </div>

		  <div class="genericItemBody">
			  <?php if($this->params->get('genericItemImage') && !empty($item->imageGeneric)): ?>
			  <!-- Item Image -->
			  <div class="genericItemImageBlock">
				  <span class="genericItemImage">
				    <a href="<?php echo $item->link; ?>" title="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>">
				    	<img src="<?php echo $item->imageGeneric; ?>" alt="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>" style="width:<?php echo $this->params->get('itemImageGeneric'); ?>px; height:auto;" />
				    </a>
				  </span>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

			  <?php if($this->params->get('genericItemIntroText')): ?>
			  <!-- Item introtext -->
			  <div class="genericItemIntroText">
			  	<?php echo $item->introtext; ?>
			  </div>
			  <?php endif; ?>

			  <div class="clr"></div>
		  </div>

		  <div class="clr"></div>

		  <?php if($this->params->get('genericItemExtraFields') && count($item->extra_fields)): ?>
		  <!-- Item extra fields -->
		  <div class="genericItemExtraFields">
		  	<h4><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h4>
		  	<ul>
				<?php foreach ($item->extra_fields as $key=>$extraField): ?>
				<?php if($extraField->value != ''): ?>
				<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
					<?php if($extraField->type == 'header'): ?>
					<h4 class="genericItemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
					<?php else: ?>
					<span class="genericItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
					<span class="genericItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
					<?php endif; ?>
				</li>
				<?php endif; ?>
				<?php endforeach; ?>
				</ul>
		    <div class="clr"></div>
		  </div>
		  <?php endif; ?>

			<?php if($this->params->get('genericItemCategory')): ?>
			<!-- Item category name -->
			<div class="genericItemCategory">
				<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
				<a href="<?php echo $item->category->link; ?>"><?php echo $item->category->name; ?></a>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('genericItemReadMore')): ?>
			<!-- Item "read more..." link -->
			<div class="genericItemReadMore">
				<a class="k2ReadMore" href="<?php echo $item->link; ?>">
					<?php echo JText::_('K2_READ_MORE'); ?>
				</a>
			</div>
			<?php endif; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 Item Layout -->

		<?php endforeach; ?>
	</div>

	<!-- Pagination -->
	<?php if($this->pagination->getPagesLinks()): ?>
	<div class="k2Pagination">
		<?php echo $this->pagination->getPagesLinks(); ?>
		<div class="clr"></div>
		<?php echo $this->pagination->getPagesCounter(); ?>
	</div>
	<?php endif; ?>

	<?php else: ?>

	<?php if(!$this->params->get('googleSearch')): ?>
	<!-- No results found -->
	<div id="genericItemListNothingFound">
		<p><?php echo JText::_('K2_NO_RESULTS_FOUND'); ?></p>
	</div>
	<?php endif; ?>

	<?php endif; ?>

</div>
<!-- End K2 Generic (search/date) Layout -->
PK!�����&html/mod_menu/default-agency-aside.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
?>
<?php // The menu class is deprecated. Use nav instead. ?>
<ul class="push_nav <?php echo $class_sfx;?>"<?php
	$tag = '';

	if ($params->get('tag_id') != null)
	{
		$tag = $params->get('tag_id') . '';
		echo ' id="' . $tag . '"';
	}
?>>
<?php
foreach ($list as $i => &$item)
{
	$class = 'item-' . $item->id;

	if (($item->id == $active_id) OR ($item->type == 'alias' AND $item->params->get('aliasoptions') == $active_id))
	{
		$class .= ' current';
	}

	if (in_array($item->id, $path))
	{
		$class .= ' active';
	}
	elseif ($item->type == 'alias')
	{
		$aliasToId = $item->params->get('aliasoptions');

		if (count($path) > 0 && $aliasToId == $path[count($path) - 1])
		{
			$class .= ' active';
		}
		elseif (in_array($aliasToId, $path))
		{
			$class .= ' alias-parent-active';
		}
	}

	if ($item->type == 'separator')
	{
		$class .= ' divider';
	}

	if ($item->deeper)
	{
		$class .= ' deeper';
	}

	if ($item->parent)
	{
		$class .= ' parent dropdown';
	}

	if (!empty($class))
	{
		$class = ' class="' . trim($class) . '"';
	}

	echo '<li' . $class . '>';

	// Render the menu item.
	switch ($item->type) :
		case 'separator':
		case 'url':
		case 'component':
		case 'heading':
			require JModuleHelper::getLayoutPath('mod_menu', 'default_' . $item->type);
			break;

		default:
			require JModuleHelper::getLayoutPath('mod_menu', 'default_url');
			break;
	endswitch;

	// The next item is deeper.
	if ($item->deeper)
	{
		echo '<ul class="nav-child unstyled small dropdown-menu">';
	}
	elseif ($item->shallower)
	{
		// The next item is shallower.
		echo '</li>';
		echo str_repeat('</ul></li>', $item->level_diff);
	}
	else
	{
		// The next item is on the same level.
		echo '</li>';
	}
}
?></ul>
PK!?F�html/mod_menu/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
?>
<?php // The menu class is deprecated. Use nav instead. ?>
<ul class="nav navbar-nav nnayax-nav-menu nayax-menu <?php echo $class_sfx;?>"<?php
	$tag = '';

	if ($params->get('tag_id') != null)
	{
		$tag = $params->get('tag_id') . '';
		echo ' id="' . $tag . '"';
	}
?>>
<?php
foreach ($list as $i => &$item)
{
	$class = 'item-' . $item->id;

	if (($item->id == $active_id) OR ($item->type == 'alias' AND $item->params->get('aliasoptions') == $active_id))
	{
		$class .= ' current';
	}

	if (in_array($item->id, $path))
	{
		$class .= ' active';
	}
	elseif ($item->type == 'alias')
	{
		$aliasToId = $item->params->get('aliasoptions');

		if (count($path) > 0 && $aliasToId == $path[count($path) - 1])
		{
			$class .= ' active';
		}
		elseif (in_array($aliasToId, $path))
		{
			$class .= ' alias-parent-active';
		}
	}

	if ($item->type == 'separator')
	{
		$class .= ' divider';
	}

	if ($item->deeper)
	{
		$class .= ' deeper';
	}

	if ($item->parent)
	{
		$class .= ' parent dropdown';
	}

	if (!empty($class))
	{
		$class = ' class="' . trim($class) . '"';
	}

	echo '<li' . $class . '>';

	// Render the menu item.
	switch ($item->type) :
		case 'separator':
		case 'url':
		case 'component':
		case 'heading':
			require JModuleHelper::getLayoutPath('mod_menu', 'default_' . $item->type);
			break;

		default:
			require JModuleHelper::getLayoutPath('mod_menu', 'default_url');
			break;
	endswitch;

	// The next item is deeper.
	if ($item->deeper)
	{
		echo '<ul class="nav-child unstyled small dropdown-menu">';
	}
	elseif ($item->shallower)
	{
		// The next item is shallower.
		echo '</li>';
		echo str_repeat('</ul></li>', $item->level_diff);
	}
	else
	{
		// The next item is on the same level.
		echo '</li>';
	}
}
?></ul>
PK!~N���!html/mod_menu/default_heading.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$title = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : '';
$anchor_css = $item->anchor_css ? $item->anchor_css : '';

$linktype = $item->title;

if ($item->menu_image)
{
	$linktype = JHtml::_('image', $item->menu_image, $item->title);

	if ($item->params->get('menu_text', 1))
	{
		$linktype .= '<span class="image-title">' . $item->title . '</span>';
	}
}

?>
<span class="nav-header <?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span>
PK!���#html/mod_menu/default_component.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';

if($item->parent){
	$class = $item->anchor_css ? 'class="dropdown-toggle ' . $item->anchor_css . '" ' : 'class="dropdown-toggle " ';
	$class .= ' data-toggle="dropdown" ';
} else {
	$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
}

if ($item->menu_image)
{
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
else
{
	$linktype = $item->title;
}

switch ($item->browserNav)
{
	default:
	case 0:
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
		break;
	case 1:
		// _blank
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
		break;
	case 2:
	// Use JavaScript "window.open"
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');return false;" <?php echo $title; ?>><?php echo $linktype; ?></a>
<?php
		break;
}
PK![�w���#html/mod_menu/default_separator.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$title = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : '';
$anchor_css = $item->anchor_css ? $item->anchor_css : '';

$linktype = $item->title;

if ($item->menu_image)
{
	$linktype = JHtml::_('image', $item->menu_image, $item->title);

	if ($item->params->get('menu_text', 1))
	{
		$linktype .= '<span class="image-title">' . $item->title . '</span>';
	}
}

?>
<span class="separator <?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span>
PK!u���zzhtml/mod_menu/default_url.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';
$rel   = $item->anchor_rel ? 'rel="' . $item->anchor_rel . '" ' : '';

if($item->parent){
	$class = $item->anchor_css ? 'class="page-scroll ' . $item->anchor_css . '" ' : 'class="page-scroll"';
} else {
	$class = $item->anchor_css ? 'class="page-scroll ' . $item->anchor_css . '" ' : 'class="page-scroll"';
}
if ($item->menu_image)
{
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
else
{
	$linktype = $item->title;
}
$flink = $item->flink;
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));

switch ($item->browserNav) :
	default:
	case 0:
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" <?php echo $title . $rel; ?>><?php echo $linktype; ?></a><?php
		break;
	case 1:
		// _blank
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" target="_blank" <?php echo $title . $rel; ?>><?php echo $linktype; ?></a><?php
		break;
	case 2:
		// Use JavaScript "window.open"
		$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,' . $params->get('window_open');
			?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','<?php echo $options;?>');return false;" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
		break;
endswitch;
PK!WA�html/modules.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to module rendering.  To use it you would
 * set the style attribute for the given module(s) include in your template to use the style
 * for each given modChrome function.
 *
 * eg. To render a module mod_test in the submenu style, you would use the following include:
 * <jdoc:include type="module" name="test" style="submenu" />
 *
 * This gives template designers ultimate control over how modules are rendered.
 *
 * NOTICE: All chrome wrapping methods should be named: modChrome_{STYLE} and take the same
 * two arguments.
 */

/*
 * Module chrome for rendering the module in a submenu
 */
function modChrome_no($module, &$params, &$attribs)
{
	if ($module->content)
	{
		echo $module->content;
	}
}

function modChrome_well($module, &$params, &$attribs)
{
	if ($module->content)
	{
		echo "<div class=\"well " . htmlspecialchars($params->get('moduleclass_sfx')) . "\">";
		if ($module->showtitle)
		{
			echo "<h3 class=\"page-header\">" . $module->title . "</h3>";
		}
		echo $module->content;
		echo "</div>";
	}
}

function modChrome_widget($module, &$params, &$attribs)
{
	if ($module->content)
	{
		echo "<div class=\"widget " . htmlspecialchars($params->get('moduleclass_sfx')) . "\">";
		if ($module->showtitle)
		{
			echo "<div class='widget-title ". htmlspecialchars($params->get('moduleclass_sfx')) ."'><h4>" . $module->title . "</h4></div>";
		}
		echo $module->content;
		echo "</div>";
	}
}
?>
PK!n��EE'html/mod_k2_content/Default/default.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="widget widget_recent_post <?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
    <ul class="category">
    <?php if(count($items)): foreach ($items as $key=>$item):	?>
        <?php 
            $date = new DateTime($item->created);
        ?>
        <li><a href="<?php echo $item->link; ?>"><?php echo $item->title; ?><span class="date"><?php echo $date->format('m F, Y'); ?></span></a></li>
	<?php endforeach; endif; ?>
    </ul>
</div>PK!��D�]�]js/owl.carousel.min.jsnu&1i�"function"!==typeof Object.create&&(Object.create=function(f){function g(){}g.prototype=f;return new g});
(function(f,g,k){var l={init:function(a,b){this.$elem=f(b);this.options=f.extend({},f.fn.owlCarousel.options,this.$elem.data(),a);this.userOptions=a;this.loadContent()},loadContent:function(){function a(a){var d,e="";if("function"===typeof b.options.jsonSuccess)b.options.jsonSuccess.apply(this,[a]);else{for(d in a.owl)a.owl.hasOwnProperty(d)&&(e+=a.owl[d].item);b.$elem.html(e)}b.logIn()}var b=this,e;"function"===typeof b.options.beforeInit&&b.options.beforeInit.apply(this,[b.$elem]);"string"===typeof b.options.jsonPath?
(e=b.options.jsonPath,f.getJSON(e,a)):b.logIn()},logIn:function(){this.$elem.data("owl-originalStyles",this.$elem.attr("style"));this.$elem.data("owl-originalClasses",this.$elem.attr("class"));this.$elem.css({opacity:0});this.orignalItems=this.options.items;this.checkBrowser();this.wrapperWidth=0;this.checkVisible=null;this.setVars()},setVars:function(){if(0===this.$elem.children().length)return!1;this.baseClass();this.eventTypes();this.$userItems=this.$elem.children();this.itemsAmount=this.$userItems.length;
this.wrapItems();this.$owlItems=this.$elem.find(".owl-item");this.$owlWrapper=this.$elem.find(".owl-wrapper");this.playDirection="next";this.prevItem=0;this.prevArr=[0];this.currentItem=0;this.customEvents();this.onStartup()},onStartup:function(){this.updateItems();this.calculateAll();this.buildControls();this.updateControls();this.response();this.moveEvents();this.stopOnHover();this.owlStatus();!1!==this.options.transitionStyle&&this.transitionTypes(this.options.transitionStyle);!0===this.options.autoPlay&&
(this.options.autoPlay=5E3);this.play();this.$elem.find(".owl-wrapper").css("display","block");this.$elem.is(":visible")?this.$elem.css("opacity",1):this.watchVisibility();this.onstartup=!1;this.eachMoveUpdate();"function"===typeof this.options.afterInit&&this.options.afterInit.apply(this,[this.$elem])},eachMoveUpdate:function(){!0===this.options.lazyLoad&&this.lazyLoad();!0===this.options.autoHeight&&this.autoHeight();this.onVisibleItems();"function"===typeof this.options.afterAction&&this.options.afterAction.apply(this,
[this.$elem])},updateVars:function(){"function"===typeof this.options.beforeUpdate&&this.options.beforeUpdate.apply(this,[this.$elem]);this.watchVisibility();this.updateItems();this.calculateAll();this.updatePosition();this.updateControls();this.eachMoveUpdate();"function"===typeof this.options.afterUpdate&&this.options.afterUpdate.apply(this,[this.$elem])},reload:function(){var a=this;g.setTimeout(function(){a.updateVars()},0)},watchVisibility:function(){var a=this;if(!1===a.$elem.is(":visible"))a.$elem.css({opacity:0}),
g.clearInterval(a.autoPlayInterval),g.clearInterval(a.checkVisible);else return!1;a.checkVisible=g.setInterval(function(){a.$elem.is(":visible")&&(a.reload(),a.$elem.animate({opacity:1},200),g.clearInterval(a.checkVisible))},500)},wrapItems:function(){this.$userItems.wrapAll('<div class="owl-wrapper">').wrap('<div class="owl-item"></div>');this.$elem.find(".owl-wrapper").wrap('<div class="owl-wrapper-outer">');this.wrapperOuter=this.$elem.find(".owl-wrapper-outer");this.$elem.css("display","block")},
baseClass:function(){var a=this.$elem.hasClass(this.options.baseClass),b=this.$elem.hasClass(this.options.theme);a||this.$elem.addClass(this.options.baseClass);b||this.$elem.addClass(this.options.theme)},updateItems:function(){var a,b;if(!1===this.options.responsive)return!1;if(!0===this.options.singleItem)return this.options.items=this.orignalItems=1,this.options.itemsCustom=!1,this.options.itemsDesktop=!1,this.options.itemsDesktopSmall=!1,this.options.itemsTablet=!1,this.options.itemsTabletSmall=
!1,this.options.itemsMobile=!1;a=f(this.options.responsiveBaseWidth).width();a>(this.options.itemsDesktop[0]||this.orignalItems)&&(this.options.items=this.orignalItems);if(!1!==this.options.itemsCustom)for(this.options.itemsCustom.sort(function(a,b){return a[0]-b[0]}),b=0;b<this.options.itemsCustom.length;b+=1)this.options.itemsCustom[b][0]<=a&&(this.options.items=this.options.itemsCustom[b][1]);else a<=this.options.itemsDesktop[0]&&!1!==this.options.itemsDesktop&&(this.options.items=this.options.itemsDesktop[1]),
a<=this.options.itemsDesktopSmall[0]&&!1!==this.options.itemsDesktopSmall&&(this.options.items=this.options.itemsDesktopSmall[1]),a<=this.options.itemsTablet[0]&&!1!==this.options.itemsTablet&&(this.options.items=this.options.itemsTablet[1]),a<=this.options.itemsTabletSmall[0]&&!1!==this.options.itemsTabletSmall&&(this.options.items=this.options.itemsTabletSmall[1]),a<=this.options.itemsMobile[0]&&!1!==this.options.itemsMobile&&(this.options.items=this.options.itemsMobile[1]);this.options.items>this.itemsAmount&&
!0===this.options.itemsScaleUp&&(this.options.items=this.itemsAmount)},response:function(){var a=this,b,e;if(!0!==a.options.responsive)return!1;e=f(g).width();a.resizer=function(){f(g).width()!==e&&(!1!==a.options.autoPlay&&g.clearInterval(a.autoPlayInterval),g.clearTimeout(b),b=g.setTimeout(function(){e=f(g).width();a.updateVars()},a.options.responsiveRefreshRate))};f(g).resize(a.resizer)},updatePosition:function(){this.jumpTo(this.currentItem);!1!==this.options.autoPlay&&this.checkAp()},appendItemsSizes:function(){var a=
this,b=0,e=a.itemsAmount-a.options.items;a.$owlItems.each(function(c){var d=f(this);d.css({width:a.itemWidth}).data("owl-item",Number(c));if(0===c%a.options.items||c===e)c>e||(b+=1);d.data("owl-roundPages",b)})},appendWrapperSizes:function(){this.$owlWrapper.css({width:this.$owlItems.length*this.itemWidth*2,left:0});this.appendItemsSizes()},calculateAll:function(){this.calculateWidth();this.appendWrapperSizes();this.loops();this.max()},calculateWidth:function(){this.itemWidth=Math.round(this.$elem.width()/
this.options.items)},max:function(){var a=-1*(this.itemsAmount*this.itemWidth-this.options.items*this.itemWidth);this.options.items>this.itemsAmount?this.maximumPixels=a=this.maximumItem=0:(this.maximumItem=this.itemsAmount-this.options.items,this.maximumPixels=a);return a},min:function(){return 0},loops:function(){var a=0,b=0,e,c;this.positionsInArray=[0];this.pagesInArray=[];for(e=0;e<this.itemsAmount;e+=1)b+=this.itemWidth,this.positionsInArray.push(-b),!0===this.options.scrollPerPage&&(c=f(this.$owlItems[e]),
c=c.data("owl-roundPages"),c!==a&&(this.pagesInArray[a]=this.positionsInArray[e],a=c))},buildControls:function(){if(!0===this.options.navigation||!0===this.options.pagination)this.owlControls=f('<div class="owl-controls"/>').toggleClass("clickable",!this.browser.isTouch).appendTo(this.$elem);!0===this.options.pagination&&this.buildPagination();!0===this.options.navigation&&this.buildButtons()},buildButtons:function(){var a=this,b=f('<div class="owl-buttons"/>');a.owlControls.append(b);a.buttonPrev=
f("<div/>",{"class":"owl-prev",html:a.options.navigationText[0]||""});a.buttonNext=f("<div/>",{"class":"owl-next",html:a.options.navigationText[1]||""});b.append(a.buttonPrev).append(a.buttonNext);b.on("touchstart.owlControls mousedown.owlControls",'div[class^="owl"]',function(a){a.preventDefault()});b.on("touchend.owlControls mouseup.owlControls",'div[class^="owl"]',function(b){b.preventDefault();f(this).hasClass("owl-next")?a.next():a.prev()})},buildPagination:function(){var a=this;a.paginationWrapper=
f('<div class="owl-pagination"/>');a.owlControls.append(a.paginationWrapper);a.paginationWrapper.on("touchend.owlControls mouseup.owlControls",".owl-page",function(b){b.preventDefault();Number(f(this).data("owl-page"))!==a.currentItem&&a.goTo(Number(f(this).data("owl-page")),!0)})},updatePagination:function(){var a,b,e,c,d,g;if(!1===this.options.pagination)return!1;this.paginationWrapper.html("");a=0;b=this.itemsAmount-this.itemsAmount%this.options.items;for(c=0;c<this.itemsAmount;c+=1)0===c%this.options.items&&
(a+=1,b===c&&(e=this.itemsAmount-this.options.items),d=f("<div/>",{"class":"owl-page"}),g=f("<span></span>",{text:!0===this.options.paginationNumbers?a:"","class":!0===this.options.paginationNumbers?"owl-numbers":""}),d.append(g),d.data("owl-page",b===c?e:c),d.data("owl-roundPages",a),this.paginationWrapper.append(d));this.checkPagination()},checkPagination:function(){var a=this;if(!1===a.options.pagination)return!1;a.paginationWrapper.find(".owl-page").each(function(){f(this).data("owl-roundPages")===
f(a.$owlItems[a.currentItem]).data("owl-roundPages")&&(a.paginationWrapper.find(".owl-page").removeClass("active"),f(this).addClass("active"))})},checkNavigation:function(){if(!1===this.options.navigation)return!1;!1===this.options.rewindNav&&(0===this.currentItem&&0===this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.addClass("disabled")):0===this.currentItem&&0!==this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.removeClass("disabled")):this.currentItem===
this.maximumItem?(this.buttonPrev.removeClass("disabled"),this.buttonNext.addClass("disabled")):0!==this.currentItem&&this.currentItem!==this.maximumItem&&(this.buttonPrev.removeClass("disabled"),this.buttonNext.removeClass("disabled")))},updateControls:function(){this.updatePagination();this.checkNavigation();this.owlControls&&(this.options.items>=this.itemsAmount?this.owlControls.hide():this.owlControls.show())},destroyControls:function(){this.owlControls&&this.owlControls.remove()},next:function(a){if(this.isTransition)return!1;
this.currentItem+=!0===this.options.scrollPerPage?this.options.items:1;if(this.currentItem>this.maximumItem+(!0===this.options.scrollPerPage?this.options.items-1:0))if(!0===this.options.rewindNav)this.currentItem=0,a="rewind";else return this.currentItem=this.maximumItem,!1;this.goTo(this.currentItem,a)},prev:function(a){if(this.isTransition)return!1;this.currentItem=!0===this.options.scrollPerPage&&0<this.currentItem&&this.currentItem<this.options.items?0:this.currentItem-(!0===this.options.scrollPerPage?
this.options.items:1);if(0>this.currentItem)if(!0===this.options.rewindNav)this.currentItem=this.maximumItem,a="rewind";else return this.currentItem=0,!1;this.goTo(this.currentItem,a)},goTo:function(a,b,e){var c=this;if(c.isTransition)return!1;"function"===typeof c.options.beforeMove&&c.options.beforeMove.apply(this,[c.$elem]);a>=c.maximumItem?a=c.maximumItem:0>=a&&(a=0);c.currentItem=c.owl.currentItem=a;if(!1!==c.options.transitionStyle&&"drag"!==e&&1===c.options.items&&!0===c.browser.support3d)return c.swapSpeed(0),
!0===c.browser.support3d?c.transition3d(c.positionsInArray[a]):c.css2slide(c.positionsInArray[a],1),c.afterGo(),c.singleItemTransition(),!1;a=c.positionsInArray[a];!0===c.browser.support3d?(c.isCss3Finish=!1,!0===b?(c.swapSpeed("paginationSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},c.options.paginationSpeed)):"rewind"===b?(c.swapSpeed(c.options.rewindSpeed),g.setTimeout(function(){c.isCss3Finish=!0},c.options.rewindSpeed)):(c.swapSpeed("slideSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},
c.options.slideSpeed)),c.transition3d(a)):!0===b?c.css2slide(a,c.options.paginationSpeed):"rewind"===b?c.css2slide(a,c.options.rewindSpeed):c.css2slide(a,c.options.slideSpeed);c.afterGo()},jumpTo:function(a){"function"===typeof this.options.beforeMove&&this.options.beforeMove.apply(this,[this.$elem]);a>=this.maximumItem||-1===a?a=this.maximumItem:0>=a&&(a=0);this.swapSpeed(0);!0===this.browser.support3d?this.transition3d(this.positionsInArray[a]):this.css2slide(this.positionsInArray[a],1);this.currentItem=
this.owl.currentItem=a;this.afterGo()},afterGo:function(){this.prevArr.push(this.currentItem);this.prevItem=this.owl.prevItem=this.prevArr[this.prevArr.length-2];this.prevArr.shift(0);this.prevItem!==this.currentItem&&(this.checkPagination(),this.checkNavigation(),this.eachMoveUpdate(),!1!==this.options.autoPlay&&this.checkAp());"function"===typeof this.options.afterMove&&this.prevItem!==this.currentItem&&this.options.afterMove.apply(this,[this.$elem])},stop:function(){this.apStatus="stop";g.clearInterval(this.autoPlayInterval)},
checkAp:function(){"stop"!==this.apStatus&&this.play()},play:function(){var a=this;a.apStatus="play";if(!1===a.options.autoPlay)return!1;g.clearInterval(a.autoPlayInterval);a.autoPlayInterval=g.setInterval(function(){a.next(!0)},a.options.autoPlay)},swapSpeed:function(a){"slideSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.slideSpeed)):"paginationSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.paginationSpeed)):"string"!==typeof a&&this.$owlWrapper.css(this.addCssSpeed(a))},
addCssSpeed:function(a){return{"-webkit-transition":"all "+a+"ms ease","-moz-transition":"all "+a+"ms ease","-o-transition":"all "+a+"ms ease",transition:"all "+a+"ms ease"}},removeTransition:function(){return{"-webkit-transition":"","-moz-transition":"","-o-transition":"",transition:""}},doTranslate:function(a){return{"-webkit-transform":"translate3d("+a+"px, 0px, 0px)","-moz-transform":"translate3d("+a+"px, 0px, 0px)","-o-transform":"translate3d("+a+"px, 0px, 0px)","-ms-transform":"translate3d("+
a+"px, 0px, 0px)",transform:"translate3d("+a+"px, 0px,0px)"}},transition3d:function(a){this.$owlWrapper.css(this.doTranslate(a))},css2move:function(a){this.$owlWrapper.css({left:a})},css2slide:function(a,b){var e=this;e.isCssFinish=!1;e.$owlWrapper.stop(!0,!0).animate({left:a},{duration:b||e.options.slideSpeed,complete:function(){e.isCssFinish=!0}})},checkBrowser:function(){var a=k.createElement("div");a.style.cssText="  -moz-transform:translate3d(0px, 0px, 0px); -ms-transform:translate3d(0px, 0px, 0px); -o-transform:translate3d(0px, 0px, 0px); -webkit-transform:translate3d(0px, 0px, 0px); transform:translate3d(0px, 0px, 0px)";
a=a.style.cssText.match(/translate3d\(0px, 0px, 0px\)/g);this.browser={support3d:null!==a&&1===a.length,isTouch:"ontouchstart"in g||g.navigator.msMaxTouchPoints}},moveEvents:function(){if(!1!==this.options.mouseDrag||!1!==this.options.touchDrag)this.gestures(),this.disabledEvents()},eventTypes:function(){var a=["s","e","x"];this.ev_types={};!0===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl mousedown.owl","touchmove.owl mousemove.owl","touchend.owl touchcancel.owl mouseup.owl"]:
!1===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl","touchmove.owl","touchend.owl touchcancel.owl"]:!0===this.options.mouseDrag&&!1===this.options.touchDrag&&(a=["mousedown.owl","mousemove.owl","mouseup.owl"]);this.ev_types.start=a[0];this.ev_types.move=a[1];this.ev_types.end=a[2]},disabledEvents:function(){this.$elem.on("dragstart.owl",function(a){a.preventDefault()});this.$elem.on("mousedown.disableTextSelect",function(a){return f(a.target).is("input, textarea, select, option")})},
gestures:function(){function a(a){if(void 0!==a.touches)return{x:a.touches[0].pageX,y:a.touches[0].pageY};if(void 0===a.touches){if(void 0!==a.pageX)return{x:a.pageX,y:a.pageY};if(void 0===a.pageX)return{x:a.clientX,y:a.clientY}}}function b(a){"on"===a?(f(k).on(d.ev_types.move,e),f(k).on(d.ev_types.end,c)):"off"===a&&(f(k).off(d.ev_types.move),f(k).off(d.ev_types.end))}function e(b){b=b.originalEvent||b||g.event;d.newPosX=a(b).x-h.offsetX;d.newPosY=a(b).y-h.offsetY;d.newRelativeX=d.newPosX-h.relativePos;
"function"===typeof d.options.startDragging&&!0!==h.dragging&&0!==d.newRelativeX&&(h.dragging=!0,d.options.startDragging.apply(d,[d.$elem]));(8<d.newRelativeX||-8>d.newRelativeX)&&!0===d.browser.isTouch&&(void 0!==b.preventDefault?b.preventDefault():b.returnValue=!1,h.sliding=!0);(10<d.newPosY||-10>d.newPosY)&&!1===h.sliding&&f(k).off("touchmove.owl");d.newPosX=Math.max(Math.min(d.newPosX,d.newRelativeX/5),d.maximumPixels+d.newRelativeX/5);!0===d.browser.support3d?d.transition3d(d.newPosX):d.css2move(d.newPosX)}
function c(a){a=a.originalEvent||a||g.event;var c;a.target=a.target||a.srcElement;h.dragging=!1;!0!==d.browser.isTouch&&d.$owlWrapper.removeClass("grabbing");d.dragDirection=0>d.newRelativeX?d.owl.dragDirection="left":d.owl.dragDirection="right";0!==d.newRelativeX&&(c=d.getNewPosition(),d.goTo(c,!1,"drag"),h.targetElement===a.target&&!0!==d.browser.isTouch&&(f(a.target).on("click.disable",function(a){a.stopImmediatePropagation();a.stopPropagation();a.preventDefault();f(a.target).off("click.disable")}),
a=f._data(a.target,"events").click,c=a.pop(),a.splice(0,0,c)));b("off")}var d=this,h={offsetX:0,offsetY:0,baseElWidth:0,relativePos:0,position:null,minSwipe:null,maxSwipe:null,sliding:null,dargging:null,targetElement:null};d.isCssFinish=!0;d.$elem.on(d.ev_types.start,".owl-wrapper",function(c){c=c.originalEvent||c||g.event;var e;if(3===c.which)return!1;if(!(d.itemsAmount<=d.options.items)){if(!1===d.isCssFinish&&!d.options.dragBeforeAnimFinish||!1===d.isCss3Finish&&!d.options.dragBeforeAnimFinish)return!1;
!1!==d.options.autoPlay&&g.clearInterval(d.autoPlayInterval);!0===d.browser.isTouch||d.$owlWrapper.hasClass("grabbing")||d.$owlWrapper.addClass("grabbing");d.newPosX=0;d.newRelativeX=0;f(this).css(d.removeTransition());e=f(this).position();h.relativePos=e.left;h.offsetX=a(c).x-e.left;h.offsetY=a(c).y-e.top;b("on");h.sliding=!1;h.targetElement=c.target||c.srcElement}})},getNewPosition:function(){var a=this.closestItem();a>this.maximumItem?a=this.currentItem=this.maximumItem:0<=this.newPosX&&(this.currentItem=
a=0);return a},closestItem:function(){var a=this,b=!0===a.options.scrollPerPage?a.pagesInArray:a.positionsInArray,e=a.newPosX,c=null;f.each(b,function(d,g){e-a.itemWidth/20>b[d+1]&&e-a.itemWidth/20<g&&"left"===a.moveDirection()?(c=g,a.currentItem=!0===a.options.scrollPerPage?f.inArray(c,a.positionsInArray):d):e+a.itemWidth/20<g&&e+a.itemWidth/20>(b[d+1]||b[d]-a.itemWidth)&&"right"===a.moveDirection()&&(!0===a.options.scrollPerPage?(c=b[d+1]||b[b.length-1],a.currentItem=f.inArray(c,a.positionsInArray)):
(c=b[d+1],a.currentItem=d+1))});return a.currentItem},moveDirection:function(){var a;0>this.newRelativeX?(a="right",this.playDirection="next"):(a="left",this.playDirection="prev");return a},customEvents:function(){var a=this;a.$elem.on("owl.next",function(){a.next()});a.$elem.on("owl.prev",function(){a.prev()});a.$elem.on("owl.play",function(b,e){a.options.autoPlay=e;a.play();a.hoverStatus="play"});a.$elem.on("owl.stop",function(){a.stop();a.hoverStatus="stop"});a.$elem.on("owl.goTo",function(b,e){a.goTo(e)});
a.$elem.on("owl.jumpTo",function(b,e){a.jumpTo(e)})},stopOnHover:function(){var a=this;!0===a.options.stopOnHover&&!0!==a.browser.isTouch&&!1!==a.options.autoPlay&&(a.$elem.on("mouseover",function(){a.stop()}),a.$elem.on("mouseout",function(){"stop"!==a.hoverStatus&&a.play()}))},lazyLoad:function(){var a,b,e,c,d;if(!1===this.options.lazyLoad)return!1;for(a=0;a<this.itemsAmount;a+=1)b=f(this.$owlItems[a]),"loaded"!==b.data("owl-loaded")&&(e=b.data("owl-item"),c=b.find(".lazyOwl"),"string"!==typeof c.data("src")?
b.data("owl-loaded","loaded"):(void 0===b.data("owl-loaded")&&(c.hide(),b.addClass("loading").data("owl-loaded","checked")),(d=!0===this.options.lazyFollow?e>=this.currentItem:!0)&&e<this.currentItem+this.options.items&&c.length&&this.lazyPreload(b,c)))},lazyPreload:function(a,b){function e(){a.data("owl-loaded","loaded").removeClass("loading");b.removeAttr("data-src");"fade"===d.options.lazyEffect?b.fadeIn(400):b.show();"function"===typeof d.options.afterLazyLoad&&d.options.afterLazyLoad.apply(this,
[d.$elem])}function c(){f+=1;d.completeImg(b.get(0))||!0===k?e():100>=f?g.setTimeout(c,100):e()}var d=this,f=0,k;"DIV"===b.prop("tagName")?(b.css("background-image","url("+b.data("src")+")"),k=!0):b[0].src=b.data("src");c()},autoHeight:function(){function a(){var a=f(e.$owlItems[e.currentItem]).height();e.wrapperOuter.css("height",a+"px");e.wrapperOuter.hasClass("autoHeight")||g.setTimeout(function(){e.wrapperOuter.addClass("autoHeight")},0)}function b(){d+=1;e.completeImg(c.get(0))?a():100>=d?g.setTimeout(b,
100):e.wrapperOuter.css("height","")}var e=this,c=f(e.$owlItems[e.currentItem]).find("img"),d;void 0!==c.get(0)?(d=0,b()):a()},completeImg:function(a){return!a.complete||"undefined"!==typeof a.naturalWidth&&0===a.naturalWidth?!1:!0},onVisibleItems:function(){var a;!0===this.options.addClassActive&&this.$owlItems.removeClass("active");this.visibleItems=[];for(a=this.currentItem;a<this.currentItem+this.options.items;a+=1)this.visibleItems.push(a),!0===this.options.addClassActive&&f(this.$owlItems[a]).addClass("active");
this.owl.visibleItems=this.visibleItems},transitionTypes:function(a){this.outClass="owl-"+a+"-out";this.inClass="owl-"+a+"-in"},singleItemTransition:function(){var a=this,b=a.outClass,e=a.inClass,c=a.$owlItems.eq(a.currentItem),d=a.$owlItems.eq(a.prevItem),f=Math.abs(a.positionsInArray[a.currentItem])+a.positionsInArray[a.prevItem],g=Math.abs(a.positionsInArray[a.currentItem])+a.itemWidth/2;a.isTransition=!0;a.$owlWrapper.addClass("owl-origin").css({"-webkit-transform-origin":g+"px","-moz-perspective-origin":g+
"px","perspective-origin":g+"px"});d.css({position:"relative",left:f+"px"}).addClass(b).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endPrev=!0;d.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(d,b)});c.addClass(e).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endCurrent=!0;c.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(c,e)})},clearTransStyle:function(a,
b){a.css({position:"",left:""}).removeClass(b);this.endPrev&&this.endCurrent&&(this.$owlWrapper.removeClass("owl-origin"),this.isTransition=this.endCurrent=this.endPrev=!1)},owlStatus:function(){this.owl={userOptions:this.userOptions,baseElement:this.$elem,userItems:this.$userItems,owlItems:this.$owlItems,currentItem:this.currentItem,prevItem:this.prevItem,visibleItems:this.visibleItems,isTouch:this.browser.isTouch,browser:this.browser,dragDirection:this.dragDirection}},clearEvents:function(){this.$elem.off(".owl owl mousedown.disableTextSelect");
f(k).off(".owl owl");f(g).off("resize",this.resizer)},unWrap:function(){0!==this.$elem.children().length&&(this.$owlWrapper.unwrap(),this.$userItems.unwrap().unwrap(),this.owlControls&&this.owlControls.remove());this.clearEvents();this.$elem.attr("style",this.$elem.data("owl-originalStyles")||"").attr("class",this.$elem.data("owl-originalClasses"))},destroy:function(){this.stop();g.clearInterval(this.checkVisible);this.unWrap();this.$elem.removeData()},reinit:function(a){a=f.extend({},this.userOptions,
a);this.unWrap();this.init(a,this.$elem)},addItem:function(a,b){var e;if(!a)return!1;if(0===this.$elem.children().length)return this.$elem.append(a),this.setVars(),!1;this.unWrap();e=void 0===b||-1===b?-1:b;e>=this.$userItems.length||-1===e?this.$userItems.eq(-1).after(a):this.$userItems.eq(e).before(a);this.setVars()},removeItem:function(a){if(0===this.$elem.children().length)return!1;a=void 0===a||-1===a?-1:a;this.unWrap();this.$userItems.eq(a).remove();this.setVars()}};f.fn.owlCarousel=function(a){return this.each(function(){if(!0===
f(this).data("owl-init"))return!1;f(this).data("owl-init",!0);var b=Object.create(l);b.init(a,this);f.data(this,"owlCarousel",b)})};f.fn.owlCarousel.options={items:5,itemsCustom:!1,itemsDesktop:[1199,4],itemsDesktopSmall:[979,3],itemsTablet:[768,2],itemsTabletSmall:!1,itemsMobile:[479,1],singleItem:!1,itemsScaleUp:!1,slideSpeed:200,paginationSpeed:800,rewindSpeed:1E3,autoPlay:!1,stopOnHover:!1,navigation:!1,navigationText:["prev","next"],rewindNav:!0,scrollPerPage:!1,pagination:!0,paginationNumbers:!1,
responsive:!0,responsiveRefreshRate:200,responsiveBaseWidth:g,baseClass:"owl-carousel",theme:"owl-theme",lazyLoad:!1,lazyFollow:!0,lazyEffect:"fade",autoHeight:!1,jsonPath:!1,jsonSuccess:!1,dragBeforeAnimFinish:!0,mouseDrag:!0,touchDrag:!0,addClassActive:!1,transitionStyle:!1,beforeUpdate:!1,afterUpdate:!1,beforeInit:!1,afterInit:!1,beforeMove:!1,afterMove:!1,afterAction:!1,startDragging:!1,afterLazyLoad:!1}})(jQuery,window,document);PK!�Ec�//js/jquery.parallax-1.1.3.jsnu&1i�/*
Plugin: jQuery Parallax
Version 1.1.3
Author: Ian Lunn
Twitter: @IanLunn
Author URL: http://www.ianlunn.co.uk/
Plugin URL: http://www.ianlunn.co.uk/plugins/jquery-parallax/

Dual licensed under the MIT and GPL licenses:
http://www.opensource.org/licenses/mit-license.php
http://www.gnu.org/licenses/gpl.html
*/

(function( $ ){
	var $window = $(window);
	var windowHeight = $window.height();

	$window.resize(function () {
		windowHeight = $window.height();
	});

	$.fn.parallax = function(xpos, speedFactor, outerHeight) {
		var $this = $(this);
		var getHeight;
		var firstTop;
		var paddingTop = 0;
		
		//get the starting position of each element to have parallax applied to it		
		$this.each(function(){
		    firstTop = $this.offset().top;
		});

		if (outerHeight) {
			getHeight = function(jqo) {
				return jqo.outerHeight(true);
			};
		} else {
			getHeight = function(jqo) {
				return jqo.height();
			};
		}
			
		// setup defaults if arguments aren't specified
		if (arguments.length < 1 || xpos === null) xpos = "50%";
		if (arguments.length < 2 || speedFactor === null) speedFactor = 0.1;
		if (arguments.length < 3 || outerHeight === null) outerHeight = true;
		
		// function to be called whenever the window is scrolled or resized
		function update(){
			var pos = $window.scrollTop();				

			$this.each(function(){
				var $element = $(this);
				var top = $element.offset().top;
				var height = getHeight($element);

				// Check if totally above or totally below viewport
				if (top + height < pos || top > pos + windowHeight) {
					return;
				}

				$this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px");
			});
		}		

		$window.bind('scroll', update).resize(update);
		update();
	};
})(jQuery);
PK!޹�ߝ�js/jquery.fancybox-thumbs.jsnu&1i� /*!
 * Thumbnail helper for fancyBox
 * version: 1.0.7 (Mon, 01 Oct 2012)
 * @requires fancyBox v2.0 or later
 *
 * Usage:
 *     $(".fancybox").fancybox({
 *         helpers : {
 *             thumbs: {
 *                 width  : 50,
 *                 height : 50
 *             }
 *         }
 *     });
 *
 */
(function ($) {
	//Shortcut for fancyBox object
	var F = $.fancybox;

	//Add helper object
	F.helpers.thumbs = {
		defaults : {
			width    : 50,       // thumbnail width
			height   : 50,       // thumbnail height
			position : 'bottom', // 'top' or 'bottom'
			source   : function ( item ) {  // function to obtain the URL of the thumbnail image
				var href;

				if (item.element) {
					href = $(item.element).find('img').attr('src');
				}

				if (!href && item.type === 'image' && item.href) {
					href = item.href;
				}

				return href;
			}
		},

		wrap  : null,
		list  : null,
		width : 0,

		init: function (opts, obj) {
			var that = this,
				list,
				thumbWidth  = opts.width,
				thumbHeight = opts.height,
				thumbSource = opts.source;

			//Build list structure
			list = '';

			for (var n = 0; n < obj.group.length; n++) {
				list += '<li><a style="width:' + thumbWidth + 'px;height:' + thumbHeight + 'px;" href="javascript:jQuery.fancybox.jumpto(' + n + ');"></a></li>';
			}

			this.wrap = $('<div id="fancybox-thumbs"></div>').addClass(opts.position).appendTo('body');
			this.list = $('<ul>' + list + '</ul>').appendTo(this.wrap);

			//Load each thumbnail
			$.each(obj.group, function (i) {
				var href = thumbSource( obj.group[ i ] );

				if (!href) {
					return;
				}

				$("<img />").load(function () {
					var width  = this.width,
						height = this.height,
						widthRatio, heightRatio, parent;

					if (!that.list || !width || !height) {
						return;
					}

					//Calculate thumbnail width/height and center it
					widthRatio  = width / thumbWidth;
					heightRatio = height / thumbHeight;

					parent = that.list.children().eq(i).find('a');

					if (widthRatio >= 1 && heightRatio >= 1) {
						if (widthRatio > heightRatio) {
							width  = Math.floor(width / heightRatio);
							height = thumbHeight;

						} else {
							width  = thumbWidth;
							height = Math.floor(height / widthRatio);
						}
					}

					$(this).css({
						width  : width,
						height : height,
						top    : Math.floor(thumbHeight / 2 - height / 2),
						left   : Math.floor(thumbWidth / 2 - width / 2)
					});

					parent.width(thumbWidth).height(thumbHeight);

					$(this).hide().appendTo(parent).fadeIn(300);

				}).attr('src', href);
			});

			//Set initial width
			this.width = this.list.children().eq(0).outerWidth(true);

			this.list.width(this.width * (obj.group.length + 1)).css('left', Math.floor($(window).width() * 0.5 - (obj.index * this.width + this.width * 0.5)));
		},

		beforeLoad: function (opts, obj) {
			//Remove self if gallery do not have at least two items
			if (obj.group.length < 2) {
				obj.helpers.thumbs = false;

				return;
			}

			//Increase bottom margin to give space for thumbs
			obj.margin[ opts.position === 'top' ? 0 : 2 ] += ((opts.height) + 15);
		},

		afterShow: function (opts, obj) {
			//Check if exists and create or update list
			if (this.list) {
				this.onUpdate(opts, obj);

			} else {
				this.init(opts, obj);
			}

			//Set active element
			this.list.children().removeClass('active').eq(obj.index).addClass('active');
		},

		//Center list
		onUpdate: function (opts, obj) {
			if (this.list) {
				this.list.stop(true).animate({
					'left': Math.floor($(window).width() * 0.5 - (obj.index * this.width + this.width * 0.5))
				}, 150);
			}
		},

		beforeClose: function () {
			if (this.wrap) {
				this.wrap.remove();
			}

			this.wrap  = null;
			this.list  = null;
			this.width = 0;
		}
	}

}(jQuery));PK!����js/functions.jsnu&1i�
jQuery(function($) {'use strict',		  
	  //Window Loaded Handler
  	$(window).load(function(){'use strict';
		$(".loader").fadeOut("slow");
  	});   	
	 
  	// ========================================================================= 
	//	Back to Top
	// ========================================================================= 
	 
	if ($('.go-top').length) {
	    var scrollTrigger = 100, // px
	        backToTop = function () {
	            var scrollTop = $(window).scrollTop();
	            if (scrollTop > scrollTrigger) {
	                $('.go-top').addClass('show');
	            } else {
	                $('.go-top').removeClass('show');
	            }
	        };
	    backToTop();
	    $(window).on('scroll', function () {
	        backToTop();
	    });
	    $('.go-top').on('click', function (e) {
	        e.preventDefault();
	        $('html,body').animate({
	            scrollTop: 0
	        }, 700);
	    });
	} 

	//Change Diffrent Logos on Nav
  	jQuery(window).scroll(function() {  
		if (jQuery(window).scrollTop() >= 25) {
			jQuery("a.bizone-logo img").attr("src", jQuery("a.bizone-logo img").attr("data-sticky"));
		} else {
			jQuery("a.bizone-logo img").attr("src", jQuery("a.bizone-logo img").attr("data-default"));
		}  
  	});
   

// Scroll One Page Menu
  	$('a.page-scroll, .cbp-spmenu a').on('click', function(event){
  		console.log("click");
		var $anchor = $(this);
        $('html, body').stop().animate({
            scrollTop: $($anchor.attr('href')).offset().top
        }, 1200, 'easeInOutExpo');
       	event.preventDefault();
       	if(!$("#main-navigation").hasClass("index5")){
			$('#navigation').affix({offset: {top: 50} });
       	}
   });

  	// Submenu
  	var menu_timeout;
    $('ul.navbar-nav li.parent.dropdown').hover(
    	function(){
        var me=$(this);
             menu_timeout=window.setTimeout(function(){
                 me.children('ul').slideDown();
             },300);
         },
        function(){
            var me=$(this);
            window.clearTimeout(menu_timeout);
            me.children('ul').slideUp();    
        }
    );


	//Facts Counters Home Page
	 $(".number-counters").appear(function () {
		$(".number-counters [data-to]").each(function () {
		  var e = $(this).attr("data-to");
		  $(this).delay(6e3).countTo({
			 from: 50,
			 to: e,
			 speed: 3e3,
			 refreshInterval: 50
		  })
		})
	 });
		  
	 
	
 	//FOr Circular Progress show
	 $('.some').appear(function () {
		 $('.myStat2').circliful() 
	 });   
	 

  
	//For Testinomial 
	$("#testinomial-slider").owlCarousel({
		  autoPlay : true,
		  navigation : true,
		  slideSpeed : 250,
		  pagination : false,
		  navigationText :["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"],
		  singleItem:true
	
	 });

  
	//For Publication Section(Home Page)
    $("#publication-slider").owlCarousel({
		  autoPlay: true, 
		  pagination : false,
		  navigationText :["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"],
		  navigation : true,
		  items : 3,
		  itemsDesktop : [1199,3],
		  itemsDesktopSmall : [979,3]
 
  	});
  	//Paralax Page Slider
	var owl = $("#paralax-slider");
		owl.owlCarousel({
		autoPlay: 3000,
		navigation : false,
		singleItem : true,
		transitionStyle : "fade"
	});
    
  
	  // portfolio filtering
    $(".project-wrapper").mixItUp();
	 
	 
 	// Popup
   $(".fancybox").fancybox({
		openEffect : 'fade',
		closeClick : true,
		helpers : {
			media : {}
		}

    });
	 //Video Popup
	 $('.fancybox-media').fancybox({
		openEffect  : 'fade',
		closeEffect : 'none',
		helpers : {
			media : {}
		}
	});
	
	
	//Push Menu on click
	$('.toggle-menu').jPushMenu();
	  $(document).on('click', function () {
        $('.cbp-spmenu-right').removeClass('menu-open');
    });
    $('#menu-toggle').on('click', function (e) {
        e.stopPropagation();
        $('.cbp-spmenu-right').toggleClass('menu-open');
    });
    $('.cbp-spmenu-right').on('click', function (e) {
        e.stopPropagation();
    });

	//Parallax effects
	$('#bg-paralax ').parallax("50%", 0.3);
	$('#testinomial').parallax("50%", 0.2);
	$('.text-rotator').parallax("50%", 0.2);	 
	
	//Initiat WOW JS
	new WOW().init();

	if($("ul.blue-social").length ){
        $("ul.blue-social a").jqSocialSharer();
    }  
});
if(screen.width <720 ){ 
	$('div, img, input, textarea, button, a').removeClass('wow'); // to remove transition
}PK!6~�%�%�js/jquery.fancybox.jsnu&1i�/*!
 * fancyBox - jQuery Plugin
 * version: 2.1.5 (Fri, 14 Jun 2013)
 * @requires jQuery v1.6 or later
 *
 * Examples at http://fancyapps.com/fancybox/
 * License: www.fancyapps.com/fancybox/#license
 *
 * Copyright 2012 Janis Skarnelis - janis@fancyapps.com
 *
 */

(function (window, document, $, undefined) {
	"use strict";

	var H = $("html"),
		W = $(window),
		D = $(document),
		F = $.fancybox = function () {
			F.open.apply( this, arguments );
		},
		IE =  navigator.userAgent.match(/msie/i),
		didUpdate	= null,
		isTouch		= document.createTouch !== undefined,

		isQuery	= function(obj) {
			return obj && obj.hasOwnProperty && obj instanceof $;
		},
		isString = function(str) {
			return str && $.type(str) === "string";
		},
		isPercentage = function(str) {
			return isString(str) && str.indexOf('%') > 0;
		},
		isScrollable = function(el) {
			return (el && !(el.style.overflow && el.style.overflow === 'hidden') && ((el.clientWidth && el.scrollWidth > el.clientWidth) || (el.clientHeight && el.scrollHeight > el.clientHeight)));
		},
		getScalar = function(orig, dim) {
			var value = parseInt(orig, 10) || 0;

			if (dim && isPercentage(orig)) {
				value = F.getViewport()[ dim ] / 100 * value;
			}

			return Math.ceil(value);
		},
		getValue = function(value, dim) {
			return getScalar(value, dim) + 'px';
		};

	$.extend(F, {
		// The current version of fancyBox
		version: '2.1.5',

		defaults: {
			padding : 15,
			margin  : 20,

			width     : 800,
			height    : 600,
			minWidth  : 100,
			minHeight : 100,
			maxWidth  : 9999,
			maxHeight : 9999,
			pixelRatio: 1, // Set to 2 for retina display support

			autoSize   : true,
			autoHeight : false,
			autoWidth  : false,

			autoResize  : true,
			autoCenter  : !isTouch,
			fitToView   : true,
			aspectRatio : false,
			topRatio    : 0.5,
			leftRatio   : 0.5,

			scrolling : 'auto', // 'auto', 'yes' or 'no'
			wrapCSS   : '',

			arrows     : true,
			closeBtn   : true,
			closeClick : false,
			nextClick  : false,
			mouseWheel : true,
			autoPlay   : false,
			playSpeed  : 3000,
			preload    : 3,
			modal      : false,
			loop       : true,

			ajax  : {
				dataType : 'html',
				headers  : { 'X-fancyBox': true }
			},
			iframe : {
				scrolling : 'auto',
				preload   : true
			},
			swf : {
				wmode: 'transparent',
				allowfullscreen   : 'true',
				allowscriptaccess : 'always'
			},

			keys  : {
				next : {
					13 : 'left', // enter
					34 : 'up',   // page down
					39 : 'left', // right arrow
					40 : 'up'    // down arrow
				},
				prev : {
					8  : 'right',  // backspace
					33 : 'down',   // page up
					37 : 'right',  // left arrow
					38 : 'down'    // up arrow
				},
				close  : [27], // escape key
				play   : [32], // space - start/stop slideshow
				toggle : [70]  // letter "f" - toggle fullscreen
			},

			direction : {
				next : 'left',
				prev : 'right'
			},

			scrollOutside  : true,

			// Override some properties
			index   : 0,
			type    : null,
			href    : null,
			content : null,
			title   : null,

			// HTML templates
			tpl: {
				wrap     : '<div class="fancybox-wrap" tabIndex="-1"><div class="fancybox-skin"><div class="fancybox-outer"><div class="fancybox-inner"></div></div></div></div>',
				image    : '<img class="fancybox-image" src="{href}" alt="" />',
				iframe   : '<iframe id="fancybox-frame{rnd}" name="fancybox-frame{rnd}" class="fancybox-iframe" frameborder="0" vspace="0" hspace="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen' + (IE ? ' allowtransparency="true"' : '') + '></iframe>',
				error    : '<p class="fancybox-error">The requested content cannot be loaded.<br/>Please try again later.</p>',
				closeBtn : '<a title="Close" class="fancybox-item fancybox-close" href="javascript:;"></a>',
				next     : '<a title="Next" class="fancybox-nav fancybox-next" href="javascript:;"><span></span></a>',
				prev     : '<a title="Previous" class="fancybox-nav fancybox-prev" href="javascript:;"><span></span></a>'
			},

			// Properties for each animation type
			// Opening fancyBox
			openEffect  : 'fade', // 'elastic', 'fade' or 'none'
			openSpeed   : 250,
			openEasing  : 'swing',
			openOpacity : true,
			openMethod  : 'zoomIn',

			// Closing fancyBox
			closeEffect  : 'fade', // 'elastic', 'fade' or 'none'
			closeSpeed   : 250,
			closeEasing  : 'swing',
			closeOpacity : true,
			closeMethod  : 'zoomOut',

			// Changing next gallery item
			nextEffect : 'elastic', // 'elastic', 'fade' or 'none'
			nextSpeed  : 250,
			nextEasing : 'swing',
			nextMethod : 'changeIn',

			// Changing previous gallery item
			prevEffect : 'elastic', // 'elastic', 'fade' or 'none'
			prevSpeed  : 250,
			prevEasing : 'swing',
			prevMethod : 'changeOut',

			// Enable default helpers
			helpers : {
				overlay : true,
				title   : true
			},

			// Callbacks
			onCancel     : $.noop, // If canceling
			beforeLoad   : $.noop, // Before loading
			afterLoad    : $.noop, // After loading
			beforeShow   : $.noop, // Before changing in current item
			afterShow    : $.noop, // After opening
			beforeChange : $.noop, // Before changing gallery item
			beforeClose  : $.noop, // Before closing
			afterClose   : $.noop  // After closing
		},

		//Current state
		group    : {}, // Selected group
		opts     : {}, // Group options
		previous : null,  // Previous element
		coming   : null,  // Element being loaded
		current  : null,  // Currently loaded element
		isActive : false, // Is activated
		isOpen   : false, // Is currently open
		isOpened : false, // Have been fully opened at least once

		wrap  : null,
		skin  : null,
		outer : null,
		inner : null,

		player : {
			timer    : null,
			isActive : false
		},

		// Loaders
		ajaxLoad   : null,
		imgPreload : null,

		// Some collections
		transitions : {},
		helpers     : {},

		/*
		 *	Static methods
		 */

		open: function (group, opts) {
			if (!group) {
				return;
			}

			if (!$.isPlainObject(opts)) {
				opts = {};
			}

			// Close if already active
			if (false === F.close(true)) {
				return;
			}

			// Normalize group
			if (!$.isArray(group)) {
				group = isQuery(group) ? $(group).get() : [group];
			}

			// Recheck if the type of each element is `object` and set content type (image, ajax, etc)
			$.each(group, function(i, element) {
				var obj = {},
					href,
					title,
					content,
					type,
					rez,
					hrefParts,
					selector;

				if ($.type(element) === "object") {
					// Check if is DOM element
					if (element.nodeType) {
						element = $(element);
					}

					if (isQuery(element)) {
						obj = {
							href    : element.data('fancybox-href') || element.attr('href'),
							title   : element.data('fancybox-title') || element.attr('title'),
							isDom   : true,
							element : element
						};

						if ($.metadata) {
							$.extend(true, obj, element.metadata());
						}

					} else {
						obj = element;
					}
				}

				href  = opts.href  || obj.href || (isString(element) ? element : null);
				title = opts.title !== undefined ? opts.title : obj.title || '';

				content = opts.content || obj.content;
				type    = content ? 'html' : (opts.type  || obj.type);

				if (!type && obj.isDom) {
					type = element.data('fancybox-type');

					if (!type) {
						rez  = element.prop('class').match(/fancybox\.(\w+)/);
						type = rez ? rez[1] : null;
					}
				}

				if (isString(href)) {
					// Try to guess the content type
					if (!type) {
						if (F.isImage(href)) {
							type = 'image';

						} else if (F.isSWF(href)) {
							type = 'swf';

						} else if (href.charAt(0) === '#') {
							type = 'inline';

						} else if (isString(element)) {
							type    = 'html';
							content = element;
						}
					}

					// Split url into two pieces with source url and content selector, e.g,
					// "/mypage.html #my_id" will load "/mypage.html" and display element having id "my_id"
					if (type === 'ajax') {
						hrefParts = href.split(/\s+/, 2);
						href      = hrefParts.shift();
						selector  = hrefParts.shift();
					}
				}

				if (!content) {
					if (type === 'inline') {
						if (href) {
							content = $( isString(href) ? href.replace(/.*(?=#[^\s]+$)/, '') : href ); //strip for ie7

						} else if (obj.isDom) {
							content = element;
						}

					} else if (type === 'html') {
						content = href;

					} else if (!type && !href && obj.isDom) {
						type    = 'inline';
						content = element;
					}
				}

				$.extend(obj, {
					href     : href,
					type     : type,
					content  : content,
					title    : title,
					selector : selector
				});

				group[ i ] = obj;
			});

			// Extend the defaults
			F.opts = $.extend(true, {}, F.defaults, opts);

			// All options are merged recursive except keys
			if (opts.keys !== undefined) {
				F.opts.keys = opts.keys ? $.extend({}, F.defaults.keys, opts.keys) : false;
			}

			F.group = group;

			return F._start(F.opts.index);
		},

		// Cancel image loading or abort ajax request
		cancel: function () {
			var coming = F.coming;

			if (!coming || false === F.trigger('onCancel')) {
				return;
			}

			F.hideLoading();

			if (F.ajaxLoad) {
				F.ajaxLoad.abort();
			}

			F.ajaxLoad = null;

			if (F.imgPreload) {
				F.imgPreload.onload = F.imgPreload.onerror = null;
			}

			if (coming.wrap) {
				coming.wrap.stop(true, true).trigger('onReset').remove();
			}

			F.coming = null;

			// If the first item has been canceled, then clear everything
			if (!F.current) {
				F._afterZoomOut( coming );
			}
		},

		// Start closing animation if is open; remove immediately if opening/closing
		close: function (event) {
			F.cancel();

			if (false === F.trigger('beforeClose')) {
				return;
			}

			F.unbindEvents();

			if (!F.isActive) {
				return;
			}

			if (!F.isOpen || event === true) {
				$('.fancybox-wrap').stop(true).trigger('onReset').remove();

				F._afterZoomOut();

			} else {
				F.isOpen = F.isOpened = false;
				F.isClosing = true;

				$('.fancybox-item, .fancybox-nav').remove();

				F.wrap.stop(true, true).removeClass('fancybox-opened');

				F.transitions[ F.current.closeMethod ]();
			}
		},

		// Manage slideshow:
		//   $.fancybox.play(); - toggle slideshow
		//   $.fancybox.play( true ); - start
		//   $.fancybox.play( false ); - stop
		play: function ( action ) {
			var clear = function () {
					clearTimeout(F.player.timer);
				},
				set = function () {
					clear();

					if (F.current && F.player.isActive) {
						F.player.timer = setTimeout(F.next, F.current.playSpeed);
					}
				},
				stop = function () {
					clear();

					D.unbind('.player');

					F.player.isActive = false;

					F.trigger('onPlayEnd');
				},
				start = function () {
					if (F.current && (F.current.loop || F.current.index < F.group.length - 1)) {
						F.player.isActive = true;

						D.bind({
							'onCancel.player beforeClose.player' : stop,
							'onUpdate.player'   : set,
							'beforeLoad.player' : clear
						});

						set();

						F.trigger('onPlayStart');
					}
				};

			if (action === true || (!F.player.isActive && action !== false)) {
				start();
			} else {
				stop();
			}
		},

		// Navigate to next gallery item
		next: function ( direction ) {
			var current = F.current;

			if (current) {
				if (!isString(direction)) {
					direction = current.direction.next;
				}

				F.jumpto(current.index + 1, direction, 'next');
			}
		},

		// Navigate to previous gallery item
		prev: function ( direction ) {
			var current = F.current;

			if (current) {
				if (!isString(direction)) {
					direction = current.direction.prev;
				}

				F.jumpto(current.index - 1, direction, 'prev');
			}
		},

		// Navigate to gallery item by index
		jumpto: function ( index, direction, router ) {
			var current = F.current;

			if (!current) {
				return;
			}

			index = getScalar(index);

			F.direction = direction || current.direction[ (index >= current.index ? 'next' : 'prev') ];
			F.router    = router || 'jumpto';

			if (current.loop) {
				if (index < 0) {
					index = current.group.length + (index % current.group.length);
				}

				index = index % current.group.length;
			}

			if (current.group[ index ] !== undefined) {
				F.cancel();

				F._start(index);
			}
		},

		// Center inside viewport and toggle position type to fixed or absolute if needed
		reposition: function (e, onlyAbsolute) {
			var current = F.current,
				wrap    = current ? current.wrap : null,
				pos;

			if (wrap) {
				pos = F._getPosition(onlyAbsolute);

				if (e && e.type === 'scroll') {
					delete pos.position;

					wrap.stop(true, true).animate(pos, 200);

				} else {
					wrap.css(pos);

					current.pos = $.extend({}, current.dim, pos);
				}
			}
		},

		update: function (e) {
			var type = (e && e.type),
				anyway = !type || type === 'orientationchange';

			if (anyway) {
				clearTimeout(didUpdate);

				didUpdate = null;
			}

			if (!F.isOpen || didUpdate) {
				return;
			}

			didUpdate = setTimeout(function() {
				var current = F.current;

				if (!current || F.isClosing) {
					return;
				}

				F.wrap.removeClass('fancybox-tmp');

				if (anyway || type === 'load' || (type === 'resize' && current.autoResize)) {
					F._setDimension();
				}

				if (!(type === 'scroll' && current.canShrink)) {
					F.reposition(e);
				}

				F.trigger('onUpdate');

				didUpdate = null;

			}, (anyway && !isTouch ? 0 : 300));
		},

		// Shrink content to fit inside viewport or restore if resized
		toggle: function ( action ) {
			if (F.isOpen) {
				F.current.fitToView = $.type(action) === "boolean" ? action : !F.current.fitToView;

				// Help browser to restore document dimensions
				if (isTouch) {
					F.wrap.removeAttr('style').addClass('fancybox-tmp');

					F.trigger('onUpdate');
				}

				F.update();
			}
		},

		hideLoading: function () {
			D.unbind('.loading');

			$('#fancybox-loading').remove();
		},

		showLoading: function () {
			var el, viewport;

			F.hideLoading();

			el = $('<div id="fancybox-loading"><div></div></div>').click(F.cancel).appendTo('body');

			// If user will press the escape-button, the request will be canceled
			D.bind('keydown.loading', function(e) {
				if ((e.which || e.keyCode) === 27) {
					e.preventDefault();

					F.cancel();
				}
			});

			if (!F.defaults.fixed) {
				viewport = F.getViewport();

				el.css({
					position : 'absolute',
					top  : (viewport.h * 0.5) + viewport.y,
					left : (viewport.w * 0.5) + viewport.x
				});
			}
		},

		getViewport: function () {
			var locked = (F.current && F.current.locked) || false,
				rez    = {
					x: W.scrollLeft(),
					y: W.scrollTop()
				};

			if (locked) {
				rez.w = locked[0].clientWidth;
				rez.h = locked[0].clientHeight;

			} else {
				// See http://bugs.jquery.com/ticket/6724
				rez.w = isTouch && window.innerWidth  ? window.innerWidth  : W.width();
				rez.h = isTouch && window.innerHeight ? window.innerHeight : W.height();
			}

			return rez;
		},

		// Unbind the keyboard / clicking actions
		unbindEvents: function () {
			if (F.wrap && isQuery(F.wrap)) {
				F.wrap.unbind('.fb');
			}

			D.unbind('.fb');
			W.unbind('.fb');
		},

		bindEvents: function () {
			var current = F.current,
				keys;

			if (!current) {
				return;
			}

			// Changing document height on iOS devices triggers a 'resize' event,
			// that can change document height... repeating infinitely
			W.bind('orientationchange.fb' + (isTouch ? '' : ' resize.fb') + (current.autoCenter && !current.locked ? ' scroll.fb' : ''), F.update);

			keys = current.keys;

			if (keys) {
				D.bind('keydown.fb', function (e) {
					var code   = e.which || e.keyCode,
						target = e.target || e.srcElement;

					// Skip esc key if loading, because showLoading will cancel preloading
					if (code === 27 && F.coming) {
						return false;
					}

					// Ignore key combinations and key events within form elements
					if (!e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey && !(target && (target.type || $(target).is('[contenteditable]')))) {
						$.each(keys, function(i, val) {
							if (current.group.length > 1 && val[ code ] !== undefined) {
								F[ i ]( val[ code ] );

								e.preventDefault();
								return false;
							}

							if ($.inArray(code, val) > -1) {
								F[ i ] ();

								e.preventDefault();
								return false;
							}
						});
					}
				});
			}

			if ($.fn.mousewheel && current.mouseWheel) {
				F.wrap.bind('mousewheel.fb', function (e, delta, deltaX, deltaY) {
					var target = e.target || null,
						parent = $(target),
						canScroll = false;

					while (parent.length) {
						if (canScroll || parent.is('.fancybox-skin') || parent.is('.fancybox-wrap')) {
							break;
						}

						canScroll = isScrollable( parent[0] );
						parent    = $(parent).parent();
					}

					if (delta !== 0 && !canScroll) {
						if (F.group.length > 1 && !current.canShrink) {
							if (deltaY > 0 || deltaX > 0) {
								F.prev( deltaY > 0 ? 'down' : 'left' );

							} else if (deltaY < 0 || deltaX < 0) {
								F.next( deltaY < 0 ? 'up' : 'right' );
							}

							e.preventDefault();
						}
					}
				});
			}
		},

		trigger: function (event, o) {
			var ret, obj = o || F.coming || F.current;

			if (!obj) {
				return;
			}

			if ($.isFunction( obj[event] )) {
				ret = obj[event].apply(obj, Array.prototype.slice.call(arguments, 1));
			}

			if (ret === false) {
				return false;
			}

			if (obj.helpers) {
				$.each(obj.helpers, function (helper, opts) {
					if (opts && F.helpers[helper] && $.isFunction(F.helpers[helper][event])) {
						F.helpers[helper][event]($.extend(true, {}, F.helpers[helper].defaults, opts), obj);
					}
				});
			}

			D.trigger(event);
		},

		isImage: function (str) {
			return isString(str) && str.match(/(^data:image\/.*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\?|#).*)?$)/i);
		},

		isSWF: function (str) {
			return isString(str) && str.match(/\.(swf)((\?|#).*)?$/i);
		},

		_start: function (index) {
			var coming = {},
				obj,
				href,
				type,
				margin,
				padding;

			index = getScalar( index );
			obj   = F.group[ index ] || null;

			if (!obj) {
				return false;
			}

			coming = $.extend(true, {}, F.opts, obj);

			// Convert margin and padding properties to array - top, right, bottom, left
			margin  = coming.margin;
			padding = coming.padding;

			if ($.type(margin) === 'number') {
				coming.margin = [margin, margin, margin, margin];
			}

			if ($.type(padding) === 'number') {
				coming.padding = [padding, padding, padding, padding];
			}

			// 'modal' propery is just a shortcut
			if (coming.modal) {
				$.extend(true, coming, {
					closeBtn   : false,
					closeClick : false,
					nextClick  : false,
					arrows     : false,
					mouseWheel : false,
					keys       : null,
					helpers: {
						overlay : {
							closeClick : false
						}
					}
				});
			}

			// 'autoSize' property is a shortcut, too
			if (coming.autoSize) {
				coming.autoWidth = coming.autoHeight = true;
			}

			if (coming.width === 'auto') {
				coming.autoWidth = true;
			}

			if (coming.height === 'auto') {
				coming.autoHeight = true;
			}

			/*
			 * Add reference to the group, so it`s possible to access from callbacks, example:
			 * afterLoad : function() {
			 *     this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
			 * }
			 */

			coming.group  = F.group;
			coming.index  = index;

			// Give a chance for callback or helpers to update coming item (type, title, etc)
			F.coming = coming;

			if (false === F.trigger('beforeLoad')) {
				F.coming = null;

				return;
			}

			type = coming.type;
			href = coming.href;

			if (!type) {
				F.coming = null;

				//If we can not determine content type then drop silently or display next/prev item if looping through gallery
				if (F.current && F.router && F.router !== 'jumpto') {
					F.current.index = index;

					return F[ F.router ]( F.direction );
				}

				return false;
			}

			F.isActive = true;

			if (type === 'image' || type === 'swf') {
				coming.autoHeight = coming.autoWidth = false;
				coming.scrolling  = 'visible';
			}

			if (type === 'image') {
				coming.aspectRatio = true;
			}

			if (type === 'iframe' && isTouch) {
				coming.scrolling = 'scroll';
			}

			// Build the neccessary markup
			coming.wrap = $(coming.tpl.wrap).addClass('fancybox-' + (isTouch ? 'mobile' : 'desktop') + ' fancybox-type-' + type + ' fancybox-tmp ' + coming.wrapCSS).appendTo( coming.parent || 'body' );

			$.extend(coming, {
				skin  : $('.fancybox-skin',  coming.wrap),
				outer : $('.fancybox-outer', coming.wrap),
				inner : $('.fancybox-inner', coming.wrap)
			});

			$.each(["Top", "Right", "Bottom", "Left"], function(i, v) {
				coming.skin.css('padding' + v, getValue(coming.padding[ i ]));
			});

			F.trigger('onReady');

			// Check before try to load; 'inline' and 'html' types need content, others - href
			if (type === 'inline' || type === 'html') {
				if (!coming.content || !coming.content.length) {
					return F._error( 'content' );
				}

			} else if (!href) {
				return F._error( 'href' );
			}

			if (type === 'image') {
				F._loadImage();

			} else if (type === 'ajax') {
				F._loadAjax();

			} else if (type === 'iframe') {
				F._loadIframe();

			} else {
				F._afterLoad();
			}
		},

		_error: function ( type ) {
			$.extend(F.coming, {
				type       : 'html',
				autoWidth  : true,
				autoHeight : true,
				minWidth   : 0,
				minHeight  : 0,
				scrolling  : 'no',
				hasError   : type,
				content    : F.coming.tpl.error
			});

			F._afterLoad();
		},

		_loadImage: function () {
			// Reset preload image so it is later possible to check "complete" property
			var img = F.imgPreload = new Image();

			img.onload = function () {
				this.onload = this.onerror = null;

				F.coming.width  = this.width / F.opts.pixelRatio;
				F.coming.height = this.height / F.opts.pixelRatio;

				F._afterLoad();
			};

			img.onerror = function () {
				this.onload = this.onerror = null;

				F._error( 'image' );
			};

			img.src = F.coming.href;

			if (img.complete !== true) {
				F.showLoading();
			}
		},

		_loadAjax: function () {
			var coming = F.coming;

			F.showLoading();

			F.ajaxLoad = $.ajax($.extend({}, coming.ajax, {
				url: coming.href,
				error: function (jqXHR, textStatus) {
					if (F.coming && textStatus !== 'abort') {
						F._error( 'ajax', jqXHR );

					} else {
						F.hideLoading();
					}
				},
				success: function (data, textStatus) {
					if (textStatus === 'success') {
						coming.content = data;

						F._afterLoad();
					}
				}
			}));
		},

		_loadIframe: function() {
			var coming = F.coming,
				iframe = $(coming.tpl.iframe.replace(/\{rnd\}/g, new Date().getTime()))
					.attr('scrolling', isTouch ? 'auto' : coming.iframe.scrolling)
					.attr('src', coming.href);

			// This helps IE
			$(coming.wrap).bind('onReset', function () {
				try {
					$(this).find('iframe').hide().attr('src', '//about:blank').end().empty();
				} catch (e) {}
			});

			if (coming.iframe.preload) {
				F.showLoading();

				iframe.one('load', function() {
					$(this).data('ready', 1);

					// iOS will lose scrolling if we resize
					if (!isTouch) {
						$(this).bind('load.fb', F.update);
					}

					// Without this trick:
					//   - iframe won't scroll on iOS devices
					//   - IE7 sometimes displays empty iframe
					$(this).parents('.fancybox-wrap').width('100%').removeClass('fancybox-tmp').show();

					F._afterLoad();
				});
			}

			coming.content = iframe.appendTo( coming.inner );

			if (!coming.iframe.preload) {
				F._afterLoad();
			}
		},

		_preloadImages: function() {
			var group   = F.group,
				current = F.current,
				len     = group.length,
				cnt     = current.preload ? Math.min(current.preload, len - 1) : 0,
				item,
				i;

			for (i = 1; i <= cnt; i += 1) {
				item = group[ (current.index + i ) % len ];

				if (item.type === 'image' && item.href) {
					new Image().src = item.href;
				}
			}
		},

		_afterLoad: function () {
			var coming   = F.coming,
				previous = F.current,
				placeholder = 'fancybox-placeholder',
				current,
				content,
				type,
				scrolling,
				href,
				embed;

			F.hideLoading();

			if (!coming || F.isActive === false) {
				return;
			}

			if (false === F.trigger('afterLoad', coming, previous)) {
				coming.wrap.stop(true).trigger('onReset').remove();

				F.coming = null;

				return;
			}

			if (previous) {
				F.trigger('beforeChange', previous);

				previous.wrap.stop(true).removeClass('fancybox-opened')
					.find('.fancybox-item, .fancybox-nav')
					.remove();
			}

			F.unbindEvents();

			current   = coming;
			content   = coming.content;
			type      = coming.type;
			scrolling = coming.scrolling;

			$.extend(F, {
				wrap  : current.wrap,
				skin  : current.skin,
				outer : current.outer,
				inner : current.inner,
				current  : current,
				previous : previous
			});

			href = current.href;

			switch (type) {
				case 'inline':
				case 'ajax':
				case 'html':
					if (current.selector) {
						content = $('<div>').html(content).find(current.selector);

					} else if (isQuery(content)) {
						if (!content.data(placeholder)) {
							content.data(placeholder, $('<div class="' + placeholder + '"></div>').insertAfter( content ).hide() );
						}

						content = content.show().detach();

						current.wrap.bind('onReset', function () {
							if ($(this).find(content).length) {
								content.hide().replaceAll( content.data(placeholder) ).data(placeholder, false);
							}
						});
					}
				break;

				case 'image':
					content = current.tpl.image.replace('{href}', href);
				break;

				case 'swf':
					content = '<object id="fancybox-swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"><param name="movie" value="' + href + '"></param>';
					embed   = '';

					$.each(current.swf, function(name, val) {
						content += '<param name="' + name + '" value="' + val + '"></param>';
						embed   += ' ' + name + '="' + val + '"';
					});

					content += '<embed src="' + href + '" type="application/x-shockwave-flash" width="100%" height="100%"' + embed + '></embed></object>';
				break;
			}

			if (!(isQuery(content) && content.parent().is(current.inner))) {
				current.inner.append( content );
			}

			// Give a chance for helpers or callbacks to update elements
			F.trigger('beforeShow');

			// Set scrolling before calculating dimensions
			current.inner.css('overflow', scrolling === 'yes' ? 'scroll' : (scrolling === 'no' ? 'hidden' : scrolling));

			// Set initial dimensions and start position
			F._setDimension();

			F.reposition();

			F.isOpen = false;
			F.coming = null;

			F.bindEvents();

			if (!F.isOpened) {
				$('.fancybox-wrap').not( current.wrap ).stop(true).trigger('onReset').remove();

			} else if (previous.prevMethod) {
				F.transitions[ previous.prevMethod ]();
			}

			F.transitions[ F.isOpened ? current.nextMethod : current.openMethod ]();

			F._preloadImages();
		},

		_setDimension: function () {
			var viewport   = F.getViewport(),
				steps      = 0,
				canShrink  = false,
				canExpand  = false,
				wrap       = F.wrap,
				skin       = F.skin,
				inner      = F.inner,
				current    = F.current,
				width      = current.width,
				height     = current.height,
				minWidth   = current.minWidth,
				minHeight  = current.minHeight,
				maxWidth   = current.maxWidth,
				maxHeight  = current.maxHeight,
				scrolling  = current.scrolling,
				scrollOut  = current.scrollOutside ? current.scrollbarWidth : 0,
				margin     = current.margin,
				wMargin    = getScalar(margin[1] + margin[3]),
				hMargin    = getScalar(margin[0] + margin[2]),
				wPadding,
				hPadding,
				wSpace,
				hSpace,
				origWidth,
				origHeight,
				origMaxWidth,
				origMaxHeight,
				ratio,
				width_,
				height_,
				maxWidth_,
				maxHeight_,
				iframe,
				body;

			// Reset dimensions so we could re-check actual size
			wrap.add(skin).add(inner).width('auto').height('auto').removeClass('fancybox-tmp');

			wPadding = getScalar(skin.outerWidth(true)  - skin.width());
			hPadding = getScalar(skin.outerHeight(true) - skin.height());

			// Any space between content and viewport (margin, padding, border, title)
			wSpace = wMargin + wPadding;
			hSpace = hMargin + hPadding;

			origWidth  = isPercentage(width)  ? (viewport.w - wSpace) * getScalar(width)  / 100 : width;
			origHeight = isPercentage(height) ? (viewport.h - hSpace) * getScalar(height) / 100 : height;

			if (current.type === 'iframe') {
				iframe = current.content;

				if (current.autoHeight && iframe.data('ready') === 1) {
					try {
						if (iframe[0].contentWindow.document.location) {
							inner.width( origWidth ).height(9999);

							body = iframe.contents().find('body');

							if (scrollOut) {
								body.css('overflow-x', 'hidden');
							}

							origHeight = body.outerHeight(true);
						}

					} catch (e) {}
				}

			} else if (current.autoWidth || current.autoHeight) {
				inner.addClass( 'fancybox-tmp' );

				// Set width or height in case we need to calculate only one dimension
				if (!current.autoWidth) {
					inner.width( origWidth );
				}

				if (!current.autoHeight) {
					inner.height( origHeight );
				}

				if (current.autoWidth) {
					origWidth = inner.width();
				}

				if (current.autoHeight) {
					origHeight = inner.height();
				}

				inner.removeClass( 'fancybox-tmp' );
			}

			width  = getScalar( origWidth );
			height = getScalar( origHeight );

			ratio  = origWidth / origHeight;

			// Calculations for the content
			minWidth  = getScalar(isPercentage(minWidth) ? getScalar(minWidth, 'w') - wSpace : minWidth);
			maxWidth  = getScalar(isPercentage(maxWidth) ? getScalar(maxWidth, 'w') - wSpace : maxWidth);

			minHeight = getScalar(isPercentage(minHeight) ? getScalar(minHeight, 'h') - hSpace : minHeight);
			maxHeight = getScalar(isPercentage(maxHeight) ? getScalar(maxHeight, 'h') - hSpace : maxHeight);

			// These will be used to determine if wrap can fit in the viewport
			origMaxWidth  = maxWidth;
			origMaxHeight = maxHeight;

			if (current.fitToView) {
				maxWidth  = Math.min(viewport.w - wSpace, maxWidth);
				maxHeight = Math.min(viewport.h - hSpace, maxHeight);
			}

			maxWidth_  = viewport.w - wMargin;
			maxHeight_ = viewport.h - hMargin;

			if (current.aspectRatio) {
				if (width > maxWidth) {
					width  = maxWidth;
					height = getScalar(width / ratio);
				}

				if (height > maxHeight) {
					height = maxHeight;
					width  = getScalar(height * ratio);
				}

				if (width < minWidth) {
					width  = minWidth;
					height = getScalar(width / ratio);
				}

				if (height < minHeight) {
					height = minHeight;
					width  = getScalar(height * ratio);
				}

			} else {
				width = Math.max(minWidth, Math.min(width, maxWidth));

				if (current.autoHeight && current.type !== 'iframe') {
					inner.width( width );

					height = inner.height();
				}

				height = Math.max(minHeight, Math.min(height, maxHeight));
			}

			// Try to fit inside viewport (including the title)
			if (current.fitToView) {
				inner.width( width ).height( height );

				wrap.width( width + wPadding );

				// Real wrap dimensions
				width_  = wrap.width();
				height_ = wrap.height();

				if (current.aspectRatio) {
					while ((width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight) {
						if (steps++ > 19) {
							break;
						}

						height = Math.max(minHeight, Math.min(maxHeight, height - 10));
						width  = getScalar(height * ratio);

						if (width < minWidth) {
							width  = minWidth;
							height = getScalar(width / ratio);
						}

						if (width > maxWidth) {
							width  = maxWidth;
							height = getScalar(width / ratio);
						}

						inner.width( width ).height( height );

						wrap.width( width + wPadding );

						width_  = wrap.width();
						height_ = wrap.height();
					}

				} else {
					width  = Math.max(minWidth,  Math.min(width,  width  - (width_  - maxWidth_)));
					height = Math.max(minHeight, Math.min(height, height - (height_ - maxHeight_)));
				}
			}

			if (scrollOut && scrolling === 'auto' && height < origHeight && (width + wPadding + scrollOut) < maxWidth_) {
				width += scrollOut;
			}

			inner.width( width ).height( height );

			wrap.width( width + wPadding );

			width_  = wrap.width();
			height_ = wrap.height();

			canShrink = (width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight;
			canExpand = current.aspectRatio ? (width < origMaxWidth && height < origMaxHeight && width < origWidth && height < origHeight) : ((width < origMaxWidth || height < origMaxHeight) && (width < origWidth || height < origHeight));

			$.extend(current, {
				dim : {
					width	: getValue( width_ ),
					height	: getValue( height_ )
				},
				origWidth  : origWidth,
				origHeight : origHeight,
				canShrink  : canShrink,
				canExpand  : canExpand,
				wPadding   : wPadding,
				hPadding   : hPadding,
				wrapSpace  : height_ - skin.outerHeight(true),
				skinSpace  : skin.height() - height
			});

			if (!iframe && current.autoHeight && height > minHeight && height < maxHeight && !canExpand) {
				inner.height('auto');
			}
		},

		_getPosition: function (onlyAbsolute) {
			var current  = F.current,
				viewport = F.getViewport(),
				margin   = current.margin,
				width    = F.wrap.width()  + margin[1] + margin[3],
				height   = F.wrap.height() + margin[0] + margin[2],
				rez      = {
					position: 'absolute',
					top  : margin[0],
					left : margin[3]
				};

			if (current.autoCenter && current.fixed && !onlyAbsolute && height <= viewport.h && width <= viewport.w) {
				rez.position = 'fixed';

			} else if (!current.locked) {
				rez.top  += viewport.y;
				rez.left += viewport.x;
			}

			rez.top  = getValue(Math.max(rez.top,  rez.top  + ((viewport.h - height) * current.topRatio)));
			rez.left = getValue(Math.max(rez.left, rez.left + ((viewport.w - width)  * current.leftRatio)));

			return rez;
		},

		_afterZoomIn: function () {
			var current = F.current;

			if (!current) {
				return;
			}

			F.isOpen = F.isOpened = true;

			F.wrap.css('overflow', 'visible').addClass('fancybox-opened');

			F.update();

			// Assign a click event
			if ( current.closeClick || (current.nextClick && F.group.length > 1) ) {
				F.inner.css('cursor', 'pointer').bind('click.fb', function(e) {
					if (!$(e.target).is('a') && !$(e.target).parent().is('a')) {
						e.preventDefault();

						F[ current.closeClick ? 'close' : 'next' ]();
					}
				});
			}

			// Create a close button
			if (current.closeBtn) {
				$(current.tpl.closeBtn).appendTo(F.skin).bind('click.fb', function(e) {
					e.preventDefault();

					F.close();
				});
			}

			// Create navigation arrows
			if (current.arrows && F.group.length > 1) {
				if (current.loop || current.index > 0) {
					$(current.tpl.prev).appendTo(F.outer).bind('click.fb', F.prev);
				}

				if (current.loop || current.index < F.group.length - 1) {
					$(current.tpl.next).appendTo(F.outer).bind('click.fb', F.next);
				}
			}

			F.trigger('afterShow');

			// Stop the slideshow if this is the last item
			if (!current.loop && current.index === current.group.length - 1) {
				F.play( false );

			} else if (F.opts.autoPlay && !F.player.isActive) {
				F.opts.autoPlay = false;

				F.play();
			}
		},

		_afterZoomOut: function ( obj ) {
			obj = obj || F.current;

			$('.fancybox-wrap').trigger('onReset').remove();

			$.extend(F, {
				group  : {},
				opts   : {},
				router : false,
				current   : null,
				isActive  : false,
				isOpened  : false,
				isOpen    : false,
				isClosing : false,
				wrap   : null,
				skin   : null,
				outer  : null,
				inner  : null
			});

			F.trigger('afterClose', obj);
		}
	});

	/*
	 *	Default transitions
	 */

	F.transitions = {
		getOrigPosition: function () {
			var current  = F.current,
				element  = current.element,
				orig     = current.orig,
				pos      = {},
				width    = 50,
				height   = 50,
				hPadding = current.hPadding,
				wPadding = current.wPadding,
				viewport = F.getViewport();

			if (!orig && current.isDom && element.is(':visible')) {
				orig = element.find('img:first');

				if (!orig.length) {
					orig = element;
				}
			}

			if (isQuery(orig)) {
				pos = orig.offset();

				if (orig.is('img')) {
					width  = orig.outerWidth();
					height = orig.outerHeight();
				}

			} else {
				pos.top  = viewport.y + (viewport.h - height) * current.topRatio;
				pos.left = viewport.x + (viewport.w - width)  * current.leftRatio;
			}

			if (F.wrap.css('position') === 'fixed' || current.locked) {
				pos.top  -= viewport.y;
				pos.left -= viewport.x;
			}

			pos = {
				top     : getValue(pos.top  - hPadding * current.topRatio),
				left    : getValue(pos.left - wPadding * current.leftRatio),
				width   : getValue(width  + wPadding),
				height  : getValue(height + hPadding)
			};

			return pos;
		},

		step: function (now, fx) {
			var ratio,
				padding,
				value,
				prop       = fx.prop,
				current    = F.current,
				wrapSpace  = current.wrapSpace,
				skinSpace  = current.skinSpace;

			if (prop === 'width' || prop === 'height') {
				ratio = fx.end === fx.start ? 1 : (now - fx.start) / (fx.end - fx.start);

				if (F.isClosing) {
					ratio = 1 - ratio;
				}

				padding = prop === 'width' ? current.wPadding : current.hPadding;
				value   = now - padding;

				F.skin[ prop ](  getScalar( prop === 'width' ?  value : value - (wrapSpace * ratio) ) );
				F.inner[ prop ]( getScalar( prop === 'width' ?  value : value - (wrapSpace * ratio) - (skinSpace * ratio) ) );
			}
		},

		zoomIn: function () {
			var current  = F.current,
				startPos = current.pos,
				effect   = current.openEffect,
				elastic  = effect === 'elastic',
				endPos   = $.extend({opacity : 1}, startPos);

			// Remove "position" property that breaks older IE
			delete endPos.position;

			if (elastic) {
				startPos = this.getOrigPosition();

				if (current.openOpacity) {
					startPos.opacity = 0.1;
				}

			} else if (effect === 'fade') {
				startPos.opacity = 0.1;
			}

			F.wrap.css(startPos).animate(endPos, {
				duration : effect === 'none' ? 0 : current.openSpeed,
				easing   : current.openEasing,
				step     : elastic ? this.step : null,
				complete : F._afterZoomIn
			});
		},

		zoomOut: function () {
			var current  = F.current,
				effect   = current.closeEffect,
				elastic  = effect === 'elastic',
				endPos   = {opacity : 0.1};

			if (elastic) {
				endPos = this.getOrigPosition();

				if (current.closeOpacity) {
					endPos.opacity = 0.1;
				}
			}

			F.wrap.animate(endPos, {
				duration : effect === 'none' ? 0 : current.closeSpeed,
				easing   : current.closeEasing,
				step     : elastic ? this.step : null,
				complete : F._afterZoomOut
			});
		},

		changeIn: function () {
			var current   = F.current,
				effect    = current.nextEffect,
				startPos  = current.pos,
				endPos    = { opacity : 1 },
				direction = F.direction,
				distance  = 200,
				field;

			startPos.opacity = 0.1;

			if (effect === 'elastic') {
				field = direction === 'down' || direction === 'up' ? 'top' : 'left';

				if (direction === 'down' || direction === 'right') {
					startPos[ field ] = getValue(getScalar(startPos[ field ]) - distance);
					endPos[ field ]   = '+=' + distance + 'px';

				} else {
					startPos[ field ] = getValue(getScalar(startPos[ field ]) + distance);
					endPos[ field ]   = '-=' + distance + 'px';
				}
			}

			// Workaround for http://bugs.jquery.com/ticket/12273
			if (effect === 'none') {
				F._afterZoomIn();

			} else {
				F.wrap.css(startPos).animate(endPos, {
					duration : current.nextSpeed,
					easing   : current.nextEasing,
					complete : F._afterZoomIn
				});
			}
		},

		changeOut: function () {
			var previous  = F.previous,
				effect    = previous.prevEffect,
				endPos    = { opacity : 0.1 },
				direction = F.direction,
				distance  = 200;

			if (effect === 'elastic') {
				endPos[ direction === 'down' || direction === 'up' ? 'top' : 'left' ] = ( direction === 'up' || direction === 'left' ? '-' : '+' ) + '=' + distance + 'px';
			}

			previous.wrap.animate(endPos, {
				duration : effect === 'none' ? 0 : previous.prevSpeed,
				easing   : previous.prevEasing,
				complete : function () {
					$(this).trigger('onReset').remove();
				}
			});
		}
	};

	/*
	 *	Overlay helper
	 */

	F.helpers.overlay = {
		defaults : {
			closeClick : true,      // if true, fancyBox will be closed when user clicks on the overlay
			speedOut   : 200,       // duration of fadeOut animation
			showEarly  : true,      // indicates if should be opened immediately or wait until the content is ready
			css        : {},        // custom CSS properties
			locked     : !isTouch,  // if true, the content will be locked into overlay
			fixed      : true       // if false, the overlay CSS position property will not be set to "fixed"
		},

		overlay : null,      // current handle
		fixed   : false,     // indicates if the overlay has position "fixed"
		el      : $('html'), // element that contains "the lock"

		// Public methods
		create : function(opts) {
			opts = $.extend({}, this.defaults, opts);

			if (this.overlay) {
				this.close();
			}

			this.overlay = $('<div class="fancybox-overlay"></div>').appendTo( F.coming ? F.coming.parent : opts.parent );
			this.fixed   = false;

			if (opts.fixed && F.defaults.fixed) {
				this.overlay.addClass('fancybox-overlay-fixed');

				this.fixed = true;
			}
		},

		open : function(opts) {
			var that = this;

			opts = $.extend({}, this.defaults, opts);

			if (this.overlay) {
				this.overlay.unbind('.overlay').width('auto').height('auto');

			} else {
				this.create(opts);
			}

			if (!this.fixed) {
				W.bind('resize.overlay', $.proxy( this.update, this) );

				this.update();
			}

			if (opts.closeClick) {
				this.overlay.bind('click.overlay', function(e) {
					if ($(e.target).hasClass('fancybox-overlay')) {
						if (F.isActive) {
							F.close();
						} else {
							that.close();
						}

						return false;
					}
				});
			}

			this.overlay.css( opts.css ).show();
		},

		close : function() {
			var scrollV, scrollH;

			W.unbind('resize.overlay');

			if (this.el.hasClass('fancybox-lock')) {
				$('.fancybox-margin').removeClass('fancybox-margin');

				scrollV = W.scrollTop();
				scrollH = W.scrollLeft();

				this.el.removeClass('fancybox-lock');

				W.scrollTop( scrollV ).scrollLeft( scrollH );
			}

			$('.fancybox-overlay').remove().hide();

			$.extend(this, {
				overlay : null,
				fixed   : false
			});
		},

		// Private, callbacks

		update : function () {
			var width = '100%', offsetWidth;

			// Reset width/height so it will not mess
			this.overlay.width(width).height('100%');

			// jQuery does not return reliable result for IE
			if (IE) {
				offsetWidth = Math.max(document.documentElement.offsetWidth, document.body.offsetWidth);

				if (D.width() > offsetWidth) {
					width = D.width();
				}

			} else if (D.width() > W.width()) {
				width = D.width();
			}

			this.overlay.width(width).height(D.height());
		},

		// This is where we can manipulate DOM, because later it would cause iframes to reload
		onReady : function (opts, obj) {
			var overlay = this.overlay;

			$('.fancybox-overlay').stop(true, true);

			if (!overlay) {
				this.create(opts);
			}

			if (opts.locked && this.fixed && obj.fixed) {
				if (!overlay) {
					this.margin = D.height() > W.height() ? $('html').css('margin-right').replace("px", "") : false;
				}

				obj.locked = this.overlay.append( obj.wrap );
				obj.fixed  = false;
			}

			if (opts.showEarly === true) {
				this.beforeShow.apply(this, arguments);
			}
		},

		beforeShow : function(opts, obj) {
			var scrollV, scrollH;

			if (obj.locked) {
				if (this.margin !== false) {
					$('*').filter(function(){
						return ($(this).css('position') === 'fixed' && !$(this).hasClass("fancybox-overlay") && !$(this).hasClass("fancybox-wrap") );
					}).addClass('fancybox-margin');

					this.el.addClass('fancybox-margin');
				}

				scrollV = W.scrollTop();
				scrollH = W.scrollLeft();

				this.el.addClass('fancybox-lock');

				W.scrollTop( scrollV ).scrollLeft( scrollH );
			}

			this.open(opts);
		},

		onUpdate : function() {
			if (!this.fixed) {
				this.update();
			}
		},

		afterClose: function (opts) {
			// Remove overlay if exists and fancyBox is not opening
			// (e.g., it is not being open using afterClose callback)
			//if (this.overlay && !F.isActive) {
			if (this.overlay && !F.coming) {
				this.overlay.fadeOut(opts.speedOut, $.proxy( this.close, this ));
			}
		}
	};

	/*
	 *	Title helper
	 */

	F.helpers.title = {
		defaults : {
			type     : 'float', // 'float', 'inside', 'outside' or 'over',
			position : 'bottom' // 'top' or 'bottom'
		},

		beforeShow: function (opts) {
			var current = F.current,
				text    = current.title,
				type    = opts.type,
				title,
				target;

			if ($.isFunction(text)) {
				text = text.call(current.element, current);
			}

			if (!isString(text) || $.trim(text) === '') {
				return;
			}

			title = $('<div class="fancybox-title fancybox-title-' + type + '-wrap">' + text + '</div>');

			switch (type) {
				case 'inside':
					target = F.skin;
				break;

				case 'outside':
					target = F.wrap;
				break;

				case 'over':
					target = F.inner;
				break;

				default: // 'float'
					target = F.skin;

					title.appendTo('body');

					if (IE) {
						title.width( title.width() );
					}

					title.wrapInner('<span class="child"></span>');

					//Increase bottom margin so this title will also fit into viewport
					F.current.margin[2] += Math.abs( getScalar(title.css('margin-bottom')) );
				break;
			}

			title[ (opts.position === 'top' ? 'prependTo'  : 'appendTo') ](target);
		}
	};

	// jQuery plugin initialization
	$.fn.fancybox = function (options) {
		var index,
			that     = $(this),
			selector = this.selector || '',
			run      = function(e) {
				var what = $(this).blur(), idx = index, relType, relVal;

				if (!(e.ctrlKey || e.altKey || e.shiftKey || e.metaKey) && !what.is('.fancybox-wrap')) {
					relType = options.groupAttr || 'data-fancybox-group';
					relVal  = what.attr(relType);

					if (!relVal) {
						relType = 'rel';
						relVal  = what.get(0)[ relType ];
					}

					if (relVal && relVal !== '' && relVal !== 'nofollow') {
						what = selector.length ? $(selector) : that;
						what = what.filter('[' + relType + '="' + relVal + '"]');
						idx  = what.index(this);
					}

					options.index = idx;

					// Stop an event from bubbling if everything is fine
					if (F.open(what, options) !== false) {
						e.preventDefault();
					}
				}
			};

		options = options || {};
		index   = options.index || 0;

		if (!selector || options.live === false) {
			that.unbind('click.fb-start').bind('click.fb-start', run);

		} else {
			D.undelegate(selector, 'click.fb-start').delegate(selector + ":not('.fancybox-item, .fancybox-nav')", 'click.fb-start', run);
		}

		this.filter('[data-fancybox-start=1]').trigger('click');

		return this;
	};

	// Tests that need a body at doc ready
	D.ready(function() {
		var w1, w2;

		if ( $.scrollbarWidth === undefined ) {
			// http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth
			$.scrollbarWidth = function() {
				var parent = $('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body'),
					child  = parent.children(),
					width  = child.innerWidth() - child.height( 99 ).innerWidth();

				parent.remove();

				return width;
			};
		}

		if ( $.support.fixedPosition === undefined ) {
			$.support.fixedPosition = (function() {
				var elem  = $('<div style="position:fixed;top:20px;"></div>').appendTo('body'),
					fixed = ( elem[0].offsetTop === 20 || elem[0].offsetTop === 15 );

				elem.remove();

				return fixed;
			}());
		}

		$.extend(F.defaults, {
			scrollbarWidth : $.scrollbarWidth(),
			fixed  : $.support.fixedPosition,
			parent : $('body')
		});

		//Get real width of page scroll-bar
		w1 = $(window).width();

		H.addClass('fancybox-lock-test');

		w2 = $(window).width();

		H.removeClass('fancybox-lock-test');

		$("<style type='text/css'>.fancybox-margin{margin-right:" + (w2 - w1) + "px;}</style>").appendTo("head");
	});

}(window, document, jQuery));PK!f���%�%js/jquery.circliful.jsnu&1i�"use strict";

(function ($) {

    $.fn.circliful = function (options, callback) {

        var settings = $.extend({
            // These are the defaults.
            startdegree: 0,
            fgcolor: "#556b2f",
            bgcolor: "#eee",
            fill: false,
            width: 15,
            dimension: 200,
            fontsize: 15,
            percent: 50,
            animationstep: 1.0,
            iconsize: '20px',
            iconcolor: '#999',
            border: 'default',
            complete: null,
            bordersize: 10,
            delay: 0
        }, options);

        return this.each(function () {

            var customSettings = ["fgcolor", "bgcolor", "fill", "width", "dimension", "fontsize", "animationstep", "endPercent", "icon", "iconcolor", "iconsize", "border", "startdegree", "bordersize", "delay"];

            var customSettingsObj = {};
            var icon = '';
            var percent;
            var obj = $(this);
            var fill = false;
            var text, info;

            obj.addClass('circliful');

            checkDataAttributes(obj);

            var endPercent = customSettingsObj.endPercent || 0.0;

            if (obj.data('text') != undefined) {
                text = obj.data('text');

                if (obj.data('icon') != undefined) {
                    icon = $('<i></i>')
                        .addClass('fa ' + $(this).data('icon'))
                        .css({
                            'color': customSettingsObj.iconcolor,
                            'font-size': customSettingsObj.iconsize
                        });
                }

                if (obj.data('type') != undefined) {
                    type = $(this).data('type');

                    if (type == 'half') {
                        addCircleText(obj, 'circle-text-half', (customSettingsObj.dimension / 1.45));
                    } else {
                        addCircleText(obj, 'circle-text', customSettingsObj.dimension);
                    }
                } else {
                    addCircleText(obj, 'circle-text', customSettingsObj.dimension);
                }
            }

            if ($(this).data("total") != undefined && $(this).data("part") != undefined) {
                var total = $(this).data("total") / 100;

                percent = (($(this).data("part") / total) / 100).toFixed(3);
                endPercent = ($(this).data("part") / total).toFixed(3);
            } else {
                if ($(this).data("percent") != undefined) {
                    percent = $(this).data("percent") / 100;
                    endPercent = $(this).data("percent");
                } else {
                    percent = settings.percent / 100;
                }
            }

            if ($(this).data('info') != undefined) {
                info = $(this).data('info');

                if ($(this).data('type') != undefined) {
                    type = $(this).data('type');

                    if (type == 'half') {
                        addInfoText(obj, 0.9);
                    } else {
                        addInfoText(obj, 1.25);
                    }
                } else {
                    addInfoText(obj, 1.25);
                }
            }

            $(this).width(customSettingsObj.dimension + 'px');

            var size = customSettingsObj.dimension,
                canvas = $('<canvas></canvas>').attr({
                    width: size,
                    height: size
                }).appendTo($(this)).get(0);

            var context = canvas.getContext('2d');

            var dpr = window.devicePixelRatio;
            if ( dpr ) {
                var $canvas = $(canvas);
                $canvas.css('width', size);
                $canvas.css('height', size);
                $canvas.attr('width', size * dpr);
                $canvas.attr('height', size * dpr);

                context.scale(dpr, dpr);
            }

            var container = $(canvas).parent();
            var x = size / 2;
            var y = size / 2;
            var degrees = customSettingsObj.percent * 360.0;
            var radians = degrees * (Math.PI / 180);
            var radius = size / 2.5;
            var startAngle = 2.3 * Math.PI;
            var endAngle = 0;
            var counterClockwise = false;
            var curPerc = customSettingsObj.animationstep === 0.0 ? endPercent : 0.0;
            var curStep = Math.max(customSettingsObj.animationstep, 0.0);
            var circ = Math.PI * 2;
            var quart = Math.PI / 2;
            var type = '';
            var fireCallback = true;
            var additionalAngelPI = (customSettingsObj.startdegree / 180) * Math.PI;
            var animationDelay = customSettingsObj.delay;

            if ($(this).data('type') != undefined) {
                type = $(this).data('type');

                if (type == 'half') {
                    startAngle = 2.0 * Math.PI;
                    endAngle = 3.13;
                    circ = Math.PI;
                    quart = Math.PI / 0.996;
                }
            }

            if ($(this).data('type') != undefined) {
                type = $(this).data('type');

                if (type == 'angle') {
                    startAngle = 2.25 * Math.PI;
                    endAngle = 2.4;
                    circ = 1.53 + Math.PI;
                    quart = 0.73 + Math.PI / 0.996;
                }
            }

            /**
             * adds text to circle
             *
             * @param obj
             * @param cssClass
             * @param lineHeight
             */
            function addCircleText(obj, cssClass, lineHeight) {
                $("<span></span>")
                    .appendTo(obj)
                    .addClass(cssClass)
                    .html(text)
                    .prepend(icon)
                    .css({
                        'line-height': lineHeight + 'px',
                        'font-size': customSettingsObj.fontsize + 'px'
                    });
            }

            /**
             * adds info text to circle
             *
             * @param obj
             * @param factor
             */
            function addInfoText(obj, factor) {
                $('<span></span>')
                    .appendTo(obj)
                    .addClass('circle-info-half')
                    .css(
                    'line-height', (customSettingsObj.dimension * factor) + 'px'
                )
                    .text(info);
            }

            /**
             * checks which data attributes are defined
             * @param obj
             */
            function checkDataAttributes(obj) {
                $.each(customSettings, function (index, attribute) {
                    if (obj.data(attribute) != undefined) {
                        customSettingsObj[attribute] = obj.data(attribute);
                    } else {
                        customSettingsObj[attribute] = $(settings).attr(attribute);
                    }

                    if (attribute == 'fill' && obj.data('fill') != undefined) {
                        fill = true;
                    }
                });
            }

            /**
             * draw background circle
             */
            function bgrCircle () {
                context.clearRect(0, 0, canvas.width, canvas.height);

                context.beginPath();
                context.arc(x, y, radius, endAngle, startAngle, false);

                context.lineWidth = customSettingsObj.bordersize + 1;

                context.strokeStyle = customSettingsObj.bgcolor;
                context.stroke();

                if (customSettingsObj.fill) {
                    context.fillStyle = customSettingsObj.fill;
                    context.fill();
                }

            }

            /**
             * animate foreground circle
             * @param current
             */
            function animate(current) {

                bgrCircle ();
                context.beginPath();
                context.arc(x, y, radius, -(quart) + additionalAngelPI, ((circ) * current) - quart + additionalAngelPI, false);

                if (customSettingsObj.border == 'outline') {
                    context.lineWidth = customSettingsObj.width + customSettingsObj.bordersize;
                } else if (customSettingsObj.border == 'inline') {
                    context.lineWidth = customSettingsObj.width - customSettingsObj.bordersize;
                }

                context.strokeStyle = customSettingsObj.fgcolor;
                context.stroke();

                if (curPerc < endPercent) {
                    curPerc += curStep;
                    requestAnimationFrame(function () {
                        animate(Math.min(curPerc, endPercent) / 100);
                    }, obj);
                }

                if (curPerc == endPercent && fireCallback && typeof(options) != "undefined") {
                    if ($.isFunction(options.complete)) {
                        options.complete();

                        fireCallback = false;
                    }
                }
            }

            setTimeout(function () {
                animate(curPerc / 100);
            }, animationDelay);
        });
    };
}(jQuery));PK!F�+7js/jquery.fancybox-media.jsnu&1i�/*!
 * Media helper for fancyBox
 * version: 1.0.6 (Fri, 14 Jun 2013)
 * @requires fancyBox v2.0 or later
 *
 * Usage:
 *     $(".fancybox").fancybox({
 *         helpers : {
 *             media: true
 *         }
 *     });
 *
 * Set custom URL parameters:
 *     $(".fancybox").fancybox({
 *         helpers : {
 *             media: {
 *                 youtube : {
 *                     params : {
 *                         autoplay : 0
 *                     }
 *                 }
 *             }
 *         }
 *     });
 *
 * Or:
 *     $(".fancybox").fancybox({,
 *         helpers : {
 *             media: true
 *         },
 *         youtube : {
 *             autoplay: 0
 *         }
 *     });
 *
 *  Supports:
 *
 *      Youtube
 *          http://www.youtube.com/watch?v=opj24KnzrWo
 *          http://www.youtube.com/embed/opj24KnzrWo
 *          http://youtu.be/opj24KnzrWo
 *			http://www.youtube-nocookie.com/embed/opj24KnzrWo
 *      Vimeo
 *          http://vimeo.com/40648169
 *          http://vimeo.com/channels/staffpicks/38843628
 *          http://vimeo.com/groups/surrealism/videos/36516384
 *          http://player.vimeo.com/video/45074303
 *      Metacafe
 *          http://www.metacafe.com/watch/7635964/dr_seuss_the_lorax_movie_trailer/
 *          http://www.metacafe.com/watch/7635964/
 *      Dailymotion
 *          http://www.dailymotion.com/video/xoytqh_dr-seuss-the-lorax-premiere_people
 *      Twitvid
 *          http://twitvid.com/QY7MD
 *      Twitpic
 *          http://twitpic.com/7p93st
 *      Instagram
 *          http://instagr.am/p/IejkuUGxQn/
 *          http://instagram.com/p/IejkuUGxQn/
 *      Google maps
 *          http://maps.google.com/maps?q=Eiffel+Tower,+Avenue+Gustave+Eiffel,+Paris,+France&t=h&z=17
 *          http://maps.google.com/?ll=48.857995,2.294297&spn=0.007666,0.021136&t=m&z=16
 *          http://maps.google.com/?ll=48.859463,2.292626&spn=0.000965,0.002642&t=m&z=19&layer=c&cbll=48.859524,2.292532&panoid=YJ0lq28OOy3VT2IqIuVY0g&cbp=12,151.58,,0,-15.56
 */
(function ($) {
	"use strict";

	//Shortcut for fancyBox object
	var F = $.fancybox,
		format = function( url, rez, params ) {
			params = params || '';

			if ( $.type( params ) === "object" ) {
				params = $.param(params, true);
			}

			$.each(rez, function(key, value) {
				url = url.replace( '$' + key, value || '' );
			});

			if (params.length) {
				url += ( url.indexOf('?') > 0 ? '&' : '?' ) + params;
			}

			return url;
		};

	//Add helper object
	F.helpers.media = {
		defaults : {
			youtube : {
				matcher : /(youtube\.com|youtu\.be|youtube-nocookie\.com)\/(watch\?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*)).*/i,
				params  : {
					autoplay    : 1,
					autohide    : 1,
					fs          : 1,
					rel         : 0,
					hd          : 1,
					wmode       : 'opaque',
					enablejsapi : 1
				},
				type : 'iframe',
				url  : '//www.youtube.com/embed/$3'
			},
			vimeo : {
				matcher : /(?:vimeo(?:pro)?.com)\/(?:[^\d]+)?(\d+)(?:.*)/,
				params  : {
					autoplay      : 1,
					hd            : 1,
					show_title    : 1,
					show_byline   : 1,
					show_portrait : 0,
					fullscreen    : 1
				},
				type : 'iframe',
				url  : '//player.vimeo.com/video/$1'
			},
			metacafe : {
				matcher : /metacafe.com\/(?:watch|fplayer)\/([\w\-]{1,10})/,
				params  : {
					autoPlay : 'yes'
				},
				type : 'swf',
				url  : function( rez, params, obj ) {
					obj.swf.flashVars = 'playerVars=' + $.param( params, true );

					return '//www.metacafe.com/fplayer/' + rez[1] + '/.swf';
				}
			},
			dailymotion : {
				matcher : /dailymotion.com\/video\/(.*)\/?(.*)/,
				params  : {
					additionalInfos : 0,
					autoStart : 1
				},
				type : 'swf',
				url  : '//www.dailymotion.com/swf/video/$1'
			},
			twitvid : {
				matcher : /twitvid\.com\/([a-zA-Z0-9_\-\?\=]+)/i,
				params  : {
					autoplay : 0
				},
				type : 'iframe',
				url  : '//www.twitvid.com/embed.php?guid=$1'
			},
			twitpic : {
				matcher : /twitpic\.com\/(?!(?:place|photos|events)\/)([a-zA-Z0-9\?\=\-]+)/i,
				type : 'image',
				url  : '//twitpic.com/show/full/$1/'
			},
			instagram : {
				matcher : /(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i,
				type : 'image',
				url  : '//$1/p/$2/media/?size=l'
			},
			google_maps : {
				matcher : /maps\.google\.([a-z]{2,3}(\.[a-z]{2})?)\/(\?ll=|maps\?)(.*)/i,
				type : 'iframe',
				url  : function( rez ) {
					return '//maps.google.' + rez[1] + '/' + rez[3] + '' + rez[4] + '&output=' + (rez[4].indexOf('layer=c') > 0 ? 'svembed' : 'embed');
				}
			}
		},

		beforeLoad : function(opts, obj) {
			var url   = obj.href || '',
				type  = false,
				what,
				item,
				rez,
				params;

			for (what in opts) {
				if (opts.hasOwnProperty(what)) {
					item = opts[ what ];
					rez  = url.match( item.matcher );

					if (rez) {
						type   = item.type;
						params = $.extend(true, {}, item.params, obj[ what ] || ($.isPlainObject(opts[ what ]) ? opts[ what ].params : null));

						url = $.type( item.url ) === "function" ? item.url.call( this, rez, params, obj ) : format( item.url, rez, params );

						break;
					}
				}
			}

			if (type) {
				obj.href = url;
				obj.type = type;

				obj.autoHeight = false;
			}
		}
	};

}(jQuery));PK!�i�
�
�js/bootstrap.min.jsnu&1i�/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under the MIT license
 */
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");
d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);PK!&��R�n�njs/jquery.mixitup.min.jsnu&1i�/**!
 * MixItUp v2.1.5
 *
 * @copyright Copyright 2014 KunkaLabs Limited.
 * @author    KunkaLabs Limited.
 * @link      https://mixitup.kunkalabs.com
 *
 * @license   Commercial use requires a commercial license.
 *            https://mixitup.kunkalabs.com/licenses/
 *
 *            Non-commercial use permitted under terms of CC-BY-NC license.
 *            http://creativecommons.org/licenses/by-nc/3.0/
 */
!function(a,b){a.MixItUp=function(){var b=this;b._execAction("_constructor",0),a.extend(b,{selectors:{target:".mix",filter:".filter",sort:".sort"},animation:{enable:!0,effects:"fade scale",duration:600,easing:"ease",perspectiveDistance:"3000",perspectiveOrigin:"50% 50%",queue:!0,queueLimit:1,animateChangeLayout:!1,animateResizeContainer:!0,animateResizeTargets:!1,staggerSequence:!1,reverseOut:!1},callbacks:{onMixLoad:!1,onMixStart:!1,onMixBusy:!1,onMixEnd:!1,onMixFail:!1,_user:!1},controls:{enable:!0,live:!1,toggleFilterButtons:!1,toggleLogic:"or",activeClass:"active"},layout:{display:"inline-block",containerClass:"",containerClassFail:"fail"},load:{filter:"all",sort:!1},_$body:null,_$container:null,_$targets:null,_$parent:null,_$sortButtons:null,_$filterButtons:null,_suckMode:!1,_mixing:!1,_sorting:!1,_clicking:!1,_loading:!0,_changingLayout:!1,_changingClass:!1,_changingDisplay:!1,_origOrder:[],_startOrder:[],_newOrder:[],_activeFilter:null,_toggleArray:[],_toggleString:"",_activeSort:"default:asc",_newSort:null,_startHeight:null,_newHeight:null,_incPadding:!0,_newDisplay:null,_newClass:null,_targetsBound:0,_targetsDone:0,_queue:[],_$show:a(),_$hide:a()}),b._execAction("_constructor",1)},a.MixItUp.prototype={constructor:a.MixItUp,_instances:{},_handled:{_filter:{},_sort:{}},_bound:{_filter:{},_sort:{}},_actions:{},_filters:{},extend:function(b){for(var c in b)a.MixItUp.prototype[c]=b[c]},addAction:function(b,c,d,e){a.MixItUp.prototype._addHook("_actions",b,c,d,e)},addFilter:function(b,c,d,e){a.MixItUp.prototype._addHook("_filters",b,c,d,e)},_addHook:function(b,c,d,e,f){var g=a.MixItUp.prototype[b],h={};f=1===f||"post"===f?"post":"pre",h[c]={},h[c][f]={},h[c][f][d]=e,a.extend(!0,g,h)},_init:function(b,c){var d=this;if(d._execAction("_init",0,arguments),c&&a.extend(!0,d,c),d._$body=a("body"),d._domNode=b,d._$container=a(b),d._$container.addClass(d.layout.containerClass),d._id=b.id,d._platformDetect(),d._brake=d._getPrefixedCSS("transition","none"),d._refresh(!0),d._$parent=d._$targets.parent().length?d._$targets.parent():d._$container,d.load.sort&&(d._newSort=d._parseSort(d.load.sort),d._newSortString=d.load.sort,d._activeSort=d.load.sort,d._sort(),d._printSort()),d._activeFilter="all"===d.load.filter?d.selectors.target:"none"===d.load.filter?"":d.load.filter,d.controls.enable&&d._bindHandlers(),d.controls.toggleFilterButtons){d._buildToggleArray();for(var e=0;e<d._toggleArray.length;e++)d._updateControls({filter:d._toggleArray[e],sort:d._activeSort},!0)}else d.controls.enable&&d._updateControls({filter:d._activeFilter,sort:d._activeSort});d._filter(),d._init=!0,d._$container.data("mixItUp",d),d._execAction("_init",1,arguments),d._buildState(),d._$targets.css(d._brake),d._goMix(d.animation.enable)},_platformDetect:function(){var a=this,c=["Webkit","Moz","O","ms"],d=["webkit","moz"],e=window.navigator.appVersion.match(/Chrome\/(\d+)\./)||!1,f="undefined"!=typeof InstallTrigger,g=function(a){for(var b=0;b<c.length;b++)if(c[b]+"Transition"in a.style)return{prefix:"-"+c[b].toLowerCase()+"-",vendor:c[b]};return"transition"in a.style?"":!1},h=g(a._domNode);a._execAction("_platformDetect",0),a._chrome=e?parseInt(e[1],10):!1,a._ff=f?parseInt(window.navigator.userAgent.match(/rv:([^)]+)\)/)[1]):!1,a._prefix=h.prefix,a._vendor=h.vendor,a._suckMode=window.atob&&a._prefix?!1:!0,a._suckMode&&(a.animation.enable=!1),a._ff&&a._ff<=4&&(a.animation.enable=!1);for(var i=0;i<d.length&&!window.requestAnimationFrame;i++)window.requestAnimationFrame=window[d[i]+"RequestAnimationFrame"];"function"!=typeof Object.getPrototypeOf&&(Object.getPrototypeOf="object"==typeof"test".__proto__?function(a){return a.__proto__}:function(a){return a.constructor.prototype}),a._domNode.nextElementSibling===b&&Object.defineProperty(Element.prototype,"nextElementSibling",{get:function(){for(var a=this.nextSibling;a;){if(1===a.nodeType)return a;a=a.nextSibling}return null}}),a._execAction("_platformDetect",1)},_refresh:function(a,c){var d=this;d._execAction("_refresh",0,arguments),d._$targets=d._$container.find(d.selectors.target);for(var e=0;e<d._$targets.length;e++){var f=d._$targets[e];if(f.dataset===b||c){f.dataset={};for(var g=0;g<f.attributes.length;g++){var h=f.attributes[g],i=h.name,j=h.nodeValue;if(i.indexOf("data-")>-1){var k=d._helpers._camelCase(i.substring(5,i.length));f.dataset[k]=j}}}f.mixParent===b&&(f.mixParent=d._id)}if(d._$targets.length&&a||!d._origOrder.length&&d._$targets.length){d._origOrder=[];for(var e=0;e<d._$targets.length;e++){var f=d._$targets[e];d._origOrder.push(f)}}d._execAction("_refresh",1,arguments)},_bindHandlers:function(){var c=this,d=a.MixItUp.prototype._bound._filter,e=a.MixItUp.prototype._bound._sort;c._execAction("_bindHandlers",0),c.controls.live?c._$body.on("click.mixItUp."+c._id,c.selectors.sort,function(){c._processClick(a(this),"sort")}).on("click.mixItUp."+c._id,c.selectors.filter,function(){c._processClick(a(this),"filter")}):(c._$sortButtons=a(c.selectors.sort),c._$filterButtons=a(c.selectors.filter),c._$sortButtons.on("click.mixItUp."+c._id,function(){c._processClick(a(this),"sort")}),c._$filterButtons.on("click.mixItUp."+c._id,function(){c._processClick(a(this),"filter")})),d[c.selectors.filter]=d[c.selectors.filter]===b?1:d[c.selectors.filter]+1,e[c.selectors.sort]=e[c.selectors.sort]===b?1:e[c.selectors.sort]+1,c._execAction("_bindHandlers",1)},_processClick:function(c,d){var e=this,f=function(c,d,f){var g=a.MixItUp.prototype;g._handled["_"+d][e.selectors[d]]=g._handled["_"+d][e.selectors[d]]===b?1:g._handled["_"+d][e.selectors[d]]+1,g._handled["_"+d][e.selectors[d]]===g._bound["_"+d][e.selectors[d]]&&(c[(f?"remove":"add")+"Class"](e.controls.activeClass),delete g._handled["_"+d][e.selectors[d]])};if(e._execAction("_processClick",0,arguments),!e._mixing||e.animation.queue&&e._queue.length<e.animation.queueLimit){if(e._clicking=!0,"sort"===d){var g=c.attr("data-sort");(!c.hasClass(e.controls.activeClass)||g.indexOf("random")>-1)&&(a(e.selectors.sort).removeClass(e.controls.activeClass),f(c,d),e.sort(g))}if("filter"===d){var h,i=c.attr("data-filter"),j="or"===e.controls.toggleLogic?",":"";e.controls.toggleFilterButtons?(e._buildToggleArray(),c.hasClass(e.controls.activeClass)?(f(c,d,!0),h=e._toggleArray.indexOf(i),e._toggleArray.splice(h,1)):(f(c,d),e._toggleArray.push(i)),e._toggleArray=a.grep(e._toggleArray,function(a){return a}),e._toggleString=e._toggleArray.join(j),e.filter(e._toggleString)):c.hasClass(e.controls.activeClass)||(a(e.selectors.filter).removeClass(e.controls.activeClass),f(c,d),e.filter(i))}e._execAction("_processClick",1,arguments)}else"function"==typeof e.callbacks.onMixBusy&&e.callbacks.onMixBusy.call(e._domNode,e._state,e),e._execAction("_processClickBusy",1,arguments)},_buildToggleArray:function(){var a=this,b=a._activeFilter.replace(/\s/g,"");if(a._execAction("_buildToggleArray",0,arguments),"or"===a.controls.toggleLogic)a._toggleArray=b.split(",");else{a._toggleArray=b.split("."),!a._toggleArray[0]&&a._toggleArray.shift();for(var c,d=0;c=a._toggleArray[d];d++)a._toggleArray[d]="."+c}a._execAction("_buildToggleArray",1,arguments)},_updateControls:function(c,d){var e=this,f={filter:c.filter,sort:c.sort},g=function(a,b){d&&"filter"==h&&"none"!==f.filter&&""!==f.filter?a.filter(b).addClass(e.controls.activeClass):a.removeClass(e.controls.activeClass).filter(b).addClass(e.controls.activeClass)},h="filter",i=null;e._execAction("_updateControls",0,arguments),c.filter===b&&(f.filter=e._activeFilter),c.sort===b&&(f.sort=e._activeSort),f.filter===e.selectors.target&&(f.filter="all");for(var j=0;2>j;j++)i=e.controls.live?a(e.selectors[h]):e["_$"+h+"Buttons"],i&&g(i,"[data-"+h+'="'+f[h]+'"]'),h="sort";e._execAction("_updateControls",1,arguments)},_filter:function(){var b=this;b._execAction("_filter",0);for(var c=0;c<b._$targets.length;c++){var d=a(b._$targets[c]);d.is(b._activeFilter)?b._$show=b._$show.add(d):b._$hide=b._$hide.add(d)}b._execAction("_filter",1)},_sort:function(){var a=this,b=function(a){for(var b=a.slice(),c=b.length,d=c;d--;){var e=parseInt(Math.random()*c),f=b[d];b[d]=b[e],b[e]=f}return b};a._execAction("_sort",0),a._startOrder=[];for(var c=0;c<a._$targets.length;c++){var d=a._$targets[c];a._startOrder.push(d)}switch(a._newSort[0].sortBy){case"default":a._newOrder=a._origOrder;break;case"random":a._newOrder=b(a._startOrder);break;case"custom":a._newOrder=a._newSort[0].order;break;default:a._newOrder=a._startOrder.concat().sort(function(b,c){return a._compare(b,c)})}a._execAction("_sort",1)},_compare:function(a,b,c){c=c?c:0;var d=this,e=d._newSort[c].order,f=function(a){return a.dataset[d._newSort[c].sortBy]||0},g=isNaN(1*f(a))?f(a).toLowerCase():1*f(a),h=isNaN(1*f(b))?f(b).toLowerCase():1*f(b);return h>g?"asc"==e?-1:1:g>h?"asc"==e?1:-1:g==h&&d._newSort.length>c+1?d._compare(a,b,c+1):0},_printSort:function(a){var b=this,c=a?b._startOrder:b._newOrder,d=b._$parent[0].querySelectorAll(b.selectors.target),e=d[d.length-1].nextElementSibling,f=document.createDocumentFragment();b._execAction("_printSort",0,arguments);for(var g=0;g<d.length;g++){var h=d[g],i=h.nextSibling;"absolute"!==h.style.position&&(i&&"#text"==i.nodeName&&b._$parent[0].removeChild(i),b._$parent[0].removeChild(h))}for(var g=0;g<c.length;g++){var j=c[g];if("default"!=b._newSort[0].sortBy||"desc"!=b._newSort[0].order||a)f.appendChild(j),f.appendChild(document.createTextNode(" "));else{var k=f.firstChild;f.insertBefore(j,k),f.insertBefore(document.createTextNode(" "),j)}}e?b._$parent[0].insertBefore(f,e):b._$parent[0].appendChild(f),b._execAction("_printSort",1,arguments)},_parseSort:function(a){for(var b=this,c="string"==typeof a?a.split(" "):[a],d=[],e=0;e<c.length;e++){var f="string"==typeof a?c[e].split(":"):["custom",c[e]],g={sortBy:b._helpers._camelCase(f[0]),order:f[1]||"asc"};if(d.push(g),"default"==g.sortBy||"random"==g.sortBy)break}return b._execFilter("_parseSort",d,arguments)},_parseEffects:function(){var a=this,b={opacity:"",transformIn:"",transformOut:"",filter:""},c=function(b,c){if(a.animation.effects.indexOf(b)>-1){if(c){var d=a.animation.effects.indexOf(b+"(");if(d>-1){var e=a.animation.effects.substring(d),f=/\(([^)]+)\)/.exec(e),g=f[1];return{val:g}}}return!0}return!1},d=function(a,b){return b?"-"===a.charAt(0)?a.substr(1,a.length):"-"+a:a},e=function(a,e){for(var f=[["scale",".01"],["translateX","20px"],["translateY","20px"],["translateZ","20px"],["rotateX","90deg"],["rotateY","90deg"],["rotateZ","180deg"]],g=0;g<f.length;g++){var h=f[g][0],i=f[g][1],j=e&&"scale"!==h;b[a]+=c(h)?h+"("+d(c(h,!0).val||i,j)+") ":""}};return b.opacity=c("fade")?c("fade",!0).val||"0":"1",e("transformIn"),a.animation.reverseOut?e("transformOut",!0):b.transformOut=b.transformIn,b.transition={},b.transition=a._getPrefixedCSS("transition","all "+a.animation.duration+"ms "+a.animation.easing+", opacity "+a.animation.duration+"ms linear"),a.animation.stagger=c("stagger")?!0:!1,a.animation.staggerDuration=parseInt(c("stagger")?c("stagger",!0).val?c("stagger",!0).val:100:100),a._execFilter("_parseEffects",b)},_buildState:function(a){var b=this,c={};return b._execAction("_buildState",0),c={activeFilter:""===b._activeFilter?"none":b._activeFilter,activeSort:a&&b._newSortString?b._newSortString:b._activeSort,fail:!b._$show.length&&""!==b._activeFilter,$targets:b._$targets,$show:b._$show,$hide:b._$hide,totalTargets:b._$targets.length,totalShow:b._$show.length,totalHide:b._$hide.length,display:a&&b._newDisplay?b._newDisplay:b.layout.display},a?b._execFilter("_buildState",c):(b._state=c,b._execAction("_buildState",1),void 0)},_goMix:function(a){var b=this,c=function(){b._chrome&&31===b._chrome&&f(b._$parent[0]),b._setInter(),d()},d=function(){var a=window.pageYOffset,c=window.pageXOffset;document.documentElement.scrollHeight,b._getInterMixData(),b._setFinal(),b._getFinalMixData(),window.pageYOffset!==a&&window.scrollTo(c,a),b._prepTargets(),window.requestAnimationFrame?requestAnimationFrame(e):setTimeout(function(){e()},20)},e=function(){b._animateTargets(),0===b._targetsBound&&b._cleanUp()},f=function(a){var b=a.parentElement,c=document.createElement("div"),d=document.createDocumentFragment();b.insertBefore(c,a),d.appendChild(a),b.replaceChild(a,c)},g=b._buildState(!0);b._execAction("_goMix",0,arguments),!b.animation.duration&&(a=!1),b._mixing=!0,b._$container.removeClass(b.layout.containerClassFail),"function"==typeof b.callbacks.onMixStart&&b.callbacks.onMixStart.call(b._domNode,b._state,g,b),b._$container.trigger("mixStart",[b._state,g,b]),b._getOrigMixData(),a&&!b._suckMode?window.requestAnimationFrame?requestAnimationFrame(c):c():b._cleanUp(),b._execAction("_goMix",1,arguments)},_getTargetData:function(a,b){var c,d=this;a.dataset[b+"PosX"]=a.offsetLeft,a.dataset[b+"PosY"]=a.offsetTop,d.animation.animateResizeTargets&&(c=window.getComputedStyle(a),a.dataset[b+"MarginBottom"]=parseInt(c.marginBottom),a.dataset[b+"MarginRight"]=parseInt(c.marginRight),a.dataset[b+"Width"]=a.offsetWidth,a.dataset[b+"Height"]=a.offsetHeight)},_getOrigMixData:function(){var a=this,b=a._suckMode?{boxSizing:""}:window.getComputedStyle(a._$parent[0]),c=b.boxSizing||b[a._vendor+"BoxSizing"];a._incPadding="border-box"===c,a._execAction("_getOrigMixData",0),!a._suckMode&&(a.effects=a._parseEffects()),a._$toHide=a._$hide.filter(":visible"),a._$toShow=a._$show.filter(":hidden"),a._$pre=a._$targets.filter(":visible"),a._startHeight=a._incPadding?a._$parent.outerHeight():a._$parent.height();for(var d=0;d<a._$pre.length;d++){var e=a._$pre[d];a._getTargetData(e,"orig")}a._execAction("_getOrigMixData",1)},_setInter:function(){var a=this;a._execAction("_setInter",0),a._changingLayout&&a.animation.animateChangeLayout?(a._$toShow.css("display",a._newDisplay),a._changingClass&&a._$container.removeClass(a.layout.containerClass).addClass(a._newClass)):a._$toShow.css("display",a.layout.display),a._execAction("_setInter",1)},_getInterMixData:function(){var a=this;a._execAction("_getInterMixData",0);for(var b=0;b<a._$toShow.length;b++){var c=a._$toShow[b];a._getTargetData(c,"inter")}for(var b=0;b<a._$pre.length;b++){var c=a._$pre[b];a._getTargetData(c,"inter")}a._execAction("_getInterMixData",1)},_setFinal:function(){var a=this;a._execAction("_setFinal",0),a._sorting&&a._printSort(),a._$toHide.removeStyle("display"),a._changingLayout&&a.animation.animateChangeLayout&&a._$pre.css("display",a._newDisplay),a._execAction("_setFinal",1)},_getFinalMixData:function(){var a=this;a._execAction("_getFinalMixData",0);for(var b=0;b<a._$toShow.length;b++){var c=a._$toShow[b];a._getTargetData(c,"final")}for(var b=0;b<a._$pre.length;b++){var c=a._$pre[b];a._getTargetData(c,"final")}a._newHeight=a._incPadding?a._$parent.outerHeight():a._$parent.height(),a._sorting&&a._printSort(!0),a._$toShow.removeStyle("display"),a._$pre.css("display",a.layout.display),a._changingClass&&a.animation.animateChangeLayout&&a._$container.removeClass(a._newClass).addClass(a.layout.containerClass),a._execAction("_getFinalMixData",1)},_prepTargets:function(){var b=this,c={_in:b._getPrefixedCSS("transform",b.effects.transformIn),_out:b._getPrefixedCSS("transform",b.effects.transformOut)};b._execAction("_prepTargets",0),b.animation.animateResizeContainer&&b._$parent.css("height",b._startHeight+"px");for(var d=0;d<b._$toShow.length;d++){var e=b._$toShow[d],f=a(e);e.style.opacity=b.effects.opacity,e.style.display=b._changingLayout&&b.animation.animateChangeLayout?b._newDisplay:b.layout.display,f.css(c._in),b.animation.animateResizeTargets&&(e.style.width=e.dataset.finalWidth+"px",e.style.height=e.dataset.finalHeight+"px",e.style.marginRight=-(e.dataset.finalWidth-e.dataset.interWidth)+1*e.dataset.finalMarginRight+"px",e.style.marginBottom=-(e.dataset.finalHeight-e.dataset.interHeight)+1*e.dataset.finalMarginBottom+"px")}for(var d=0;d<b._$pre.length;d++){var e=b._$pre[d],f=a(e),g={x:e.dataset.origPosX-e.dataset.interPosX,y:e.dataset.origPosY-e.dataset.interPosY},c=b._getPrefixedCSS("transform","translate("+g.x+"px,"+g.y+"px)");f.css(c),b.animation.animateResizeTargets&&(e.style.width=e.dataset.origWidth+"px",e.style.height=e.dataset.origHeight+"px",e.dataset.origWidth-e.dataset.finalWidth&&(e.style.marginRight=-(e.dataset.origWidth-e.dataset.interWidth)+1*e.dataset.origMarginRight+"px"),e.dataset.origHeight-e.dataset.finalHeight&&(e.style.marginBottom=-(e.dataset.origHeight-e.dataset.interHeight)+1*e.dataset.origMarginBottom+"px"))}b._execAction("_prepTargets",1)},_animateTargets:function(){var b=this;b._execAction("_animateTargets",0),b._targetsDone=0,b._targetsBound=0,b._$parent.css(b._getPrefixedCSS("perspective",b.animation.perspectiveDistance+"px")).css(b._getPrefixedCSS("perspective-origin",b.animation.perspectiveOrigin)),b.animation.animateResizeContainer&&b._$parent.css(b._getPrefixedCSS("transition","height "+b.animation.duration+"ms ease")).css("height",b._newHeight+"px");for(var c=0;c<b._$toShow.length;c++){var d=b._$toShow[c],e=a(d),f={x:d.dataset.finalPosX-d.dataset.interPosX,y:d.dataset.finalPosY-d.dataset.interPosY},g=b._getDelay(c),h={};d.style.opacity="";for(var i=0;2>i;i++){var j=0===i?j=b._prefix:"";b._ff&&b._ff<=20&&(h[j+"transition-property"]="all",h[j+"transition-timing-function"]=b.animation.easing+"ms",h[j+"transition-duration"]=b.animation.duration+"ms"),h[j+"transition-delay"]=g+"ms",h[j+"transform"]="translate("+f.x+"px,"+f.y+"px)"}(b.effects.transform||b.effects.opacity)&&b._bindTargetDone(e),b._ff&&b._ff<=20?e.css(h):e.css(b.effects.transition).css(h)}for(var c=0;c<b._$pre.length;c++){var d=b._$pre[c],e=a(d),f={x:d.dataset.finalPosX-d.dataset.interPosX,y:d.dataset.finalPosY-d.dataset.interPosY},g=b._getDelay(c);(d.dataset.finalPosX!==d.dataset.origPosX||d.dataset.finalPosY!==d.dataset.origPosY)&&b._bindTargetDone(e),e.css(b._getPrefixedCSS("transition","all "+b.animation.duration+"ms "+b.animation.easing+" "+g+"ms")),e.css(b._getPrefixedCSS("transform","translate("+f.x+"px,"+f.y+"px)")),b.animation.animateResizeTargets&&(d.dataset.origWidth-d.dataset.finalWidth&&1*d.dataset.finalWidth&&(d.style.width=d.dataset.finalWidth+"px",d.style.marginRight=-(d.dataset.finalWidth-d.dataset.interWidth)+1*d.dataset.finalMarginRight+"px"),d.dataset.origHeight-d.dataset.finalHeight&&1*d.dataset.finalHeight&&(d.style.height=d.dataset.finalHeight+"px",d.style.marginBottom=-(d.dataset.finalHeight-d.dataset.interHeight)+1*d.dataset.finalMarginBottom+"px"))}b._changingClass&&b._$container.removeClass(b.layout.containerClass).addClass(b._newClass);for(var c=0;c<b._$toHide.length;c++){for(var d=b._$toHide[c],e=a(d),g=b._getDelay(c),k={},i=0;2>i;i++){var j=0===i?j=b._prefix:"";k[j+"transition-delay"]=g+"ms",k[j+"transform"]=b.effects.transformOut,k.opacity=b.effects.opacity}e.css(b.effects.transition).css(k),(b.effects.transform||b.effects.opacity)&&b._bindTargetDone(e)}b._execAction("_animateTargets",1)},_bindTargetDone:function(b){var c=this,d=b[0];c._execAction("_bindTargetDone",0,arguments),d.dataset.bound||(d.dataset.bound=!0,c._targetsBound++,b.on("webkitTransitionEnd.mixItUp transitionend.mixItUp",function(e){(e.originalEvent.propertyName.indexOf("transform")>-1||e.originalEvent.propertyName.indexOf("opacity")>-1)&&a(e.originalEvent.target).is(c.selectors.target)&&(b.off(".mixItUp"),delete d.dataset.bound,c._targetDone())})),c._execAction("_bindTargetDone",1,arguments)},_targetDone:function(){var a=this;a._execAction("_targetDone",0),a._targetsDone++,a._targetsDone===a._targetsBound&&a._cleanUp(),a._execAction("_targetDone",1)},_cleanUp:function(){var b=this,c=b.animation.animateResizeTargets?"transform opacity width height margin-bottom margin-right":"transform opacity";unBrake=function(){b._$targets.removeStyle("transition",b._prefix)},b._execAction("_cleanUp",0),b._changingLayout?b._$show.css("display",b._newDisplay):b._$show.css("display",b.layout.display),b._$targets.css(b._brake),b._$targets.removeStyle(c,b._prefix).removeAttr("data-inter-pos-x data-inter-pos-y data-final-pos-x data-final-pos-y data-orig-pos-x data-orig-pos-y data-orig-height data-orig-width data-final-height data-final-width data-inter-width data-inter-height data-orig-margin-right data-orig-margin-bottom data-inter-margin-right data-inter-margin-bottom data-final-margin-right data-final-margin-bottom"),b._$hide.removeStyle("display"),b._$parent.removeStyle("height transition perspective-distance perspective perspective-origin-x perspective-origin-y perspective-origin perspectiveOrigin",b._prefix),b._sorting&&(b._printSort(),b._activeSort=b._newSortString,b._sorting=!1),b._changingLayout&&(b._changingDisplay&&(b.layout.display=b._newDisplay,b._changingDisplay=!1),b._changingClass&&(b._$parent.removeClass(b.layout.containerClass).addClass(b._newClass),b.layout.containerClass=b._newClass,b._changingClass=!1),b._changingLayout=!1),b._refresh(),b._buildState(),b._state.fail&&b._$container.addClass(b.layout.containerClassFail),b._$show=a(),b._$hide=a(),window.requestAnimationFrame&&requestAnimationFrame(unBrake),b._mixing=!1,"function"==typeof b.callbacks._user&&b.callbacks._user.call(b._domNode,b._state,b),"function"==typeof b.callbacks.onMixEnd&&b.callbacks.onMixEnd.call(b._domNode,b._state,b),b._$container.trigger("mixEnd",[b._state,b]),b._state.fail&&("function"==typeof b.callbacks.onMixFail&&b.callbacks.onMixFail.call(b._domNode,b._state,b),b._$container.trigger("mixFail",[b._state,b])),b._loading&&("function"==typeof b.callbacks.onMixLoad&&b.callbacks.onMixLoad.call(b._domNode,b._state,b),b._$container.trigger("mixLoad",[b._state,b])),b._queue.length&&(b._execAction("_queue",0),b.multiMix(b._queue[0][0],b._queue[0][1],b._queue[0][2]),b._queue.splice(0,1)),b._execAction("_cleanUp",1),b._loading=!1},_getPrefixedCSS:function(a,b,c){var d=this,e={};for(i=0;2>i;i++){var f=0===i?d._prefix:"";e[f+a]=c?f+b:b}return d._execFilter("_getPrefixedCSS",e,arguments)},_getDelay:function(a){var b=this,c="function"==typeof b.animation.staggerSequence?b.animation.staggerSequence.call(b._domNode,a,b._state):a,d=b.animation.stagger?c*b.animation.staggerDuration:0;return b._execFilter("_getDelay",d,arguments)},_parseMultiMixArgs:function(a){for(var b=this,c={command:null,animate:b.animation.enable,callback:null},d=0;d<a.length;d++){var e=a[d];null!==e&&("object"==typeof e||"string"==typeof e?c.command=e:"boolean"==typeof e?c.animate=e:"function"==typeof e&&(c.callback=e))}return b._execFilter("_parseMultiMixArgs",c,arguments)},_parseInsertArgs:function(b){for(var c=this,d={index:0,$object:a(),multiMix:{filter:c._state.activeFilter},callback:null},e=0;e<b.length;e++){var f=b[e];"number"==typeof f?d.index=f:"object"==typeof f&&f instanceof a?d.$object=f:"object"==typeof f&&c._helpers._isElement(f)?d.$object=a(f):"object"==typeof f&&null!==f?d.multiMix=f:"boolean"!=typeof f||f?"function"==typeof f&&(d.callback=f):d.multiMix=!1}return c._execFilter("_parseInsertArgs",d,arguments)},_execAction:function(a,b,c){var d=this,e=b?"post":"pre";if(!d._actions.isEmptyObject&&d._actions.hasOwnProperty(a))for(var f in d._actions[a][e])d._actions[a][e][f].call(d,c)},_execFilter:function(a,b,c){var d=this;if(d._filters.isEmptyObject||!d._filters.hasOwnProperty(a))return b;for(var e in d._filters[a])return d._filters[a][e].call(d,c)},_helpers:{_camelCase:function(a){return a.replace(/-([a-z])/g,function(a){return a[1].toUpperCase()})},_isElement:function(a){return window.HTMLElement?a instanceof HTMLElement:null!==a&&1===a.nodeType&&"string"===a.nodeName}},isMixing:function(){var a=this;return a._execFilter("isMixing",a._mixing)},filter:function(){var a=this,b=a._parseMultiMixArgs(arguments);a._clicking&&(a._toggleString=""),a.multiMix({filter:b.command},b.animate,b.callback)},sort:function(){var a=this,b=a._parseMultiMixArgs(arguments);a.multiMix({sort:b.command},b.animate,b.callback)},changeLayout:function(){var a=this,b=a._parseMultiMixArgs(arguments);a.multiMix({changeLayout:b.command},b.animate,b.callback)},multiMix:function(){var a=this,c=a._parseMultiMixArgs(arguments);if(a._execAction("multiMix",0,arguments),a._mixing)a.animation.queue&&a._queue.length<a.animation.queueLimit?(a._queue.push(arguments),a.controls.enable&&!a._clicking&&a._updateControls(c.command),a._execAction("multiMixQueue",1,arguments)):("function"==typeof a.callbacks.onMixBusy&&a.callbacks.onMixBusy.call(a._domNode,a._state,a),a._$container.trigger("mixBusy",[a._state,a]),a._execAction("multiMixBusy",1,arguments));else{a.controls.enable&&!a._clicking&&(a.controls.toggleFilterButtons&&a._buildToggleArray(),a._updateControls(c.command,a.controls.toggleFilterButtons)),a._queue.length<2&&(a._clicking=!1),delete a.callbacks._user,c.callback&&(a.callbacks._user=c.callback);var d=c.command.sort,e=c.command.filter,f=c.command.changeLayout;a._refresh(),d&&(a._newSort=a._parseSort(d),a._newSortString=d,a._sorting=!0,a._sort()),e!==b&&(e="all"===e?a.selectors.target:e,a._activeFilter=e),a._filter(),f&&(a._newDisplay="string"==typeof f?f:f.display||a.layout.display,a._newClass=f.containerClass||"",(a._newDisplay!==a.layout.display||a._newClass!==a.layout.containerClass)&&(a._changingLayout=!0,a._changingClass=a._newClass!==a.layout.containerClass,a._changingDisplay=a._newDisplay!==a.layout.display)),a._$targets.css(a._brake),a._goMix(c.animate^a.animation.enable?c.animate:a.animation.enable),a._execAction("multiMix",1,arguments)}},insert:function(){var a=this,b=a._parseInsertArgs(arguments),c="function"==typeof b.callback?b.callback:null,d=document.createDocumentFragment(),e=function(){return a._refresh(),a._$targets.length?b.index<a._$targets.length||!a._$targets.length?a._$targets[b.index]:a._$targets[a._$targets.length-1].nextElementSibling:a._$parent[0].children[0]}();if(a._execAction("insert",0,arguments),b.$object){for(var f=0;f<b.$object.length;f++){var g=b.$object[f];d.appendChild(g),d.appendChild(document.createTextNode(" "))}a._$parent[0].insertBefore(d,e)}a._execAction("insert",1,arguments),"object"==typeof b.multiMix&&a.multiMix(b.multiMix,c)},prepend:function(){var a=this,b=a._parseInsertArgs(arguments);a.insert(0,b.$object,b.multiMix,b.callback)},append:function(){var a=this,b=a._parseInsertArgs(arguments);a.insert(a._state.totalTargets,b.$object,b.multiMix,b.callback)},getOption:function(a){var c=this,d=function(a,c){for(var d=c.split("."),e=d.pop(),f=d.length,g=1,h=d[0]||c;(a=a[h])&&f>g;)h=d[g],g++;return a!==b?a[e]!==b?a[e]:a:void 0};return a?c._execFilter("getOption",d(c,a),arguments):c},setOptions:function(b){var c=this;c._execAction("setOptions",0,arguments),"object"==typeof b&&a.extend(!0,c,b),c._execAction("setOptions",1,arguments)},getState:function(){var a=this;return a._execFilter("getState",a._state,a)},forceRefresh:function(){var a=this;a._refresh(!1,!0)},destroy:function(b){var c=this;c._execAction("destroy",0,arguments),c._$body.add(a(c.selectors.sort)).add(a(c.selectors.filter)).off(".mixItUp");for(var d=0;d<c._$targets.length;d++){var e=c._$targets[d];b&&(e.style.display=""),delete e.mixParent}c._execAction("destroy",1,arguments),delete a.MixItUp.prototype._instances[c._id]}},a.fn.mixItUp=function(){var c,d=arguments,e=[],f=function(b,c){var d=new a.MixItUp,e=function(){return("00000"+(16777216*Math.random()<<0).toString(16)).substr(-6).toUpperCase()};d._execAction("_instantiate",0,arguments),b.id=b.id?b.id:"MixItUp"+e(),d._instances[b.id]||(d._instances[b.id]=d,d._init(b,c)),d._execAction("_instantiate",1,arguments)};return c=this.each(function(){if(d&&"string"==typeof d[0]){var c=a.MixItUp.prototype._instances[this.id];if("isLoaded"==d[0])e.push(c?!0:!1);else{var g=c[d[0]](d[1],d[2],d[3]);g!==b&&e.push(g)}}else f(this,d[0])}),e.length?e.length>1?e:e[0]:c},a.fn.removeStyle=function(a,c){return c=c?c:"",this.each(function(){for(var d=this,e=a.split(" "),f=0;f<e.length;f++)for(var g=0;2>g;g++){var h=g?e[f]:c+e[f];if(d.style[h]!==b&&"unknown"!=typeof d.style[h]&&d.style[h].length>0&&(d.style[h]=""),!c)break}d.attributes&&d.attributes.style&&d.attributes.style!==b&&""===d.attributes.style.nodeValue&&d.attributes.removeNamedItem("style")})}}(jQuery);PK!��e��
js/wow.min.jsnu&1i�/*! WOW - v0.1.9 - 2014-05-10
* Copyright (c) 2014 Matthieu Aussaguel; Licensed MIT */(function(){var a,b,c=function(a,b){return function(){return a.apply(b,arguments)}};a=function(){function a(){}return a.prototype.extend=function(a,b){var c,d;for(c in a)d=a[c],null!=d&&(b[c]=d);return b},a.prototype.isMobile=function(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)},a}(),b=this.WeakMap||(b=function(){function a(){this.keys=[],this.values=[]}return a.prototype.get=function(a){var b,c,d,e,f;for(f=this.keys,b=d=0,e=f.length;e>d;b=++d)if(c=f[b],c===a)return this.values[b]},a.prototype.set=function(a,b){var c,d,e,f,g;for(g=this.keys,c=e=0,f=g.length;f>e;c=++e)if(d=g[c],d===a)return void(this.values[c]=b);return this.keys.push(a),this.values.push(b)},a}()),this.WOW=function(){function d(a){null==a&&(a={}),this.scrollCallback=c(this.scrollCallback,this),this.scrollHandler=c(this.scrollHandler,this),this.start=c(this.start,this),this.scrolled=!0,this.config=this.util().extend(a,this.defaults),this.animationNameCache=new b}return d.prototype.defaults={boxClass:"wow",animateClass:"animated",offset:0,mobile:!0},d.prototype.init=function(){var a;return this.element=window.document.documentElement,"interactive"===(a=document.readyState)||"complete"===a?this.start():document.addEventListener("DOMContentLoaded",this.start)},d.prototype.start=function(){var a,b,c,d;if(this.boxes=this.element.getElementsByClassName(this.config.boxClass),this.boxes.length){if(this.disabled())return this.resetStyle();for(d=this.boxes,b=0,c=d.length;c>b;b++)a=d[b],this.applyStyle(a,!0);return window.addEventListener("scroll",this.scrollHandler,!1),window.addEventListener("resize",this.scrollHandler,!1),this.interval=setInterval(this.scrollCallback,50)}},d.prototype.stop=function(){return window.removeEventListener("scroll",this.scrollHandler,!1),window.removeEventListener("resize",this.scrollHandler,!1),null!=this.interval?clearInterval(this.interval):void 0},d.prototype.show=function(a){return this.applyStyle(a),a.className=""+a.className+" "+this.config.animateClass},d.prototype.applyStyle=function(a,b){var c,d,e;return d=a.getAttribute("data-wow-duration"),c=a.getAttribute("data-wow-delay"),e=a.getAttribute("data-wow-iteration"),this.animate(function(f){return function(){return f.customStyle(a,b,d,c,e)}}(this))},d.prototype.animate=function(){return"requestAnimationFrame"in window?function(a){return window.requestAnimationFrame(a)}:function(a){return a()}}(),d.prototype.resetStyle=function(){var a,b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],e.push(a.setAttribute("style","visibility: visible;"));return e},d.prototype.customStyle=function(a,b,c,d,e){return b&&this.cacheAnimationName(a),a.style.visibility=b?"hidden":"visible",c&&this.vendorSet(a.style,{animationDuration:c}),d&&this.vendorSet(a.style,{animationDelay:d}),e&&this.vendorSet(a.style,{animationIterationCount:e}),this.vendorSet(a.style,{animationName:b?"none":this.cachedAnimationName(a)}),a},d.prototype.vendors=["moz","webkit"],d.prototype.vendorSet=function(a,b){var c,d,e,f;f=[];for(c in b)d=b[c],a[""+c]=d,f.push(function(){var b,f,g,h;for(g=this.vendors,h=[],b=0,f=g.length;f>b;b++)e=g[b],h.push(a[""+e+c.charAt(0).toUpperCase()+c.substr(1)]=d);return h}.call(this));return f},d.prototype.vendorCSS=function(a,b){var c,d,e,f,g,h;for(d=window.getComputedStyle(a),c=d.getPropertyCSSValue(b),h=this.vendors,f=0,g=h.length;g>f;f++)e=h[f],c=c||d.getPropertyCSSValue("-"+e+"-"+b);return c},d.prototype.animationName=function(a){var b;try{b=this.vendorCSS(a,"animation-name").cssText}catch(c){b=window.getComputedStyle(a).getPropertyValue("animation-name")}return"none"===b?"":b},d.prototype.cacheAnimationName=function(a){return this.animationNameCache.set(a,this.animationName(a))},d.prototype.cachedAnimationName=function(a){return this.animationNameCache.get(a)},d.prototype.scrollHandler=function(){return this.scrolled=!0},d.prototype.scrollCallback=function(){var a;return this.scrolled&&(this.scrolled=!1,this.boxes=function(){var b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],a&&(this.isVisible(a)?this.show(a):e.push(a));return e}.call(this),!this.boxes.length)?this.stop():void 0},d.prototype.offsetTop=function(a){for(var b;void 0===a.offsetTop;)a=a.parentNode;for(b=a.offsetTop;a=a.offsetParent;)b+=a.offsetTop;return b},d.prototype.isVisible=function(a){var b,c,d,e,f;return c=a.getAttribute("data-wow-offset")||this.config.offset,f=window.pageYOffset,e=f+this.element.clientHeight-c,d=this.offsetTop(a),b=d+a.clientHeight,e>=d&&b>=f},d.prototype.util=function(){return this._util||(this._util=new a)},d.prototype.disabled=function(){return!this.config.mobile&&this.util().isMobile(navigator.userAgent)},d}()}).call(this);PK!�׿��js/jquery.easing.min.jsnu&1i�/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});PK!�U�(��js/jPushMenu.jsnu&1i�/*!
 * jPushMenu.js
 * 1.1.1
 * @author: takien
 * http://takien.com
 * Original version (pure JS) is created by Mary Lou http://tympanus.net/
 */

(function($) {
    $.fn.jPushMenu = function(customOptions) {
        var o = $.extend({}, $.fn.jPushMenu.defaultOptions, customOptions);

        $('body').addClass(o.pushBodyClass);

        // Add class to toggler
        $(this).addClass('jPushMenuBtn');

        $(this).click(function(e) {
            e.stopPropagation();

            var target     = '',
            push_direction = '';

            // Determine menu and push direction
            if ($(this).is('.' + o.showLeftClass)) {
                target         = '.cbp-spmenu-left';
                push_direction = 'toright';
            }
            else if ($(this).is('.' + o.showRightClass)) {
                target         = '.cbp-spmenu-right';
                push_direction = 'toleft';
            }
            else if ($(this).is('.' + o.showTopClass)) {
                target = '.cbp-spmenu-top';
            }
            else if ($(this).is('.' + o.showBottomClass)) {
                target = '.cbp-spmenu-bottom';
            }

            if (target == '') {
                return;
            }

            $(this).toggleClass(o.activeClass);
            $(target).toggleClass(o.menuOpenClass);

            if ($(this).is('.' + o.pushBodyClass) && push_direction != '') {
                $('body').toggleClass(o.pushBodyClass + '-' + push_direction);
            }

            // Disable all other buttons
            $('.jPushMenuBtn').not($(this)).toggleClass('disabled');

            return;
        });

        var jPushMenu = {
            close: function (o) {
                $('.jPushMenuBtn,body,.cbp-spmenu')
                    .removeClass('disabled ' + o.activeClass + ' ' + o.menuOpenClass + ' ' + o.pushBodyClass + '-toleft ' + o.pushBodyClass + '-toright');
            }
        }

        // Close menu on clicking outside menu
        if (o.closeOnClickOutside) {
             $(document).click(function() {
                jPushMenu.close(o);
             });
         }

        // Close menu on clicking menu link
       // if (o.closeOnClickLink) {
           // $('.cbp-spmenu a').on('click',function() {
              //  jPushMenu.close(o);
          // });
      //  }
    };

   /*
    * In case you want to customize class name,
    * do not directly edit here, use function parameter when call jPushMenu.
    */
    $.fn.jPushMenu.defaultOptions = {
        pushBodyClass      : 'push-body',
        showLeftClass      : 'menu-left',
        showRightClass     : 'menu-right',
        showTopClass       : 'menu-top',
        showBottomClass    : 'menu-bottom',
        activeClass        : 'menu-active',
        menuOpenClass      : 'menu-open',
        closeOnClickOutside: true,
        closeOnClickLink   : true
    };
})(jQuery);
PK!.=�}
}
js/jquery-countTo.jsnu&1i�/*
Plugin Name: 	Count To
Written by: 	Matt Huggins - https://github.com/mhuggins/jquery-countTo
*/

(function ($) {
	$.fn.countTo = function (options) {
		options = options || {};

		return $(this).each(function () {
			// set options for current element
			var settings = $.extend({}, $.fn.countTo.defaults, {
				from:            $(this).data('from'),
				to:              $(this).data('to'),
				speed:           $(this).data('speed'),
				refreshInterval: $(this).data('refresh-interval'),
				decimals:        $(this).data('decimals')
			}, options);

			// how many times to update the value, and how much to increment the value on each update
			var loops = Math.ceil(settings.speed / settings.refreshInterval),
				increment = (settings.to - settings.from) / loops;

			// references & variables that will change with each update
			var self = this,
				$self = $(this),
				loopCount = 0,
				value = settings.from,
				data = $self.data('countTo') || {};

			$self.data('countTo', data);

			// if an existing interval can be found, clear it first
			if (data.interval) {
				clearInterval(data.interval);
			}
			data.interval = setInterval(updateTimer, settings.refreshInterval);

			// initialize the element with the starting value
			render(value);

			function updateTimer() {
				value += increment;
				loopCount++;

				render(value);

				if (typeof(settings.onUpdate) == 'function') {
					settings.onUpdate.call(self, value);
				}

				if (loopCount >= loops) {
					// remove the interval
					$self.removeData('countTo');
					clearInterval(data.interval);
					value = settings.to;

					if (typeof(settings.onComplete) == 'function') {
						settings.onComplete.call(self, value);
					}
				}
			}

			function render(value) {
				var formattedValue = settings.formatter.call(self, value, settings);
				$self.text(formattedValue);
			}
		});
	};

	$.fn.countTo.defaults = {
		from: 0,               // the number the element should start at
		to: 0,                 // the number the element should end at
		speed: 1000,           // how long it should take to count between the target numbers
		refreshInterval: 100,  // how often the element should be updated
		decimals: 0,           // the number of decimal places to show
		formatter: formatter,  // handler for formatting the value before rendering
		onUpdate: null,        // callback method for every time the element is updated
		onComplete: null       // callback method for when the element finishes updating
	};

	function formatter(value, settings) {
		return value.toFixed(settings.decimals);
	}
}(jQuery));PK!�Jqwwjs/jqSocialSharer.min.jsnu&1i�;;(function ($){$["fn"]["jqSocialSharer"]=function (options){var settings=$["extend"]({"popUpWidth":550,"popUpHeight":450,"popUpTop":100,"useCurrentLocation":false},options);return this["each"](function (index,value){$(this)["bind"]("click",function (evt){evt["preventDefault"]();var social=$(this)["data"]("social"),width=settings["popUpWidth"],height=settings["popUpHeight"],sHeight=screen["height"],sWidth=screen["width"],left=Math["round"]((sWidth/2)-(width/2)),top=settings["popUpTop"],url,useCurrentLoc=settings["useCurrentLocation"],socialURL=(useCurrentLoc)?window["location"]:encodeURIComponent(social["url"]),socialText=social["text"],socialImage=encodeURIComponent(social["image"]);switch(social["type"]){case "facebook":url="https://www.facebook.com/sharer/sharer.php?s=100\x26p[url]="+socialURL+"\x26p[images][0]="+socialImage+"\x26p[title]="+socialText+"\x26p[summary]="+socialText;break ;;case "twitter":url="http://twitter.com/share?url="+socialURL+"\x26text="+socialText;break ;;case "plusone":url="https://plusone.google.com/_/+1/confirm?hl=en\x26url="+socialURL;break ;;case "pinterest":url="http://pinterest.com/pin/create/button/?url="+socialURL+"\x26media="+socialImage+"\x26description="+socialText;break ;;} ;window["open"](url,"","left="+left+" , top="+top+", width="+width+", height="+height+", personalbar=0, toolbar=0, scrollbars=1, resizable=1");} );} );} ;} (jQuery));
PK!��'�



js/jquery.appear.jsnu&1i� /*
 * jQuery.appear
 * https://github.com/bas2k/jquery.appear/
 * http://code.google.com/p/jquery-appear/
 *
 * Copyright (c) 2009 Michael Hixson
 * Copyright (c) 2012 Alexander Brovikov
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 */
(function($) {
	$.fn.appear = function(fn, options) {

		var settings = $.extend({

			//arbitrary data to pass to fn
			data: undefined,

			//call fn only on the first appear?
			one: true,

			// X & Y accuracy
			accX: 0,
			accY: 0

		}, options);

		return this.each(function() {

			var t = $(this);

			//whether the element is currently visible
			t.appeared = false;

			if (!fn) {

				//trigger the custom event
				t.trigger('appear', settings.data);
				return;
			}

			var w = $(window);

			//fires the appear event when appropriate
			var check = function() {

				//is the element hidden?
				if (!t.is(':visible')) {

					//it became hidden
					t.appeared = false;
					return;
				}

				//is the element inside the visible window?
				var a = w.scrollLeft();
				var b = w.scrollTop();
				var o = t.offset();
				var x = o.left;
				var y = o.top;

				var ax = settings.accX;
				var ay = settings.accY;
				var th = t.height();
				var wh = w.height();
				var tw = t.width();
				var ww = w.width();

				if (y + th + ay >= b &&
					y <= b + wh + ay &&
					x + tw + ax >= a &&
					x <= a + ww + ax) {

					//trigger the custom event
					if (!t.appeared) t.trigger('appear', settings.data);

				} else {

					//it scrolled out of view
					t.appeared = false;
				}
			};

			//create a modified fn with some additional logic
			var modifiedFn = function() {

				//mark the element as visible
				t.appeared = true;

				//is this supposed to happen only once?
				if (settings.one) {

					//remove the check
					w.unbind('scroll', check);
					var i = $.inArray(check, $.fn.appear.checks);
					if (i >= 0) $.fn.appear.checks.splice(i, 1);
				}

				//trigger the original fn
				fn.apply(this, arguments);
			};

			//bind the modified fn to the element
			if (settings.one) t.one('appear', settings.data, modifiedFn);
			else t.bind('appear', settings.data, modifiedFn);

			//check whenever the window scrolls
			w.scroll(check);

			//check whenever the dom changes
			$.fn.appear.checks.push(check);

			//check now
			(check)();
		});
	};

	//keep a queue of appearance checks
	$.extend($.fn.appear, {

		checks: [],
		timeout: null,

		//process the queue
		checkAll: function() {
			var length = $.fn.appear.checks.length;
			if (length > 0) while (length--) ($.fn.appear.checks[length])();
		},

		//check the queue asynchronously
		run: function() {
			if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout);
			$.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20);
		}
	});

	//run checks when these methods are called
	$.each(['append', 'prepend', 'after', 'before', 'attr',
		'removeAttr', 'addClass', 'removeClass', 'toggleClass',
		'remove', 'css', 'show', 'hide'], function(i, n) {
		var old = $.fn[n];
		if (old) {
			$.fn[n] = function() {
				var r = old.apply(this, arguments);
				$.fn.appear.run();
				return r;
			}
		}
	});

})(jQuery);PK!�	���
component.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app             = JFactory::getApplication();
$doc             = JFactory::getDocument();
$this->language  = $doc->language;
$this->direction = $doc->direction;

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

// Add Stylesheets
$doc->addStyleSheet('templates/' . $this->template . '/css/template.css');

// Load optional rtl Bootstrap css and Bootstrap bugfixes
JHtmlBootstrap::loadCss($includeMaincss = false, $this->direction);

?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
<jdoc:include type="head" />
<!--[if lt IE 9]>
	<script src="<?php echo $this->baseurl; ?>/media/jui/js/html5.js"></script>
<![endif]-->
</head>
<body class="contentpane modal">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>
PK!E�x���templateDetails.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/2.5/template-install.dtd">
<extension version="3.1" type="template" client="site">
	<name>Bizone</name>
	<version>1.0</version>
	<creationDate>08/10/2015</creationDate>
	<author>CMS BlueTheme</author>
	<authorEmail>contact.bluetheme@gmail.com</authorEmail>
	<copyright>Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.</copyright>
	<description>TPL_BIZONE_XML_DESCRIPTION</description>
	<files>
		<filename>component.php</filename>
		<filename>error.php</filename>
		<filename>index.php</filename>
		<filename>templateDetails.xml</filename>
		<filename>template_preview.png</filename>
		<filename>template_thumbnail.png</filename>
		<folder>css</folder>
		<folder>html</folder>
		<folder>images</folder>
		<folder>fonts</folder>
		<folder>js</folder>
		<folder>language</folder>
	</files>
	<positions>
		<position>debug</position>
		<position>bizone-top</position>
		<position>bizone-topmenu</position>
		<position>bizone-navmenu</position>
		<position>bizone-breadcrumbs</position>
		<position>bizone-search</position>
		<position>bizone-right</position>
		<position>bizone-footer</position>
	</positions>
	<languages folder="language">
		<language tag="en-GB">en-GB/en-GB.tpl_bizone.ini</language>
		<language tag="en-GB">en-GB/en-GB.tpl_bizone.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="advanced">
				<field name="logoFile" class="" type="media" default=""
					label="TPL_BIZONE_LOGO_LABEL"
					description="TPL_BIZONE_LOGO_DESC " />
				<field name="logoFile_2" class="" type="media" default=""
					label="Logo sticky, agency menu"
					description="TPL_BIZONE_LOGO_DESC " />
				<field name="favicon" class="" type="media" default=""
					label="TPL_BIZONE_FAVICO_LABEL"
					description="TPL_BIZONE_FAVICO_DESC " />
				<field name="bt_bgheader" class="" type="media" default=""
					label="Background Header"
					description="Choose background header in blog" />
				<field name="cssbefore"  type="textarea" default=""
					label="TPL_BIZONE_CSS_LABEL"
					description="TPL_BIZONE_CSS_DESC"
					row="10"
					cols="5" />
				<field name="jsbefore"  type="textarea" default=""
					label="TPL_BIZONE_JS_LABEL"
					description="TPL_BIZONE_JS_DESC"
					row="10"
					cols="5" />
				<field name="apple-touch" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_DESC " />
				<field name="apple-touch-57" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_57_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_57_DESC " />
				<field name="apple-touch-72" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_72_LABEL"
					description="TPL_BIZONE_APPLE_72_TOUCH_DESC " />
				<field name="apple-touch-114" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_114_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_114_DESC " />
				<field name="apple-touch-144" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_144_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_144_DESC " />
			</fieldset>

			<fieldset name="layout">

                <field name="xml_404_page" type="menuitem"
					label="TPL_BIZONE_404_PAGE_LABEL"
					description="TPL_BIZONE_404_PAGE_DESC" />

				<field name="bt_layout" type="list" label="Layout" description="">
		        	<option value="0" >Default</option>
					<option value="index_2">Business Version</option>
		            <option value="index_3" >Attorney / Law Version</option>
		            <option value="index_4" >Studio / Agency Version</option>
		            <option value="index_5" >Finance Version</option>
		            <option value="index_6" >Corporate Version</option>
		            <option value="index_7" >Construction</option>
		            <option value="index_8" >Food / Restaurant</option>
		            <option value="index_9" >Video Slider</option>
		            <option value="index_10" >Parallax Version</option>
		            <option value="index_11" >Education</option>
		            <option value="index_12" >FullScreen</option>
		            <option value="index_13" >Side Menu</option>
		            <option value="index_14" >Agency - Side Menu</option>
				</field>

				<field name="maincolor" class="" type="color" default=""
					label="Custom Main Color"
					description=" " />

				<field name="googleFont"
					type="radio"
					class="btn-group btn-group-yesno"
					default="1"
					label="TPL_BIZONE_FONT_LABEL"
					description="TPL_BIZONE_FONT_DESC"
				>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>

				<field name="googleFontName" class="" type="text" default="Open+Sans"
					showon="googleFont:1"
					label="TPL_BIZONE_FONT_NAME_LABEL"
					description="TPL_BIZONE_FONT_NAME_DESC" />
			</fieldset>

			<fieldset name="other">
				<field name="btloading"
					type="radio"
					class="btn-group btn-group-yesno"
					default="1"
					label="TPL_BIZONE_LOADING_LABEL"
					description=""
				>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>
				<field name="stateggcaptcha" type="list" default="0" 
					label="TPL_BIZONE_STATE_CAPTCHA_LABEL" description="">
					  <option value="0">No</option>
					  <option value="1">Yes</option>
				</field>
				<field name="captchasitekey" type="password" default=""
					showon="stateggcaptcha:1"
					label="TPL_BIZONE_SITEKEY_LABEL" 
					description="" />
				<field name="captchasecret" type="password" default=""
					showon="stateggcaptcha:1"
					label="TPL_BIZONE_SECRET_LABEL" 
					description="" />
			</fieldset>	
		</fields>
	</config>
</extension>PK!����css/jquery.fancybox-thumbs.cssnu&1i�#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
	max-width: none;
}PK!���iicss/icomoon-fonts.cssnu&1i�@font-face {
    font-family: 'icomoon';
    src:    url('../fonts/icomoon.eot?atrcei');
    src:    url('../fonts/icomoon.eot?atrcei#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?atrcei') format('truetype'),
        url('../fonts/icomoon.woff?atrcei') format('woff'),
        url('../fonts/icomoon.svg?atrcei#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-icons9:before {
    content: "\e900";
}
.icon-icons20:before {
    content: "\e901";
}
.icon-icons37:before {
    content: "\e902";
}
.icon-icons39:before {
    content: "\e903";
}
.icon-icons42:before {
    content: "\e904";
}
.icon-icons96:before {
    content: "\e905";
}
.icon-icons112:before {
    content: "\e906";
}
.icon-icons158:before {
    content: "\e907";
}
.icon-icons163:before {
    content: "\e908";
}
.icon-icons171:before {
    content: "\e909";
}
.icon-icons180:before {
    content: "\e90a";
}
.icon-icons185:before {
    content: "\e90b";
}
.icon-icons202:before {
    content: "\e90c";
}
.icon-icons206:before {
    content: "\e90d";
}
.icon-icons208:before {
    content: "\e90e";
}
.icon-icons236:before {
    content: "\e90f";
}
.icon-mobile3:before {
    content: "\e000";
}
.icon-laptop2:before {
    content: "\e001";
}
.icon-desktop:before {
    content: "\e002";
}
.icon-tablet2:before {
    content: "\e003";
}
.icon-phone2:before {
    content: "\e004";
}
.icon-document:before {
    content: "\e005";
}
.icon-documents:before {
    content: "\e006";
}
.icon-search2:before {
    content: "\e007";
}
.icon-clipboard2:before {
    content: "\e008";
}
.icon-newspaper2:before {
    content: "\e009";
}
.icon-notebook:before {
    content: "\e00a";
}
.icon-book-open:before {
    content: "\e00b";
}
.icon-browser:before {
    content: "\e00c";
}
.icon-calendar2:before {
    content: "\e00d";
}
.icon-presentation:before {
    content: "\e00e";
}
.icon-picture:before {
    content: "\e00f";
}
.icon-pictures:before {
    content: "\e010";
}
.icon-video:before {
    content: "\e011";
}
.icon-camera2:before {
    content: "\e012";
}
.icon-printer2:before {
    content: "\e013";
}
.icon-toolbox:before {
    content: "\e014";
}
.icon-briefcase2:before {
    content: "\e015";
}
.icon-wallet:before {
    content: "\e016";
}
.icon-gift2:before {
    content: "\e017";
}
.icon-bargraph:before {
    content: "\e018";
}
.icon-grid:before {
    content: "\e019";
}
.icon-expand:before {
    content: "\e01a";
}
.icon-focus:before {
    content: "\e01b";
}
.icon-edit:before {
    content: "\e01c";
}
.icon-adjustments:before {
    content: "\e01d";
}
.icon-ribbon:before {
    content: "\e01e";
}
.icon-hourglass:before {
    content: "\e01f";
}
.icon-lock2:before {
    content: "\e020";
}
.icon-megaphone:before {
    content: "\e021";
}
.icon-shield2:before {
    content: "\e022";
}
.icon-trophy2:before {
    content: "\e023";
}
.icon-flag2:before {
    content: "\e024";
}
.icon-map3:before {
    content: "\e025";
}
.icon-puzzle:before {
    content: "\e026";
}
.icon-basket:before {
    content: "\e027";
}
.icon-envelope:before {
    content: "\e028";
}
.icon-streetsign:before {
    content: "\e029";
}
.icon-telescope:before {
    content: "\e02a";
}
.icon-gears:before {
    content: "\e02b";
}
.icon-key3:before {
    content: "\e02c";
}
.icon-paperclip:before {
    content: "\e02d";
}
.icon-attachment2:before {
    content: "\e02e";
}
.icon-pricetags:before {
    content: "\e02f";
}
.icon-lightbulb:before {
    content: "\e030";
}
.icon-layers:before {
    content: "\e031";
}
.icon-pencil3:before {
    content: "\e032";
}
.icon-tools:before {
    content: "\e033";
}
.icon-tools-2:before {
    content: "\e034";
}
.icon-scissors2:before {
    content: "\e035";
}
.icon-paintbrush:before {
    content: "\e036";
}
.icon-magnifying-glass:before {
    content: "\e037";
}
.icon-circle-compass:before {
    content: "\e038";
}
.icon-linegraph:before {
    content: "\e039";
}
.icon-mic2:before {
    content: "\e03a";
}
.icon-strategy:before {
    content: "\e03b";
}
.icon-beaker:before {
    content: "\e03c";
}
.icon-caution:before {
    content: "\e03d";
}
.icon-recycle:before {
    content: "\e03e";
}
.icon-anchor:before {
    content: "\e03f";
}
.icon-profile-male:before {
    content: "\e040";
}
.icon-profile-female:before {
    content: "\e041";
}
.icon-bike:before {
    content: "\e042";
}
.icon-wine:before {
    content: "\e043";
}
.icon-hotairballoon:before {
    content: "\e044";
}
.icon-globe:before {
    content: "\e045";
}
.icon-genius:before {
    content: "\e046";
}
.icon-map-pin:before {
    content: "\e047";
}
.icon-dial:before {
    content: "\e048";
}
.icon-chat:before {
    content: "\e049";
}
.icon-heart2:before {
    content: "\e04a";
}
.icon-cloud2:before {
    content: "\e04b";
}
.icon-upload4:before {
    content: "\e04c";
}
.icon-download4:before {
    content: "\e04d";
}
.icon-target2:before {
    content: "\e04e";
}
.icon-hazardous:before {
    content: "\e04f";
}
.icon-piechart:before {
    content: "\e050";
}
.icon-speedometer:before {
    content: "\e051";
}
.icon-global:before {
    content: "\e052";
}
.icon-compass3:before {
    content: "\e053";
}
.icon-lifesaver:before {
    content: "\e054";
}
.icon-clock3:before {
    content: "\e055";
}
.icon-aperture:before {
    content: "\e056";
}
.icon-quote:before {
    content: "\e057";
}
.icon-scope:before {
    content: "\e058";
}
.icon-alarmclock:before {
    content: "\e059";
}
.icon-refresh:before {
    content: "\e05a";
}
.icon-happy3:before {
    content: "\e05b";
}
.icon-sad3:before {
    content: "\e05c";
}
.icon-facebook3:before {
    content: "\e05d";
}
.icon-twitter2:before {
    content: "\e05e";
}
.icon-googleplus:before {
    content: "\e05f";
}
.icon-rss3:before {
    content: "\e060";
}
.icon-tumblr3:before {
    content: "\e061";
}
.icon-linkedin3:before {
    content: "\e062";
}
.icon-dribbble2:before {
    content: "\e063";
}
.icon-heart3:before {
    content: "\e910";
}
.icon-cloud3:before {
    content: "\e911";
}
.icon-star:before {
    content: "\e912";
}
.icon-tv2:before {
    content: "\e913";
}
.icon-sound:before {
    content: "\e914";
}
.icon-video2:before {
    content: "\e915";
}
.icon-trash:before {
    content: "\e916";
}
.icon-user2:before {
    content: "\e917";
}
.icon-key4:before {
    content: "\e918";
}
.icon-search3:before {
    content: "\e919";
}
.icon-settings:before {
    content: "\e91a";
}
.icon-camera3:before {
    content: "\e91b";
}
.icon-tag:before {
    content: "\e91c";
}
.icon-lock3:before {
    content: "\e91d";
}
.icon-bulb:before {
    content: "\e91e";
}
.icon-pen2:before {
    content: "\e91f";
}
.icon-diamond:before {
    content: "\e920";
}
.icon-display2:before {
    content: "\e921";
}
.icon-location3:before {
    content: "\e922";
}
.icon-eye2:before {
    content: "\e923";
}
.icon-bubble3:before {
    content: "\e924";
}
.icon-stack2:before {
    content: "\e925";
}
.icon-cup:before {
    content: "\e926";
}
.icon-phone3:before {
    content: "\e927";
}
.icon-news:before {
    content: "\e928";
}
.icon-mail5:before {
    content: "\e929";
}
.icon-like:before {
    content: "\e92a";
}
.icon-photo:before {
    content: "\e92b";
}
.icon-note:before {
    content: "\e92c";
}
.icon-clock4:before {
    content: "\e92d";
}
.icon-paperplane:before {
    content: "\e92e";
}
.icon-params:before {
    content: "\e92f";
}
.icon-banknote:before {
    content: "\e930";
}
.icon-data:before {
    content: "\e931";
}
.icon-music2:before {
    content: "\e932";
}
.icon-megaphone2:before {
    content: "\e933";
}
.icon-study:before {
    content: "\e934";
}
.icon-lab2:before {
    content: "\e935";
}
.icon-food:before {
    content: "\e936";
}
.icon-t-shirt:before {
    content: "\e937";
}
.icon-fire2:before {
    content: "\e938";
}
.icon-clip:before {
    content: "\e939";
}
.icon-shop:before {
    content: "\e93a";
}
.icon-calendar3:before {
    content: "\e93b";
}
.icon-wallet2:before {
    content: "\e93c";
}
.icon-vynil:before {
    content: "\e93d";
}
.icon-truck2:before {
    content: "\e93e";
}
.icon-world:before {
    content: "\e93f";
}
.icon-mail-envelope:before {
    content: "\e940";
}
.icon-mail-envelope2:before {
    content: "\e941";
}
.icon-mail-envelope-open:before {
    content: "\e942";
}
.icon-mail-envelope-open2:before {
    content: "\e943";
}
.icon-mail-envelope-closed:before {
    content: "\e944";
}
.icon-mail-envelope-closed2:before {
    content: "\e945";
}
.icon-mail-envelope-open3:before {
    content: "\e946";
}
.icon-mail-envelope-open4:before {
    content: "\e947";
}
.icon-mail-envelope-open5:before {
    content: "\e948";
}
.icon-mail-envelope-open6:before {
    content: "\e949";
}
.icon-mail-envelope-closed3:before {
    content: "\e94a";
}
.icon-mail-envelope-closed4:before {
    content: "\e94b";
}
.icon-mail-envelope-open7:before {
    content: "\e94c";
}
.icon-mail-envelope-open8:before {
    content: "\e94d";
}
.icon-mail-error:before {
    content: "\e94e";
}
.icon-mail-error2:before {
    content: "\e94f";
}
.icon-mail-checked:before {
    content: "\e950";
}
.icon-mail-checked2:before {
    content: "\e951";
}
.icon-mail-cancel:before {
    content: "\e952";
}
.icon-mail-cancel2:before {
    content: "\e953";
}
.icon-mail--forbidden:before {
    content: "\e954";
}
.icon-mail--forbidden2:before {
    content: "\e955";
}
.icon-mail-add:before {
    content: "\e956";
}
.icon-mail-add2:before {
    content: "\e957";
}
.icon-mail-remove:before {
    content: "\e958";
}
.icon-mail-remove2:before {
    content: "\e959";
}
.icon-flag3:before {
    content: "\e95a";
}
.icon-flag4:before {
    content: "\e95b";
}
.icon-flag5:before {
    content: "\e95c";
}
.icon-flag6:before {
    content: "\e95d";
}
.icon-flag7:before {
    content: "\e95e";
}
.icon-flag8:before {
    content: "\e95f";
}
.icon-flag9:before {
    content: "\e960";
}
.icon-flag10:before {
    content: "\e961";
}
.icon-bookmark2:before {
    content: "\e962";
}
.icon-bookmark3:before {
    content: "\e963";
}
.icon-bookmark-add:before {
    content: "\e964";
}
.icon-bookmark-add2:before {
    content: "\e965";
}
.icon-bookmark-remove:before {
    content: "\e966";
}
.icon-bookmark-remove2:before {
    content: "\e967";
}
.icon-eye-hidden:before {
    content: "\e968";
}
.icon-eye-hidden2:before {
    content: "\e969";
}
.icon-eye3:before {
    content: "\e96a";
}
.icon-eye4:before {
    content: "\e96b";
}
.icon-star2:before {
    content: "\e96c";
}
.icon-star3:before {
    content: "\e96d";
}
.icon-key5:before {
    content: "\e96e";
}
.icon-key6:before {
    content: "\e96f";
}
.icon-key7:before {
    content: "\e970";
}
.icon-key8:before {
    content: "\e971";
}
.icon-trash-can:before {
    content: "\e972";
}
.icon-trash-can2:before {
    content: "\e973";
}
.icon-trash-can3:before {
    content: "\e974";
}
.icon-trash-can4:before {
    content: "\e975";
}
.icon-information:before {
    content: "\e976";
}
.icon-information2:before {
    content: "\e977";
}
.icon-information3:before {
    content: "\e978";
}
.icon-information4:before {
    content: "\e979";
}
.icon-book2:before {
    content: "\e97a";
}
.icon-book3:before {
    content: "\e97b";
}
.icon-book-bookmark:before {
    content: "\e97c";
}
.icon-book-bookmark2:before {
    content: "\e97d";
}
.icon-clipboard-edit:before {
    content: "\e97e";
}
.icon-clipboard-edit2:before {
    content: "\e97f";
}
.icon-clipboard-add:before {
    content: "\e980";
}
.icon-clipboard-add2:before {
    content: "\e981";
}
.icon-clipboard-remove:before {
    content: "\e982";
}
.icon-clipboard-remove2:before {
    content: "\e983";
}
.icon-clipboard3:before {
    content: "\e984";
}
.icon-clipboard4:before {
    content: "\e985";
}
.icon-clipboard-download:before {
    content: "\e986";
}
.icon-clipboard-download2:before {
    content: "\e987";
}
.icon-clipboard-upload:before {
    content: "\e988";
}
.icon-clipboard-upload2:before {
    content: "\e989";
}
.icon-clipboard-checked:before {
    content: "\e98a";
}
.icon-clipboard-checked2:before {
    content: "\e98b";
}
.icon-clipboard-text:before {
    content: "\e98c";
}
.icon-clipboard-text2:before {
    content: "\e98d";
}
.icon-clipboard-list:before {
    content: "\e98e";
}
.icon-clipboard-list2:before {
    content: "\e98f";
}
.icon-note2:before {
    content: "\e990";
}
.icon-note3:before {
    content: "\e991";
}
.icon-note-add:before {
    content: "\e992";
}
.icon-note-add2:before {
    content: "\e993";
}
.icon-note-remove:before {
    content: "\e994";
}
.icon-note-remove2:before {
    content: "\e995";
}
.icon-note-text:before {
    content: "\e996";
}
.icon-note-text2:before {
    content: "\e997";
}
.icon-note-list:before {
    content: "\e998";
}
.icon-note-list2:before {
    content: "\e999";
}
.icon-note-checked:before {
    content: "\e99a";
}
.icon-note-checked2:before {
    content: "\e99b";
}
.icon-note-important:before {
    content: "\e99c";
}
.icon-note-important2:before {
    content: "\e99d";
}
.icon-notebook2:before {
    content: "\e99e";
}
.icon-notebook3:before {
    content: "\e99f";
}
.icon-notebook4:before {
    content: "\e9a0";
}
.icon-notebook5:before {
    content: "\e9a1";
}
.icon-notebook6:before {
    content: "\e9a2";
}
.icon-notebook7:before {
    content: "\e9a3";
}
.icon-notebook8:before {
    content: "\e9a4";
}
.icon-notebook9:before {
    content: "\e9a5";
}
.icon-notebook-text:before {
    content: "\e9a6";
}
.icon-notebook-text2:before {
    content: "\e9a7";
}
.icon-notebook-list:before {
    content: "\e9a8";
}
.icon-notebook-list2:before {
    content: "\e9a9";
}
.icon-document2:before {
    content: "\e9aa";
}
.icon-document3:before {
    content: "\e9ab";
}
.icon-document-text:before {
    content: "\e9ac";
}
.icon-document-text2:before {
    content: "\e9ad";
}
.icon-document-text3:before {
    content: "\e9ae";
}
.icon-document-text4:before {
    content: "\e9af";
}
.icon-document-download:before {
    content: "\e9b0";
}
.icon-document-download2:before {
    content: "\e9b1";
}
.icon-document-upload:before {
    content: "\e9b2";
}
.icon-document-upload2:before {
    content: "\e9b3";
}
.icon-document-bookmark:before {
    content: "\e9b4";
}
.icon-document-bookmark2:before {
    content: "\e9b5";
}
.icon-document-diagrams:before {
    content: "\e9b6";
}
.icon-document-diagrams2:before {
    content: "\e9b7";
}
.icon-document-recording:before {
    content: "\e9b8";
}
.icon-document-recording2:before {
    content: "\e9b9";
}
.icon-document-table:before {
    content: "\e9ba";
}
.icon-document-table2:before {
    content: "\e9bb";
}
.icon-document-music:before {
    content: "\e9bc";
}
.icon-document-music2:before {
    content: "\e9bd";
}
.icon-document-movie:before {
    content: "\e9be";
}
.icon-document-movie2:before {
    content: "\e9bf";
}
.icon-document-play:before {
    content: "\e9c0";
}
.icon-document-play2:before {
    content: "\e9c1";
}
.icon-document-graph:before {
    content: "\e9c2";
}
.icon-document-graph2:before {
    content: "\e9c3";
}
.icon-document-time:before {
    content: "\e9c4";
}
.icon-document-time2:before {
    content: "\e9c5";
}
.icon-document-text5:before {
    content: "\e9c6";
}
.icon-document-text6:before {
    content: "\e9c7";
}
.icon-document-code:before {
    content: "\e9c8";
}
.icon-document-code2:before {
    content: "\e9c9";
}
.icon-document-cloud:before {
    content: "\e9ca";
}
.icon-document-cloud2:before {
    content: "\e9cb";
}
.icon-documents2:before {
    content: "\e9cc";
}
.icon-documents3:before {
    content: "\e9cd";
}
.icon-documents4:before {
    content: "\e9ce";
}
.icon-documents5:before {
    content: "\e9cf";
}
.icon-document-search:before {
    content: "\e9d0";
}
.icon-document-search2:before {
    content: "\e9d1";
}
.icon-document-star:before {
    content: "\e9d2";
}
.icon-document-star2:before {
    content: "\e9d3";
}
.icon-document-unlocked:before {
    content: "\e9d4";
}
.icon-document-unlocked2:before {
    content: "\e9d5";
}
.icon-document-locked:before {
    content: "\e9d6";
}
.icon-document-locked2:before {
    content: "\e9d7";
}
.icon-document-error:before {
    content: "\e9d8";
}
.icon-document-error2:before {
    content: "\e9d9";
}
.icon-document-cancel:before {
    content: "\e9da";
}
.icon-document-cancel2:before {
    content: "\e9db";
}
.icon-document-checked:before {
    content: "\e9dc";
}
.icon-document-checked2:before {
    content: "\e9dd";
}
.icon-document-add:before {
    content: "\e9de";
}
.icon-document-add2:before {
    content: "\e9df";
}
.icon-document-remove:before {
    content: "\e9e0";
}
.icon-document-remove2:before {
    content: "\e9e1";
}
.icon-document-forbidden:before {
    content: "\e9e2";
}
.icon-document-forbidden2:before {
    content: "\e9e3";
}
.icon-document-information:before {
    content: "\e9e4";
}
.icon-document-information2:before {
    content: "\e9e5";
}
.icon-folder-information:before {
    content: "\e9e6";
}
.icon-folder-information2:before {
    content: "\e9e7";
}
.icon-document-list:before {
    content: "\e9e8";
}
.icon-document-list2:before {
    content: "\e9e9";
}
.icon-document-font:before {
    content: "\e9ea";
}
.icon-document-font2:before {
    content: "\e9eb";
}
.icon-inbox:before {
    content: "\e9ec";
}
.icon-inbox2:before {
    content: "\e9ed";
}
.icon-inboxes:before {
    content: "\e9ee";
}
.icon-inboxes2:before {
    content: "\e9ef";
}
.icon-inbox-document:before {
    content: "\e9f0";
}
.icon-inbox-document2:before {
    content: "\e9f1";
}
.icon-inbox-document-text:before {
    content: "\e9f2";
}
.icon-inbox-document-text2:before {
    content: "\e9f3";
}
.icon-inbox-download:before {
    content: "\e9f4";
}
.icon-inbox-download2:before {
    content: "\e9f5";
}
.icon-inbox-upload:before {
    content: "\e9f6";
}
.icon-inbox-upload2:before {
    content: "\e9f7";
}
.icon-folder2:before {
    content: "\e9f8";
}
.icon-folder3:before {
    content: "\e9f9";
}
.icon-folder4:before {
    content: "\e9fa";
}
.icon-folder5:before {
    content: "\e9fb";
}
.icon-folders:before {
    content: "\e9fc";
}
.icon-folders2:before {
    content: "\e9fd";
}
.icon-folder-download2:before {
    content: "\e9fe";
}
.icon-folder-download3:before {
    content: "\e9ff";
}
.icon-folder-upload2:before {
    content: "\ea00";
}
.icon-folder-upload3:before {
    content: "\ea01";
}
.icon-folder-unlocked:before {
    content: "\ea02";
}
.icon-folder-unlocked2:before {
    content: "\ea03";
}
.icon-folder-locked:before {
    content: "\ea04";
}
.icon-folder-locked2:before {
    content: "\ea05";
}
.icon-folder-search:before {
    content: "\ea06";
}
.icon-folder-search2:before {
    content: "\ea07";
}
.icon-folder-error:before {
    content: "\ea08";
}
.icon-folder-error2:before {
    content: "\ea09";
}
.icon-folder-cancel:before {
    content: "\ea0a";
}
.icon-folder-cancel2:before {
    content: "\ea0b";
}
.icon-folder-checked:before {
    content: "\ea0c";
}
.icon-folder-checked2:before {
    content: "\ea0d";
}
.icon-folder-add:before {
    content: "\ea0e";
}
.icon-folder-add2:before {
    content: "\ea0f";
}
.icon-folder-remove:before {
    content: "\ea10";
}
.icon-folder-remove2:before {
    content: "\ea11";
}
.icon-folder-forbidden:before {
    content: "\ea12";
}
.icon-folder-forbidden2:before {
    content: "\ea13";
}
.icon-folder-bookmark:before {
    content: "\ea14";
}
.icon-folder-bookmark2:before {
    content: "\ea15";
}
.icon-document-zip:before {
    content: "\ea16";
}
.icon-document-zip2:before {
    content: "\ea17";
}
.icon-zip:before {
    content: "\ea18";
}
.icon-zip2:before {
    content: "\ea19";
}
.icon-search4:before {
    content: "\ea1a";
}
.icon-search5:before {
    content: "\ea1b";
}
.icon-search-plus:before {
    content: "\ea1c";
}
.icon-search-plus2:before {
    content: "\ea1d";
}
.icon-search-minus:before {
    content: "\ea1e";
}
.icon-search-minus2:before {
    content: "\ea1f";
}
.icon-lock4:before {
    content: "\ea20";
}
.icon-lock5:before {
    content: "\ea21";
}
.icon-lock-open:before {
    content: "\ea22";
}
.icon-lock-open2:before {
    content: "\ea23";
}
.icon-lock-open3:before {
    content: "\ea24";
}
.icon-lock-open4:before {
    content: "\ea25";
}
.icon-lock-stripes:before {
    content: "\ea26";
}
.icon-lock-stripes2:before {
    content: "\ea27";
}
.icon-lock-rounded:before {
    content: "\ea28";
}
.icon-lock-rounded2:before {
    content: "\ea29";
}
.icon-lock-rounded-open:before {
    content: "\ea2a";
}
.icon-lock-rounded-open2:before {
    content: "\ea2b";
}
.icon-lock-rounded-open3:before {
    content: "\ea2c";
}
.icon-lock-rounded-open4:before {
    content: "\ea2d";
}
.icon-combination-lock:before {
    content: "\ea2e";
}
.icon-combination-lock2:before {
    content: "\ea2f";
}
.icon-printer3:before {
    content: "\ea30";
}
.icon-printer4:before {
    content: "\ea31";
}
.icon-printer5:before {
    content: "\ea32";
}
.icon-printer6:before {
    content: "\ea33";
}
.icon-printer-text:before {
    content: "\ea34";
}
.icon-printer-text2:before {
    content: "\ea35";
}
.icon-printer-text3:before {
    content: "\ea36";
}
.icon-printer-text4:before {
    content: "\ea37";
}
.icon-document-shred:before {
    content: "\ea38";
}
.icon-document-shred2:before {
    content: "\ea39";
}
.icon-shredder:before {
    content: "\ea3a";
}
.icon-shredder2:before {
    content: "\ea3b";
}
.icon-document-scan:before {
    content: "\ea3c";
}
.icon-document-scan2:before {
    content: "\ea3d";
}
.icon-cloud-download2:before {
    content: "\ea3e";
}
.icon-cloud-download3:before {
    content: "\ea3f";
}
.icon-cloud-upload2:before {
    content: "\ea40";
}
.icon-cloud-upload3:before {
    content: "\ea41";
}
.icon-cloud-error:before {
    content: "\ea42";
}
.icon-cloud-error2:before {
    content: "\ea43";
}
.icon-cloud4:before {
    content: "\ea44";
}
.icon-cloud5:before {
    content: "\ea45";
}
.icon-inbox-filled:before {
    content: "\ea46";
}
.icon-inbox-filled2:before {
    content: "\ea47";
}
.icon-pen3:before {
    content: "\ea48";
}
.icon-pen4:before {
    content: "\ea49";
}
.icon-pen-angled:before {
    content: "\ea4a";
}
.icon-pen-angled2:before {
    content: "\ea4b";
}
.icon-document-edit:before {
    content: "\ea4c";
}
.icon-document-edit2:before {
    content: "\ea4d";
}
.icon-document-certificate:before {
    content: "\ea4e";
}
.icon-document-certificate2:before {
    content: "\ea4f";
}
.icon-certificate:before {
    content: "\ea50";
}
.icon-certificate2:before {
    content: "\ea51";
}
.icon-package:before {
    content: "\ea52";
}
.icon-package2:before {
    content: "\ea53";
}
.icon-box:before {
    content: "\ea54";
}
.icon-box2:before {
    content: "\ea55";
}
.icon-box-filled:before {
    content: "\ea56";
}
.icon-box-filled2:before {
    content: "\ea57";
}
.icon-box3:before {
    content: "\ea58";
}
.icon-box4:before {
    content: "\ea59";
}
.icon-box5:before {
    content: "\ea5a";
}
.icon-box6:before {
    content: "\ea5b";
}
.icon-box-bookmark:before {
    content: "\ea5c";
}
.icon-box-bookmark2:before {
    content: "\ea5d";
}
.icon-tag-cord:before {
    content: "\ea5e";
}
.icon-tag-cord2:before {
    content: "\ea5f";
}
.icon-tag2:before {
    content: "\ea60";
}
.icon-tag3:before {
    content: "\ea61";
}
.icon-tags:before {
    content: "\ea62";
}
.icon-tags2:before {
    content: "\ea63";
}
.icon-tag-add:before {
    content: "\ea64";
}
.icon-tag-add2:before {
    content: "\ea65";
}
.icon-tag-remove:before {
    content: "\ea66";
}
.icon-tag-remove2:before {
    content: "\ea67";
}
.icon-tag-checked:before {
    content: "\ea68";
}
.icon-tag-checked2:before {
    content: "\ea69";
}
.icon-tag-cancel:before {
    content: "\ea6a";
}
.icon-tag-cancel2:before {
    content: "\ea6b";
}
.icon-paperclip2:before {
    content: "\ea6c";
}
.icon-paperclip3:before {
    content: "\ea6d";
}
.icon-basketball:before {
    content: "\ea6e";
}
.icon-basketball2:before {
    content: "\ea6f";
}
.icon-baseball:before {
    content: "\ea70";
}
.icon-baseball2:before {
    content: "\ea71";
}
.icon-tennis-ball:before {
    content: "\ea72";
}
.icon-tennis-ball2:before {
    content: "\ea73";
}
.icon-bowling-ball:before {
    content: "\ea74";
}
.icon-bowling-ball2:before {
    content: "\ea75";
}
.icon-billiard-ball:before {
    content: "\ea76";
}
.icon-billiard-ball2:before {
    content: "\ea77";
}
.icon-soccer-ball:before {
    content: "\ea78";
}
.icon-soccer-ball2:before {
    content: "\ea79";
}
.icon-soccer-court:before {
    content: "\ea7a";
}
.icon-soccer-court2:before {
    content: "\ea7b";
}
.icon-football:before {
    content: "\ea7c";
}
.icon-football2:before {
    content: "\ea7d";
}
.icon-football3:before {
    content: "\ea7e";
}
.icon-football4:before {
    content: "\ea7f";
}
.icon-basketball3:before {
    content: "\ea80";
}
.icon-basketball4:before {
    content: "\ea81";
}
.icon-baseball-set:before {
    content: "\ea82";
}
.icon-baseball-set2:before {
    content: "\ea83";
}
.icon-tennis-ball3:before {
    content: "\ea84";
}
.icon-tennis-ball4:before {
    content: "\ea85";
}
.icon-trophy3:before {
    content: "\ea86";
}
.icon-trophy4:before {
    content: "\ea87";
}
.icon-trophy-one:before {
    content: "\ea88";
}
.icon-trophy-one2:before {
    content: "\ea89";
}
.icon-trophy5:before {
    content: "\ea8a";
}
.icon-trophy6:before {
    content: "\ea8b";
}
.icon-medal:before {
    content: "\ea8c";
}
.icon-medal2:before {
    content: "\ea8d";
}
.icon-medal3:before {
    content: "\ea8e";
}
.icon-medal4:before {
    content: "\ea8f";
}
.icon-weights:before {
    content: "\ea90";
}
.icon-weights2:before {
    content: "\ea91";
}
.icon-tennis-racket:before {
    content: "\ea92";
}
.icon-tennis-racket2:before {
    content: "\ea93";
}
.icon-basketball-hoop:before {
    content: "\ea94";
}
.icon-basketball-hoop2:before {
    content: "\ea95";
}
.icon-table-tennis:before {
    content: "\ea96";
}
.icon-table-tennis2:before {
    content: "\ea97";
}
.icon-volleyball:before {
    content: "\ea98";
}
.icon-volleyball2:before {
    content: "\ea99";
}
.icon-stop-watch:before {
    content: "\ea9a";
}
.icon-stop-watch2:before {
    content: "\ea9b";
}
.icon-stop-watch3:before {
    content: "\ea9c";
}
.icon-stop-watch4:before {
    content: "\ea9d";
}
.icon-hockey-stick:before {
    content: "\ea9e";
}
.icon-hockey-stick2:before {
    content: "\ea9f";
}
.icon-hockey-sticks:before {
    content: "\eaa0";
}
.icon-hockey-sticks2:before {
    content: "\eaa1";
}
.icon-shuttlecock:before {
    content: "\eaa2";
}
.icon-shuttlecock2:before {
    content: "\eaa3";
}
.icon-golf:before {
    content: "\eaa4";
}
.icon-golf2:before {
    content: "\eaa5";
}
.icon-move:before {
    content: "\eaa6";
}
.icon-move2:before {
    content: "\eaa7";
}
.icon-clipboard-move:before {
    content: "\eaa8";
}
.icon-clipboard-move2:before {
    content: "\eaa9";
}
.icon-award:before {
    content: "\eaaa";
}
.icon-award2:before {
    content: "\eaab";
}
.icon-award3:before {
    content: "\eaac";
}
.icon-award4:before {
    content: "\eaad";
}
.icon-award5:before {
    content: "\eaae";
}
.icon-award6:before {
    content: "\eaaf";
}
.icon-award7:before {
    content: "\eab0";
}
.icon-award8:before {
    content: "\eab1";
}
.icon-medal5:before {
    content: "\eab2";
}
.icon-medal6:before {
    content: "\eab3";
}
.icon-medal7:before {
    content: "\eab4";
}
.icon-medal8:before {
    content: "\eab5";
}
.icon-boxing-glove:before {
    content: "\eab6";
}
.icon-boxing-glove2:before {
    content: "\eab7";
}
.icon-whistle:before {
    content: "\eab8";
}
.icon-whistle2:before {
    content: "\eab9";
}
.icon-volleyball-water:before {
    content: "\eaba";
}
.icon-volleyball-water2:before {
    content: "\eabb";
}
.icon-checkered-flag:before {
    content: "\eabc";
}
.icon-checkered-flag2:before {
    content: "\eabd";
}
.icon-target-arrow:before {
    content: "\eabe";
}
.icon-target-arrow2:before {
    content: "\eabf";
}
.icon-target3:before {
    content: "\eac0";
}
.icon-target4:before {
    content: "\eac1";
}
.icon-sailing-boat:before {
    content: "\eac2";
}
.icon-sailing-boat2:before {
    content: "\eac3";
}
.icon-sailing-boat-water:before {
    content: "\eac4";
}
.icon-sailing-boat-water2:before {
    content: "\eac5";
}
.icon-bowling-pins:before {
    content: "\eac6";
}
.icon-bowling-pins2:before {
    content: "\eac7";
}
.icon-bowling-pin-ball:before {
    content: "\eac8";
}
.icon-bowling-pin-ball2:before {
    content: "\eac9";
}
.icon-diving-goggles:before {
    content: "\eaca";
}
.icon-diving-goggles2:before {
    content: "\eacb";
}
.icon-sports-shoe:before {
    content: "\eacc";
}
.icon-sports-shoe2:before {
    content: "\eacd";
}
.icon-soccer-shoe:before {
    content: "\eace";
}
.icon-soccer-shoe2:before {
    content: "\eacf";
}
.icon-ice-skate:before {
    content: "\ead0";
}
.icon-ice-skate2:before {
    content: "\ead1";
}
.icon-cloud6:before {
    content: "\ead2";
}
.icon-cloud7:before {
    content: "\ead3";
}
.icon-cloud-sun:before {
    content: "\ead4";
}
.icon-cloud-sun2:before {
    content: "\ead5";
}
.icon-cloud-moon:before {
    content: "\ead6";
}
.icon-cloud-moon2:before {
    content: "\ead7";
}
.icon-cloud-rain:before {
    content: "\ead8";
}
.icon-cloud-rain2:before {
    content: "\ead9";
}
.icon-cloud-sun-rain:before {
    content: "\eada";
}
.icon-cloud-sun-rain2:before {
    content: "\eadb";
}
.icon-cloud-moon-rain:before {
    content: "\eadc";
}
.icon-cloud-moon-rain2:before {
    content: "\eadd";
}
.icon-cloud-snow:before {
    content: "\eade";
}
.icon-cloud-snow2:before {
    content: "\eadf";
}
.icon-cloud-sun-snow:before {
    content: "\eae0";
}
.icon-cloud-sun-snow2:before {
    content: "\eae1";
}
.icon-cloud-moon-snow:before {
    content: "\eae2";
}
.icon-cloud-moon-snow2:before {
    content: "\eae3";
}
.icon-cloud-lightning:before {
    content: "\eae4";
}
.icon-cloud-lightning2:before {
    content: "\eae5";
}
.icon-cloud-sun-lightning:before {
    content: "\eae6";
}
.icon-cloud-sun-lightning2:before {
    content: "\eae7";
}
.icon-cloud-moon-lightning:before {
    content: "\eae8";
}
.icon-cloud-moon-lightning2:before {
    content: "\eae9";
}
.icon-cloud-wind:before {
    content: "\eaea";
}
.icon-cloud-wind2:before {
    content: "\eaeb";
}
.icon-cloud-raindrops:before {
    content: "\eaec";
}
.icon-cloud-raindrops2:before {
    content: "\eaed";
}
.icon-cloud-sun-raindrops:before {
    content: "\eaee";
}
.icon-cloud-sun-raindrops2:before {
    content: "\eaef";
}
.icon-cloud-moon-raindrops:before {
    content: "\eaf0";
}
.icon-cloud-moon-raindrops2:before {
    content: "\eaf1";
}
.icon-cloud-snowflakes:before {
    content: "\eaf2";
}
.icon-cloud-snowflakes2:before {
    content: "\eaf3";
}
.icon-cloud-sun-snowflakes:before {
    content: "\eaf4";
}
.icon-cloud-sun-snowflakes2:before {
    content: "\eaf5";
}
.icon-cloud-moon-snowflakes:before {
    content: "\eaf6";
}
.icon-cloud-moon-snowflakes2:before {
    content: "\eaf7";
}
.icon-clouds:before {
    content: "\eaf8";
}
.icon-clouds2:before {
    content: "\eaf9";
}
.icon-cloud-add:before {
    content: "\eafa";
}
.icon-cloud-add2:before {
    content: "\eafb";
}
.icon-cloud-remove:before {
    content: "\eafc";
}
.icon-cloud-remove2:before {
    content: "\eafd";
}
.icon-cloud-error3:before {
    content: "\eafe";
}
.icon-cloud-error4:before {
    content: "\eaff";
}
.icon-cloud-fog:before {
    content: "\eb00";
}
.icon-cloud-fog2:before {
    content: "\eb01";
}
.icon--cloud-sun-fog:before {
    content: "\eb02";
}
.icon--cloud-sun-fog2:before {
    content: "\eb03";
}
.icon-cloud-moon-fog:before {
    content: "\eb04";
}
.icon-cloud-moon-fog2:before {
    content: "\eb05";
}
.icon-moon-stars:before {
    content: "\eb06";
}
.icon-moon-stars2:before {
    content: "\eb07";
}
.icon-moon:before {
    content: "\eb08";
}
.icon-moon2:before {
    content: "\eb09";
}
.icon-sun2:before {
    content: "\eb0a";
}
.icon-sun3:before {
    content: "\eb0b";
}
.icon-sunrise:before {
    content: "\eb0c";
}
.icon-sunrise2:before {
    content: "\eb0d";
}
.icon-sunset:before {
    content: "\eb0e";
}
.icon-sunset2:before {
    content: "\eb0f";
}
.icon-sunset3:before {
    content: "\eb10";
}
.icon-sunset4:before {
    content: "\eb11";
}
.icon-sunset5:before {
    content: "\eb12";
}
.icon-sunset6:before {
    content: "\eb13";
}
.icon-rainbow:before {
    content: "\eb14";
}
.icon-rainbow2:before {
    content: "\eb15";
}
.icon-umbrella:before {
    content: "\eb16";
}
.icon-umbrella2:before {
    content: "\eb17";
}
.icon-raindrops:before {
    content: "\eb18";
}
.icon-raindrops2:before {
    content: "\eb19";
}
.icon-raindrop:before {
    content: "\eb1a";
}
.icon-raindrop2:before {
    content: "\eb1b";
}
.icon-sunglasses:before {
    content: "\eb1c";
}
.icon-sunglasses2:before {
    content: "\eb1d";
}
.icon-stars:before {
    content: "\eb1e";
}
.icon-stars2:before {
    content: "\eb1f";
}
.icon-clouds3:before {
    content: "\eb20";
}
.icon-clouds4:before {
    content: "\eb21";
}
.icon-moonrise:before {
    content: "\eb22";
}
.icon-moonrise2:before {
    content: "\eb23";
}
.icon-moonset:before {
    content: "\eb24";
}
.icon-moonset2:before {
    content: "\eb25";
}
.icon-wind:before {
    content: "\eb26";
}
.icon-wind2:before {
    content: "\eb27";
}
.icon-full-moon:before {
    content: "\eb28";
}
.icon-full-moon2:before {
    content: "\eb29";
}
.icon-crescent:before {
    content: "\eb2a";
}
.icon-crescent2:before {
    content: "\eb2b";
}
.icon-half-moon:before {
    content: "\eb2c";
}
.icon-half-moon2:before {
    content: "\eb2d";
}
.icon-gibbous-moon:before {
    content: "\eb2e";
}
.icon-gibbous-moon2:before {
    content: "\eb2f";
}
.icon-moon3:before {
    content: "\eb30";
}
.icon-moon4:before {
    content: "\eb31";
}
.icon-gibbous-moon3:before {
    content: "\eb32";
}
.icon-gibbous-moon4:before {
    content: "\eb33";
}
.icon-half-moon3:before {
    content: "\eb34";
}
.icon-half-moon4:before {
    content: "\eb35";
}
.icon-crescent3:before {
    content: "\eb36";
}
.icon-crescent4:before {
    content: "\eb37";
}
.icon-barometer:before {
    content: "\eb38";
}
.icon-barometer2:before {
    content: "\eb39";
}
.icon-compass-north:before {
    content: "\eb3a";
}
.icon-compass-north2:before {
    content: "\eb3b";
}
.icon-compass-west:before {
    content: "\eb3c";
}
.icon-compass-west2:before {
    content: "\eb3d";
}
.icon-compass-east:before {
    content: "\eb3e";
}
.icon-compass-east2:before {
    content: "\eb3f";
}
.icon-compass-south:before {
    content: "\eb40";
}
.icon-compass-south2:before {
    content: "\eb41";
}
.icon-air-sock:before {
    content: "\eb42";
}
.icon-air-sock2:before {
    content: "\eb43";
}
.icon-tornado:before {
    content: "\eb44";
}
.icon-tornado2:before {
    content: "\eb45";
}
.icon-degree-fahrenheit:before {
    content: "\eb46";
}
.icon-degree-fahrenheit2:before {
    content: "\eb47";
}
.icon-degree-celsius:before {
    content: "\eb48";
}
.icon-degree-celsius2:before {
    content: "\eb49";
}
.icon-warning2:before {
    content: "\eb4a";
}
.icon-warning3:before {
    content: "\eb4b";
}
.icon-compass4:before {
    content: "\eb4c";
}
.icon-compass5:before {
    content: "\eb4d";
}
.icon-compass6:before {
    content: "\eb4e";
}
.icon-compass7:before {
    content: "\eb4f";
}
.icon-compass8:before {
    content: "\eb50";
}
.icon-compass9:before {
    content: "\eb51";
}
.icon-compass10:before {
    content: "\eb52";
}
.icon-compass11:before {
    content: "\eb53";
}
.icon-thermometer:before {
    content: "\eb54";
}
.icon-thermometer2:before {
    content: "\eb55";
}
.icon-thermometer-low:before {
    content: "\eb56";
}
.icon-thermometer-low2:before {
    content: "\eb57";
}
.icon-thermometer-quarter:before {
    content: "\eb58";
}
.icon-thermometer-quarter2:before {
    content: "\eb59";
}
.icon-thermometer-half:before {
    content: "\eb5a";
}
.icon-thermometer-half2:before {
    content: "\eb5b";
}
.icon-thermometer-three-quarters:before {
    content: "\eb5c";
}
.icon-thermometer-three-quarters2:before {
    content: "\eb5d";
}
.icon-thermometer-full:before {
    content: "\eb5e";
}
.icon-thermometer-full2:before {
    content: "\eb5f";
}
.icon-lightning:before {
    content: "\eb60";
}
.icon-lightning2:before {
    content: "\eb61";
}
.icon-wind-turbine:before {
    content: "\eb62";
}
.icon-wind-turbine2:before {
    content: "\eb63";
}
.icon-snowflake:before {
    content: "\eb64";
}
.icon-snowflake2:before {
    content: "\eb65";
}
.icon-flashed-face:before {
    content: "\eb66";
}
.icon-flashed-face2:before {
    content: "\eb67";
}
.icon-flashed-face3:before {
    content: "\eb68";
}
.icon-flashed-face4:before {
    content: "\eb69";
}
.icon-flashed-face-glasses:before {
    content: "\eb6a";
}
.icon-flashed-face-glasses2:before {
    content: "\eb6b";
}
.icon-face-missing-moth:before {
    content: "\eb6c";
}
.icon-face-missing-moth2:before {
    content: "\eb6d";
}
.icon-neutral-face:before {
    content: "\eb6e";
}
.icon-neutral-face2:before {
    content: "\eb6f";
}
.icon-smiling-face:before {
    content: "\eb70";
}
.icon-smiling-face2:before {
    content: "\eb71";
}
.icon-sad-face:before {
    content: "\eb72";
}
.icon-sad-face2:before {
    content: "\eb73";
}
.icon-face-open-mouth:before {
    content: "\eb74";
}
.icon-face-open-mouth2:before {
    content: "\eb75";
}
.icon-face-open-mouth3:before {
    content: "\eb76";
}
.icon-face-open-mouth4:before {
    content: "\eb77";
}
.icon-winking-face:before {
    content: "\eb78";
}
.icon-winking-face2:before {
    content: "\eb79";
}
.icon-laughing-face:before {
    content: "\eb7a";
}
.icon-laughing-face2:before {
    content: "\eb7b";
}
.icon-laughing-face3:before {
    content: "\eb7c";
}
.icon-laughing-face4:before {
    content: "\eb7d";
}
.icon-smirking-face:before {
    content: "\eb7e";
}
.icon-smirking-face2:before {
    content: "\eb7f";
}
.icon-stubborn-face:before {
    content: "\eb80";
}
.icon-stubborn-face2:before {
    content: "\eb81";
}
.icon-neutral-face3:before {
    content: "\eb82";
}
.icon-neutral-face4:before {
    content: "\eb83";
}
.icon-sad-face3:before {
    content: "\eb84";
}
.icon-sad-face4:before {
    content: "\eb85";
}
.icon-smiling-face3:before {

    content: "\eb86";
}
.icon-smiling-face4:before {
    content: "\eb87";
}
.icon-smiling-face-eyebrows:before {
    content: "\eb88";
}
.icon-smiling-face-eyebrows2:before {
    content: "\eb89";
}
.icon-grinning-face-eyebrows:before {
    content: "\eb8a";
}
.icon-grinning-face-eyebrows2:before {
    content: "\eb8b";
}
.icon-sad-face-eyebrows:before {
    content: "\eb8c";
}
.icon-sad-face-eyebrows2:before {
    content: "\eb8d";
}
.icon-neutral-face-eyebrows:before {
    content: "\eb8e";
}
.icon-neutral-face-eyebrows2:before {
    content: "\eb8f";
}
.icon-angry-face:before {
    content: "\eb90";
}
.icon-angry-face2:before {
    content: "\eb91";
}
.icon-worried-face:before {
    content: "\eb92";
}
.icon-worried-face2:before {
    content: "\eb93";
}
.icon-winking-face3:before {
    content: "\eb94";
}
.icon-winking-face4:before {
    content: "\eb95";
}
.icon-angry-face-eyebrows:before {
    content: "\eb96";
}
.icon-angry-face-eyebrows2:before {
    content: "\eb97";
}
.icon-grinning-face:before {
    content: "\eb98";
}
.icon-grinning-face2:before {
    content: "\eb99";
}
.icon-sad-face5:before {
    content: "\eb9a";
}
.icon-sad-face6:before {
    content: "\eb9b";
}
.icon-grinning-face-eyebrows3:before {
    content: "\eb9c";
}
.icon-grinning-face-eyebrows4:before {
    content: "\eb9d";
}
.icon-fake-grinning-face-eyebrows:before {
    content: "\eb9e";
}
.icon-fake-grinning-face-eyebrows2:before {
    content: "\eb9f";
}
.icon-worried-face-eyebrows:before {
    content: "\eba0";
}
.icon-worried-face-eyebrows2:before {
    content: "\eba1";
}
.icon-face-stuck-out-tongue:before {
    content: "\eba2";
}
.icon-face-stuck-out-tongue2:before {
    content: "\eba3";
}
.icon-face-stuck-out-tongue3:before {
    content: "\eba4";
}
.icon-face-stuck-out-tongue4:before {
    content: "\eba5";
}
.icon-kissing-face:before {
    content: "\eba6";
}
.icon-kissing-face2:before {
    content: "\eba7";
}
.icon-grinning-face-teeth:before {
    content: "\eba8";
}
.icon-grinning-face-teeth2:before {
    content: "\eba9";
}
.icon-angry-face-teeth:before {
    content: "\ebaa";
}
.icon-angry-face-teeth2:before {
    content: "\ebab";
}
.icon-worried-face-teeth:before {
    content: "\ebac";
}
.icon-worried-face-teeth2:before {
    content: "\ebad";
}
.icon-grinning-face-teeth3:before {
    content: "\ebae";
}
.icon-grinning-face-teeth4:before {
    content: "\ebaf";
}
.icon-face-open-mouth-eyebrows:before {
    content: "\ebb0";
}
.icon-face-open-mouth-eyebrows2:before {
    content: "\ebb1";
}
.icon-face-open-mouth-eyebrows3:before {
    content: "\ebb2";
}
.icon-face-open-mouth-eyebrows4:before {
    content: "\ebb3";
}
.icon-angry-face-open-mouth-eyebrows:before {
    content: "\ebb4";
}
.icon-angry-face-open-mouth-eyebrows2:before {
    content: "\ebb5";
}
.icon-unamused-face-tightly-closed-eyes:before {
    content: "\ebb6";
}
.icon-unamused-face-tightly-closed-eyes2:before {
    content: "\ebb7";
}
.icon-sad-face--tightly-closed-eyes:before {
    content: "\ebb8";
}
.icon-sad-face--tightly-closed-eyes2:before {
    content: "\ebb9";
}
.icon-kissing-face3:before {
    content: "\ebba";
}
.icon-kissing-face4:before {
    content: "\ebbb";
}
.icon-face-closed-meyes:before {
    content: "\ebbc";
}
.icon-face-closed-meyes2:before {
    content: "\ebbd";
}
.icon-amused-face:before {
    content: "\ebbe";
}
.icon-amused-face2:before {
    content: "\ebbf";
}
.icon-amused-face-closed-eyes:before {
    content: "\ebc0";
}
.icon-amused-face-closed-eyes2:before {
    content: "\ebc1";
}
.icon-amused-face-closed-eyes3:before {
    content: "\ebc2";
}
.icon-amused-face-closed-eyes4:before {
    content: "\ebc3";
}
.icon-face-closed-eyes-open-mouth:before {
    content: "\ebc4";
}
.icon-face-closed-eyes-open-mouth2:before {
    content: "\ebc5";
}
.icon-face-closed-eyes-open-mouth3:before {
    content: "\ebc6";
}
.icon-face-closed-eyes-open-mouth4:before {
    content: "\ebc7";
}
.icon-face-closed-eyes-open-mouth5:before {
    content: "\ebc8";
}
.icon-face-closed-eyes-open-mouth6:before {
    content: "\ebc9";
}
.icon-laughing-face5:before {
    content: "\ebca";
}
.icon-laughing-face6:before {
    content: "\ebcb";
}
.icon-smiling-face5:before {
    content: "\ebcc";
}
.icon-smiling-face6:before {
    content: "\ebcd";
}
.icon-grinning-face3:before {
    content: "\ebce";
}
.icon-grinning-face4:before {
    content: "\ebcf";
}
.icon-sad-face7:before {
    content: "\ebd0";
}
.icon-sad-face8:before {
    content: "\ebd1";
}
.icon-sad-face9:before {
    content: "\ebd2";
}
.icon-sad-face10:before {
    content: "\ebd3";
}
.icon-sad-face-closed-eyes:before {
    content: "\ebd4";
}
.icon-sad-face-closed-eyes2:before {
    content: "\ebd5";
}
.icon-sad-face11:before {
    content: "\ebd6";
}
.icon-sad-face12:before {
    content: "\ebd7";
}
.icon-smiling-face7:before {
    content: "\ebd8";
}
.icon-smiling-face8:before {
    content: "\ebd9";
}
.icon-astonished-face:before {
    content: "\ebda";
}
.icon-astonished-face2:before {
    content: "\ebdb";
}
.icon-astonished-face3:before {
    content: "\ebdc";
}
.icon-astonished-face4:before {
    content: "\ebdd";
}
.icon-face-moustache:before {
    content: "\ebde";
}
.icon-face-moustache2:before {
    content: "\ebdf";
}
.icon-face-moustache3:before {
    content: "\ebe0";
}
.icon-face-moustache4:before {
    content: "\ebe1";
}
.icon-face-glasses:before {
    content: "\ebe2";
}
.icon-face-glasses2:before {
    content: "\ebe3";
}
.icon-face-sunglasses:before {
    content: "\ebe4";
}
.icon-face-sunglasses2:before {
    content: "\ebe5";
}
.icon-smirking-face-sunglasses:before {
    content: "\ebe6";
}
.icon-smirking-face-sunglasses2:before {
    content: "\ebe7";
}
.icon-middle-finger:before {
    content: "\ebe8";
}
.icon-middle-finger2:before {
    content: "\ebe9";
}
.icon-rock-n-roll:before {
    content: "\ebea";
}
.icon-rock-n-roll2:before {
    content: "\ebeb";
}
.icon-high-five:before {
    content: "\ebec";
}
.icon-high-five2:before {
    content: "\ebed";
}
.icon-thumb-up:before {
    content: "\ebee";
}
.icon-thumb-up2:before {
    content: "\ebef";
}
.icon-thumb-down:before {
    content: "\ebf0";
}
.icon-thumb-down2:before {
    content: "\ebf1";
}
.icon-thumb-up3:before {
    content: "\ebf2";
}
.icon-thumb-up4:before {
    content: "\ebf3";
}
.icon-thumb-down3:before {
    content: "\ebf4";
}
.icon-thumb-down4:before {
    content: "\ebf5";
}
.icon-two-fingers-swipe-left:before {
    content: "\ebf6";
}
.icon-two-fingers-swipe-left2:before {
    content: "\ebf7";
}
.icon-two-fingers-swipe-right:before {
    content: "\ebf8";
}
.icon-two-fingers-swipe-right2:before {
    content: "\ebf9";
}
.icon-two-fingers-swipe-up:before {
    content: "\ebfa";
}
.icon-two-fingers-swipe-up2:before {
    content: "\ebfb";
}
.icon-two-fingers-swipe-down:before {
    content: "\ebfc";
}
.icon-two-fingers-swipe-down2:before {
    content: "\ebfd";
}
.icon-two-fingers:before {
    content: "\ebfe";
}
.icon-two-fingers2:before {
    content: "\ebff";
}
.icon-three-fingers-double-tap:before {
    content: "\ec00";
}
.icon-three-fingers-double-tap2:before {
    content: "\ec01";
}
.icon-two-fingers-resize-out:before {
    content: "\ec02";
}
.icon-two-fingers-resize-out2:before {
    content: "\ec03";
}
.icon-two-fingers-resize-in:before {
    content: "\ec04";
}
.icon-two-fingers-resize-in2:before {
    content: "\ec05";
}
.icon-two-fingers-rotate:before {
    content: "\ec06";
}
.icon-two-fingers-rotate2:before {
    content: "\ec07";
}
.icon-one-finger-swipe-left:before {
    content: "\ec08";
}
.icon-one-finger-swipe-left2:before {
    content: "\ec09";
}
.icon-one-finger-swipe-right:before {
    content: "\ec0a";
}
.icon-one-finger-swipe-right2:before {
    content: "\ec0b";
}
.icon-one-finger-swipe-up:before {
    content: "\ec0c";
}
.icon-one-finger-swipe-up2:before {
    content: "\ec0d";
}
.icon-one-finger-swipe-down:before {
    content: "\ec0e";
}
.icon-one-finger-swipe-down2:before {
    content: "\ec0f";
}
.icon-one-finger:before {
    content: "\ec10";
}
.icon-one-finger2:before {
    content: "\ec11";
}
.icon-one-finger-double-tap:before {
    content: "\ec12";
}
.icon-one-finger-double-tap2:before {
    content: "\ec13";
}
.icon-one-finger-tap:before {
    content: "\ec14";
}
.icon-one-finger-tap2:before {
    content: "\ec15";
}
.icon-one-finger-tap-hold:before {
    content: "\ec16";
}
.icon-one-finger-tap-hold2:before {
    content: "\ec17";
}
.icon-thumb-finger-tap:before {
    content: "\ec18";
}
.icon-thumb-finger-tap2:before {
    content: "\ec19";
}
.icon-one-finger-click:before {
    content: "\ec1a";
}
.icon-one-finger-click2:before {
    content: "\ec1b";
}
.icon-three-fingers-swipe-left:before {
    content: "\ec1c";
}
.icon-three-fingers-swipe-left2:before {
    content: "\ec1d";
}
.icon-three-fingers-swipe-right:before {
    content: "\ec1e";
}
.icon-three-fingers-swipe-right2:before {
    content: "\ec1f";
}
.icon-three-fingers-swipe-up:before {
    content: "\ec20";
}
.icon-three-fingers-swipe-up2:before {
    content: "\ec21";
}
.icon-three-fingers-swipe-down:before {
    content: "\ec22";
}
.icon-three-fingers-swipe-down2:before {
    content: "\ec23";
}
.icon-three-fingers:before {
    content: "\ec24";
}
.icon-three-fingers2:before {
    content: "\ec25";
}
.icon-three-fingers-double-tap3:before {
    content: "\ec26";
}
.icon-three-fingers-double-tap4:before {
    content: "\ec27";
}
.icon-two-fingers-swipe-up3:before {
    content: "\ec28";
}
.icon-two-fingers-swipe-up4:before {
    content: "\ec29";
}
.icon-one-finger-double-tap3:before {
    content: "\ec2a";
}
.icon-one-finger-double-tap4:before {
    content: "\ec2b";
}
.icon-two-fingers-swipe-down3:before {
    content: "\ec2c";
}
.icon-two-fingers-swipe-down4:before {
    content: "\ec2d";
}
.icon-two-fingers-swipe-right3:before {
    content: "\ec2e";
}
.icon-two-fingers-swipe-right4:before {
    content: "\ec2f";
}
.icon-two-fingers-swipe-left3:before {
    content: "\ec30";
}
.icon-two-fingers-swipe-left4:before {
    content: "\ec31";
}
.icon-one-finger-tap3:before {
    content: "\ec32";
}
.icon-one-finger-tap4:before {
    content: "\ec33";
}
.icon-one-finger-tap-hold3:before {
    content: "\ec34";
}
.icon-one-finger-tap-hold4:before {
    content: "\ec35";
}
.icon-one-finger-click3:before {
    content: "\ec36";
}
.icon-one-finger-click4:before {
    content: "\ec37";
}
.icon-one-finger-swipe-horizontally:before {
    content: "\ec38";
}
.icon-one-finger-swipe-horizontally2:before {
    content: "\ec39";
}
.icon-one-finger-swipe:before {
    content: "\ec3a";
}
.icon-one-finger-swipe2:before {
    content: "\ec3b";
}
.icon-two-fingers-double-tap:before {
    content: "\ec3c";
}
.icon-two-fingers-double-tap2:before {
    content: "\ec3d";
}
.icon-two-fingers-tap:before {
    content: "\ec3e";
}
.icon-two-fingers-tap2:before {
    content: "\ec3f";
}
.icon-one-finger-swipe-left3:before {
    content: "\ec40";
}
.icon-one-finger-swipe-left4:before {
    content: "\ec41";
}
.icon-one-finger-swipe-right3:before {
    content: "\ec42";
}
.icon-one-finger-swipe-right4:before {
    content: "\ec43";
}
.icon-one-finger-swipe-up3:before {
    content: "\ec44";
}
.icon-one-finger-swipe-up4:before {
    content: "\ec45";
}
.icon-one-finger-swipe-down3:before {
    content: "\ec46";
}
.icon-one-finger-swipe-down4:before {
    content: "\ec47";
}
.icon-file-numbers:before {
    content: "\ec48";
}
.icon-file-numbers2:before {
    content: "\ec49";
}
.icon-file-pages:before {
    content: "\ec4a";
}
.icon-file-pages2:before {
    content: "\ec4b";
}
.icon-file-app:before {
    content: "\ec4c";
}
.icon-file-app2:before {
    content: "\ec4d";
}
.icon-file-png:before {
    content: "\ec4e";
}
.icon-file-png2:before {
    content: "\ec4f";
}
.icon-file-pdf2:before {
    content: "\ec50";
}
.icon-file-pdf3:before {
    content: "\ec51";
}
.icon-file-mp3:before {
    content: "\ec52";
}
.icon-file-mp32:before {
    content: "\ec53";
}
.icon-file-mp4:before {
    content: "\ec54";
}
.icon-file-mp42:before {
    content: "\ec55";
}
.icon-file-mov:before {
    content: "\ec56";
}
.icon-file-mov2:before {
    content: "\ec57";
}
.icon-file-jpg:before {
    content: "\ec58";
}
.icon-file-jpg2:before {
    content: "\ec59";
}
.icon-file-key:before {
    content: "\ec5a";
}
.icon-file-key2:before {
    content: "\ec5b";
}
.icon-file-html:before {
    content: "\ec5c";
}
.icon-file-html2:before {
    content: "\ec5d";
}
.icon-file-css:before {
    content: "\ec5e";
}
.icon-file-css2:before {
    content: "\ec5f";
}
.icon-file-java:before {
    content: "\ec60";
}
.icon-file-java2:before {
    content: "\ec61";
}
.icon-file-psd:before {
    content: "\ec62";
}
.icon-file-psd2:before {
    content: "\ec63";
}
.icon-file-ai:before {
    content: "\ec64";
}
.icon-file-ai2:before {
    content: "\ec65";
}
.icon-file-bmp:before {
    content: "\ec66";
}
.icon-file-bmp2:before {
    content: "\ec67";
}
.icon-file-dwg:before {
    content: "\ec68";
}
.icon-file-dwg2:before {
    content: "\ec69";
}
.icon-file-eps:before {
    content: "\ec6a";
}
.icon-file-eps2:before {
    content: "\ec6b";
}
.icon-file-tiff:before {
    content: "\ec6c";
}
.icon-file-tiff2:before {
    content: "\ec6d";
}
.icon-file-ots:before {
    content: "\ec6e";
}
.icon-file-ots2:before {
    content: "\ec6f";
}
.icon-file-php:before {
    content: "\ec70";
}
.icon-file-php2:before {
    content: "\ec71";
}
.icon-file-py:before {
    content: "\ec72";
}
.icon-file-py2:before {
    content: "\ec73";
}
.icon-file-c:before {
    content: "\ec74";
}
.icon-file-c2:before {
    content: "\ec75";
}
.icon-file-sql:before {
    content: "\ec76";
}
.icon-file-sql2:before {
    content: "\ec77";
}
.icon-file-rb:before {
    content: "\ec78";
}
.icon-file-rb2:before {
    content: "\ec79";
}
.icon-file-cpp:before {
    content: "\ec7a";
}
.icon-file-cpp2:before {
    content: "\ec7b";
}
.icon-file-tga:before {
    content: "\ec7c";
}
.icon-file-tga2:before {
    content: "\ec7d";
}
.icon-file-dxf:before {
    content: "\ec7e";
}
.icon-file-dxf2:before {
    content: "\ec7f";
}
.icon-file-doc:before {
    content: "\ec80";
}
.icon-file-doc2:before {
    content: "\ec81";
}
.icon-file-odt:before {
    content: "\ec82";
}
.icon-file-odt2:before {
    content: "\ec83";
}
.icon-file-xls:before {
    content: "\ec84";
}
.icon-file-xls2:before {
    content: "\ec85";
}
.icon-file-docx:before {
    content: "\ec86";
}
.icon-file-docx2:before {
    content: "\ec87";
}
.icon-file-ppt:before {
    content: "\ec88";
}
.icon-file-ppt2:before {
    content: "\ec89";
}
.icon-file-asp:before {
    content: "\ec8a";
}
.icon-file-asp2:before {
    content: "\ec8b";
}
.icon-file-ics:before {
    content: "\ec8c";
}
.icon-file-ics2:before {
    content: "\ec8d";
}
.icon-file-dat:before {
    content: "\ec8e";
}
.icon-file-dat2:before {
    content: "\ec8f";
}
.icon-file-xml:before {
    content: "\ec90";
}
.icon-file-xml2:before {
    content: "\ec91";
}
.icon-file-yml:before {
    content: "\ec92";
}
.icon-file-yml2:before {
    content: "\ec93";
}
.icon-file-h:before {
    content: "\ec94";
}
.icon-file-h2:before {
    content: "\ec95";
}
.icon-file-exe:before {
    content: "\ec96";
}
.icon-file-exe2:before {
    content: "\ec97";
}
.icon-file-avi:before {
    content: "\ec98";
}
.icon-file-avi2:before {
    content: "\ec99";
}
.icon-file-odp:before {
    content: "\ec9a";
}
.icon-file-odp2:before {
    content: "\ec9b";
}
.icon-file-dotx:before {
    content: "\ec9c";
}
.icon-file-dotx2:before {
    content: "\ec9d";
}
.icon-file-xlsx:before {
    content: "\ec9e";
}
.icon-file-xlsx2:before {
    content: "\ec9f";
}
.icon-file-ods:before {
    content: "\eca0";
}
.icon-file-ods2:before {
    content: "\eca1";
}
.icon-file-pps:before {
    content: "\eca2";
}
.icon-file-pps2:before {
    content: "\eca3";
}
.icon-file-dot:before {
    content: "\eca4";
}
.icon-file-dot2:before {
    content: "\eca5";
}
.icon-file-txt:before {
    content: "\eca6";
}
.icon-file-txt2:before {
    content: "\eca7";
}
.icon-file-rtf:before {
    content: "\eca8";
}
.icon-file-rtf2:before {
    content: "\eca9";
}
.icon-file-m4v:before {
    content: "\ecaa";
}
.icon-file-m4v2:before {
    content: "\ecab";
}
.icon-file-flv:before {
    content: "\ecac";
}
.icon-file-flv2:before {
    content: "\ecad";
}
.icon-file-mpg:before {
    content: "\ecae";
}
.icon-file-mpg2:before {
    content: "\ecaf";
}
.icon-file-quicktime:before {
    content: "\ecb0";
}
.icon-file-quicktime2:before {
    content: "\ecb1";
}
.icon-file-mid:before {
    content: "\ecb2";
}
.icon-file-mid2:before {
    content: "\ecb3";
}
.icon-file-3gp:before {
    content: "\ecb4";
}
.icon-file-3gp2:before {
    content: "\ecb5";
}
.icon-file-aiff:before {
    content: "\ecb6";
}
.icon-file-aiff2:before {
    content: "\ecb7";
}
.icon-file-aac:before {
    content: "\ecb8";
}
.icon-file-aac2:before {
    content: "\ecb9";
}
.icon-file-wav:before {
    content: "\ecba";
}
.icon-file-wav2:before {
    content: "\ecbb";
}
.icon-file-zip2:before {
    content: "\ecbc";
}
.icon-file-zip3:before {
    content: "\ecbd";
}
.icon-file-ott:before {
    content: "\ecbe";
}
.icon-file-ott2:before {
    content: "\ecbf";
}
.icon-file-tgz:before {
    content: "\ecc0";
}
.icon-file-tgz2:before {
    content: "\ecc1";
}
.icon-file-dmg:before {
    content: "\ecc2";
}
.icon-file-dmg2:before {
    content: "\ecc3";
}
.icon-file-iso:before {
    content: "\ecc4";
}
.icon-file-iso2:before {
    content: "\ecc5";
}
.icon-file-rar:before {
    content: "\ecc6";
}
.icon-file-rar2:before {
    content: "\ecc7";
}
.icon-file-gif:before {
    content: "\ecc8";
}
.icon-file-gif2:before {
    content: "\ecc9";
}
.icon-document-file-numbers:before {
    content: "\ecca";
}
.icon-document-file-numbers2:before {
    content: "\eccb";
}
.icon-document-file-pages:before {
    content: "\eccc";
}
.icon-document-file-pages2:before {
    content: "\eccd";
}
.icon-document-file-app:before {
    content: "\ecce";
}
.icon-document-file-app2:before {
    content: "\eccf";
}
.icon-document-file-png:before {
    content: "\ecd0";
}
.icon-document-file-png2:before {
    content: "\ecd1";
}
.icon-document-file-pdf:before {
    content: "\ecd2";
}
.icon-document-file-pdf2:before {
    content: "\ecd3";
}
.icon-document-file-mp3:before {
    content: "\ecd4";
}
.icon-document-file-mp32:before {
    content: "\ecd5";
}
.icon-document-file-mp4:before {
    content: "\ecd6";
}
.icon-document-file-mp42:before {
    content: "\ecd7";
}
.icon-document-file-mov:before {
    content: "\ecd8";
}
.icon-document-file-mov2:before {
    content: "\ecd9";
}
.icon-document-file-jpg:before {
    content: "\ecda";
}
.icon-document-file-jpg2:before {
    content: "\ecdb";
}
.icon-document-file-key:before {
    content: "\ecdc";
}
.icon-document-file-key2:before {
    content: "\ecdd";
}
.icon-document-file-html:before {
    content: "\ecde";
}
.icon-document-file-html2:before {
    content: "\ecdf";
}
.icon-document-file-css:before {
    content: "\ece0";
}
.icon-document-file-css2:before {
    content: "\ece1";
}
.icon-document-file-java:before {
    content: "\ece2";
}
.icon-document-file-java2:before {
    content: "\ece3";
}
.icon-document-file-psd:before {
    content: "\ece4";
}
.icon-document-file-psd2:before {
    content: "\ece5";
}
.icon-document-file-ai:before {
    content: "\ece6";
}
.icon-document-file-ai2:before {
    content: "\ece7";
}
.icon-document-file-bmp:before {
    content: "\ece8";
}
.icon-document-file-bmp2:before {
    content: "\ece9";
}
.icon-document-file-dwg:before {
    content: "\ecea";
}
.icon-document-file-dwg2:before {
    content: "\eceb";
}
.icon-document-file-eps:before {
    content: "\ecec";
}
.icon-document-file-eps2:before {
    content: "\eced";
}
.icon-document-file-tiff:before {
    content: "\ecee";
}
.icon-document-file-tiff2:before {
    content: "\ecef";
}
.icon-document-file-ots:before {
    content: "\ecf0";
}
.icon-document-file-ots2:before {
    content: "\ecf1";
}
.icon-document-file-php:before {
    content: "\ecf2";
}
.icon-document-file-php2:before {
    content: "\ecf3";
}
.icon-document-file-py:before {
    content: "\ecf4";
}
.icon-document-file-py2:before {
    content: "\ecf5";
}
.icon-document-file-c:before {
    content: "\ecf6";
}
.icon-document-file-c2:before {
    content: "\ecf7";
}
.icon-document-file-sql:before {
    content: "\ecf8";
}
.icon-document-file-sql2:before {
    content: "\ecf9";
}
.icon-document-file-rb:before {
    content: "\ecfa";
}
.icon-document-file-rb2:before {
    content: "\ecfb";
}
.icon-document-file-cpp:before {
    content: "\ecfc";
}
.icon-document-file-cpp2:before {
    content: "\ecfd";
}
.icon-document-file-tga:before {
    content: "\ecfe";
}
.icon-document-file-tga2:before {
    content: "\ecff";
}
.icon-document-file-dxf:before {
    content: "\ed00";
}
.icon-document-file-dxf2:before {
    content: "\ed01";
}
.icon-document-file-doc:before {
    content: "\ed02";
}
.icon-document-file-doc2:before {
    content: "\ed03";
}
.icon-document-file-odt:before {
    content: "\ed04";
}
.icon-document-file-odt2:before {
    content: "\ed05";
}
.icon-document-file-xls:before {
    content: "\ed06";
}
.icon-document-file-xls2:before {
    content: "\ed07";
}
.icon-document-file-docx:before {
    content: "\ed08";
}
.icon-document-file-docx2:before {
    content: "\ed09";
}
.icon-document-file-ppt:before {
    content: "\ed0a";
}
.icon-document-file-ppt2:before {
    content: "\ed0b";
}
.icon-document-file-asp:before {
    content: "\ed0c";
}
.icon-document-file-asp2:before {
    content: "\ed0d";
}
.icon-document-file-ics:before {
    content: "\ed0e";
}
.icon-document-file-ics2:before {
    content: "\ed0f";
}
.icon-document-file-dat:before {
    content: "\ed10";
}
.icon-document-file-dat2:before {
    content: "\ed11";
}
.icon-document-file-xml:before {
    content: "\ed12";
}
.icon-document-file-xml2:before {
    content: "\ed13";
}
.icon-document-file-yml:before {
    content: "\ed14";
}
.icon-document-file-yml2:before {
    content: "\ed15";
}
.icon-document-file-h:before {
    content: "\ed16";
}
.icon-document-file-h2:before {
    content: "\ed17";
}
.icon-document-file-exe:before {
    content: "\ed18";
}
.icon-document-file-exe2:before {
    content: "\ed19";
}
.icon-document-file-avi:before {
    content: "\ed1a";
}
.icon-document-file-avi2:before {
    content: "\ed1b";
}
.icon-document-file-odp:before {
    content: "\ed1c";
}
.icon-document-file-odp2:before {
    content: "\ed1d";
}
.icon-document-file-dotx:before {
    content: "\ed1e";
}
.icon-document-file-dotx2:before {
    content: "\ed1f";
}
.icon-document-file-xlsx:before {
    content: "\ed20";
}
.icon-document-file-xlsx2:before {
    content: "\ed21";
}
.icon-document-file-ods:before {
    content: "\ed22";
}
.icon-document-file-ods2:before {
    content: "\ed23";
}
.icon-document-file-pps:before {
    content: "\ed24";
}
.icon-document-file-pps2:before {
    content: "\ed25";
}
.icon-document-file-dot:before {
    content: "\ed26";
}
.icon-document-file-dot2:before {
    content: "\ed27";
}
.icon-document-file-txt:before {
    content: "\ed28";
}
.icon-document-file-txt2:before {
    content: "\ed29";
}
.icon-document-file-rtf:before {
    content: "\ed2a";
}
.icon-document-file-rtf2:before {
    content: "\ed2b";
}
.icon-document-file-m4v:before {
    content: "\ed2c";
}
.icon-document-file-m4v2:before {
    content: "\ed2d";
}
.icon-document-file-flv:before {
    content: "\ed2e";
}
.icon-document-file-flv2:before {
    content: "\ed2f";
}
.icon-document-file-mpg:before {
    content: "\ed30";
}
.icon-document-file-mpg2:before {
    content: "\ed31";
}
.icon-document-file-qt:before {
    content: "\ed32";
}
.icon-document-file-qt2:before {
    content: "\ed33";
}
.icon-document-file-mid:before {
    content: "\ed34";
}
.icon-document-file-mid2:before {
    content: "\ed35";
}
.icon-document-file-3gp:before {
    content: "\ed36";
}
.icon-document-file-3gp2:before {
    content: "\ed37";
}
.icon-document-file-aiff:before {
    content: "\ed38";
}
.icon-document-file-aiff2:before {
    content: "\ed39";
}
.icon-document-file-aac:before {
    content: "\ed3a";
}
.icon-document-file-aac2:before {
    content: "\ed3b";
}
.icon-document-file-wav:before {
    content: "\ed3c";
}
.icon-document-file-wav2:before {
    content: "\ed3d";
}
.icon-document-file-zip:before {
    content: "\ed3e";
}
.icon-document-file-zip2:before {
    content: "\ed3f";
}
.icon-document-file-ott:before {
    content: "\ed40";
}
.icon-document-file-ott2:before {
    content: "\ed41";
}
.icon-document-file-tgz:before {
    content: "\ed42";
}
.icon-document-file-tgz2:before {
    content: "\ed43";
}
.icon-document-file-dmg:before {
    content: "\ed44";
}
.icon-document-file-dmg2:before {
    content: "\ed45";
}
.icon-document-file-iso:before {
    content: "\ed46";
}
.icon-document-file-iso2:before {
    content: "\ed47";
}
.icon-document-file-rar:before {
    content: "\ed48";
}
.icon-document-file-rar2:before {
    content: "\ed49";
}
.icon-document-file-gif:before {
    content: "\ed4a";
}
.icon-document-file-gif2:before {
    content: "\ed4b";
}
.icon-home:before {
    content: "\ed4c";
}
.icon-home2:before {
    content: "\ed4d";
}
.icon-home3:before {
    content: "\ed4e";
}
.icon-office:before {
    content: "\ed4f";
}
.icon-newspaper:before {
    content: "\ed50";
}
.icon-pencil:before {
    content: "\ed51";
}
.icon-pencil2:before {
    content: "\ed52";
}
.icon-quill:before {
    content: "\ed53";
}
.icon-pen:before {
    content: "\ed54";
}
.icon-blog:before {
    content: "\ed55";
}
.icon-eyedropper:before {
    content: "\ed56";
}
.icon-droplet:before {
    content: "\ed57";
}
.icon-paint-format:before {
    content: "\ed58";
}
.icon-image:before {
    content: "\ed59";
}
.icon-images:before {
    content: "\ed5a";
}
.icon-camera:before {
    content: "\ed5b";
}
.icon-headphones:before {
    content: "\ed5c";
}
.icon-music:before {
    content: "\ed5d";
}
.icon-play:before {
    content: "\ed5e";
}
.icon-film:before {
    content: "\ed5f";
}
.icon-video-camera:before {
    content: "\ed60";
}
.icon-dice:before {
    content: "\ed61";
}
.icon-pacman:before {
    content: "\ed62";
}
.icon-spades:before {
    content: "\ed63";
}
.icon-clubs:before {
    content: "\ed64";
}
.icon-diamonds:before {
    content: "\ed65";
}
.icon-bullhorn:before {
    content: "\ed66";
}
.icon-connection:before {
    content: "\ed67";
}
.icon-podcast:before {
    content: "\ed68";
}
.icon-feed:before {
    content: "\ed69";
}
.icon-mic:before {
    content: "\ed6a";
}
.icon-book:before {
    content: "\ed6b";
}
.icon-books:before {
    content: "\ed6c";
}
.icon-library:before {
    content: "\ed6d";
}
.icon-file-text:before {
    content: "\ed6e";
}
.icon-profile:before {
    content: "\ed6f";
}
.icon-file-empty:before {
    content: "\ed70";
}
.icon-files-empty:before {
    content: "\ed71";
}
.icon-file-text2:before {
    content: "\ed72";
}
.icon-file-picture:before {
    content: "\ed73";
}
.icon-file-music:before {
    content: "\ed74";
}
.icon-file-play:before {
    content: "\ed75";
}
.icon-file-video:before {
    content: "\ed76";
}
.icon-file-zip:before {
    content: "\ed77";
}
.icon-copy:before {
    content: "\ed78";
}
.icon-paste:before {
    content: "\ed79";
}
.icon-stack:before {
    content: "\ed7a";
}
.icon-folder:before {
    content: "\ed7b";
}
.icon-folder-open:before {
    content: "\ed7c";
}
.icon-folder-plus:before {
    content: "\ed7d";
}
.icon-folder-minus:before {
    content: "\ed7e";
}
.icon-folder-download:before {
    content: "\ed7f";
}
.icon-folder-upload:before {
    content: "\ed80";
}
.icon-price-tag:before {
    content: "\ed81";
}
.icon-price-tags:before {
    content: "\ed82";
}
.icon-barcode:before {
    content: "\ed83";
}
.icon-qrcode:before {
    content: "\ed84";
}
.icon-ticket:before {
    content: "\ed85";
}
.icon-cart:before {
    content: "\ed86";
}
.icon-coin-dollar:before {
    content: "\ed87";
}
.icon-coin-euro:before {
    content: "\ed88";
}
.icon-coin-pound:before {
    content: "\ed89";
}
.icon-coin-yen:before {
    content: "\ed8a";
}
.icon-credit-card:before {
    content: "\ed8b";
}
.icon-calculator:before {
    content: "\ed8c";
}
.icon-lifebuoy:before {
    content: "\ed8d";
}
.icon-phone:before {
    content: "\ed8e";
}
.icon-phone-hang-up:before {
    content: "\ed8f";
}
.icon-address-book:before {
    content: "\ed90";
}
.icon-envelop:before {
    content: "\ed91";
}
.icon-pushpin:before {
    content: "\ed92";
}
.icon-location:before {
    content: "\ed93";
}
.icon-location2:before {
    content: "\ed94";
}
.icon-compass:before {
    content: "\ed95";
}
.icon-compass2:before {
    content: "\ed96";
}
.icon-map:before {
    content: "\ed97";
}
.icon-map2:before {
    content: "\ed98";
}
.icon-history:before {
    content: "\ed99";
}
.icon-clock:before {
    content: "\ed9a";
}
.icon-clock2:before {
    content: "\ed9b";
}
.icon-alarm:before {
    content: "\ed9c";
}
.icon-bell:before {
    content: "\ed9d";
}
.icon-stopwatch:before {
    content: "\ed9e";
}
.icon-calendar:before {
    content: "\ed9f";
}
.icon-printer:before {
    content: "\eda0";
}
.icon-keyboard:before {
    content: "\eda1";
}
.icon-display:before {
    content: "\eda2";
}
.icon-laptop:before {
    content: "\eda3";
}
.icon-mobile:before {
    content: "\eda4";
}
.icon-mobile2:before {
    content: "\eda5";
}
.icon-tablet:before {
    content: "\eda6";
}
.icon-tv:before {
    content: "\eda7";
}
.icon-drawer:before {
    content: "\eda8";
}
.icon-drawer2:before {
    content: "\eda9";
}
.icon-box-add:before {
    content: "\edaa";
}
.icon-box-remove:before {
    content: "\edab";
}
.icon-download:before {
    content: "\edac";
}
.icon-upload:before {
    content: "\edad";
}
.icon-floppy-disk:before {
    content: "\edae";
}
.icon-drive:before {
    content: "\edaf";
}
.icon-database:before {
    content: "\edb0";
}
.icon-undo:before {
    content: "\edb1";
}
.icon-redo:before {
    content: "\edb2";
}
.icon-undo2:before {
    content: "\edb3";
}
.icon-redo2:before {
    content: "\edb4";
}
.icon-forward:before {
    content: "\edb5";
}
.icon-reply:before {
    content: "\edb6";
}
.icon-bubble:before {
    content: "\edb7";
}
.icon-bubbles:before {
    content: "\edb8";
}
.icon-bubbles2:before {
    content: "\edb9";
}
.icon-bubble2:before {
    content: "\edba";
}
.icon-bubbles3:before {
    content: "\edbb";
}
.icon-bubbles4:before {
    content: "\edbc";
}
.icon-user:before {
    content: "\edbd";
}
.icon-users:before {
    content: "\edbe";
}
.icon-user-plus:before {
    content: "\edbf";
}
.icon-user-minus:before {
    content: "\edc0";
}
.icon-user-check:before {
    content: "\edc1";
}
.icon-user-tie:before {
    content: "\edc2";
}
.icon-quotes-left:before {
    content: "\edc3";
}
.icon-quotes-right:before {
    content: "\edc4";
}
.icon-hour-glass:before {
    content: "\edc5";
}
.icon-spinner:before {
    content: "\edc6";
}
.icon-spinner2:before {
    content: "\edc7";
}
.icon-spinner3:before {
    content: "\edc8";
}
.icon-spinner4:before {
    content: "\edc9";
}
.icon-spinner5:before {
    content: "\edca";
}
.icon-spinner6:before {
    content: "\edcb";
}
.icon-spinner7:before {
    content: "\edcc";
}
.icon-spinner8:before {
    content: "\edcd";
}
.icon-spinner9:before {
    content: "\edce";
}
.icon-spinner10:before {
    content: "\edcf";
}
.icon-spinner11:before {
    content: "\edd0";
}
.icon-binoculars:before {
    content: "\edd1";
}
.icon-search:before {
    content: "\edd2";
}
.icon-zoom-in:before {
    content: "\edd3";
}
.icon-zoom-out:before {
    content: "\edd4";
}
.icon-enlarge:before {
    content: "\edd5";
}
.icon-shrink:before {
    content: "\edd6";
}
.icon-enlarge2:before {
    content: "\edd7";
}
.icon-shrink2:before {
    content: "\edd8";
}
.icon-key:before {
    content: "\edd9";
}
.icon-key2:before {
    content: "\edda";
}
.icon-lock:before {
    content: "\eddb";
}
.icon-unlocked:before {
    content: "\eddc";
}
.icon-wrench:before {
    content: "\eddd";
}
.icon-equalizer:before {
    content: "\edde";
}
.icon-equalizer2:before {
    content: "\eddf";
}
.icon-cog:before {
    content: "\ede0";
}
.icon-cogs:before {
    content: "\ede1";
}
.icon-hammer:before {
    content: "\ede2";
}
.icon-magic-wand:before {
    content: "\ede3";
}
.icon-aid-kit:before {
    content: "\ede4";
}
.icon-bug:before {
    content: "\ede5";
}
.icon-pie-chart:before {
    content: "\ede6";
}
.icon-stats-dots:before {
    content: "\ede7";
}
.icon-stats-bars:before {
    content: "\ede8";
}
.icon-stats-bars2:before {
    content: "\ede9";
}
.icon-trophy:before {
    content: "\edea";
}
.icon-gift:before {
    content: "\edeb";
}
.icon-glass:before {
    content: "\edec";
}
.icon-glass2:before {
    content: "\eded";
}
.icon-mug:before {
    content: "\edee";
}
.icon-spoon-knife:before {
    content: "\edef";
}
.icon-leaf:before {
    content: "\edf0";
}
.icon-rocket:before {
    content: "\edf1";
}
.icon-meter:before {
    content: "\edf2";
}
.icon-meter2:before {
    content: "\edf3";
}
.icon-hammer2:before {
    content: "\edf4";
}
.icon-fire:before {
    content: "\edf5";
}
.icon-lab:before {
    content: "\edf6";
}
.icon-magnet:before {
    content: "\edf7";
}
.icon-bin:before {
    content: "\edf8";
}
.icon-bin2:before {
    content: "\edf9";
}
.icon-briefcase:before {
    content: "\edfa";
}
.icon-airplane:before {
    content: "\edfb";
}
.icon-truck:before {
    content: "\edfc";
}
.icon-road:before {
    content: "\edfd";
}
.icon-accessibility:before {
    content: "\edfe";
}
.icon-target:before {
    content: "\edff";
}
.icon-shield:before {
    content: "\ee00";
}
.icon-power:before {
    content: "\ee01";
}
.icon-switch:before {
    content: "\ee02";
}
.icon-power-cord:before {
    content: "\ee03";
}
.icon-clipboard:before {
    content: "\ee04";
}
.icon-list-numbered:before {
    content: "\ee05";
}
.icon-list:before {
    content: "\ee06";
}
.icon-list2:before {
    content: "\ee07";
}
.icon-tree:before {
    content: "\ee08";
}
.icon-menu:before {
    content: "\ee09";
}
.icon-menu2:before {
    content: "\ee0a";
}
.icon-menu3:before {
    content: "\ee0b";
}
.icon-menu4:before {
    content: "\ee0c";
}
.icon-cloud:before {
    content: "\ee0d";
}
.icon-cloud-download:before {
    content: "\ee0e";
}
.icon-cloud-upload:before {
    content: "\ee0f";
}
.icon-cloud-check:before {
    content: "\ee10";
}
.icon-download2:before {
    content: "\ee11";
}
.icon-upload2:before {
    content: "\ee12";
}
.icon-download3:before {
    content: "\ee13";
}
.icon-upload3:before {
    content: "\ee14";
}
.icon-sphere:before {
    content: "\ee15";
}
.icon-earth:before {
    content: "\ee16";
}
.icon-link:before {
    content: "\ee17";
}
.icon-flag:before {
    content: "\ee18";
}
.icon-attachment:before {

    content: "\ee19";
}
.icon-eye:before {
    content: "\ee1a";
}
.icon-eye-plus:before {
    content: "\ee1b";
}
.icon-eye-minus:before {
    content: "\ee1c";
}
.icon-eye-blocked:before {
    content: "\ee1d";
}
.icon-bookmark:before {
    content: "\ee1e";
}
.icon-bookmarks:before {
    content: "\ee1f";
}
.icon-sun:before {
    content: "\ee20";
}
.icon-contrast:before {
    content: "\ee21";
}
.icon-brightness-contrast:before {
    content: "\ee22";
}
.icon-star-empty:before {
    content: "\ee23";
}
.icon-star-half:before {
    content: "\ee24";
}
.icon-star-full:before {
    content: "\ee25";
}
.icon-heart:before {
    content: "\ee26";
}
.icon-heart-broken:before {
    content: "\ee27";
}
.icon-man:before {
    content: "\ee28";
}
.icon-woman:before {
    content: "\ee29";
}
.icon-man-woman:before {
    content: "\ee2a";
}
.icon-happy:before {
    content: "\ee2b";
}
.icon-happy2:before {
    content: "\ee2c";
}
.icon-smile:before {
    content: "\ee2d";
}
.icon-smile2:before {
    content: "\ee2e";
}
.icon-tongue:before {
    content: "\ee2f";
}
.icon-tongue2:before {
    content: "\ee30";
}
.icon-sad:before {
    content: "\ee31";
}
.icon-sad2:before {
    content: "\ee32";
}
.icon-wink:before {
    content: "\ee33";
}
.icon-wink2:before {
    content: "\ee34";
}
.icon-grin:before {
    content: "\ee35";
}
.icon-grin2:before {
    content: "\ee36";
}
.icon-cool:before {
    content: "\ee37";
}
.icon-cool2:before {
    content: "\ee38";
}
.icon-angry:before {
    content: "\ee39";
}
.icon-angry2:before {
    content: "\ee3a";
}
.icon-evil:before {
    content: "\ee3b";
}
.icon-evil2:before {
    content: "\ee3c";
}
.icon-shocked:before {
    content: "\ee3d";
}
.icon-shocked2:before {
    content: "\ee3e";
}
.icon-baffled:before {
    content: "\ee3f";
}
.icon-baffled2:before {
    content: "\ee40";
}
.icon-confused:before {
    content: "\ee41";
}
.icon-confused2:before {
    content: "\ee42";
}
.icon-neutral:before {
    content: "\ee43";
}
.icon-neutral2:before {
    content: "\ee44";
}
.icon-hipster:before {
    content: "\ee45";
}
.icon-hipster2:before {
    content: "\ee46";
}
.icon-wondering:before {
    content: "\ee47";
}
.icon-wondering2:before {
    content: "\ee48";
}
.icon-sleepy:before {
    content: "\ee49";
}
.icon-sleepy2:before {
    content: "\ee4a";
}
.icon-frustrated:before {
    content: "\ee4b";
}
.icon-frustrated2:before {
    content: "\ee4c";
}
.icon-crying:before {
    content: "\ee4d";
}
.icon-crying2:before {
    content: "\ee4e";
}
.icon-point-up:before {
    content: "\ee4f";
}
.icon-point-right:before {
    content: "\ee50";
}
.icon-point-down:before {
    content: "\ee51";
}
.icon-point-left:before {
    content: "\ee52";
}
.icon-warning:before {
    content: "\ee53";
}
.icon-notification:before {
    content: "\ee54";
}
.icon-question:before {
    content: "\ee55";
}
.icon-plus:before {
    content: "\ee56";
}
.icon-minus:before {
    content: "\ee57";
}
.icon-info:before {
    content: "\ee58";
}
.icon-cancel-circle:before {
    content: "\ee59";
}
.icon-blocked:before {
    content: "\ee5a";
}
.icon-cross:before {
    content: "\ee5b";
}
.icon-checkmark:before {
    content: "\ee5c";
}
.icon-checkmark2:before {
    content: "\ee5d";
}
.icon-spell-check:before {
    content: "\ee5e";
}
.icon-enter:before {
    content: "\ee5f";
}
.icon-exit:before {
    content: "\ee60";
}
.icon-play2:before {
    content: "\ee61";
}
.icon-pause:before {
    content: "\ee62";
}
.icon-stop:before {
    content: "\ee63";
}
.icon-previous:before {
    content: "\ee64";
}
.icon-next:before {
    content: "\ee65";
}
.icon-backward:before {
    content: "\ee66";
}
.icon-forward2:before {
    content: "\ee67";
}
.icon-play3:before {
    content: "\ee68";
}
.icon-pause2:before {
    content: "\ee69";
}
.icon-stop2:before {
    content: "\ee6a";
}
.icon-backward2:before {
    content: "\ee6b";
}
.icon-forward3:before {
    content: "\ee6c";
}
.icon-first:before {
    content: "\ee6d";
}
.icon-last:before {
    content: "\ee6e";
}
.icon-previous2:before {
    content: "\ee6f";
}
.icon-next2:before {
    content: "\ee70";
}
.icon-eject:before {
    content: "\ee71";
}
.icon-volume-high:before {
    content: "\ee72";
}
.icon-volume-medium:before {
    content: "\ee73";
}
.icon-volume-low:before {
    content: "\ee74";
}
.icon-volume-mute:before {
    content: "\ee75";
}
.icon-volume-mute2:before {
    content: "\ee76";
}
.icon-volume-increase:before {
    content: "\ee77";
}
.icon-volume-decrease:before {
    content: "\ee78";
}
.icon-loop:before {
    content: "\ee79";
}
.icon-loop2:before {
    content: "\ee7a";
}
.icon-infinite:before {
    content: "\ee7b";
}
.icon-shuffle:before {
    content: "\ee7c";
}
.icon-arrow-up-left:before {
    content: "\ee7d";
}
.icon-arrow-up:before {
    content: "\ee7e";
}
.icon-arrow-up-right:before {
    content: "\ee7f";
}
.icon-arrow-right:before {
    content: "\ee80";
}
.icon-arrow-down-right:before {
    content: "\ee81";
}
.icon-arrow-down:before {
    content: "\ee82";
}
.icon-arrow-down-left:before {
    content: "\ee83";
}
.icon-arrow-left:before {
    content: "\ee84";
}
.icon-arrow-up-left2:before {
    content: "\ee85";
}
.icon-arrow-up2:before {
    content: "\ee86";
}
.icon-arrow-up-right2:before {
    content: "\ee87";
}
.icon-arrow-right2:before {
    content: "\ee88";
}
.icon-arrow-down-right2:before {
    content: "\ee89";
}
.icon-arrow-down2:before {
    content: "\ee8a";
}
.icon-arrow-down-left2:before {
    content: "\ee8b";
}
.icon-arrow-left2:before {
    content: "\ee8c";
}
.icon-circle-up:before {
    content: "\ee8d";
}
.icon-circle-right:before {
    content: "\ee8e";
}
.icon-circle-down:before {
    content: "\ee8f";
}
.icon-circle-left:before {
    content: "\ee90";
}
.icon-tab:before {
    content: "\ee91";
}
.icon-move-up:before {
    content: "\ee92";
}
.icon-move-down:before {
    content: "\ee93";
}
.icon-sort-alpha-asc:before {
    content: "\ee94";
}
.icon-sort-alpha-desc:before {
    content: "\ee95";
}
.icon-sort-numeric-asc:before {
    content: "\ee96";
}
.icon-sort-numberic-desc:before {
    content: "\ee97";
}
.icon-sort-amount-asc:before {
    content: "\ee98";
}
.icon-sort-amount-desc:before {
    content: "\ee99";
}
.icon-command:before {
    content: "\ee9a";
}
.icon-shift:before {
    content: "\ee9b";
}
.icon-ctrl:before {
    content: "\ee9c";
}
.icon-opt:before {
    content: "\ee9d";
}
.icon-checkbox-checked:before {
    content: "\ee9e";
}
.icon-checkbox-unchecked:before {
    content: "\ee9f";
}
.icon-radio-checked:before {
    content: "\eea0";
}
.icon-radio-checked2:before {
    content: "\eea1";
}
.icon-radio-unchecked:before {
    content: "\eea2";
}
.icon-crop:before {
    content: "\eea3";
}
.icon-make-group:before {
    content: "\eea4";
}
.icon-ungroup:before {
    content: "\eea5";
}
.icon-scissors:before {
    content: "\eea6";
}
.icon-filter:before {
    content: "\eea7";
}
.icon-font:before {
    content: "\eea8";
}
.icon-ligature:before {
    content: "\eea9";
}
.icon-ligature2:before {
    content: "\eeaa";
}
.icon-text-height:before {
    content: "\eeab";
}
.icon-text-width:before {
    content: "\eeac";
}
.icon-font-size:before {
    content: "\eead";
}
.icon-bold:before {
    content: "\eeae";
}
.icon-underline:before {
    content: "\eeaf";
}
.icon-italic:before {
    content: "\eeb0";
}
.icon-strikethrough:before {
    content: "\eeb1";
}
.icon-omega:before {
    content: "\eeb2";
}
.icon-sigma:before {
    content: "\eeb3";
}
.icon-page-break:before {
    content: "\eeb4";
}
.icon-superscript:before {
    content: "\eeb5";
}
.icon-subscript:before {
    content: "\eeb6";
}
.icon-superscript2:before {
    content: "\eeb7";
}
.icon-subscript2:before {
    content: "\eeb8";
}
.icon-text-color:before {
    content: "\eeb9";
}
.icon-pagebreak:before {
    content: "\eeba";
}
.icon-clear-formatting:before {
    content: "\eebb";
}
.icon-table:before {
    content: "\eebc";
}
.icon-table2:before {
    content: "\eebd";
}
.icon-insert-template:before {
    content: "\eebe";
}
.icon-pilcrow:before {
    content: "\eebf";
}
.icon-ltr:before {
    content: "\eec0";
}
.icon-rtl:before {
    content: "\eec1";
}
.icon-section:before {
    content: "\eec2";
}
.icon-paragraph-left:before {
    content: "\eec3";
}
.icon-paragraph-center:before {
    content: "\eec4";
}
.icon-paragraph-right:before {
    content: "\eec5";
}
.icon-paragraph-justify:before {
    content: "\eec6";
}
.icon-indent-increase:before {
    content: "\eec7";
}
.icon-indent-decrease:before {
    content: "\eec8";
}
.icon-share:before {
    content: "\eec9";
}
.icon-new-tab:before {
    content: "\eeca";
}
.icon-embed:before {
    content: "\eecb";
}
.icon-embed2:before {
    content: "\eecc";
}
.icon-terminal:before {
    content: "\eecd";
}
.icon-share2:before {
    content: "\eece";
}
.icon-mail:before {
    content: "\eecf";
}
.icon-mail2:before {
    content: "\eed0";
}
.icon-mail3:before {
    content: "\eed1";
}
.icon-mail4:before {
    content: "\eed2";
}
.icon-amazon:before {
    content: "\eed3";
}
.icon-google:before {
    content: "\eed4";
}
.icon-google2:before {
    content: "\eed5";
}
.icon-google3:before {
    content: "\eed6";
}
.icon-google-plus:before {
    content: "\eed7";
}
.icon-google-plus2:before {
    content: "\eed8";
}
.icon-google-plus3:before {
    content: "\eed9";
}
.icon-hangouts:before {
    content: "\eeda";
}
.icon-google-drive:before {
    content: "\eedb";
}
.icon-facebook:before {
    content: "\eedc";
}
.icon-facebook2:before {
    content: "\eedd";
}
.icon-instagram:before {
    content: "\eede";
}
.icon-whatsapp:before {
    content: "\eedf";
}
.icon-spotify:before {
    content: "\eee0";
}
.icon-telegram:before {
    content: "\eee1";
}
.icon-twitter:before {
    content: "\eee2";
}
.icon-vine:before {
    content: "\eee3";
}
.icon-vk:before {
    content: "\eee4";
}
.icon-renren:before {
    content: "\eee5";
}
.icon-sina-weibo:before {
    content: "\eee6";
}
.icon-rss:before {
    content: "\eee7";
}
.icon-rss2:before {
    content: "\eee8";
}
.icon-youtube:before {
    content: "\eee9";
}
.icon-youtube2:before {
    content: "\eeea";
}
.icon-twitch:before {
    content: "\eeeb";
}
.icon-vimeo:before {
    content: "\eeec";
}
.icon-vimeo2:before {
    content: "\eeed";
}
.icon-lanyrd:before {
    content: "\eeee";
}
.icon-flickr:before {
    content: "\eeef";
}
.icon-flickr2:before {
    content: "\eef0";
}
.icon-flickr3:before {
    content: "\eef1";
}
.icon-flickr4:before {
    content: "\eef2";
}
.icon-dribbble:before {
    content: "\eef3";
}
.icon-behance:before {
    content: "\eef4";
}
.icon-behance2:before {
    content: "\eef5";
}
.icon-deviantart:before {
    content: "\eef6";
}
.icon-500px:before {
    content: "\eef7";
}
.icon-steam:before {
    content: "\eef8";
}
.icon-steam2:before {
    content: "\eef9";
}
.icon-dropbox:before {
    content: "\eefa";
}
.icon-onedrive:before {
    content: "\eefb";
}
.icon-github:before {
    content: "\eefc";
}
.icon-npm:before {
    content: "\eefd";
}
.icon-basecamp:before {
    content: "\eefe";
}
.icon-trello:before {
    content: "\eeff";
}
.icon-wordpress:before {
    content: "\ef00";
}
.icon-joomla:before {
    content: "\ef01";
}
.icon-ello:before {
    content: "\ef02";
}
.icon-blogger:before {
    content: "\ef03";
}
.icon-blogger2:before {
    content: "\ef04";
}
.icon-tumblr:before {
    content: "\ef05";
}
.icon-tumblr2:before {
    content: "\ef06";
}
.icon-yahoo:before {
    content: "\ef07";
}
.icon-yahoo2:before {
    content: "\ef08";
}
.icon-tux:before {
    content: "\ef09";
}
.icon-appleinc:before {
    content: "\ef0a";
}
.icon-finder:before {
    content: "\ef0b";
}
.icon-android:before {
    content: "\ef0c";
}
.icon-windows:before {
    content: "\ef0d";
}
.icon-windows8:before {
    content: "\ef0e";
}
.icon-soundcloud:before {
    content: "\ef0f";
}
.icon-soundcloud2:before {
    content: "\ef10";
}
.icon-skype:before {
    content: "\ef11";
}
.icon-reddit:before {
    content: "\ef12";
}
.icon-hackernews:before {
    content: "\ef13";
}
.icon-wikipedia:before {
    content: "\ef14";
}
.icon-linkedin:before {
    content: "\ef15";
}
.icon-linkedin2:before {
    content: "\ef16";
}
.icon-lastfm:before {
    content: "\ef17";
}
.icon-lastfm2:before {
    content: "\ef18";
}
.icon-delicious:before {
    content: "\ef19";
}
.icon-stumbleupon:before {
    content: "\ef1a";
}
.icon-stumbleupon2:before {
    content: "\ef1b";
}
.icon-stackoverflow:before {
    content: "\ef1c";
}
.icon-pinterest:before {
    content: "\ef1d";
}
.icon-pinterest2:before {
    content: "\ef1e";
}
.icon-xing:before {
    content: "\ef1f";
}
.icon-xing2:before {
    content: "\ef20";
}
.icon-flattr:before {
    content: "\ef21";
}
.icon-foursquare:before {
    content: "\ef22";
}
.icon-yelp:before {
    content: "\ef23";
}
.icon-paypal:before {
    content: "\ef24";
}
.icon-chrome:before {
    content: "\ef25";
}
.icon-firefox:before {
    content: "\ef26";
}
.icon-IE:before {
    content: "\ef27";
}
.icon-edge:before {
    content: "\ef28";
}
.icon-safari:before {
    content: "\ef29";
}
.icon-opera:before {
    content: "\ef2a";
}
.icon-file-pdf:before {
    content: "\ef2b";
}
.icon-file-openoffice:before {
    content: "\ef2c";
}
.icon-file-word:before {
    content: "\ef2d";
}
.icon-file-excel:before {
    content: "\ef2e";
}
.icon-libreoffice:before {
    content: "\ef2f";
}
.icon-html-five:before {
    content: "\ef30";
}
.icon-html-five2:before {
    content: "\ef31";
}
.icon-css3:before {
    content: "\ef32";
}
.icon-git:before {
    content: "\ef33";
}
.icon-codepen:before {
    content: "\ef34";
}
.icon-svg:before {
    content: "\ef35";
}
.icon-IcoMoon:before {
    content: "\ef36";
}

PK!�j**css/settings.cssnu&1i�/*-----------------------------------------------------------------------------

	-	Revolution Slider 4.1 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	27/11/13
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

/*********************************************
	-	SETTINGS FOR BANNER CONTAINERS	-
**********************************************/

.tp-banner-container{
	width:100%;
	position:relative;
	padding:0;

}

.tp-banner{
	width:100%;
	position:relative;
}

.tp-banner-fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



/*************************
	-	CAPTIONS	-
**************************/

.tp-static-layers	{	
	position:absolute; 
	z-index:505; 
	top:0px;left:
	0px;
}

.tp-hide-revslider,.tp-caption.tp-hidden-caption{	visibility:hidden !important; display:none !important}


.tp-caption { z-index:1; white-space:nowrap}
.tp-caption-demo .tp-caption	{	position:relative !important; display:inline-block; margin-bottom:10px; margin-right:20px !important}


.tp-caption.whitedivider3px {

	color: #000000;
	text-shadow: none;
	background-color: rgb(255, 255, 255);
	background-color: rgba(255, 255, 255, 1);
	text-decoration: none;
	min-width: 408px;
	min-height: 3px;
	background-position: initial initial;
	background-repeat: initial initial;
	border-width: 0px;
	border-color: #000000;
	border-style: none;
}


.tp-caption.finewide_large_white {
	color:#ffffff;
	text-shadow:none;
	font-size:60px;
	line-height:60px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:8px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:468px;
	min-height:3px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_medium_white {
	color:#ffffff;
	text-shadow:none;
	font-size:37px;
	line-height:37px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.boldwide_small_white {
	font-size:25px;
	line-height:25px;
	font-weight:800;
	font-family:"Open Sans", sans-serif;
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px_vertical {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:3px;
	min-height:130px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_small_white {
	color:#ffffff;
	text-shadow:none;
	font-size:25px;
	line-height:25px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_verysmall_white_mw {
	font-size:13px;
	line-height:25px;
	font-weight:400;
	font-family:"Open Sans", sans-serif;
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	max-width:470px;
	white-space:normal !important;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgb(235, 235, 235);
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.finewide_large_white {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 8px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.finewide_medium_white {
	color: #FFF;
	text-shadow: none;
	font-size: 34px;
	line-height: 34px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 5px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.huge_red {
	position:absolute;
	color:rgb(223,75,107);
	font-weight:400;
	font-size:150px;
	line-height:130px;
	font-family: 'Oswald', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	background-color:rgb(45,49,54);
	padding:0px;
}

.tp-caption.middle_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:600;
	font-size:50px;
	line-height:50px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.huge_thin_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:300;
	font-size:90px;
	line-height:90px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	letter-spacing: 20px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.big_dark {
	position:absolute;
	color:#333;
	font-weight:700;
	font-size:70px;
	line-height:70px;
	font-family:"Open Sans";
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_dark {
	position:absolute;
	color:#333;
	font-weight:300;
	font-size:40px;
	line-height:40px;
	font-family:"Open Sans";
	margin:0px;
	letter-spacing: 5px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.medium_grey {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	padding:2px 4px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#888;
	white-space:nowrap;
}

.tp-caption.small_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:14px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.large_bold_white_25 {
	font-size:55px;
	line-height:65px;
	font-weight:700;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.medium_text_shadow {
	font-size:25px;
	line-height:25px;
	font-weight:600;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:40px;
	line-height:40px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_bold_grey {
	font-size:30px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.very_large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	letter-spacing:-2px;
}

.tp-caption.very_big_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#000;
}

.tp-caption.very_big_black {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#fff;
}

.tp-caption.modern_medium_fat {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#4e5b6c;
	letter-spacing:0;
}

.tp-caption.modern_big_redbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	padding-top:1px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#de543e;
	letter-spacing:0;
}

.tp-caption.modern_small_text_dark {
	position:absolute;
	color:#555;
	text-shadow:none;
	font-size:14px;
	line-height:22px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.boxshadow {
	-moz-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
}

.tp-caption.black {
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow {
	text-shadow:none;
}
/*.tp-caption a {
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	-ms-transition:all 0.2s ease-out;
}

.tp-caption a:hover{
}*/

.tp-caption.thinheadline_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:30px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.thintext_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:16px;
	line-height:26px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.medium_bg_red a {
	color: #fff;
    text-decoration: none;
}

.tp-caption.medium_bg_red a:hover {
	color: #fff;
    text-decoration: underline;
}

.tp-caption.smoothcircle {
	font-size:30px;
	line-height:75px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	background-color:rgba(0, 0, 0, 0.498039);
	padding:50px 25px;
	text-align:center;
	border-radius:500px 500px 500px 500px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.largeblackbg {
	font-size:50px;
	line-height:70px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	padding:0px 20px 5px;
	text-shadow:none;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.largepinkbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#db4360;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largewhitebg {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#fff;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largegreenbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#67ae73;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.excerpt {
	font-size:36px;
	line-height:36px;
	font-weight:700;
	font-family:Arial;
	color:#ffffff;
	text-decoration:none;
	background-color:rgba(0, 0, 0, 1);
	text-shadow:none;
	margin:0px;
	letter-spacing:-1.5px;
	padding:1px 4px 0px 4px;
	width:150px;
	white-space:normal !important;
	height:auto;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_bold_grey {
	font-size:60px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_thin_grey {
	font-size:34px;
	line-height:30px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.small_thin_grey {
	font-size:18px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(117, 117, 117);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_darkblue {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(52, 73, 94);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_darkblue {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(52, 73, 94);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_red {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_red {
	font-size:21px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_red {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(227, 58, 12);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_orange {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(243, 156, 18);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_orange {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(243, 156, 18);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.grassfloor {
	text-decoration:none;
	background-color:rgba(160, 179, 151, 1);
	width:4000px;
	height:150px;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_white {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_white {
	font-size:30px;
	line-height:36px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white_center {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	padding:0px 0px 0px 0px;
	text-align:center;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_asbestos {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(127, 140, 141);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_black {
font-size:30px;
line-height:36px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.large_bold_black {
font-size:58px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumlarge_light_darkblue {
font-size:34px;
line-height:40px;
font-weight:300;
font-family:"Open Sans";
color:rgb(52, 73, 94);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.small_light_white {
font-size:17px;
line-height:28px;
font-weight:300;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.roundedimage {
border-width:0px;
border-color:rgb(34, 34, 34);
border-style:none;
}

.tp-caption.large_bg_black {
font-size:40px;
line-height:40px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(0, 0, 0);
padding:10px 20px 15px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumwhitebg {
font-size:30px;
line-height:30px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:rgb(255, 255, 255);
padding:5px 15px 10px;
text-shadow:none;
border-width:0px;
border-color:rgb(0, 0, 0);
border-style:none;
}

.tp-caption.medium_bg_orange_new1 {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(243, 156, 18);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}



.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
		font-weight: 300;
		font-size: 19px;
		line-height: 19px;
		font-family: 'Open Sans', sans;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}


/*.tp-caption			{	transform:none !important}*/


/*********************************
	-	SPECIAL TP CAPTIONS -
**********************************/
.tp-caption .frontcorner		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcorner		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

.tp-caption .frontcornertop		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcornertop		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

/******************************
	-	BUTTONS	-
*******************************/

.tp-simpleresponsive .button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
												cursor:pointer;
												color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
												background:url(../images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
											}

.tp-simpleresponsive  .button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(../images/gradient/g40.png) repeat-x top}


.tp-simpleresponsive  .purchase:hover,
.tp-simpleresponsive  .button:hover,
.tp-simpleresponsive  .button.big:hover		{	background-position:bottom, 15px 11px}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.tp-simpleresponsive  .button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tp-simpleresponsive  .button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.tp-simpleresponsive  .button.green, .tp-simpleresponsive  .button:hover.green,
.tp-simpleresponsive  .purchase.green, .tp-simpleresponsive  .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.tp-simpleresponsive  .button.blue, .tp-simpleresponsive  .button:hover.blue,
.tp-simpleresponsive  .purchase.blue, .tp-simpleresponsive  .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68}


.tp-simpleresponsive  .button.red, .tp-simpleresponsive  .button:hover.red,
.tp-simpleresponsive  .purchase.red, .tp-simpleresponsive  .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212}

.tp-simpleresponsive  .button.orange, .tp-simpleresponsive  .button:hover.orange,
.tp-simpleresponsive  .purchase.orange, .tp-simpleresponsive  .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00}

.tp-simpleresponsive  .button.darkgrey, .tp-simpleresponsive  .button.grey,
.tp-simpleresponsive  .button:hover.darkgrey, .tp-simpleresponsive  .button:hover.grey,
.tp-simpleresponsive  .purchase.darkgrey, .tp-simpleresponsive  .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222}

.tp-simpleresponsive  .button.lightgrey, .tp-simpleresponsive  .button:hover.lightgrey,
.tp-simpleresponsive  .purchase.lightgrey, .tp-simpleresponsive  .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

/*.tp-simpleresponsive				{	-webkit-perspective: 1500px;
										-moz-perspective: 1500px;
										-o-perspective: 1500px;
										-ms-perspective: 1500px;
										perspective: 1500px;
									}*/




/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/

.fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



.fullwidthbanner-container{
	width:100%;
	position:relative;
	padding:0;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthbanner{
	width:100%;
	position:relative;
}



/************************************************
	  - SOME CAPTION MODIFICATION AT START  -
*************************************************/
.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";		-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; */
	position:absolute;visibility: hidden;
	-webkit-font-smoothing: antialiased !important;	
	
}

.tp-simpleresponsive img	{	max-width:none}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(../assets/shadow1.png) no-repeat; background-size:100% 100%; width:890px; height:60px; bottom:-60px}
.tp-bannershadow.tp-shadow2 {	background:url(../assets/shadow2.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}
.tp-bannershadow.tp-shadow3 {	background:url(../assets/shadow3.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%}
.caption.fullscreenvideo iframe,
.caption.fullscreenvideo video	{ width:100% !important; height:100% !important; display: none}

.tp-caption.fullscreenvideo	{	left:0px; top:0px; position:absolute;width:100%;height:100%}


.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe video	{ width:100% !important; height:100% !important; display: none}


.fullcoveredvideo video,
.fullscreenvideo video					{	background: #000}

.fullcoveredvideo .tp-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}

.html5vid.videoisplaying .tp-poster	{	display: none}

.tp-video-play-button		{	background:#000;
								background:rgba(0,0,0,0.3);
								padding:5px;
								border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;
								position: absolute;
								top: 50%;
								left: 50%;
								font-size: 40px;
								color: #FFF;
								z-index: 3;
								margin-top: -27px;
								margin-left: -28px;
								text-align: center;
								cursor: pointer;
							}

.html5vid .tp-revstop		{	width:15px;height:20px; border-left:5px solid #fff; border-right:5px solid #fff; position:relative;margin:10px 20px; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}
.html5vid .tp-revstop	{	display:none}
.html5vid.videoisplaying .revicon-right-dir	{	display:none}
.html5vid.videoisplaying .tp-revstop	{	display:block}

.html5vid.videoisplaying .tp-video-play-button	{	display:none}
.html5vid:hover .tp-video-play-button { display:block}

.fullcoveredvideo .tp-video-play-button	{	display:none !important}


/********************************
	-	FULLSCREEN VIDEO ENDS	-
*********************************/


/********************************
	-	DOTTED OVERLAYS	-
*********************************/
.tp-dottedoverlay						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:4}
.tp-dottedoverlay.twoxtwo				{	background:url(../assets/gridtile.png)}
.tp-dottedoverlay.twoxtwowhite			{	background:url(../assets/gridtile_white.png)}
.tp-dottedoverlay.threexthree			{	background:url(../assets/gridtile_3x3.png)}
.tp-dottedoverlay.threexthreewhite		{	background:url(../assets/gridtile_3x3_white.png)}
/********************************
	-	DOTTED OVERLAYS ENDS	-
*********************************/


/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both}


.tp-bullets									{	z-index:1000; position:absolute;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;-webkit-transform: translateZ(5px);
											}
.tp-bullets.hidebullets					{
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
												-moz-opacity: 0;
												-khtml-opacity: 0;
												opacity: 0;
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(../assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(../assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(../images/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:0px; margin-left:3px}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:0px}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left}

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left}



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
															-webkit-transform: translateZ(5000px);
															-webkit-transform-style: flat;
															-webkit-backface-visibility: hidden;
															z-index:600;
															position: relative;

														}
.tparrows.hidearrows									{
															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
															-moz-opacity: 0;
															-khtml-opacity: 0;
															opacity: 0;
														}
.tp-leftarrow{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/large_left.png) no-Repeat top left;	
	width:40px;	height:40px;   
}
.tp-rightarrow	{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px}


.tp-leftarrow.navbar-old{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/arrowleft.png) no-Repeat top left;		
	width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px}
.tp-rightarrow.navbar-old{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px}
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px}

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background: url(../images/prev-blue.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}
.tp-rightarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../images/next-blue.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}

#index_3_slider .tp-leftarrow.default{
	background: url(../images/prev-dark.png) no-Repeat 0 0;
}
#index_3_slider .tp-rightarrow.default{		
	background:url(../images/next-dark.png) no-Repeat 0 0;	
}


.tp-leftarrow:hover,
.tp-rightarrow:hover,
#index_3_slider .tp-leftarrow:hover,
#index_3_slider .tp-rightarrow:hover {	
	background-position:bottom left;
}






/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%}


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	width:100%; height:10px; /*background:url(../images/timer.png);*/position:absolute; z-index:200;top:0px}
.tp-bannertimer.tp-bottom					{	bottom:0px;height:5px; top:auto}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/




    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(../assets/coloredbg.png) repeat}

.tp-caption.slidelink a span	{	background:url(../assets/coloredbg.png) repeat}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

.tparrows .tp-arr-imgholder								{ display: none}
.tparrows .tp-arr-titleholder							{ display: none}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

/* NAVIGATION PREVIEW 1 */
.tparrows.preview1 							{	width:100px;height:100px;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;background: transparent}
.tparrows.preview1:after					{	position:absolute; left:0px;top:0px; font-family: "revicons"; color:#fff; font-size:30px; width:100px;height:100px;text-align: center; background:#fff;background:rgba(0,0,0,0.15);z-index:2;line-height:100px; -webkit-transition: background 0.3s, color 0.3s; -moz-transition: background 0.3s, color 0.3s; transition: background 0.3s, color 0.3s}
.tp-rightarrow.preview1:after				{	content: '\e825';  }
.tp-leftarrow.preview1:after				{	content: '\e824';  }

.tparrows.preview1:hover:after 				{	background:rgba(255,255,255,1); color:#aaa}

.tparrows.preview1 .tp-arr-imgholder 		{	background-size:cover; background-position:center center; display:block;width:100%;height:100%;position:absolute;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
											}
/*.tparrows.preview1 .tp-arr-iwrapper			{	  -webkit-transition: all 0.3s;transition: all 0.3s;
												-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0}
.tparrows.preview1:hover .tp-arr-iwrapper	{	  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1}*/


.tp-rightarrow.preview1 .tp-arr-imgholder	{	right:100%;
												-webkit-transform: rotateY(-90deg);
												transform: rotateY(-90deg);
												-webkit-transform-origin: 100% 50%;
												transform-origin: 100% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}
.tp-leftarrow.preview1 .tp-arr-imgholder	{	left:100%;
												-webkit-transform: rotateY(90deg);
												transform: rotateY(90deg);
												-webkit-transform-origin: 0% 50%;
												transform-origin: 0% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}


.tparrows.preview1:hover .tp-arr-imgholder	{	-webkit-transform: rotateY(0deg);
												transform: rotateY(0deg);
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:80px; height:80px;line-height:80px; font-size:24px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:60px; height:60px;line-height:60px;font-size:20px}

	}



    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:40px; height:40px;line-height:40px; font-size:12px}
    }

/* PREVIEW 1 BULLETS */

.tp-bullets.preview1 						{ 	height: 21px}
.tp-bullets.preview1 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.15) !important;
											    /*-webkit-border-radius: 10px;
											    border-radius: 10px;*/
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 5px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview1 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview1 .bullet:hover,
.tp-bullets.preview1 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: #aaa !important;
												width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(255, 255, 255, 1) !important;
}




/* NAVIGATION PREVIEW 2 */
.tparrows.preview2 {	
	min-width:50px; 
	min-height:50px;
	border:1px solid #fff;  
	-webkit-transition: -webkit-transform 1.3s;
	-webkit-transition: width 0.3s, background-color 0.3s, opacity 0.3s;
	transition: width 0.3s, background-color 0.3s, opacity 0.3s;
}
.tparrows.preview2:after{	
	 position:absolute; 
	 top:50%;
	 font-family:'FontAwesome'; 
	 color:#fff;  
	 margin-top: -12px; 
	 -webkit-transition: color 0.3s; 
	 -moz-transition: color 0.3s; 
	 transition: color 0.3s; 
}
.tp-rightarrow.preview2:after	{content: '\f178';  right:18px}
.tp-leftarrow.preview2:after{content: '\f177';  left:18px}


/*.tparrows.preview2 .tp-arr-titleholder{	
	background-size:cover; background-position:center center; display:block; visibility:hidden;position:relative;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												white-space: nowrap;
												color: #000;
												text-transform: uppercase;
												font-weight: 400;
												font-size: 14px;
												line-height: 60px;
												padding:0px 10px;
											}

.tp-rightarrow.preview2 .tp-arr-titleholder	{	 right:50px;
												-webkit-transform: translateX(-100%);
												transform: translateX(-100%);
											}
.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:50px;
												-webkit-transform: translateX(100%);
												transform: translateX(100%);
											}*/

.tparrows.preview2.hovered{}
.tparrows.preview2:hover{	
	background:#07aaa5; 
	border:1px solid #07aaa5; 
}
.tparrows.preview2:hover:after{
	color:#fff;
}
/*.tparrows.preview2:hover .tp-arr-titleholder{	-webkit-transform: translateX(0px);
													transform: translateX(0px);
													visibility: visible;
													position: absolute;
											}*/
											
											
											

/* PREVIEW 2 BULLETS */

.tp-bullets.preview2 						{ 	height: 17px; display:none;}
.tp-bullets.preview2 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview2 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview2 .bullet:hover,
.tp-bullets.preview2 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}

.tp-arr-titleholder.alwayshidden			{	display:none !important}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview2 {	min-width:40px; min-height:40px; width:40px;height:40px;
								border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;
							}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:20px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:11px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:11px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:12px; line-height:40px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:35px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:35px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
   		 .tparrows.preview2 						{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:10px; line-height:30px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:25px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:25px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview2 							{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}
		.tparrows.preview2:hover					{	width:30px !important; height:30px !important}
    }



/* NAVIGATION PREVIEW 3 */
.tparrows.preview3 							{	width:70px; height:70px; background:#fff; background:rgba(255,255,255,1); -webkit-transform-style: flat}
.tparrows.preview3:after					{	position:absolute;  line-height: 70px;text-align: center; font-family: "revicons"; color:#aaa; font-size:30px; top:0px;left:0px;;background:#fff; z-index:100; width:70px;height:70px; -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s}
.tparrows.preview3:hover:after					{	color:#000}
.tp-rightarrow.preview3:after				{	content: '\e825';  }
.tp-leftarrow.preview3:after				{	content: '\e824';  }


.tparrows.preview3 .tp-arr-iwrapper			{
												  -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 100% 50%;
												  transform-origin: 100% 50%;
												  -webkit-transition: -webkit-transform 0.2s;
												  transition: transform 0.2s;
												  z-index:0;position: absolute; background: #000; background: rgba(0,0,0,0.75);
												  display: table;min-height:90px;top:-10px}

.tp-leftarrow.preview3 .tp-arr-iwrapper		{	 -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 0% 50%;
												  transform-origin: 0% 50%;
											}

.tparrows.preview3 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center; display:table-cell;min-width:90px;height:90px;
												position:relative;top:0px}

.tp-rightarrow.preview3 .tp-arr-iwrapper	{	right:0px;padding-right:70px}
.tp-leftarrow.preview3 .tp-arr-iwrapper		{	left:0px; direction: rtl;padding-left:70px}
.tparrows.preview3 .tp-arr-titleholder		{	display:table-cell; padding:30px;font-size:16px; color:#fff;white-space: nowrap; position: relative; clear:right;vertical-align: middle}

.tparrows.preview3:hover .tp-arr-iwrapper	{
												-webkit-transform: scale(1,1);
												  transform: scale(1,1);

											}

/* PREVIEW 3 BULLETS */
.tp-bullets.preview3 						{ 	height: 17px}
.tp-bullets.preview3 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview3 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview3 .bullet:hover,
.tp-bullets.preview3 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
		.tparrows.preview3 .tp-arr-imgholder 		{	min-width:70px;height:70px}
		.tp-rightarrow.preview3 .tp-arr-iwrapper	{	padding-right:50px}
		.tp-leftarrow.preview3 .tp-arr-iwrapper		{	padding-left:50px}
		.tparrows.preview3 .tp-arr-titleholder		{	padding:10px;font-size:16px}



	}

    @media only screen  and (max-width: 767px) {

		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
	}





/* NAVIGATION PREVIEW 4 */
.tparrows.preview4 							{	width:30px; height:110px;  background:transparent;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000}
.tparrows.preview4:after					{	position:absolute;  line-height: 110px;text-align: center; font-family: "revicons"; color:#fff; font-size:20px; top:0px;left:0px;z-index:0; width:30px;height:110px; background: #000; background: rgba(0,0,0,0.25);
												-webkit-transition: all 0.2s ease-in-out;
											    -moz-transition: all 0.2s ease-in-out;
											    -o-transition: all 0.2s ease-in-out;
											    transition: all 0.2s ease-in-out;
												   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}

.tp-rightarrow.preview4:after				{	content: '\e825';  }
.tp-leftarrow.preview4:after				{	content: '\e824';  }


.tparrows.preview4 .tp-arr-allwrapper		{	visibility:hidden;width:180px;position: absolute;z-index: 1;min-height:120px;top:0px;left:-150px; overflow: hidden;-webkit-perspective: 1000px;-webkit-transform-style: flat}

.tp-leftarrow.preview4 .tp-arr-allwrapper	{	left:0px}
.tparrows.preview4 .tp-arr-iwrapper			{	position: relative}

.tparrows.preview4 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center;width:180px;height:110px;
												position:relative;top:0px;

												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;



											}


.tparrows.preview4 .tp-arr-imgholder2 		{	display:block;background-size:cover; background-position:center center; width:180px;height:110px;
												position:absolute;top:0px; left:180px;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;

											}

.tp-leftarrow.preview4 .tp-arr-imgholder2 	{	left:-180px}




.tparrows.preview4 .tp-arr-titleholder		{	display:block; font-size:12px; line-height:25px; padding:0px 10px;text-align:left;color:#fff; position: relative;
												background: #000;
												color: #FFF;
												text-transform: uppercase;
												white-space: nowrap;
												letter-spacing: 1px;
												font-weight: 700;
												font-size: 11px;
												line-height: 2.75;
												-webkit-transition: all 0.3s;
												transition: all 0.3s;
												-webkit-transform: rotateX(-90deg);
												transform: rotateX(-90deg);
												-webkit-transform-origin: 50% 0;
												transform-origin: 50% 0;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;


}



.tparrows.preview4:after				{	transform-origin: 100% 100%; -webkit-transform-origin: 100% 100%}
.tp-leftarrow.preview4:after			{	transform-origin: 0% 0%; -webkit-transform-origin: 0% 0%}




@media only screen and (min-width: 768px)  {
		.tparrows.preview4:hover:after				{	-webkit-transform: rotateY(-90deg); transform:rotateY(-90deg)}
		.tp-leftarrow.preview4:hover:after			{	-webkit-transform: rotateY(90deg); transform:rotateY(90deg)}


		.tparrows.preview4:hover .tp-arr-titleholder	{	-webkit-transition-delay: 0.4s;
															transition-delay: 0.4s;
															-webkit-transform: rotateX(0deg);
															transform: rotateX(0deg);
															-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

														}
}

/* PREVIEW 4 BULLETS */

.tp-bullets.preview4 						{ 	height: 17px}
.tp-bullets.preview4 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview4 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview4 .bullet:hover,
.tp-bullets.preview4 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


    @media only screen  and (max-width: 767px) {
   		 .tparrows.preview4 						{	width:20px; height:80px}
   		 .tparrows.preview4:after					{	width:20px; height:80px; line-height:80px; font-size:14px}

   		 .tparrows.preview1 .tp-arr-allwrapper,
   		 .tparrows.preview2 .tp-arr-allwrapper,
   		 .tparrows.preview3 .tp-arr-allwrapper,
   		 .tparrows.preview4 .tp-arr-allwrapper		{	display: none !important}
    }



/******************************
	-	LOADER FORMS	-
********************************/

.tp-loader 	{
				top:50%; left:50%;
				z-index:10000;
				position:absolute;


			}

.tp-loader.spinner0 {
  width: 40px;
  height: 40px;
  /*background:url(../assets/loader.gif) no-repeat center center;*/
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


.tp-loader.spinner1 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}



.tp-loader.spinner5 	{	background:url(../assets/loader.gif) no-repeat 10px 10px;
							background-color:#fff;
							margin:-22px -22px;
							width:44px;height:44px;
							border-radius: 3px;
							-moz-border-radius: 3px;
							-webkit-border-radius: 3px;
						}


@-webkit-keyframes tp-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  } 50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  } 100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}


.tp-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top:-20px;margin-left:-20px;
  background-color: #ff0000;
   box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  -webkit-animation: tp-scaleout 1.0s infinite ease-in-out;
  animation: tp-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes tp-scaleout {
  0% { -webkit-transform: scale(0.0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes tp-scaleout {
  0% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}




.tp-loader.spinner3 {
  margin: -9px 0px 0px -35px;
  width: 70px;
  text-align: center;

}

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.tp-loader.spinner3 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes tp-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}




.tp-loader.spinner4 {
  margin: -20px 0px 0px -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-animation: tp-rotate 2.0s infinite linear;
  animation: tp-rotate 2.0s infinite linear;
}

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: tp-bounce 2.0s infinite ease-in-out;
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes tp-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes tp-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes tp-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}



.tp-transparentimg {	content:"url(../assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}



.tp-caption img {
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
zoom: 1;
}


@font-face {
  font-family: 'revicons';
  src: url('../font/revicons.eot?5510888');
  src: url('../font/revicons.eot?5510888#iefix') format('embedded-opentype'),
       url('../font/revicons.woff?5510888') format('woff'),
       url('../font/revicons.ttf?5510888') format('truetype'),
       url('../font/revicons.svg?5510888#revicons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'revicons';
    src: url('../font/revicons.svg?5510888#revicons') format('svg');
  }
}
*/

 [class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.revicon-search-1:before { content: '\e802'} /* '' */
.revicon-pencil-1:before { content: '\e831'} /* '' */
.revicon-picture-1:before { content: '\e803'} /* '' */
.revicon-cancel:before { content: '\e80a'} /* '' */
.revicon-info-circled:before { content: '\e80f'} /* '' */
.revicon-trash:before { content: '\e801'} /* '' */
.revicon-left-dir:before { content: '\e817'} /* '' */
.revicon-right-dir:before { content: '\e818'} /* '' */
.revicon-down-open:before { content: '\e83b'} /* '' */
.revicon-left-open:before { content: '\e819'} /* '' */
.revicon-right-open:before { content: '\e81a'} /* '' */
.revicon-angle-left:before { content: '\e820'} /* '' */
.revicon-angle-right:before { content: '\e81d'} /* '' */
.revicon-left-big:before { content: '\e81f'} /* '' */
.revicon-right-big:before { content: '\e81e'} /* '' */
.revicon-magic:before { content: '\e807'} /* '' */
.revicon-picture:before { content: '\e800'} /* '' */
.revicon-export:before { content: '\e80b'} /* '' */
.revicon-cog:before { content: '\e832'} /* '' */
.revicon-login:before { content: '\e833'} /* '' */
.revicon-logout:before { content: '\e834'} /* '' */
.revicon-video:before { content: '\e805'} /* '' */
.revicon-arrow-combo:before { content: '\e827'} /* '' */
.revicon-left-open-1:before { content: '\e82a'} /* '' */
.revicon-right-open-1:before { content: '\e82b'} /* '' */
.revicon-left-open-mini:before { content: '\e822'} /* '' */
.revicon-right-open-mini:before { content: '\e823'} /* '' */
.revicon-left-open-big:before { content: '\e824'} /* '' */
.revicon-right-open-big:before { content: '\e825'} /* '' */
.revicon-left:before { content: '\e836'} /* '' */
.revicon-right:before { content: '\e826'} /* '' */
.revicon-ccw:before { content: '\e808'} /* '' */
.revicon-arrows-ccw:before { content: '\e806'} /* '' */
.revicon-palette:before { content: '\e829'} /* '' */
.revicon-list-add:before { content: '\e80c'} /* '' */
.revicon-doc:before { content: '\e809'} /* '' */
.revicon-left-open-outline:before { content: '\e82e'} /* '' */
.revicon-left-open-2:before { content: '\e82c'} /* '' */
.revicon-right-open-outline:before { content: '\e82f'} /* '' */
.revicon-right-open-2:before { content: '\e82d'} /* '' */
.revicon-equalizer:before { content: '\e83a'} /* '' */
.revicon-layers-alt:before { content: '\e804'} /* '' */
.revicon-popup:before { content: '\e828'} /* '' */

	h2.tp-caption-1,
  	h2.tp-caption{
  
		font-family: "raleway";
		text-transform:none;
		font-weight: 300;
		/*font-size: 60px !important;
	  	line-height:70px!important;
	  	margin-bottom:100px!important;*/
  	}
  	p.tp-caption-1,
  	p.tp-caption{
		font-family: "raleway";
		text-transform:none;
		font-weight: 300;
		/*font-size: 30px !important;
	  	line-height:24px!important;
	  	letter-spacing:2px;*/
  	}PK!��
����css/onepage_old.cssnu&1i� @charset "utf-8";
/* CSS Document 

Table Of Content

+General Styling and Tags
*body
+ @font-face

+ Header

+ #main-navigation
-.navigation
	- .navbar-nav
		- .page-scroll

+- #main-slider

+ #about
	-.canvas-box

+ #bg-paralax

+ #facts
	-.number-counters
		-.counters-item 
		
+ #responsive
	-.responsive-pic
	-.r-test
		-.r-feature
			-.screens

+ #experties
	-.myStat2
	-.circliful
		-.circle-text
			-canvas

+ .we-do
	-.do-wrap

+ #thinkers
	-.thinker-wrap
		-.social-contact
	
+ #project
   - .work-filter 
	- .work-item
		- .overlay
			- .overlay-inner


+ #pricing
	-.pricing 
	-.pricing_tenzin
		-.pricing_item 
			-.pricing_title
			-.pricing_price
			-.pricing_sentence
			-.pricing_list
			-.pricing_action

			
+ #testinomial
	-#testinomial-slider
	-.owl-carousel
		.item

+ #publication
	-#publication-slider
	-.owl-carousel
		.item
		
+ #contact
	-#letstalk

+ ##area-main
	-.blog-wrap
		-.blog-content
			-.blog-item
		

+ footer
	-.breadcrumb

*/






/****** General Styling ******/
body{
	 color:#222222;
    font-family: "Open Sans", sans-serif;
	 overflow-x: hidden;
	 font-size:14px;
	 
}
ul , ol{
	margin:0;
	padding:0;
	list-style:none;
}
a ,
a:hover , 
a:focus{
	text-decoration:none;
	outline:none;
	color:inherit;
}
input[type="submit"]{
	background-color:transparent;
}	
button:focus {
    outline: medium none;
}
h1,
h2, 
h3, 
h4, 
#testinomial-slider .item h5{
	margin:0;
}
h1{
	font-size:46px;
}
h2, 
h3,
h4{
	text-transform:capitalize;
	font-family: "raleway";
}

h2{
	font-size:44px;
}
h3{
	font-size:24px;
	font-weight: 600;
}

h4{
	font-size:18px;
	text-transform: capitalize;
    font-weight: 600;
}
p{
	font-size:14px;
	color:#222222;
}
textarea{
	resize:none;
}
p.title{
	font-size:14px;
	text-transform:capitalize;
}
.heading{
	margin-bottom:40px;
}
.padding{
	padding:90px 0;
}
.top-padding{
	padding-top:90px;
}
.bottom-padding{
	padding-bottom: 90px;
}
.box-section.nopadding .bt-boxfluid,
.container-fluid.nopadding{
	padding-left: 0;
	padding-right: 0;
}
.section-padding{
	padding-top:130px!important;
}
#about.section-padding{
	padding-top:170px!important;	
}
.padding-botom{
	padding-bottom:90px;
}
.magin30{
	margin-bottom:30px;
}
.dark{
	background:#1b1d1f;
}
.light{
	background:#f5f5f5;
}
.base_color{
	background:#82b440;
}

.green{
	background:#74c8b8;
}

.pink{
	background:#ec768c;
}

.purple{
	background:#c183d6;
}

.blue{
	background:#31aae1;
}

.green-text{
	color:#74c8b8;
}
.pink-text{
	color:#ec768c;
}
.purple-text{
	color:#c183d6;
}

.blue-text{
	color:#31aae1;
}

.bg-grey{
	background:#ececec;
}

/*Buttons*/
.btn-common{
	border:1px solid #fff;
	color:#fff;
}

.btn-black{
	border:1px solid #000;
	color:#000;
}
.btn-green{
	background:#82B440;
	border:1px solid transparent;
}	
.btn-blue{
	background:#07AAA5;
	border:1px solid transparent;
}
.btn-pink{
	background:#ec768c;
	border:1px solid transparent;
}
.btn-common,
.btn-black,
.btn-white,
.loadmore{
	font-size:15px;
	font-weight:bold;
	text-transform:capitalize;
	display:inline-block;
	padding:12px 30px;
}
.btn-white{
	background:#fff;
	color:#000;
	border:1px solid transparent;
}
a.readmore{
	font-size:13px;
	font-weight:bold;
	text-decoration:underline;
	display:inline-block;
	text-transform:uppercase;
}
a.readmore:hover, a.readmore:focus{
	color:#82b440;
}
.loadmore{
	color:#222222;
	margin-top:40px;
	position:relative;
	-webkit-transition: color 0.3s ease 0s;
	-ms-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}
.loadmore:hover{
	color:#82b440;
}
.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left:95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top:25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.loadmore:hover::before, .loadmore:focus::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

/* Bounce To Top */
.bounce-top,
.bounce-green,
.bounce-white, 
.bounce-pink{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.bounce-pink:before{
	background:#EC768C !important;
}
.bounce-top:before{
	background: #07AAA5;
	
}
.bounce-green:before{
	background:#82B440;
}
.bounce-white:before{
	background: #fff;
}	
.bounce-top:before,
.bounce-green:before,
.bounce-white:before,
.bounce-pink:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.bounce-top:hover, .bounce-top:focus{
   color: #fff!important;
   border:1px solid #07AAA5;
}
.bounce-pink:hover, .bounce-pink:focus{
   color: #fff !important;
   border:1px solid #EC768C !important;
}
.bounce-green:hover, .bounce-green:focus{
   color: #fff;
   border:1px solid #82B440;
}
.bounce-white:hover, .bounce-white:focus{
	color:#1b1d1f !important;
	border:1px solid #fff;
}	
.bounce-top:hover:before, .bounce-top:focus:before, 
.bounce-green:hover::before, .bounce-green:focus::before,
.bounce-white:hover::before, .bounce-white:focus::before,
.bounce-pink:hover::before, .bounce-pink:focus::before{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/*Section with image*/
.info-section {
	overflow:hidden;
}
.info-section .row {
    margin: 0;
}

.info-section .block {
    position: relative;
}
.info-section ul.social-media{
}

.info-section ul.social-media li{
	display:inline-block;
}

.info-section ul.social-media li a{
	color:#1b1d1f;
	font-size:20px;
	margin-right:10px;
	display:block;
	margin-top:25px;
}
.info-section ul.social-media li a:hover,.info-section ul.social-media li a:focus{
	color:#82b440
}

.info-section .bg {
    background-size: cover;
	 background-position: center center;
    bottom: 0;
    left: 0;
    position:relative;
    right: 0;
    top: 0;
	 padding-top:75%;
	 margin:0 -15px;
}

.info-section .block {
	padding-top:0;
	padding:90px 5%;
}
.info-section .block .center {
  height:100%;
}


/*Header Starts*/
a, #navigation.affix .navbar-default .navbar-nav > li > a,
#main-navigation, #navigation.affix, .navbar-brand,
#navigation.affix .navbar-default .navbar-nav > li > a,
.push_nav li a,
ul.top-right li a:hover,
#about .canvas-box span i, #about .canvas-box h4,
#about .canvas-box:hover span i,
.we-do .do-wrap i, .we-do .do-wrap:hover i,
.counters-item i, .counters-item:hover i,
.thinker-image .overlay,
.work-filter ul li a,
.main-button, .main-button > button span, .overlay,
.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span,
#paralax-slider .owl-controls .owl-page span{
	-webkit-transition: all .3s ease;
   -moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
   -o-transition:all .3s ease;
	transition:all .3s ease;
}	
#main-navigation {
  position: absolute;
 
}
#navigation.affix {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
   box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);

}
#main-navigation, #navigation.affix{
	top: 0;
	z-index:999;
	width: 100%;

}	
.navbar-default {
  background-color: transparent;
  border-color: transparent;
}
.navbar , .navbar-default{
	  border:none;
}
.navbar {
  margin-bottom: 0;
  min-height: auto;
}
 .navbar-collapse {
   overflow-x: visible !important;
}
.navbar-collapse.in {
  overflow-y: auto !important;
  height: auto !important;
}
.navbar-brand {
  height: auto;
  padding:29px 0;
  float:none;
  display:block;
  width:150px;
}
#navigation.affix .navbar-brand {
  padding: 16px 0;
  width: 134px;
}
.navbar-default .navbar-nav > li{
	 margin:0 20px;
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:37px 0 15px 0;
  border-bottom:3px solid transparent;
}
#navigation.affix .navbar-default .navbar-nav > li > a{
	color: #222;
	padding:22px 0;
		
}
.navbar-default .navbar-nav > li > a:hover,
#navigation.affix .navbar-default .navbar-nav > li > a:hover{
	color:#07AAA5;
	background-color:transparent;
}
.navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .active a:hover,
.navbar-default .navbar-nav > .active a:focus,
#navigation.affix .navbar-default .navbar-nav > .active a, #navigation.affix .navbar-default .navbar-nav > .active a:hover,
#navigation.affix .navbar-default .navbar-nav > .active a:focus{
	color:#07AAA5;
	border-bottom:3px solid #82b440;
	background-color:transparent;
}	

.navbar-toggle {
  background: transparent !important;
  border: medium none;
  margin-right: 0;
}

.navbar-toggle:hover {
  background: transparent !important;
}
.navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color:#fff !important;
}
#navigation.affix .navbar-toggle .icon-bar{
	background-color:#222 !important;
}	
.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggle .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
/*Social Icons On Headers*/
ul.top-right {
  float: right;
  width: auto;
  margin: 34px 0 34px 10px;
  position:relative;
  z-index:1000;
}
#navigation.affix ul.top-right{
	margin:17px 0 17px 10px;
}
ul.top-right li{
	display:inline-block;
	margin-left:2px;
}
ul.top-right li a {
  display: block;
  font-size:13px;
  -webkit-border-radius:50%;
  border-radius:50%;
  height:26px;
  width:26px;
  text-align: center;
  line-height:26px;
  color:#fff;
}
#navigation.affix  ul.top-right li a {
  color: #222;
}
#navigation.affix  ul.top-right li a:hover{
	color:#fff;
}
ul.top-right li a:hover{
	background:#fff;
}
ul.top-right li a:hover.facebook{
	  color:#3b5998;
}
ul.top-right li a:hover.twitter{
	color:#55acee;
}
ul.top-right li a:hover.instagram{
	color:#e95950;
}

#navigation.affix ul.top-right li a:hover.facebook{
	  background:#3b5998;
}
#navigation.affix ul.top-right li a:hover.twitter{
	background:#55acee;
}
#navigation.affix ul.top-right li a:hover.instagram{
	background:#e95950;
}


/* ------------- Push Menu ------------ */
#main-navigation.noborder {
  box-shadow: 0 0;
}	
.main-button {
  height: auto;
  position: fixed;
  width:auto;
  z-index: 999;
  top: 31px;
}
.main-button.right{
	right: 15px;
}
.main-button.left{
	left: 15px;
}
.main-button.left > button.menu-active{
	left:250px;
}
.main-button > button {
  background-color:#fff;
  border:none;
  padding:5px;
  -webkit-border-radius:2px;
  -ms--border-radius:2px;
  border-radius:2px;
}
.main-button > button:hover span:first-child,
.main-button > button.menu-active span:first-child{
  transform: translateY(6px) rotate(-45deg);
}

.main-button > button:hover span:nth-child(2),
.main-button > button.menu-active span:nth-child(2){
  opacity: 0;
  transform: rotate(-45deg);
}
.main-button > button:hover span:last-child,
.main-button > button.menu-active span:last-child{
  transform: translateY(-6px) rotate(-135deg);
}
.main-button > button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width:20px;
}.main-button > button span:nth-child(2){
  margin: 3px 0;
}
.navbar-brand {
  display: inline-block;
}
.cbp-spmenu {
    background:#fff;
    position: fixed;
	 box-shadow:0px 0px 8px 1px rgba(0,0,0,0.176);
}
.push_nav_brand{
	margin:30px 0 30px 15px;
	display: inline-block;
	width:110px;
}
.logo-space{ padding:32px 0;}
.push_nav li{
	position:relative;
	overflow: hidden;
}
.push_nav li a{
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size:13px;
  font-weight:600;
  display:block;
  padding:15px;
  position:relative;
  text-transform: capitalize;
  letter-spacing:1px; 
  font-family: "raleway";
}
.push_nav li a:hover, .push_nav li.active a, .push_nav .active a:hover, .push_nav li.active a:focus{
	color:#07AAA5;
}	
/* ------------- Push Menu ------------ */



/* Index5 Navigation */
.index5 .affix-top{
	top: 0;
    z-index: 999;
    width: 100%;
	background-color: #fff;
    position: fixed;
    -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
	padding:0px;
	}

.index5 .affix-top a{
	color:#000!important;
	}

.index5 .affix-top .active a{
	color:#07AAA5!important;
	}		
.index5 .affix-top .navbar-toggle .icon-bar {
    background-color: #222 !important;
}

 




/* ------------ Main Banner ------------ */
#main-slider { color:#fff;}
.tp-banner h2{
	font-size:54px;
}
.tp-banner p{
	font-size:18px;
}
.tp-banner p , #main-slider .tp-caption a{
	color:#fff;
}
#main-slider h2.tp-caption > span{
	display:block;
}
#main-slider .tp-caption a{
	margin:5px;
}
.tp-bullets{ display:none;} 
.tp-caption{ padding:0 15px !important;}


.layer-content p{
	color:#000;
	font-weight:400;
}

.layer-content h2{
	color:#000;
	font-weight:600;
}

.layer-content h2 span{
	color:#07AAA5;
	font-weight:600;
	display:inline-block!important;
}

.layer-content h2 span.green-text{
	color:#82b440;
}









/* ------------ Main Banner ------------ */



/* ------------ Banner With Text Rotator ------------ */
.text-rotator{
	background:url("../images/banner_text.jpg");
	padding-top:150px;
	background-size:cover;
	background-attachment:fixed;
	background-position:center center;
	width:100%;
}
.text-rotator #paralax-slider{
	padding:15% 0;
}
#paralax-slider .item-content p{
	font-size:20px;
}
#paralax-slider .item-content p ,#paralax-slider .item-content h2{
		color:#fff;
}
#paralax-slider .item-content h2{
	font-size:58px;
	margin-bottom:25px;
	font-weight:100;
}

#paralax-slider .owl-controls {
  margin-top:5%;
}
#paralax-slider .owl-controls .owl-page span{
	background: #fff; 
	text-align: center;
	height:12px;
	width:12px;
	border-radius:50%;
	opacity: 1;
}
#paralax-slider .owl-controls .owl-page span:hover,
#paralax-slider .owl-controls .active span{
    background:#6BB156;
}

ul.navbar-nav ul.dropdown-menu{
	border: none;
	left: 0;
	right: auto;
}
.navbar-default .navbar-nav li ul.dropdown-menu a{
	border: none !important;
	padding: 7px 20px;
	color: #000;
	font-size: 14px;
}

/* ------------ What We Offer ------------ */
#about{}	
#about .canvas-box{
	cursor: pointer;
}
#about .canvas-box span{
	display: inline-block;
	margin-bottom:15px;
	padding:5px;
}
#about .canvas-box span i{
  display: inline-block;
  font-size:50px;
}
.color1{ color:#07AAA5;}
.color2{ color:#99D8CC;}	
.color3{ color:#EC768C;}	
.color4{ color:#C183D6;}	
.color5{ color:#31AAE1;}
.color6{ color:#82B440;}			
#about .canvas-box:hover span i,
.counters-item:hover i,
.we-do .do-wrap:hover i{
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
}
#about .canvas-box:hover h4.color1{
	color:#07AAA5;
}
#about .canvas-box:hover h4.color2{
	color:#99D8CC;
}
#about .canvas-box:hover h4.color3{
	color:#EC768C;
}
#about .canvas-box:hover h4.color4{
	color:#C183D6;
}
#about .canvas-box:hover h4.color5{
	color:#31AAE1;
}
#about .canvas-box:hover h4.color6{
	color:#82B440;
}	
#about .canvas-box h4{
	margin-bottom:15px;
	color:#000;
}
/* ------------ What We Offer ------------ */



/* ------------ Paralax background ------------ */
#bg-paralax {
  background:url("../images/paralax-index1.jpg") no-repeat;
  color: #fff;
  padding:10% 0;
}
#bg-paralax , #testinomial{
  background-size:cover;
  background-position:center center;
  background-attachment:fixed;
  width:100%;
}

#bg-paralax p{
	margin-bottom:25px;
	color: #fff;
}
#bg-paralax h2{
	font-size:48px;
}
/* ------------ Paralax background ------------ */



/*  ------------ Counters Fact Info  ------------ */
#facts{}
#facts .counters-item{
	padding:26% 10%;
	font-weight:bold;
	vertical-align:middle;
	color:#fff;
	cursor:pointer;
}
#facts .counters-item h2{
	font-family: "Open Sans", sans-serif;
}	

.counters-item i {
  font-size:50px;
  display: block;
  margin-bottom:15px;
}
.counters-item p{
	color:#fff;
	text-transform: capitalize;
	font-weight:bold;
}
/*  ------------ Counters Fact Info  ------------ */




/*  ------------ Responsive Secvtion With Side Image  ------------ */
#responsive .responsive-pic{}
#responsive .responsive-pic > .col-md-6 > img{ margin-top:-42px;}
#responsive .responsive-pic > .col-md-6, #responsive .responsive-pic > .col-sm-6{
	padding-left:0;
}

#responsive .r-test h3 , #responsive .r-test h4{
	color:#222222;
}

#responsive .r-test h4{
	margin-top:40px;
	margin-bottom:20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left:10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom:15px;
}

.r-test ul.r-feature li:before{
  content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.r-test .screens{
	margin-top:30px;
}

.r-test .screens i{
	display:inline-block;
	margin:0 3px;
}

.r-test .screens i:first-child{
	font-size:40px;
}

.r-test .screens i:nth-child(2){ font-size:30px; }

.r-test .screens i:last-child{ font-size:25px; }
/*  ------------ Responsive Secvtion With Side Image  ------------ */




/*  ------------ experties  ------------ */
.circliful {
  position: relative;
  float:left;
  margin-left:35px;
  margin-bottom:35px;
}

.circliful:first-child{
	margin-left:0;
}

.circle-text {
  background-color:#eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius:100%;
}

.circliful p{
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2{
	width:20%;
}

.circle-info, .circle-info-half {
	color: #999;
}

.circliful .fa {
	margin: -10px 3px 0 3px;
	position: relative;
	bottom: 4px;
}
/*  ------------ experties  ------------ */




/*  ------------ What We Do ------------ */
.we-do .do-wrap{
	background:#fff;
	-webkit-box-shadow: 0 1px 1px 0 #ddd;
	-ms-box-shadow: 0 1px 1px 0 #ddd;
	box-shadow: 0 1px 1px 0 #ddd;
}
	
.we-do .do-wrap > .top{
	width:100%;
	height:72px;
	display:block;
}
.we-do .do-wrap span{
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}
.we-do .do-wrap span i{
	color: #fff;
	font-size:50px;
	line-height: 99px;
	display:block;
}
.we-do .do-wrap h4{
	margin-bottom:15px;
}		
.we-do .do-wrap p,
.white-box p{
	margin:0 15px;
}
.we-do .do-wrap a{
	margin:35px 0;
	text-decoration:none;
	position:relative;
}
.we-do .do-wrap a:before,
.thinkers .thinker-wrap ul.social-contact li a:before,
.index_2#publication .wrap-pulication a:before{
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top:100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
	
}
.we-do .do-wrap a:hover::before, .we-do .do-wrap a:focus::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px);
	 -ms-transform:translateY(0px);
}
.we-do .do-wrap a.green-text:hover::before, .we-do .do-wrap a.green-text:focus::before{
	background:#74c8b8;
}
.we-do .do-wrap a.green-text:hover, .we-do .do-wrap a.green-text:focus{
	color:#74c8b8;
}
.we-do .do-wrap a.pink-text:hover::before, .we-do .do-wrap a.pink-text:focus::before{
	background:#ec768c;
}
.we-do .do-wrap a.pink-text:hover, .we-do .do-wrap a.pink-text:focus{
	color:#ec768c;
}
.we-do .do-wrap a.purple-text:hover::before, .we-do .do-wrap a.purple-text:focus::before{
	background:#c183d6;
}
.we-do .do-wrap a.purple-text:hover, .we-do .do-wrap a.purple-text:focus{
	color:#c183d6;
}
.we-do .do-wrap a.blue-text:hover::before, .we-do .do-wrap a.blue-text:focus::before{
	background:#31aae1;
}
.we-do .do-wrap a.blue-text:hover, .we-do .do-wrap a.blue-text:focus{
	color:#31aae1;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#82b440;
	
}	

/* ------------ What We Do ------------ */




/* ------------  Our Creative Thinkers ------------  */
.thinkers .thinker-wrap img, #publication-slider .item .image img{
	width:100%;
	-moz-transition:all .2s linear;
	-ms-transition:all .2s linear;
	-o-transition:all .2s linear;
	-webkit-transition:all .2s linear;
	transition:all .2s linear;
}
.thinker-wrap p{
	margin:0 10px;
}
.thinker-image{
	width:100%;
	overflow:hidden;
	position:relative;
}
.thinker-image .overlay{
	background:rgba(7,170,165,.75);
	position:absolute;
	width:100%;
	bottom:0;
	top: auto;
	opacity:0;
	filter: alpha(opacity=0);
	left:0;
	right:0;
	cursor:pointer;
   padding:0;
	height:80px;
	-moz-transform:translateY(100%);
	-ms-transform:translateY(100%);
	-webkit-transform:translateY(100%);
	transform:translateY(100%);
}
.thinker-image .overlay.pink{
	background:rgba(236,118,140,.75);
}
.thinker-image .overlay.green{
	background:rgba(130,180,64,.75);
}	
.thinker-image:hover .overlay{
	opacity:1;
	filter: alpha(opacity=100);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.thinker-image .overlay ul.social-link li a{
	border: 1px solid #fff;
}
.thinker-image .overlay ul.social-link li a > i{
	color: #fff;
}
.thinker-image .overlay ul.social-link li a:hover > i{
	color: #121416;
}
.thinker-image .overlay ul.social-link li a:hover span{
	background: #fff;
	border:1px solid #fff;
}
.thinker-wrap:hover .thinker-image img,  #publication-slider .item:hover .image img
{
	transform:scale(1.05);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}
.thinkers .thinker-wrap h3{  
	margin-top:20px;
	font-size:20px;
}
.thinkers .thinker-wrap small{
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

.thinkers .thinker-wrap ul.social-contact li{
	display:inline-block;
}

.thinkers .thinker-wrap ul.social-contact li a{
	font-weight:bolder;
	color:#222222;
	margin:0 8px;
	text-transform:uppercase;
	position:relative;
	padding-bottom:3px;
}
.thinkers .thinker-wrap ul.social-contact li a:hover::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px)
	
}
.thinkers .thinker-wrap ul.social-contact li a:hover.facebook{
	color:#3b5998 !important;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before{
	background: #3b5998;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter{
	color:#1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before{
	background: #1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden{
	color:#0077B5;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before{
	background: #0077B5;
}
/* ------------  Our Creative Thinkers ------------  */




/* ------------  Gallery Filter ------------  */
#project{
	padding-top:5%;
	background:#f8f8f8;
}
.work-filter {
	margin-bottom:50px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: #222222;
  display: block;
  font-size:15px;
  padding:6px 10px;
  text-transform: capitalize;
  border-bottom:1px solid #909090;
  border-top:1px solid #909090;
  border-left:1px solid transparent;
  border-right:1px solid transparent;
  cursor: pointer;
}
.work-filter ul li a:hover,
.work-filter ul li a.active:hover{
  background-color:#07AAA5;
  border:1px solid #07AAA5;
  color: #fff;
}
.work-filter ul li a.active {
  background-color: #82b440;
  border:1px solid #82b440;
  color: #fff;
}

.mix {
    display: none;
}

.index_2 .work-item {
    width:20%;
}

.work-item {
	height:auto;
	width:auto;
	float:left;
   position: relative;
	overflow:hidden;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
  width:100%;
}
.item-containe > img{
  -webkit-transition: all 0.7s ease 0s;
   -moz-transition:all 0.7s ease 0s;
	-ms-transition:all 0.7s ease 0s;
   -o-transition:all 0.7s ease 0s;
	transition:all 0.7s ease 0s;
}
.item-container:hover  img{
	transform:scale(1.2);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}

.overlay {
	background-color:rgba(255,255,255,.8);
	position: absolute;
	left:10px;
	top:10px;
	bottom:10px;
	right:10px;
	width:auto;
	height:inherit;
	color: #222222;
	opacity: 0;
	filter: alpha(opacity=0);
	padding:2%;
	z-index:1;
}

.overlay-inner{
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
.work-item:hover .line{
	width:40%;
}
.overlay h4.color{ color:#07AAA5;}
.overlay h4.base{ color:#82A75E;}

.work-item .overlay p{
	font-size:14px;
}
.overlay .line{
	width:0%;
}
.overlay .line ,
.product-content .line{
	height:1px;
	margin:15px auto;
	background-color:#000;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;					 
}
/* ------------  Gallery Filter ------------  */




/* ---------- Pricing Tables ---------- */
.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.pricing_item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}
.pricing_list {
	text-align: left;
}
.pricing_tenzin .pricing_item {
	margin: 1em;
	padding: 2em 1em;
	text-align: left;
	color: #262b38;
	background: #EEF0F3;
	border-top: 3px solid;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	margin-top:0;
}
.pricing_tenzin .pricing_item.pink{
	border-color:#EC768C;
}	
.pricing_tenzin .pricing_item.blue{
	border-color:#07AAA5;
}
.pricing_tenzin .pricing_item.pink .pricing_action{
	background:#EC768C;
}
.pricing_tenzin .pricing_item.blue .pricing_action{
	background:#07AAA5;
}
.pricing_tenzin .pricing_item.active{
	border-color: #82B440;
}
/*.pricing_tenzin .pricing_item.active:hover{
	border-color: #07AAA5;
} */
.pricing_tenzin .pricing_title {
	font-size: 1em;
	margin: 0 0 1em;
}
.pricing_item:hover .pricing_action{
	border:1px solid transparent;
	background:#82b440 !important;
}
.pricing_tenzin .pricing_price {
	font-size: 2em;
	padding: 0.5em 0 0.75em;
	border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
	font-size: 0.5em;
	vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
	font-weight: bold;
	padding: 0 0 0.5em;
	color: #9CA0A9;
	border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
	font-size:14px;
	padding:25px 0;	
	color: #8b909d;
}
.pricing_tenzin .pricing_list li{
	margin-bottom:8px;
}
.pricing_tenzin .pricing_list li:before{
	content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.pricing_tenzin .pricing_action {
	font-weight: bold;
	margin-top: auto;
	padding: 1em 2em;
	color: #fff;	
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
	border:1px solid transparent;

 }
.pricing_item.active .pricing_action{
	border:1px solid transparent;
	background:#82b440;
}
.pricing_item.active:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}	
/* ---------- Pricing Tables ---------- */



/* ------------ Testinomials ------------ */
#testinomial{
	background:url(../images/bg-testinomial.jpg) no-repeat;
	color:#fff;
}
#testinomial h2{ color:#82B440; }
#testinomial p{ color:#fff; }
#testinomial-slider .item{
  display: block;
  width: 100%;
  height: auto;
  color:#fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5{ 
	font-size:14px; 
	text-transform:uppercase; 
	margin-top:40px; 
	margin-bottom:15px;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next{
	border:1px solid #fff;
	color:#FFF;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next ,
#publication-slider .owl-prev ,
#publication-slider .owl-next {
	top:40%;
	position:absolute;
	background:transparent;
	height:38px;
	width:38px;
	-ms-border-radius:38px;
	-webkit-border-radius:38px;
	border-radius:38px;
	font-size:30px;
	line-height:20px;
	opacity:1;
	filter: alpha(opacity=100);
}

#testinomial-slider .owl-prev:hover,
#testinomial-slider .owl-next:hover ,
#publication-slider .owl-prev:hover ,
#publication-slider .owl-next:hover{
	border:1px solid #82b440;
	background-color:#82b440;
	color:#fff;
	-webkit-transition: background 0.3s linear 0.1s;
	-ms-transition: background 0.3s linear 0.1s;
	transition: background 0.3s linear 0.1s;
}
#testinomial-slider .owl-prev{
	left:0;
}
#testinomial-slider .owl-next{
	right:0;
}
/* ------------ Testinomials ------------ */



/* ------------  Publications ------------ */
#publication{}
#publication-slider .item{
  margin:0 15px;
}
#publication-slider .item:hover{
	cursor:pointer;
}	
#publication-slider .item .image{
	overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item > img{
  display: block;
  width: 100%;
  height: auto;
}
#publication-slider .item h5{
	font-size:14px;
	color:#727272;
	margin-top:25px;
}
#publication-slider .item h5 , #publication-slider .item h4{
	margin-bottom:10px;
}
#publication-slider .item h4{
	font-size:20px;
	color:#222222;
}
#publication-slider .item  a.name{
	color:#222222;
}

#publication-slider .item  a.name ,
#publication-slider .item  a.comment{
	font-size:15px !important;
	margin-bottom:10px;
	display:inline-block;
	text-transform:none;
}
#publication-slider .item  a.comment{
	color:#82b440;
}
#publication-slider .item  a.comment:before{
	content:'';
	background:transparent;
}
#publication-slider .item p > a{
	font-size:15px;
}
#publication-slider .item > a{
	color:#000;
	position:relative;
	font-size:13px;
	font-weight:bold;
	text-transform: uppercase;
}
#publication-slider .item > a:hover{
	color:#82b440;
}
#publication-slider .owl-prev ,
#publication-slider .owl-next{
	border:1px solid #7a7a7a;
	color:#7a7a7a;
}
#publication-slider .owl-prev{
	left:-5%;
}

#publication-slider .owl-next{
	right:-5%;
}
/* ------------  Publications ------------ */



/* ------------ Slogan Text with Button ------------ */
#slogan{
	background:#82b440;
	padding:25px 0;
	color:#fff;
	margin-top:-2px;
	width:100%;
}
#slogan a{
  padding: 15px 35px;
  border:1px solid #fff;
  color:#000;
  background:#fff;
  font-weight:bold;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}
/* ------------ Slogan Text with Button ------------ */



/* ------------ Contact Us ------------ */
#contact .center h2,
#contact .center .margen{
	margin-bottom:45px;
}
#contact .center a{
	color:#82b440;
}

#contact .center ul.social-link{
	margin-top:45px;
}


#contact .form-inline{
	margin-top:45px;
}
.form-control:focus {
  border-color: #82b440 !important;
  box-shadow:none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-6,
#contact .form-inline .col-md-12{
	padding-left:5px;
	padding-right:5px;
}


#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control{
	height:45px;
}

#contact .form-inline .form-control,
#contact .form-inline textarea{
	margin-bottom:10px;
}

#contact .form-inline textarea{
	margin-top:0;
	min-height:210px;
}
#contact .form-inline .btn-black{
	width:100%;
	color:#fff;
	
}	
#contact .form-inline input[type="submit"]{
	width:100%;
	height:100%;
	background-color:transparent;
}
/* ------------ Contact Us ------------ */




/* ---------- Footer  ---------- */
footer{
	background:#121416;
	padding:35px 0;
	position:relative;
}
footer p{
	margin:0;
	color:#a6a6a6;
	font-size:14px;
}
footer .breadcrumb{
	background-color:transparent;
	padding:0;
}

footer .breadcrumb li a {
  text-shadow: none;
  color:#fff;
	font-size:14px;
	position:relative;
}
footer .breadcrumb li a:hover, footer .breadcrumb li a:focus{
  color: #82b440;
}

.go-top {
  bottom:20px;
  position: fixed;
  font-size:20px;
  right:25px;
  z-index:800;
  background:#82b440;
  color:#fff;
  border-radius:5px;
  height:40px;
  width:40px;
  text-align:center;
  line-height:40px;
  opacity:0;
}
.go-top:hover, .go-top:focus{
	background:#07AAA5;
	color:#fff;
}
.go-top.show {
    opacity: 1;
}
/* ---------- Footer  ---------- */





 ul.social-link li a{
	display: inline-block;
	margin: 0 2px;
}

 ul.social-link li{
	margin-top:10px;
	display:inline-block;
}

 ul.social-link li a {
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position:relative;
  color: #000 !important;
}

 ul.social-link li a span{
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 0;
}

 ul.social-link li a:hover span {
  background: #82b440;
  border-radius:44px;
  height:44px;
  width:44px;
  border: 1px solid #82b440;
  height:44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}
 ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

 ul.social-link li a :hover,  ul.social-link li a:focus{
	color:#fff;
	 border: none;
}



/* ========================= Alert Classes ==================== */ 

.alert-success {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
	}
	
.alert-danger {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
}	






 



/*=========================================*/
          /* Blog WIth All Versions*/
/*=========================================*/
#area-main{}
.blog-wrap{
	background-color:#fff;
	width:100%;
	position:relative;
	overflow:hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding:6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding:30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3.catItemView{
	border-bottom: 1px solid #d1d2d2;
	padding-bottom:70px;
	margin-bottom:70px;
}

.blog-item-v3 > img{
	margin-bottom:35px;
}

.blog-item-v3 .blog-content {
	padding:0;
}

.no-margin{ margin:0; border:none;}
#area-main h3{
	color:#1b1d1f;
}

#area-main p{
	color:#1b1d1f;
}

#area-main a.readmore{
	color:#fff;
	padding:10px 35px;
	background:#1b1d1f;
	border:1px solid transparent;
	display:inline-block;
	text-decoration:none;
	margin-top:20px;
}

#area-main a.readmore:hover, #area-main a.readmore:focus{
	border:1px solid #82b440;
}

#area-main ul.blog-author{
	margin:20px 0 25px;
}

#area-main ul.blog-author li{
	display:inline-block;
}

#area-main ul.blog-author li a{
	color:#696969;
	font-size:14px;
	margin-right:15px;
}

#area-main ul.blog-author li a .fa{
	margin-right:5px;
}

#area-main ul.blog-author li a:hover, #area-main ul.blog-author li a:focus{
	color:#82b440;
}

.morepost-wrap{
	margin-top:75px;
	border-top:1px solid #d1d2d2;
}

.morepost-wrap2{
	border-top:1px solid #d1d2d2;
	border-bottom:1px solid #d1d2d2;
	padding-bottom:25px;
}

.morepost-wrap a:hover ,
.morepost-wrap2 a:hover{
	color:#82b440;
}

.morepost-wrap .morepost ,
.morepost-wrap2 .morepost{ 
  font-size:16px;
  color:#696969;
  margin-top:25px;
  display:inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap .morepost .fa-long-arrow-left{
	right:0;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	right:100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-left , 
.morepost-wrap .morepost .fa-long-arrow-right{
	color: transparent;
	pointer-events: none;
   position: absolute;
   text-shadow: 0 0 transparent;
   top:25%;
   transform: translateX(-50%);
   transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity:0 !important;
	filter: alpha(opacity=0);
}

.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-right{
  left:0%;
  margin-left:5px;
}

.morepost-wrap2 .morepost:hover  .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	left:110%;
}

.blog-content-pic{}
.blog-content-pic img{ width:100%;}
.blog-item .blog-content{
	padding:0;
	margin:35px 0;
}

.blog-item .blog-content p{
	margin-bottom:25px;
}

.blog-item blockquote{
	color:#82b440;
}

.blog-item .post-tag{
	border:1px solid #d9d9d9;
	padding:5px;
	margin-bottom:70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a{
	 display:block;
}

#area-main .tag-cloud li a , .blog-reply a.btn-rep{
    background:#efefef;
    color: #1b1d1f;
	 font-size:12px;
    padding: 8px 15px;
	 text-transform:uppercase;
}
#area-main .tag-cloud li a:hover , #area-main .tag-cloud li a:focus ,
.blog-reply a.btn-rep:hover,.blog-reply a.btn-rep:focus{
    background:#82b440;
    color: #fff;
	 -webkit-transition: all 500ms linear;
   -moz-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
   -o-transition:all 500ms linear;
	transition:all 500ms linear;
}

.blog-item ul.social-link li{ margin:0; }
.blog-item ul.social-link li a > i{
	color: #1b1d1f;
}
.blog-item ul.social-link li a > i:hover{
	color: #fff;
}
.blog-reply{
	padding:10px;
	border:1px solid #f3f3f3;
	position:relative;
	margin:20px 0;
}
.blog-reply h4{
	color:#1b1d1f;
	margin-bottom:8px;
	text-transform:capitalize;
}
.blog-reply a.btn-rep{
	position:absolute;
	top:0;
	right:0;
}

.blog-item .post-comment h3{
	margin-bottom:35px;
	margin-top:70px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control{
	height:50px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control,
.blog-item .post-comment form textarea,
.contact form textarea,
.index_3 .form-inline .form-control,
.index_3 .form-inline textarea{
  padding:15px;
  font-size:14px;
  color:#4c4c4c;
  border:1px solid #d0d0d0;
  width:100%;
  border-radius:0;
}

.blog-item .post-comment form textarea, 
.contact form textarea{
	margin:30px 0;
	min-height:210px;
}

.blog-item .post-comment form input[type="submit"] , 
.contact form input[type="submit"]{
	background:#82b440;
	border:1px solid transparent;
	font-weight:bold;
	color:#fff;
	height:50px;
	width:185px;
	position:relative;
}
.blog-item .post-comment form input[type="submit"]:hover , 
.contact form input[type="submit"]:hover{
	background:#1b1d1f;
}
 
.widget{
	margin-bottom:40px;
	color:#1b1d1f;
}

.widget h4 , .widget img{
	margin-bottom:25px;
}
.widget > img{
	width:100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size:14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor:pointer;
}

ul.category li{
	margin-top:15px;
	display:block;
}

ul.category li a{
	color:#1b1d1f;
	font-size:16px;
	border-bottom:1px solid #d9d9d9;
	padding-bottom:15px;
	display:block;
	text-transform:capitalize !important;
}
ul.category li a:hover , ul.category li a:focus{
	color:#82b440;
}

ul.category li a .date{
	color:#82b440;
	font-size:12px;
	display:block;
}

/*=========================================*/
          /* Blog Ends */
/*=========================================*/




          /* Inner Pages Top*/
.innerpage-banner {
	background: no-repeat center center / cover;
	padding-top: 200px;
	max-height:440px;
	border-bottom: 5px solid rgba(0,0,0,0.9);
	color: #fff;
	
}
.tagline {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}




@media screen and (max-width: 1299px){
    .navbar-default .navbar-nav > li{
		  margin: 0 20px;
	  }
	.info-section .bg{
		padding-top:100%;
	}
	.blog-wrap .blog-content {
	  padding: 3.5em 0;
	}
	
	 .layer-content-responsive {
		max-height:400px !important;
		overflow:hidden;
	}
}


@media screen and (max-width: 1024px){
	
	h2{ font-size:36px; }
	h3{ font-size:20px; }
	h4{ font-size:16px; }
	
}

@media screen and (max-width: 1000px){
	 
.navbar-default .navbar-nav > li {
	margin: 0 6px;
}
.navbar-default .navbar-nav > li > a {
  letter-spacing: 0;
}
.text-rotator {
  padding-top:150px;
}
#paralax-slider .item-content p{
  font-size:16px;
}
#paralax-slider .item-content h2 {
  font-size:46px;
  margin-bottom:10px;
}
.r-test ul.r-feature li {
font-size: 12px;
}
.we-do .do-wrap, .white-box {
margin-bottom:30px;
}
.pricing_item {
flex: 0 1 320px;
}
#bg-paralax , #testinomial, .text-rotator{
  background-position:center center !important;
}	
#slogan{
text-align:center;
}
#slogan p{s
font-size:16px;
}	
#slogan a.pull-right {
float: none !important;
margin-top: 30px;

}


		
}



@media screen and (max-width: 767px){

  h2{ font-size:30px; }
  #main-navigation{ background-color: #1b1d1f; }
  
  .navbar-brand, #navigation.affix .navbar-brand{ display:inline-block;  padding: 10px 0;}
  .navbar-default .navbar-nav > li > a, #navigation.affix  .navbar-default .navbar-nav > li > a {
	  padding: 10px 0;
	}
   ul.top-right, #navigation.affix ul.top-right{
		margin:0;
		position:relative;
		right:37px;
		margin-top:-2px;
	}
	ul.top-right, #navigation.affix ul.top-right{
		top:14px;
	}
	.navbar-default.social .navbar-toggle {
     right: -100px !important;
  }
  .main-button { top: 10px;}
	  .push_nav_brand {
	  margin: 12px 0 30px 15px;
	  width:90;
  }
  .push_nav li a {
  font-size:12px;
  padding: 8px 15px;
}
.text-rotator {
  padding-top:80px;
}
#paralax-slider .item-content p{
  font-size:14px;
}
#paralax-slider .item-content h2 {
  font-size: 26px;
  margin-bottom:10px;
}
	#bg-paralax h1, #bg-paralax h2{
		font-size:30px;
	}
	.we-do .do-wrap,
	.thinkers .thinker-wrap{
		margin:30px 0;
	}
	#thinkers{
		padding-bottom:45px;
	}	
	.thinker-image .overlay {
	  height: 60px;
	}
	#project{ padding-top:0;}
	#responsive{
	}
	#responsive .responsive-pic > .col-md-6 > img{
	  margin-bottom: 25px;
	}
	.number-counters > .col-xs-12{
		width:50%;
	}	
	.circliful {
	  margin-bottom: 50px;
	}
	.circliful:first-child {
	  margin-left:25px;
	}
	#testinomial-slider .item p{
		font-size:14px;
		margin:0;
	}
	#testinomial-slider .owl-prev, #testinomial-slider .owl-next{
		display:none;
	}
	#publication-slider .owl-prev{
		left:10px;
	}
	#publication-slider .owl-next{
		right:10px;
	}
	#publication-slider .owl-prev, #publication-slider .owl-next{
		background:#fff;
		top:19%;
		
	}
	
	
	.circliful {
	  margin-bottom: 50px;
	  margin-left:0;
	  float:none;
	  display:inline-block
	  
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	
	
		
}


@media screen and (min-width: 641px) and (max-width: 767px) { 

      .thinkers .col-sm-4{
		  width: 48%;
		  display:inline-block;
	  } 
	  
	 
	  
	  
	  
	  
	  
   
}




@media screen and (max-width: 480px) {
	.navbar-brand img{
		width:75%;
	}
	ul.top-right{
		top:14px;
	}
	.circliful {
	  margin-bottom: 50px;
	  position:relative;
	  left:30%;
	  margin-left:0;
	  float:none;
	  -moz-transform:translate(-50%,0);
	 -ms-transform:translate(-50%,0);
	 -webkit-transform:translate(-50%,0);
	 -o-transform:translate(-50%,0);
	  transform:translate(-50%,0);
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	.layer-content-responsive {
		max-height:240px !important;
		overflow:hidden;
	}
}



@media screen and (max-width: 479px){
	
	#main-navigation{
		top:0;
	}
	
}

.morepost-wrap ul.pagination-list {
    margin: 0;
    padding: 0;
    width: 100%;
}
.morepost-wrap ul.pagination-list li {
    display: none;
}
.morepost-wrap ul.pagination-list li.morepost {
    display: block;
}
.morepost-wrap .pagination > li > a {
    border: medium none;
}
.morepost-wrap .pagination > li > a:focus, .morepost-wrap .pagination > li > a:hover {
    background-color: transparent;
    color: #07aaa5;
}
#itemListLeading > .itemContainer:last-child .blog-item-v3{
	padding: 0;
	border: none;
}
.pagination-list .morepost-wrap{
	border-bottom: 1px solid #d1d2d2;
	border-top: 0;
	margin-top: -70px;
	padding-bottom: 20px;
}
body.com_k2 #area-main.padding{
	padding-bottom: 70px;
}
.blog-item div.itemComments {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    padding: 0;
}
body.com_k2 div.itemBackToTop{
	display: none;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton{
 	background: #82b440 none repeat scroll 0 0;
    border: 1px solid transparent;
    color: #fff;
    font-weight: bold;
    height: 50px;
    position: relative;
    width: 185px;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton:hover{
	background: #000;
}
body.com_k2 div.itemCommentsForm form span#formLog{
	margin-left: 0;
	margin-right: 0;
}
.blog-reply.media{
	margin-top: 20px;
}
#about.section-padding.btwe-offer{
	padding-top: 130px!important;
}PK!�+���(�(css/settings_old.cssnu&1i�/*-----------------------------------------------------------------------------

	-	Revolution Slider 4.1 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	27/11/13
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

/*********************************************
	-	SETTINGS FOR BANNER CONTAINERS	-
**********************************************/

.tp-banner-container{
	width:100%;
	position:relative;
	padding:0;

}

.tp-banner{
	width:100%;
	position:relative;
}

.tp-banner-fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



/*************************
	-	CAPTIONS	-
**************************/

.tp-static-layers	{	
	position:absolute; 
	z-index:505; 
	top:0px;left:
	0px;
}

.tp-hide-revslider,.tp-caption.tp-hidden-caption{	visibility:hidden !important; display:none !important}


.tp-caption { z-index:1; white-space:nowrap}
.tp-caption-demo .tp-caption	{	position:relative !important; display:inline-block; margin-bottom:10px; margin-right:20px !important}


.tp-caption.whitedivider3px {

	color: #000000;
	text-shadow: none;
	background-color: rgb(255, 255, 255);
	background-color: rgba(255, 255, 255, 1);
	text-decoration: none;
	min-width: 408px;
	min-height: 3px;
	background-position: initial initial;
	background-repeat: initial initial;
	border-width: 0px;
	border-color: #000000;
	border-style: none;
}


.tp-caption.finewide_large_white {
	color:#ffffff;
	text-shadow:none;
	font-size:60px;
	line-height:60px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:8px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:468px;
	min-height:3px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_medium_white {
	color:#ffffff;
	text-shadow:none;
	font-size:37px;
	line-height:37px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.boldwide_small_white {
	font-size:25px;
	line-height:25px;
	font-weight:800;
	font-family:"Open Sans", sans-serif;
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px_vertical {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:3px;
	min-height:130px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_small_white {
	color:#ffffff;
	text-shadow:none;
	font-size:25px;
	line-height:25px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_verysmall_white_mw {
	font-size:13px;
	line-height:25px;
	font-weight:400;
	font-family:"Open Sans", sans-serif;
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	max-width:470px;
	white-space:normal !important;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgb(235, 235, 235);
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.finewide_large_white {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 8px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.finewide_medium_white {
	color: #FFF;
	text-shadow: none;
	font-size: 34px;
	line-height: 34px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 5px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.huge_red {
	position:absolute;
	color:rgb(223,75,107);
	font-weight:400;
	font-size:150px;
	line-height:130px;
	font-family: 'Oswald', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	background-color:rgb(45,49,54);
	padding:0px;
}

.tp-caption.middle_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:600;
	font-size:50px;
	line-height:50px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.huge_thin_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:300;
	font-size:90px;
	line-height:90px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	letter-spacing: 20px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.big_dark {
	position:absolute;
	color:#333;
	font-weight:700;
	font-size:70px;
	line-height:70px;
	font-family:"Open Sans";
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_dark {
	position:absolute;
	color:#333;
	font-weight:300;
	font-size:40px;
	line-height:40px;
	font-family:"Open Sans";
	margin:0px;
	letter-spacing: 5px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.medium_grey {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	padding:2px 4px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#888;
	white-space:nowrap;
}

.tp-caption.small_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:14px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.large_bold_white_25 {
	font-size:55px;
	line-height:65px;
	font-weight:700;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.medium_text_shadow {
	font-size:25px;
	line-height:25px;
	font-weight:600;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:40px;
	line-height:40px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_bold_grey {
	font-size:30px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.very_large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	letter-spacing:-2px;
}

.tp-caption.very_big_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#000;
}

.tp-caption.very_big_black {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#fff;
}

.tp-caption.modern_medium_fat {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#4e5b6c;
	letter-spacing:0;
}

.tp-caption.modern_big_redbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	padding-top:1px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#de543e;
	letter-spacing:0;
}

.tp-caption.modern_small_text_dark {
	position:absolute;
	color:#555;
	text-shadow:none;
	font-size:14px;
	line-height:22px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.boxshadow {
	-moz-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
}

.tp-caption.black {
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow {
	text-shadow:none;
}
/*.tp-caption a {
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	-ms-transition:all 0.2s ease-out;
}

.tp-caption a:hover{
}*/

.tp-caption.thinheadline_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:30px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.thintext_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:16px;
	line-height:26px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.medium_bg_red a {
	color: #fff;
    text-decoration: none;
}

.tp-caption.medium_bg_red a:hover {
	color: #fff;
    text-decoration: underline;
}

.tp-caption.smoothcircle {
	font-size:30px;
	line-height:75px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	background-color:rgba(0, 0, 0, 0.498039);
	padding:50px 25px;
	text-align:center;
	border-radius:500px 500px 500px 500px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.largeblackbg {
	font-size:50px;
	line-height:70px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	padding:0px 20px 5px;
	text-shadow:none;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.largepinkbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#db4360;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largewhitebg {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#fff;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largegreenbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#67ae73;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.excerpt {
	font-size:36px;
	line-height:36px;
	font-weight:700;
	font-family:Arial;
	color:#ffffff;
	text-decoration:none;
	background-color:rgba(0, 0, 0, 1);
	text-shadow:none;
	margin:0px;
	letter-spacing:-1.5px;
	padding:1px 4px 0px 4px;
	width:150px;
	white-space:normal !important;
	height:auto;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_bold_grey {
	font-size:60px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_thin_grey {
	font-size:34px;
	line-height:30px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.small_thin_grey {
	font-size:18px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(117, 117, 117);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_darkblue {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(52, 73, 94);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_darkblue {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(52, 73, 94);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_red {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_red {
	font-size:21px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_red {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(227, 58, 12);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_orange {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(243, 156, 18);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_orange {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(243, 156, 18);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.grassfloor {
	text-decoration:none;
	background-color:rgba(160, 179, 151, 1);
	width:4000px;
	height:150px;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_white {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_white {
	font-size:30px;
	line-height:36px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white_center {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	padding:0px 0px 0px 0px;
	text-align:center;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_asbestos {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(127, 140, 141);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_black {
font-size:30px;
line-height:36px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.large_bold_black {
font-size:58px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumlarge_light_darkblue {
font-size:34px;
line-height:40px;
font-weight:300;
font-family:"Open Sans";
color:rgb(52, 73, 94);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.small_light_white {
font-size:17px;
line-height:28px;
font-weight:300;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.roundedimage {
border-width:0px;
border-color:rgb(34, 34, 34);
border-style:none;
}

.tp-caption.large_bg_black {
font-size:40px;
line-height:40px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(0, 0, 0);
padding:10px 20px 15px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumwhitebg {
font-size:30px;
line-height:30px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:rgb(255, 255, 255);
padding:5px 15px 10px;
text-shadow:none;
border-width:0px;
border-color:rgb(0, 0, 0);
border-style:none;
}

.tp-caption.medium_bg_orange_new1 {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(243, 156, 18);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}



.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
		font-weight: 300;
		font-size: 19px;
		line-height: 19px;
		font-family: 'Open Sans', sans;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}


/*.tp-caption			{	transform:none !important}*/


/*********************************
	-	SPECIAL TP CAPTIONS -
**********************************/
.tp-caption .frontcorner		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcorner		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

.tp-caption .frontcornertop		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcornertop		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

/******************************
	-	BUTTONS	-
*******************************/

.tp-simpleresponsive .button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
												cursor:pointer;
												color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
												background:url(../images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
											}

.tp-simpleresponsive  .button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(../images/gradient/g40.png) repeat-x top}


.tp-simpleresponsive  .purchase:hover,
.tp-simpleresponsive  .button:hover,
.tp-simpleresponsive  .button.big:hover		{	background-position:bottom, 15px 11px}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.tp-simpleresponsive  .button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tp-simpleresponsive  .button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.tp-simpleresponsive  .button.green, .tp-simpleresponsive  .button:hover.green,
.tp-simpleresponsive  .purchase.green, .tp-simpleresponsive  .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.tp-simpleresponsive  .button.blue, .tp-simpleresponsive  .button:hover.blue,
.tp-simpleresponsive  .purchase.blue, .tp-simpleresponsive  .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68}


.tp-simpleresponsive  .button.red, .tp-simpleresponsive  .button:hover.red,
.tp-simpleresponsive  .purchase.red, .tp-simpleresponsive  .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212}

.tp-simpleresponsive  .button.orange, .tp-simpleresponsive  .button:hover.orange,
.tp-simpleresponsive  .purchase.orange, .tp-simpleresponsive  .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00}

.tp-simpleresponsive  .button.darkgrey, .tp-simpleresponsive  .button.grey,
.tp-simpleresponsive  .button:hover.darkgrey, .tp-simpleresponsive  .button:hover.grey,
.tp-simpleresponsive  .purchase.darkgrey, .tp-simpleresponsive  .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222}

.tp-simpleresponsive  .button.lightgrey, .tp-simpleresponsive  .button:hover.lightgrey,
.tp-simpleresponsive  .purchase.lightgrey, .tp-simpleresponsive  .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

/*.tp-simpleresponsive				{	-webkit-perspective: 1500px;
										-moz-perspective: 1500px;
										-o-perspective: 1500px;
										-ms-perspective: 1500px;
										perspective: 1500px;
									}*/




/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/

.fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



.fullwidthbanner-container{
	width:100%;
	position:relative;
	padding:0;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthbanner{
	width:100%;
	position:relative;
}



/************************************************
	  - SOME CAPTION MODIFICATION AT START  -
*************************************************/
.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";		-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; */
	position:absolute;visibility: hidden;
	-webkit-font-smoothing: antialiased !important;	
	
}

.tp-simpleresponsive img	{	max-width:none}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(../assets/shadow1.png) no-repeat; background-size:100% 100%; width:890px; height:60px; bottom:-60px}
.tp-bannershadow.tp-shadow2 {	background:url(../assets/shadow2.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}
.tp-bannershadow.tp-shadow3 {	background:url(../assets/shadow3.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%}
.caption.fullscreenvideo iframe,
.caption.fullscreenvideo video	{ width:100% !important; height:100% !important; display: none}

.tp-caption.fullscreenvideo	{	left:0px; top:0px; position:absolute;width:100%;height:100%}


.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe video	{ width:100% !important; height:100% !important; display: none}


.fullcoveredvideo video,
.fullscreenvideo video					{	background: #000}

.fullcoveredvideo .tp-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}

.html5vid.videoisplaying .tp-poster	{	display: none}

.tp-video-play-button		{	background:#000;
								background:rgba(0,0,0,0.3);
								padding:5px;
								border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;
								position: absolute;
								top: 50%;
								left: 50%;
								font-size: 40px;
								color: #FFF;
								z-index: 3;
								margin-top: -27px;
								margin-left: -28px;
								text-align: center;
								cursor: pointer;
							}

.html5vid .tp-revstop		{	width:15px;height:20px; border-left:5px solid #fff; border-right:5px solid #fff; position:relative;margin:10px 20px; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}
.html5vid .tp-revstop	{	display:none}
.html5vid.videoisplaying .revicon-right-dir	{	display:none}
.html5vid.videoisplaying .tp-revstop	{	display:block}

.html5vid.videoisplaying .tp-video-play-button	{	display:none}
.html5vid:hover .tp-video-play-button { display:block}

.fullcoveredvideo .tp-video-play-button	{	display:none !important}


/********************************
	-	FULLSCREEN VIDEO ENDS	-
*********************************/


/********************************
	-	DOTTED OVERLAYS	-
*********************************/
.tp-dottedoverlay						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:4}
.tp-dottedoverlay.twoxtwo				{	background:url(../assets/gridtile.png)}
.tp-dottedoverlay.twoxtwowhite			{	background:url(../assets/gridtile_white.png)}
.tp-dottedoverlay.threexthree			{	background:url(../assets/gridtile_3x3.png)}
.tp-dottedoverlay.threexthreewhite		{	background:url(../assets/gridtile_3x3_white.png)}
/********************************
	-	DOTTED OVERLAYS ENDS	-
*********************************/


/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both}


.tp-bullets									{	z-index:1000; position:absolute;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;-webkit-transform: translateZ(5px);
											}
.tp-bullets.hidebullets					{
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
												-moz-opacity: 0;
												-khtml-opacity: 0;
												opacity: 0;
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(../assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(../assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(../images/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:0px; margin-left:3px}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:0px}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left}

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left}



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
															-webkit-transform: translateZ(5000px);
															-webkit-transform-style: flat;
															-webkit-backface-visibility: hidden;
															z-index:600;
															position: relative;

														}
.tparrows.hidearrows									{
															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
															-moz-opacity: 0;
															-khtml-opacity: 0;
															opacity: 0;
														}
.tp-leftarrow{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/large_left.png) no-Repeat top left;	
	width:40px;	height:40px;   
}
.tp-rightarrow	{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px}


.tp-leftarrow.navbar-old{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/arrowleft.png) no-Repeat top left;		
	width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px}
.tp-rightarrow.navbar-old{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px}
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px}

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background: url(../images/prev.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}
.tp-rightarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../images/next.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}

#index_3_slider .tp-leftarrow.default{
	background: url(../images/prev-dark.png) no-Repeat 0 0;
}
#index_3_slider .tp-rightarrow.default{		
	background:url(../images/next-dark.png) no-Repeat 0 0;	
}


.tp-leftarrow:hover,
.tp-rightarrow:hover,
#index_3_slider .tp-leftarrow:hover,
#index_3_slider .tp-rightarrow:hover {	
	background-position:bottom left;
}






/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%}


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	width:100%; height:10px; /*background:url(../images/timer.png);*/position:absolute; z-index:200;top:0px}
.tp-bannertimer.tp-bottom					{	bottom:0px;height:5px; top:auto}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/




    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(../assets/coloredbg.png) repeat}

.tp-caption.slidelink a span	{	background:url(../assets/coloredbg.png) repeat}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

.tparrows .tp-arr-imgholder								{ display: none}
.tparrows .tp-arr-titleholder							{ display: none}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

/* NAVIGATION PREVIEW 1 */
.tparrows.preview1 							{	width:100px;height:100px;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;background: transparent}
.tparrows.preview1:after					{	position:absolute; left:0px;top:0px; font-family: "revicons"; color:#fff; font-size:30px; width:100px;height:100px;text-align: center; background:#fff;background:rgba(0,0,0,0.15);z-index:2;line-height:100px; -webkit-transition: background 0.3s, color 0.3s; -moz-transition: background 0.3s, color 0.3s; transition: background 0.3s, color 0.3s}
.tp-rightarrow.preview1:after				{	content: '\e825';  }
.tp-leftarrow.preview1:after				{	content: '\e824';  }

.tparrows.preview1:hover:after 				{	background:rgba(255,255,255,1); color:#aaa}

.tparrows.preview1 .tp-arr-imgholder 		{	background-size:cover; background-position:center center; display:block;width:100%;height:100%;position:absolute;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
											}
/*.tparrows.preview1 .tp-arr-iwrapper			{	  -webkit-transition: all 0.3s;transition: all 0.3s;
												-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0}
.tparrows.preview1:hover .tp-arr-iwrapper	{	  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1}*/


.tp-rightarrow.preview1 .tp-arr-imgholder	{	right:100%;
												-webkit-transform: rotateY(-90deg);
												transform: rotateY(-90deg);
												-webkit-transform-origin: 100% 50%;
												transform-origin: 100% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}
.tp-leftarrow.preview1 .tp-arr-imgholder	{	left:100%;
												-webkit-transform: rotateY(90deg);
												transform: rotateY(90deg);
												-webkit-transform-origin: 0% 50%;
												transform-origin: 0% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}


.tparrows.preview1:hover .tp-arr-imgholder	{	-webkit-transform: rotateY(0deg);
												transform: rotateY(0deg);
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:80px; height:80px;line-height:80px; font-size:24px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:60px; height:60px;line-height:60px;font-size:20px}

	}



    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:40px; height:40px;line-height:40px; font-size:12px}
    }

/* PREVIEW 1 BULLETS */

.tp-bullets.preview1 						{ 	height: 21px}
.tp-bullets.preview1 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.15) !important;
											    /*-webkit-border-radius: 10px;
											    border-radius: 10px;*/
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 5px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview1 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview1 .bullet:hover,
.tp-bullets.preview1 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: #aaa !important;
												width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(255, 255, 255, 1) !important;
}




/* NAVIGATION PREVIEW 2 */
.tparrows.preview2 {	
	min-width:50px; 
	min-height:50px;
	border:1px solid #fff;  
	-webkit-transition: -webkit-transform 1.3s;
	-webkit-transition: width 0.3s, background-color 0.3s, opacity 0.3s;
	transition: width 0.3s, background-color 0.3s, opacity 0.3s;
}
.tparrows.preview2:after{	
	 position:absolute; 
	 top:50%;
	 font-family:'FontAwesome'; 
	 color:#fff;  
	 margin-top: -12px; 
	 -webkit-transition: color 0.3s; 
	 -moz-transition: color 0.3s; 
	 transition: color 0.3s; 
}
.tp-rightarrow.preview2:after	{content: '\f178';  right:18px}
.tp-leftarrow.preview2:after{content: '\f177';  left:18px}


/*.tparrows.preview2 .tp-arr-titleholder{	
	background-size:cover; background-position:center center; display:block; visibility:hidden;position:relative;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												white-space: nowrap;
												color: #000;
												text-transform: uppercase;
												font-weight: 400;
												font-size: 14px;
												line-height: 60px;
												padding:0px 10px;
											}

.tp-rightarrow.preview2 .tp-arr-titleholder	{	 right:50px;
												-webkit-transform: translateX(-100%);
												transform: translateX(-100%);
											}
.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:50px;
												-webkit-transform: translateX(100%);
												transform: translateX(100%);
											}*/

.tparrows.preview2.hovered{}
.tparrows.preview2:hover{	
	background:#07aaa5; 
	border:1px solid #07aaa5; 
}
.tparrows.preview2:hover:after{
	color:#fff;
}
/*.tparrows.preview2:hover .tp-arr-titleholder{	-webkit-transform: translateX(0px);
													transform: translateX(0px);
													visibility: visible;
													position: absolute;
											}*/
											
											
											

/* PREVIEW 2 BULLETS */

.tp-bullets.preview2 						{ 	height: 17px; display:none;}
.tp-bullets.preview2 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview2 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview2 .bullet:hover,
.tp-bullets.preview2 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}

.tp-arr-titleholder.alwayshidden			{	display:none !important}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview2 {	min-width:40px; min-height:40px; width:40px;height:40px;
								border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;
							}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:20px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:11px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:11px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:12px; line-height:40px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:35px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:35px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
   		 .tparrows.preview2 						{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:10px; line-height:30px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:25px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:25px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview2 							{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}
		.tparrows.preview2:hover					{	width:30px !important; height:30px !important}
    }



/* NAVIGATION PREVIEW 3 */
.tparrows.preview3 							{	width:70px; height:70px; background:#fff; background:rgba(255,255,255,1); -webkit-transform-style: flat}
.tparrows.preview3:after					{	position:absolute;  line-height: 70px;text-align: center; font-family: "revicons"; color:#aaa; font-size:30px; top:0px;left:0px;;background:#fff; z-index:100; width:70px;height:70px; -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s}
.tparrows.preview3:hover:after					{	color:#000}
.tp-rightarrow.preview3:after				{	content: '\e825';  }
.tp-leftarrow.preview3:after				{	content: '\e824';  }


.tparrows.preview3 .tp-arr-iwrapper			{
												  -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 100% 50%;
												  transform-origin: 100% 50%;
												  -webkit-transition: -webkit-transform 0.2s;
												  transition: transform 0.2s;
												  z-index:0;position: absolute; background: #000; background: rgba(0,0,0,0.75);
												  display: table;min-height:90px;top:-10px}

.tp-leftarrow.preview3 .tp-arr-iwrapper		{	 -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 0% 50%;
												  transform-origin: 0% 50%;
											}

.tparrows.preview3 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center; display:table-cell;min-width:90px;height:90px;
												position:relative;top:0px}

.tp-rightarrow.preview3 .tp-arr-iwrapper	{	right:0px;padding-right:70px}
.tp-leftarrow.preview3 .tp-arr-iwrapper		{	left:0px; direction: rtl;padding-left:70px}
.tparrows.preview3 .tp-arr-titleholder		{	display:table-cell; padding:30px;font-size:16px; color:#fff;white-space: nowrap; position: relative; clear:right;vertical-align: middle}

.tparrows.preview3:hover .tp-arr-iwrapper	{
												-webkit-transform: scale(1,1);
												  transform: scale(1,1);

											}

/* PREVIEW 3 BULLETS */
.tp-bullets.preview3 						{ 	height: 17px}
.tp-bullets.preview3 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview3 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview3 .bullet:hover,
.tp-bullets.preview3 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
		.tparrows.preview3 .tp-arr-imgholder 		{	min-width:70px;height:70px}
		.tp-rightarrow.preview3 .tp-arr-iwrapper	{	padding-right:50px}
		.tp-leftarrow.preview3 .tp-arr-iwrapper		{	padding-left:50px}
		.tparrows.preview3 .tp-arr-titleholder		{	padding:10px;font-size:16px}



	}

    @media only screen  and (max-width: 767px) {

		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
	}





/* NAVIGATION PREVIEW 4 */
.tparrows.preview4 							{	width:30px; height:110px;  background:transparent;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000}
.tparrows.preview4:after					{	position:absolute;  line-height: 110px;text-align: center; font-family: "revicons"; color:#fff; font-size:20px; top:0px;left:0px;z-index:0; width:30px;height:110px; background: #000; background: rgba(0,0,0,0.25);
												-webkit-transition: all 0.2s ease-in-out;
											    -moz-transition: all 0.2s ease-in-out;
											    -o-transition: all 0.2s ease-in-out;
											    transition: all 0.2s ease-in-out;
												   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}

.tp-rightarrow.preview4:after				{	content: '\e825';  }
.tp-leftarrow.preview4:after				{	content: '\e824';  }


.tparrows.preview4 .tp-arr-allwrapper		{	visibility:hidden;width:180px;position: absolute;z-index: 1;min-height:120px;top:0px;left:-150px; overflow: hidden;-webkit-perspective: 1000px;-webkit-transform-style: flat}

.tp-leftarrow.preview4 .tp-arr-allwrapper	{	left:0px}
.tparrows.preview4 .tp-arr-iwrapper			{	position: relative}

.tparrows.preview4 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center;width:180px;height:110px;
												position:relative;top:0px;

												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;



											}


.tparrows.preview4 .tp-arr-imgholder2 		{	display:block;background-size:cover; background-position:center center; width:180px;height:110px;
												position:absolute;top:0px; left:180px;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;

											}

.tp-leftarrow.preview4 .tp-arr-imgholder2 	{	left:-180px}




.tparrows.preview4 .tp-arr-titleholder		{	display:block; font-size:12px; line-height:25px; padding:0px 10px;text-align:left;color:#fff; position: relative;
												background: #000;
												color: #FFF;
												text-transform: uppercase;
												white-space: nowrap;
												letter-spacing: 1px;
												font-weight: 700;
												font-size: 11px;
												line-height: 2.75;
												-webkit-transition: all 0.3s;
												transition: all 0.3s;
												-webkit-transform: rotateX(-90deg);
												transform: rotateX(-90deg);
												-webkit-transform-origin: 50% 0;
												transform-origin: 50% 0;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;


}



.tparrows.preview4:after				{	transform-origin: 100% 100%; -webkit-transform-origin: 100% 100%}
.tp-leftarrow.preview4:after			{	transform-origin: 0% 0%; -webkit-transform-origin: 0% 0%}




@media only screen and (min-width: 768px)  {
		.tparrows.preview4:hover:after				{	-webkit-transform: rotateY(-90deg); transform:rotateY(-90deg)}
		.tp-leftarrow.preview4:hover:after			{	-webkit-transform: rotateY(90deg); transform:rotateY(90deg)}


		.tparrows.preview4:hover .tp-arr-titleholder	{	-webkit-transition-delay: 0.4s;
															transition-delay: 0.4s;
															-webkit-transform: rotateX(0deg);
															transform: rotateX(0deg);
															-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

														}
}

/* PREVIEW 4 BULLETS */

.tp-bullets.preview4 						{ 	height: 17px}
.tp-bullets.preview4 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview4 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview4 .bullet:hover,
.tp-bullets.preview4 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


    @media only screen  and (max-width: 767px) {
   		 .tparrows.preview4 						{	width:20px; height:80px}
   		 .tparrows.preview4:after					{	width:20px; height:80px; line-height:80px; font-size:14px}

   		 .tparrows.preview1 .tp-arr-allwrapper,
   		 .tparrows.preview2 .tp-arr-allwrapper,
   		 .tparrows.preview3 .tp-arr-allwrapper,
   		 .tparrows.preview4 .tp-arr-allwrapper		{	display: none !important}
    }



/******************************
	-	LOADER FORMS	-
********************************/

.tp-loader 	{
				top:50%; left:50%;
				z-index:10000;
				position:absolute;


			}

.tp-loader.spinner0 {
  width: 40px;
  height: 40px;
  /*background:url(../assets/loader.gif) no-repeat center center;*/
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


.tp-loader.spinner1 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}



.tp-loader.spinner5 	{	background:url(../assets/loader.gif) no-repeat 10px 10px;
							background-color:#fff;
							margin:-22px -22px;
							width:44px;height:44px;
							border-radius: 3px;
							-moz-border-radius: 3px;
							-webkit-border-radius: 3px;
						}


@-webkit-keyframes tp-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  } 50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  } 100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}


.tp-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top:-20px;margin-left:-20px;
  background-color: #ff0000;
   box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  -webkit-animation: tp-scaleout 1.0s infinite ease-in-out;
  animation: tp-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes tp-scaleout {
  0% { -webkit-transform: scale(0.0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes tp-scaleout {
  0% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}




.tp-loader.spinner3 {
  margin: -9px 0px 0px -35px;
  width: 70px;
  text-align: center;

}

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.tp-loader.spinner3 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes tp-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}




.tp-loader.spinner4 {
  margin: -20px 0px 0px -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-animation: tp-rotate 2.0s infinite linear;
  animation: tp-rotate 2.0s infinite linear;
}

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: tp-bounce 2.0s infinite ease-in-out;
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes tp-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes tp-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes tp-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}



.tp-transparentimg {	content:"url(../assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}



.tp-caption img {
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
zoom: 1;
}


@font-face {
  font-family: 'revicons';
  src: url('../font/revicons.eot?5510888');
  src: url('../font/revicons.eot?5510888#iefix') format('embedded-opentype'),
       url('../font/revicons.woff?5510888') format('woff'),
       url('../font/revicons.ttf?5510888') format('truetype'),
       url('../font/revicons.svg?5510888#revicons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'revicons';
    src: url('../font/revicons.svg?5510888#revicons') format('svg');
  }
}
*/

 [class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.revicon-search-1:before { content: '\e802'} /* '' */
.revicon-pencil-1:before { content: '\e831'} /* '' */
.revicon-picture-1:before { content: '\e803'} /* '' */
.revicon-cancel:before { content: '\e80a'} /* '' */
.revicon-info-circled:before { content: '\e80f'} /* '' */
.revicon-trash:before { content: '\e801'} /* '' */
.revicon-left-dir:before { content: '\e817'} /* '' */
.revicon-right-dir:before { content: '\e818'} /* '' */
.revicon-down-open:before { content: '\e83b'} /* '' */
.revicon-left-open:before { content: '\e819'} /* '' */
.revicon-right-open:before { content: '\e81a'} /* '' */
.revicon-angle-left:before { content: '\e820'} /* '' */
.revicon-angle-right:before { content: '\e81d'} /* '' */
.revicon-left-big:before { content: '\e81f'} /* '' */
.revicon-right-big:before { content: '\e81e'} /* '' */
.revicon-magic:before { content: '\e807'} /* '' */
.revicon-picture:before { content: '\e800'} /* '' */
.revicon-export:before { content: '\e80b'} /* '' */
.revicon-cog:before { content: '\e832'} /* '' */
.revicon-login:before { content: '\e833'} /* '' */
.revicon-logout:before { content: '\e834'} /* '' */
.revicon-video:before { content: '\e805'} /* '' */
.revicon-arrow-combo:before { content: '\e827'} /* '' */
.revicon-left-open-1:before { content: '\e82a'} /* '' */
.revicon-right-open-1:before { content: '\e82b'} /* '' */
.revicon-left-open-mini:before { content: '\e822'} /* '' */
.revicon-right-open-mini:before { content: '\e823'} /* '' */
.revicon-left-open-big:before { content: '\e824'} /* '' */
.revicon-right-open-big:before { content: '\e825'} /* '' */
.revicon-left:before { content: '\e836'} /* '' */
.revicon-right:before { content: '\e826'} /* '' */
.revicon-ccw:before { content: '\e808'} /* '' */
.revicon-arrows-ccw:before { content: '\e806'} /* '' */
.revicon-palette:before { content: '\e829'} /* '' */
.revicon-list-add:before { content: '\e80c'} /* '' */
.revicon-doc:before { content: '\e809'} /* '' */
.revicon-left-open-outline:before { content: '\e82e'} /* '' */
.revicon-left-open-2:before { content: '\e82c'} /* '' */
.revicon-right-open-outline:before { content: '\e82f'} /* '' */
.revicon-right-open-2:before { content: '\e82d'} /* '' */
.revicon-equalizer:before { content: '\e83a'} /* '' */
.revicon-layers-alt:before { content: '\e804'} /* '' */
.revicon-popup:before { content: '\e828'} /* '' */

	h2.tp-caption-1,
  	h2.tp-caption{
  
		font-family: "raleway";
		text-transform:none;
		font-weight: 100;
		/*font-size: 60px !important;
	  	line-height:70px!important;
	  	margin-bottom:100px!important;*/
  	}
  	p.tp-caption-1,
  	p.tp-caption{
		font-family: "raleway";
		text-transform:none;
		font-weight: 100;
		/*font-size: 30px !important;
	  	line-height:24px!important;
	  	letter-spacing:2px;*/
  	}PK!	�LUU
css/color.phpnu&1i�<?php
header("Content-type: text/css; charset=Ansi");

if (!isset($_GET['main_color'])) {
	$main_color = '#07aaa5';
} else {
	$main_color = '#'.htmlspecialchars($_GET['main_color']);
}
if(!function_exists('st_hex2rgb')){
    function st_hex2rgb($hex) {
        $hex = str_replace("#", "", $hex);

        if(strlen($hex) == 3) {
            $r = hexdec(substr($hex,0,1).substr($hex,0,1));
            $g = hexdec(substr($hex,1,1).substr($hex,1,1));
            $b = hexdec(substr($hex,2,1).substr($hex,2,1));
        } else {
            $r = hexdec(substr($hex,0,2));
            $g = hexdec(substr($hex,2,2));
            $b = hexdec(substr($hex,4,2));
        }
        $rgb = array($r, $g, $b);
        //return implode(",", $rgb); // returns the rgb values separated by commas
        return $rgb; // returns an array with the rgb values
    }
}
$rgb_main = st_hex2rgb($main_color);
?>

.loader{
	background-color: <?php echo $main_color; ?> !important;
}
.sk-cube-grid .sk-cube {background-color: #fff !important;}
.bg-first {background: <?php echo $main_color; ?>;}
.bg-second {background: #b7db05;}
.bg-third {background: #bde304;}
.bg-fourth {background: #c4eb05;}
.bg-fifth {background: #ccf40b;}
.bounce-top:before {background: <?php echo $main_color; ?>;}
.bounce-top:hover, .bounce-top:focus {border: 1px solid <?php echo $main_color; ?>;}
.base_color {
  background:<?php echo $main_color; ?>;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .dropdown.active a, .navbar-default .navbar-nav > .active a:hover, .navbar-default .navbar-nav > .active a:focus {
    border-bottom: 2px solid <?php echo $main_color; ?>;
}
.navbar-nav > li > .megamenu-content li > a:hover::before {
	content: url(../images/menu-arrow-pink.png);
}
.navbar-nav > li > .megamenu-content li > a:hover, .navbar-nav > li > .megamenu-content li > a:focus, .navbar-default .navbar-nav .open .megamenu-content > li > a:hover {color: <?php echo $main_color; ?> !important;}
.navbar-nav > li > .dropdown-menu > li {border-bottom: 1px solid rgb(255, 255, 255);}

.navbar-nav > li > .dropdown-menu > li > a:focus, .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav > .active > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {background-color: <?php echo $main_color; ?>;}

.navbar-nav > li > .megamenu-content h5 {color: #000000;}
span.new {
    background: <?php echo $main_color; ?>;
    color: #fff;
    padding: 3px 10px;
    font-size: 9px;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0 0 0 10px;
}
#search .close { background-color: <?php echo $main_color; ?>; border-color: <?php echo $main_color; ?>;}
#search .btn {background-color: <?php echo $main_color; ?>;}


.icon-nav ul li a:hover{color: <?php echo $main_color; ?>;}

.cart .cart-content a {color: <?php echo $main_color; ?>;}
.certified{ background:#eaeaea;}


.main-pic .light {
  border-left: 4px solid <?php echo $main_color; ?>;
}
.main-pic .light .btn-common.active {
  background: <?php echo $main_color; ?>;
}
.index_3 .canvas-box:hover span i {
  color: <?php echo $main_color; ?>;
}
.index_3 .canvas-box:hover h4 {
  color: <?php echo $main_color; ?>;
}

.thinker-image .overlay ,.overlay {background-color: rgba(208, 37, 82, 0.71);}
.thinker-image .overlay ul.social-link li a:hover span {
  border: 1px solid transparent;
}

#testinomial-indexFour .item h4 {
  color: <?php echo $main_color; ?>;
}
#testinomial-indexFour .owl-page.active span, #testinomial-indexFour .owl-page:hover span {
  background: <?php echo $main_color; ?>;
}
.index_3 .center a,
ul.nayax-links li a:hover, ul.nayax-links li a:focus, ul.nayax-links li.active a:hover, ul.nayax-links li.active a {
  color: <?php echo $main_color; ?>;
}
.index_3 .center ul.social-link li a:hover span {background: <?php echo $main_color; ?>; border: 1px solid <?php echo $main_color; ?>;}
.index_3 .center ul.social-link li a:hover i{ color:#fff;}
.index_3 .form-inline input[type="submit"]:hover,
#testinomial-slider .owl-prev:hover, #testinomial-slider .owl-next:hover, #publication-slider .owl-prev:hover, #publication-slider .owl-next:hover, #about-slider .owl-prev:hover, #about-slider .owl-next:hover {
  background-color: <?php echo $main_color; ?>;
}
.index_3 .breadcrumb li a:hover, .index_3 .breadcrumb li a:focus {
  color: <?php echo $main_color; ?>;
}
.go-top:hover, .go-top:focus {
	color:<?php echo $main_color; ?>;
}
.navbar-default .navbar-nav li.dropdown.active > .dropdown-toggle{
	border-color:<?php echo $main_color; ?>;
}
.work-filter ul li a:hover, .work-filter ul li a.active {
    background-color: <?php echo $main_color; ?>;
    border: 1px solid <?php echo $main_color; ?>;
}PK!�77css/jquery.fancybox.cssnu&1i�/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('../images/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('../images/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background:rgba(0,0,0,0.9);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}PK! �z����css/bootstrap.min.cssnu&1i�                                   /*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{/*color:#333;*/background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */PK!`��#��css/one-color.cssnu&1i� @charset "utf-8";
/* CSS Document */

.green {
	background:#82b440;
	}
.green_light {
	background: rgba(130, 180, 64, 0.65);
	}
.blue{
	background:#07aaa5;
	} 
.dark_gray {
	background:#969696;
	}
.we-do .do-wrap a{
	color:#969696;
}

.we-do .do-wrap a:hover{
	color:#07aaa5;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#07aaa5;
}

.pricing_item.dark_gray {
    border-color: #969696;
}

.pricing_item.dark_gray .pricing_action{
    background: #969696;
}


.pricing_item.dark_gray:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}


	PK!^$��css/loader-colorful.cssnu&1i�.loader{
	position: fixed;
	background:#fff;
	z-index:11000;
	height:100%;
	width:100%;
	overflow:hidden;
}


.spinner {
  
   margin: auto;
  width: 70px;
  height: 40px;
  position: relative;
  text-align: center;
  position:absolute;
  left:50%;
  right:50%;
  margin-left:-20px;
  top:50%;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;

}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #82B440;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #07AAA5;
}

.spinner .bounce3 {
  background-color: #EC768C;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}PK!:@>�ǸǸcss/onepage_old2.cssnu&1i� @charset "utf-8";
/* CSS Document 

Table Of Content

+General Styling and Tags
*body
+ @font-face

+ Header

+ #main-navigation
-.navigation
	- .navbar-nav
		- .page-scroll

+- #main-slider

+ #about
	-.canvas-box

+ #bg-paralax

+ #facts
	-.number-counters
		-.counters-item 
		
+ #responsive
	-.responsive-pic
	-.r-test
		-.r-feature
			-.screens

+ #experties
	-.myStat2
	-.circliful
		-.circle-text
			-canvas

+ .we-do
	-.do-wrap

+ #thinkers
	-.thinker-wrap
		-.social-contact
	
+ #project
   - .work-filter 
	- .work-item
		- .overlay
			- .overlay-inner


+ #pricing
	-.pricing 
	-.pricing_tenzin
		-.pricing_item 
			-.pricing_title
			-.pricing_price
			-.pricing_sentence
			-.pricing_list
			-.pricing_action

			
+ #testinomial
	-#testinomial-slider
	-.owl-carousel
		.item

+ #publication
	-#publication-slider
	-.owl-carousel
		.item
		
+ #contact
	-#letstalk

+ ##area-main
	-.blog-wrap
		-.blog-content
			-.blog-item
		

+ footer
	-.breadcrumb

*/






/****** General Styling ******/
body{
	 color:#222222;
    font-family: "Open Sans", sans-serif;
	 overflow-x: hidden;
	 font-size:14px;
	 
}
ul , ol{
	margin:0;
	padding:0;
	list-style:none;
}
a ,
a:hover , 
a:focus{
	text-decoration:none;
	outline:none;
	color:inherit;
}
input[type="submit"]{
	background-color:transparent;
}	
button:focus {
    outline: medium none;
}
h1,
h2, 
h3, 
h4, 
#testinomial-slider .item h5{
	margin:0;
}
h1{
	font-size:46px;
}
h2, 
h3,
h4{
	text-transform:capitalize;
	font-family: "raleway";
}

h2{
	font-size:44px;
}
h3{
	font-size:24px;
	font-weight: 600;
}

h4{
	font-size:18px;
	text-transform: capitalize;
    font-weight: 600;
}
p{
	font-size:14px;
	color:#222222;
}
textarea{
	resize:none;
}
p.title{
	font-size:14px;
	text-transform:capitalize;
}
.heading{
	margin-bottom:40px;
}
.padding{
	padding:90px 0;
}
.top-padding{
	padding-top:90px;
}
.bottom-padding{
	padding-bottom: 90px;
}
.box-section.nopadding .bt-boxfluid,
.container-fluid.nopadding{
	padding-left: 0;
	padding-right: 0;
}
.section-padding{
	padding-top:130px!important;
}
#about.section-padding{
	padding-top:170px!important;	
}
.padding-botom{
	padding-bottom:90px;
}
.magin30{
	margin-bottom:30px;
}
.dark{
	background:#1b1d1f;
}
.light{
	background:#f5f5f5;
}
.base_color{
	background:#82b440;
}

.green{
	background:#74c8b8;
}

.pink{
	background:#ec768c;
}

.purple{
	background:#c183d6;
}

.blue{
	background:#31aae1;
}

.green-text{
	color:#74c8b8;
}
.pink-text{
	color:#ec768c;
}
.purple-text{
	color:#c183d6;
}

.blue-text{
	color:#31aae1;
}

.bg-grey{
	background:#ececec;
}

/*Buttons*/
.btn-common{
	border:1px solid #fff;
	color:#fff;
}

.btn-black{
	border:1px solid #000;
	color:#000;
}
.btn-green{
	background:#82B440;
	border:1px solid transparent;
}	
.btn-blue{
	background:#07AAA5;
	border:1px solid transparent;
}
.btn-pink{
	background:#ec768c;
	border:1px solid transparent;
}
.btn-common,
.btn-black,
.btn-white,
.loadmore{
	font-size:15px;
	font-weight:bold;
	text-transform:capitalize;
	display:inline-block;
	padding:12px 30px;
}
.btn-white{
	background:#fff;
	color:#000;
	border:1px solid transparent;
}
a.readmore{
	font-size:13px;
	font-weight:bold;
	text-decoration:underline;
	display:inline-block;
	text-transform:uppercase;
}
a.readmore:hover, a.readmore:focus{
	color:#82b440;
}
.loadmore{
	color:#222222;
	margin-top:40px;
	position:relative;
	-webkit-transition: color 0.3s ease 0s;
	-ms-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}
.loadmore:hover{
	color:#82b440;
}
.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left:95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top:25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.loadmore:hover::before, .loadmore:focus::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

/* Bounce To Top */
.bounce-top,
.bounce-green,
.bounce-white, 
.bounce-pink{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.bounce-pink:before{
	background:#EC768C !important;
}
.bounce-top:before{
	background: #07AAA5;
	
}
.bounce-green:before{
	background:#82B440;
}
.bounce-white:before{
	background: #fff;
}	
.bounce-top:before,
.bounce-green:before,
.bounce-white:before,
.bounce-pink:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.bounce-top:hover, .bounce-top:focus{
   color: #fff!important;
   border:1px solid #07AAA5;
}
.bounce-pink:hover, .bounce-pink:focus{
   color: #fff !important;
   border:1px solid #EC768C !important;
}
.bounce-green:hover, .bounce-green:focus{
   color: #fff;
   border:1px solid #82B440;
}
.bounce-white:hover, .bounce-white:focus{
	color:#1b1d1f !important;
	border:1px solid #fff;
}	
.bounce-top:hover:before, .bounce-top:focus:before, 
.bounce-green:hover::before, .bounce-green:focus::before,
.bounce-white:hover::before, .bounce-white:focus::before,
.bounce-pink:hover::before, .bounce-pink:focus::before{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/*Section with image*/
.info-section {
	overflow:hidden;
}
.info-section .row {
    margin: 0;
}

.info-section .block {
    position: relative;
}
.info-section ul.social-media{
}

.info-section ul.social-media li{
	display:inline-block;
}

.info-section ul.social-media li a{
	color:#1b1d1f;
	font-size:20px;
	margin-right:10px;
	display:block;
	margin-top:25px;
}
.info-section ul.social-media li a:hover,.info-section ul.social-media li a:focus{
	color:#82b440
}

.info-section .bg {
    background-size: cover;
	 background-position: center center;
    bottom: 0;
    left: 0;
    position:relative;
    right: 0;
    top: 0;
	 padding-top:75%;
	 margin:0 -15px;
}

.info-section .block {
	padding-top:0;
	padding:90px 5%;
}
.info-section .block .center {
  height:100%;
}


/*Header Starts*/
a, #navigation.affix .navbar-default .navbar-nav > li > a,
#main-navigation, #navigation.affix, .navbar-brand,
#navigation.affix .navbar-default .navbar-nav > li > a,
.push_nav li a,
ul.top-right li a:hover,
#about .canvas-box span i, #about .canvas-box h4,
#about .canvas-box:hover span i,
.we-do .do-wrap i, .we-do .do-wrap:hover i,
.counters-item i, .counters-item:hover i,
.thinker-image .overlay,
.work-filter ul li a,
.main-button, .main-button > button span, .overlay,
.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span,
#paralax-slider .owl-controls .owl-page span{
	-webkit-transition: all .3s ease;
   -moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
   -o-transition:all .3s ease;
	transition:all .3s ease;
}	
#main-navigation {
  position: absolute;
 
}
#navigation.affix {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
   box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);

}
#main-navigation, #navigation.affix{
	top: 0;
	z-index:999;
	width: 100%;

}	
.navbar-default {
  background-color: transparent;
  border-color: transparent;
}
.navbar , .navbar-default{
	  border:none;
}
.navbar {
  margin-bottom: 0;
  min-height: auto;
}
 .navbar-collapse {
   overflow-x: visible !important;
}
.navbar-collapse.in {
  overflow-y: auto !important;
  height: auto !important;
}
.navbar-brand {
  height: auto;
  padding:29px 0;
  float:none;
  display:block;
  width:150px;
}
#navigation.affix .navbar-brand {
  padding: 16px 0;
  width: 134px;
}
.navbar-default .navbar-nav > li{
	 margin:0 20px;
}
.navbar-default .navbar-nav > li > a {
  color: #229aff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:37px 0 15px 0;
  border-bottom:3px solid transparent;
}
#navigation.affix .navbar-default .navbar-nav > li > a{
	color: #222;
	padding:22px 0;
		
}
.navbar-default .navbar-nav > li > a:hover,
#navigation.affix .navbar-default .navbar-nav > li > a:hover{
	color:#07AAA5;
	background-color:transparent;
}
.navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .active a:hover,
.navbar-default .navbar-nav > .active a:focus,
#navigation.affix .navbar-default .navbar-nav > .active a, #navigation.affix .navbar-default .navbar-nav > .active a:hover,
#navigation.affix .navbar-default .navbar-nav > .active a:focus{
	color:#07AAA5;
	border-bottom:3px solid #075da6;
	background-color:transparent;
}	

.navbar-toggle {
  background: transparent !important;
  border: medium none;
  margin-right: 0;
}

.navbar-toggle:hover {
  background: transparent !important;
}
.navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color:#fff !important;
}
#navigation.affix .navbar-toggle .icon-bar{
	background-color:#222 !important;
}	
.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggle .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
/*Social Icons On Headers*/
ul.top-right {
  float: right;
  width: auto;
  margin: 34px 0 34px 10px;
  position:relative;
  z-index:1000;
}
#navigation.affix ul.top-right{
	margin:17px 0 17px 10px;
}
ul.top-right li{
	display:inline-block;
	margin-left:2px;
}
ul.top-right li a {
  display: block;
  font-size:13px;
  -webkit-border-radius:50%;
  border-radius:50%;
  height:26px;
  width:26px;
  text-align: center;
  line-height:26px;
  color:#075da6;
}
#navigation.affix  ul.top-right li a {
  color: #222;
}
#navigation.affix  ul.top-right li a:hover{
	color:#075da6;
}
ul.top-right li a:hover{
	background:#075da6;
}
ul.top-right li a:hover.facebook{
	  color:#3b5998;
}
ul.top-right li a:hover.twitter{
	color:#55acee;
}
ul.top-right li a:hover.instagram{
	color:#e95950;
}

#navigation.affix ul.top-right li a:hover.facebook{
	  background:#3b5998;
}
#navigation.affix ul.top-right li a:hover.twitter{
	background:#55acee;
}
#navigation.affix ul.top-right li a:hover.instagram{
	background:#e95950;
}


/* ------------- Push Menu ------------ */
#main-navigation.noborder {
  box-shadow: 0 0;
}	
.main-button {
  height: auto;
  position: fixed;
  width:auto;
  z-index: 999;
  top: 31px;
}
.main-button.right{
	right: 15px;
}
.main-button.left{
	left: 15px;
}
.main-button.left > button.menu-active{
	left:250px;
}
.main-button > button {
  background-color:#fff;
  border:none;
  padding:5px;
  -webkit-border-radius:2px;
  -ms--border-radius:2px;
  border-radius:2px;
}
.main-button > button:hover span:first-child,
.main-button > button.menu-active span:first-child{
  transform: translateY(6px) rotate(-45deg);
}

.main-button > button:hover span:nth-child(2),
.main-button > button.menu-active span:nth-child(2){
  opacity: 0;
  transform: rotate(-45deg);
}
.main-button > button:hover span:last-child,
.main-button > button.menu-active span:last-child{
  transform: translateY(-6px) rotate(-135deg);
}
.main-button > button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width:20px;
}.main-button > button span:nth-child(2){
  margin: 3px 0;
}
.navbar-brand {
  display: inline-block;
}
.cbp-spmenu {
    background:#fff;
    position: fixed;
	 box-shadow:0px 0px 8px 1px rgba(0,0,0,0.176);
}
.push_nav_brand{
	margin:30px 0 30px 15px;
	display: inline-block;
	width:110px;
}
.logo-space{ padding:32px 0;}
.push_nav li{
	position:relative;
	overflow: hidden;
}
.push_nav li a{
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size:13px;
  font-weight:600;
  display:block;
  padding:15px;
  position:relative;
  text-transform: capitalize;
  letter-spacing:1px; 
  font-family: "raleway";
}
.push_nav li a:hover, .push_nav li.active a, .push_nav .active a:hover, .push_nav li.active a:focus{
	color:#07AAA5;
}	
/* ------------- Push Menu ------------ */



/* Index5 Navigation */
.index5 .affix-top{
	top: 0;
    z-index: 999;
    width: 100%;
	background-color: #fff;
    position: fixed;
    -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
	padding:0px;
	}

.index5 .affix-top a{
	color:#000!important;
	}

.index5 .affix-top .active a{
	color:#07AAA5!important;
	}		
.index5 .affix-top .navbar-toggle .icon-bar {
    background-color: #222 !important;
}

 




/* ------------ Main Banner ------------ */
#main-slider { color:#065da6;}
.tp-banner h2{
	font-size:54px;
}
.tp-banner p{
	font-size:25px;
}
.tp-banner p , #main-slider .tp-caption a{
	color:#004177;
}
#main-slider h2.tp-caption > span{
	display:block;
}
#main-slider .tp-caption a{
	margin:5px;
}
.tp-bullets{ display:none;} 
.tp-caption{ padding:0 15px !important;}


.layer-content p{
	color:#000;
	font-weight:400;
}

.layer-content h2{
	color:#000;
	font-weight:600;
}

.layer-content h2 span{
	color:#07AAA5;
	font-weight:600;
	display:inline-block!important;
}

.layer-content h2 span.green-text{
	color:#82b440;
}









/* ------------ Main Banner ------------ */



/* ------------ Banner With Text Rotator ------------ */
.text-rotator{
	background:url("../images/banner_text.jpg");
	padding-top:150px;
	background-size:cover;
	background-attachment:fixed;
	background-position:center center;
	width:100%;
}
.text-rotator #paralax-slider{
	padding:15% 0;
}
#paralax-slider .item-content p{
	font-size:20px;
}
#paralax-slider .item-content p ,#paralax-slider .item-content h2{
		color:#fff;
}
#paralax-slider .item-content h2{
	font-size:58px;
	margin-bottom:25px;
	font-weight:100;
}

#paralax-slider .owl-controls {
  margin-top:5%;
}
#paralax-slider .owl-controls .owl-page span{
	background: #fff; 
	text-align: center;
	height:12px;
	width:12px;
	border-radius:50%;
	opacity: 1;
}
#paralax-slider .owl-controls .owl-page span:hover,
#paralax-slider .owl-controls .active span{
    background:#6BB156;
}

ul.navbar-nav ul.dropdown-menu{
	border: none;
	left: 0;
	right: auto;
}
.navbar-default .navbar-nav li ul.dropdown-menu a{
	border: none !important;
	padding: 7px 20px;
	color: #000;
	font-size: 14px;
}

/* ------------ What We Offer ------------ */
#about{}	
#about .canvas-box{
	cursor: pointer;
}
#about .canvas-box span{
	display: inline-block;
	margin-bottom:15px;
	padding:5px;
}
#about .canvas-box span i{
  display: inline-block;
  font-size:50px;
}
.color1{ color:#07AAA5;}
.color2{ color:#99D8CC;}	
.color3{ color:#EC768C;}	
.color4{ color:#C183D6;}	
.color5{ color:#31AAE1;}
.color6{ color:#82B440;}			
#about .canvas-box:hover span i,
.counters-item:hover i,
.we-do .do-wrap:hover i{
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
}
#about .canvas-box:hover h4.color1{
	color:#07AAA5;
}
#about .canvas-box:hover h4.color2{
	color:#99D8CC;
}
#about .canvas-box:hover h4.color3{
	color:#EC768C;
}
#about .canvas-box:hover h4.color4{
	color:#C183D6;
}
#about .canvas-box:hover h4.color5{
	color:#31AAE1;
}
#about .canvas-box:hover h4.color6{
	color:#82B440;
}	
#about .canvas-box h4{
	margin-bottom:15px;
	color:#000;
}
/* ------------ What We Offer ------------ */



/* ------------ Paralax background ------------ */
#bg-paralax {
  background:url("../images/paralax-index1.jpg") no-repeat;
  color: #fff;
  padding:10% 0;
}
#bg-paralax , #testinomial{
  background-size:cover;
  background-position:center center;
  background-attachment:fixed;
  width:100%;
}

#bg-paralax p{
	margin-bottom:25px;
	color: #fff;
}
#bg-paralax h2{
	font-size:48px;
}
/* ------------ Paralax background ------------ */



/*  ------------ Counters Fact Info  ------------ */
#facts{}
#facts .counters-item{
	padding:26% 10%;
	font-weight:bold;
	vertical-align:middle;
	color:#fff;
	cursor:pointer;
}
#facts .counters-item h2{
	font-family: "Open Sans", sans-serif;
}	

.counters-item i {
  font-size:50px;
  display: block;
  margin-bottom:15px;
}
.counters-item p{
	color:#fff;
	text-transform: capitalize;
	font-weight:bold;
}
/*  ------------ Counters Fact Info  ------------ */




/*  ------------ Responsive Secvtion With Side Image  ------------ */
#responsive .responsive-pic{}
#responsive .responsive-pic > .col-md-6 > img{ margin-top:-42px;}
#responsive .responsive-pic > .col-md-6, #responsive .responsive-pic > .col-sm-6{
	padding-left:0;
}

#responsive .r-test h3 , #responsive .r-test h4{
	color:#222222;
}

#responsive .r-test h4{
	margin-top:40px;
	margin-bottom:20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left:10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom:15px;
}

.r-test ul.r-feature li:before{
  content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.r-test .screens{
	margin-top:30px;
}

.r-test .screens i{
	display:inline-block;
	margin:0 3px;
}

.r-test .screens i:first-child{
	font-size:40px;
}

.r-test .screens i:nth-child(2){ font-size:30px; }

.r-test .screens i:last-child{ font-size:25px; }
/*  ------------ Responsive Secvtion With Side Image  ------------ */




/*  ------------ experties  ------------ */
.circliful {
  position: relative;
  float:left;
  margin-left:35px;
  margin-bottom:35px;
}

.circliful:first-child{
	margin-left:0;
}

.circle-text {
  background-color:#eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius:100%;
}

.circliful p{
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2{
	width:20%;
}

.circle-info, .circle-info-half {
	color: #999;
}

.circliful .fa {
	margin: -10px 3px 0 3px;
	position: relative;
	bottom: 4px;
}
/*  ------------ experties  ------------ */




/*  ------------ What We Do ------------ */
.we-do .do-wrap{
	background:#fff;
	-webkit-box-shadow: 0 1px 1px 0 #ddd;
	-ms-box-shadow: 0 1px 1px 0 #ddd;
	box-shadow: 0 1px 1px 0 #ddd;
}
	
.we-do .do-wrap > .top{
	width:100%;
	height:72px;
	display:block;
}
.we-do .do-wrap span{
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}
.we-do .do-wrap span i{
	color: #fff;
	font-size:50px;
	line-height: 99px;
	display:block;
}
.we-do .do-wrap h4{
	margin-bottom:15px;
}		
.we-do .do-wrap p,
.white-box p{
	margin:0 15px;
}
.we-do .do-wrap a{
	margin:35px 0;
	text-decoration:none;
	position:relative;
}
.we-do .do-wrap a:before,
.thinkers .thinker-wrap ul.social-contact li a:before,
.index_2#publication .wrap-pulication a:before{
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top:100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
	
}
.we-do .do-wrap a:hover::before, .we-do .do-wrap a:focus::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px);
	 -ms-transform:translateY(0px);
}
.we-do .do-wrap a.green-text:hover::before, .we-do .do-wrap a.green-text:focus::before{
	background:#74c8b8;
}
.we-do .do-wrap a.green-text:hover, .we-do .do-wrap a.green-text:focus{
	color:#74c8b8;
}
.we-do .do-wrap a.pink-text:hover::before, .we-do .do-wrap a.pink-text:focus::before{
	background:#ec768c;
}
.we-do .do-wrap a.pink-text:hover, .we-do .do-wrap a.pink-text:focus{
	color:#ec768c;
}
.we-do .do-wrap a.purple-text:hover::before, .we-do .do-wrap a.purple-text:focus::before{
	background:#c183d6;
}
.we-do .do-wrap a.purple-text:hover, .we-do .do-wrap a.purple-text:focus{
	color:#c183d6;
}
.we-do .do-wrap a.blue-text:hover::before, .we-do .do-wrap a.blue-text:focus::before{
	background:#31aae1;
}
.we-do .do-wrap a.blue-text:hover, .we-do .do-wrap a.blue-text:focus{
	color:#31aae1;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#82b440;
	
}	

/* ------------ What We Do ------------ */




/* ------------  Our Creative Thinkers ------------  */
.thinkers .thinker-wrap img, #publication-slider .item .image img{
	width:100%;
	-moz-transition:all .2s linear;
	-ms-transition:all .2s linear;
	-o-transition:all .2s linear;
	-webkit-transition:all .2s linear;
	transition:all .2s linear;
}
.thinker-wrap p{
	margin:0 10px;
}
.thinker-image{
	width:100%;
	overflow:hidden;
	position:relative;
}
.thinker-image .overlay{
	background:rgba(7,170,165,.75);
	position:absolute;
	width:100%;
	bottom:0;
	top: auto;
	opacity:0;
	filter: alpha(opacity=0);
	left:0;
	right:0;
	cursor:pointer;
   padding:0;
	height:80px;
	-moz-transform:translateY(100%);
	-ms-transform:translateY(100%);
	-webkit-transform:translateY(100%);
	transform:translateY(100%);
}
.thinker-image .overlay.pink{
	background:rgba(236,118,140,.75);
}
.thinker-image .overlay.green{
	background:rgba(130,180,64,.75);
}	
.thinker-image:hover .overlay{
	opacity:1;
	filter: alpha(opacity=100);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.thinker-image .overlay ul.social-link li a{
	border: 1px solid #fff;
}
.thinker-image .overlay ul.social-link li a > i{
	color: #fff;
}
.thinker-image .overlay ul.social-link li a:hover > i{
	color: #121416;
}
.thinker-image .overlay ul.social-link li a:hover span{
	background: #fff;
	border:1px solid #fff;
}
.thinker-wrap:hover .thinker-image img,  #publication-slider .item:hover .image img
{
	transform:scale(1.05);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}
.thinkers .thinker-wrap h3{  
	margin-top:20px;
	font-size:20px;
}
.thinkers .thinker-wrap small{
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

.thinkers .thinker-wrap ul.social-contact li{
	display:inline-block;
}

.thinkers .thinker-wrap ul.social-contact li a{
	font-weight:bolder;
	color:#222222;
	margin:0 8px;
	text-transform:uppercase;
	position:relative;
	padding-bottom:3px;
}
.thinkers .thinker-wrap ul.social-contact li a:hover::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px)
	
}
.thinkers .thinker-wrap ul.social-contact li a:hover.facebook{
	color:#3b5998 !important;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before{
	background: #3b5998;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter{
	color:#1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before{
	background: #1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden{
	color:#0077B5;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before{
	background: #0077B5;
}
/* ------------  Our Creative Thinkers ------------  */




/* ------------  Gallery Filter ------------  */
#project{
	padding-top:5%;
	background:#f8f8f8;
}
.work-filter {
	margin-bottom:50px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: #222222;
  display: block;
  font-size:15px;
  padding:6px 10px;
  text-transform: capitalize;
  border-bottom:1px solid #909090;
  border-top:1px solid #909090;
  border-left:1px solid transparent;
  border-right:1px solid transparent;
  cursor: pointer;
}
.work-filter ul li a:hover,
.work-filter ul li a.active:hover{
  background-color:#07AAA5;
  border:1px solid #07AAA5;
  color: #fff;
}
.work-filter ul li a.active {
  background-color: #82b440;
  border:1px solid #82b440;
  color: #fff;
}

.mix {
    display: none;
}

.index_2 .work-item {
    width:20%;
}

.work-item {
	height:auto;
	width:auto;
	float:left;
   position: relative;
	overflow:hidden;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
  width:100%;
}
.item-containe > img{
  -webkit-transition: all 0.7s ease 0s;
   -moz-transition:all 0.7s ease 0s;
	-ms-transition:all 0.7s ease 0s;
   -o-transition:all 0.7s ease 0s;
	transition:all 0.7s ease 0s;
}
.item-container:hover  img{
	transform:scale(1.2);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}

.overlay {
	background-color:rgba(255,255,255,.8);
	position: absolute;
	left:10px;
	top:10px;
	bottom:10px;
	right:10px;
	width:auto;
	height:inherit;
	color: #222222;
	opacity: 0;
	filter: alpha(opacity=0);
	padding:2%;
	z-index:1;
}

.overlay-inner{
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
.work-item:hover .line{
	width:40%;
}
.overlay h4.color{ color:#07AAA5;}
.overlay h4.base{ color:#82A75E;}

.work-item .overlay p{
	font-size:14px;
}
.overlay .line{
	width:0%;
}
.overlay .line ,
.product-content .line{
	height:1px;
	margin:15px auto;
	background-color:#000;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;					 
}
/* ------------  Gallery Filter ------------  */




/* ---------- Pricing Tables ---------- */
.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.pricing_item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}
.pricing_list {
	text-align: left;
}
.pricing_tenzin .pricing_item {
	margin: 1em;
	padding: 2em 1em;
	text-align: left;
	color: #262b38;
	background: #EEF0F3;
	border-top: 3px solid;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	margin-top:0;
}
.pricing_tenzin .pricing_item.pink{
	border-color:#EC768C;
}	
.pricing_tenzin .pricing_item.blue{
	border-color:#07AAA5;
}
.pricing_tenzin .pricing_item.pink .pricing_action{
	background:#EC768C;
}
.pricing_tenzin .pricing_item.blue .pricing_action{
	background:#07AAA5;
}
.pricing_tenzin .pricing_item.active{
	border-color: #82B440;
}
/*.pricing_tenzin .pricing_item.active:hover{
	border-color: #07AAA5;
} */
.pricing_tenzin .pricing_title {
	font-size: 1em;
	margin: 0 0 1em;
}
.pricing_item:hover .pricing_action{
	border:1px solid transparent;
	background:#82b440 !important;
}
.pricing_tenzin .pricing_price {
	font-size: 2em;
	padding: 0.5em 0 0.75em;
	border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
	font-size: 0.5em;
	vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
	font-weight: bold;
	padding: 0 0 0.5em;
	color: #9CA0A9;
	border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
	font-size:14px;
	padding:25px 0;	
	color: #8b909d;
}
.pricing_tenzin .pricing_list li{
	margin-bottom:8px;
}
.pricing_tenzin .pricing_list li:before{
	content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.pricing_tenzin .pricing_action {
	font-weight: bold;
	margin-top: auto;
	padding: 1em 2em;
	color: #fff;	
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
	border:1px solid transparent;

 }
.pricing_item.active .pricing_action{
	border:1px solid transparent;
	background:#82b440;
}
.pricing_item.active:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}	
/* ---------- Pricing Tables ---------- */



/* ------------ Testinomials ------------ */
#testinomial{
	background:url(../images/bg-testinomial.jpg) no-repeat;
	color:#fff;
}
#testinomial h2{ color:#82B440; }
#testinomial p{ color:#fff; }
#testinomial-slider .item{
  display: block;
  width: 100%;
  height: auto;
  color:#fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5{ 
	font-size:14px; 
	text-transform:uppercase; 
	margin-top:40px; 
	margin-bottom:15px;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next{
	border:1px solid #fff;
	color:#FFF;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next ,
#publication-slider .owl-prev ,
#publication-slider .owl-next {
	top:40%;
	position:absolute;
	background:transparent;
	height:38px;
	width:38px;
	-ms-border-radius:38px;
	-webkit-border-radius:38px;
	border-radius:38px;
	font-size:30px;
	line-height:20px;
	opacity:1;
	filter: alpha(opacity=100);
}

#testinomial-slider .owl-prev:hover,
#testinomial-slider .owl-next:hover ,
#publication-slider .owl-prev:hover ,
#publication-slider .owl-next:hover{
	border:1px solid #82b440;
	background-color:#82b440;
	color:#fff;
	-webkit-transition: background 0.3s linear 0.1s;
	-ms-transition: background 0.3s linear 0.1s;
	transition: background 0.3s linear 0.1s;
}
#testinomial-slider .owl-prev{
	left:0;
}
#testinomial-slider .owl-next{
	right:0;
}
/* ------------ Testinomials ------------ */



/* ------------  Publications ------------ */
#publication{}
#publication-slider .item{
  margin:0 15px;
}
#publication-slider .item:hover{
	cursor:pointer;
}	
#publication-slider .item .image{
	overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item > img{
  display: block;
  width: 100%;
  height: auto;
}
#publication-slider .item h5{
	font-size:14px;
	color:#727272;
	margin-top:25px;
}
#publication-slider .item h5 , #publication-slider .item h4{
	margin-bottom:10px;
}
#publication-slider .item h4{
	font-size:20px;
	color:#222222;
}
#publication-slider .item  a.name{
	color:#222222;
}

#publication-slider .item  a.name ,
#publication-slider .item  a.comment{
	font-size:15px !important;
	margin-bottom:10px;
	display:inline-block;
	text-transform:none;
}
#publication-slider .item  a.comment{
	color:#82b440;
}
#publication-slider .item  a.comment:before{
	content:'';
	background:transparent;
}
#publication-slider .item p > a{
	font-size:15px;
}
#publication-slider .item > a{
	color:#000;
	position:relative;
	font-size:13px;
	font-weight:bold;
	text-transform: uppercase;
}
#publication-slider .item > a:hover{
	color:#82b440;
}
#publication-slider .owl-prev ,
#publication-slider .owl-next{
	border:1px solid #7a7a7a;
	color:#7a7a7a;
}
#publication-slider .owl-prev{
	left:-5%;
}

#publication-slider .owl-next{
	right:-5%;
}
/* ------------  Publications ------------ */



/* ------------ Slogan Text with Button ------------ */
#slogan{
	background:#82b440;
	padding:25px 0;
	color:#fff;
	margin-top:-2px;
	width:100%;
}
#slogan a{
  padding: 15px 35px;
  border:1px solid #fff;
  color:#000;
  background:#fff;
  font-weight:bold;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}
/* ------------ Slogan Text with Button ------------ */



/* ------------ Contact Us ------------ */
#contact .center h2,
#contact .center .margen{
	margin-bottom:45px;
}
#contact .center a{
	color:#82b440;
}

#contact .center ul.social-link{
	margin-top:45px;
}


#contact .form-inline{
	margin-top:45px;
}
.form-control:focus {
  border-color: #82b440 !important;
  box-shadow:none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-6,
#contact .form-inline .col-md-12{
	padding-left:5px;
	padding-right:5px;
}


#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control{
	height:45px;
}

#contact .form-inline .form-control,
#contact .form-inline textarea{
	margin-bottom:10px;
}

#contact .form-inline textarea{
	margin-top:0;
	min-height:210px;
}
#contact .form-inline .btn-black{
	width:100%;
	color:#fff;
	
}	
#contact .form-inline input[type="submit"]{
	width:100%;
	height:100%;
	background-color:transparent;
}
/* ------------ Contact Us ------------ */




/* ---------- Footer  ---------- */
footer{
	background:#121416;
	padding:35px 0;
	position:relative;
}
footer p{
	margin:0;
	color:#a6a6a6;
	font-size:14px;
}
footer .breadcrumb{
	background-color:transparent;
	padding:0;
}

footer .breadcrumb li a {
  text-shadow: none;
  color:#fff;
	font-size:14px;
	position:relative;
}
footer .breadcrumb li a:hover, footer .breadcrumb li a:focus{
  color: #82b440;
}

.go-top {
  bottom:20px;
  position: fixed;
  font-size:20px;
  right:25px;
  z-index:800;
  background:#82b440;
  color:#fff;
  border-radius:5px;
  height:40px;
  width:40px;
  text-align:center;
  line-height:40px;
  opacity:0;
}
.go-top:hover, .go-top:focus{
	background:#07AAA5;
	color:#fff;
}
.go-top.show {
    opacity: 1;
}
/* ---------- Footer  ---------- */





 ul.social-link li a{
	display: inline-block;
	margin: 0 2px;
}

 ul.social-link li{
	margin-top:10px;
	display:inline-block;
}

 ul.social-link li a {
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position:relative;
  color: #000 !important;
}

 ul.social-link li a span{
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 0;
}

 ul.social-link li a:hover span {
  background: #82b440;
  border-radius:44px;
  height:44px;
  width:44px;
  border: 1px solid #82b440;
  height:44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}
 ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

 ul.social-link li a :hover,  ul.social-link li a:focus{
	color:#fff;
	 border: none;
}



/* ========================= Alert Classes ==================== */ 

.alert-success {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
	}
	
.alert-danger {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
}	






 



/*=========================================*/
          /* Blog WIth All Versions*/
/*=========================================*/
#area-main{}
.blog-wrap{
	background-color:#fff;
	width:100%;
	position:relative;
	overflow:hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding:6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding:30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3.catItemView{
	border-bottom: 1px solid #d1d2d2;
	padding-bottom:70px;
	margin-bottom:70px;
}

.blog-item-v3 > img{
	margin-bottom:35px;
}

.blog-item-v3 .blog-content {
	padding:0;
}

.no-margin{ margin:0; border:none;}
#area-main h3{
	color:#1b1d1f;
}

#area-main p{
	color:#1b1d1f;
}

#area-main a.readmore{
	color:#fff;
	padding:10px 35px;
	background:#1b1d1f;
	border:1px solid transparent;
	display:inline-block;
	text-decoration:none;
	margin-top:20px;
}

#area-main a.readmore:hover, #area-main a.readmore:focus{
	border:1px solid #82b440;
}

#area-main ul.blog-author{
	margin:20px 0 25px;
}

#area-main ul.blog-author li{
	display:inline-block;
}

#area-main ul.blog-author li a{
	color:#696969;
	font-size:14px;
	margin-right:15px;
}

#area-main ul.blog-author li a .fa{
	margin-right:5px;
}

#area-main ul.blog-author li a:hover, #area-main ul.blog-author li a:focus{
	color:#82b440;
}

.morepost-wrap{
	margin-top:75px;
	border-top:1px solid #d1d2d2;
}

.morepost-wrap2{
	border-top:1px solid #d1d2d2;
	border-bottom:1px solid #d1d2d2;
	padding-bottom:25px;
}

.morepost-wrap a:hover ,
.morepost-wrap2 a:hover{
	color:#82b440;
}

.morepost-wrap .morepost ,
.morepost-wrap2 .morepost{ 
  font-size:16px;
  color:#696969;
  margin-top:25px;
  display:inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap .morepost .fa-long-arrow-left{
	right:0;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	right:100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-left , 
.morepost-wrap .morepost .fa-long-arrow-right{
	color: transparent;
	pointer-events: none;
   position: absolute;
   text-shadow: 0 0 transparent;
   top:25%;
   transform: translateX(-50%);
   transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity:0 !important;
	filter: alpha(opacity=0);
}

.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-right{
  left:0%;
  margin-left:5px;
}

.morepost-wrap2 .morepost:hover  .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	left:110%;
}

.blog-content-pic{}
.blog-content-pic img{ width:100%;}
.blog-item .blog-content{
	padding:0;
	margin:35px 0;
}

.blog-item .blog-content p{
	margin-bottom:25px;
}

.blog-item blockquote{
	color:#82b440;
}

.blog-item .post-tag{
	border:1px solid #d9d9d9;
	padding:5px;
	margin-bottom:70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a{
	 display:block;
}

#area-main .tag-cloud li a , .blog-reply a.btn-rep{
    background:#efefef;
    color: #1b1d1f;
	 font-size:12px;
    padding: 8px 15px;
	 text-transform:uppercase;
}
#area-main .tag-cloud li a:hover , #area-main .tag-cloud li a:focus ,
.blog-reply a.btn-rep:hover,.blog-reply a.btn-rep:focus{
    background:#82b440;
    color: #fff;
	 -webkit-transition: all 500ms linear;
   -moz-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
   -o-transition:all 500ms linear;
	transition:all 500ms linear;
}

.blog-item ul.social-link li{ margin:0; }
.blog-item ul.social-link li a > i{
	color: #1b1d1f;
}
.blog-item ul.social-link li a > i:hover{
	color: #fff;
}
.blog-reply{
	padding:10px;
	border:1px solid #f3f3f3;
	position:relative;
	margin:20px 0;
}
.blog-reply h4{
	color:#1b1d1f;
	margin-bottom:8px;
	text-transform:capitalize;
}
.blog-reply a.btn-rep{
	position:absolute;
	top:0;
	right:0;
}

.blog-item .post-comment h3{
	margin-bottom:35px;
	margin-top:70px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control{
	height:50px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control,
.blog-item .post-comment form textarea,
.contact form textarea,
.index_3 .form-inline .form-control,
.index_3 .form-inline textarea{
  padding:15px;
  font-size:14px;
  color:#4c4c4c;
  border:1px solid #d0d0d0;
  width:100%;
  border-radius:0;
}

.blog-item .post-comment form textarea, 
.contact form textarea{
	margin:30px 0;
	min-height:210px;
}

.blog-item .post-comment form input[type="submit"] , 
.contact form input[type="submit"]{
	background:#82b440;
	border:1px solid transparent;
	font-weight:bold;
	color:#fff;
	height:50px;
	width:185px;
	position:relative;
}
.blog-item .post-comment form input[type="submit"]:hover , 
.contact form input[type="submit"]:hover{
	background:#1b1d1f;
}
 
.widget{
	margin-bottom:40px;
	color:#1b1d1f;
}

.widget h4 , .widget img{
	margin-bottom:25px;
}
.widget > img{
	width:100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size:14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor:pointer;
}

ul.category li{
	margin-top:15px;
	display:block;
}

ul.category li a{
	color:#1b1d1f;
	font-size:16px;
	border-bottom:1px solid #d9d9d9;
	padding-bottom:15px;
	display:block;
	text-transform:capitalize !important;
}
ul.category li a:hover , ul.category li a:focus{
	color:#82b440;
}

ul.category li a .date{
	color:#82b440;
	font-size:12px;
	display:block;
}

/*=========================================*/
          /* Blog Ends */
/*=========================================*/




          /* Inner Pages Top*/
.innerpage-banner {
	background: no-repeat center center / cover;
	padding-top: 200px;
	max-height:440px;
	border-bottom: 5px solid rgba(0,0,0,0.9);
	color: #075da6;
	
}
.tagline {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}




@media screen and (max-width: 1299px){
    .navbar-default .navbar-nav > li{
		  margin: 0 20px;
	  }
	.info-section .bg{
		padding-top:100%;
	}
	.blog-wrap .blog-content {
	  padding: 3.5em 0;
	}
	
	 .layer-content-responsive {
		max-height:400px !important;
		overflow:hidden;
	}
}


@media screen and (max-width: 1024px){
	
	h2{ font-size:36px; }
	h3{ font-size:20px; }
	h4{ font-size:16px; }
	
}

@media screen and (max-width: 1000px){
	 
.navbar-default .navbar-nav > li {
	margin: 0 6px;
}
.navbar-default .navbar-nav > li > a {
  letter-spacing: 0;
}
.text-rotator {
  padding-top:150px;
}
#paralax-slider .item-content p{
  font-size:16px;
}
#paralax-slider .item-content h2 {
  font-size:46px;
  margin-bottom:10px;
}
.r-test ul.r-feature li {
font-size: 12px;
}
.we-do .do-wrap, .white-box {
margin-bottom:30px;
}
.pricing_item {
flex: 0 1 320px;
}
#bg-paralax , #testinomial, .text-rotator{
  background-position:center center !important;
}	
#slogan{
text-align:center;
}
#slogan p{s
font-size:16px;
}	
#slogan a.pull-right {
float: none !important;
margin-top: 30px;

}


		
}



@media screen and (max-width: 767px){

  h2{ font-size:30px; }
  #main-navigation{ background-color: #1b1d1f; }
  
  .navbar-brand, #navigation.affix .navbar-brand{ display:inline-block;  padding: 10px 0;}
  .navbar-default .navbar-nav > li > a, #navigation.affix  .navbar-default .navbar-nav > li > a {
	  padding: 10px 0;
	}
   ul.top-right, #navigation.affix ul.top-right{
		margin:0;
		position:relative;
		right:37px;
		margin-top:-2px;
	}
	ul.top-right, #navigation.affix ul.top-right{
		top:14px;
	}
	.navbar-default.social .navbar-toggle {
     right: -100px !important;
  }
  .main-button { top: 10px;}
	  .push_nav_brand {
	  margin: 12px 0 30px 15px;
	  width:90;
  }
  .push_nav li a {
  font-size:12px;
  padding: 8px 15px;
}
.text-rotator {
  padding-top:80px;
}
#paralax-slider .item-content p{
  font-size:14px;
}
#paralax-slider .item-content h2 {
  font-size: 26px;
  margin-bottom:10px;
}
	#bg-paralax h1, #bg-paralax h2{
		font-size:30px;
	}
	.we-do .do-wrap,
	.thinkers .thinker-wrap{
		margin:30px 0;
	}
	#thinkers{
		padding-bottom:45px;
	}	
	.thinker-image .overlay {
	  height: 60px;
	}
	#project{ padding-top:0;}
	#responsive{
	}
	#responsive .responsive-pic > .col-md-6 > img{
	  margin-bottom: 25px;
	}
	.number-counters > .col-xs-12{
		width:50%;
	}	
	.circliful {
	  margin-bottom: 50px;
	}
	.circliful:first-child {
	  margin-left:25px;
	}
	#testinomial-slider .item p{
		font-size:14px;
		margin:0;
	}
	#testinomial-slider .owl-prev, #testinomial-slider .owl-next{
		display:none;
	}
	#publication-slider .owl-prev{
		left:10px;
	}
	#publication-slider .owl-next{
		right:10px;
	}
	#publication-slider .owl-prev, #publication-slider .owl-next{
		background:#fff;
		top:19%;
		
	}
	
	
	.circliful {
	  margin-bottom: 50px;
	  margin-left:0;
	  float:none;
	  display:inline-block
	  
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	
	
		
}


@media screen and (min-width: 641px) and (max-width: 767px) { 

      .thinkers .col-sm-4{
		  width: 48%;
		  display:inline-block;
	  } 
	  
	 
	  
	  
	  
	  
	  
   
}




@media screen and (max-width: 480px) {
	.navbar-brand img{
		width:75%;
	}
	ul.top-right{
		top:14px;
	}
	.circliful {
	  margin-bottom: 50px;
	  position:relative;
	  left:30%;
	  margin-left:0;
	  float:none;
	  -moz-transform:translate(-50%,0);
	 -ms-transform:translate(-50%,0);
	 -webkit-transform:translate(-50%,0);
	 -o-transform:translate(-50%,0);
	  transform:translate(-50%,0);
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	.layer-content-responsive {
		max-height:240px !important;
		overflow:hidden;
	}
}



@media screen and (max-width: 479px){
	
	#main-navigation{
		top:0;
	}
	
}

.morepost-wrap ul.pagination-list {
    margin: 0;
    padding: 0;
    width: 100%;
}
.morepost-wrap ul.pagination-list li {
    display: none;
}
.morepost-wrap ul.pagination-list li.morepost {
    display: block;
}
.morepost-wrap .pagination > li > a {
    border: medium none;
}
.morepost-wrap .pagination > li > a:focus, .morepost-wrap .pagination > li > a:hover {
    background-color: transparent;
    color: #07aaa5;
}
#itemListLeading > .itemContainer:last-child .blog-item-v3{
	padding: 0;
	border: none;
}
.pagination-list .morepost-wrap{
	border-bottom: 1px solid #d1d2d2;
	border-top: 0;
	margin-top: -70px;
	padding-bottom: 20px;
}
body.com_k2 #area-main.padding{
	padding-bottom: 70px;
}
.blog-item div.itemComments {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    padding: 0;
}
body.com_k2 div.itemBackToTop{
	display: none;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton{
 	background: #82b440 none repeat scroll 0 0;
    border: 1px solid transparent;
    color: #fff;
    font-weight: bold;
    height: 50px;
    position: relative;
    width: 185px;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton:hover{
	background: #000;
}
body.com_k2 div.itemCommentsForm form span#formLog{
	margin-left: 0;
	margin-right: 0;
}
.blog-reply.media{
	margin-top: 20px;
}
#about.section-padding.btwe-offer{
	padding-top: 130px!important;
}PK!<�֌��css/owl.carousel.cssnu&1i�/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}



.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	/*-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;*/
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

PK!�>�MMcss/loader.cssnu&1i�

.loader{
	position: fixed;
	background:#fff;
	z-index:11000;
	height:100%;
	width:100%;
	overflow:hidden;
}

.spinner {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  position:absolute;
  left:50%;
  right:50%;
  margin-left:-20px;
  top:50%;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #82B440;
  border-radius: 100%;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot1{
	background-color: #82B440;
}	
.dot2 {
  top: auto;
  background-color: #07AAA5;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}PK!����css/zerogrid.cssnu&1i�/*
Zerotheme.com | Free Html5 Responsive Templates
Zerogrid - A Single Grid System for Responsive Design
Author: Kimmy
Version : 3.0
Author URI: http://www.zerotheme.com/
*/
/* -------------------------------------------- */



/* ---------------------------------------------------------------------------- */
/* -------------------------------Item-Effect---------------------------------- */
/* ---------------------------------------------------------------------------- */	
.item-container {
	position: relative;
	overflow: hidden;
	display: inline-block;
	text-align: center;
	vertical-align: top;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width:100%;
}
.item-container img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
	 overflow:hidden;
}
.item-container .item-caption {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: none;
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
}
.item-caption-inner {
	display: table;
	width: 100%;
	height: 100%;
}
.item-caption-inner1 {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.item-container .item-caption h3, .item-container .item-caption span{
	display: block;
	text-align: center;
	text-transform: uppercase;
	color: #444;
	display: none;
}
.item-container .item-caption h3{
	font-size: 23px;
	letter-spacing: 2px;
	margin-bottom : 12px;
}
.item-container .item-caption span{
	font-style: italic;
	font-size: 12px;
}

.item-container:hover .item-caption {
	background: rgba(255, 255, 255, 0.75);
}
.item-container:hover .item-caption h3, .item-container:hover .item-caption span{
	display: block;
}




/* ------------------Grid System--------------- */ 
.zerogrid{ width:100%; position: relative;}
.zerogrid:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

.zerogrid .f-right{float: right!important;}
.zerogrid .f-left{float: left!important;}

.zerogrid .row{}
.zerogrid .row:before,.row:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; }
.zerogrid .row:after{clear: both; }
.zerogrid .row{zoom: 1;}

/*.zerogrid .wrap-col{margin:10px;}*/

.zerogrid .col-1-2, .zerogrid .col-1-3, .zerogrid .col-2-3, .zerogrid .col-1-4, .zerogrid .col-2-4, .zerogrid .col-3-4, .zerogrid .col-1-5, .zerogrid .col-2-5, .zerogrid .col-3-5, .zerogrid .col-4-5, .zerogrid .col-1-6, .zerogrid .col-2-6, .zerogrid .col-3-6, .zerogrid .col-4-6, .zerogrid .col-5-6{float:left; /*display: inline-block;*/}

.zerogrid .col-full{width:100%;}

.zerogrid .col-1-2,.zerogrid .col-1-2-fixed{width:50%;}
.zerogrid .offset-1-2{margin-left: 50%;}

.zerogrid .col-1-3,.zerogrid .col-1-3-fixed{width:33.33%;}
.zerogrid .col-2-3,.zerogrid .col-2-3-fixed{width:66.66%;}
.zerogrid .offset-1-3{margin-left: 33.33%;}
.zerogrid .offset-2-3{margin-left: 66.66%;}

.zerogrid .col-1-4,.zerogrid .col-1-4-fixed{width:25%;}
.zerogrid .col-2-4,.zerogrid .col-2-4-fixed{width:50%;}
.zerogrid .col-3-4,.zerogrid .col-3-4-fixed{width:75%;}
.zerogrid .offset-1-4{margin-left: 25%;}
.zerogrid .offset-2-4{margin-left: 50%;}
.zerogrid .offset-3-4{margin-left: 75%;}

.zerogrid .col-1-5,.zerogrid .col-1-5-fixed{width:20%;}
.zerogrid .col-2-5,.zerogrid .col-2-5-fixed{width:40%;}
.zerogrid .col-3-5,.zerogrid .col-3-5-fixed{width:60%;}
.zerogrid .col-4-5,.zerogrid .col-4-5-fixed{width:80%;}
.zerogrid .offset-1-5{margin-left: 20%;}
.zerogrid .offset-2-5{margin-left: 40%;}
.zerogrid .offset-3-5{margin-left: 60%;}
.zerogrid .offset-4-5{margin-left: 80%;}

.zerogrid .col-1-6,.zerogrid .col-1-6-fixed{width:16.66%;}
.zerogrid .col-2-6,.zerogrid .col-2-6-fixed{width:33.33%;}
.zerogrid .col-3-6,.zerogrid .col-3-6-fixed{width:50%;}
.zerogrid .col-4-6,.zerogrid .col-4-6-fixed{width:66.66%;}
.zerogrid .col-5-6,.zerogrid .col-5-6-fixed{width:83.33%;}
.zerogrid .offset-1-6{margin-left: 16.66%;}
.zerogrid .offset-2-6{margin-left: 33.33%;}
.zerogrid .offset-3-6{margin-left: 50%;}
.zerogrid .offset-4-6{margin-left: 66.66%;}
.zerogrid .offset-5-6{margin-left: 83.33%;}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
	.zerogrid{/*width:960px;*/}
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	/*.zerogrid{width:768px;}*/
}

@media only screen and (max-width: 767px) {
	.zerogrid, .zerogrid .col-1-2, .zerogrid .col-1-3, .zerogrid .col-2-3, .zerogrid .col-1-4, .zerogrid .col-2-4, .zerogrid .col-3-4, .zerogrid .col-1-5, .zerogrid .col-2-5, .zerogrid .col-3-5, .zerogrid .col-4-5, .zerogrid .col-1-6, .zerogrid .col-2-6, .zerogrid .col-3-6, .zerogrid .col-4-6, .zerogrid .col-5-6{width:100%;}
	
	.zerogrid .offset-1-2, .zerogrid .offset-1-3, .zerogrid .offset-2-3, .zerogrid .offset-1-4, .zerogrid .offset-2-4, .zerogrid .offset-3-4, .zerogrid .offset-1-5, .zerogrid .offset-2-5, .zerogrid .offset-3-5, .zerogrid .offset-4-5, .zerogrid .offset-1-6, .zerogrid .offset-2-6, .zerogrid .offset-3-6, .zerogrid .offset-4-6, .zerogrid .offset-5-6{margin-left:0;}
}
PK!k��GNkNkcss/font-awesome.min.cssnu&1i�/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}
PK!�r�/�/�css/animate.min.cssnu&1i�@charset "UTF-8";/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(0.75);transform:scaleX(1.25) scaleY(0.75)}40%{-webkit-transform:scaleX(0.75) scaleY(1.25);transform:scaleX(0.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(0.85);transform:scaleX(1.15) scaleY(0.85)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes rubberBand{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(0.75);-ms-transform:scaleX(1.25) scaleY(0.75);transform:scaleX(1.25) scaleY(0.75)}40%{-webkit-transform:scaleX(0.75) scaleY(1.25);-ms-transform:scaleX(0.75) scaleY(1.25);transform:scaleX(0.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(0.85);-ms-transform:scaleX(1.15) scaleY(0.85);transform:scaleX(1.15) scaleY(0.85)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);-ms-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);transform:translateX(0%)}}@keyframes wobble{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}100%{opacity:0}}@keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}100%{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}PK!��ژ
	
	css/jPushMenu.cssnu&1i�

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
}

.cbp-spmenu-vertical a {
}

.cbp-spmenu-horizontal {
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1000;
    overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
    height: 100%;
    width: 20%;
    float: left;
}

.cbp-spmenu-horizontal a {
    float: left;
    width: 20%;
    padding: 0.8em;
    border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */
.cbp-spmenu-left {
    left: -240px;
}

.cbp-spmenu-right {
    right: -240px;
}

.cbp-spmenu-left.menu-open {
    left: 0px;
}

.cbp-spmenu-right.menu-open {
    right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
    top: -150px;
}

.cbp-spmenu-bottom {
    bottom: -150px;
}

.cbp-spmenu-top.menu-open {
    top: 0px;
}

.cbp-spmenu-bottom.menu-open {
    bottom: 0px;
}

/* Push classes applied to the body */
.push-body {
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.push-body-toright {
    left: 240px;
}

.push-body-toleft {
    left: -240px;
}

/* Transitions */
.cbp-spmenu,
.push-body {
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
}


#main-navigation .social-link{ margin:25px 0 0 25px;}
#main-navigation .social-link i{ color:#000;}
#main-navigation .social-link i:hover{ color:#fff;}

/* Example media queries */
@media screen and (max-width: 767px){
#main-navigation{
	background-color:transparent;
}
}
@media screen and (max-width: 55.1875em) {
    .cbp-spmenu-horizontal {
        font-size: 75%;
        height: 110px;
    }

    .cbp-spmenu-top {
        top: -110px;
    }

    .cbp-spmenu-bottom {
        bottom: -110px;
    }
}

@media screen and (max-height: 26.375em) {
    .cbp-spmenu-vertical {
        font-size: 90%;
        width: 190px;
    }

    .cbp-spmenu-left,
    .push-body-toleft {
        left: -190px;
    }

    .cbp-spmenu-right {
        right: -190px;
    }

    .push-body-toright {
        left: 190px;
    }
}




PK!���css/owl.transitions.cssnu&1i�/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}PK!����ƸƸcss/onepage.cssnu�[��� @charset "utf-8";
/* CSS Document 

Table Of Content

+General Styling and Tags
*body
+ @font-face

+ Header

+ #main-navigation
-.navigation
	- .navbar-nav
		- .page-scroll

+- #main-slider

+ #about
	-.canvas-box

+ #bg-paralax

+ #facts
	-.number-counters
		-.counters-item 
		
+ #responsive
	-.responsive-pic
	-.r-test
		-.r-feature
			-.screens

+ #experties
	-.myStat2
	-.circliful
		-.circle-text
			-canvas

+ .we-do
	-.do-wrap

+ #thinkers
	-.thinker-wrap
		-.social-contact
	
+ #project
   - .work-filter 
	- .work-item
		- .overlay
			- .overlay-inner


+ #pricing
	-.pricing 
	-.pricing_tenzin
		-.pricing_item 
			-.pricing_title
			-.pricing_price
			-.pricing_sentence
			-.pricing_list
			-.pricing_action

			
+ #testinomial
	-#testinomial-slider
	-.owl-carousel
		.item

+ #publication
	-#publication-slider
	-.owl-carousel
		.item
		
+ #contact
	-#letstalk

+ ##area-main
	-.blog-wrap
		-.blog-content
			-.blog-item
		

+ footer
	-.breadcrumb

*/






/****** General Styling ******/
body{
	 color:#222222;
    font-family: "Open Sans", sans-serif;
	 overflow-x: hidden;
	 font-size:14px;
	 
}
ul , ol{
	margin:0;
	padding:0;
	list-style:none;
}
a ,
a:hover , 
a:focus{
	text-decoration:none;
	outline:none;
	color:inherit;
}
input[type="submit"]{
	background-color:transparent;
}	
button:focus {
    outline: medium none;
}
h1,
h2, 
h3, 
h4, 
#testinomial-slider .item h5{
	margin:0;
}
h1{
	font-size:46px;
}
h2, 
h3,
h4{
	text-transform:capitalize;
	font-family: "raleway";
}

h2{
	font-size:24px;
}
h3{
	font-size:24px;
	font-weight: 600;
}

h4{
	font-size:18px;
	text-transform: capitalize;
    font-weight: 600;
}
p{
	font-size:14px;
	color:#222222;
}
textarea{
	resize:none;
}
p.title{
	font-size:14px;
	text-transform:capitalize;
}
.heading{
	margin-bottom:40px;
}
.padding{
	padding:90px 0;
}
.top-padding{
	padding-top:90px;
}
.bottom-padding{
	padding-bottom: 90px;
}
.box-section.nopadding .bt-boxfluid,
.container-fluid.nopadding{
	padding-left: 0;
	padding-right: 0;
}
.section-padding{
	padding-top:130px!important;
}
#about.section-padding{
	padding-top:170px!important;	
}
.padding-botom{
	padding-bottom:90px;
}
.magin30{
	margin-bottom:30px;
}
.dark{
	background:#1b1d1f;
}
.light{
	background:#f5f5f5;
}
.base_color{
	background:#82b440;
}

.green{
	background:#74c8b8;
}

.pink{
	background:#ec768c;
}

.purple{
	background:#c183d6;
}

.blue{
	background:#31aae1;
}

.green-text{
	color:#74c8b8;
}
.pink-text{
	color:#ec768c;
}
.purple-text{
	color:#c183d6;
}

.blue-text{
	color:#31aae1;
}

.bg-grey{
	background:#ececec;
}

/*Buttons*/
.btn-common{
	border:1px solid #fff;
	color:#fff;
}

.btn-black{
	border:1px solid #000;
	color:#000;
}
.btn-green{
	background:#82B440;
	border:1px solid transparent;
}	
.btn-blue{
	background:#07AAA5;
	border:1px solid transparent;
}
.btn-pink{
	background:#ec768c;
	border:1px solid transparent;
}
.btn-common,
.btn-black,
.btn-white,
.loadmore{
	font-size:15px;
	font-weight:bold;
	text-transform:capitalize;
	display:inline-block;
	padding:12px 30px;
}
.btn-white{
	background:#fff;
	color:#000;
	border:1px solid transparent;
}
a.readmore{
	font-size:13px;
	font-weight:bold;
	text-decoration:underline;
	display:inline-block;
	text-transform:uppercase;
}
a.readmore:hover, a.readmore:focus{
	color:#82b440;
}
.loadmore{
	color:#222222;
	margin-top:40px;
	position:relative;
	-webkit-transition: color 0.3s ease 0s;
	-ms-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}
.loadmore:hover{
	color:#82b440;
}
.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left:95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top:25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.loadmore:hover::before, .loadmore:focus::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

/* Bounce To Top */
.bounce-top,
.bounce-green,
.bounce-white, 
.bounce-pink{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.bounce-pink:before{
	background:#EC768C !important;
}
.bounce-top:before{
	background: #07AAA5;
	
}
.bounce-green:before{
	background:#82B440;
}
.bounce-white:before{
	background: #fff;
}	
.bounce-top:before,
.bounce-green:before,
.bounce-white:before,
.bounce-pink:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.bounce-top:hover, .bounce-top:focus{
   color: #fff!important;
   border:1px solid #07AAA5;
}
.bounce-pink:hover, .bounce-pink:focus{
   color: #fff !important;
   border:1px solid #EC768C !important;
}
.bounce-green:hover, .bounce-green:focus{
   color: #fff;
   border:1px solid #82B440;
}
.bounce-white:hover, .bounce-white:focus{
	color:#1b1d1f !important;
	border:1px solid #fff;
}	
.bounce-top:hover:before, .bounce-top:focus:before, 
.bounce-green:hover::before, .bounce-green:focus::before,
.bounce-white:hover::before, .bounce-white:focus::before,
.bounce-pink:hover::before, .bounce-pink:focus::before{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/*Section with image*/
.info-section {
	overflow:hidden;
}
.info-section .row {
    margin: 0;
}

.info-section .block {
    position: relative;
}
.info-section ul.social-media{
}

.info-section ul.social-media li{
	display:inline-block;
}

.info-section ul.social-media li a{
	color:#1b1d1f;
	font-size:20px;
	margin-right:10px;
	display:block;
	margin-top:25px;
}
.info-section ul.social-media li a:hover,.info-section ul.social-media li a:focus{
	color:#82b440
}

.info-section .bg {
    background-size: cover;
	 background-position: center center;
    bottom: 0;
    left: 0;
    position:relative;
    right: 0;
    top: 0;
	 padding-top:75%;
	 margin:0 -15px;
}

.info-section .block {
	padding-top:0;
	padding:90px 5%;
}
.info-section .block .center {
  height:100%;
}


/*Header Starts*/
a, #navigation.affix .navbar-default .navbar-nav > li > a,
#main-navigation, #navigation.affix, .navbar-brand,
#navigation.affix .navbar-default .navbar-nav > li > a,
.push_nav li a,
ul.top-right li a:hover,
#about .canvas-box span i, #about .canvas-box h4,
#about .canvas-box:hover span i,
.we-do .do-wrap i, .we-do .do-wrap:hover i,
.counters-item i, .counters-item:hover i,
.thinker-image .overlay,
.work-filter ul li a,
.main-button, .main-button > button span, .overlay,
.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span,
#paralax-slider .owl-controls .owl-page span{
	-webkit-transition: all .3s ease;
   -moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
   -o-transition:all .3s ease;
	transition:all .3s ease;
}	
#main-navigation {
  position: absolute;
 
}
#navigation.affix {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
   box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);

}
#main-navigation, #navigation.affix{
	top: 0;
	z-index:999;
	width: 100%;

}	
.navbar-default {
  background-color: transparent;
  border-color: transparent;
}
.navbar , .navbar-default{
	  border:none;
}
.navbar {
  margin-bottom: 0;
  min-height: auto;
}
 .navbar-collapse {
   overflow-x: visible !important;
}
.navbar-collapse.in {
  overflow-y: auto !important;
  height: auto !important;
}
.navbar-brand {
  height: auto;
  padding:29px 0;
  float:none;
  display:block;
  width:150px;
}
#navigation.affix .navbar-brand {
  padding: 16px 0;
  width: 134px;
}
.navbar-default .navbar-nav > li{
	 margin:0 20px;
}
.navbar-default .navbar-nav > li > a {
  color: #229aff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:37px 0 15px 0;
  border-bottom:3px solid transparent;
}
#navigation.affix .navbar-default .navbar-nav > li > a{
	color: #222;
	padding:22px 0;
		
}
.navbar-default .navbar-nav > li > a:hover,
#navigation.affix .navbar-default .navbar-nav > li > a:hover{
	color:#065574;
	background-color:transparent;
}
.navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .active a:hover,
.navbar-default .navbar-nav > .active a:focus,
#navigation.affix .navbar-default .navbar-nav > .active a, #navigation.affix .navbar-default .navbar-nav > .active a:hover,
#navigation.affix .navbar-default .navbar-nav > .active a:focus{
	color:#065574;
	border-bottom:3px solid #075da6;
	background-color:transparent;
}	

.navbar-toggle {
  background: transparent !important;
  border: medium none;
  margin-right: 0;
}

.navbar-toggle:hover {
  background: transparent !important;
}
.navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color:#fff !important;
}
#navigation.affix .navbar-toggle .icon-bar{
	background-color:#222 !important;
}	
.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggle .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
/*Social Icons On Headers*/
ul.top-right {
  float: right;
  width: auto;
  margin: 34px 0 34px 10px;
  position:relative;
  z-index:1000;
}
#navigation.affix ul.top-right{
	margin:17px 0 17px 10px;
}
ul.top-right li{
	display:inline-block;
	margin-left:2px;
}
ul.top-right li a {
  display: block;
  font-size:13px;
  -webkit-border-radius:50%;
  border-radius:50%;
  height:26px;
  width:26px;
  text-align: center;
  line-height:26px;
  color:#075da6;
}
#navigation.affix  ul.top-right li a {
  color: #222;
}
#navigation.affix  ul.top-right li a:hover{
	color:#075da6;
}
ul.top-right li a:hover{
	background:#075da6;
}
ul.top-right li a:hover.facebook{
	  color:#3b5998;
}
ul.top-right li a:hover.twitter{
	color:#55acee;
}
ul.top-right li a:hover.instagram{
	color:#e95950;
}

#navigation.affix ul.top-right li a:hover.facebook{
	  background:#3b5998;
}
#navigation.affix ul.top-right li a:hover.twitter{
	background:#55acee;
}
#navigation.affix ul.top-right li a:hover.instagram{
	background:#e95950;
}


/* ------------- Push Menu ------------ */
#main-navigation.noborder {
  box-shadow: 0 0;
}	
.main-button {
  height: auto;
  position: fixed;
  width:auto;
  z-index: 999;
  top: 31px;
}
.main-button.right{
	right: 15px;
}
.main-button.left{
	left: 15px;
}
.main-button.left > button.menu-active{
	left:250px;
}
.main-button > button {
  background-color:#fff;
  border:none;
  padding:5px;
  -webkit-border-radius:2px;
  -ms--border-radius:2px;
  border-radius:2px;
}
.main-button > button:hover span:first-child,
.main-button > button.menu-active span:first-child{
  transform: translateY(6px) rotate(-45deg);
}

.main-button > button:hover span:nth-child(2),
.main-button > button.menu-active span:nth-child(2){
  opacity: 0;
  transform: rotate(-45deg);
}
.main-button > button:hover span:last-child,
.main-button > button.menu-active span:last-child{
  transform: translateY(-6px) rotate(-135deg);
}
.main-button > button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width:20px;
}.main-button > button span:nth-child(2){
  margin: 3px 0;
}
.navbar-brand {
  display: inline-block;
}
.cbp-spmenu {
    background:#fff;
    position: fixed;
	 box-shadow:0px 0px 8px 1px rgba(0,0,0,0.176);
}
.push_nav_brand{
	margin:30px 0 30px 15px;
	display: inline-block;
	width:110px;
}
.logo-space{ padding:32px 0;}
.push_nav li{
	position:relative;
	overflow: hidden;
}
.push_nav li a{
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size:13px;
  font-weight:600;
  display:block;
  padding:15px;
  position:relative;
  text-transform: capitalize;
  letter-spacing:1px; 
  font-family: "raleway";
}
.push_nav li a:hover, .push_nav li.active a, .push_nav .active a:hover, .push_nav li.active a:focus{
	color:#07AAA5;
}	
/* ------------- Push Menu ------------ */



/* Index5 Navigation */
.index5 .affix-top{
	top: 0;
    z-index: 999;
    width: 100%;
	background-color: #fff;
    position: fixed;
    -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
	padding:0px;
	}

.index5 .affix-top a{
	color:#000!important;
	}

.index5 .affix-top .active a{
	color:#07AAA5!important;
	}		
.index5 .affix-top .navbar-toggle .icon-bar {
    background-color: #222 !important;
}

 




/* ------------ Main Banner ------------ */
#main-slider { color:#065da6;}
.tp-banner h2{
	font-size:54px;
}
.tp-banner p{
	font-size:25px;
}
.tp-banner p , #main-slider .tp-caption a{
	color:#004177;
}
#main-slider h2.tp-caption > span{
	display:block;
}
#main-slider .tp-caption a{
	margin:5px;
}
.tp-bullets{ display:none;} 
.tp-caption{ padding:0 15px !important;}


.layer-content p{
	color:#000;
	font-weight:400;
}

.layer-content h2{
	color:#000;
	font-weight:600;
}

.layer-content h2 span{
	color:#07AAA5;
	font-weight:600;
	display:inline-block!important;
}

.layer-content h2 span.green-text{
	color:#82b440;
}









/* ------------ Main Banner ------------ */



/* ------------ Banner With Text Rotator ------------ */
.text-rotator{
	background:url("../images/banner_text.jpg");
	padding-top:150px;
	background-size:cover;
	background-attachment:fixed;
	background-position:center center;
	width:100%;
}
.text-rotator #paralax-slider{
	padding:15% 0;
}
#paralax-slider .item-content p{
	font-size:20px;
}
#paralax-slider .item-content p ,#paralax-slider .item-content h2{
		color:#fff;
}
#paralax-slider .item-content h2{
	font-size:58px;
	margin-bottom:25px;
	font-weight:100;
}

#paralax-slider .owl-controls {
  margin-top:5%;
}
#paralax-slider .owl-controls .owl-page span{
	background: #fff; 
	text-align: center;
	height:12px;
	width:12px;
	border-radius:50%;
	opacity: 1;
}
#paralax-slider .owl-controls .owl-page span:hover,
#paralax-slider .owl-controls .active span{
    background:#6BB156;
}

ul.navbar-nav ul.dropdown-menu{
	border: none;
	left: 0;
	right: auto;
}
.navbar-default .navbar-nav li ul.dropdown-menu a{
	border: none !important;
	padding: 7px 20px;
	color: #000;
	font-size: 14px;
}

/* ------------ What We Offer ------------ */
#about{}	
#about .canvas-box{
	cursor: pointer;
}
#about .canvas-box span{
	display: inline-block;
	margin-bottom:15px;
	padding:5px;
}
#about .canvas-box span i{
  display: inline-block;
  font-size:50px;
}
.color1{ color:#07AAA5;}
.color2{ color:#99D8CC;}	
.color3{ color:#EC768C;}	
.color4{ color:#C183D6;}	
.color5{ color:#31AAE1;}
.color6{ color:#82B440;}			
#about .canvas-box:hover span i,
.counters-item:hover i,
.we-do .do-wrap:hover i{
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
}
#about .canvas-box:hover h4.color1{
	color:#07AAA5;
}
#about .canvas-box:hover h4.color2{
	color:#99D8CC;
}
#about .canvas-box:hover h4.color3{
	color:#EC768C;
}
#about .canvas-box:hover h4.color4{
	color:#C183D6;
}
#about .canvas-box:hover h4.color5{
	color:#31AAE1;
}
#about .canvas-box:hover h4.color6{
	color:#82B440;
}	
#about .canvas-box h4{
	margin-bottom:15px;
	color:#000;
}
/* ------------ What We Offer ------------ */



/* ------------ Paralax background ------------ */
#bg-paralax {
  background:url("../images/paralax-index1.jpg") no-repeat;
  color: #fff;
  padding:10% 0;
}
#bg-paralax , #testinomial{
  background-size:cover;
  background-position:center center;
  background-attachment:fixed;
  width:100%;
}

#bg-paralax p{
	margin-bottom:25px;
	color: #fff;
}
#bg-paralax h2{
	font-size:48px;
}
/* ------------ Paralax background ------------ */



/*  ------------ Counters Fact Info  ------------ */
#facts{}
#facts .counters-item{
	padding:26% 10%;
	font-weight:bold;
	vertical-align:middle;
	color:#fff;
	cursor:pointer;
}
#facts .counters-item h2{
	font-family: "Open Sans", sans-serif;
}	

.counters-item i {
  font-size:50px;
  display: block;
  margin-bottom:15px;
}
.counters-item p{
	color:#fff;
	text-transform: capitalize;
	font-weight:bold;
}
/*  ------------ Counters Fact Info  ------------ */




/*  ------------ Responsive Secvtion With Side Image  ------------ */
#responsive .responsive-pic{}
#responsive .responsive-pic > .col-md-6 > img{ margin-top:-42px;}
#responsive .responsive-pic > .col-md-6, #responsive .responsive-pic > .col-sm-6{
	padding-left:0;
}

#responsive .r-test h3 , #responsive .r-test h4{
	color:#222222;
}

#responsive .r-test h4{
	margin-top:40px;
	margin-bottom:20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left:10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom:15px;
}

.r-test ul.r-feature li:before{
  content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.r-test .screens{
	margin-top:30px;
}

.r-test .screens i{
	display:inline-block;
	margin:0 3px;
}

.r-test .screens i:first-child{
	font-size:40px;
}

.r-test .screens i:nth-child(2){ font-size:30px; }

.r-test .screens i:last-child{ font-size:25px; }
/*  ------------ Responsive Secvtion With Side Image  ------------ */




/*  ------------ experties  ------------ */
.circliful {
  position: relative;
  float:left;
  margin-left:35px;
  margin-bottom:35px;
}

.circliful:first-child{
	margin-left:0;
}

.circle-text {
  background-color:#eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius:100%;
}

.circliful p{
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2{
	width:20%;
}

.circle-info, .circle-info-half {
	color: #999;
}

.circliful .fa {
	margin: -10px 3px 0 3px;
	position: relative;
	bottom: 4px;
}
/*  ------------ experties  ------------ */




/*  ------------ What We Do ------------ */
.we-do .do-wrap{
	background:#fff;
	-webkit-box-shadow: 0 1px 1px 0 #ddd;
	-ms-box-shadow: 0 1px 1px 0 #ddd;
	box-shadow: 0 1px 1px 0 #ddd;
}
	
.we-do .do-wrap > .top{
	width:100%;
	height:72px;
	display:block;
}
.we-do .do-wrap span{
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}
.we-do .do-wrap span i{
	color: #fff;
	font-size:50px;
	line-height: 99px;
	display:block;
}
.we-do .do-wrap h4{
	margin-bottom:15px;
}		
.we-do .do-wrap p,
.white-box p{
	margin:0 15px;
}
.we-do .do-wrap a{
	margin:35px 0;
	text-decoration:none;
	position:relative;
}
.we-do .do-wrap a:before,
.thinkers .thinker-wrap ul.social-contact li a:before,
.index_2#publication .wrap-pulication a:before{
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top:100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
	
}
.we-do .do-wrap a:hover::before, .we-do .do-wrap a:focus::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px);
	 -ms-transform:translateY(0px);
}
.we-do .do-wrap a.green-text:hover::before, .we-do .do-wrap a.green-text:focus::before{
	background:#74c8b8;
}
.we-do .do-wrap a.green-text:hover, .we-do .do-wrap a.green-text:focus{
	color:#74c8b8;
}
.we-do .do-wrap a.pink-text:hover::before, .we-do .do-wrap a.pink-text:focus::before{
	background:#ec768c;
}
.we-do .do-wrap a.pink-text:hover, .we-do .do-wrap a.pink-text:focus{
	color:#ec768c;
}
.we-do .do-wrap a.purple-text:hover::before, .we-do .do-wrap a.purple-text:focus::before{
	background:#c183d6;
}
.we-do .do-wrap a.purple-text:hover, .we-do .do-wrap a.purple-text:focus{
	color:#c183d6;
}
.we-do .do-wrap a.blue-text:hover::before, .we-do .do-wrap a.blue-text:focus::before{
	background:#31aae1;
}
.we-do .do-wrap a.blue-text:hover, .we-do .do-wrap a.blue-text:focus{
	color:#31aae1;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#82b440;
	
}	

/* ------------ What We Do ------------ */




/* ------------  Our Creative Thinkers ------------  */
.thinkers .thinker-wrap img, #publication-slider .item .image img{
	width:100%;
	-moz-transition:all .2s linear;
	-ms-transition:all .2s linear;
	-o-transition:all .2s linear;
	-webkit-transition:all .2s linear;
	transition:all .2s linear;
}
.thinker-wrap p{
	margin:0 10px;
}
.thinker-image{
	width:100%;
	overflow:hidden;
	position:relative;
}
.thinker-image .overlay{
	background:rgba(7,170,165,.75);
	position:absolute;
	width:100%;
	bottom:0;
	top: auto;
	opacity:0;
	filter: alpha(opacity=0);
	left:0;
	right:0;
	cursor:pointer;
   padding:0;
	height:80px;
	-moz-transform:translateY(100%);
	-ms-transform:translateY(100%);
	-webkit-transform:translateY(100%);
	transform:translateY(100%);
}
.thinker-image .overlay.pink{
	background:rgba(236,118,140,.75);
}
.thinker-image .overlay.green{
	background:rgba(130,180,64,.75);
}	
.thinker-image:hover .overlay{
	opacity:1;
	filter: alpha(opacity=100);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.thinker-image .overlay ul.social-link li a{
	border: 1px solid #fff;
}
.thinker-image .overlay ul.social-link li a > i{
	color: #fff;
}
.thinker-image .overlay ul.social-link li a:hover > i{
	color: #121416;
}
.thinker-image .overlay ul.social-link li a:hover span{
	background: #fff;
	border:1px solid #fff;
}
.thinker-wrap:hover .thinker-image img,  #publication-slider .item:hover .image img
{
	transform:scale(1.05);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}
.thinkers .thinker-wrap h3{  
	margin-top:20px;
	font-size:20px;
}
.thinkers .thinker-wrap small{
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

.thinkers .thinker-wrap ul.social-contact li{
	display:inline-block;
}

.thinkers .thinker-wrap ul.social-contact li a{
	font-weight:bolder;
	color:#222222;
	margin:0 8px;
	text-transform:uppercase;
	position:relative;
	padding-bottom:3px;
}
.thinkers .thinker-wrap ul.social-contact li a:hover::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px)
	
}
.thinkers .thinker-wrap ul.social-contact li a:hover.facebook{
	color:#3b5998 !important;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before{
	background: #3b5998;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter{
	color:#1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before{
	background: #1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden{
	color:#0077B5;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before{
	background: #0077B5;
}
/* ------------  Our Creative Thinkers ------------  */




/* ------------  Gallery Filter ------------  */
#project{
	padding-top:5%;
	background:#f8f8f8;
}
.work-filter {
	margin-bottom:50px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: #222222;
  display: block;
  font-size:15px;
  padding:6px 10px;
  text-transform: capitalize;
  border-bottom:1px solid #909090;
  border-top:1px solid #909090;
  border-left:1px solid transparent;
  border-right:1px solid transparent;
  cursor: pointer;
}
.work-filter ul li a:hover,
.work-filter ul li a.active:hover{
  background-color:#07AAA5;
  border:1px solid #07AAA5;
  color: #fff;
}
.work-filter ul li a.active {
  background-color: #82b440;
  border:1px solid #82b440;
  color: #fff;
}

.mix {
    display: none;
}

.index_2 .work-item {
    width:20%;
}

.work-item {
	height:auto;
	width:auto;
	float:left;
   position: relative;
	overflow:hidden;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
  width:100%;
}
.item-containe > img{
  -webkit-transition: all 0.7s ease 0s;
   -moz-transition:all 0.7s ease 0s;
	-ms-transition:all 0.7s ease 0s;
   -o-transition:all 0.7s ease 0s;
	transition:all 0.7s ease 0s;
}
.item-container:hover  img{
	transform:scale(1.2);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}

.overlay {
	background-color:rgba(255,255,255,.8);
	position: absolute;
	left:10px;
	top:10px;
	bottom:10px;
	right:10px;
	width:auto;
	height:inherit;
	color: #222222;
	opacity: 0;
	filter: alpha(opacity=0);
	padding:2%;
	z-index:1;
}

.overlay-inner{
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
.work-item:hover .line{
	width:40%;
}
.overlay h4.color{ color:#07AAA5;}
.overlay h4.base{ color:#82A75E;}

.work-item .overlay p{
	font-size:14px;
}
.overlay .line{
	width:0%;
}
.overlay .line ,
.product-content .line{
	height:1px;
	margin:15px auto;
	background-color:#000;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;					 
}
/* ------------  Gallery Filter ------------  */




/* ---------- Pricing Tables ---------- */
.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.pricing_item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}
.pricing_list {
	text-align: left;
}
.pricing_tenzin .pricing_item {
	margin: 1em;
	padding: 2em 1em;
	text-align: left;
	color: #262b38;
	background: #EEF0F3;
	border-top: 3px solid;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	margin-top:0;
}
.pricing_tenzin .pricing_item.pink{
	border-color:#EC768C;
}	
.pricing_tenzin .pricing_item.blue{
	border-color:#07AAA5;
}
.pricing_tenzin .pricing_item.pink .pricing_action{
	background:#EC768C;
}
.pricing_tenzin .pricing_item.blue .pricing_action{
	background:#07AAA5;
}
.pricing_tenzin .pricing_item.active{
	border-color: #82B440;
}
/*.pricing_tenzin .pricing_item.active:hover{
	border-color: #07AAA5;
} */
.pricing_tenzin .pricing_title {
	font-size: 1em;
	margin: 0 0 1em;
}
.pricing_item:hover .pricing_action{
	border:1px solid transparent;
	background:#82b440 !important;
}
.pricing_tenzin .pricing_price {
	font-size: 2em;
	padding: 0.5em 0 0.75em;
	border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
	font-size: 0.5em;
	vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
	font-weight: bold;
	padding: 0 0 0.5em;
	color: #9CA0A9;
	border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
	font-size:14px;
	padding:25px 0;	
	color: #8b909d;
}
.pricing_tenzin .pricing_list li{
	margin-bottom:8px;
}
.pricing_tenzin .pricing_list li:before{
	content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.pricing_tenzin .pricing_action {
	font-weight: bold;
	margin-top: auto;
	padding: 1em 2em;
	color: #fff;	
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
	border:1px solid transparent;

 }
.pricing_item.active .pricing_action{
	border:1px solid transparent;
	background:#82b440;
}
.pricing_item.active:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}	
/* ---------- Pricing Tables ---------- */



/* ------------ Testinomials ------------ */
#testinomial{
	background:url(../images/bg-testinomial.jpg) no-repeat;
	color:#fff;
}
#testinomial h2{ color:#82B440; }
#testinomial p{ color:#fff; }
#testinomial-slider .item{
  display: block;
  width: 100%;
  height: auto;
  color:#fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5{ 
	font-size:14px; 
	text-transform:uppercase; 
	margin-top:40px; 
	margin-bottom:15px;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next{
	border:1px solid #fff;
	color:#FFF;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next ,
#publication-slider .owl-prev ,
#publication-slider .owl-next {
	top:40%;
	position:absolute;
	background:transparent;
	height:38px;
	width:38px;
	-ms-border-radius:38px;
	-webkit-border-radius:38px;
	border-radius:38px;
	font-size:30px;
	line-height:20px;
	opacity:1;
	filter: alpha(opacity=100);
}

#testinomial-slider .owl-prev:hover,
#testinomial-slider .owl-next:hover ,
#publication-slider .owl-prev:hover ,
#publication-slider .owl-next:hover{
	border:1px solid #82b440;
	background-color:#82b440;
	color:#fff;
	-webkit-transition: background 0.3s linear 0.1s;
	-ms-transition: background 0.3s linear 0.1s;
	transition: background 0.3s linear 0.1s;
}
#testinomial-slider .owl-prev{
	left:0;
}
#testinomial-slider .owl-next{
	right:0;
}
/* ------------ Testinomials ------------ */



/* ------------  Publications ------------ */
#publication{}
#publication-slider .item{
  margin:0 15px;
}
#publication-slider .item:hover{
	cursor:pointer;
}	
#publication-slider .item .image{
	overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item > img{
  display: block;
  width: 100%;
  height: auto;
}
#publication-slider .item h5{
	font-size:12px;
	color:#727272;
	margin-top:25px;
}
#publication-slider .item h5 , #publication-slider .item h4{
	margin-bottom:10px;
}
#publication-slider .item h4{
	font-size:20px;
	color:#222222;
}
#publication-slider .item  a.name{
	color:#222222;
}

#publication-slider .item  a.name ,
#publication-slider .item  a.comment{
	font-size:15px !important;
	margin-bottom:10px;
	display:inline-block;
	text-transform:none;
}
#publication-slider .item  a.comment{
	color:#82b440;
}
#publication-slider .item  a.comment:before{
	content:'';
	background:transparent;
}
#publication-slider .item p > a{
	font-size:15px;
}
#publication-slider .item > a{
	color:#000;
	position:relative;
	font-size:13px;
	font-weight:bold;
	text-transform: uppercase;
}
#publication-slider .item > a:hover{
	color:#82b440;
}
#publication-slider .owl-prev ,
#publication-slider .owl-next{
	border:1px solid #7a7a7a;
	color:#7a7a7a;
}
#publication-slider .owl-prev{
	left:-5%;
}

#publication-slider .owl-next{
	right:-5%;
}
/* ------------  Publications ------------ */



/* ------------ Slogan Text with Button ------------ */
#slogan{
	background:#82b440;
	padding:25px 0;
	color:#fff;
	margin-top:-2px;
	width:100%;
}
#slogan a{
  padding: 15px 35px;
  border:1px solid #fff;
  color:#000;
  background:#fff;
  font-weight:bold;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}
/* ------------ Slogan Text with Button ------------ */



/* ------------ Contact Us ------------ */
#contact .center h2,
#contact .center .margen{
	margin-bottom:45px;
}
#contact .center a{
	color:#82b440;
}

#contact .center ul.social-link{
	margin-top:45px;
}


#contact .form-inline{
	margin-top:45px;
}
.form-control:focus {
  border-color: #82b440 !important;
  box-shadow:none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-6,
#contact .form-inline .col-md-12{
	padding-left:5px;
	padding-right:5px;
}


#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control{
	height:45px;
}

#contact .form-inline .form-control,
#contact .form-inline textarea{
	margin-bottom:10px;
}

#contact .form-inline textarea{
	margin-top:0;
	min-height:210px;
}
#contact .form-inline .btn-black{
	width:100%;
	color:#fff;
	
}	
#contact .form-inline input[type="submit"]{
	width:100%;
	height:100%;
	background-color:transparent;
}
/* ------------ Contact Us ------------ */




/* ---------- Footer  ---------- */
footer{
	background:#121416;
	padding:35px 0;
	position:relative;
}
footer p{
	margin:0;
	color:#a6a6a6;
	font-size:14px;
}
footer .breadcrumb{
	background-color:transparent;
	padding:0;
}

footer .breadcrumb li a {
  text-shadow: none;
  color:#fff;
	font-size:14px;
	position:relative;
}
footer .breadcrumb li a:hover, footer .breadcrumb li a:focus{
  color: #82b440;
}

.go-top {
  bottom:20px;
  position: fixed;
  font-size:20px;
  right:25px;
  z-index:800;
  background:#82b440;
  color:#fff;
  border-radius:5px;
  height:40px;
  width:40px;
  text-align:center;
  line-height:40px;
  opacity:0;
}
.go-top:hover, .go-top:focus{
	background:#07AAA5;
	color:#fff;
}
.go-top.show {
    opacity: 1;
}
/* ---------- Footer  ---------- */





 ul.social-link li a{
	display: inline-block;
	margin: 0 2px;
}

 ul.social-link li{
	margin-top:10px;
	display:inline-block;
}

 ul.social-link li a {
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position:relative;
  color: #000 !important;
}

 ul.social-link li a span{
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 0;
}

 ul.social-link li a:hover span {
  background: #82b440;
  border-radius:44px;
  height:44px;
  width:44px;
  border: 1px solid #82b440;
  height:44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}
 ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

 ul.social-link li a :hover,  ul.social-link li a:focus{
	color:#fff;
	 border: none;
}



/* ========================= Alert Classes ==================== */ 

.alert-success {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
	}
	
.alert-danger {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
}	






 



/*=========================================*/
          /* Blog WIth All Versions*/
/*=========================================*/
#area-main{}
.blog-wrap{
	background-color:#fff;
	width:100%;
	position:relative;
	overflow:hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding:6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding:30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3.catItemView{
	border-bottom: 1px solid #d1d2d2;
	padding-bottom:70px;
	margin-bottom:70px;
}

.blog-item-v3 > img{
	margin-bottom:35px;
}

.blog-item-v3 .blog-content {
	padding:0;
}

.no-margin{ margin:0; border:none;}
#area-main h3{
	color:#1b1d1f;
}

#area-main p{
	color:#1b1d1f;
}

#area-main a.readmore{
	color:#fff;
	padding:10px 35px;
	background:#1b1d1f;
	border:1px solid transparent;
	display:inline-block;
	text-decoration:none;
	margin-top:20px;
}

#area-main a.readmore:hover, #area-main a.readmore:focus{
	border:1px solid #82b440;
}

#area-main ul.blog-author{
	margin:20px 0 25px;
}

#area-main ul.blog-author li{
	display:inline-block;
}

#area-main ul.blog-author li a{
	color:#696969;
	font-size:14px;
	margin-right:15px;
}

#area-main ul.blog-author li a .fa{
	margin-right:5px;
}

#area-main ul.blog-author li a:hover, #area-main ul.blog-author li a:focus{
	color:#82b440;
}

.morepost-wrap{
	margin-top:75px;
	border-top:1px solid #d1d2d2;
}

.morepost-wrap2{
	border-top:1px solid #d1d2d2;
	border-bottom:1px solid #d1d2d2;
	padding-bottom:25px;
}

.morepost-wrap a:hover ,
.morepost-wrap2 a:hover{
	color:#82b440;
}

.morepost-wrap .morepost ,
.morepost-wrap2 .morepost{ 
  font-size:16px;
  color:#696969;
  margin-top:25px;
  display:inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap .morepost .fa-long-arrow-left{
	right:0;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	right:100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-left , 
.morepost-wrap .morepost .fa-long-arrow-right{
	color: transparent;
	pointer-events: none;
   position: absolute;
   text-shadow: 0 0 transparent;
   top:25%;
   transform: translateX(-50%);
   transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity:0 !important;
	filter: alpha(opacity=0);
}

.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-right{
  left:0%;
  margin-left:5px;
}

.morepost-wrap2 .morepost:hover  .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	left:110%;
}

.blog-content-pic{}
.blog-content-pic img{ width:100%;}
.blog-item .blog-content{
	padding:0;
	margin:35px 0;
}

.blog-item .blog-content p{
	margin-bottom:25px;
}

.blog-item blockquote{
	color:#82b440;
}

.blog-item .post-tag{
	border:1px solid #d9d9d9;
	padding:5px;
	margin-bottom:70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a{
	 display:block;
}

#area-main .tag-cloud li a , .blog-reply a.btn-rep{
    background:#efefef;
    color: #1b1d1f;
	 font-size:12px;
    padding: 8px 15px;
	 text-transform:uppercase;
}
#area-main .tag-cloud li a:hover , #area-main .tag-cloud li a:focus ,
.blog-reply a.btn-rep:hover,.blog-reply a.btn-rep:focus{
    background:#82b440;
    color: #fff;
	 -webkit-transition: all 500ms linear;
   -moz-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
   -o-transition:all 500ms linear;
	transition:all 500ms linear;
}

.blog-item ul.social-link li{ margin:0; }
.blog-item ul.social-link li a > i{
	color: #1b1d1f;
}
.blog-item ul.social-link li a > i:hover{
	color: #fff;
}
.blog-reply{
	padding:10px;
	border:1px solid #f3f3f3;
	position:relative;
	margin:20px 0;
}
.blog-reply h4{
	color:#1b1d1f;
	margin-bottom:8px;
	text-transform:capitalize;
}
.blog-reply a.btn-rep{
	position:absolute;
	top:0;
	right:0;
}

.blog-item .post-comment h3{
	margin-bottom:35px;
	margin-top:70px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control{
	height:50px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control,
.blog-item .post-comment form textarea,
.contact form textarea,
.index_3 .form-inline .form-control,
.index_3 .form-inline textarea{
  padding:15px;
  font-size:14px;
  color:#4c4c4c;
  border:1px solid #d0d0d0;
  width:100%;
  border-radius:0;
}

.blog-item .post-comment form textarea, 
.contact form textarea{
	margin:30px 0;
	min-height:210px;
}

.blog-item .post-comment form input[type="submit"] , 
.contact form input[type="submit"]{
	background:#82b440;
	border:1px solid transparent;
	font-weight:bold;
	color:#fff;
	height:50px;
	width:185px;
	position:relative;
}
.blog-item .post-comment form input[type="submit"]:hover , 
.contact form input[type="submit"]:hover{
	background:#1b1d1f;
}
 
.widget{
	margin-bottom:40px;
	color:#1b1d1f;
}

.widget h4 , .widget img{
	margin-bottom:25px;
}
.widget > img{
	width:100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size:14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor:pointer;
}

ul.category li{
	margin-top:15px;
	display:block;
}

ul.category li a{
	color:#1b1d1f;
	font-size:16px;
	border-bottom:1px solid #d9d9d9;
	padding-bottom:15px;
	display:block;
	text-transform:capitalize !important;
}
ul.category li a:hover , ul.category li a:focus{
	color:#82b440;
}

ul.category li a .date{
	color:#82b440;
	font-size:12px;
	display:none;
}

/*=========================================*/
          /* Blog Ends */
/*=========================================*/




          /* Inner Pages Top*/
.innerpage-banner {
	background: no-repeat center center / cover;
	padding-top: 200px;
	max-height:440px;
	border-bottom: 5px solid rgba(0,0,0,0.9);
	color: #ffffff;
	
}
.tagline {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}




@media screen and (max-width: 1299px){
    .navbar-default .navbar-nav > li{
		  margin: 0 20px;
	  }
	.info-section .bg{
		padding-top:100%;
	}
	.blog-wrap .blog-content {
	  padding: 3.5em 0;
	}
	
	 .layer-content-responsive {
		max-height:400px !important;
		overflow:hidden;
	}
}


@media screen and (max-width: 1024px){
	
	h2{ font-size:36px; }
	h3{ font-size:20px; }
	h4{ font-size:16px; }
	
}

@media screen and (max-width: 1000px){
	 
.navbar-default .navbar-nav > li {
	margin: 0 6px;
}
.navbar-default .navbar-nav > li > a {
  letter-spacing: 0;
}
.text-rotator {
  padding-top:150px;
}
#paralax-slider .item-content p{
  font-size:16px;
}
#paralax-slider .item-content h2 {
  font-size:46px;
  margin-bottom:10px;
}
.r-test ul.r-feature li {
font-size: 12px;
}
.we-do .do-wrap, .white-box {
margin-bottom:30px;
}
.pricing_item {
flex: 0 1 320px;
}
#bg-paralax , #testinomial, .text-rotator{
  background-position:center center !important;
}	
#slogan{
text-align:center;
}
#slogan p{s
font-size:16px;
}	
#slogan a.pull-right {
float: none !important;
margin-top: 30px;

}


		
}



@media screen and (max-width: 767px){

  h2{ font-size:30px; }
  #main-navigation{ background-color: #1b1d1f; }
  
  .navbar-brand, #navigation.affix .navbar-brand{ display:inline-block;  padding: 10px 0;}
  .navbar-default .navbar-nav > li > a, #navigation.affix  .navbar-default .navbar-nav > li > a {
	  padding: 10px 0;
	}
   ul.top-right, #navigation.affix ul.top-right{
		margin:0;
		position:relative;
		right:37px;
		margin-top:-2px;
	}
	ul.top-right, #navigation.affix ul.top-right{
		top:14px;
	}
	.navbar-default.social .navbar-toggle {
     right: -100px !important;
  }
  .main-button { top: 10px;}
	  .push_nav_brand {
	  margin: 12px 0 30px 15px;
	  width:90;
  }
  .push_nav li a {
  font-size:12px;
  padding: 8px 15px;
}
.text-rotator {
  padding-top:80px;
}
#paralax-slider .item-content p{
  font-size:14px;
}
#paralax-slider .item-content h2 {
  font-size: 26px;
  margin-bottom:10px;
}
	#bg-paralax h1, #bg-paralax h2{
		font-size:30px;
	}
	.we-do .do-wrap,
	.thinkers .thinker-wrap{
		margin:30px 0;
	}
	#thinkers{
		padding-bottom:45px;
	}	
	.thinker-image .overlay {
	  height: 60px;
	}
	#project{ padding-top:0;}
	#responsive{
	}
	#responsive .responsive-pic > .col-md-6 > img{
	  margin-bottom: 25px;
	}
	.number-counters > .col-xs-12{
		width:50%;
	}	
	.circliful {
	  margin-bottom: 50px;
	}
	.circliful:first-child {
	  margin-left:25px;
	}
	#testinomial-slider .item p{
		font-size:14px;
		margin:0;
	}
	#testinomial-slider .owl-prev, #testinomial-slider .owl-next{
		display:none;
	}
	#publication-slider .owl-prev{
		left:10px;
	}
	#publication-slider .owl-next{
		right:10px;
	}
	#publication-slider .owl-prev, #publication-slider .owl-next{
		background:#fff;
		top:19%;
		
	}
	
	
	.circliful {
	  margin-bottom: 50px;
	  margin-left:0;
	  float:none;
	  display:inline-block
	  
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	
	
		
}


@media screen and (min-width: 641px) and (max-width: 767px) { 

      .thinkers .col-sm-4{
		  width: 48%;
		  display:inline-block;
	  } 
	  
	 
	  
	  
	  
	  
	  
   
}




@media screen and (max-width: 480px) {
	.navbar-brand img{
		width:75%;
	}
	ul.top-right{
		top:14px;
	}
	.circliful {
	  margin-bottom: 50px;
	  position:relative;
	  left:30%;
	  margin-left:0;
	  float:none;
	  -moz-transform:translate(-50%,0);
	 -ms-transform:translate(-50%,0);
	 -webkit-transform:translate(-50%,0);
	 -o-transform:translate(-50%,0);
	  transform:translate(-50%,0);
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	.layer-content-responsive {
		max-height:240px !important;
		overflow:hidden;
	}
}



@media screen and (max-width: 479px){
	
	#main-navigation{
		top:0;
	}
	
}

.morepost-wrap ul.pagination-list {
    margin: 0;
    padding: 0;
    width: 100%;
}
.morepost-wrap ul.pagination-list li {
    display: none;
}
.morepost-wrap ul.pagination-list li.morepost {
    display: block;
}
.morepost-wrap .pagination > li > a {
    border: medium none;
}
.morepost-wrap .pagination > li > a:focus, .morepost-wrap .pagination > li > a:hover {
    background-color: transparent;
    color: #07aaa5;
}
#itemListLeading > .itemContainer:last-child .blog-item-v3{
	padding: 0;
	border: none;
}
.pagination-list .morepost-wrap{
	border-bottom: 1px solid #d1d2d2;
	border-top: 0;
	margin-top: -70px;
	padding-bottom: 20px;
}
body.com_k2 #area-main.padding{
	padding-bottom: 70px;
}
.blog-item div.itemComments {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    padding: 0;
}
body.com_k2 div.itemBackToTop{
	display: none;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton{
 	background: #82b440 none repeat scroll 0 0;
    border: 1px solid transparent;
    color: #fff;
    font-weight: bold;
    height: 50px;
    position: relative;
    width: 185px;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton:hover{
	background: #000;
}
body.com_k2 div.itemCommentsForm form span#formLog{
	margin-left: 0;
	margin-right: 0;
}
.blog-reply.media{
	margin-top: 20px;
}
#about.section-padding.btwe-offer{
	padding-top: 130px!important;
}PK!B�Nr

#language/en-GB/en-GB.tpl_bizone.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

TPL_BIZONE_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Nayax is the Joomla 3 site template based on Bootstrap from Twitter and the launch of the Joomla User Interface library (JUI)."

TPL_BIZONE_BACKGROUND_COLOR_DESC="Choose a background colour for static layouts. If left blank the Default (#F4F6F7) is used."
TPL_BIZONE_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_BIZONE_BACKTOTOP="Back to Top"
TPL_BIZONE_COLOR_DESC="Choose an overall colour for the site template. If left blank the Default (#0088CC) is used."
TPL_BIZONE_COLOR_LABEL="Template Colour"
TPL_BIZONE_FLUID="Fluid"
TPL_BIZONE_FLUID_LABEL="Fluid Layout"
TPL_BIZONE_FLUID_DESC="Use Bootstrap's Fluid or Static Container (both are Responsive)"
TPL_BIZONE_FONT_LABEL="Google Font for Headings"
TPL_BIZONE_FONT_DESC="Load a Google font for the headings (H1, H2, H3, etc.)"
TPL_BIZONE_FONT_NAME_LABEL="Google Font Name"
TPL_BIZONE_FONT_NAME_DESC="Example: Open+Sans or Source+Sans+Pro"
TPL_BIZONE_LOGO_LABEL="Logo"
TPL_BIZONE_LOGO_DESC="Upload a custom logo for the site template."
TPL_BIZONE_STATIC="Static"

TPL_BIZONE_FAVICO_LABEL = "Custom Favico"
TPL_BIZONE_FAVICO_DESC = "Upload a custom favico for the site template"
TPL_BIZONE_APPLE_TOUCH_LABEL = "Apple Touch"
TPL_BIZONE_APPLE_TOUCH_DESC = "Upload a Apple Touch for the site template"
TPL_BIZONE_APPLE_TOUCH_57_LABEL = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_57_DESC = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_72_LABEL = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_72_DESC = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_114_LABEL = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_114_DESC = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_144_LABEL = "Apple Touch (144x144)"
TPL_BIZONE_APPLE_TOUCH_144_DESC = "Apple Touch (144x144)"
TPL_BIZONE_CSS_LABEL = "CSS"
TPL_BIZONE_CSS_DESC = "Custom CSS"
TPL_BIZONE_JS_LABEL = "Tracking Code(Google Analytics)"
TPL_BIZONE_JS_DESC = "Tracking Code(Google Analytics)"
TPL_BIZONE_BACKGROUND_IMAGE_LABEL="Background Image"
TPL_BIZONE_BACKGROUND_IMAGE_DESC="Choose a background Images for static layouts. If image too small, images will be repeat"
TPL_BIZONE_DIRECTION_LABEL = "Direction"
TPL_BIZONE_DIRECTION_DESC = "Direction"
TPL_BIZONE_DIRECTION_LTR = "LTR"
TPL_BIZONE_DIRECTION_RTL = "RTL"
K2_ALL_WORKS = "All"
TPL_BIZONE_VIEW_ALL = "View All"

COM_TEMPLATES_LAYOUT_FIELDSET_LABEL = "Layout"
TPL_BIZONE_404_PAGE_LABEL = "Choose Page 404"
TPL_BIZONE_404_PAGE_DESC = "Choose Page 404"

COM_TEMPLATES_OTHER_FIELDSET_LABEL = "Other"
TPL_BIZONE_LOADING_LABEL = "Loading Page"
TPL_BIZONE_LOADINGIMG_LABEL = "Image Loading"
TPL_BIZONE_LOADINGBG_LABEL = "Background Loading Color"
TPL_BIZONE_LOADINGBGIMG_LABEL = "Backround Loding Image"
TPL_BIZONE_STATE_CAPTCHA_LABEL = "Google Captcha Contact Form"
TPL_BIZONE_SITEKEY_LABEL = "SiteKey"
TPL_BIZONE_SECRET_LABEL = "Secret"

TPL_BIZONE_PREVIOUS = "Précédent"
TPL_BIZONE_NEXT = "Suivant"

COM_BLUE_PAGEBUILDER_NAME_MUST_NOT_BE_EMPTY_TEXT="le nom de doit pas être vide"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_EMAIL_TEXT="Merci d'indiquer une adresse mail valide"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_SUBJECT_TEXT = "Ce champs ne doit pas être vide"
COM_BLUE_PAGEBUILDER_MESSAGE_SHOULD_NOT_BE_EMPTY_TEXT="Vous devez taper un message"
COM_BLUE_PAGEBUILDER_CAPTCHA_NOT_VALIDATED = "Captcha Error"
COM_BLUE_PAGEBUILDER_YOUR_NAME_TEXT="Votre Nom:"
COM_BLUE_PAGEBUILDER_YOUR_PHONE_TEXT = "Numéro de Téléphone"
COM_BLUE_PAGEBUILDER_YOUR_COMPANY_TEXT = "Votre entreprise"
COM_BLUE_PAGEBUILDER_YOUR_WEBSITE_TEXT = "Votre site internet"
COM_BLUE_PAGEBUILDER_SUBJECT_TEXT = "Objet"
COM_BLUE_PAGEBUILDER_VALID_EMAIL_ID_TEXT="Votre Email"
COM_BLUE_PAGEBUILDER_YOUR_MESSAGE_TEXT= "Message..."
COM_BLUE_PAGEBUILDER_BTN_SUBMIT = "ENVOYER"PK!r]w>��'language/en-GB/en-GB.tpl_bizone.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

TPL_BIZONE_POSITION_BANNER="Banner"
TPL_BIZONE_POSITION_DEBUG="Debug"
TPL_BIZONE_POSITION_POSITION-0="Search"
TPL_BIZONE_POSITION_POSITION-10="Unused"
TPL_BIZONE_POSITION_POSITION-11="Unused"
TPL_BIZONE_POSITION_POSITION-12="Unused"
TPL_BIZONE_POSITION_POSITION-13="Unused"
TPL_BIZONE_POSITION_POSITION-14="Unused"
TPL_BIZONE_POSITION_POSITION-15="Unused"
TPL_BIZONE_POSITION_POSITION-1="Navigation"
TPL_BIZONE_POSITION_POSITION-2="Breadcrumbs"
TPL_BIZONE_POSITION_POSITION-3="Top center"
TPL_BIZONE_POSITION_POSITION-4="Unused"
TPL_BIZONE_POSITION_POSITION-5="Unused"
TPL_BIZONE_POSITION_POSITION-6="Unused"
TPL_BIZONE_POSITION_POSITION-7="Right"
TPL_BIZONE_POSITION_POSITION-8="Left"
TPL_BIZONE_POSITION_POSITION-9="Unused"
TPL_BIZONE_POSITION_FOOTER="Footer"
TPL_BIZONE_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Bizone is the Joomla 3 site template based on Bootstrap from Twitter and the launch of the Joomla User Interface library (JUI)."
PK!߄�B  language/en-GB/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!�VҀ��'language/en-GB/en-GB.tpl_bizone.ini_oldnu&1i�; Joomla! Project
; Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

TPL_BIZONE_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Nayax is the Joomla 3 site template based on Bootstrap from Twitter and the launch of the Joomla User Interface library (JUI)."

TPL_BIZONE_BACKGROUND_COLOR_DESC="Choose a background colour for static layouts. If left blank the Default (#F4F6F7) is used."
TPL_BIZONE_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_BIZONE_BACKTOTOP="Back to Top"
TPL_BIZONE_COLOR_DESC="Choose an overall colour for the site template. If left blank the Default (#0088CC) is used."
TPL_BIZONE_COLOR_LABEL="Template Colour"
TPL_BIZONE_FLUID="Fluid"
TPL_BIZONE_FLUID_LABEL="Fluid Layout"
TPL_BIZONE_FLUID_DESC="Use Bootstrap's Fluid or Static Container (both are Responsive)"
TPL_BIZONE_FONT_LABEL="Google Font for Headings"
TPL_BIZONE_FONT_DESC="Load a Google font for the headings (H1, H2, H3, etc.)"
TPL_BIZONE_FONT_NAME_LABEL="Google Font Name"
TPL_BIZONE_FONT_NAME_DESC="Example: Open+Sans or Source+Sans+Pro"
TPL_BIZONE_LOGO_LABEL="Logo"
TPL_BIZONE_LOGO_DESC="Upload a custom logo for the site template."
TPL_BIZONE_STATIC="Static"

TPL_BIZONE_FAVICO_LABEL = "Custom Favico"
TPL_BIZONE_FAVICO_DESC = "Upload a custom favico for the site template"
TPL_BIZONE_APPLE_TOUCH_LABEL = "Apple Touch"
TPL_BIZONE_APPLE_TOUCH_DESC = "Upload a Apple Touch for the site template"
TPL_BIZONE_APPLE_TOUCH_57_LABEL = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_57_DESC = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_72_LABEL = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_72_DESC = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_114_LABEL = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_114_DESC = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_144_LABEL = "Apple Touch (144x144)"
TPL_BIZONE_APPLE_TOUCH_144_DESC = "Apple Touch (144x144)"
TPL_BIZONE_CSS_LABEL = "CSS"
TPL_BIZONE_CSS_DESC = "Custom CSS"
TPL_BIZONE_JS_LABEL = "Tracking Code(Google Analytics)"
TPL_BIZONE_JS_DESC = "Tracking Code(Google Analytics)"
TPL_BIZONE_BACKGROUND_IMAGE_LABEL="Background Image"
TPL_BIZONE_BACKGROUND_IMAGE_DESC="Choose a background Images for static layouts. If image too small, images will be repeat"
TPL_BIZONE_DIRECTION_LABEL = "Direction"
TPL_BIZONE_DIRECTION_DESC = "Direction"
TPL_BIZONE_DIRECTION_LTR = "LTR"
TPL_BIZONE_DIRECTION_RTL = "RTL"
K2_ALL_WORKS = "All"
TPL_BIZONE_VIEW_ALL = "View All"

COM_TEMPLATES_LAYOUT_FIELDSET_LABEL = "Layout"
TPL_BIZONE_404_PAGE_LABEL = "Choose Page 404"
TPL_BIZONE_404_PAGE_DESC = "Choose Page 404"

COM_TEMPLATES_OTHER_FIELDSET_LABEL = "Other"
TPL_BIZONE_LOADING_LABEL = "Loading Page"
TPL_BIZONE_LOADINGIMG_LABEL = "Image Loading"
TPL_BIZONE_LOADINGBG_LABEL = "Background Loading Color"
TPL_BIZONE_LOADINGBGIMG_LABEL = "Backround Loding Image"
TPL_BIZONE_STATE_CAPTCHA_LABEL = "Google Captcha Contact Form"
TPL_BIZONE_SITEKEY_LABEL = "SiteKey"
TPL_BIZONE_SECRET_LABEL = "Secret"

TPL_BIZONE_PREVIOUS = "Previous"
TPL_BIZONE_NEXT = "Next"

COM_BLUE_PAGEBUILDER_NAME_MUST_NOT_BE_EMPTY_TEXT="Name must not be empty"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_EMAIL_TEXT="Please provide a valid email"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_SUBJECT_TEXT = "Subject must not be empty"
COM_BLUE_PAGEBUILDER_MESSAGE_SHOULD_NOT_BE_EMPTY_TEXT="Message should not be empty"
COM_BLUE_PAGEBUILDER_CAPTCHA_NOT_VALIDATED = "Captcha Error"
COM_BLUE_PAGEBUILDER_YOUR_NAME_TEXT="Your Name:"
COM_BLUE_PAGEBUILDER_YOUR_PHONE_TEXT = "Your Phone"
COM_BLUE_PAGEBUILDER_YOUR_COMPANY_TEXT = "Your Company"
COM_BLUE_PAGEBUILDER_YOUR_WEBSITE_TEXT = "Your Website"
COM_BLUE_PAGEBUILDER_SUBJECT_TEXT = "Your Subject"
COM_BLUE_PAGEBUILDER_VALID_EMAIL_ID_TEXT="Your Email"
COM_BLUE_PAGEBUILDER_YOUR_MESSAGE_TEXT= "Message..."
COM_BLUE_PAGEBUILDER_BTN_SUBMIT = "SEND MESSAGE"PK!߄�B  language/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!��`����template_thumbnail.pngnu&1i����JFIF��"ExifMM*��~http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        ">
	<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
		<rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3" xmpMM:DocumentID="xmp.did:B8E98C7E4A8B11E69D65B6804E2869D4" xmpMM:InstanceID="xmp.iid:B8E98C7D4A8B11E69D65B6804E2869D4" xmp:CreatorTool="Adobe Photoshop CS5 Windows">
			<xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B148EAAE8B4AE611A452C3CB758A5E71" stRef:documentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3"/>
		</rdf:Description>
	</rdf:RDF>
</x:xmpmeta>
<?xpacket end='w'?>��C		



	
��C��,N"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?򠸡��)�2i�Ϲ��wk��{�'�p�1mj�G[�fɸw<V47~Y�#Qz��)�IX��Z3\���ի��5���\�|@�n�JS��cU�Y�q���+��Lb��jq}�Rk:�bC�W�a%(���eM7tq�f�kS�Z�:���=Z�̓���3��k���M)ŧ�����2��Z5��כ�O��ZD�i�v�\�m�k�qJZ�^�Yn۪u]՛�]y�V�Gp���*��Ӏ��
MZ�1Ji�)��JT�P�<%5F�RPl�QL�~���$���-X�U�sY�!9�o�;��O�z�
^3���F�?3u�Y��o�3׍^饮�ֶ�nT\p1��hk2J�j��NkF�Hb*��k	�,uQ����i/;��ç���t�~�o��2�>Z�k✏��Ѝ$d��D/J��/ں+=,(�ZV�X�?hΚ�Q��xsʕN��>��̲�X�R�UF�<��Rf���^�����*÷5^u�UY�i������2i�=+���Y-������O��9���ҽ�j3f���"Hƥ�s�}h�U%�ٚ��,T����[�$b�p}n�GaR\���d#��+X�$e��V�E'ҭ<�ydn5�.�3�����b�7�19]SO{�5E<=�һ'��ҡk%^…�f����_/J�|;�Һ�SQ���Q�J�G3���
X�HU�[Mn4�S�.>S5t�9m��,��s++-�6kL�\���,��b���40��>L�v�V�v�-%sҏhm}�|N_��ty$�v���4�O;0��y6�}I�P��?f?��|
�ǝ&�4}@,7�/8P~Yyr~�����Iխ��2���x�-n�I���"�A��x�$�)�~�m����|�+���l���$��j�U�9��S�W�4E�_hZ���p��6�WEfO,��U'+�3�g���x�S��V��/5׋��%6r.�f���$c��ǘ~_z�rܵ��֔c'(EI[[�h��Y�m����59��ɿ��3�|�\��su�g���%��+Xa�t���,����4���67����Y������u8e#�b���U��R��<�r�|�����q=�N���\���X؂�l�k���<Q�����E�$3Y4��#����OB+��޺s��K>io}��v�NG��W�m���y外붲V��S�~���\�ׯu
2��{�������7m�6d�	��_`��מ~џ��x&K��ͬ�+&�jO.��a�b�'ׁߏ+������r���?%���8z5+MR����'������md�����q(�P��v��58���^��[���W7��=���4ҹ�;��'�Mr�����⿥2<0*xH����o���08U��Ƅz/ǫ�ϲ�N��w�<`椖��Z�#�%�­f�7��֩�^%KEl�q:���K.��w3
��N��ZX��V}�V%�߭p:��|��Vd�%�s��g,�W2�%3��|\e�֮b�Qk�95Y&k��:D�3^�#�����Nj���?
�x�0D�tZ��Բ溥%�M�����5ԕ�O�z���,(���x;URW����;8�t�
���Glab�^H-�QYZ��m��]�8u�Q�t�*1�k�Οw�I�]�Ϙ�����kij֙���t�����\y�*�9H�2h� ������MH"
Z(��(�S�n4�1��gk�6�Z��lbپ�S�)ù���{<�5��c�5y�����5�RZ�a�6#hⴭ�G�%��V����ԑ�SK,V���*+hkF�*瑣�b�
з�^�:�
T��4+���������g5Ԅ�Ln���W�8�:����pi�ܮ�Tn�;
���dِ8�Q�3����S(���u�R�ަ?Z�X��uD�Ն\�]iܢ��Uyc��j���R�GLx���Q�V��Q���/�*�%F��X�M�
���|��b�9W.ߧ�K���
E��)���"}�!���i}_���J�KC��If�=Z6���G��\x�]'C(������0���tꫦ~��5��៊���N��a������l=~���]}~k[�Ѻ��+)pA����|g�V;?j��,�r��|�_�c�:nW��Ӵ����W�|<������G=�v�<�ȑ����Tz�_\��.b��"�W����
q�-���x���XԵ�BO;2/�s��
��s�r��X��w��s����i/+��>���j��v�Zh-��`�h���>��:���Ǟ5�>"���V�.伽����GeQ�Tv��(櫺�B�8w�G�*�{���y/�ϭ�rz5��wս��"����5�,UG_As�j�xW��i�~n�{[���ڼ�¾'�,+��R���y�a��}4���C�S�ƾ7!��?ԼO%ğx�}kY}B��Ua�ikأN0G�Z�e�;ƸnMlZ�ٓXvћsZ6��ɶ���ѧe��
ʩ�j���^���E���_n4��ha{}J����_:	2�q�d1��]�/�7�-5��$��|5�ɬ܉ٔ�
IeS
r��p�q�:�:�jJ�	)E�֨�S\���1�ƕ��עh[H���^��K�0�������	h7>64h5��t�{vB`��P�L��a�r�O�a���o��a����^'�|/uokw6�����b�qoyḧā��q��j����SH�n�Tf|�z׈�c�x{ú>�uu�ƺ׆g�\Py�y��D��<�	]T
���|=�5/���R�w��=iyyyaag|��]j2���Ž���?i�A��'���7ѣ����l�i|5�k}��T��k;X�m.�V����c�Sq*�,�R5��@H��|���<I���þ�7�O��X{��w;C�QGoұU*��6�u��(�y~��y�N=������}��f�A�4�.<Q��5��Ε��5�]j�5�[�4Ryg
�T<�FJ���|F������<��{��MQ���E�L�6�Ug�_��w0��#5a>��:�p3[6��Z��c���_XY\�Z^�o���j�7�y�Ⱥ��%,��*���N0q�	ϰl�N�7Ҭ������`.Fri�'55P9�NC�:�(��L�4�8�/—7ѣ�VH侁Y\nVE�#��^fS�5KY��f�k��������i��/D�G�V�K�^�[������)�Q�O��p��>��C�
+�Ȗ��|/Դw�H�
�iwp��J6��q�G9B�~z|JNZ��H���3�
��.xw���/��]j�$i�hF����N7��M�ן�$|��w�}�|$��~0|-��z���*m>K=T�����]�X�}ݤ`��r���[��%a�+N�����Kh�^\��Gbkh+B����������|0�5|`���>�Y�i��e׊57-�g#2��#�P��A��ը��ϙm��Z�:��Q�����W�k�ž�[��@���M�a�f�t�O���
��S���)f��C������|M��N#�ĺN��ޘ�6����@�J���Z�gOe/�O��rʤ�q�u��gƢ:x\װ��߲m����-A5�
k6����#���e��7��8��y+9E�ٕ&��0�5�V�a�L�.D�"��{T�QIM+8Ȩ�sS;TE�L��dTl;S�b��@��֜��7u4�1�i�٦�����d��1ɭ��u�� :^�ֿk��O/�/P=X���#:աJ�Gh�[}	�R0��ݒ9w��h�CXҮ4-J{;�$���s�H�Yu��G�|�C�+���T�t�<Ek=旡M����P��l�Lv�l��)1�N�/nmN�W��̭s�Z:�����2��Rx�γ�ˏX]Ž���4-0lm۳j����n��럲?�+Ok�&��}oųxf.u;��7��q�έ#,yA��,ʷP3Z$�̺�\c�1�y�ٗ�O�<%��|<�α����Ԭ�+��Is+B6ʈP��>�R�A�?ٓ�V����6�<sq��E�΋�tڍ�D�	�*��rT�sȧ��̎��l���	�o���mm��eq�*�W���|l#��0��v�29"�|��oj�߇�#�{E�Զ��iS�Z��)l�")X�PO�G5<��e��6
]�Et	��m�^������,0]�
:o:�I�R�6�ZGeUŀ$
���:�}�]i� �_�4=J��N��P�.-g�������-�.�䁞iJ,�e��l4�2kм9�)|L�w��Oi��e�����y{w�+,�F��>1��̀
$	���k��mm|a�_xR�/�[E�i�X��y��YUK.x���g(������9ؗ����G�\Va!���e`�Rt�E)V�tɫ��@�Z^:��ϭ\�j�Q&L���a�<+~������q�����>��xz5�A5��-O��e�;Mi-[1Y�qTbE�qN���O�Vr��F�!{##�k�?g�I������n�Z�C}�qz�0�3��ֲ|3���K/�^����)+^~64�R�
��Z�>Z�:*Q�ǹ|_���k^�����s
I;�)�-��G����;�J�/�W��}��U��ޱ�jڷ������2S����802�.���<�98��5m����ψ>'k?پе��+���R]���22q���_;�d�2�?��m��m�]���'
��r�]�����x���>!�<4��]�M����7�2�I2���p�@#����h��2���>"��u
V�g]rEM���ZXFY��&�W8]ѮOj�xkS�n�u��}���Y?�qiyA<
�k��zp@�Y&�K���gU���3�'P�oG��\h��t�}�7_b�-%���x∪a���Z�7�A�c�U��㏊�ƃ�����-4}wͷ	����"�
��b���@O�+�x�)$����X�v��yB<��4%A�;p��j�9���m�"�	�s�ȥ^6H<�FJ.a�o�v�)�m����]�Eqp@ǧ�ZV�ۋIp c��-ש<t����|��W����t-Z�Vҵ-�A��c�9�'�c�&WW�%�G�ƕ��
<I��2��w��,�?���=N{	c��a��b����'�C@����о�v�T�ω,nm��MP�lž�3L��v�Fw�7
�H�3HC3����<�D��rx��5浣�Kv�3m��\�A� ]������Ys�'>��� ��=6�P���K˅���0A�V
�E��V
ψ�?z�S�Q�{��R�QӾ2x�I���ZԥӴx4��gX�#Ե��i	��U�@c$C2;l�2��ןZŲ�ՠ��d�]B��ů-��qDf�A��w�rpGL�qjk�Y�W�f���d��"�0�R-�j9�'���\Tԓi��:e��֗0���,W���m$�pH�E��z�t�����^�i���+'�F��Hn��+,ֿ��4O����F-s�kկ���{���B����V}�����-|_���e�/
�'Tմ]A퍵�R�`���`3��+Gj�C�����]x�E��N�lA��u�J{[d=X�7O���H�Y�G����	��~<��|S�->�	-<�{mJh��6p�U�$�Rk�'�k|R�c�-����C2�f�{���g�B��؂
T�A=Erz��_�/����=ܺDž~��j�Db�׹ry�c,�h>��'�]�Y���0?i���}�
��˥�S�$�zp��l�H��ᶑ���P����Kÿ�f�_�}O�޵�9.�X�B!���ܐ.#A—
ā�H$�~�:v�$��L�7�xo�K�sT��o'��)�w_�������:�}�|5�Ĕ�-���F�/"�*۷��cПJ�s���玴��w�M��5-oZ�KK;h�6�����I'�'���N�_f�=���	�3��.c���WOh�9n��
���~G�O8�c�B�xu%�E��YG{j�������O�>���'�>�<E�=O�lvv��*�`�h�C)PX�X�Ls��
�F��~�b%�%wȜ	��m��S2�}�W��o2F�س��3�=ɯ�?৲��>��6�P�~���c"�sfUeO�����9������G���8�Ԝ%V7��ƾ�r�ٟi|ky>.�~���j?�Uwᅙ��me��U�p�bP;U���<#�C��H�tv�[�E�#�'�K�tR%]�0�� ����/���/�Z}���|q�ۭV�6/mRB�=���U���դ��E�M��rG������[�F��C���9[��i��P�>
]ɣ|�i�?xf̘`��4��j��<ۙ���m�!zg�ꬼ}�)������g�?�h��[=_B���ZD�ώx�䌌N�p��}K��_Z�!�|��o�� ���mQJ��.YlUJ*1�[��σ�
5O�?|?�5�U�%�Vۏʬ���Ub{k����7���(��s�[�~ֵ����<k�ح�ީx�,��q+�\���7�B���Q�t��Oӵ;�@]ͽl�(�����_���
����\~ҍw5ĒLq���n�=sN�Z�4ZN�Q^|�6���~�j�~�P�k���K�?�)��4K1bn.�F�Z� 8uuS�O8�O��՝ƃ�]X�F�Vs<D�4n��)�_k|
���ϟ�=�m	�h�5
^-�]G�<���J��z��?��-3�?ǯ��E��^���@��o5ĒFA 0F�H<��V�)���4�y��^f]b���Z��}C�k��\��U�����Q�i{��cs��pd�h�_R���'��y��?eώz����u+_
閶k5��(Vy9'h=����d����꼚��p�Y],v���}��}<f�N���S��>2�^��_X����[���H��GF��z�c p1�	�k�'���xj��?��Լ=���&��¶�M&���k�*�3��V�X̿�B�g�5Oz�-;�J���x.?X�+��y�٭>���od���n�8L#(cۖݝ��5ف��F4(/v*˩t���S�(��]��������
�G��%�
C�q��h����j��������;H+����[����Oéx���F�6��K�\鶶�Z����K�Ir�K	,�$�f \K��5�+j_�~��+�2kCgF-��
'�+�~�Z��M�M�7��	`��!���nuI���)�e��!\N�m���?ࡾ�>'�/��tƛº�&�'�4����q|�V�A��w���� ~N�g�_��?�5�	��E�<D�f��_i��Y�k�6�%u	(�A����u�?�_�F��>�o��4u�6��\_Gd�'2�H�9lp�R����c��J�:���+ľ6�|Mq��B��,��l�[I5%�%n$�Y��q�Ή"�$�O٧���/�4�z�v�qc{q%�ׁt�.���,�%�g����!��)f�J�t��=oBԼ/%��zu���ֱ���qo �ɸ
Ѱ�XdК��-K��!��u�>�I�t���������T%^9#`H ��9��kR�(�C�_��O�(�s���*�x�Z���l�o�5���Ι�L����,�2��,�A!�ua��a���~��u�C��s[�.<A>�k�څ͵�v?lh�15�|��K�o����#��ֹ�W\��K�BhR� ��K]9�fXD�(+����#qRpj}G��ޅ�}'\��[=^3.��Oi$v�����!���ٔ6�v��"��eF�z�V����i�	j������X���EՆ�iqvothn�̰��8�7!�,������|���࿋��׆WT��W�3�ڵօ����2�,m�a�N�������'�#�ަI�Y�m��cEE��z�d������ψ��+�o�ڼ��%��c-��*��Ƭ��R��:��o��"ѵ]X� \X�6�Z�H���2�y
b�-��@����r=>��}R�e���u�(bB�J�p��rI$$�MgJ��uckqe}e+��[�Fc��D%YXeYXA�
	ܯ#T.���.�U��f�78�c�L�3<cW�[O�n1�_еv������
/+_Ұ�/J�c�=k���c8�|�J<�����ԙxݚ��f�ՙJ����
���X���5�{W=j���K�[D\��^��_i�����W�N��lݹ�0��I�=�2V�V���T'V��8��V��WM~J7�I��ϋ��n�k�=�p�,A �8v�����{^3�T�/��3?��ĦI4��	\�hu�./\�[2��$;Iǖ�<we�x��ķ	-�̗F�5-� z�j�K��xs+�����Nwv��}�E輒Z�<<��䛿��C�u����4��>$�𝽤7�6�4�j�V�"�ܼ����p̀mc�Rq��Ps:n��[�|/�|?��WO�Ե[��\���}��[[�˅e�d�+Ti	�tg�1�ML�"���G�~9�G�t/ZI��?G��?]jv�~���wP�B|��P�3$Kv�%L܆�ɧ|?��NJs{�MZ�V��5k�CD���Q7�`�X���0�S:[�I�kg��c��:´\,{��/��@��o4�q(�!�$vռ���m���8�>^"
��2��o��o���W~6��5�ť�>)�~��)m�%6�W���{A<Ί�F�ђ����|J��~j�K�+0
YJ���O�}o����|�x��^ ��Q�&�����i�jwRi04s�Eq��CtZ���DS�3�]�
����>���G��7�x�_��5˫m>��}0�E��t��k�;:�4l0��T|q|��u�6��\51Mlz��Kv}٢�U��τM�i6�
�@��e���j.���?��Uq�p�N�w)d,U�0�e׾|H���YMq��C�+�R��O�ҭc�t�m.��9%�|��k{t7>b+\IS��Ӭ"�����[�aK���7�|3ac�+��M�5�i�]Y�u���S{� ��gX!�7�c}��n(�v
�S�>"�7�¶v^�x1u�w����;�d�ˎ����+Ł��<�$��C1?[ö���?�>�4��7���L׿
>X�7��_��S�Ѓ�r��k��h����:� p����$^泃��X��QH�n�>�}Z��?�O�a��j'�(��sUP�Ո"�N5%� i��>N��t!�Q��]4��Jh�WVee9Vj�9�H����	���_��_xW������=���K�X�`���`<��XrJ�� >:k���oA�|��A���^�;kt��c��y�J��6x��s��U��={_�]��Tֵ}J9�^I2��bG��[J	����	4�u������>|=�'��T_x_�3�{���/XԧmҼg�jw`����HP�O�OOe��T��+`�w'?�E|�/�sڧ������a�����I�b�i��Pp�<����g'.g�߅���TTW{�7=�	_�]~�2�<q��z����x�������!���,�r! 4��p?��/��	�X~���x��Υq�ko*����k�8c�(
��w$��j�� �='Yմ��m�%�ܐ+�R����?�������U1��yZ��w�̚"���bߊ_�����x��w^���xl��	�΀ˑ��#�+�co�����f�����^��K_�[��%�?�U��bq�)	<�dn�ex�o5��z���j�-�]�8���n'�c��Iv�4\ex�<�u(�OS�>-�.~=|&���o�>"����o�W�-nT�Z�?��WI�'�	9��Ү��*�$�w�>��x��9b�r�D�!
�:�<g�����]/�>���-�T*�������
�>���'�A�Ƌ����*��[z�ij܄lc 38��὘��-����
-�Xi?�o�mD�M��o�?�:rh^��J���ܸ��yګ������#���8c�����_<?���婴�#PѠ������;�)�������P�˟���a�ȏ?v�����<	�_8'<A��Z�Βx)��Ҥ�4�G����}��]B��y�#,M���Hʜ���M:.2R4�^3�)����W?��C�����~�=�p��:�S��h��x�+޿l��&?�|K��ω_t돉�
�e4���6����L26浚�s(df+œ��A�a�5�|3��㯁��\x7Ş#�Ҝ��5	m|Ìe�sN4���ʲr���<	�����!�<v�
�]�C�5ַf�M�9,�s�`N2x�_�,�>���ڏ�z/�"��Oi�g����^8ݕ�,���c�^���J|V�˦|B�,Xm6�ڼ�BÞ
��z��#D��;{�9f����K�1Y"`r#�����Z2�M����f�"eZR��ݛZ[����3�O�<q��P�}'KH�q��"}�B��!l)��1�W㼒I�����~!xNMV�^�s��'�4KQ4��t@�}��k�O��
��Ҽ^�F_	ƼԹ��W����}}�2�ũ�8W�L�m$�����C�5�;�
}G�=�Ŝ;\H
B�n+�����w��ȟ�G�����ZK֯��a�xQ��?R�Ė�"���m
[4yD��窨bÀ	S�>u�C�j�|G��1�d��o��of��X��cln��z� �󬺦3<=)��g���91��^��	Y��]�����_�4��qc��F��uf�r��d?7s�ex��>�~���޽�����\|E�o�'Ay%�i��K*FN�dE-���##>[u��4�$��<��3�ԓ��U�C�݀�Ά�M��Y�����h�”i�Wk�s�g�~�k�_�G�=��_�z�����ퟆ��'����2�G����a6�Ƣ�b�r����n�L	�����"꺱�?WM?�����<�7�/6������񏆾*�>�C�U�ۯ��{×��Zuג�}��'�Y���Ұ�D`zWl�Ջ���?E?j}��������7km�Aq��sq�6KM%l�/.��ߧOoJ�H���8�>]�7�"�~X�G�ڿ���MbM^O��~$�ߑo���I/�y�#�I���%�|����ݥ����G���^��q�8Q��o�x@N|`4u�6���P��>Oی����+a}�6MzGď����o�c��7���k>>�L�����&W���c=��ZOs4[ZGC���E���͔����]���K���{�N��|7�߀�<�mkK��&�4���X�6�Xk�/���&��&v�Uڀ�z��!�[��g�C�K�[�~ �Ë�hz��iogsq��Ggwp��0��Eu:=�-w;����/��c�@��J�J��sW�\��c�߉�<�C���h�	�?���d�ŵ���{�0�ɨ����[[%�.�j&[hv!e'l�m�|7�3��ڋ�zN��V�^���K��=gM��}V�{0�;����D��[v�%�󀒔�n0k7?#EKM�kJ��z�>$��k�>$�</�G��c6��E��j���Nn�
�̑!����,���f�9
�?-l�_�W�P�[��_����u�7T�4���-���o.�Y����4J�y�a�A��+9s]_��!k�t�:��>*��N�"��w0�*e�+���l�Rvc$8��t�����>8�DŽ<I�^|XSŞ��=�A��g8���r�p�|+{�-	(�6�"rL7	�Ϻ��?��_���?𘋡�m	>�y������3�7�|��~���|���հ)��m�O��S��G����^�[��,�~����ڍ��e�Y�]��_K�J=����e��%����̡����(U��w��gS���j1]4��?��?��H�8�ѱor�syg�6���*7���VcgtUt�#��6��3b�Ɨ:�Gñ�7̵>��P�G�Zj��֭-6u����%��4ѻ�;XW
+m�Z��/C(��du�B59��6p�I�Z>��x�[��-lv�d�.j�``z� }+\��G�Y�#Rt�iK�]�g��r*FN6��=����>
E�X�����8�
�?�O�px�}�X�f	Z�W��G�~�iu�x�H�O��p���	nFA�$���H���x��Z�����4I
���`c!}N?���Ú���]j�Rү�4�J�U����f�{y�2:��ñ^G�xL����+�;.������:5i������?go	|EԤ�-���u|;u.�cj�:��Ѯ�n�I�FW�{�yV<����(�T����Ï�?|+��Z��|7��N�\�K��څ�
XZ��uoc+<k��Fڪ�\ȿ-�_���b�5{?&�u$�/$�e҂�`�J ?��y����7��|Um��x�mz�;}I�����[�*J_z��3^�2:�Y�~�?
`�����<c���,��-Β����Z��L����"���8e����>�>86�6�q�|>�F�|3e�#m"�6�|Vw���e��,�j��@���ǞԵ��x���_��
f�9u>��̼>rx&���?�����>�W��)�\�m��)�f�"��3���w*���=�e:�4pґ��?e��e��ƽ�w��$��զ�6�9�%���-���[�T�3K�x�8��f�?ً���.|+�}?�.׼]�����V��m�O{i�Z�G�f��B��5S<jU�%�z�j��O���Z��/��O����w�U*���@��Iy8���ߏ��}�I��猭t����Yí\�o=�e/}�0���nEl�\U1}N�Q[�Ok߰o�l�8��K�mOU�O�NJ ��^��4mm�Q��ȵ���ᴆ�d�9�&��T���W�����e�|/�x�P�\����&�g5�Q��7��/��ē${!\J6n��f���V�7�m�^x�J6�5މ�4}SI��Ig{{��q���G�6.[���hK�����kk���f��=5���D�-��k�fǙs*AK1P�>I�sʤ�Z���z��^�&�ѡ����mG·����:��u��sC��?(���d���D��BNk/����;�x����!�����e����Ѯd��౅#y �dl���U�a��6ֿh/��X�
S��.ԯ�:AҮn������g&,m_�GA�)�(���o�\M�x��ZԷV�g3�j��4�3��c�/1S�dS�#����}ϡ��>�"H<Gyk�{Bկ|9��Z�[-՗����cu)�t�i��"G�������x����LJ���ž��%֙k�Aak��Ũ:D�ٵ��D"<���������_~�8�]��h�4�f�5͜Z|�Y�4��.Ƞb�	�T?*���~�^:�+y�^x�ŗZ�q%�ޝ6�p��SH�G�H��gg%�IbI�柴��b}��{���@z�g�\�9�)oq����ԋ&hR�rf����eD�֞�rե/�Ʀ��!��?�^������?ٴ�_S��wklw�=���=���ʹ�m*I<rFC+)�)>���O*OSگn�ό>���|?�f�e�_i�6"�[c����9��d8g��9�_�W�?��^��
׉#�<O��Ų��
�	1[2L�Г�� �����wq�<��<_�3C]7Z���H&��(M̀f�U�q��HX�y��o��)k�����@�à��v+���E�"o̧w��W�����Dݝ/�����~%�Jj�J�>�k��㿷����Qg�"(��d���0�Y?�h�<Ca��Z�Y�V)v�&�k�˧HY���kbcvCr��(9��o�ׂ�K>��^�7�K"\�&���I#pRDc�U������uO�Z���r��H���F8�*"ʠ��&�!93���|+e��G���ү�kME��1�jΖ�E�º�e��i~�Zn�/��<&_5�Ⱥ}��������3������9�w��/kɪi7?c��)�Y|�|$�<R0#�v�Fr0@#5$h�VR��r8 �h�D�3־,~̚_�>_�V���}���Y_Z�:��Բ	�B���ux�1JX����c������s�x����j�d�X�������X:1�أ!��>W�'��+��5��jV�Yꌒ^�i���܈��Y#���'y�b�����G¯h+=犚�÷t�jY�\Z�Hd���LOi�$a�a�~bʊ��~���[�Ծ�eҼ#�$o���>z�	�� Y�.���%��O��	���!�]P���Ԭ��MJ�Q�N��+A$����6��r��(9Kßu�	x��Y�����H�’�p��rD�П�`G�A�O�u����+qp�,��!��|�q�DA�@'�M.T���i�=s⎪.,t�-|;�\�.�RX�:[�G$�Pc
�%��'�7�h�i������.�<-�g���/~���v�v�{���2Լqy6�s�Y5)��ϖ��A2�O�nRFF�A�"��uefVC�pA���=O��콥�O�V��X���m���[X�Z�:��ܲ��B���ux�1JX�����w�¾���a[\���*��䩒%��Ho'���fe�x�
A9m�VNj�h�������jV�Yꌒ^�i���܈��Y#���$��b��5��^ ��6���e��%��[D��2-�$c�$�J(�fz�?d���n�&���j�× �{�^�c�Xbi����^SƧl��IS�i�p�	ӛ�Aֵ6��mN?�Z�ىL�Y^�F
YT�	U'8�_�C�V^�ˏV��ُ�m>ٮZ��1s9��фbK��m����3[�׃5���F�6���ym%�S+�n
�]I��f��� �8���e����l>	|%������Դ�A�&�%Y.�5K�V���`�T�@����d-E�C�
b��\��[��]A�k\���W����lU`%-�;O溗ĝk\�.�᛻����I$��#m�n]��	B��K;6��r��5�ꟴǍ�Q��67ڭ���o��ڬ���VV�AydR�D���8nNH�
Rfկ���8���ϱ�gIk����y�^߱�!�nߘ�Cא1�~Uݟ�>(��[�/��N�-~���B��{v��K���7�۷s\l�5�*3����Dc�W�K����$�Zt��*+��W�dx<
��4��<
�/�Lι�TI�Y�(�2f
��g�z����3Kצ��5k����-��mę�v���p=#y�d�Z�čK�o����f�~K¦�0G�cr����A ��y���p����,�����*jQq���������!��YY�Augp�t(d
=�?� �;`�7���_�G¯�����H�g��6е��]}��&Hu��E��6�>|ZK���I��ĺֳy�js�^M-��˙%�F��ǩ&�6����i�#EK����e[��<�v��]�݀q�ve���ž"\�I&�k����5MFn�n��[|Y�����@�,�_�j�S���#\�1=�������uy,�oo>�R����w�d���_
~|J�U���<Q�k�[Ö0O5���
���fo���H�ɷP1<J褫˷k�����/���w}�/�0�|M������q
��8Ȓuq#�j��s��Y�⇈�k^֚M6�]Zэ�o$1�.c;�Y��i�I�v�whW������}�_�z�ŋ}>I�~��k�C��oe6�zϮX۬+$
$)n$�$G�c,N�ˏr˯?����~5j�ѯ~ i?�x�J�yym|uX��Ԡ�Vј$[���@�.
W�	�Œh�c���M�]��=�Ԧ�&Y�Y�&�$�]�3D�rT�|��������V�q�x�d���m>�$r��,r�7FV��L�E3+���<�Z�+��_��o��'�5�t��%�V'�SI��;�ph�[ׄE՝�P1[tY��?��R�����|e���~
_x7��ޟ�	`�
#�֐�����
���q%�j3I y
�Z�?�s���������^?��
_���'_�/|�|�&�0�i�4���R��=�����K��q��3C�;�6��Y��
>X��
3������8�U����g��[�q'�),�!X�e|3��Bmf�'���l-F/>Ʊ�yE��>�x��Y�
��+�C�oᏂ�#��|?�-kZ�5?��ig�ීK֑yv�܁lb�T�%V`".[ZH%򿈟�i��F��\��5��B�i�W����ڇY�Ĵ[�[a%w(8��������6>1�U�:��:]�pj�Ʒvp�ȭ��xQ~U���8
�N(ڛ��}=�&��
7M�ִ�g��������~��˫�t�(�Zi��-c�R���(�nY%�Z�߈��So�C��7�Zn��x��G��ԼO
���
��pVx��%�0��aO%�!�u]q>*���)x�\�=K�W��
KA��e�ψn�N�.��HZ6��T��+^���!x���6Z���e�Y��h�5�.����֤�g��*�D̛i�q]��`cJ=�P���>���:n��0|���O�����j�����)���E�z�Ӥ1��QF��X1�it_؟ᯌ�\�X��o
�z�/��G��Z�^_,.n�;-�XYM�@�M�h�{�f�4��V���鶷������nm4�n.H�a2<�8����Ij�nv=I'���#����y�x��z�����{���I����w&5e�H\85�:ꍝ)-�s鏂߲�o�ZG��->(i��<E�hzh]z��;[9��'��?"�@/�7����j�u�[�����%u��u��o�-�
E�_�����*�<�T�77�D���OC�G���\��A�k�1m賂i�Lf��<��c�3.\���k�5��j�����6�\;G����o)I�y��-��ƺ�(CFӳ���ͦ�����������E�_���	4
�6��V���U��3I�w0��q1\�saz��D��	����;(~Ǣ��5����]h�-�ۈT(Bc��kh��l,���~\G�d�I���i���#��W�z�?��>H�[�S2ƻP+bz�ʿ>�p�:�%�3��J���i˧m7K�|�2,bV���V~׿���|��~������H��좆O:l��v�S�pF3��ﻹ�k�c�T���z֛�x�I������`�<�^G��ma_I�9N+N�qRR��M��k����8:�hJ5�{��[��c��$S�k58M^��r���l#��/|�ָ;{͍[�N��^k��knrV�}N���c.*+�*Ԓ��|es�Q��8!�PU	/6��Z�Sڽi�anM��<��O����|��\�ޓ%��73��՜����x穪�X<��]U���7+Zv�	�5�8�wB�b�Z�J#-k�X�t�������~�c�O�[x6��n Gj�]�R�������ˏuH���M#��2i>�_W3����"���[�c�H�O�W�~r�*�_mj���hk��d1�k�ltQ�1�k{��C6k�ӧ浭_5DZ��jC&Mji�|±mۚӱ}�V�_�rUZM��QW���ñ��V����~���b�(��϶�{��۹�
Ǽ�!�%+ԩ�k��MO�뙊��V��y��5�Z�ƾx�c�dRej;����N����q�s���j�k:���,^�����:����7���H�+:�BE_F�W����a8����z�3Pjڀ�I�SS�B�!���4�1�D��[�|�i�5��'67VյНk9B��i�D2եh3Tbj�h1�*Ećp��f����/���̮�\Uy������|�+�b_i��j�w
]]�J�v��ΦƑ8�N�k�˚�զ�5�us��)=N�ģ%�5��5�Mɺ�3+����*XU�j�dҚ��+G�����SE"ըdR+X�&Ema�Ҵm����M[E�kS3Y\Fk��>���\�o�qZ�ƬjNz����{P�w��t�&��T�5K��,��!i�.摂$Q�����(U�@55�S^������c����z�v��ӕ�˶��OߏK�����v���j��ǁ�4O�������5V�S�ſx��q�:�W�c��ԛ�'�&��7�o�"��c�j�f������ů�$5�3_�?���G!e )�l����G�cܟ�)>��f���G��_�_�Hj�f�������E>-������s�w;MH��A���g���h��{���-������T�#�y�����sz��yρ_��H�����fR�=A�?8�#�K���.����>�X]a_�yF��BH��V�Ż����a�=x�3Ѣ�=j�����ןXx��V͞��u�\\Y\�G�h��O��Ψ�'ޯ5��(�����'����knq����t�y~�ZI��o�}��֥��h�\�\�B��nj妌��41��z�F��L�5�X[5���������1�l�Ҝ-�v��������\���"��L
��Ni�
¬"�H}+����o��uOjٶ7�9|�&̅Y��5c�Q�q�=�p�y�(�5{��2��U�7��`�#����ƒ�3_�S/?��J?o�#��J��y�ƪ�eؓ��v����o�eꟷ/����G�����J�-g��c5��7C�N��J��NMh�م��g��kr�d
�
��u�b���Ĉ�WN#�^��0�z
�Q������X���?��5�=[�/�gt��e����9�+U�
�`����� ����>.xu:��_�&������s8�ՃZ4v�g�Z۱j����F�/������;_�>��j��-7�^�8�3ʓ���=+�������Vo�"��@xG���Y����̓����R�}�Ǐ
�>]S?��7�Y��3#j_�//�XΛg-jm�l����ҕ�+������G�%��j����A��<۴��MDi��4��;��G�=BR�q~>xH&?���Vo�"�^�q���3�n���23p�S=JOSsc��k
¸�4�e_�B_�//�W�<xUͪc�ݦ��+��`������U[Fv6��(��Ȉ�*>?xK���Y�����9�f�O��n��yG��^�j*�I2߈������R9�֫j_4{��[����W>?ћ�^����z�Ks�����Wm
�����FEZ����[�?��t'�=�o�}�o�0��쵍k5����=.�ޯ�W��)�3��y����_
�]S�%���+�1gS;������/����!o�������ǿ	�!o�������#�<Ts7ȟ�?���Y���k�w����KM��SQ��n+��[j����/�hsjZ����p�|�m1�BI'�ךꟷ��[�vx�w���?��eR-�4�Gg�˂��_�c\�����]Y��~hR�@�\g8��a_~���n�͎��W�n�}����#�K��Wmd,yd�ρ�p�=~�q����_�O�m�^�OO�����J�W2=1�ص^MGi�^ww�[|=�y���s���ӵX|C���r�/�K�d�Wz:�S��2�h�Z�9���M[�X���~�a�LqV�-�uke-ΧM��+jܕ��02�PBU�u߸���_}���?����9�j�v���M��}~������y���5���O��?����?�_�q��WďJ?��gQ�̴3e~Pz��?�_��wZ��%��[kq����c�#+I$�#[�=���m�.�i�2���_/��J>������j�y'�7,���Y�U
�}�]��vv�3�el&�'iE^ߟ�|�:��ЕJj�t=�_�V��I�ywz~�
ⶼ0��cS�<rE$��S�n�\Wv���M��[8�<��\�+�c�ψ~#���.���Ʊ�k��H�,R1�'���H��–�$�_W~�~/|5�լ~ �Iogn�T�j��q�������Xo|m8���|F�*\��R�n�=��:y3��q؜�&���ݚZi�~K�o3�K�rIg�Hb��Y�j�����m�h�IZY#��N�M�y4q��
w��m�P9'��?��(xR�P�t�r\F�i̦I�c�
!*�|��B��
Ȯᾗ��Z�zn�5��Q*�?�㈝���?�x����*�/�I�7_�o�����}��r�)<-J��Lc��+?��V��~�z[��7�L�����1
F~�=�lB�t@ט���sY6���,���1��;$bG�V�L3M�����lo�v�����Q��զ�����F6�=c��(��>���vgq��e\|���Zǘ�,�ԋ0����ޯ�^k��
�Q\��k��Z��u�=�ΌV�����Y����9���Y�6R�aֺ�<~�kH3�K��E����Vȭ�2¿5"6j�5Mɠ	Ѫx��WN�<_ҭ��J�>��J�.�q%�<�MQ��>���~�'����	z�ǽ}�4�6���������s_�?�A�x���s���<1c���;��^�goy��흽�7
��4�\/�T��H�^���=�Ϗ~�$�c�m�a�!��z5ō��[n!���
�p����j,�fR��s^�|%�X��U�柩i��եݻl��T;�Շ!���+��'�Ox�R��ռU�j���B�\3,P��Gʪ�n
��j#�4��>�F��j�vzƹ��^Mv��� Hd��I.�-�k���.�x[@�~A�m�	�h�w���V�o�:N�{��xr�(SZM>[$�Xab#��׏��ږ��1����Q��?]��o5�1��i���bS�`����`H9憿�_�3ծ/�]r�����:W3mV��o "����s�2I�hKW���x?\���~(��'q&����4�:���Z��I3�:G0�F�lAZ^����|񆡩��c�,�\C$�i������c76�	@ݷ8�	�x��Y�5�y%ơ��j��m��)(x�s�
����N�2�;q��Vo��0���ͭLj�K�/4���O9�?�}�^�����I��䵯����w��.c.d�>Ң���m~*�2�T��r����%y~�=���V�QEQEQE:4�$U�q'��T�l��4���L���TaL���\��FH�+x�O?��&?����"�8���LM:������?�¸�ȸ�=�'��w/F�q]�Ÿ��O�.o��<3�y%�A��y3K�00P�������x��܂ݥ{p��i+��H�}�5*�}Q���=�_�|����Dž�i!Eh-ldi&�&DF\(p��`���8\����b�z���*�k�ݭ~)|8�;���ߛB��\0l�����_�}|7�mKN���R�O���o-X���G*%��J67)=��8��=��/�~	�Y�Ǟ
�ݵ��n�p�|�@�j�0c9��ÐGj��{཯­?O��񧄼W���Z=��ָ�93&@�&B��E'L��
	���}ƥg���L"���w�������G�$��zU�쿦�^$K�?�7I$>r�opf��d+��L�+�h�ix����?�:dw�z�v3�+yh۠��������9�|?�E���j��xkH�����B�ɹ������Uv`�Xc5��Fh������ŭ���'����IP��6��	�`�T��d��t(�Q�KM>[�]6;�`�W�p����q�22��泀��~�|:[]���|�-�y�Yuzmb�7g�W n���Zo��E���$�� i��͘FI�����HRHi���.z
�����	����gn�o�O�x��1�z��������D>��-#�^������K��2;��~yޤ� a�<_���|a�|C
lj4_����u_Pc��@R�:�+�	�8��-4��/㵆2�Lx�>�W��>�C�X�Vi���1�Eʌnu��f�>$x?�W��O�N?����~��:����ƨ�{�p�#ǘ��C蟱��Y�o�s��-k^����?��t(�:m��R>�Z��f�<�Uh<����A����k�3�v�{$��Em��#��͌�{R�ʬ�Y��Ғm7����Xw�AG̭G��6��1�ڤ�s��Ve�}8��A���7���i��R�0��嬞��+�O�	���9\�\�t��V�*��҇I�v�J�ڵ8�PGYE�Agb#�Wc]�M�zT������o�q���X���\N��ڲ��E#�������O����������`�3�;k�?����п��a���C�g����X�v��.'L�ۑ\��z���qk32�qn�9V�YH8=�����^��#?��b���/�A��|���vm8PpN��_�Ԋ�=���;�9RIE�mc����Ɨ�����xWV����[�ldw���ܬ�t.)#^�:r��>	�C⏍�N���iX�e�M2��^]�v	@�į�0k��ؚ�ğ���_i� �bkخ5�dM�%�l�y*y�f鵏5�M�Dx��<Uaqx��F��V3�	�V;�O�rD#搐m�2���<7b#,E�A��+�s~�o���KM5K��*��"�55.����y^˺������ʿ���I�;�p������]BK�i�U����X��8`0B$
rBg��s²iv:�����e�"�dѸ+r��q�t����hσ�,��5��ll#��4-N�-}%�#K#F�
��7v-��
}=����d���B��tZ�4��F1��@Ј�B�E!YY��>��|ӂ��|MF�&���7�m=ֱ����ןo��]G����X_�ԗ$q���2Z�?y[��^2_|B��/�����w�fj���{m�s厢�a��d������z�	1#�;/����*�s�#�����Q�+F�%0pߍtE�g�ZQ���8k��&hYk��~Z߶z��=liF7���xcR�Q���w�^u�yIu��{��׏����Oc��.������c�Z�,"�+8��˪�Z�5B�ɨ�Ev�Z���؍�j�]�����\��2I����%ȫQG�ZE6,k�S$tGjdNkXĆϜ�o�]�����e�z�?�{c������?����|'N���OH�XX��.;sҧ�7?up���eP��˚��)�zրM
�`v�>ƭG�����נ�����f)�>_����@������W��-���2-d?:������J�+Q���j�v�l�G� *�FA�4L���w�ۏ�^.[��M�]�;������K�=FGz���lO�տ������i����c�9���?�?N޵�4���t�����mc��bx0��������>s��T^3�fy��|����'����eE��'�(�����|j]{Y�����u����F��F���j_�x�P�
�^x(7�|���mI�
{�����ƾa]�-��4_��J�uk�0���A~�m@�������W̋��O�Ƨ���I?J�h��>	�?/��
��ǂH����j��xv?�I�R��5����@>�_��'�_���=4��	�|x��F���4�vek�7/U�M���P�4�<��}6?k��}������>	�}�|޾d��r�����=
��Y?J4��k��?/��
�?�ςG��_����'B��zI�SN�����P���	�~_��
s�������!���R����O��\�'�}��o@����?���޾_�ć�z55�hA�XԀ�����}��oG�5ςs�������L�zU��'�cP��Z���ۏ	�k�yn�R��ٞHLb�V\�n�ӯa_=�E=�kn�%ćj�nf'�����G#W����kӼ��Zy�~�e�������
��Q���|~�Vo.[���G���5�5���n��$jG�;}��-����c�T�F=�%��o�A�R��r��sֶ&�WC����k2�._�
b�Vs��ϭ$�F~�3DZ���Oz��u
@X�9'8oҾ�B��xg�&�D�|;0d��>>�g?�
���)\؍��3���V�<U�U��!"�S�P���q*�����#�щ�z�5��3v�u�핗ue������SR6��Cz�&�3�	�q�}��������
�+Ӻ�3�	���>��@���s�Tz�Y�"~מ}�«��x��K1���s>���~t�G?i��|(��i6���.&�Q��n�X��8�2Ao,
�^�O���&�-�����.:~5��@��??f��M�_i�>�-uw�[�"K�>P�M1X�����c]�RI
�S��`�p�V�:��{���1��j3䔕����?8�h�,����>�}tmr�&�����X"���g`�`��X�s�������#�u�Z���B��a��/G�$��e;g�b?:��]�q�`�u�?�ៃ�����_�g�m�9L'F�{�&���9�Y�܍�A�/�yݿ��7�Y?��}fuǵ�7�
����3�����y��{���5q�I)s8�*m�U�k5�=]��!��?<=����W���fuv-5�Y��,������#=�=+;|y�Ꮕ�çxj�q.�YY�7��Ee��&5[bk�yݿ��8�K�&��Y�ƨ�$��=��|a7������n�ñ�+�Q4�4�l3y`��8�ñ\%�V5hUj��L���>���O�`a5��O٧eo~7���d�KkZ�Ҿ7���?��w^j��=���#�ː:��Nk���}*?���|��	~Ş(�u���+=s��QD�ko��G�?��Y��R��0
#���H�h��m�KEc�����E�j2�I�IoִG�N7.XHb�{��+&+CLS�-cQ'��mhw~�%k���Z�<�U��K�*��^!�v����5����4��}Y��-�_������x{G�&�o����+8e��A Y�����1�5��/�g��~�5�������ţi�WE�֑�L�,a��u�a\�̙�c1
3����F����Q���z��5?ٳ�y�����~�CX�.7��<7i���K*,,�c~U�#MEg�8~�rZ,�1���{�/��܍���	F��Fg9��t�N]�h�!k4~�>lk[v�W阮?a�~(Эu-/����İʚ��S�cb�+H~�W������,�g,J{#����E����7���4��$���)Ⴞ
���	��-��[Gџ�GࢦڕS��U���o������Mm��Q��s������Mm��U{}����P��������PH�����w�����k�	��S¾�\|H�����O��G�隫,�	Rȧ2��W���_J�hT]�,B
��N��1py�V�c���Z��G-T2ո�G���hZ[m^��'�S�`�8힕z	9�?*�iY�G�*�ȡ~�o^��m+{��V�Va�����k�2�T�k{�|���;q�X/�J�w-
��+�Ҫ��x��͔����F*v��ӻ�tU�+�|����Re^��~��R6[��3 � �#�ֶ<E��n��fS��y���ź#�o�j���?���1����Q�¦��37L��D����T��)�Z�C����5{��n�z���ޟ/��'���/�\@���g����Fٚ�hw_��S�c��+��WI��ق�V�c�:��y���Z�U�Ρ����5�����);�Ԝz����@3��`��C����ơ��_�_���߅��U�~�5D�s1�X�h>Vq�~��\�mbbǩ�:���~˖*�WZ�U^�[���R�H�c}sK���F�ދ�)��,Y��!˟�_�*�o�Vɿ�=s���UuMu���P���9�ғ�S�u��V�^�uc��#5���a�ך�s�����BF��Fj/����u=�n̋����~_���c�.I��bw#�����CL�}o~�v����?ֹ5����b��W0�F����mi�Ͽ�eL��3	L���zyG��\�����C�5=����y��h�W�Ԗ0˫������H~"
ͪ��o��R�g��}�ù�����6�W�(.����-?�W+t�5��חW�zܹ���n)�O._��g�$�g]ߖ:
�Z(ުB�u���V��(Q�ޯN�v�޼`�;�������z���7,��F��*����?
ͼ�w��pqAD�V��O�*	�T����>����y%]�3@h6C��5}���g�
��.�E-|M#��'�Z�����g���_o�υ��-��I��>�m{5��O�2�v����8-��19�sYΟ>��O�H�j����ֿ{W�s���d�MC�,t�M�i7C�v�
���86�Q�ά�J�CA�ۂ���e/ٓ�~$�I�>�8��-��̐�[+*��1Ǒ�o� JôK����y�-s�6����_�*��<�(��O���m����'7����߄$��F��u�i؏h+ ���+K÷D�DI����m��O�{7��ő��T��_���/��?��Ր��uU)�+ƺG�y�נ��~!�#�o|յk�=/K�q���^]̰��C�/$�H�*"�,Y�I�GG�	��?�_�
O��v�n�����3��j���?�]�s�8�f�A��������Ǫ+������>4| ���8��j�տ���������E���"7K'�l�W'�/��_���G��.-�߅�
�f��]:�4<��_��O-[^ߙ�J�3Tܽ粺������g)\��`�:K�ۦ��ڭ7�4[�����]?��?��~�g~x��o�?�|/��д��ϳXX[%����.�Gڈ������5�/��]���XB��.[����J�S��ۏ�[��o�?W��](�j�����4��_>��wҿ��#��#U
��wF_U�s���
Y�6B���@|P:�/��ԟ��?ٿ���Z_����ԁ��e,${�ODo��iμ����zǫU�6�+_M����m&�����~�k��E}�v�:�[p��E�Uk��u����t�>5�b�uFVG���F�����O�Hk�*���7��=C�3�P\-��[�^��UM����C!��z��	���A��}k6��#R��Dc�H�"����H�޻�C���H?�?�X�%n����a��D�r6���~��;&1sUl����=��
�?ۼ�	u�a�n��b�s0�����H�ޝ��]b�k��\�8�kKV� �ګ4rDd�r�"��r�'$���'b�X�}i�l�?����h��<+����|�i�3P�:Ĭ��"�q��ڙ
	
$�������ʤ��I��	�K��W�������!-�s��Ƨ*�K�Q*K��_����^�}�:H��>Ժߊϓ�7��b��~+I���<9����=�����̑�L�͸��}���ׁ����3{�E���mn#��ؗ(��9�#�+/�8�����i�Q���?��/���*>+I�v��oT��zx����c֍|T�k��)�O�u��z�_�w��H�X�>_3��B~�S�=`��qڬo-Ĥ���ۆ�oL�9�?���_���93���f������?a_
�7���Ğ"�{g�\�e^Z��N�bg�4H�<Ch$��88�9��:�>2 ��-㑗̷��ٔ��$�}�מ[\����WE)�ǘ�$_ {�5b'�\U8�_�~47;��5����O]�Z�����u���q�V�^��@v��^Ӿj����M�j�O�~UPX�����>c!ۨ\�Krj≔�vV����K�u�G�je���b����\�淼!�\���C�]���#����i���#��kv���P	��3Z�ך��pk���!Ǘ��qp�v����_��Ǥ������+��.4V���&�4�����{W�kz4�f�%��kox����%_U<��%�d��D�"��Q�&�]���j�Z*������̱ƻ��GzvDݑ���k��u�O�;�i.�rY�=@�c�\�����'�K�������Y��7�)����]���4��,s� �������<ZK��8x+P?��'�?Ƌ"�#�o�R�t�.����G�)nˣ���
�ǂu��O�����ǫ�C�h���o�R!�G���U5/�>Y,�[]0C3#�ۂ�\c������nW�(>��=���G*�ɻ�伺�iwI$�]ܞX�I�����[G�7��X���Q���������LCpO�����V����_Ϋ��c�����|�5+���a��ֶ��rm'�,�߲����]N��y-��P�<���ho�W�J��p�[���O�ֲ��{��v�}sT���+
�v�\j��2���w������-q�۷r���Z�gdS���ɮ.���F��R5�;�5�C�I���A[zw��o-s&�ܒp랙
HӺ�U�Q�3�d�c�7�^;��y�pp;��Un.��^�T��,h��GJ�ӵ�}WVhٛ쐯�fL6�f��l/�AX74#�T����d��8�tBH�a`�r�Δ��s�~H줹�I�dVV������|~�����}B�9�ə��$`1폭kE�b�t�$L7	\��{�����E��ͥF\�v^~^�����i�7��~�~�_�p��Y�c�;�S�_�F�Ş𦍦����������G"�:����6*��(ڣ5��-:�����p_ xf ���㹮GĖ�������vf5��g}����?i��sg�/s���w_�.
��’xz�H�,��2�b̪�B��p+�>
��`?e������b�3K-��F�]ݺ�o�&�s�.N>m�6k�)��=R#gĒ�|�˟�
���w�r�l|E����ka5�o���F��KlW��昪�����W=<�-���f�K�.��<࿇�������6o}q�i�$�.�`���A8���?����'����f�{�/J�m�4��~��dW@��[��	�85�_o}{����,��&-SC�Ӯ�7W�*�N�ŵ��*��~P�X������]x������1[t�'��-�A�aQ5L�� _`+���S�JߩɎ�Ң�������.��������W�k�A��-7���ڊ�7�����.�����>��Zo�"��=��%���Rh�9O�Q���cx,ݗU��x��</&�����]���|��N�~�����$�>+�Y<S���}�K�����O��/f����-����u~�1����P����$��kY��6��n��_� �=��_�ś����9Z��t?���Q-;�>i�|��Bk�߹��M%����>i�U�]�᷉��y�W�&�9�!��+J��D���֜�v���.��zT֖�yΥև\��'ӭ6�]�����[J�V^
v^о�V�*N�nk�[O���]���Z����-W��l-��ᖬrvF'�4��2���@z����5�����o�o�j�W�g���wP�ly8�gr�eQ�6i�Gˊ�� �njt�l.?����Ms���v.s�\c&���p�����k]�,ʠv�wܭoϧ�Eە�0"��z~�q�Wpũm���v�$�H]������/�m|Si��h挝��͏b;��𥞉i�\EspҖ�a�3�ztg�k��5������%x�k�����G�������.EW�؂�d[L7�d�I������MZ�|=5�M4ry�I�}>�9�|~}�]F
�z�i��}�>�l{���nDr����:A�@c-$ov�� �-��t�,M2�?�kG�x�B�V�qs�ZI�������W5��;K��J4�8򳪜t)���+�WE�Gִm'o=�l��מ��ZK?;?6ߥV���0�����*��޵ܭS:���ެ��y�C.28�m'R[��33�֤7���ӭ-M.�Z��H�l�d{W�����Mu���*_���'�+������Ⱦ�*�gPp�?��:��V-��*���G1���O[(?�åoc���	�������][��������]|�<8 �������
�[�����j-GL�Hj�9�Ԥ��KS��o⯈��s$𭣮����qk�Vǃ��+���ڰL�=��T���±61L9�Zn���CM�+ӭkxJ�v�i��F���K�c�Qh��Ur��
=1V���ї*A�+��f8�����[Ҁ0��v�ԇAR~�t��B�f�@�_��hJ��]T֊��8����?J����J�>���º��\}�zϚ#��@i��ҹ-F����@���?�+��aƣq��SЂ�~K6�+?ž2��9��&8v�s�~Y���#’�d�#��I�7���8�3J��8����+�i�F�n�c�2>m��ޙ��
j���)=T����6Q����Z���}I��W8�[�B���,d���k[O��{���z$c�~��*�>�����X��t��F���8�/��;��g��MMQohcgv&F���Uu�
6�8~Q�g������Z��s��#����sE����VW<`�+�ն�x��Zan�6��T�gNr�RZ#Jz˗��^�P�{�c����;x�ۆ�����LY�t�.ᤚ�B�[ �7�T#���Mgn��+rB�{s�\z�G�~�j�siiuq-ԖfM��ou�~Uc�MJM�~_��{u0��}ߧ�V����M����/cX�f�]��e�C���w{��,ia�Şf�0�y�c*��c����#g_:O�!S1�v�A�����;�"x�)��{��Τ����cʝ����F��{_���7��fOiw2Gt�,���x<~_��w\��Ȓ6�|��qɫr6�z��q=�F�'#9Q޹�W�J�h��ӌS8�r����-U�V��t�
��� c���rBAE/��p~��W�����5o�k���(亱�5���\����dh�U��!�AR �_=隌�eȖ6?)��5I���/� �$�n��dw1.���	��Xbe�o�����"���M6����Ϟ
��6��M�;�{[Q�]V���h��--�e����g`���#�7�+o�/��>2��:o���b�'��D�8՘�ʃ���~��'�,���4_��"񥆩�*�]�ir�nl����x�O�>5���m�ڤ,�r�+�n_�$��.��F�J�݊��V���M��j��
OY=}��yN����?j����q���?F��J�}#�K�ok��y�+���ksC�	��Z:�[[ǧ�b�M�.�H�\}��d�ھ��U?��w�����/�8��˺>|���4ٴmN���s���H����T�x�N���Zt���ɩ-Fg��S-�ϵ�e��Ї���K]�����ҹ�h��N��m��Z�٫�r���GX/C�� ���k��<��k�%�d�Tn�u�t��x�D�SL�C�	���>�ў�����U?-sZ���{�k��)=��3~�GOҳ��3?Oʿ��?؃�H�Y~�6�g27�i�M��ޭ���Q�9�G�~�0������i�<0�+6r������z�-v�>�#�B6����h��A�2���:O�R��#��0n٤|!��qͮ�ߖS��8�e�r�E�h+|'�M��AZ����x��d�fŤh�߽m;6N}�)�=����T���fۦ�%��6�a�k��qS���<r}���j��u���;�%yK"��n�5����;�6��ÛOǭ\x��	Ό��?�lo�g��oX�>�q����^v��}Urr{���Jo���*��|�mq��
F�GL��-��LH��jN��߀��G)W��=H��<�4�h}jXב��o�Z���"��:�l��r�<�z��������\��랥&��
QR�ż�Ŧ��}���<�#�X�Ǧ=�T�[��1��&V_���0��"�>�N�]�U�Ҽ޽$�L*Q�����^����ͻXv2�2�z��k��G��P+�jvY>Y���t��Z��(m�*�f<�5�?zWB��Ԕ.��=)��+X��c�'ЃY��ϝ�*��3Uv������9�M
6��ihR�ڻWv{�MjT�?Տ��q�[n�nNW�t�|Y�~n�2ܸlX֤	�I�d�?��=;��
��O��ch���Y:y��h ��fu74��RB�5MZ��R��iwywWQB�8;Yœ~�$B��C������^"�:���<��hzo�m�'�SK��h�)���Ga ����Kn�
A�>.���CE:����i�in�㹖���3��8�99bHPe�Gs��� ?��!�ǿ���nj�-�|=����K��f׵/츮�)��KU�ξh���:e���6��g�]?@���$��
����Mu�v'�K����v���Y?2�&�5�({2�pJ���l����nj�����_k�N��{-���̗mVy��,�$;��
J�|7�-CJ��q�j����z�I1��m,���;�Tܸ�_�j�j[�
פh�n���j���Ѽf�mm��g�@<�ہM�|��UD`�9"���/�ַzͣkV�&�Oӣ"��H˲M���@9�K�j
��v�y�k�^��3ç�����s����{uen0�@&�Bғ�M�����P���1G1�]Q"�iˌ�Wk2�&��\��MKTחS��l��1[M�����|Ì`a��w�O�w�u�.��7úy֯��-.|ۖ�;{������C.�0�V ����<���
R�E���-���K2��H�02��RΌ�����`HKw=m�k:\_�jRY}��7�B�r�f��v�8dQ�}�f�4�Am��A�{
KZ��O��i���y��#D2�-�s��-��3�k�Ƈy4����xv����"{�<�����.VX˱�4�P�8��M�˽{Ğ�,�F��$��s:��ѤjKD#�	��v$�u=;�ݤ�����{�V7��0(���F<~��	a��/�����C^}b1#ۉ";e��W;B�I���g��>�)+��-wJ���ao椳}��}�M��% 
��2Hl)�؛��.�gc�M_K�����[�td�M�O-�g�Yc��*���8�PY��M���BC�g��[�x�W��<;�ȶ��]��鼛{V���i�3���?RE}3�Վ���+��F�!�{��a�f/3�$	��&�� �Hb��g{0���Nu	��l����
^��.5�6?Gk�j�$h�;Ƒ$[D�o29�@��9'hp�A�VM:+�R�Z�m�9$P�i�$r̚���H�
�0�X/�bl�Wp	en�^�<5�"i�Q�y8+���qkd�rI�h��ͩIj��-q"H�S�Bn�$n�ae85���*��=�^K �l��"�Ӯ#Y �i[�ȒF�2��r9V��nTv<��JXd��|r�6�!g�n~��X��v�#����MR��0�)g=����i�TQ)wYb�0$;�
зS��y M{Yj7�smv���MsnKCpU��B@%	 ��8�l�+K���y25�3$�@v�ԃ�
��xJU�$��uU.N��Z�K�N�y1��-��8'ҹx�}V�HU�m�b�����}k���Jm����7�-Z����r[k*�}jψmd��&�Wηa"�I�;t��I}�>n��hZ��6j�e���b~�Vҍ��;lY���
̭o#M�O1eU7uV=��M���j׆�O&�p�O�q�OSRZAV�n�t�Z��
�����+2��,���+)_嚘ǧ��ꭋ���?�~����5K{�ÕoC��:m⬉�t�.��ྛ��أ#�Z�j��z�>LV�Y�H���T3�O�z�ٜЯ(k��%��e���ͣQ�ϑ���N��V�u��@�|�,�7Y������z��1ڸ]H�P������(��R���v�?ص[yw��7/�׸�FG�Z��Cg'���1�a?�����L�2����
m��ᷖ���*���d�\���J>��q��+����!m?A���o2H�h`�X��<t�+�d�'�,�3gɇ��?�j�t�M�!��4|���I��Ae����f�w=�ϵ{y}N���]��ʵ5����y#'ƺ��ߥ�(������|�2��zN��//�%O��3�z��N�*ɨj��(x��rΫ�Ț��Ǎ���ﮮ<�1��<�x�^8
8�z�..+�-����h?aʶ��?�_�Y�G~5jL�=A�qЖl���u�
Ҿ����8�_�u���K {fc���7�?6l{�|�׊�3�?��Ԋ����W[�aa'��v��U-��|�n�4�,��N��Q�omauu�I^4g�&e���c t�]^���R�Ĺ�<��XHw}�V�(d"r�4�1, �~P������c��_�$+C����Q-z�j����go��]��F|'��G��x�Zs������i�yx�Z������ar(�؋�7�ʯ�|�>������V���r���?�b���.�4~����?�ďH��)�e����^������?��>�����T���WV�JYJ�����+��"���=#�����h������"�?��>�����Y�I�H�ڱŸz�*��v������N���/X�
��B�d���ꗫv���F7�ߚ�eQ|6~�[���1��.�������:��_�p�tu��!0-�Z��rW~G��N:�X����h�lVͮ&�$�
�~����d7wBaqq�u5���1h�V?(��x�>�7qV;�<��
�:���2^C�D��E>S%y1�r���0��5/ǫ%���9-���m�F��vݟ�����N��[�3��zg�ֲ<S����79�U)+۱����/û;vi����(kg���9F	�O���W��O�MJ�C�������8$1�_B|o�I�m�=��O_�J��L��E�fld�~Q޻��n���#i`��HA�4ѹ����Cȣ��ӕ���Djf���_.;�~Y,��C1�"��n
�i7�,�0e�dt�Y�.ͧ�����m;����V����.����V�]��H�!v��6�=:�zn)
�9���W%�䖑\B���q�Dm��iYU�n܆��F3M	��i�#m:����5��1m�����ƒ��8�e�,��*e�0��H�W,9$�s�WI�'�p�����z��<�0ۛa��T�*�*H Ұ���i��[ǦM<���^�M�l�+�\��H!��t�wZ�������R�����t�3��ە��=[�'�z��;�����Έ�9�gOֵ��I���V�$�Q4�L�s��+���J0�A�3[��$�9m������k}�V���յ
V���X�->�w$�l�4q*�6J�p_?��%��V_.@A\�s���׫n�I��Ko��}�~f+?c�U��4;�����@����=�B�\�YtUQ��o�T�u�\�'�{�jAX�&Ee>����?2�s-g䕏��A�@�9�q�We
�E�e@�;THҙ��64���t�
e��o�hx���F;�sY�G���Φ�2�U�T���l��e�9���0lg�qYh�,o�¶�2g�M��>#������Եȯ�n�!�=��YB�t�RV��A`��
�ώ�0�~.�([O�4ٵ��Ԛ���v�"%�0�<ے�q���S���\�}(�Ê������m�����\j�t�q��$�Cd����QQ���FWvX����x�F��kxU���K>M�+k�V�'li��I�I8�4�/|M�4�Kw�u
F���jo&7�U�܌�1GZ�!��7sM�x�Pկ��5�6
2���E�c��Ȫ� �r�NY�sF�cSY��-�Z��H���-�H�EvI#�d�M�h�E�d���
��/�RC�"�Z�;������\��(��Xt��}�A��v��o�I���u�j����P6�\Z������%̬͔
ҏ-C0py�ɹ�i>��9��GW:�j��n!�c�$xR+3�I,������K(��$��~+i�;���[�w��,��V���
�+3[�P�l;�=7�Z����x�OծAw[g���/�@�L�S�3�"�@��Ӆ!�~�¸ӭ'[���g�@�/,I��xd�I�RW�J��ֺ���ݦ��Ok�iww����-����G%�$�6ɒہUU�fʀ̿�~��/�n&�_i6���Z��ߢ�������H\}�y	@$�9C�j���:��˫�<Uyq����n5��5&�2��H7��T1�3�����C����ƹ�j����sico�i��[����{����*	Bck4�Cq�#OT��"�_�5�>(֭n5	�N�f����g��e�|�C(�ur~MG����u�^\çݢ��v�m�k[x���L�e�dF������6���j�T0Ǧ��6��pg�����X�YT�9������%��t�E�:ψ����J�<q:�Ѭi$\B��<�p�ʈ�a��X��7��#���^��H��=^�M�Ȋ�S扗%@v,Y*����ih|ep�7�4�a����M&�|3Heh$޸Ȑ�YT�Q���}�oI�mޟu�kr��G����-�f�m��E,
���$�cn@5�࿇vz���Vh|A�M��%�Z0�Y4��T���ّ��'#b�F���[�%�v��j��O�u镼'k��%��%*s#;|��c�H���I�w1n~ ���M~�-Z��P����i�b+���Ф��,=7y\�vw_�?��� �Y�V��bӭ�P��%ծ�Y��3���U�[X��A.�s�3�-��J�5[U�,ᳶ�g���oyroa��RG
委`;�d:�Ur��5x/I��<Iy�%ō���Db�EL;���vq���BIv��iiߴ���7�l�֬<7�q�-��.��	,���8��<�b�نܻ��?�Z�h�����DW�k�[��9�]�G���9h�hS��$6���[����Z֭��-��s���	.e�{��erV5�Z�,U�o�Q�]�i�ū�rk����6�Zv�a�E���2J΍�q�H2"V�Y�S�r���2i>
i�n��i�k�ra���_Q�3[��hU�t$��Fɝ
W<i�M�𕞚m<K}kc�M�}�PԖk����G�J�a�	�p��ٯ8Ԭ���g���;"�����rv���Ȭ�|1��O��Y�sZz����K����y-R��;����m=��x�$��މo$�8x�I9"�H����w�$���fx��G��W=�<�B���;��[��bzt���8�F�</�o^�ڸmGK[mp��c�G�u]�A=�G�ȏ��$�����i��ݛֈ�̹F��<���Z�7���uq�������2�c�Z���u�}��
�01�S�NMy�Z}�m��(�p?V�,�U�!Y�On;
�KC(��-��peݐy�k�p3�^ �r��)���V&�*�(Uc��U��Z�<��In�ıy���*]7��E*{�2����Db��I�eR5,�'�T�%��I.�VV\�����ľ W�mg1��K-�Dv�"IXǶ�I�=j�-y��f�X����X�nU6�U?x����Zr�����L�֟�߅1��m?S�O)�%�$��`t�=�^�;�}k]5t[k���C�_��g����s�U=CJk��,��C�~�c���zn14����+��!���o�g�����s�/� �V��W��U�иb=3����N҃�_�&Z4�V�0*���d}{W_��z9�&��U�׿��v��Z�ir�Q;}�j���t�s:ԕHٓj��a�]¬�$\�S���u�m3��*�\mA��{W�O'����>J��um���N��S]9m^ld�c���I��bZͮ~�"��6�]�BGʀX�;�$�:`z�W����uO��	�o���0��\��9�q�\T*w�����ڗ�(ve�7V��.��I����FY;�
�� �El�?��@����v@�!���oM��1�O��x������|}O��(|H�"���]S�M��E2���*8���Z���ݜm'dxQ�ָ�#A��y]I!yc��|���Fһ��88�5ݷ�n�
.�U�K��Tn���kɯNQ\���}6J�N��k5��_���ZEu��6ڏ���ע�q���@Zـ$c�a�ͺN��
�$}SRS%�ٕ���q�M�wa�m��ǭ�}>7L�{w��E���v�F{0���GM<�l�ό�*��ZJ�|�<�H�V
r�4(6�A�(��������b�+�|6�6���>�(�D�|�\0�ne���t�q�	��*�/L�]V:���	��B2�9��B��N9#�՞�hƿ��M®�o�i.d7M��ۛ�W-�X���$ʾb��v�{��Vee��-p�-bf�֦X��*��x>�s5���7~��3����j�����9B��ڪjp�F<3/�Io�C,HY\n�GJ�;�_��ًTywƹ�'��"�cK�.ݧ����xn�*�㋒��h+� ��\��/�|'���)?��14rp�T��:�+�+J��n��k���4��i�V�g?ʽ,$��7�s֗����h�w|Ǟj�Lj�l�/-ce��A�u��Xx~�7�Y�Ǫ��'�
�5j=7UX4�ݕcO�
�g�s?\�$>/�cg"����b���dw?����z���H�T�6e�H˾�0V�X�|��S������]�Wsc��8�Z�b��7Mܚ*�E�3����zZ.�u�^G�漶����<3DV��V�9�2c(�z��-������qg%����`���>�UB>�X��7��{*�J<�=s�~��h��k�o����;�H�9�_�5���)���C�2^ãh�����(3�ߝ�82����9^8���K�&�iZ[Guya�U�H�{U��B��2�!���/�<u�G]֗n��[h�d��\�D%o=c/������R�ƹψ��+�[Y!���յ�$�k�˧(����P��3��*�A��M-d)F��T�j>6�)���5�}��4"yn��$V
�H[���OM�?7I>�[o`�8�W�?���������S��cӌ�O�2JZBK�2K�s�
*��bV�s׭vFZhrIY����9��Ս*(�Eb�4l0G#��~Uz]j�x��f����F�����Y�VVa���}4�&�V*Q��]��yg�V%����.߮}E/���׆5�Q��X�_,&|����ҫ��VʢOR�*����C�=�e��䃻<�����
�Y�G�.�p�R�~�Ҵ����E��ڏZ�/T��'��:y)����G��ƒ����W2�G�`���2�5����SG���
z���Sdž���?��K����E��3x[]�ԭ��u����B$��e]r28��zW]a�WI��T�t�r��j�p�Bmf�M��yn7!$���$�f��}�$��3�`j�Y0�u��M8��-
��G�<{�P����e�QB1<Pű@�cH��UP>P��C��"�𝞃�h:>����M}l�
43�$��2D�Z2!O��9 �I�>��ɩM�Z�Q����k��eI�V3�~�y`�K�s���fkD���ܥ��pG�����6��]ܑ���D%��6�$���6��|����,�Ei#GF5H�CC�@��%~����Լyy�ˍC>*����SQ�·ȚbK)d�RĪ��r�����#��^-��[}wC����K���m�������$��7�Ԗ߱����Z�c�xn�+���W,��ܹU.�v��������8�|F��n��7B�`�X�Zl��6���<����cU��'����
I�c�O���S4er���4n�cqBH�2�I9�?��}m��2kG��G���0��VD��i�Ẍ$���F���k�V��G��e�{���&?2%V$��0�P�t�@9���oR�S���k4��_@%��&x#��S'`+�0x�o�._j6Zn����k�Y��[I9�DQ�I��"xј���A ����5?�N�R��4q%�yϕ�IJ	3��!�6�AA��d�SA��4״;���e��8 t�%2��@eEw�A!'#����O��A�n5}����/$�,Rdި�$�C�x�
�Y�ӵ
IԭZ�-2���P� �
̒�
��	
��Y{�k�	7�<&�,o*ʗ��0VU*�P+H�ь��䁴�3~�Z��G�����FϨY�h������>B�хp�8��u�M3�?�7HҴ�
��[X�葥�N�`�3+p���X�s�W?�W{��-H��S����#q	�{p�ۖL�����ڤ;�Nr5meMR��ݵ�d�,纷A!/�����i$�X�EX�?ci��lx^��+IP��H�
���o,�Hb���š
'����K�]j�V�?'�����Z�1ZY�ݭ���U3�.X�6�by��:�Ď�T�Ή}in��an�\[�6���t�3+fr噝�n�U>-���K�G_���I"Gqm����ޠ�� �O8��0B��S�=hmx��W�4�e��~ѵ��r�32.���'��'���gx��m�c�����N���)�[ �ۜVs�֞ǭxO�j���ky�\\�DJò��:�~!|�����\�\[�CH�6Lk������?.T�d0��"~q�7c��ִ�%x���>	�&�u;�t�2y���w���EX�{�7�#��6��5mf+-��G�59�i�3ygw^1�W-�YK\��:�X�]��VW;/����m�i������<'��~9��Y���G��a��mՔ�
��bI��I�	݁���D�����f�w���N��;z�qڱ��f�_�cU|�nP�h�\`7$z�*o
��I�[��̞@=
(a��g
�jX�K��KY�>X�
���z�~U�x
�B��Zh�m�
�hH�+�:��9渷���w|��2G�2�V�F�9�eH'9�ȭ��^gu�iz�3[���4Ұ�3#gbg�9�=�J��v���]C�qs��̼�TJ�{�jo�{YѴ�P��n�����"[��p:��Rx�5���洏�rH'�&���H��{�-hh!.Z�BWJb9�	�:ϣ����Ŧg(�X�j���:�k�C�i�+�7��	j핧ͻ����bڱD�W�����3��g�V�z�F��K��8א����#�>��xE�Qg�o��r;�����'�ui�Y���;���GLw�w΋�:��8�QVs�Ϫ�O�H�#|*��h���4���5�Hʩ���-�GA�{W�x�__|�F�����3Y�b�5ճ�>YU��N2�1�}3��O�>��W��=�Y.�ۙ-dc�b3��?�z<Mz���N�]m{��GJ�9T�՚{>���Wt����UE_��G���>�Gѿ�Cy���8��sI�H\�!��ҽ��5M^xt�x�Y�$X�皰�ƒ�ʹ�$�X߲��}��g�q<���E��
W�>¼lF*��m>��0��0���n_6t��:o��[;-�[趱�G&�;h�'���ד�3I��tڧ��6w�nuI&޶�s�`�f�>;�:�C���x~5�qd������{4i�$�^��_���m��ڦ�B�!�Iӌ
�U0���]��f��a�藍q�m*�[����1�g�da�c��FG'8�$�$���T��do�+�9���?���!��*�Ϳ;?W�v�~!�M_��󲤲�
�́~ԭ���N��Sf�O��Q�2`���6+�[�/V̹�Db��N�:�!��U3�n:�&�Q��e`�hUf��'�My���
��EgjZ��j�YS��QK�K�{���]F��5�GJ	,�V[N�%\ƌ2�v��y����vW�I<���WZ,���aVc}��wd:s��Tccɿk4�P�a�F��~XQ��.+̼3u��&�5����9�r���ɡ[�q	E7��$|���;~'�%մ�qnH��#�6xOƻ��%eV��Ff���|G������:F��'$�'�^��s����4>���j���^i��C	�_d���x<�m!k����c���k�%���]=д�ļ�]��?��5G��[����`E��r�Վq\��`�:��L���ˍw9>��޲�Q�bC&T�q'ʼ����T|A�\x�Q�;X�ȃ����U���U{��"�X��Q�5��.@���Z��\a7�A*�G��k=��$o$r)ʲ1VS�QQ�eur�d3L�I$)bOz�ȴ;8�~�V��k��G��tƜ��0�!-����'Q����u�v�v���0v?3��(�d�\�5��m��<b�	�#�X�����~;Wϭlwn_���BoϩI,�8�N�*&�52٫���M
e"�����Vgy�$h���\,`�c�׬����y��*����#�j���>x������>O�Vo��ȸ|wQ\�� Ό,oU'�ho'���Ǫ��3�8�OM#�=��7����m>&��i.��a�xIOK?٘���2��z�|m���vV�[y�,�yn��Ԍ�����ku���3Ê�*JDzj�s+�>��i��9OVr�)�Sm#)��#�8��F	��a�Y�Q�!O�<�8�%�=�ju�B�m
��W��r���Y����}�ɹ��;O�Q��aޮ[�vz���*KyK��:����h��g���r�ɔy�C������L�r�Ga[?
����Pi�Jmb����o�s�����q�1+��~���̜-���|Í��Ҥ]JEV\|�Y{12?�ײ�OG_���7�?�C~ʚK�	M�����<t_�_��t�lb9E랕�_��:N?�)7�~�7졤�ƥ'�֎`�<��]��iZ�i�i��!���V�P}��:*�����Y�����?d�5�&}�N�s)��j�ykd�yڧ�z�v�\S?���u~��^�����IO�����e-<��	'L�
9��x�;~��J�}JK��!i
�E��a@�=����R~�{��(�ߺ���V�~]J���ף��U����e_�!�2xj���6��֤/!��*�1�x-��μ�i���Y ��O=��+�E�4����"�j�-��,�89���7�ock�\H~T�nv�Wb~��8�c�2㳮,��W��1QVg�鷺��$Af�C$RUc�����ͪ�����.$a���O����wZM��wk%��yIWi�Q���V-o�UX� �je-��'��K�u�b��U[�����-|�(E'���D���f���L��IAC�0�<�z͂�Gv��~c�{��3mُFs�h҉9M���ZZ&��wV�]��+Zic��};T/y�xB(�ʹ�r+G6��KR횀����,��r\L�\�%���=�H.�j{��N�w�+�F�J˿�m�/�=��	Xr�ֆ_��4J��@�Z�J���n��$���Em�4�P�p3�3��:]$�6����O��V�|�TFN�,�F��g�mt�x�Y��]�̻>U*pz����-��m"HPq��sXWV�jS���l…+s�b�'���bU�`��neb���F(��mZ�m�3�K��V���̵�J�NYW�zV��c�о^��:U_
�0��N����67*��l�aN�B�p8��r+v_
���O��#Ʈv6ݥ�<9�F9�{l<��lr֪��L�<���vɷ���w�4A�����>K�[�1�'��ǁ����ޡx��kß�w�?��+����2Zi���oxX�@a��z��%,i|-?�<�-N\E��C�?`�&�iy���%��s<Scc�1�G�׈~�>x��<V��p����b!��ƻ��R�smh��,����FH�x���P����H�]G��֟m|1ٶ�M��2y��\����I~�,U<�k����Ïᚿa�ž�A��j0����T�z[�y~�Bo���W��9���kڭ��.+�?c+��o٣�~]�ԉ��D�2��T��^�s��C�\�W������jE�S܎�K��.Qҳ�6��²o5�AG�ox�����{�\D�%_����Qe(y�
ç�Z�fUo���\x���D���e��SI��_�"?�kRz���/@���
�e�%��*������%��[��1Yz���m縸��I�`w��xi<�����^�Ϋw4�7�Wv�);�O6�+M���X����c��su��^���)r��K����%m�w v�?����\��UY݂�T�X���8��|>�6��2<���|����&�������sXXK_,r=�G$�q���+H��v��.�����O��;y$���|���.N����U�[s�������[�:�<?z?�g��<pˆ��I]�*3��e%��c渆O�]vkI�t1�Mt�72-�n��q"���5	.,������q�W��>o�U�a4��K�y��C�f�aH꒔���Y�#�Ӽ=D�M�ig������nO�q��5�itx�#�<ЬjC'aZ�H�d����TV��
������ڔzM��K�c�5J����ڴP�ʲ�ѳ�\f��ɧ�nD�K	�M�&�ɸ~>��8�L�kFB<V|Ko$qt/��8�=(�3<����VC�H~M������Y�T%���o-��S��<p;��ƣ����'�?c����2d��F��N�Q�{�|��g'�[�³�́wiG�/@|�zW�r[*��y�c^��N���KᅜlK��bf��Ls"���П
�!�a�g+�vR���ra~~�jK[�F"�?ĭNk��}	�5a�~�/��/��z��7��?�k�̚�C$pF�*�åƟ32��̾W����W�'���[�+�73��\S�-�v`���y��<Ԋy���T����65��:l}����5�%��'%�H�v�G��c˒�<��Oך��^�_��vۈus����,W�g$!Vvb?��:�;x���M���b��b�%Ĝ��*I���?1Q��7˻���\���%��B*�#w'���no��gYY�'C��o1�b���hC�Yi'q+�W�����T]��\	�}�E����%&�f���D$|�ΪG_L�s(�ș�g�м���s�;�SVX̲&�R�}�Z�$���>��v���丹�`�D�eضy~�]��L���[?��I7�L�_R	��m��Fs�>���?�5�Ъ�#��4s�oh���ˈ�_ �I���������[y2�6���7��e�o�>݇��%��k$%�
$��$�D9�>��Ms��{�M��Y�[0/�:I## ��񢧉�j�(U^���ۇ,��/��~l�ѣ�`��
���A�32�0m�%��{
�Q�E��l_h+�º�i�{mϲ6+�;�uf�{ר�#�8�!M�.��4�s{t�Hے @-��<�02}����/�e��>�Q��k�F����]{���7��nI����
�*8�K�E�%~�N�-t>)�Q�`fP��6>���/�U]����Z��F��}rK�{�s��[�bП%�� ��r����	�4�c������Z7�4
�Q"+�BT�����ɯG�]��?!���<U�\�2��m���g��t�6�0y���w�K��%V9�򯯤���
��|;j���Y��8 �ߥ|��M��x�L��QN�b?¸���
E�i�_k�t��]��#�S*�S�=�-��U���nYK�]�c���s
�1ռ�������x��1q��6
،W�|z�I~�C�h���?:W�)6��^�ҼZ���=��Q�!xu���G"[#�*��}I�{�y?�)�º˜|ڀ�f���H�g-�'�τ��wrQ~ק'����7/Ќ�"�B��6�,�<��ɎG��<g��P�s�p�ɮ�Ub�� nv
�>��5���֌�u/,��-��j�m�E*��[>������;x�>흟�����\_�u(`����M��F�����}S���X�f�E����䍬B���x�ު4RЉTw�<%�gŽ���r�=�q�xEV=N�K4�*U!�����r~�}��j��KK�ޑ���^�$
m�Ϟ,d���`��c���8�[��!$4�:�x��)t�sX��G�
��&�Z�W‰�����f�:V͍��6�7�<�ͮcV��(��ߜ�p{b��KE��/&mBckgh�[���8�v$���ƪ�>36(-�t�X���o���z�309�3�։Q���R��dg=�f�>)?�S���"�,~ �E���$�
�8���:q������|+�6>�y�����9��.��U�S�i�kh�{�6nB�[S��F����~����a���n#ڹ�]OTa��Ҽ|%l�ů�\Hۚ�o�d�f��asI*���k�8�8U({���a�aWֹ?��-u�V�W?e�I	��s��
��u��"�X�P��xaY�W���7y9�C_U��𳏓���k������پ#i+�\=�����K������)��<�	x�##��̹���G��|��as�W����Ķ7v�`���I��z����m��{�(/�"��=��l]�X��{/���<w�'	z�=jIk?��릧v+�Y�*���}��8�h�>e��~����_P�z]��o�&���1ං�8,����@6�?�.��*O���I����u��ydu�#�<�LRDsA��T�����v#?=�7$�!��|#$-
ńi~�X��\��w�0���ج,u��T�O�/�uhZW�rЈ�g�x!���$�4�
T����~Kb%MYͻk��<\5�GG�uMF'��?��a�ՙP:�A���\����K��c�l
�&��E����>^��N���&׵v��-k�򭲽���@ЗpfKrdP�o���`}EX�k^���]i3\kP�rE�S�᧏
J�ɍ���N{���i&�xTM��5�*�4Qh���qt���m���L�#���|R��}�FhQ�^K�I�2<���1��Z꧵֣��F����*~��Y@u��a\q�r���?�mI��o$
�K0E��wm�c8����A��{OX���7����)Un�I�<�G���=�*\���cֺ�gᮃ��[�&��{N���O��,qi�J�lYoo�^��VSM���5�O"�����N�s5�k�۲��5��7~�d���q*�&�����[�G��w5̤��U�!���q��τa�-�m�ܸ �'��y��x�[��a��)�Wh�t'�t�q���_��ȣ��e�J��w�<��V��k
4wV̳-�;r��E�ϙ{D��ދ�����w1�Y��]�9$����޷K�A��F���:�/��|?�?[�iV�Z�Mt�17RȻ
3����9�y��Y^*�_%�/���ԕٌ�bֳw�ti>ϴ�×n��k�%f���I�I�W5}v�W�i�&wh�ڹŠ��	n�7~��a�r��<B��˟۳B�7t㎦�s�|>�$W���&�x<�%����=8�j��/�
�SC����'��$X���揉��:��s�Gv����Ȃ%-Ěk>5[�t���VfO,P���c��X�tɼ&%������LV[�A�,n>��y������z�֝�;u���U*�S�����פx���n�P��I���Ѫ��%\���Q�$��6;�1��{�zb��\M$���.[{�GE�(��4��J�sc?��1���Fr6�?\V��p�X�o�f2?_�^+�<z6��=Y����I��eT��QD���):zg��_<��ɑ��_Z�oڿU�]O�m�Y�Y���?.MxNv
�
�g�A�:	��1����\H�ʿ�)�|��OҜ3Rlw�ڴ_��������r~��M��������)�#ª������O
|�%���W3����������T=��U�3�����O5G�+��.jx���t�<�W�^c�
ľ/��.�>�O��F�;����y���o]1U-�F��+�/��p�?�����T���c�O5�	sM]�ܐ2zw����D���dh�J6Ӄ��T4c�'��ի��XG�C�c-Ϊk�;���f��'�m42��J��3@��O�t��/*��)\�Iڮ���o��]��3�����-{���Z[nY���y�*�hY�Ԏ�>���
3��.�Ž׈#�	K#�����s��uV�=�ÿ���,�uU
`�����������dU���X���M��g��Dc�j�:~�Tա:��I���ٿ���0��U/
�o��'���������#�cw�՝���I~�ڼ��j$���C�4���|�,[��~��̗N��6�[�d}*?�J �G��fн1��)xk�IZS����ȃ�(����@�~�^���|U�k��MB!
��s�3�r���7J�|3�sh��k�X���yr�kF�&�v��@?�|���n�F��e�'Oj������P񁞾��~S�T˰p��I�	%uwd��nݏ��/
r\��\�F����5"���w����ɩ��x��1�<�y�F��񫴊�T����I�9�j1��Hf_x�n���Ⱦ`*Nw��A#��i��w`ϟ%�/��M�t��n��5��bُ��_�9wu��5�'����ԛ��@ۤchI$��u.���8��9�ܐ�OLUo�m��4�n��$w�CF��$����;3��QUm��o;��<��W�2�,�ͺ����OὭd����h	��›���Fv�]+�hʏݮ�-^���mwa�3���f�@�^MMϿ����|^_��b�Q>���+���y��w�Q�_�@J���;Kr���o�u#�i/��k�{�%��h�k0{Ҿ���f�ïئ��
|�
OӵEGkR�jQ��m�%Z%E���C 9������Q���_���_$�J����'���B������t��M�YA�8 ��J�r�ԉF�!�k����׌�"�s6� �v �<���Ub_�V2.~܄�zش��M�;�UXЂ�q��ǥf~԰�
�UV;�B�A��\�w>p�m��7<�DO��O��[7�n�I5��|��w5�s/��Xm��.~�q��K�mB+e����D�I^O��R���
t�w�nt��4l$u���1�p7��*���Ֆ��|��q9�὎q]��t���V,�Lֱ���?ϥV�tؗJ��n�4�~����mvk]X�c�r@q�Y�v�P[�z5f�ծި�w-���v�$S/�޺�ǚI2Y��/�o�����?xV�k�y<�B�Z�d�g���Nk�ESJ�T�so���xN%W�Vr�8�}T�?��k��5�?xZ��>�����}�G^�?����$��Yv��#�z'��=�+	��?Z�2jӜ]);�k�(�T[�c�;�~��~)[X�����وR卽�*҃��i���W�_�\�+��O_�'�����V�&^"
�T0\�0��Y�H��Q��`�`s����k�V֯�i�
�{tړIq����k���c��€x�j����s�ߴ��w���Y��q���z��d�*k�($��x������AVe �k�gӥ9ap˕=��了~��O���G^|��k[]���+�V߼��h�O%�� �3-S�Y��a�g�I���"�8^=���5���s��	��kW��W�E��İm��6K@ۀ����rU��v�d��^"���d��$[&��m��������%k��'�:����ۛ[��9�9!x'x�,/.H+��#?Z���V�ł�SPh�,Wr�K(E�Ny�I�a*4�%9-WS�U\d����/��Q�ɩCu��2���c�[a]�̍���Wr�J��T~��<
ec��o�7�|l�9��
��M���q��ּ?�����
�F�I�u��6��D:�O!r6�p�/:��N�5mk�%�֥{-�͔RH�s
Ő1�u=:W]W$���U�2�=���������
;<Q���
�z��wpz�ֹ�Gj���
{��z��xp=�+��S��PK!����images/prev.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��Mhi�	Az�]�-8�W�–=�t�P�B���=�a�96-^{H�cS����BiKO����@@<X�a�C���*�����d�G��y`��c~>��y3b�&a��C�k!�c���2!�)�)�)���(�=p�z̟�]lҚ��S2�
�~ ��������'������6��{�^B�����n��4�Z�f�4{}ͣ�x�v�
�ݫ2��1�S�[�DW����߫�ˮ['SU����3���qC��q�Í��r=�B.��VF�V���o \��1���_'��_�jXA��\����;��ku��	�D�<��f��΀	<>F��^kn�#��7�}j��l�t�Z=n����GN�j
�L��1��=M5ىN�~AF�Ju�B���曜�ĠO<E�%�M��ȡ�g��p�=�|=��]S���������.��f�A]��S�Ɉ�%�9�t#��ʤ8�vR R R r!G�P���h�L�� +����#GC~��-��@
�@
�@
�@A��8�����S{�W.ˤ��G��,O���sY�n��L��"�u�{���R��˄5�����
��,��ՃG��\���Z�~{��>�Ic�zً��j�mQ=����Ά�L�$@X��e�N����?~8Q���_xX��e҃�2�\y�ܶ~ns�����X�+�i"�I��֏e׭�w�ߒ2�,O�xO?�X�u�u�{<Ci��x�h�K���&����c<�a���2��y�8ȿ8<Ht�x�f�j���l�-!����t�H��mn4�[�
�01ɕW�ڰ�����ub�4K�;��B�,��>1��D� Oy�o��%��<W�9_˼��p�$y[M��BV��/�wx3}�2���S�^�x���1�N���RF��$�IՃ��"�Bg���,���{��sY^"�	x}�Łm��,{�Q=X�ha4Y�-!͠�S!����|��3P1MSF8p['�)�)�)�C���&���΃�bXIEND�B`�PK!��4oimages/menu-arrow-orange.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b<� ̀�g```�q�pF�b�
Q� ���� ��[��QDȍ(����V	M�bj`IEND�B`�PK!i�'q��images/fancybox_loading.gifnu&1i�GIF89a����DBD���$"$���dbd���TRT���424���trt
���LJL���,*,������\Z\���<:<|z|ljl��켺����DFD���$&$���dfd���TVT464���tvt���LNL���,.,������\^\<><|~|���!�NETSCAPE2.0!�		6,�@�pH<"!�rI�|��� U��!-JF#[�u�t�BK�U�}���e�^k�w���K!63_2r1B$*B+(-1/$5��&�()#�B,*�!0C.%�2h�0J"(3h0$�6*'��u*�+"��u6к!0%���й�z��*�*�٠��C�,�9X��ă+�d���™*@l@@�;�B �N�1	V<��
�H@b���	Qi#1��PB
)RhPa��		3f$�Fa�A%8� C�f,��"E�,���.��:4�7��
'n
Tr� 12�
Q!�Ĺ%X�!�		4,����DBD���$"$���dfd���424���TRT���tvt���
���LJL,*,lnl<:<�����̬��������\Z\|~|���DFD$&$���ljl464������|z|������LNL,.,trt<><��������\^\�@�pH<0` �r9����Kl#$x��a�b"��ˌֱ8.��pe�@����¨�M����,K"i$m~to4	"B!! 0 
#&(#
224+�'iB%"�2B�!j,�-�B�$j(
C),	,ܮw))�'*��w. �*�-w4�.#/*��C���
���E5�Ȧ��e��B.&��8�E�$C:�x0�<�[�H�†
)$T8��N��$
9�@��7W<��eS!)(��ᦋ�$�1���x��<pjH�$�a�ܹȗ��/ܕ�o��!�		3,����DBD���$"$dbd������424trtTRT��ܜ�����
������,*,ljl<:<|z|\Z\LJL������������DFD���$&$dfd���464tvtTVT��ܤ�����������,.,lnl<><|~|\^\���pH<4D�ry(���c!|�*KbȀz͢ӌ#��Y�e�|�b�'�H��6�RK/	h-"(0R%s1BB.
z##'#3�+&/.hB$�2�B
�i'�2�C$1-iC ��v!&#!%��v��%

%2v3��Z$�"�Z.NH2���xA�$.h��F����Q��(�0�J �H0p���N/p�T�
-��I��/����"K��#n�����,r&���1U�	�*[�R�b��o	��Yu��=�!�		3,����DBD���$"$���dbdTRT424�����䔖�trt
LJL���,*,���\Z\<:<������ljl������|z|DFD���$&$���TVT464�����䜚�tvtLNL���,.,���\^\<><������lnl���pHD�L�ry@��	P�!l�FK�(vI�@ *�d���J,��E����C��**y�$$KBk_0
B"B"''.\-!,�3�'
!.gB+#0*�-.
'h��w+
�Y$(C-�-�v-)�)��v3
��
".����0����!��-��x�$K�8�Ⴠeq����CT��"�g8�@ǎ��X�S8��0�@I/<t,q�
g8�l��KXu�A!��(|p
j�v(p&ib���n~U��,o	��d5�k[�R���]!�		6,����DBD���$"$dbd������TRT424trt�����ܴ�����
LJL,*,\Z\<:<|z|������lnl�����윚���伺����DFD���$&$dfd���TVT464tvt��ܴ�����LNL,.,\^\<><|~|����@�pHlY&�r�
����E&�^Kb$�H��d��B�"u�E/a��`A�TJ�@sK0BzW1%�).B!!I	zVe-+n'1�(.D
.�B&�XY�.�C	'�Y-+-C&���v'!!!(22�h"���2
v6%�����0|�:1��>ؖ�0��"L 0"I�Ttp�b�a@@��
!.hT���
�`H�I���, P� �L�3�L����D5X�` &��Y&���&&�`���j��h��B�e���hE!P��D��,A!�		6,����DBD���$"$���dbd������424TRT���trt���
���LJL,*,���ljl���<:<�����\Z\���|~|������DFD$&$���dfd������464TVTtvt������LNL,.,���lnl���<><��̼���@�pH|�(%�r�8ń�TJ!,�$K�I�Y�B���HA�,�+�J���Z�XT�� OJ+I6(-a
,B1#m6.3
^3\]
,++"^13�3+3.D! "�hB+
��K1�" iD%3j+	C+��u6%�33+1�!�	5�&����2��2���-���BT �%�u�Q+��h�A%�!b<@PP�3ЈHF�r����Dh�qC�'.CG�t�@���YąXA�g�*����4^�"l�8p@�6��5͐�A���P����?�(��B�TR!�		5,����DBD���$"$���dbd������TRT424��Լ��tvt
���LJL���,*,���ljl���\Z\<:<������DFD���$&$���dfd������TVT464��ܼ��|~|���LNL���,.,���lnl���\^\<><���pHܰ*�r�����#DtK�G@{�b�I
0sTY(M�EK�ÁI�5<�l`sL#I544`SsP%P5.\4e*
+I�#1D
4+�0h51�i#�+4�C*1^Y*)
�c��*�v&�Ȕ��v5������v��*���i��C���Q���;#�=����b�<�*��!�Ԙ�„�(f�1"�
4h�pA�-P �@�a4, @CC�O�'@H����1 X@�J�H0b	���P)@��+jh� A8*i��jvË*�@��B\�x�$�	!�		6,����DBD���$"$���dfd���424���TRT���tvt�����
���,*,���lnl<:<\Z\LJL�����윞����|~|���DFD$&$���ljl464���TVT���|z|��������,.,���trt<><\^\�������@�pH�,�r�!%m��"d���!�@��HY��\�l�K��m��	�Ƹ,D8�Y\fL$,B!1QS	%B$.Bl^�].	f', 0

I�\$M�Z2	
)
i61!��K$�
#	�C,wOK0 �,�,^u�..w\�Xj-�-
0�\�Y
�-
�,�yu_��6%jL(�!�҆Q��!�a�C�@����	#��"&8!�B
#<(P��@p�BB�&�H@�"PS	2�A#������8Q���$p@1���T����e봐��Fի�6pxQP	3(
 DB:����Q� !�		5,����DBD���$"$dbd������424trt���TRT��ܴ��
������,*,ljl<:<|z|\Z\LNL��������伾����DFD���$&$dfd������464tvt���TVT��ܼ��������,.,lnl<><|~|\^\���pH��r�)=���
!��Y{l�������KJ�����Hxx���LFU6�^!1QS!oB,!BhI�H%1	&�IR%MWf!)B1RVe,�4!�D,GOX)&I��ǥ�	!�
$��r54'�
'4�����0��r&	�/}B/.e%33&�C%TlP����- ( 0�B��T8�@�+^\���!���C1fdH`�/
8�xB�*	�Xc�N�"F��P#̄K���,�А�@9NP���PP-q���ѡ����hA��گ5( S�ȉH�!�		6,����DBD���$"$dbd������TRT424trt���������
���LJL,*,ljl���\Z\<:<|z|��̬�����������DFD���$&$dfd������TVT464tvt���������LNL,.,lnl���\^\<><|~|����@�pH��r�)=��a%l>��i{l��#;\m+����8���wj�&����%�bQS%R%P!h6006�H[!33I(��%%D%+�3
|6�d3��U"$	d'3!w�--&o}G11��#��� ���-�&212�2&!�+!�!WB d".K%h8p��	(�@d��*h81!�>1�EH�a�!�0�1^�p�BJ2���1�R�c�M&X�h!ąwJ����
&��@�Л80P��	��h� ��#��老E]Kb� jAZ�a
(h��fo�!�		6,����DBD���$"$dbd������TRT424������trt���
LJL���,*,ljl���\Z\<:<���������|~|������DFD���$&$dfd������TVT464������tvt���LNL���,.,lnl���\^\<><����@�pH��r)[����%�K"�tx����H�a$R�ƒRኹ�H'�S�4�|96i)n%R%U%T6))
i!a%a�)��PW,2!R2C(�0fRbE&fF%�6�-!s6�%�  ��
4�4
��#�4�'2&�	�s2�WD!-f	-e� h��`32,̰�A�1
�X�`�!�J@�q��G^lL��"F�F�0cC�*&X��E DP�``�J�0T��
��0b
2Xx�@E�h4
�T'�&x&B�3����ylI�EMk�B	ϔ��!�� !�		6,����DBD���$"$dbd���������TRT424���trt���
���LJL���,*,ljl���\Z\<:<������|~|������DFD���$&$dfd���������TVT464tvt������LNL���,.,lnl���\^\<><����@�pH,iH�rY�D��L�!�K��I*�)a�@�g���̈́W䊹�9>��L�,_N64im
!%U%+B./i/* c1%|�..�!&0�Up�1C#�.fd!1�D
*fc%�6444es+�2*�*s6c!�1#��	�c��--
�s+���62f0``��#FP�R♀�lL��p�	-0�E�	iH��ЂX@(тB��[�L��
).`!���G)RD@q��!%�'

R�xp�‰�YP�HЀZ�'��wB�Q�thS��l��*�=pDZ��;PK!-��44images/blockquote.pngnu&1i��PNG


IHDR*#�̘�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:3FD5C73ACA4D11E5B2C5C195C7DE5D5A" xmpMM:DocumentID="xmp.did:3FD5C73BCA4D11E5B2C5C195C7DE5D5A"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3FD5C738CA4D11E5B2C5C195C7DE5D5A" stRef:documentID="xmp.did:3FD5C739CA4D11E5B2C5C195C7DE5D5A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>l_O�IDATx��[K�@��4��^�ZZ���o����lKQQ�R=#XB�3Y#���	����춒$IPP-x^��ৠ<U8��c��у�@�:�	/������0u�K-�2<������7*Hp=�͊�o���B϶��9���!�!�ja���k����j��pS�.�\ZV��e�y�8,0_�QNSK[m�&r���T�w
,�S~t���|�~+08��MQ�Y���5:7��Ϯ�S�<[�(SMI�r�M�T҈!s�?�۠.��ç��
E_�]�����4��v9�5-uͽ?��)i�x�7y������UKA���m��$І"�Ŷ-�[Hҳ�B��t�\UJ~�W��%�@x�����RM��a[+?�ZYA��J�u�����ԃzP�A=������=��"�IEND�B`�PK!z����images/prev-green.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx���kSi��~Yh�j���k�H(tL���сq�n��f�e�#��N������Xt��Uk��3��/�&"�T
w}��Inz�k��9pi�旤�=�8��]�)ce_������搙V��R R R R �n�����&Jh���:��œ����V��2�;J���!�v
�$0�_5���3\O�zd ��[�&�^��2ɖ�����T	�TZ�W���9y�
��ӵ��FN����e��A�f��
5'X�?N�;2����O<�fZ�Q�p���'��z��r�i�p=�Bէ �����k��k�����u��*��Wt���i�Zq2�W��?�[�j-�
���QѸ���M�i%}̩�A��UI�����*H^�.���*����\�/<��KF��%v���^�ʄ����w�Y�;j�����ɯ5�T�I�����%���B��I-�h�'�2`ue@ R R R ��E�z�Ͷ�J��^R�3<y���o����U R R R ���^8�>�������m����!�h_�'T0����u��=�JG�_�銟��-���5VR��>���;3���:\�d>�<x�K�ѸƗ�\'�Y���s=��J6����mH�]�$@O�7}k��;3���������o�h\k|�T:‹7���'q�0=-�<�E�]��x=����}re�>�t�'����؟S�Z7�<b�OS�?۞ݚ���ؤ!ߞ�����x�>}��,r�v��8h$:Ԟ��5�Ҟ�-�=�TjP�%X\�,�zB��y��VAj��5ƕ��5Vwf읅l&Œ��܀Aw wcl@���&�\���_r��h����䂩���l�|ӷƕ�K�6a:ںR��VvRO��4����T: ;@4�1��JGL�jEO޸��a�����g|���~Ӏ
�4o$���o3����m��cY����B��������*��ѥ1†�:�H�H�H�lB�&h����ϩ��}wIEND�B`�PK!�A�l��images/menu-arrow.pngnu&1i��PNG


IHDR
1��ctEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:FB064B27E14411E58434B404B04D2509" xmpMM:DocumentID="xmp.did:FB064B28E14411E58434B404B04D2509"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FB064B25E14411E58434B404B04D2509" stRef:documentID="xmp.did:FB064B26E14411E58434B404B04D2509"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>+}(6IDATx�bd_���Č0n�ULP!�bd]x�dw�s+1������	g�4��IEND�B`�PK!@
���images/grid.pngnu&1i��PNG


IHDR�́ntEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:FD9F21BCDB9911E5AB74887779EACAD6" xmpMM:DocumentID="xmp.did:FD9F21BDDB9911E5AB74887779EACAD6"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FD9F21BADB9911E5AB74887779EACAD6" stRef:documentID="xmp.did:FD9F21BBDB9911E5AB74887779EACAD6"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���EIIDATx��U�n�P���@�=���O�P���t�6��v1i��)�nf�Ì��IQ��ihx
MӤ��7 �m�Ht]�l6�(���4����4���@s�e��&8�#�N֪�>%Mw4w�v;l�<'k^R��$n$ç�4M�8&�,�%�'I�~y�'�����]��u]Ė��64�����n�[��}P��,�b�	�K�o�3b1�����>�z�HB��>T�/!*Ph��;0#�����eQ�� ���WL'�8}ߣ:���ؠp^�|�x|{<�����?o�����e:ͯH�N��<��<϶m�����3QU���Z����IEND�B`�PK!t���DDimages/next-dark.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FoIDATx��?H#AƿM&g�k����Zy�kbclu�.�5���<0W	���)/X����X��4na6�s���Ĭ��Fw'�2�,����7�Qp�a�s/e�|���0�$H�$H�$H�$ȉmYȩl_���߰w+�?n�iB2�Q�p<Ƙs���Dd^�Ǣ�'u�l��,��'-��Q�Um�a��VRx%�pu�%<�[�}� 7暜�2�t@�� �Բ�	P�p�^V�P/A���a�<Ik���<�䪍$;p5@�g�I7˺B_��Y2�L�A^u���,�-��gG�)Ȉ���ǬW�tB�F�k=zv�2��D��y��
<ɧ	Y�
�%��,�i.._�l!���'�U� 	� 	� 	R~cI;[S8���3p=��\��i���J�� 	� 	� 	� �2���5ڹ<���?��u�{�le�E�J��i@�z�t,��V�}��uJGP��@�J:��w���	W_,
�x~ӔwM�W��Ǣ���
�������v.�b�a�(G.���&�]t���--���>g`^\�W�x	�қ0O���cK�`j
���Hk��z�C�@�uZ�BY!x�8�=\�-P�Y��a��k��m@�fW�����z`
@KVȜ��q�}sD֙��wv�H�v.h��)#������'�`j�}�շ�"�R��R�/�Q��7����h�Xe�v.~��܏��SSP"�<o\��
��F:SzJ��2�w�;��Ez�Z�@�f�4(��g� 5���"���ӆ�%�$����4қP��`�q��9<i�N`�����L�Oġ̇aT��
[)��W�$A$A$A�C�ĥ�9/<�2�IEND�B`�PK!*,�ڶ�images/logo-white.pngnu&1i��PNG


IHDR�-柬	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��]ˑ�H}�1�&0&0l2��L@���	�	�yO„�a�0���U��l$A��h2���	��z�/_}�&��L�P�l��2�^у���5����ބ1���=:��{�l�m72�v����K��Z��r��gG	�� _Y�
i�dO2�Xۯ�����7ppҌ�!�I^QO����%����Yg�Vv�K$�S����h
h��"�se��%*�I�0_n�zf"B��nW!�L�!��U��O!�{��&�W���K�.�}o�ϰ^~/4�,�F�j�|�}*IOBP�N,��e�*郎e�h
�˨YTQzd��;��T�;.��(�j��E�r�ta�ヶ�;��a����
���KSs
V|�?�b�,�!����`K��v��K���eY`�껜Q���s�*��3
y�����Քt~�y�����́t̯RSN��rJSa�^��F>�{�13��Hï\���;�����r��"	U:�+}�,dK���{���2vj�/���f���ҩ$��H����箝�,\;��EQ
6լxu���AJi�^^}�r6�:�����=���a��"�㘆�,]�
�=S~z�ٓC���M��le�X:�i�.���ߋ����%Xr�%>���\�C9u6X�@��덼sl! ^
����u���%�)�@�m;�z���{A�P��O�4����OE������m��H��?vE�l�EI�V(6�\'V�(%����m|�T�sX{��b��u�B:�6�ѱ�	X~�8��>�����D�Ö��3�GjI{"��2�F�4u�q��d�K`y+�mV�s?�.�Ą~u2��D���XjK�Pk�%c�F;t3�$`�3�%|ϰ��_t�8XL��u��`�Xu2�6X���k��9�d�	�[�_�Ϊ��˺�gL���,&��o�3�k�xB
�fAD+X���/��p��簻/��N�+�x�`��T4ҕ�޺���]|��L�I�TG�J��Z?�v��_٬{	��
֩����������a��c�1���Z�ebӍZs��Ə\
iEw���1/�'vU�v�p�`�.������!Wp`�:�u�db
����R�ց�i!rf��OS����bb|/��>oh��e&�p"`�Z�wâc6�X=���e�`�_�k_Y�nO��3��Z�?���vt��;���y�����D5��Y�`�H�7���ّ���N����T�nŎ&IJ|N���\�s�c�,��b���j5���xd�̗`��_�VO�]p߃5d<�D�;��P�R��t9�+㇟�|I��?Y�g�aܹg1��5X2Ư]�md�=�tWKzR|?W�	,����˱���7�IJ�K���Cw=��.gF�r�9��ef�m�Gi0z|�<���E�u��.e�!�cQ�`��QgD$�m�;����2�`���V����3yc���;�_��ޱa>�Ћ���JF�6X�ɞ}�u����*:�Bl�\XA׃7g��d��
�H{"9�K܏:?�G��dc�=��)L�	x9�sW�6�E$0ӟP�<st;]MJ�����+
����(f.~Mln��#]����^5�;&{�m�0Up��q7W������h
���y�>S���ט��Cj��H0WoB��E}�H��^t`���ժ�g;l��`��,w)d�F��]��ڏ3�6L���ڰ����r,�]�IEND�B`�PK!\��images/arrow-right.pngnu&1i��PNG


IHDR92��sFtEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:4FE1179DDBB111E58067C4917A53AC47" xmpMM:DocumentID="xmp.did:4FE1179EDBB111E58067C4917A53AC47"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4FE1179BDBB111E58067C4917A53AC47" stRef:documentID="xmp.did:4FE1179CDBB111E58067C4917A53AC47"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���vIDATx���m�0�C��X����@:@2�������t�0=���B����I��9���L�Fl�â�������$$!	IHB�o����u������]q��%��x#}��>���TӼ�0��{�s�e_���K�P-Cn�|AZ;�j���A��v�q�g̊�[����1��sҵ�i`N_B�4��
i��3�Z���ނj�l��� �D/}ΜI�$����n�Ӓ�&��Ѩg7�������)�3����������W��=�3������}[��Y	���l�b�_���O|�(0�&x�}�Rx.�-�)<��s�	Ux���
2s��!�$$!	IHB��� 5X/�}V�����IEND�B`�PK![מimages/menu-white-arrow.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b���?🁁��ab�
��	*DQ̂��ς�|ne"F!7�������Gu4IEND�B`�PK!W���RRimages/fancybox_sprite.pngnu&1i��PNG


IHDR,���P�PLTE���������???������������ggg������???��ɞ��ggg����������������������������������NNN���555���������zzz]]]hhh,,,���"""���AAAm��/tRNS
#'-:DHSU]iilmyz����������������������/�IDATx^�[s�L�C�ȷ��$�j)f
��������M���X�7{��Л�:=#��*����:�RI��$]�t���F��L����;��k���ė��7������M�l�{A��2K���>�+�.��a�j���n���(���UZ��Dzhh���i���{�Ț�n
�[�3��f��9f�_��bM���TX	�.�˰�/�9�]�$��jS�G6z�@v`��C���hR� Ž��,	0e��� �_p܄)�uz�H��%f˒����_�s:�|u��%�R�
M�-�Bo�Ad��ʡgH/�)~�	�r�u�ds�S��(�Ze׈�ؘ�Qw0��c��P�=��"�[F�)�m�1�I�Hiq��S���6�d�
*sR��9v�m����\�$�˸RI��xē�sl��I��i�=�Գ-�lVũpM�nm���y�B�Ŧ�8*�C5��_���r�����C�_M�m�$�|,�l���O�(�
�e��D}�_L�i��R���@�do6~ÑY��'�&�1�e�X6�U�Δ�P�
O]�-_0V;&6��w�Sz���	�W��6Ҵ�]�T�G<�J1���x�X��cG�\ͨ� �^��ە��CF��G3�,]j~vN�c_�H�	���y��2<�h+�U0R��>���}�C93-lD9Xb�)�݆�)�ٺ��(��g�]ܟ��?�W���Ң�r���"i�Ѩ2&X]�%PHySD�a�1��!p���S������Ɋ�}�^������2���%>%���0pmn����`6�p6y%[�G�I�y�`�G�*�ݕ�K] �GD�\��t6��t-˶m�kl{��-���T�{S�7eon����uS
Y���ƻ�Ma��6�%��}S�9i�>p�qSV@�ݸ)��
���[��)ߛ��^�P�/0��3���o��C�,����#���e�"�,�Uv���|,�p�ƍ7�ou����
�-�j���^��e\	b�IEND�B`�PK!��`��"images/construction-prev-arrow.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx���Ky�?qL	kҴP0�nDJe�)=zjwţ���bV�L��K��ŗ��K-=��(�B@LkpAp5q�-E;L�Fb���I����N�1~�<����/�4�U�H��5��qH��6�H�H�H�ȦǮ�[�:���M�hM`�+�\�y ��p�����?ToȌ��5,�����Ϫ�$�	�r�(��"	Dlj��-�l��k��Tm�����tqLިC�@��L#^��
�lh�X��:����'�O�F���~�(0�GH�\��K�G�g���z\�s�N׭̖� �^^,��T�+_��.�3�_�����?��yv��@�;&�nF=Vj�uu��u��֊
]BY�'%���}��V��f�,�V���Q&;��8����J݂K�tҭ>��,�5�+
����^�N�]���;�����k��/��ɯ
�ԛIT�y}^񓺍%�4�4"�neR:nwR R R �
!r�����L�z<��04
�7<
�gdvH�H�H�H�t����2GW��u�
e����9��b�R[�Ȥ>������{�����T�/�`l0��"�K&���S��n��H�Wo�����������~��av��jj�
���t�9�¢�2G?O?�ȝ�g+����vb<���`�?�_��_��!��w<]�<ML�G�n09�M�[cT�e߭�s���CLNm����R�Acs��=��l��xvG�K�a�V����N��8��[�	��]�� ��4�=���U�g�m	�Kg��-�9�2����F�eN�i�8٬����幞��_�G-�RO	0<��
z"dx��W�?��3��<}��C]���+�V�i�7�}��K����Gٳ:���9^'��B.\Y#��m�o�D�`�����[�D�Z]��nr�7�zَ����Km��8�-k�GG�$�A�
$�A���2&+-!�f�a�c�֘�4L9!;�H�H�H��B�š�oYA�KbT�IEND�B`�PK!�5>؛�images/prev-blue.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��KOQ�3�46HR7��4l\�J�pӅ����Д�	$~�O ���⺩�颛.����Ft��J�ۅw(��0��L��3~�ǽ�3W����@^���A�I�I�I�����|���
6�2Q��`e@���`�yoȕ���8�]�b��׃}���V3\�*��^J�`��Oj=�s-�,�GN�J-�@��a���hx7j8"5�����y�-�����1y�'�u=�:���0͓��2�b�t�"Ojr"rR���*���-��mĴw�y(�=ع��:	�	�^!�s\(��\�k�6T;��rc�G��=��}�{��3�7�1��Q�3��+#��AV�ѱГ���Fob^U�Rg@ig� 	� 	� 	� 'R��{]l�c���'��i
>��X}>EՕ 	� 	� 	� '`���0�l�����*2l��K7���s&�<��b�
֎K�d� Aܽ���%R���-�N���Q	��6N�p��5��2C�{��4t�����/3���z�j(��3��w�����I�aA�vN�wJ��W�7N��9�����m䬬}�dA£oŞ�W�Jp[Ź8T�ی�Ys6!��2kY�u1O���,Hẙ�O�;��Ǿ�3���n�k���kJ �|�@���ŚBT-6�ٝ�;��Bx�c� 7p�T�P�Su��5�)��zדYO����I�[v$���F�y̐��&1-+%���v�c����?��S�s������\�dt�@O�
|NC�'�0	X�1 ���$�G
)���c���.���ap�:;���V]�d�mHYϢy�
�I������؆|��%��V!��ݡ�m���U�ּn��(5+�c�
RE��ˈT�)��$'�M!�*m"3��ӝ{
����Z�$A$A$A�8����o��_�Ǟ�@IEND�B`�PK!_�+�	�	images/loader.gifnu&1i�GIF89a�����������ర���莎���Ȝ����ب��������vvv������hhh!�Created with ajaxload.info!�!�NETSCAPE2.0,�  �$AeZ
�<䠒�ÌQ46�<�A�
��Ha��:��ID0�F��a\xG�3��!�	�O:-��Rj��TJ��*		�
t
��������~�"ds]�
�)t��-"�i;H>�n�Qg]_*�
�R�3��GI?
�˴�v$ý�j3!!�,�  �$�0eZy�0��q ��P�УW�)";�qX�^�D50���	Ո<H3!��k-na� �(�i���d�$P@yw`�J��#
?�
y
�����o���g��
f���'8��{'Cp`jn�"�
2�{�`x�jy�4�C,�4��o#n�$��ß��!!�,�  �$� eZ�$�2����q���ҢE� ҉�p$H@D/���G�DÄj8v#��P((Dƶ�� �N�(3ܴ�#y�(@	gUx*
kK�)?K

���������$��"
�*���K��
�W����x��?�G��#�Wк��n�h�K,����+���*!!�,�  �$ eZY$1��Q(c����Ң�O'"�������� 1
��q؍d"�A
�V�x8p��4988MRC�@	e*3@
iI�)
'
?I���@�������,����#
�����5�,�����"�E��z�?��@�E���@�����)�����*!!�,�  �$�(e�$ÐĠ�
C�E1
	;���('2$��!��DS%!����)e[��TE50�p�Ũ� �F�
�{V8,�%`3
gI�w�3
���*������h�"��)	q4��)#�g��#S�$��"�$
��>��%�`���r�J{
1���$ʈ��!!�,�  �$@e�6$��Ơ��`�3*�=��
��� P�\"F�����`P�-����d5V�"�2�|?n"!(
�����)e��4xyc?		
��3������
�#wyJl%
o�^[b_0	VT[0m�
$�4�>�'VZ
�c��3��$X���%!!�,�  �$`e�����:D3
�H0�,'j0�Q�s��L(2HM��j#�ȉ�B�\O�i`u��=Y���EVL=I		
��>������
�suIWJm|	\"_�b0B��cV"d]*K1"	H|@B?�I4��#�S$�-|�|!!�,�  �$�4e��a��:D�h�����I ��/�K�$W-�	0(`3���F��=��pf@�t�Q����
{f~*���y��S*mg)	�enu		E^Z^	g@	kw(b&	-w#"�xW"�t
#�#�%U$�`�t�o!!�,�  �$�4e��a��:*����1����v/�Kd��z���<�p6%tP5���S|���H(�F���c���`05xz*|~�v�G�0t#
	Fh�0
#Cd
1
�I�#(i	-��	�	uEL	q��"	h%�$�$<��q!!�	,�  �$�4e��a��:*����1����v/�Kd��z����p6%tP��t����5ũ3��n��G$�
�@a���wy{hoFS>k#	FY"�%E
Cb
A�I4$	(z�:2��
mI		L�l#�#
�F�#�#�>�F!!�
,�  �$�4e��a��:*����1����v/�Kd���V�tKG��22��7�D"����$)����Q����qp8y
l
|~���6z�w2j#F
�"	�%
V�C�
]�6a$�
Q�:2	\�EF	I�&�x	�"͓�F4$�]�#�x!!�,�  �$�4eZi䠒J�16�<���B�
�?$r��T�HzDP'"l�(�1�5�y���8tg���p,�q�M��*		
q
��������"}�#	b?y{		{)�s	-s�:�9>e�E,C\3
��^�3[�
������S��|���?!;PK!��}}images/timer.pngnu&1i��PNG


IHDR
u�4JtEXtSoftwareAdobe ImageReadyq�e<IDATx�b���� ��"A�?80���\hIEND�B`�PK!�c��images/logoindex2.pngnu&1i��PNG


IHDR{\3�%	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��Zˑ�0}vM��p[�C�C0!�}/�	�>�Ʉ`B0!!xӪ�U!��Sޮ�|�j����n��$)T0��~K��W���xr�ЯP�kt=~��n7��k�z�"���YD�?i�bdLF��\h}/!k�kW��i𗉹򠞽��\dA߭iͪ%y��
`�j`�IO��+^��
m�茾��wKM��i�;�pz�׎�5���CAk�	���W�qԄ��,4�\ʸC�H�J���`�KLj�x�W�ٓ����ӂ��p�;�?��MZv�|���)��p�ͤ�W%�4�T�#�)s]f���`g̫b�jT2��Y���;O�

�Aa��|��^W�n�-j���L�'�FS�
H��`�|�I�we�{�����hF��$�Ng�ݠ`W�)�]�
u��a�)�!�'�3�W�ږ��r�;��-�Gf�H���V!��`gf���@�S'	)ձ�^����W�K�L��@�-&�U��|�p���—.3����&��ةuG�h�M4V��lʥ+�㻶�T^*�l��lVt�BL��������P��Vzb�5����Xzг�m���Ɠ�x���9#Q�B��bu��O@�h"�w��5Dc��YԲ�'�9���_�;!c&��7���i#��Q��Π��R$�
�@y���P;c�kmY��4 �md���|=[(����F٦Yg��g������������GH~KG:P��
�'�	�;O.���3�W蘩�i=�F�J����l�<�A�CKG���;:�5Y������:0Ve�ʲ�F�QY���=��DދK��:Xlo�{V�����{7u�]*!�6�t\�)`Af�o�\ɐ�G|�彵}db6e��	��׾?}	Z�y�4o��\~�L�F[�CJϜ>-ܯ3��-�IAQ�GN1ե��#�ֳe�}�:d!d����>�|��Fd'��ǯG�g��ѽY��w���/&����9L��ƺIEND�B`�PK!��images/arrow-up.pngnu&1i��PNG


IHDR
��~�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2D81E2E9C5B611E59DF3A2A86729D0A9" xmpMM:DocumentID="xmp.did:2D81E2EAC5B611E59DF3A2A86729D0A9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2D81E2E7C5B611E59DF3A2A86729D0A9" stRef:documentID="xmp.did:2D81E2E8C5B611E59DF3A2A86729D0A9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>nn�h�IDATxڬ��� Ei���j��m�`�L�[���Q�:��""[�=�*��> �!�����ѰW�PlF���@���7�_aáB'�����A����Z0��}F	�Fװ��M@�n
��,�:�`3��S���*��o��IEND�B`�PK!(����images/arrow-down.pngnu&1i��PNG


IHDR
��~�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:43D93FE9C5B611E5AAE7AF426CD81955" xmpMM:DocumentID="xmp.did:43D93FEAC5B611E5AAE7AF426CD81955"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:43D93FE7C5B611E5AAE7AF426CD81955" stRef:documentID="xmp.did:43D93FE8C5B611E5AAE7AF426CD81955"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>3"�gIDATxڴ�1�0�a�/��{�h"�	Cm����|�~_Kpm�$r��4�̀>�h��	Y�>vcH %�a	cH !Ič���0��."��@F~1L@��+��)����3IEND�B`�PK!a��c��images/next.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��?hZQ�?�y��˒D	T���%!d��Cj)q$C�U0�cfK�l]�!�@��@��"�mA̐
Vh�h��C����?�����y����U
c�A�4��m��ح�}`I�I�I�I����)�~�w5�����mWIHm����`>q���A�L"�� o��:Sr���ij��G��p��x�j��^���Ƚ�݄,��"�:y`��9����5��?H�
�N���+�����Ȑ�xNm�SG��k�Y�O#�r��IQ!�ʀ$Z0GIpZG�{oI~eg蕡���.��˟;���c�;|n[��>e�Y��{[�7�n�IS�њY��
�E����+T=J�˼��#(+�Dn_����`+�*K���[���2���hNy��1�0�O�hU
U� 	� 	� 	�!���x 5�0��q<�a��.]��x� 	� 	� 	�v!�٤<���	_2�@:U�_0�35�Q�\��ߟ/!KRM_(���(�{�e[�@�X���~�><PO��rYlZmԉ;'�~g���bgj��P�t-�ҵ���yg�f����]�c֎-�
��׮�\v� �pB-���J%�Ə�`0���Գ�|���'Z�����hcL��^�/aE���٢B�q��Y�p��A�j��ϧ����e��/jv��٢X��l����"���#؟�ߐdQ��$a���R���1[ʽ@:_2�{�5|~�@:�ق=��\���濅k� �2I�����>}�}��K&`���	d.�x��_2�ҞRU��}�~@��Y;~�5E-a Gu:Ȓ���J��BAʒ�-�
�\�_��HM��
	� 7�6�$��#sQ��I
K�1,����%�Fl��*�4�N!sQ��l驰B��p��A$A$A$A�1���s��0�R!jr�IEND�B`�PK!Vw���images/shape.pngnu&1i��PNG


IHDR+^���tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:4BF0F73FC4F411E58F3C92A1A88A5A55" xmpMM:DocumentID="xmp.did:4BF0F740C4F411E58F3C92A1A88A5A55"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4BF0F73DC4F411E58F3C92A1A88A5A55" stRef:documentID="xmp.did:4BF0F73EC4F411E58F3C92A1A88A5A55"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>|��IDATx�ԛϋNQ��&RB���J$5ِ
	���B,%2��
RƏ���,�P2�͂H~�4�W1)�&��۽�^��s���[�b�{����=�3��n��n�lK�馩��[��[����:�A.#�
�{v�Y��d'{�!E�f�K�O���`&{yd�2�]�|@�#��NV�����E���tuq�NƲVw�P�J�����?`'{�S�d����f�k��Ȋ�e"k%0�L�B�J`��A,e�J���"	0�E.u��[�<AV#���#�]��&k%�	�r9!%Y+�)�R�u��.`){9�{R��;�E�:�=���{��`^HM�K)ɮ@�H %��HEv��^��F^��H,�"��U��,+��XՋ�(k%0^���%{�m@��@l���zU�hh���Y��4.��1�VѐdU$���b�m�kL��!���o��:���4$z�mD&L�&0�NV�z-DQm��IV]��.6��]�sk�M����Y��+�D��a&+���VY���� ��Ɏ���&�>��^��b��BV^݌U�
Y��g����U�,Y��ӘE˒�&
��$�Qv4���&[j�5�V!k_�Ͱ����Z�{��>dE�R�!�De�&�@����h��՗� �-uQײ2]]0�|erܩCY�z�e(�k�%�����p%k��ؖznu!{�d__�-"k%py�T�Y �[Ѣ�*��1�RI`��g�$�k�ٯ/D��d�'x�E;��	3Y+ڢ�,�����*��{v��_�q<%��IEND�B`�PK!�zyy"images/construction-next-arrow.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx���kqǿFS��M��V
=�⡐SJ�G�zN$�9��1�,y�C��GN�K� SӦEj�Ɔ@i0�C~M\�����u�0�dY����N��}@'R�Q]�!H�$H�$H�$H�lX��/����v�X7��4�p��]�:lv��S��,��&cL7u@\��,5�4�y��p50�<lM*^�1��n�&��<���:��|�kR�b`3��?���R,N��������g�B=��[�F�4��8�ȓ:��5�+�|���d\�%�H�i��
�"��
=4�f�a�E�~��]\��&��.m�p�IY����mZ�ƚ�=�2Z5�3�>��v�����\5�yĘ͓H��	�2���X2`�i�?�'�)f{1�$�
-L<�։�]zUM� 	� 	� 	�s!M�t�<@x���#/Vޞ���5�њ��C�I�I�I�٘�|��5�P8[r|s�Fk�[Ge���5Q�O�?Z�հ���mW�v�k�q���W���n�^1��o'��I��*�.3��r�P7ZpN������J�q�b�WL�����GZ���\^�܀�Q
R.�o	,FD���Y��:96ڋŅ���d+J������Џ�<J�l^!8���{�:
�&=��?����iY4�kv��ټH�l��AU���-�s2���K�z(��4(�ϟi߶��� �b=2�ˌP8�?�7�716ګh�Law��?���k*\���>�/ܶu#�t�Ņ����l��"C�r�x��;����L?��׽�ry����\AJ�<�bn���l�r��'����WLCʝ"��֍��>�D�=�Ó+�Clnan�������֍�R��–�ޕ�+M� 	� 	� 	��!;bS���K��sIEND�B`�PK!Yl�LLimages/arrow-left.pngnu&1i��PNG


IHDR92��sFtEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:39FF4537DBB111E5818BF905A566C4F2" xmpMM:DocumentID="xmp.did:39FF4538DBB111E5818BF905A566C4F2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:39FF4535DBB111E5818BF905A566C4F2" stRef:documentID="xmp.did:39FF4536DBB111E5818BF905A566C4F2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx���M�0����`#�Y)l��$lЌ@xFha*1�E�,��,+͇���I�m�u�پ;�Bx%Vz�;?$�b]ցt��!�!�!�!{�%r�\��h���+5�e&��%�H|��?��~�ئp]�R<��O��>!G=�N�٭29��5}�(�@�Me���?i��
�r&N��Ѹ��G���(��ZvF�m6���c�]���.��'ݸ)_���L�������p} ��QA����F�{�;���a{`#�,��I��k��|��HW�!�;�t�Ve��^����M�T;���Ti��5��̅}�1
e�	^��(�:+�Ki�����CT!K�Rݢy�#ﯳ�jXp7�B��)j�)�Y�4��J1���-�A�#�h�ͺ�jM�=��@�0yM2$C2$C2$C2��oßz�
rm@�I�IEND�B`�PK!Z�{1images/menu-blue-arrow.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�bd�������01��P��(fAօ�gAv>�2���Q|
���	�y�+}IEND�B`�PK!
��.��images/logo.pngnu&1i��PNG


IHDR�-柬	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��]͍�J�<���h4�7�'�!� s���Ʉ���h���C~��k�`L�AcJB���@SU_W�������=�@	`�%��
:~/��*,�%�����V�o�!���h��5����}�J=��@,����|q�i���=2�����L�g�$�{��׋�"#ˋ����<���Q�Y?�Z���m�$��	u9)�iX-�6D6�Ĩ\jQs�i��`zgK1A�
�R��(k���R�����!V-��
M�rr�r�]��8�(���r�03Iä�sf�X,+���(��LH.t�0`��Σf��)�������̰��q�<�Hy�,`)D=�l�6�=��b��g�ϧK�ꍹ��{V|����3}.��"�h�`�uX����%��,�Lu��t�\�%[x�^\�\�W� �I�w���V�XT��3QN_D�tU�:��V�s�@A��Hy `���W��],
�H���5��gW�q��#%�Y�̑N#��a���]6�AU��^8�.�))��t}#��΀�<D�c ����j���`�X�iD]���-g+~ְ�
e�2�m�v�]�=��m�е��bd);;�J�����.�Ҍ,��
�	�]�]��L'���S����숬)>[�J���`�I�8d�TӪ�D���osڱ���2�*�^	�Jџ}6���[��'��B�Ȼ��+|�MO�0�:��3��䋎}r��p`�[3�m':~��*�`�T����)�	��l��
�6.k*��B/:6,"m���8����[��/�{����٪��b�1I���Cl5FJH�Pc`G\���ȦӰ\]�@	I�ՈP�2�MET�Rz�R,st�P�p�����fp�ª�~�=���`�uri@K�bjb5Az<��+�9�bU���r���c��q)VYx�`�I�rQ�`�0´��s�8�4�5�E�n�`�Hp(�8��}���}4��h:�Xi�-꽶i����n���L���T��zB�	<���c�m��,0|�w,�4q_;����^N��~
q�uLi���s�X��f
��K>ut�X���rdEQF.10WN;��ߵ$�o����31�Qg�&6��k2����j!�sd3��41?EG�^�1���o��e"F�{5v�]��1��:�\�"�7�˷�kWQ�nO�-�'\ٵn���l��`q����_<B��fr���Ȳv���:4�=�]��c�݊�H�d�\,�:���q�
,��b��ď�zԙ�,��",��磔cF\�`=�O��űq+�(��u�Y��~�9�%u��
?Y�e�`��@l,ܞ�5tף��2��j���\��s�Ԋ�kB�C��XP���M��܏�z4]N,�������	��`��y`?�jg��m�ďH�f���F�m�h��<�ۓY���Xb�X!�W�3yC���	ܷ�w��N>4ҋ���2��m1��=��U{��02��A�4�����m��lT�V02�%gydЩC!�������&,�9��Ÿ�]�۠���~B�|��ikQR.渠5���_��1n��Be�=b�"�+��u�7�ȅ�!��d*
��<w�S��w��ZxR��'Й��:_c>����K�9_���c'�KD"L�c���eWĽ�tQ�&U�7iw�?�*�zu�\W^䩄��IP����?�������IEND�B`�PK!�\���images/tick.pngnu&1i��PNG


IHDR;0��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:9B37389BD95011E5ACD2ED5CD1CCDB4D" xmpMM:DocumentID="xmp.did:9B37389CD95011E5ACD2ED5CD1CCDB4D"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9B373899D95011E5ACD2ED5CD1CCDB4D" stRef:documentID="xmp.did:9B37389AD95011E5ACD2ED5CD1CCDB4D"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�_�QIDATxڼ�mh�Q����A3c��&����y[�/�B�(�
��$�������iyFJbE�_�
i��6��l����.W�>�X�_�s�s�s�����<i����4��L�zV�
� #�,�L�@.��<��c-���#�6;sDT��:���o�W���� �j`���hR_��]0�Q�L��@5�4����apA��u����>��j���<MS^=�<��I�+E2��	�+&�N�՞�|���4���F�q��ʨ��
�,}IPy���݈�*:�/����g&g�@K7bu(�,f��	#�ԀT����r����6��2I.=�H���b�X�@=�u�6�Qm�y��I����)�̜�@'�ل�Ciظ�p0^,<p*��b�S�C��w�P8h����_�gѾ��e2��Ϧ�|վ<K���,N�Ϣ;�9|�ŜSz��Y��L�p��\tnW-�
i| 8FǑb�������	��K��`���T_�������`������A�FZ����~���pĢl�`	��Kv�;��L�]��^m��p]�J��\�,���/�D:�Ĝ� �&`���9�~ϒ$�T�V��?���;�LlRG��>P�؉�w)�!r�����9�=���̿���Nq��}�-D�-��!sE�����W7[�ڪVW��e�����d��|�Z�߉
�3��*0\��荵��=��]A�2<�oxlW��,u�x(P���x�ML؜��bK�3��st��$�?{Z����I�IEND�B`�PK!�>�S��images/prev-dark.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��1ha�wg��Ԥ�Y�dhR0�b��SS�v(��4)d�t	d(D(� v
�qmIm�$t�;�`z����z=����w��S�������=?%��������$H�$H�$H�$H�G���9�Lۍ[`���Fy��8�7�d���y�Mk׿r�<n�~�&l���lm�tj�6��?uz�W����1�1l���)��دp͎��>{�����͓��d�M>��?f�v��"�+���f"C�w��͎?��C!=��gW�6V!�.v����
�@�X����M:	�qW���U^(7�%��;��f��B���#����|���+�L����}����jP�� 3(�zr��ҩ&ơ�ܕ:�v� 	� 	� 	҃�R�����+1�HI�J}~i�e��]�X{���+A$A$A$Az`ؾ���*�jk)9��L@��������הx�̪��!��y�?� ��r�..{�O���_�×NA/��;�]�������+��U*�A�Q��ߏ��-�U�l�v�1	����t������v��ݖ��L8R
�0�ݶl?��V��c���P�	�+j�e��I_fR8-_���1��y�x<�v{�l<���
9�+�G"/��X4$�f�1N��L�p��\���Q-r@Y���p�*��~�^O^x`UDH�r
�=uF�9��Z�kZ������2�]\�fsJ2_:��*D���폃ö/@/���G#�_�KsA��n���WU�ߎ!G#���B6���J7�[�jBU��5:�r��19H�,/�C
����P�	�2�prt8HS%k���/��z���vU*[4+���`]EޣuE�����m
����ˑф���2��.\�$A$A$A�!=�����QE�K�VOIEND�B`�PK!�u��99images/next-blue.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FdIDATx�웽N�P�NmCH�d�0�$CZ)t�ҡ�H�;�<�'H���@��j�I�2��d
XB�!qbw�Z%i�/�`ߜ#])�u�����{t#���	�^�9�!�0�$H�$H�$H�$ȉ-����<͞��]���G�KHхo�Thc̩XR�j�x�I����n({}�r���3���������0�(~W7!u��/������IϷ���R<����@����Bv�	�}q?l�')'���On8H�2��>B]Pr~�u��V�
�1d^��A���1�s	�pu�9����_�q̚*��5��O��ۗ{ʤ��P-����#x�������/��o.�;l!��d R�:I�I�I�ɿ�I;G,��>��l����}y��
A$A$A$A�d�X�LE�F����ef*��r�����`�"]����T�Z[6.�ڰ���#ϩ\�x��p��mVe���9������c������?��5��J��9mB7,��F�Ч�>�L%l]���}�D)�"r��醅�ӦcU�f�<��`��5VNNcXAo��@��C�@�+dw���5a��AZ��|s�����㵺��<�k�&�W�=�U��3˻�On,=�+�J�0~�\�"u5*���G6.�W�e�2Ԩ��&�zjTB6.c�|��ˎ�R2�XX���?��u�g-T�Md�2�!�F%쟵R�m���"���Q�6���i��B�$@o����"	(��A���Uj@�yq�G� �2��B�a�f �""�"���̊���ݸSQ���j��nL�U�r�]Y�Rg� 	� 	� 	� gr&.��4X��IEND�B`�PK!0���images/menu-arrow-green.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b�pV������01��P��(fAօ�gAv>�2���Q|
���	��IEND�B`�PK!:��images/menu-arrow-pink.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b��Ā�g```�q�pF�b�
Q� ���� ��[��QDȍ(����]	X���vIEND�B`�PK!B�L���images/next-orange.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��=H[Q��>�V!P1�BE�6����dj�Q�

RR��8):ED�P�6u�bp�C���I�Cl2^�� Xn�܄D�a^�wsH��<��s��o"1��)�9�hDnt�Ԁ$A$A$A$A�,���r^��q{;�_O�M5!�2���o6?<�R�z�hyNz�n��@P�mV9�$�8�h��*qU=l�2������µ��q�ѯ�����9'U_B$���z��*Q!��	P�pe|�2�i-\�d)�izw�'5.�9)*�l���d0GIp��Pwސ(\��Є�Duq{;�����c�-~oQz[��1�z��;��d9�d{��>���I���R���O{-T�n�-/��A�$r��
�:�D�-�`�k�?�'�	n{=�q5T0�0�O�Ԫu� 	� 	� 	�v!�B�x �Z�dm��Ꞧ鬞%�$H�$H�$H�$��Dg������7Z�a��`�g�{�!�'��S+��*YZ�s�<�@	�
�9�aa@;�|0�����M�9�����1���P�zb�߹5D�]TY��7��9���*�v�.\�vr9�6���:��K��)~�ΙU�Y'�vq�],jNVb	�cL����Š(dzE�t!����ڛ����'�q��H��,�K��JdzE���ٲ��Ke)����9�%�Chm<5�(қ��0����Ը��@�}.뽢~wA�`�w!g����0�0Z��|0�Й{p�<����ݩ?D}s~���ֱw�]}����w��=��ʺ��k�5���."{)o	Y�l��k�ߋ?��BAʺ&<x�
%����3�5�q���(ԃ4����A���;\�D����?���Q1<��?
�eQ�;�I�~7.O"0��VU�
Q��p��A$A$A$A�0�T߹�o�POz ���IEND�B`�PK!9�áimages/stars.pngnu&1i��PNG


IHDRf/��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2FB721C1C10911E5B477BB16CE22357C" xmpMM:DocumentID="xmp.did:2FB721C2C10911E5B477BB16CE22357C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2FB721BFC10911E5B477BB16CE22357C" stRef:documentID="xmp.did:2FB721C0C10911E5B477BB16CE22357C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>G��zIDATx�옯KA��V��"h2���E�h1������h��Y.���`�d��&F�$�!�߁��,;3of'~|`�>���ί样�P�>�l�
:�Tf<�	�(1:=�L!:�`=ሡ���ft乓(1:N_a6��<o�v���T83�o�G[d)~e:=NS�#��
6J��,�NJ����we+�N����D�mt�p�S�3X/��,`]K;�5��5�C*�9L��mp��Gg�s��t��x�e�[�HL�xR�:#��]Y�u[ ��Р3��9�r\qy?D��YU�0[x�ײ8�F�3Й9�k��0
��x��؍1t*����a�	^�1x���9���/��H��g�03`�PI[��C���ӗ���T
�S��IEND�B`�PK!f�O���images/tagline-bottom.pngnu&1i��PNG


IHDRw	�;tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:0C0FC480C36B11E597B9B4D8004966E0" xmpMM:DocumentID="xmp.did:0C0FC481C36B11E597B9B4D8004966E0"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0C0FC47EC36B11E597B9B4D8004966E0" stRef:documentID="xmp.did:0C0FC47FC36B11E597B9B4D8004966E0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Pqٜ<IDATx���
 A1n�H���$4��.2sZ���MM/qq��U��ε��0���؟IEND�B`�PK!+�tё�images/next-green.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��?H[Qƿ4��ƈ�k�b ����E�t�.�v3��l"�.Nqs�b�t1C�8��RA���IP�V����M41|O�n΁y�弼��s�{rc�A�� z�F�юz�*0�$H�$H�$H�$Ȳ����q~~<��1��ٖՄ����.�`	>��A�"�� o�e�:Qs��d���y��:�T[I�{��b��pUR�=�M�y�;��Ǥ�S���x�^� �#*�73���OS#d�!�����Kq��efq����nL�
9�$1P�
�d;9����D�Sw���l>�?Ώ��x��_�1v���-�=2��;�1'po�>��Ę��Xݧ3Z!�p�f�h�N>���B	t/yy�TO"�O��@8��e�y��U��)?�Lr��f�7�3&�v�����A$A$A$AV/�T��RW
=Y۳����4�h�A$A$A$A�*�<k���B4�G��P�ɍ�XߛBJ?�{ӻ��1�\Jc}o�� ���6��DN�|vr����1�kJ��:���vq�d�dI9�����B}�?��8\�Г!
���Ի��Š}	��9��U\�*�sy}�#\����PS��)6�����L!���l
Ѥ�m�E���Bt�1���/�З�"Z�lQ!}��}�I�pu�A%M=��3^5��w�����]i{�(��=[r^Y��0�A��I�r�P�7bu{�7�w��fO^�; ��W�v=:[C�0��ˉ)9�ك����}�L���$.G���X�tV�@�&�hmB��..�a9�h�_ԚRS�.�7�ԈA�N.���Z�@����q����k� k�F�Z琒���Xp-��P��:�Ԉ߉Y�_�#v�[�l-b�e���ŻL;�r]fOE��ڕ�+U� 	� 	� 	��!u���mR0n�;vIEND�B`�PK!"����images/prev-orange.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��AH[Y�?%�E��5���v�.ښ1[���EW�K��E)������.

EP���feY�tk�i�����@�DS)d�b���M�����s�brs��<�{��M��iT��/Z�4G
�,�8d��60�H�H�H�Ȧ[Z����`���L��,X%�@�A}p_������Y)]?���U���{�	�2V�Z6t��"�4��#���Lߙ:|�����k��:�o��k�7� ~TZ��m�O���`�H���㱃�_��4pǎ��t=
�.��<��TG�W�e;��C`(�cȥcNJ�ڣRuHA�2]���[��k�ij�Lڹ��a���
xq�ߜz�TL����-�Z[:���zQ2���}'�Zf�����t��n%��F�s� }E��U�oQ�M�t�f/<i%��yK��%��T�஻����]T�qA����"y؀�A��DEpP��U�O�RM�VER:���@
�@
�@
dBvȥ�\���V��Դ���,�ɟ,�����*�)�)�)�m`Mo=����*<?H퐈<%��Z��7:M��쑹�*�[�d&cs���n�� �|��{�����$��|?�/7u�f�<u~��"�0���=�<�f(���k���2O`��K��]�.�E�˻�����~����ߗ���o"2?d&��Wt�o�O�t^�-�<�%"!�n/�c�d��?��b����"�q���S�[�9�k�O[�?l{=���5
���!m=��׳s��h�ۗ�yw��� � w���z��k>]�z�ݶ�=౴?N��/�9�q��f�/鼂1rX7�
I���7:M��4���W�{$@:�f��Aj�tt�S�G
=!�����k��k��sK �)�_��½7U����Յ{d\E1�HG_�G4~�A&������d�1C�Z3��K��<mS+8�x�Op��R4'�W9H��	��m���k��RZi�VTݝ�kV��r�H�H�H�H+���gk����J�L"�IEND�B`�PK!��`����template_preview.pngnu&1i����JFIF��"ExifMM*��~http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        ">
	<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
		<rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3" xmpMM:DocumentID="xmp.did:B8E98C7E4A8B11E69D65B6804E2869D4" xmpMM:InstanceID="xmp.iid:B8E98C7D4A8B11E69D65B6804E2869D4" xmp:CreatorTool="Adobe Photoshop CS5 Windows">
			<xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B148EAAE8B4AE611A452C3CB758A5E71" stRef:documentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3"/>
		</rdf:Description>
	</rdf:RDF>
</x:xmpmeta>
<?xpacket end='w'?>��C		



	
��C��,N"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?򠸡��)�2i�Ϲ��wk��{�'�p�1mj�G[�fɸw<V47~Y�#Qz��)�IX��Z3\���ի��5���\�|@�n�JS��cU�Y�q���+��Lb��jq}�Rk:�bC�W�a%(���eM7tq�f�kS�Z�:���=Z�̓���3��k���M)ŧ�����2��Z5��כ�O��ZD�i�v�\�m�k�qJZ�^�Yn۪u]՛�]y�V�Gp���*��Ӏ��
MZ�1Ji�)��JT�P�<%5F�RPl�QL�~���$���-X�U�sY�!9�o�;��O�z�
^3���F�?3u�Y��o�3׍^饮�ֶ�nT\p1��hk2J�j��NkF�Hb*��k	�,uQ����i/;��ç���t�~�o��2�>Z�k✏��Ѝ$d��D/J��/ں+=,(�ZV�X�?hΚ�Q��xsʕN��>��̲�X�R�UF�<��Rf���^�����*÷5^u�UY�i������2i�=+���Y-������O��9���ҽ�j3f���"Hƥ�s�}h�U%�ٚ��,T����[�$b�p}n�GaR\���d#��+X�$e��V�E'ҭ<�ydn5�.�3�����b�7�19]SO{�5E<=�һ'��ҡk%^…�f����_/J�|;�Һ�SQ���Q�J�G3���
X�HU�[Mn4�S�.>S5t�9m��,��s++-�6kL�\���,��b���40��>L�v�V�v�-%sҏhm}�|N_��ty$�v���4�O;0��y6�}I�P��?f?��|
�ǝ&�4}@,7�/8P~Yyr~�����Iխ��2���x�-n�I���"�A��x�$�)�~�m����|�+���l���$��j�U�9��S�W�4E�_hZ���p��6�WEfO,��U'+�3�g���x�S��V��/5׋��%6r.�f���$c��ǘ~_z�rܵ��֔c'(EI[[�h��Y�m����59��ɿ��3�|�\��su�g���%��+Xa�t���,����4���67����Y������u8e#�b���U��R��<�r�|�����q=�N���\���X؂�l�k���<Q�����E�$3Y4��#����OB+��޺s��K>io}��v�NG��W�m���y外붲V��S�~���\�ׯu
2��{�������7m�6d�	��_`��מ~џ��x&K��ͬ�+&�jO.��a�b�'ׁߏ+������r���?%���8z5+MR����'������md�����q(�P��v��58���^��[���W7��=���4ҹ�;��'�Mr�����⿥2<0*xH����o���08U��Ƅz/ǫ�ϲ�N��w�<`椖��Z�#�%�­f�7��֩�^%KEl�q:���K.��w3
��N��ZX��V}�V%�߭p:��|��Vd�%�s��g,�W2�%3��|\e�֮b�Qk�95Y&k��:D�3^�#�����Nj���?
�x�0D�tZ��Բ溥%�M�����5ԕ�O�z���,(���x;URW����;8�t�
���Glab�^H-�QYZ��m��]�8u�Q�t�*1�k�Οw�I�]�Ϙ�����kij֙���t�����\y�*�9H�2h� ������MH"
Z(��(�S�n4�1��gk�6�Z��lbپ�S�)ù���{<�5��c�5y�����5�RZ�a�6#hⴭ�G�%��V����ԑ�SK,V���*+hkF�*瑣�b�
з�^�:�
T��4+���������g5Ԅ�Ln���W�8�:����pi�ܮ�Tn�;
���dِ8�Q�3����S(���u�R�ަ?Z�X��uD�Ն\�]iܢ��Uyc��j���R�GLx���Q�V��Q���/�*�%F��X�M�
���|��b�9W.ߧ�K���
E��)���"}�!���i}_���J�KC��If�=Z6���G��\x�]'C(������0���tꫦ~��5��៊���N��a������l=~���]}~k[�Ѻ��+)pA����|g�V;?j��,�r��|�_�c�:nW��Ӵ����W�|<������G=�v�<�ȑ����Tz�_\��.b��"�W����
q�-���x���XԵ�BO;2/�s��
��s�r��X��w��s����i/+��>���j��v�Zh-��`�h���>��:���Ǟ5�>"���V�.伽����GeQ�Tv��(櫺�B�8w�G�*�{���y/�ϭ�rz5��wս��"����5�,UG_As�j�xW��i�~n�{[���ڼ�¾'�,+��R���y�a��}4���C�S�ƾ7!��?ԼO%ğx�}kY}B��Ua�ikأN0G�Z�e�;ƸnMlZ�ٓXvћsZ6��ɶ���ѧe��
ʩ�j���^���E���_n4��ha{}J����_:	2�q�d1��]�/�7�-5��$��|5�ɬ܉ٔ�
IeS
r��p�q�:�:�jJ�	)E�֨�S\���1�ƕ��עh[H���^��K�0�������	h7>64h5��t�{vB`��P�L��a�r�O�a���o��a����^'�|/uokw6�����b�qoyḧā��q��j����SH�n�Tf|�z׈�c�x{ú>�uu�ƺ׆g�\Py�y��D��<�	]T
���|=�5/���R�w��=iyyyaag|��]j2���Ž���?i�A��'���7ѣ����l�i|5�k}��T��k;X�m.�V����c�Sq*�,�R5��@H��|���<I���þ�7�O��X{��w;C�QGoұU*��6�u��(�y~��y�N=������}��f�A�4�.<Q��5��Ε��5�]j�5�[�4Ryg
�T<�FJ���|F������<��{��MQ���E�L�6�Ug�_��w0��#5a>��:�p3[6��Z��c���_XY\�Z^�o���j�7�y�Ⱥ��%,��*���N0q�	ϰl�N�7Ҭ������`.Fri�'55P9�NC�:�(��L�4�8�/—7ѣ�VH侁Y\nVE�#��^fS�5KY��f�k��������i��/D�G�V�K�^�[������)�Q�O��p��>��C�
+�Ȗ��|/Դw�H�
�iwp��J6��q�G9B�~z|JNZ��H���3�
��.xw���/��]j�$i�hF����N7��M�ן�$|��w�}�|$��~0|-��z���*m>K=T�����]�X�}ݤ`��r���[��%a�+N�����Kh�^\��Gbkh+B����������|0�5|`���>�Y�i��e׊57-�g#2��#�P��A��ը��ϙm��Z�:��Q�����W�k�ž�[��@���M�a�f�t�O���
��S���)f��C������|M��N#�ĺN��ޘ�6����@�J���Z�gOe/�O��rʤ�q�u��gƢ:x\װ��߲m����-A5�
k6����#���e��7��8��y+9E�ٕ&��0�5�V�a�L�.D�"��{T�QIM+8Ȩ�sS;TE�L��dTl;S�b��@��֜��7u4�1�i�٦�����d��1ɭ��u�� :^�ֿk��O/�/P=X���#:աJ�Gh�[}	�R0��ݒ9w��h�CXҮ4-J{;�$���s�H�Yu��G�|�C�+���T�t�<Ek=旡M����P��l�Lv�l��)1�N�/nmN�W��̭s�Z:�����2��Rx�γ�ˏX]Ž���4-0lm۳j����n��럲?�+Ok�&��}oųxf.u;��7��q�έ#,yA��,ʷP3Z$�̺�\c�1�y�ٗ�O�<%��|<�α����Ԭ�+��Is+B6ʈP��>�R�A�?ٓ�V����6�<sq��E�΋�tڍ�D�	�*��rT�sȧ��̎��l���	�o���mm��eq�*�W���|l#��0��v�29"�|��oj�߇�#�{E�Զ��iS�Z��)l�")X�PO�G5<��e��6
]�Et	��m�^������,0]�
:o:�I�R�6�ZGeUŀ$
���:�}�]i� �_�4=J��N��P�.-g�������-�.�䁞iJ,�e��l4�2kм9�)|L�w��Oi��e�����y{w�+,�F��>1��̀
$	���k��mm|a�_xR�/�[E�i�X��y��YUK.x���g(������9ؗ����G�\Va!���e`�Rt�E)V�tɫ��@�Z^:��ϭ\�j�Q&L���a�<+~������q�����>��xz5�A5��-O��e�;Mi-[1Y�qTbE�qN���O�Vr��F�!{##�k�?g�I������n�Z�C}�qz�0�3��ֲ|3���K/�^����)+^~64�R�
��Z�>Z�:*Q�ǹ|_���k^�����s
I;�)�-��G����;�J�/�W��}��U��ޱ�jڷ������2S����802�.���<�98��5m����ψ>'k?پе��+���R]���22q���_;�d�2�?��m��m�]���'
��r�]�����x���>!�<4��]�M����7�2�I2���p�@#����h��2���>"��u
V�g]rEM���ZXFY��&�W8]ѮOj�xkS�n�u��}���Y?�qiyA<
�k��zp@�Y&�K���gU���3�'P�oG��\h��t�}�7_b�-%���x∪a���Z�7�A�c�U��㏊�ƃ�����-4}wͷ	����"�
��b���@O�+�x�)$����X�v��yB<��4%A�;p��j�9���m�"�	�s�ȥ^6H<�FJ.a�o�v�)�m����]�Eqp@ǧ�ZV�ۋIp c��-ש<t����|��W����t-Z�Vҵ-�A��c�9�'�c�&WW�%�G�ƕ��
<I��2��w��,�?���=N{	c��a��b����'�C@����о�v�T�ω,nm��MP�lž�3L��v�Fw�7
�H�3HC3����<�D��rx��5浣�Kv�3m��\�A� ]������Ys�'>��� ��=6�P���K˅���0A�V
�E��V
ψ�?z�S�Q�{��R�QӾ2x�I���ZԥӴx4��gX�#Ե��i	��U�@c$C2;l�2��ןZŲ�ՠ��d�]B��ů-��qDf�A��w�rpGL�qjk�Y�W�f���d��"�0�R-�j9�'���\Tԓi��:e��֗0���,W���m$�pH�E��z�t�����^�i���+'�F��Hn��+,ֿ��4O����F-s�kկ���{���B����V}�����-|_���e�/
�'Tմ]A퍵�R�`���`3��+Gj�C�����]x�E��N�lA��u�J{[d=X�7O���H�Y�G����	��~<��|S�->�	-<�{mJh��6p�U�$�Rk�'�k|R�c�-����C2�f�{���g�B��؂
T�A=Erz��_�/����=ܺDž~��j�Db�׹ry�c,�h>��'�]�Y���0?i���}�
��˥�S�$�zp��l�H��ᶑ���P����Kÿ�f�_�}O�޵�9.�X�B!���ܐ.#A—
ā�H$�~�:v�$��L�7�xo�K�sT��o'��)�w_�������:�}�|5�Ĕ�-���F�/"�*۷��cПJ�s���玴��w�M��5-oZ�KK;h�6�����I'�'���N�_f�=���	�3��.c���WOh�9n��
���~G�O8�c�B�xu%�E��YG{j�������O�>���'�>�<E�=O�lvv��*�`�h�C)PX�X�Ls��
�F��~�b%�%wȜ	��m��S2�}�W��o2F�س��3�=ɯ�?৲��>��6�P�~���c"�sfUeO�����9������G���8�Ԝ%V7��ƾ�r�ٟi|ky>.�~���j?�Uwᅙ��me��U�p�bP;U���<#�C��H�tv�[�E�#�'�K�tR%]�0�� ����/���/�Z}���|q�ۭV�6/mRB�=���U���դ��E�M��rG������[�F��C���9[��i��P�>
]ɣ|�i�?xf̘`��4��j��<ۙ���m�!zg�ꬼ}�)������g�?�h��[=_B���ZD�ώx�䌌N�p��}K��_Z�!�|��o�� ���mQJ��.YlUJ*1�[��σ�
5O�?|?�5�U�%�Vۏʬ���Ub{k����7���(��s�[�~ֵ����<k�ح�ީx�,��q+�\���7�B���Q�t��Oӵ;�@]ͽl�(�����_���
����\~ҍw5ĒLq���n�=sN�Z�4ZN�Q^|�6���~�j�~�P�k���K�?�)��4K1bn.�F�Z� 8uuS�O8�O��՝ƃ�]X�F�Vs<D�4n��)�_k|
���ϟ�=�m	�h�5
^-�]G�<���J��z��?��-3�?ǯ��E��^���@��o5ĒFA 0F�H<��V�)���4�y��^f]b���Z��}C�k��\��U�����Q�i{��cs��pd�h�_R���'��y��?eώz����u+_
閶k5��(Vy9'h=����d����꼚��p�Y],v���}��}<f�N���S��>2�^��_X����[���H��GF��z�c p1�	�k�'���xj��?��Լ=���&��¶�M&���k�*�3��V�X̿�B�g�5Oz�-;�J���x.?X�+��y�٭>���od���n�8L#(cۖݝ��5ف��F4(/v*˩t���S�(��]��������
�G��%�
C�q��h����j��������;H+����[����Oéx���F�6��K�\鶶�Z����K�Ir�K	,�$�f \K��5�+j_�~��+�2kCgF-��
'�+�~�Z��M�M�7��	`��!���nuI���)�e��!\N�m���?ࡾ�>'�/��tƛº�&�'�4����q|�V�A��w���� ~N�g�_��?�5�	��E�<D�f��_i��Y�k�6�%u	(�A����u�?�_�F��>�o��4u�6��\_Gd�'2�H�9lp�R����c��J�:���+ľ6�|Mq��B��,��l�[I5%�%n$�Y��q�Ή"�$�O٧���/�4�z�v�qc{q%�ׁt�.���,�%�g����!��)f�J�t��=oBԼ/%��zu���ֱ���qo �ɸ
Ѱ�XdК��-K��!��u�>�I�t���������T%^9#`H ��9��kR�(�C�_��O�(�s���*�x�Z���l�o�5���Ι�L����,�2��,�A!�ua��a���~��u�C��s[�.<A>�k�څ͵�v?lh�15�|��K�o����#��ֹ�W\��K�BhR� ��K]9�fXD�(+����#qRpj}G��ޅ�}'\��[=^3.��Oi$v�����!���ٔ6�v��"��eF�z�V����i�	j������X���EՆ�iqvothn�̰��8�7!�,������|���࿋��׆WT��W�3�ڵօ����2�,m�a�N�������'�#�ަI�Y�m��cEE��z�d������ψ��+�o�ڼ��%��c-��*��Ƭ��R��:��o��"ѵ]X� \X�6�Z�H���2�y
b�-��@����r=>��}R�e���u�(bB�J�p��rI$$�MgJ��uckqe}e+��[�Fc��D%YXeYXA�
	ܯ#T.���.�U��f�78�c�L�3<cW�[O�n1�_еv������
/+_Ұ�/J�c�=k���c8�|�J<�����ԙxݚ��f�ՙJ����
���X���5�{W=j���K�[D\��^��_i�����W�N��lݹ�0��I�=�2V�V���T'V��8��V��WM~J7�I��ϋ��n�k�=�p�,A �8v�����{^3�T�/��3?��ĦI4��	\�hu�./\�[2��$;Iǖ�<we�x��ķ	-�̗F�5-� z�j�K��xs+�����Nwv��}�E輒Z�<<��䛿��C�u����4��>$�𝽤7�6�4�j�V�"�ܼ����p̀mc�Rq��Ps:n��[�|/�|?��WO�Ե[��\���}��[[�˅e�d�+Ti	�tg�1�ML�"���G�~9�G�t/ZI��?G��?]jv�~���wP�B|��P�3$Kv�%L܆�ɧ|?��NJs{�MZ�V��5k�CD���Q7�`�X���0�S:[�I�kg��c��:´\,{��/��@��o4�q(�!�$vռ���m���8�>^"
��2��o��o���W~6��5�ť�>)�~��)m�%6�W���{A<Ί�F�ђ����|J��~j�K�+0
YJ���O�}o����|�x��^ ��Q�&�����i�jwRi04s�Eq��CtZ���DS�3�]�
����>���G��7�x�_��5˫m>��}0�E��t��k�;:�4l0��T|q|��u�6��\51Mlz��Kv}٢�U��τM�i6�
�@��e���j.���?��Uq�p�N�w)d,U�0�e׾|H���YMq��C�+�R��O�ҭc�t�m.��9%�|��k{t7>b+\IS��Ӭ"�����[�aK���7�|3ac�+��M�5�i�]Y�u���S{� ��gX!�7�c}��n(�v
�S�>"�7�¶v^�x1u�w����;�d�ˎ����+Ł��<�$��C1?[ö���?�>�4��7���L׿
>X�7��_��S�Ѓ�r��k��h����:� p����$^泃��X��QH�n�>�}Z��?�O�a��j'�(��sUP�Ո"�N5%� i��>N��t!�Q��]4��Jh�WVee9Vj�9�H����	���_��_xW������=���K�X�`���`<��XrJ�� >:k���oA�|��A���^�;kt��c��y�J��6x��s��U��={_�]��Tֵ}J9�^I2��bG��[J	����	4�u������>|=�'��T_x_�3�{���/XԧmҼg�jw`����HP�O�OOe��T��+`�w'?�E|�/�sڧ������a�����I�b�i��Pp�<����g'.g�߅���TTW{�7=�	_�]~�2�<q��z����x�������!���,�r! 4��p?��/��	�X~���x��Υq�ko*����k�8c�(
��w$��j�� �='Yմ��m�%�ܐ+�R����?�������U1��yZ��w�̚"���bߊ_�����x��w^���xl��	�΀ˑ��#�+�co�����f�����^��K_�[��%�?�U��bq�)	<�dn�ex�o5��z���j�-�]�8���n'�c��Iv�4\ex�<�u(�OS�>-�.~=|&���o�>"����o�W�-nT�Z�?��WI�'�	9��Ү��*�$�w�>��x��9b�r�D�!
�:�<g�����]/�>���-�T*�������
�>���'�A�Ƌ����*��[z�ij܄lc 38��὘��-����
-�Xi?�o�mD�M��o�?�:rh^��J���ܸ��yګ������#���8c�����_<?���婴�#PѠ������;�)�������P�˟���a�ȏ?v�����<	�_8'<A��Z�Βx)��Ҥ�4�G����}��]B��y�#,M���Hʜ���M:.2R4�^3�)����W?��C�����~�=�p��:�S��h��x�+޿l��&?�|K��ω_t돉�
�e4���6����L26浚�s(df+œ��A�a�5�|3��㯁��\x7Ş#�Ҝ��5	m|Ìe�sN4���ʲr���<	�����!�<v�
�]�C�5ַf�M�9,�s�`N2x�_�,�>���ڏ�z/�"��Oi�g����^8ݕ�,���c�^���J|V�˦|B�,Xm6�ڼ�BÞ
��z��#D��;{�9f����K�1Y"`r#�����Z2�M����f�"eZR��ݛZ[����3�O�<q��P�}'KH�q��"}�B��!l)��1�W㼒I�����~!xNMV�^�s��'�4KQ4��t@�}��k�O��
��Ҽ^�F_	ƼԹ��W����}}�2�ũ�8W�L�m$�����C�5�;�
}G�=�Ŝ;\H
B�n+�����w��ȟ�G�����ZK֯��a�xQ��?R�Ė�"���m
[4yD��窨bÀ	S�>u�C�j�|G��1�d��o��of��X��cln��z� �󬺦3<=)��g���91��^��	Y��]�����_�4��qc��F��uf�r��d?7s�ex��>�~���޽�����\|E�o�'Ay%�i��K*FN�dE-���##>[u��4�$��<��3�ԓ��U�C�݀�Ά�M��Y�����h�”i�Wk�s�g�~�k�_�G�=��_�z�����ퟆ��'����2�G����a6�Ƣ�b�r����n�L	�����"꺱�?WM?�����<�7�/6������񏆾*�>�C�U�ۯ��{×��Zuג�}��'�Y���Ұ�D`zWl�Ջ���?E?j}��������7km�Aq��sq�6KM%l�/.��ߧOoJ�H���8�>]�7�"�~X�G�ڿ���MbM^O��~$�ߑo���I/�y�#�I���%�|����ݥ����G���^��q�8Q��o�x@N|`4u�6���P��>Oی����+a}�6MzGď����o�c��7���k>>�L�����&W���c=��ZOs4[ZGC���E���͔����]���K���{�N��|7�߀�<�mkK��&�4���X�6�Xk�/���&��&v�Uڀ�z��!�[��g�C�K�[�~ �Ë�hz��iogsq��Ggwp��0��Eu:=�-w;����/��c�@��J�J��sW�\��c�߉�<�C���h�	�?���d�ŵ���{�0�ɨ����[[%�.�j&[hv!e'l�m�|7�3��ڋ�zN��V�^���K��=gM��}V�{0�;����D��[v�%�󀒔�n0k7?#EKM�kJ��z�>$��k�>$�</�G��c6��E��j���Nn�
�̑!����,���f�9
�?-l�_�W�P�[��_����u�7T�4���-���o.�Y����4J�y�a�A��+9s]_��!k�t�:��>*��N�"��w0�*e�+���l�Rvc$8��t�����>8�DŽ<I�^|XSŞ��=�A��g8���r�p�|+{�-	(�6�"rL7	�Ϻ��?��_���?𘋡�m	>�y������3�7�|��~���|���հ)��m�O��S��G����^�[��,�~����ڍ��e�Y�]��_K�J=����e��%����̡����(U��w��gS���j1]4��?��?��H�8�ѱor�syg�6���*7���VcgtUt�#��6��3b�Ɨ:�Gñ�7̵>��P�G�Zj��֭-6u����%��4ѻ�;XW
+m�Z��/C(��du�B59��6p�I�Z>��x�[��-lv�d�.j�``z� }+\��G�Y�#Rt�iK�]�g��r*FN6��=����>
E�X�����8�
�?�O�px�}�X�f	Z�W��G�~�iu�x�H�O��p���	nFA�$���H���x��Z�����4I
���`c!}N?���Ú���]j�Rү�4�J�U����f�{y�2:��ñ^G�xL����+�;.������:5i������?go	|EԤ�-���u|;u.�cj�:��Ѯ�n�I�FW�{�yV<����(�T����Ï�?|+��Z��|7��N�\�K��څ�
XZ��uoc+<k��Fڪ�\ȿ-�_���b�5{?&�u$�/$�e҂�`�J ?��y����7��|Um��x�mz�;}I�����[�*J_z��3^�2:�Y�~�?
`�����<c���,��-Β����Z��L����"���8e����>�>86�6�q�|>�F�|3e�#m"�6�|Vw���e��,�j��@���ǞԵ��x���_��
f�9u>��̼>rx&���?�����>�W��)�\�m��)�f�"��3���w*���=�e:�4pґ��?e��e��ƽ�w��$��զ�6�9�%���-���[�T�3K�x�8��f�?ً���.|+�}?�.׼]�����V��m�O{i�Z�G�f��B��5S<jU�%�z�j��O���Z��/��O����w�U*���@��Iy8���ߏ��}�I��猭t����Yí\�o=�e/}�0���nEl�\U1}N�Q[�Ok߰o�l�8��K�mOU�O�NJ ��^��4mm�Q��ȵ���ᴆ�d�9�&��T���W�����e�|/�x�P�\����&�g5�Q��7��/��ē${!\J6n��f���V�7�m�^x�J6�5މ�4}SI��Ig{{��q���G�6.[���hK�����kk���f��=5���D�-��k�fǙs*AK1P�>I�sʤ�Z���z��^�&�ѡ����mG·����:��u��sC��?(���d���D��BNk/����;�x����!�����e����Ѯd��౅#y �dl���U�a��6ֿh/��X�
S��.ԯ�:AҮn������g&,m_�GA�)�(���o�\M�x��ZԷV�g3�j��4�3��c�/1S�dS�#����}ϡ��>�"H<Gyk�{Bկ|9��Z�[-՗����cu)�t�i��"G�������x����LJ���ž��%֙k�Aak��Ũ:D�ٵ��D"<���������_~�8�]��h�4�f�5͜Z|�Y�4��.Ƞb�	�T?*���~�^:�+y�^x�ŗZ�q%�ޝ6�p��SH�G�H��gg%�IbI�柴��b}��{���@z�g�\�9�)oq����ԋ&hR�rf����eD�֞�rե/�Ʀ��!��?�^������?ٴ�_S��wklw�=���=���ʹ�m*I<rFC+)�)>���O*OSگn�ό>���|?�f�e�_i�6"�[c����9��d8g��9�_�W�?��^��
׉#�<O��Ų��
�	1[2L�Г�� �����wq�<��<_�3C]7Z���H&��(M̀f�U�q��HX�y��o��)k�����@�à��v+���E�"o̧w��W�����Dݝ/�����~%�Jj�J�>�k��㿷����Qg�"(��d���0�Y?�h�<Ca��Z�Y�V)v�&�k�˧HY���kbcvCr��(9��o�ׂ�K>��^�7�K"\�&���I#pRDc�U������uO�Z���r��H���F8�*"ʠ��&�!93���|+e��G���ү�kME��1�jΖ�E�º�e��i~�Zn�/��<&_5�Ⱥ}��������3������9�w��/kɪi7?c��)�Y|�|$�<R0#�v�Fr0@#5$h�VR��r8 �h�D�3־,~̚_�>_�V���}���Y_Z�:��Բ	�B���ux�1JX����c������s�x����j�d�X�������X:1�أ!��>W�'��+��5��jV�Yꌒ^�i���܈��Y#���'y�b�����G¯h+=犚�÷t�jY�\Z�Hd���LOi�$a�a�~bʊ��~���[�Ծ�eҼ#�$o���>z�	�� Y�.���%��O��	���!�]P���Ԭ��MJ�Q�N��+A$����6��r��(9Kßu�	x��Y�����H�’�p��rD�П�`G�A�O�u����+qp�,��!��|�q�DA�@'�M.T���i�=s⎪.,t�-|;�\�.�RX�:[�G$�Pc
�%��'�7�h�i������.�<-�g���/~���v�v�{���2Լqy6�s�Y5)��ϖ��A2�O�nRFF�A�"��uefVC�pA���=O��콥�O�V��X���m���[X�Z�:��ܲ��B���ux�1JX�����w�¾���a[\���*��䩒%��Ho'���fe�x�
A9m�VNj�h�������jV�Yꌒ^�i���܈��Y#���$��b��5��^ ��6���e��%��[D��2-�$c�$�J(�fz�?d���n�&���j�× �{�^�c�Xbi����^SƧl��IS�i�p�	ӛ�Aֵ6��mN?�Z�ىL�Y^�F
YT�	U'8�_�C�V^�ˏV��ُ�m>ٮZ��1s9��фbK��m����3[�׃5���F�6���ym%�S+�n
�]I��f��� �8���e����l>	|%������Դ�A�&�%Y.�5K�V���`�T�@����d-E�C�
b��\��[��]A�k\���W����lU`%-�;O溗ĝk\�.�᛻����I$��#m�n]��	B��K;6��r��5�ꟴǍ�Q��67ڭ���o��ڬ���VV�AydR�D���8nNH�
Rfկ���8���ϱ�gIk����y�^߱�!�nߘ�Cא1�~Uݟ�>(��[�/��N�-~���B��{v��K���7�۷s\l�5�*3����Dc�W�K����$�Zt��*+��W�dx<
��4��<
�/�Lι�TI�Y�(�2f
��g�z����3Kצ��5k����-��mę�v���p=#y�d�Z�čK�o����f�~K¦�0G�cr����A ��y���p����,�����*jQq���������!��YY�Augp�t(d
=�?� �;`�7���_�G¯�����H�g��6е��]}��&Hu��E��6�>|ZK���I��ĺֳy�js�^M-��˙%�F��ǩ&�6����i�#EK����e[��<�v��]�݀q�ve���ž"\�I&�k����5MFn�n��[|Y�����@�,�_�j�S���#\�1=�������uy,�oo>�R����w�d���_
~|J�U���<Q�k�[Ö0O5���
���fo���H�ɷP1<J褫˷k�����/���w}�/�0�|M������q
��8Ȓuq#�j��s��Y�⇈�k^֚M6�]Zэ�o$1�.c;�Y��i�I�v�whW������}�_�z�ŋ}>I�~��k�C��oe6�zϮX۬+$
$)n$�$G�c,N�ˏr˯?����~5j�ѯ~ i?�x�J�yym|uX��Ԡ�Vј$[���@�.
W�	�Œh�c���M�]��=�Ԧ�&Y�Y�&�$�]�3D�rT�|��������V�q�x�d���m>�$r��,r�7FV��L�E3+���<�Z�+��_��o��'�5�t��%�V'�SI��;�ph�[ׄE՝�P1[tY��?��R�����|e���~
_x7��ޟ�	`�
#�֐�����
���q%�j3I y
�Z�?�s���������^?��
_���'_�/|�|�&�0�i�4���R��=�����K��q��3C�;�6��Y��
>X��
3������8�U����g��[�q'�),�!X�e|3��Bmf�'���l-F/>Ʊ�yE��>�x��Y�
��+�C�oᏂ�#��|?�-kZ�5?��ig�ීK֑yv�܁lb�T�%V`".[ZH%򿈟�i��F��\��5��B�i�W����ڇY�Ĵ[�[a%w(8��������6>1�U�:��:]�pj�Ʒvp�ȭ��xQ~U���8
�N(ڛ��}=�&��
7M�ִ�g��������~��˫�t�(�Zi��-c�R���(�nY%�Z�߈��So�C��7�Zn��x��G��ԼO
���
��pVx��%�0��aO%�!�u]q>*���)x�\�=K�W��
KA��e�ψn�N�.��HZ6��T��+^���!x���6Z���e�Y��h�5�.����֤�g��*�D̛i�q]��`cJ=�P���>���:n��0|���O�����j�����)���E�z�Ӥ1��QF��X1�it_؟ᯌ�\�X��o
�z�/��G��Z�^_,.n�;-�XYM�@�M�h�{�f�4��V���鶷������nm4�n.H�a2<�8����Ij�nv=I'���#����y�x��z�����{���I����w&5e�H\85�:ꍝ)-�s鏂߲�o�ZG��->(i��<E�hzh]z��;[9��'��?"�@/�7����j�u�[�����%u��u��o�-�
E�_�����*�<�T�77�D���OC�G���\��A�k�1m賂i�Lf��<��c�3.\���k�5��j�����6�\;G����o)I�y��-��ƺ�(CFӳ���ͦ�����������E�_���	4
�6��V���U��3I�w0��q1\�saz��D��	����;(~Ǣ��5����]h�-�ۈT(Bc��kh��l,���~\G�d�I���i���#��W�z�?��>H�[�S2ƻP+bz�ʿ>�p�:�%�3��J���i˧m7K�|�2,bV���V~׿���|��~������H��좆O:l��v�S�pF3��ﻹ�k�c�T���z֛�x�I������`�<�^G��ma_I�9N+N�qRR��M��k����8:�hJ5�{��[��c��$S�k58M^��r���l#��/|�ָ;{͍[�N��^k��knrV�}N���c.*+�*Ԓ��|es�Q��8!�PU	/6��Z�Sڽi�anM��<��O����|��\�ޓ%��73��՜����x穪�X<��]U���7+Zv�	�5�8�wB�b�Z�J#-k�X�t�������~�c�O�[x6��n Gj�]�R�������ˏuH���M#��2i>�_W3����"���[�c�H�O�W�~r�*�_mj���hk��d1�k�ltQ�1�k{��C6k�ӧ浭_5DZ��jC&Mji�|±mۚӱ}�V�_�rUZM��QW���ñ��V����~���b�(��϶�{��۹�
Ǽ�!�%+ԩ�k��MO�뙊��V��y��5�Z�ƾx�c�dRej;����N����q�s���j�k:���,^�����:����7���H�+:�BE_F�W����a8����z�3Pjڀ�I�SS�B�!���4�1�D��[�|�i�5��'67VյНk9B��i�D2եh3Tbj�h1�*Ećp��f����/���̮�\Uy������|�+�b_i��j�w
]]�J�v��ΦƑ8�N�k�˚�զ�5�us��)=N�ģ%�5��5�Mɺ�3+����*XU�j�dҚ��+G�����SE"ըdR+X�&Ema�Ҵm����M[E�kS3Y\Fk��>���\�o�qZ�ƬjNz����{P�w��t�&��T�5K��,��!i�.摂$Q�����(U�@55�S^������c����z�v��ӕ�˶��OߏK�����v���j��ǁ�4O�������5V�S�ſx��q�:�W�c��ԛ�'�&��7�o�"��c�j�f������ů�$5�3_�?���G!e )�l����G�cܟ�)>��f���G��_�_�Hj�f�������E>-������s�w;MH��A���g���h��{���-������T�#�y�����sz��yρ_��H�����fR�=A�?8�#�K���.����>�X]a_�yF��BH��V�Ż����a�=x�3Ѣ�=j�����ןXx��V͞��u�\\Y\�G�h��O��Ψ�'ޯ5��(�����'����knq����t�y~�ZI��o�}��֥��h�\�\�B��nj妌��41��z�F��L�5�X[5���������1�l�Ҝ-�v��������\���"��L
��Ni�
¬"�H}+����o��uOjٶ7�9|�&̅Y��5c�Q�q�=�p�y�(�5{��2��U�7��`�#����ƒ�3_�S/?��J?o�#��J��y�ƪ�eؓ��v����o�eꟷ/����G�����J�-g��c5��7C�N��J��NMh�م��g��kr�d
�
��u�b���Ĉ�WN#�^��0�z
�Q������X���?��5�=[�/�gt��e����9�+U�
�`����� ����>.xu:��_�&������s8�ՃZ4v�g�Z۱j����F�/������;_�>��j��-7�^�8�3ʓ���=+�������Vo�"��@xG���Y����̓����R�}�Ǐ
�>]S?��7�Y��3#j_�//�XΛg-jm�l����ҕ�+������G�%��j����A��<۴��MDi��4��;��G�=BR�q~>xH&?���Vo�"�^�q���3�n���23p�S=JOSsc��k
¸�4�e_�B_�//�W�<xUͪc�ݦ��+��`������U[Fv6��(��Ȉ�*>?xK���Y�����9�f�O��n��yG��^�j*�I2߈������R9�֫j_4{��[����W>?ћ�^����z�Ks�����Wm
�����FEZ����[�?��t'�=�o�}�o�0��쵍k5����=.�ޯ�W��)�3��y����_
�]S�%���+�1gS;������/����!o�������ǿ	�!o�������#�<Ts7ȟ�?���Y���k�w����KM��SQ��n+��[j����/�hsjZ����p�|�m1�BI'�ךꟷ��[�vx�w���?��eR-�4�Gg�˂��_�c\�����]Y��~hR�@�\g8��a_~���n�͎��W�n�}����#�K��Wmd,yd�ρ�p�=~�q����_�O�m�^�OO�����J�W2=1�ص^MGi�^ww�[|=�y���s���ӵX|C���r�/�K�d�Wz:�S��2�h�Z�9���M[�X���~�a�LqV�-�uke-ΧM��+jܕ��02�PBU�u߸���_}���?����9�j�v���M��}~������y���5���O��?����?�_�q��WďJ?��gQ�̴3e~Pz��?�_��wZ��%��[kq����c�#+I$�#[�=���m�.�i�2���_/��J>������j�y'�7,���Y�U
�}�]��vv�3�el&�'iE^ߟ�|�:��ЕJj�t=�_�V��I�ywz~�
ⶼ0��cS�<rE$��S�n�\Wv���M��[8�<��\�+�c�ψ~#���.���Ʊ�k��H�,R1�'���H��–�$�_W~�~/|5�լ~ �Iogn�T�j��q�������Xo|m8���|F�*\��R�n�=��:y3��q؜�&���ݚZi�~K�o3�K�rIg�Hb��Y�j�����m�h�IZY#��N�M�y4q��
w��m�P9'��?��(xR�P�t�r\F�i̦I�c�
!*�|��B��
Ȯᾗ��Z�zn�5��Q*�?�㈝���?�x����*�/�I�7_�o�����}��r�)<-J��Lc��+?��V��~�z[��7�L�����1
F~�=�lB�t@ט���sY6���,���1��;$bG�V�L3M�����lo�v�����Q��զ�����F6�=c��(��>���vgq��e\|���Zǘ�,�ԋ0����ޯ�^k��
�Q\��k��Z��u�=�ΌV�����Y����9���Y�6R�aֺ�<~�kH3�K��E����Vȭ�2¿5"6j�5Mɠ	Ѫx��WN�<_ҭ��J�>��J�.�q%�<�MQ��>���~�'����	z�ǽ}�4�6���������s_�?�A�x���s���<1c���;��^�goy��흽�7
��4�\/�T��H�^���=�Ϗ~�$�c�m�a�!��z5ō��[n!���
�p����j,�fR��s^�|%�X��U�柩i��եݻl��T;�Շ!���+��'�Ox�R��ռU�j���B�\3,P��Gʪ�n
��j#�4��>�F��j�vzƹ��^Mv��� Hd��I.�-�k���.�x[@�~A�m�	�h�w���V�o�:N�{��xr�(SZM>[$�Xab#��׏��ږ��1����Q��?]��o5�1��i���bS�`����`H9憿�_�3ծ/�]r�����:W3mV��o "����s�2I�hKW���x?\���~(��'q&����4�:���Z��I3�:G0�F�lAZ^����|񆡩��c�,�\C$�i������c76�	@ݷ8�	�x��Y�5�y%ơ��j��m��)(x�s�
����N�2�;q��Vo��0���ͭLj�K�/4���O9�?�}�^�����I��䵯����w��.c.d�>Ң���m~*�2�T��r����%y~�=���V�QEQEQE:4�$U�q'��T�l��4���L���TaL���\��FH�+x�O?��&?����"�8���LM:������?�¸�ȸ�=�'��w/F�q]�Ÿ��O�.o��<3�y%�A��y3K�00P�������x��܂ݥ{p��i+��H�}�5*�}Q���=�_�|����Dž�i!Eh-ldi&�&DF\(p��`���8\����b�z���*�k�ݭ~)|8�;���ߛB��\0l�����_�}|7�mKN���R�O���o-X���G*%��J67)=��8��=��/�~	�Y�Ǟ
�ݵ��n�p�|�@�j�0c9��ÐGj��{཯­?O��񧄼W���Z=��ָ�93&@�&B��E'L��
	���}ƥg���L"���w�������G�$��zU�쿦�^$K�?�7I$>r�opf��d+��L�+�h�ix����?�:dw�z�v3�+yh۠��������9�|?�E���j��xkH�����B�ɹ������Uv`�Xc5��Fh������ŭ���'����IP��6��	�`�T��d��t(�Q�KM>[�]6;�`�W�p����q�22��泀��~�|:[]���|�-�y�Yuzmb�7g�W n���Zo��E���$�� i��͘FI�����HRHi���.z
�����	����gn�o�O�x��1�z��������D>��-#�^������K��2;��~yޤ� a�<_���|a�|C
lj4_����u_Pc��@R�:�+�	�8��-4��/㵆2�Lx�>�W��>�C�X�Vi���1�Eʌnu��f�>$x?�W��O�N?����~��:����ƨ�{�p�#ǘ��C蟱��Y�o�s��-k^����?��t(�:m��R>�Z��f�<�Uh<����A����k�3�v�{$��Em��#��͌�{R�ʬ�Y��Ғm7����Xw�AG̭G��6��1�ڤ�s��Ve�}8��A���7���i��R�0��嬞��+�O�	���9\�\�t��V�*��҇I�v�J�ڵ8�PGYE�Agb#�Wc]�M�zT������o�q���X���\N��ڲ��E#�������O����������`�3�;k�?����п��a���C�g����X�v��.'L�ۑ\��z���qk32�qn�9V�YH8=�����^��#?��b���/�A��|���vm8PpN��_�Ԋ�=���;�9RIE�mc����Ɨ�����xWV����[�ldw���ܬ�t.)#^�:r��>	�C⏍�N���iX�e�M2��^]�v	@�į�0k��ؚ�ğ���_i� �bkخ5�dM�%�l�y*y�f鵏5�M�Dx��<Uaqx��F��V3�	�V;�O�rD#搐m�2���<7b#,E�A��+�s~�o���KM5K��*��"�55.����y^˺������ʿ���I�;�p������]BK�i�U����X��8`0B$
rBg��s²iv:�����e�"�dѸ+r��q�t����hσ�,��5��ll#��4-N�-}%�#K#F�
��7v-��
}=����d���B��tZ�4��F1��@Ј�B�E!YY��>��|ӂ��|MF�&���7�m=ֱ����ןo��]G����X_�ԗ$q���2Z�?y[��^2_|B��/�����w�fj���{m�s厢�a��d������z�	1#�;/����*�s�#�����Q�+F�%0pߍtE�g�ZQ���8k��&hYk��~Z߶z��=liF7���xcR�Q���w�^u�yIu��{��׏����Oc��.������c�Z�,"�+8��˪�Z�5B�ɨ�Ev�Z���؍�j�]�����\��2I����%ȫQG�ZE6,k�S$tGjdNkXĆϜ�o�]�����e�z�?�{c������?����|'N���OH�XX��.;sҧ�7?up���eP��˚��)�zրM
�`v�>ƭG�����נ�����f)�>_����@������W��-���2-d?:������J�+Q���j�v�l�G� *�FA�4L���w�ۏ�^.[��M�]�;������K�=FGz���lO�տ������i����c�9���?�?N޵�4���t�����mc��bx0��������>s��T^3�fy��|����'����eE��'�(�����|j]{Y�����u����F��F���j_�x�P�
�^x(7�|���mI�
{�����ƾa]�-��4_��J�uk�0���A~�m@�������W̋��O�Ƨ���I?J�h��>	�?/��
��ǂH����j��xv?�I�R��5����@>�_��'�_���=4��	�|x��F���4�vek�7/U�M���P�4�<��}6?k��}������>	�}�|޾d��r�����=
��Y?J4��k��?/��
�?�ςG��_����'B��zI�SN�����P���	�~_��
s�������!���R����O��\�'�}��o@����?���޾_�ć�z55�hA�XԀ�����}��oG�5ςs�������L�zU��'�cP��Z���ۏ	�k�yn�R��ٞHLb�V\�n�ӯa_=�E=�kn�%ćj�nf'�����G#W����kӼ��Zy�~�e�������
��Q���|~�Vo.[���G���5�5���n��$jG�;}��-����c�T�F=�%��o�A�R��r��sֶ&�WC����k2�._�
b�Vs��ϭ$�F~�3DZ���Oz��u
@X�9'8oҾ�B��xg�&�D�|;0d��>>�g?�
���)\؍��3���V�<U�U��!"�S�P���q*�����#�щ�z�5��3v�u�핗ue������SR6��Cz�&�3�	�q�}��������
�+Ӻ�3�	���>��@���s�Tz�Y�"~מ}�«��x��K1���s>���~t�G?i��|(��i6���.&�Q��n�X��8�2Ao,
�^�O���&�-�����.:~5��@��??f��M�_i�>�-uw�[�"K�>P�M1X�����c]�RI
�S��`�p�V�:��{���1��j3䔕����?8�h�,����>�}tmr�&�����X"���g`�`��X�s�������#�u�Z���B��a��/G�$��e;g�b?:��]�q�`�u�?�ៃ�����_�g�m�9L'F�{�&���9�Y�܍�A�/�yݿ��7�Y?��}fuǵ�7�
����3�����y��{���5q�I)s8�*m�U�k5�=]��!��?<=����W���fuv-5�Y��,������#=�=+;|y�Ꮕ�çxj�q.�YY�7��Ee��&5[bk�yݿ��8�K�&��Y�ƨ�$��=��|a7������n�ñ�+�Q4�4�l3y`��8�ñ\%�V5hUj��L���>���O�`a5��O٧eo~7���d�KkZ�Ҿ7���?��w^j��=���#�ː:��Nk���}*?���|��	~Ş(�u���+=s��QD�ko��G�?��Y��R��0
#���H�h��m�KEc�����E�j2�I�IoִG�N7.XHb�{��+&+CLS�-cQ'��mhw~�%k���Z�<�U��K�*��^!�v����5����4��}Y��-�_������x{G�&�o����+8e��A Y�����1�5��/�g��~�5�������ţi�WE�֑�L�,a��u�a\�̙�c1
3����F����Q���z��5?ٳ�y�����~�CX�.7��<7i���K*,,�c~U�#MEg�8~�rZ,�1���{�/��܍���	F��Fg9��t�N]�h�!k4~�>lk[v�W阮?a�~(Эu-/����İʚ��S�cb�+H~�W������,�g,J{#����E����7���4��$���)Ⴞ
���	��-��[Gџ�GࢦڕS��U���o������Mm��Q��s������Mm��U{}����P��������PH�����w�����k�	��S¾�\|H�����O��G�隫,�	Rȧ2��W���_J�hT]�,B
��N��1py�V�c���Z��G-T2ո�G���hZ[m^��'�S�`�8힕z	9�?*�iY�G�*�ȡ~�o^��m+{��V�Va�����k�2�T�k{�|���;q�X/�J�w-
��+�Ҫ��x��͔����F*v��ӻ�tU�+�|����Re^��~��R6[��3 � �#�ֶ<E��n��fS��y���ź#�o�j���?���1����Q�¦��37L��D����T��)�Z�C����5{��n�z���ޟ/��'���/�\@���g����Fٚ�hw_��S�c��+��WI��ق�V�c�:��y���Z�U�Ρ����5�����);�Ԝz����@3��`��C����ơ��_�_���߅��U�~�5D�s1�X�h>Vq�~��\�mbbǩ�:���~˖*�WZ�U^�[���R�H�c}sK���F�ދ�)��,Y��!˟�_�*�o�Vɿ�=s���UuMu���P���9�ғ�S�u��V�^�uc��#5���a�ך�s�����BF��Fj/����u=�n̋����~_���c�.I��bw#�����CL�}o~�v����?ֹ5����b��W0�F����mi�Ͽ�eL��3	L���zyG��\�����C�5=����y��h�W�Ԗ0˫������H~"
ͪ��o��R�g��}�ù�����6�W�(.����-?�W+t�5��חW�zܹ���n)�O._��g�$�g]ߖ:
�Z(ުB�u���V��(Q�ޯN�v�޼`�;�������z���7,��F��*����?
ͼ�w��pqAD�V��O�*	�T����>����y%]�3@h6C��5}���g�
��.�E-|M#��'�Z�����g���_o�υ��-��I��>�m{5��O�2�v����8-��19�sYΟ>��O�H�j����ֿ{W�s���d�MC�,t�M�i7C�v�
���86�Q�ά�J�CA�ۂ���e/ٓ�~$�I�>�8��-��̐�[+*��1Ǒ�o� JôK����y�-s�6����_�*��<�(��O���m����'7����߄$��F��u�i؏h+ ���+K÷D�DI����m��O�{7��ő��T��_���/��?��Ր��uU)�+ƺG�y�נ��~!�#�o|յk�=/K�q���^]̰��C�/$�H�*"�,Y�I�GG�	��?�_�
O��v�n�����3��j���?�]�s�8�f�A��������Ǫ+������>4| ���8��j�տ���������E���"7K'�l�W'�/��_���G��.-�߅�
�f��]:�4<��_��O-[^ߙ�J�3Tܽ粺������g)\��`�:K�ۦ��ڭ7�4[�����]?��?��~�g~x��o�?�|/��д��ϳXX[%����.�Gڈ������5�/��]���XB��.[����J�S��ۏ�[��o�?W��](�j�����4��_>��wҿ��#��#U
��wF_U�s���
Y�6B���@|P:�/��ԟ��?ٿ���Z_����ԁ��e,${�ODo��iμ����zǫU�6�+_M����m&�����~�k��E}�v�:�[p��E�Uk��u����t�>5�b�uFVG���F�����O�Hk�*���7��=C�3�P\-��[�^��UM����C!��z��	���A��}k6��#R��Dc�H�"����H�޻�C���H?�?�X�%n����a��D�r6���~��;&1sUl����=��
�?ۼ�	u�a�n��b�s0�����H�ޝ��]b�k��\�8�kKV� �ګ4rDd�r�"��r�'$���'b�X�}i�l�?����h��<+����|�i�3P�:Ĭ��"�q��ڙ
	
$�������ʤ��I��	�K��W�������!-�s��Ƨ*�K�Q*K��_����^�}�:H��>Ժߊϓ�7��b��~+I���<9����=�����̑�L�͸��}���ׁ����3{�E���mn#��ؗ(��9�#�+/�8�����i�Q���?��/���*>+I�v��oT��zx����c֍|T�k��)�O�u��z�_�w��H�X�>_3��B~�S�=`��qڬo-Ĥ���ۆ�oL�9�?���_���93���f������?a_
�7���Ğ"�{g�\�e^Z��N�bg�4H�<Ch$��88�9��:�>2 ��-㑗̷��ٔ��$�}�מ[\����WE)�ǘ�$_ {�5b'�\U8�_�~47;��5����O]�Z�����u���q�V�^��@v��^Ӿj����M�j�O�~UPX�����>c!ۨ\�Krj≔�vV����K�u�G�je���b����\�淼!�\���C�]���#����i���#��kv���P	��3Z�ך��pk���!Ǘ��qp�v����_��Ǥ������+��.4V���&�4�����{W�kz4�f�%��kox����%_U<��%�d��D�"��Q�&�]���j�Z*������̱ƻ��GzvDݑ���k��u�O�;�i.�rY�=@�c�\�����'�K�������Y��7�)����]���4��,s� �������<ZK��8x+P?��'�?Ƌ"�#�o�R�t�.����G�)nˣ���
�ǂu��O�����ǫ�C�h���o�R!�G���U5/�>Y,�[]0C3#�ۂ�\c������nW�(>��=���G*�ɻ�伺�iwI$�]ܞX�I�����[G�7��X���Q���������LCpO�����V����_Ϋ��c�����|�5+���a��ֶ��rm'�,�߲����]N��y-��P�<���ho�W�J��p�[���O�ֲ��{��v�}sT���+
�v�\j��2���w������-q�۷r���Z�gdS���ɮ.���F��R5�;�5�C�I���A[zw��o-s&�ܒp랙
HӺ�U�Q�3�d�c�7�^;��y�pp;��Un.��^�T��,h��GJ�ӵ�}WVhٛ쐯�fL6�f��l/�AX74#�T����d��8�tBH�a`�r�Δ��s�~H줹�I�dVV������|~�����}B�9�ə��$`1폭kE�b�t�$L7	\��{�����E��ͥF\�v^~^�����i�7��~�~�_�p��Y�c�;�S�_�F�Ş𦍦����������G"�:����6*��(ڣ5��-:�����p_ xf ���㹮GĖ�������vf5��g}����?i��sg�/s���w_�.
��’xz�H�,��2�b̪�B��p+�>
��`?e������b�3K-��F�]ݺ�o�&�s�.N>m�6k�)��=R#gĒ�|�˟�
���w�r�l|E����ka5�o���F��KlW��昪�����W=<�-���f�K�.��<࿇�������6o}q�i�$�.�`���A8���?����'����f�{�/J�m�4��~��dW@��[��	�85�_o}{����,��&-SC�Ӯ�7W�*�N�ŵ��*��~P�X������]x������1[t�'��-�A�aQ5L�� _`+���S�JߩɎ�Ң�������.��������W�k�A��-7���ڊ�7�����.�����>��Zo�"��=��%���Rh�9O�Q���cx,ݗU��x��</&�����]���|��N�~�����$�>+�Y<S���}�K�����O��/f����-����u~�1����P����$��kY��6��n��_� �=��_�ś����9Z��t?���Q-;�>i�|��Bk�߹��M%����>i�U�]�᷉��y�W�&�9�!��+J��D���֜�v���.��zT֖�yΥև\��'ӭ6�]�����[J�V^
v^о�V�*N�nk�[O���]���Z����-W��l-��ᖬrvF'�4��2���@z����5�����o�o�j�W�g���wP�ly8�gr�eQ�6i�Gˊ�� �njt�l.?����Ms���v.s�\c&���p�����k]�,ʠv�wܭoϧ�Eە�0"��z~�q�Wpũm���v�$�H]������/�m|Si��h挝��͏b;��𥞉i�\EspҖ�a�3�ztg�k��5������%x�k�����G�������.EW�؂�d[L7�d�I������MZ�|=5�M4ry�I�}>�9�|~}�]F
�z�i��}�>�l{���nDr����:A�@c-$ov�� �-��t�,M2�?�kG�x�B�V�qs�ZI�������W5��;K��J4�8򳪜t)���+�WE�Gִm'o=�l��מ��ZK?;?6ߥV���0�����*��޵ܭS:���ެ��y�C.28�m'R[��33�֤7���ӭ-M.�Z��H�l�d{W�����Mu���*_���'�+������Ⱦ�*�gPp�?��:��V-��*���G1���O[(?�åoc���	�������][��������]|�<8 �������
�[�����j-GL�Hj�9�Ԥ��KS��o⯈��s$𭣮����qk�Vǃ��+���ڰL�=��T���±61L9�Zn���CM�+ӭkxJ�v�i��F���K�c�Qh��Ur��
=1V���ї*A�+��f8�����[Ҁ0��v�ԇAR~�t��B�f�@�_��hJ��]T֊��8����?J����J�>���º��\}�zϚ#��@i��ҹ-F����@���?�+��aƣq��SЂ�~K6�+?ž2��9��&8v�s�~Y���#’�d�#��I�7���8�3J��8����+�i�F�n�c�2>m��ޙ��
j���)=T����6Q����Z���}I��W8�[�B���,d���k[O��{���z$c�~��*�>�����X��t��F���8�/��;��g��MMQohcgv&F���Uu�
6�8~Q�g������Z��s��#����sE����VW<`�+�ն�x��Zan�6��T�gNr�RZ#Jz˗��^�P�{�c����;x�ۆ�����LY�t�.ᤚ�B�[ �7�T#���Mgn��+rB�{s�\z�G�~�j�siiuq-ԖfM��ou�~Uc�MJM�~_��{u0��}ߧ�V����M����/cX�f�]��e�C���w{��,ia�Şf�0�y�c*��c����#g_:O�!S1�v�A�����;�"x�)��{��Τ����cʝ����F��{_���7��fOiw2Gt�,���x<~_��w\��Ȓ6�|��qɫr6�z��q=�F�'#9Q޹�W�J�h��ӌS8�r����-U�V��t�
��� c���rBAE/��p~��W�����5o�k���(亱�5���\����dh�U��!�AR �_=隌�eȖ6?)��5I���/� �$�n��dw1.���	��Xbe�o�����"���M6����Ϟ
��6��M�;�{[Q�]V���h��--�e����g`���#�7�+o�/��>2��:o���b�'��D�8՘�ʃ���~��'�,���4_��"񥆩�*�]�ir�nl����x�O�>5���m�ڤ,�r�+�n_�$��.��F�J�݊��V���M��j��
OY=}��yN����?j����q���?F��J�}#�K�ok��y�+���ksC�	��Z:�[[ǧ�b�M�.�H�\}��d�ھ��U?��w�����/�8��˺>|���4ٴmN���s���H����T�x�N���Zt���ɩ-Fg��S-�ϵ�e��Ї���K]�����ҹ�h��N��m��Z�٫�r���GX/C�� ���k��<��k�%�d�Tn�u�t��x�D�SL�C�	���>�ў�����U?-sZ���{�k��)=��3~�GOҳ��3?Oʿ��?؃�H�Y~�6�g27�i�M��ޭ���Q�9�G�~�0������i�<0�+6r������z�-v�>�#�B6����h��A�2���:O�R��#��0n٤|!��qͮ�ߖS��8�e�r�E�h+|'�M��AZ����x��d�fŤh�߽m;6N}�)�=����T���fۦ�%��6�a�k��qS���<r}���j��u���;�%yK"��n�5����;�6��ÛOǭ\x��	Ό��?�lo�g��oX�>�q����^v��}Urr{���Jo���*��|�mq��
F�GL��-��LH��jN��߀��G)W��=H��<�4�h}jXב��o�Z���"��:�l��r�<�z��������\��랥&��
QR�ż�Ŧ��}���<�#�X�Ǧ=�T�[��1��&V_���0��"�>�N�]�U�Ҽ޽$�L*Q�����^����ͻXv2�2�z��k��G��P+�jvY>Y���t��Z��(m�*�f<�5�?zWB��Ԕ.��=)��+X��c�'ЃY��ϝ�*��3Uv������9�M
6��ihR�ڻWv{�MjT�?Տ��q�[n�nNW�t�|Y�~n�2ܸlX֤	�I�d�?��=;��
��O��ch���Y:y��h ��fu74��RB�5MZ��R��iwywWQB�8;Yœ~�$B��C������^"�:���<��hzo�m�'�SK��h�)���Ga ����Kn�
A�>.���CE:����i�in�㹖���3��8�99bHPe�Gs��� ?��!�ǿ���nj�-�|=����K��f׵/츮�)��KU�ξh���:e���6��g�]?@���$��
����Mu�v'�K����v���Y?2�&�5�({2�pJ���l����nj�����_k�N��{-���̗mVy��,�$;��
J�|7�-CJ��q�j����z�I1��m,���;�Tܸ�_�j�j[�
פh�n���j���Ѽf�mm��g�@<�ہM�|��UD`�9"���/�ַzͣkV�&�Oӣ"��H˲M���@9�K�j
��v�y�k�^��3ç�����s����{uen0�@&�Bғ�M�����P���1G1�]Q"�iˌ�Wk2�&��\��MKTחS��l��1[M�����|Ì`a��w�O�w�u�.��7úy֯��-.|ۖ�;{������C.�0�V ����<���
R�E���-���K2��H�02��RΌ�����`HKw=m�k:\_�jRY}��7�B�r�f��v�8dQ�}�f�4�Am��A�{
KZ��O��i���y��#D2�-�s��-��3�k�Ƈy4����xv����"{�<�����.VX˱�4�P�8��M�˽{Ğ�,�F��$��s:��ѤjKD#�	��v$�u=;�ݤ�����{�V7��0(���F<~��	a��/�����C^}b1#ۉ";e��W;B�I���g��>�)+��-wJ���ao椳}��}�M��% 
��2Hl)�؛��.�gc�M_K�����[�td�M�O-�g�Yc��*���8�PY��M���BC�g��[�x�W��<;�ȶ��]��鼛{V���i�3���?RE}3�Վ���+��F�!�{��a�f/3�$	��&�� �Hb��g{0���Nu	��l����
^��.5�6?Gk�j�$h�;Ƒ$[D�o29�@��9'hp�A�VM:+�R�Z�m�9$P�i�$r̚���H�
�0�X/�bl�Wp	en�^�<5�"i�Q�y8+���qkd�rI�h��ͩIj��-q"H�S�Bn�$n�ae85���*��=�^K �l��"�Ӯ#Y �i[�ȒF�2��r9V��nTv<��JXd��|r�6�!g�n~��X��v�#����MR��0�)g=����i�TQ)wYb�0$;�
зS��y M{Yj7�smv���MsnKCpU��B@%	 ��8�l�+K���y25�3$�@v�ԃ�
��xJU�$��uU.N��Z�K�N�y1��-��8'ҹx�}V�HU�m�b�����}k���Jm����7�-Z����r[k*�}jψmd��&�Wηa"�I�;t��I}�>n��hZ��6j�e���b~�Vҍ��;lY���
̭o#M�O1eU7uV=��M���j׆�O&�p�O�q�OSRZAV�n�t�Z��
�����+2��,���+)_嚘ǧ��ꭋ���?�~����5K{�ÕoC��:m⬉�t�.��ྛ��أ#�Z�j��z�>LV�Y�H���T3�O�z�ٜЯ(k��%��e���ͣQ�ϑ���N��V�u��@�|�,�7Y������z��1ڸ]H�P������(��R���v�?ص[yw��7/�׸�FG�Z��Cg'���1�a?�����L�2����
m��ᷖ���*���d�\���J>��q��+����!m?A���o2H�h`�X��<t�+�d�'�,�3gɇ��?�j�t�M�!��4|���I��Ae����f�w=�ϵ{y}N���]��ʵ5����y#'ƺ��ߥ�(������|�2��zN��//�%O��3�z��N�*ɨj��(x��rΫ�Ț��Ǎ���ﮮ<�1��<�x�^8
8�z�..+�-����h?aʶ��?�_�Y�G~5jL�=A�qЖl���u�
Ҿ����8�_�u���K {fc���7�?6l{�|�׊�3�?��Ԋ����W[�aa'��v��U-��|�n�4�,��N��Q�omauu�I^4g�&e���c t�]^���R�Ĺ�<��XHw}�V�(d"r�4�1, �~P������c��_�$+C����Q-z�j����go��]��F|'��G��x�Zs������i�yx�Z������ar(�؋�7�ʯ�|�>������V���r���?�b���.�4~����?�ďH��)�e����^������?��>�����T���WV�JYJ�����+��"���=#�����h������"�?��>�����Y�I�H�ڱŸz�*��v������N���/X�
��B�d���ꗫv���F7�ߚ�eQ|6~�[���1��.�������:��_�p�tu��!0-�Z��rW~G��N:�X����h�lVͮ&�$�
�~����d7wBaqq�u5���1h�V?(��x�>�7qV;�<��
�:���2^C�D��E>S%y1�r���0��5/ǫ%���9-���m�F��vݟ�����N��[�3��zg�ֲ<S����79�U)+۱����/û;vi����(kg���9F	�O���W��O�MJ�C�������8$1�_B|o�I�m�=��O_�J��L��E�fld�~Q޻��n���#i`��HA�4ѹ����Cȣ��ӕ���Djf���_.;�~Y,��C1�"��n
�i7�,�0e�dt�Y�.ͧ�����m;����V����.����V�]��H�!v��6�=:�zn)
�9���W%�䖑\B���q�Dm��iYU�n܆��F3M	��i�#m:����5��1m�����ƒ��8�e�,��*e�0��H�W,9$�s�WI�'�p�����z��<�0ۛa��T�*�*H Ұ���i��[ǦM<���^�M�l�+�\��H!��t�wZ�������R�����t�3��ە��=[�'�z��;�����Έ�9�gOֵ��I���V�$�Q4�L�s��+���J0�A�3[��$�9m������k}�V���յ
V���X�->�w$�l�4q*�6J�p_?��%��V_.@A\�s���׫n�I��Ko��}�~f+?c�U��4;�����@����=�B�\�YtUQ��o�T�u�\�'�{�jAX�&Ee>����?2�s-g䕏��A�@�9�q�We
�E�e@�;THҙ��64���t�
e��o�hx���F;�sY�G���Φ�2�U�T���l��e�9���0lg�qYh�,o�¶�2g�M��>#������Եȯ�n�!�=��YB�t�RV��A`��
�ώ�0�~.�([O�4ٵ��Ԛ���v�"%�0�<ے�q���S���\�}(�Ê������m�����\j�t�q��$�Cd����QQ���FWvX����x�F��kxU���K>M�+k�V�'li��I�I8�4�/|M�4�Kw�u
F���jo&7�U�܌�1GZ�!��7sM�x�Pկ��5�6
2���E�c��Ȫ� �r�NY�sF�cSY��-�Z��H���-�H�EvI#�d�M�h�E�d���
��/�RC�"�Z�;������\��(��Xt��}�A��v��o�I���u�j����P6�\Z������%̬͔
ҏ-C0py�ɹ�i>��9��GW:�j��n!�c�$xR+3�I,������K(��$��~+i�;���[�w��,��V���
�+3[�P�l;�=7�Z����x�OծAw[g���/�@�L�S�3�"�@��Ӆ!�~�¸ӭ'[���g�@�/,I��xd�I�RW�J��ֺ���ݦ��Ok�iww����-����G%�$�6ɒہUU�fʀ̿�~��/�n&�_i6���Z��ߢ�������H\}�y	@$�9C�j���:��˫�<Uyq����n5��5&�2��H7��T1�3�����C����ƹ�j����sico�i��[����{����*	Bck4�Cq�#OT��"�_�5�>(֭n5	�N�f����g��e�|�C(�ur~MG����u�^\çݢ��v�m�k[x���L�e�dF������6���j�T0Ǧ��6��pg�����X�YT�9������%��t�E�:ψ����J�<q:�Ѭi$\B��<�p�ʈ�a��X��7��#���^��H��=^�M�Ȋ�S扗%@v,Y*����ih|ep�7�4�a����M&�|3Heh$޸Ȑ�YT�Q���}�oI�mޟu�kr��G����-�f�m��E,
���$�cn@5�࿇vz���Vh|A�M��%�Z0�Y4��T���ّ��'#b�F���[�%�v��j��O�u镼'k��%��%*s#;|��c�H���I�w1n~ ���M~�-Z��P����i�b+���Ф��,=7y\�vw_�?��� �Y�V��bӭ�P��%ծ�Y��3���U�[X��A.�s�3�-��J�5[U�,ᳶ�g���oyroa��RG
委`;�d:�Ur��5x/I��<Iy�%ō���Db�EL;���vq���BIv��iiߴ���7�l�֬<7�q�-��.��	,���8��<�b�نܻ��?�Z�h�����DW�k�[��9�]�G���9h�hS��$6���[����Z֭��-��s���	.e�{��erV5�Z�,U�o�Q�]�i�ū�rk����6�Zv�a�E���2J΍�q�H2"V�Y�S�r���2i>
i�n��i�k�ra���_Q�3[��hU�t$��Fɝ
W<i�M�𕞚m<K}kc�M�}�PԖk����G�J�a�	�p��ٯ8Ԭ���g���;"�����rv���Ȭ�|1��O��Y�sZz����K����y-R��;����m=��x�$��މo$�8x�I9"�H����w�$���fx��G��W=�<�B���;��[��bzt���8�F�</�o^�ڸmGK[mp��c�G�u]�A=�G�ȏ��$�����i��ݛֈ�̹F��<���Z�7���uq�������2�c�Z���u�}��
�01�S�NMy�Z}�m��(�p?V�,�U�!Y�On;
�KC(��-��peݐy�k�p3�^ �r��)���V&�*�(Uc��U��Z�<��In�ıy���*]7��E*{�2����Db��I�eR5,�'�T�%��I.�VV\�����ľ W�mg1��K-�Dv�"IXǶ�I�=j�-y��f�X����X�nU6�U?x����Zr�����L�֟�߅1��m?S�O)�%�$��`t�=�^�;�}k]5t[k���C�_��g����s�U=CJk��,��C�~�c���zn14����+��!���o�g�����s�/� �V��W��U�иb=3����N҃�_�&Z4�V�0*���d}{W_��z9�&��U�׿��v��Z�ir�Q;}�j���t�s:ԕHٓj��a�]¬�$\�S���u�m3��*�\mA��{W�O'����>J��um���N��S]9m^ld�c���I��bZͮ~�"��6�]�BGʀX�;�$�:`z�W����uO��	�o���0��\��9�q�\T*w�����ڗ�(ve�7V��.��I����FY;�
�� �El�?��@����v@�!���oM��1�O��x������|}O��(|H�"���]S�M��E2���*8���Z���ݜm'dxQ�ָ�#A��y]I!yc��|���Fһ��88�5ݷ�n�
.�U�K��Tn���kɯNQ\���}6J�N��k5��_���ZEu��6ڏ���ע�q���@Zـ$c�a�ͺN��
�$}SRS%�ٕ���q�M�wa�m��ǭ�}>7L�{w��E���v�F{0���GM<�l�ό�*��ZJ�|�<�H�V
r�4(6�A�(��������b�+�|6�6���>�(�D�|�\0�ne���t�q�	��*�/L�]V:���	��B2�9��B��N9#�՞�hƿ��M®�o�i.d7M��ۛ�W-�X���$ʾb��v�{��Vee��-p�-bf�֦X��*��x>�s5���7~��3����j�����9B��ڪjp�F<3/�Io�C,HY\n�GJ�;�_��ًTywƹ�'��"�cK�.ݧ����xn�*�㋒��h+� ��\��/�|'���)?��14rp�T��:�+�+J��n��k���4��i�V�g?ʽ,$��7�s֗����h�w|Ǟj�Lj�l�/-ce��A�u��Xx~�7�Y�Ǫ��'�
�5j=7UX4�ݕcO�
�g�s?\�$>/�cg"����b���dw?����z���H�T�6e�H˾�0V�X�|��S������]�Wsc��8�Z�b��7Mܚ*�E�3����zZ.�u�^G�漶����<3DV��V�9�2c(�z��-������qg%����`���>�UB>�X��7��{*�J<�=s�~��h��k�o����;�H�9�_�5���)���C�2^ãh�����(3�ߝ�82����9^8���K�&�iZ[Guya�U�H�{U��B��2�!���/�<u�G]֗n��[h�d��\�D%o=c/������R�ƹψ��+�[Y!���յ�$�k�˧(����P��3��*�A��M-d)F��T�j>6�)���5�}��4"yn��$V
�H[���OM�?7I>�[o`�8�W�?���������S��cӌ�O�2JZBK�2K�s�
*��bV�s׭vFZhrIY����9��Ս*(�Eb�4l0G#��~Uz]j�x��f����F�����Y�VVa���}4�&�V*Q��]��yg�V%����.߮}E/���׆5�Q��X�_,&|����ҫ��VʢOR�*����C�=�e��䃻<�����
�Y�G�.�p�R�~�Ҵ����E��ڏZ�/T��'��:y)����G��ƒ����W2�G�`���2�5����SG���
z���Sdž���?��K����E��3x[]�ԭ��u����B$��e]r28��zW]a�WI��T�t�r��j�p�Bmf�M��yn7!$���$�f��}�$��3�`j�Y0�u��M8��-
��G�<{�P����e�QB1<Pű@�cH��UP>P��C��"�𝞃�h:>����M}l�
43�$��2D�Z2!O��9 �I�>��ɩM�Z�Q����k��eI�V3�~�y`�K�s���fkD���ܥ��pG�����6��]ܑ���D%��6�$���6��|����,�Ei#GF5H�CC�@��%~����Լyy�ˍC>*����SQ�·ȚbK)d�RĪ��r�����#��^-��[}wC����K���m�������$��7�Ԗ߱����Z�c�xn�+���W,��ܹU.�v��������8�|F��n��7B�`�X�Zl��6���<����cU��'����
I�c�O���S4er���4n�cqBH�2�I9�?��}m��2kG��G���0��VD��i�Ẍ$���F���k�V��G��e�{���&?2%V$��0�P�t�@9���oR�S���k4��_@%��&x#��S'`+�0x�o�._j6Zn����k�Y��[I9�DQ�I��"xј���A ����5?�N�R��4q%�yϕ�IJ	3��!�6�AA��d�SA��4״;���e��8 t�%2��@eEw�A!'#����O��A�n5}����/$�,Rdި�$�C�x�
�Y�ӵ
IԭZ�-2���P� �
̒�
��	
��Y{�k�	7�<&�,o*ʗ��0VU*�P+H�ь��䁴�3~�Z��G�����FϨY�h������>B�хp�8��u�M3�?�7HҴ�
��[X�葥�N�`�3+p���X�s�W?�W{��-H��S����#q	�{p�ۖL�����ڤ;�Nr5meMR��ݵ�d�,纷A!/�����i$�X�EX�?ci��lx^��+IP��H�
���o,�Hb���š
'����K�]j�V�?'�����Z�1ZY�ݭ���U3�.X�6�by��:�Ď�T�Ή}in��an�\[�6���t�3+fr噝�n�U>-���K�G_���I"Gqm����ޠ�� �O8��0B��S�=hmx��W�4�e��~ѵ��r�32.���'��'���gx��m�c�����N���)�[ �ۜVs�֞ǭxO�j���ky�\\�DJò��:�~!|�����\�\[�CH�6Lk������?.T�d0��"~q�7c��ִ�%x���>	�&�u;�t�2y���w���EX�{�7�#��6��5mf+-��G�59�i�3ygw^1�W-�YK\��:�X�]��VW;/����m�i������<'��~9��Y���G��a��mՔ�
��bI��I�	݁���D�����f�w���N��;z�qڱ��f�_�cU|�nP�h�\`7$z�*o
��I�[��̞@=
(a��g
�jX�K��KY�>X�
���z�~U�x
�B��Zh�m�
�hH�+�:��9渷���w|��2G�2�V�F�9�eH'9�ȭ��^gu�iz�3[���4Ұ�3#gbg�9�=�J��v���]C�qs��̼�TJ�{�jo�{YѴ�P��n�����"[��p:��Rx�5���洏�rH'�&���H��{�-hh!.Z�BWJb9�	�:ϣ����Ŧg(�X�j���:�k�C�i�+�7��	j핧ͻ����bڱD�W�����3��g�V�z�F��K��8א����#�>��xE�Qg�o��r;�����'�ui�Y���;���GLw�w΋�:��8�QVs�Ϫ�O�H�#|*��h���4���5�Hʩ���-�GA�{W�x�__|�F�����3Y�b�5ճ�>YU��N2�1�}3��O�>��W��=�Y.�ۙ-dc�b3��?�z<Mz���N�]m{��GJ�9T�՚{>���Wt����UE_��G���>�Gѿ�Cy���8��sI�H\�!��ҽ��5M^xt�x�Y�$X�皰�ƒ�ʹ�$�X߲��}��g�q<���E��
W�>¼lF*��m>��0��0���n_6t��:o��[;-�[趱�G&�;h�'���ד�3I��tڧ��6w�nuI&޶�s�`�f�>;�:�C���x~5�qd������{4i�$�^��_���m��ڦ�B�!�Iӌ
�U0���]��f��a�藍q�m*�[����1�g�da�c��FG'8�$�$���T��do�+�9���?���!��*�Ϳ;?W�v�~!�M_��󲤲�
�́~ԭ���N��Sf�O��Q�2`���6+�[�/V̹�Db��N�:�!��U3�n:�&�Q��e`�hUf��'�My���
��EgjZ��j�YS��QK�K�{���]F��5�GJ	,�V[N�%\ƌ2�v��y����vW�I<���WZ,���aVc}��wd:s��Tccɿk4�P�a�F��~XQ��.+̼3u��&�5����9�r���ɡ[�q	E7��$|���;~'�%մ�qnH��#�6xOƻ��%eV��Ff���|G������:F��'$�'�^��s����4>���j���^i��C	�_d���x<�m!k����c���k�%���]=д�ļ�]��?��5G��[����`E��r�Վq\��`�:��L���ˍw9>��޲�Q�bC&T�q'ʼ����T|A�\x�Q�;X�ȃ����U���U{��"�X��Q�5��.@���Z��\a7�A*�G��k=��$o$r)ʲ1VS�QQ�eur�d3L�I$)bOz�ȴ;8�~�V��k��G��tƜ��0�!-����'Q����u�v�v���0v?3��(�d�\�5��m��<b�	�#�X�����~;Wϭlwn_���BoϩI,�8�N�*&�52٫���M
e"�����Vgy�$h���\,`�c�׬����y��*����#�j���>x������>O�Vo��ȸ|wQ\�� Ό,oU'�ho'���Ǫ��3�8�OM#�=��7����m>&��i.��a�xIOK?٘���2��z�|m���vV�[y�,�yn��Ԍ�����ku���3Ê�*JDzj�s+�>��i��9OVr�)�Sm#)��#�8��F	��a�Y�Q�!O�<�8�%�=�ju�B�m
��W��r���Y����}�ɹ��;O�Q��aޮ[�vz���*KyK��:����h��g���r�ɔy�C������L�r�Ga[?
����Pi�Jmb����o�s�����q�1+��~���̜-���|Í��Ҥ]JEV\|�Y{12?�ײ�OG_���7�?�C~ʚK�	M�����<t_�_��t�lb9E랕�_��:N?�)7�~�7졤�ƥ'�֎`�<��]��iZ�i�i��!���V�P}��:*�����Y�����?d�5�&}�N�s)��j�ykd�yڧ�z�v�\S?���u~��^�����IO�����e-<��	'L�
9��x�;~��J�}JK��!i
�E��a@�=����R~�{��(�ߺ���V�~]J���ף��U����e_�!�2xj���6��֤/!��*�1�x-��μ�i���Y ��O=��+�E�4����"�j�-��,�89���7�ock�\H~T�nv�Wb~��8�c�2㳮,��W��1QVg�鷺��$Af�C$RUc�����ͪ�����.$a���O����wZM��wk%��yIWi�Q���V-o�UX� �je-��'��K�u�b��U[�����-|�(E'���D���f���L��IAC�0�<�z͂�Gv��~c�{��3mُFs�h҉9M���ZZ&��wV�]��+Zic��};T/y�xB(�ʹ�r+G6��KR횀����,��r\L�\�%���=�H.�j{��N�w�+�F�J˿�m�/�=��	Xr�ֆ_��4J��@�Z�J���n��$���Em�4�P�p3�3��:]$�6����O��V�|�TFN�,�F��g�mt�x�Y��]�̻>U*pz����-��m"HPq��sXWV�jS���l…+s�b�'���bU�`��neb���F(��mZ�m�3�K��V���̵�J�NYW�zV��c�о^��:U_
�0��N����67*��l�aN�B�p8��r+v_
���O��#Ʈv6ݥ�<9�F9�{l<��lr֪��L�<���vɷ���w�4A�����>K�[�1�'��ǁ����ޡx��kß�w�?��+����2Zi���oxX�@a��z��%,i|-?�<�-N\E��C�?`�&�iy���%��s<Scc�1�G�׈~�>x��<V��p����b!��ƻ��R�smh��,����FH�x���P����H�]G��֟m|1ٶ�M��2y��\����I~�,U<�k����Ïᚿa�ž�A��j0����T�z[�y~�Bo���W��9���kڭ��.+�?c+��o٣�~]�ԉ��D�2��T��^�s��C�\�W������jE�S܎�K��.Qҳ�6��²o5�AG�ox�����{�\D�%_����Qe(y�
ç�Z�fUo���\x���D���e��SI��_�"?�kRz���/@���
�e�%��*������%��[��1Yz���m縸��I�`w��xi<�����^�Ϋw4�7�Wv�);�O6�+M���X����c��su��^���)r��K����%m�w v�?����\��UY݂�T�X���8��|>�6��2<���|����&�������sXXK_,r=�G$�q���+H��v��.�����O��;y$���|���.N����U�[s�������[�:�<?z?�g��<pˆ��I]�*3��e%��c渆O�]vkI�t1�Mt�72-�n��q"���5	.,������q�W��>o�U�a4��K�y��C�f�aH꒔���Y�#�Ӽ=D�M�ig������nO�q��5�itx�#�<ЬjC'aZ�H�d����TV��
������ڔzM��K�c�5J����ڴP�ʲ�ѳ�\f��ɧ�nD�K	�M�&�ɸ~>��8�L�kFB<V|Ko$qt/��8�=(�3<����VC�H~M������Y�T%���o-��S��<p;��ƣ����'�?c����2d��F��N�Q�{�|��g'�[�³�́wiG�/@|�zW�r[*��y�c^��N���KᅜlK��bf��Ls"���П
�!�a�g+�vR���ra~~�jK[�F"�?ĭNk��}	�5a�~�/��/��z��7��?�k�̚�C$pF�*�åƟ32��̾W����W�'���[�+�73��\S�-�v`���y��<Ԋy���T����65��:l}����5�%��'%�H�v�G��c˒�<��Oך��^�_��vۈus����,W�g$!Vvb?��:�;x���M���b��b�%Ĝ��*I���?1Q��7˻���\���%��B*�#w'���no��gYY�'C��o1�b���hC�Yi'q+�W�����T]��\	�}�E����%&�f���D$|�ΪG_L�s(�ș�g�м���s�;�SVX̲&�R�}�Z�$���>��v���丹�`�D�eضy~�]��L���[?��I7�L�_R	��m��Fs�>���?�5�Ъ�#��4s�oh���ˈ�_ �I���������[y2�6���7��e�o�>݇��%��k$%�
$��$�D9�>��Ms��{�M��Y�[0/�:I## ��񢧉�j�(U^���ۇ,��/��~l�ѣ�`��
���A�32�0m�%��{
�Q�E��l_h+�º�i�{mϲ6+�;�uf�{ר�#�8�!M�.��4�s{t�Hے @-��<�02}����/�e��>�Q��k�F����]{���7��nI����
�*8�K�E�%~�N�-t>)�Q�`fP��6>���/�U]����Z��F��}rK�{�s��[�bП%�� ��r����	�4�c������Z7�4
�Q"+�BT�����ɯG�]��?!���<U�\�2��m���g��t�6�0y���w�K��%V9�򯯤���
��|;j���Y��8 �ߥ|��M��x�L��QN�b?¸���
E�i�_k�t��]��#�S*�S�=�-��U���nYK�]�c���s
�1ռ�������x��1q��6
،W�|z�I~�C�h���?:W�)6��^�ҼZ���=��Q�!xu���G"[#�*��}I�{�y?�)�º˜|ڀ�f���H�g-�'�τ��wrQ~ק'����7/Ќ�"�B��6�,�<��ɎG��<g��P�s�p�ɮ�Ub�� nv
�>��5���֌�u/,��-��j�m�E*��[>������;x�>흟�����\_�u(`����M��F�����}S���X�f�E����䍬B���x�ު4RЉTw�<%�gŽ���r�=�q�xEV=N�K4�*U!�����r~�}��j��KK�ޑ���^�$
m�Ϟ,d���`��c���8�[��!$4�:�x��)t�sX��G�
��&�Z�W‰�����f�:V͍��6�7�<�ͮcV��(��ߜ�p{b��KE��/&mBckgh�[���8�v$���ƪ�>36(-�t�X���o���z�309�3�։Q���R��dg=�f�>)?�S���"�,~ �E���$�
�8���:q������|+�6>�y�����9��.��U�S�i�kh�{�6nB�[S��F����~����a���n#ڹ�]OTa��Ҽ|%l�ů�\Hۚ�o�d�f��asI*���k�8�8U({���a�aWֹ?��-u�V�W?e�I	��s��
��u��"�X�P��xaY�W���7y9�C_U��𳏓���k������پ#i+�\=�����K������)��<�	x�##��̹���G��|��as�W����Ķ7v�`���I��z����m��{�(/�"��=��l]�X��{/���<w�'	z�=jIk?��릧v+�Y�*���}��8�h�>e��~����_P�z]��o�&���1ං�8,����@6�?�.��*O���I����u��ydu�#�<�LRDsA��T�����v#?=�7$�!��|#$-
ńi~�X��\��w�0���ج,u��T�O�/�uhZW�rЈ�g�x!���$�4�
T����~Kb%MYͻk��<\5�GG�uMF'��?��a�ՙP:�A���\����K��c�l
�&��E����>^��N���&׵v��-k�򭲽���@ЗpfKrdP�o���`}EX�k^���]i3\kP�rE�S�᧏
J�ɍ���N{���i&�xTM��5�*�4Qh���qt���m���L�#���|R��}�FhQ�^K�I�2<���1��Z꧵֣��F����*~��Y@u��a\q�r���?�mI��o$
�K0E��wm�c8����A��{OX���7����)Un�I�<�G���=�*\���cֺ�gᮃ��[�&��{N���O��,qi�J�lYoo�^��VSM���5�O"�����N�s5�k�۲��5��7~�d���q*�&�����[�G��w5̤��U�!���q��τa�-�m�ܸ �'��y��x�[��a��)�Wh�t'�t�q���_��ȣ��e�J��w�<��V��k
4wV̳-�;r��E�ϙ{D��ދ�����w1�Y��]�9$����޷K�A��F���:�/��|?�?[�iV�Z�Mt�17RȻ
3����9�y��Y^*�_%�/���ԕٌ�bֳw�ti>ϴ�×n��k�%f���I�I�W5}v�W�i�&wh�ڹŠ��	n�7~��a�r��<B��˟۳B�7t㎦�s�|>�$W���&�x<�%����=8�j��/�
�SC����'��$X���揉��:��s�Gv����Ȃ%-Ěk>5[�t���VfO,P���c��X�tɼ&%������LV[�A�,n>��y������z�֝�;u���U*�S�����פx���n�P��I���Ѫ��%\���Q�$��6;�1��{�zb��\M$���.[{�GE�(��4��J�sc?��1���Fr6�?\V��p�X�o�f2?_�^+�<z6��=Y����I��eT��QD���):zg��_<��ɑ��_Z�oڿU�]O�m�Y�Y���?.MxNv
�
�g�A�:	��1����\H�ʿ�)�|��OҜ3Rlw�ڴ_��������r~��M��������)�#ª������O
|�%���W3����������T=��U�3�����O5G�+��.jx���t�<�W�^c�
ľ/��.�>�O��F�;����y���o]1U-�F��+�/��p�?�����T���c�O5�	sM]�ܐ2zw����D���dh�J6Ӄ��T4c�'��ի��XG�C�c-Ϊk�;���f��'�m42��J��3@��O�t��/*��)\�Iڮ���o��]��3�����-{���Z[nY���y�*�hY�Ԏ�>���
3��.�Ž׈#�	K#�����s��uV�=�ÿ���,�uU
`�����������dU���X���M��g��Dc�j�:~�Tա:��I���ٿ���0��U/
�o��'���������#�cw�՝���I~�ڼ��j$���C�4���|�,[��~��̗N��6�[�d}*?�J �G��fн1��)xk�IZS����ȃ�(����@�~�^���|U�k��MB!
��s�3�r���7J�|3�sh��k�X���yr�kF�&�v��@?�|���n�F��e�'Oj������P񁞾��~S�T˰p��I�	%uwd��nݏ��/
r\��\�F����5"���w����ɩ��x��1�<�y�F��񫴊�T����I�9�j1��Hf_x�n���Ⱦ`*Nw��A#��i��w`ϟ%�/��M�t��n��5��bُ��_�9wu��5�'����ԛ��@ۤchI$��u.���8��9�ܐ�OLUo�m��4�n��$w�CF��$����;3��QUm��o;��<��W�2�,�ͺ����OὭd����h	��›���Fv�]+�hʏݮ�-^���mwa�3���f�@�^MMϿ����|^_��b�Q>���+���y��w�Q�_�@J���;Kr���o�u#�i/��k�{�%��h�k0{Ҿ���f�ïئ��
|�
OӵEGkR�jQ��m�%Z%E���C 9������Q���_���_$�J����'���B������t��M�YA�8 ��J�r�ԉF�!�k����׌�"�s6� �v �<���Ub_�V2.~܄�zش��M�;�UXЂ�q��ǥf~԰�
�UV;�B�A��\�w>p�m��7<�DO��O��[7�n�I5��|��w5�s/��Xm��.~�q��K�mB+e����D�I^O��R���
t�w�nt��4l$u���1�p7��*���Ֆ��|��q9�὎q]��t���V,�Lֱ���?ϥV�tؗJ��n�4�~����mvk]X�c�r@q�Y�v�P[�z5f�ծި�w-���v�$S/�޺�ǚI2Y��/�o�����?xV�k�y<�B�Z�d�g���Nk�ESJ�T�so���xN%W�Vr�8�}T�?��k��5�?xZ��>�����}�G^�?����$��Yv��#�z'��=�+	��?Z�2jӜ]);�k�(�T[�c�;�~��~)[X�����وR卽�*҃��i���W�_�\�+��O_�'�����V�&^"
�T0\�0��Y�H��Q��`�`s����k�V֯�i�
�{tړIq����k���c��€x�j����s�ߴ��w���Y��q���z��d�*k�($��x������AVe �k�gӥ9ap˕=��了~��O���G^|��k[]���+�V߼��h�O%�� �3-S�Y��a�g�I���"�8^=���5���s��	��kW��W�E��İm��6K@ۀ����rU��v�d��^"���d��$[&��m��������%k��'�:����ۛ[��9�9!x'x�,/.H+��#?Z���V�ł�SPh�,Wr�K(E�Ny�I�a*4�%9-WS�U\d����/��Q�ɩCu��2���c�[a]�̍���Wr�J��T~��<
ec��o�7�|l�9��
��M���q��ּ?�����
�F�I�u��6��D:�O!r6�p�/:��N�5mk�%�֥{-�͔RH�s
Ő1�u=:W]W$���U�2�=���������
;<Q���
�z��wpz�ֹ�Gj���
{��z��xp=�+��S��PK!Ic�C��fonts/icomoon.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe000;" glyph-name="mobile3" d="M48-64h448c8.832 0 16 7.168 16 16s-7.168 16-16 16h-448c-8.832 0-16 7.168-16 16v928c0 8.832 7.168 16 16 16h672c8.832 0 16-7.168 16-16v-160c0-8.832 7.168-16 16-16s16 7.168 16 16v160c0 26.464-21.536 48-48 48h-672c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM576 624v-640c0-26.464 21.536-48 48-48h352c26.464 0 48 21.536 48 48v640c0 26.464-21.536 48-48 48h-352c-26.464 0-48-21.536-48-48zM992 624v-640c0-8.832-7.168-16-16-16h-352c-8.832 0-16 7.168-16 16v640c0 8.832 7.168 16 16 16h352c8.832 0 16-7.168 16-16zM352 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM768 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe001;" glyph-name="laptop2" horiz-adv-x="1344" d="M112 128c8.832 0 16 7.168 16 16v752c0 19.136 12.864 32 32 32h1024c18.24 0 32-14.976 32-34.848v-749.152c0-8.832 7.168-16 16-16s16 7.168 16 16v749.152c0 37.504-28.096 66.848-64 66.848h-1024c-37.088 0-64-26.912-64-64v-752c0-8.832 7.168-16 16-16zM208 864c-8.832 0-16-7.168-16-16v-704c0-8.832 7.168-16 16-16h928c8.832 0 16 7.168 16 16v704c0 8.832-7.168 16-16 16h-928zM1120 160h-896v672h896v-672zM1328 64h-1312c-8.832 0-16-7.168-16-16v-37.6c0-38.336 45.056-74.4 80-74.4h1184c36.64 0 80 43.36 80 80v32c0 8.832-7.168 16-16 16zM1312 16c0-18.848-29.152-48-48-48h-1184c-20.192 0-48 24.576-48 42.4v21.6h1280v-16z" />
<glyph unicode="&#xe002;" glyph-name="desktop" horiz-adv-x="1248" d="M48 160h560v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48h560c26.464 0 48 21.536 48 48v704c0 26.464-21.536 48-48 48h-1152c-26.464 0-48-21.536-48-48v-704c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.168 16 16 16h1152c8.832 0 16-7.168 16-16v-704c0-8.832-7.168-16-16-16h-1152c-8.832 0-16 7.168-16 16v704zM112 256h1024c8.832 0 16 7.168 16 16v576c0 8.832-7.168 16-16 16h-1024c-8.832 0-16-7.168-16-16v-576c0-8.832 7.168-16 16-16zM128 832h992v-544h-992v544zM448 64c-36.48 0-64-27.52-64-64v-48c0-8.832 7.168-16 16-16h448c8.832 0 16 7.168 16 16v45.6c0 37.216-28.096 66.4-64 66.4h-352zM832-2.4v-29.6h-416v32c0 18.848 13.152 32 32 32h352c18.24 0 32-14.784 32-34.4z" />
<glyph unicode="&#xe003;" glyph-name="tablet2" horiz-adv-x="800" d="M48-64h704c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-704c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.168 16 16 16h704c8.832 0 16-7.168 16-16v-928c0-8.832-7.168-16-16-16h-704c-8.832 0-16 7.168-16 16v928zM112 96h576c8.832 0 16 7.168 16 16v736c0 8.832-7.168 16-16 16h-576c-8.832 0-16-7.168-16-16v-736c0-8.832 7.168-16 16-16zM128 832h544v-704h-544v704zM384 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe004;" glyph-name="phone2" horiz-adv-x="608" d="M48-64h512c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-512c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.168 16 16 16h512c8.832 0 16-7.168 16-16v-928c0-8.832-7.168-16-16-16h-512c-8.832 0-16 7.168-16 16v928zM80 96h448c8.832 0 16 7.168 16 16v672c0 8.832-7.168 16-16 16h-448c-8.832 0-16-7.168-16-16v-672c0-8.832 7.168-16 16-16zM96 768h416v-640h-416v640zM288 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM240 832h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe005;" glyph-name="document" horiz-adv-x="768" d="M48-64h672c26.464 0 48 21.536 48 48v672c0 0.544-0.256 0.992-0.288 1.504-0.064 0.736-0.256 1.376-0.416 2.080-0.544 2.272-1.472 4.32-2.88 6.112-0.224 0.288-0.192 0.64-0.416 0.928l-256 288c-0.096 0.096-0.224 0.096-0.32 0.192-1.92 2.048-4.352 3.456-7.136 4.288-0.608 0.192-1.152 0.256-1.792 0.352-0.928 0.16-1.792 0.544-2.752 0.544h-448c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM512 901.92l204.384-229.92h-188.384c-7.040 0-16 13.44-16 24v205.92zM32 912c0 8.832 7.2 16 16 16h432v-232c0-25.888 20.96-56 48-56h208v-656c0-8.832-7.2-16-16-16h-672c-8.96 0-16 7.040-16 16v928zM176 512h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 384h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 640h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 256h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 128h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe006;" glyph-name="documents" horiz-adv-x="1088" d="M48.384 64h575.616c26.464 0 48 21.536 48 48v608c0 0.736-0.32 1.376-0.416 2.080s-0.224 1.312-0.416 1.984c-0.736 2.752-1.92 5.312-3.904 7.264l-223.968 223.968c-1.952 1.952-4.512 3.136-7.264 3.904-0.672 0.192-1.28 0.32-1.984 0.416-0.672 0.064-1.312 0.384-2.048 0.384h-383.808c-26.56 0-48.192-21.536-48.192-48v-800c0-26.464 21.696-48 48.384-48zM448 905.376l169.376-169.376h-153.376c-8.8 0-16 7.168-16 16v153.376zM32 912c0 8.832 7.264 16 16.192 16h367.808v-176c0-26.464 21.536-48 48-48h176v-592c0-8.832-7.2-16-16-16h-575.616c-9.056 0-16.384 7.168-16.384 16v800zM144 576h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 448h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 704h160c8.832 0 16 7.168 16 16s-7.168 16-16 16h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 320h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 192h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM688 800h144v-176c0-26.464 21.536-48 48-48h176v-592c0-8.832-7.2-16-16-16h-575.616c-9.056 0-16.384 7.168-16.384 16v32c0 8.832-7.168 16-16 16s-16-7.168-16-16v-32c0-26.464 21.696-48 48.384-48h575.616c26.464 0 48 21.536 48 48v608c0 0.736-0.32 1.376-0.416 2.080s-0.224 1.312-0.416 1.984c-0.736 2.752-1.92 5.312-3.904 7.264l-223.968 223.968c-1.952 1.984-4.544 3.168-7.296 3.904-0.672 0.192-1.248 0.288-1.952 0.384-0.672 0.096-1.312 0.416-2.048 0.416h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16zM880 608c-8.8 0-16 7.168-16 16v153.376l169.376-169.376h-153.376zM752 448h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM752 320h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM752 192h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM752 64h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe007;" glyph-name="search2" horiz-adv-x="1056" d="M48-64h672c26.464 0 48 21.536 48 48v240c0 0.32-0.16 0.576-0.192 0.896 1.76 1.12 3.584 2.176 5.312 3.36l255.552-255.552c3.136-3.136 7.232-4.704 11.328-4.704s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-253.216 253.216c40.448 37.984 65.888 91.776 65.888 151.488 0 73.504-38.432 138.112-96.192 175.104 0.032 0.32 0.192 0.576 0.192 0.896v80c0 0.544-0.256 0.992-0.288 1.504-0.064 0.736-0.256 1.376-0.416 2.080-0.544 2.272-1.472 4.32-2.88 6.112-0.224 0.288-0.192 0.64-0.416 0.928l-256 288c-0.096 0.096-0.224 0.096-0.32 0.192-1.92 2.080-4.384 3.456-7.136 4.288-0.608 0.192-1.152 0.256-1.792 0.352-0.928 0.16-1.792 0.544-2.752 0.544h-448c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM832 400c0-97.056-78.976-176-176-176s-176 78.944-176 176 78.976 176 176 176 176-78.944 176-176zM512 901.92l204.384-229.92h-188.384c-7.040 0-16 13.44-16 24v205.92zM32 912c0 8.832 7.2 16 16 16h432v-232c0-25.888 20.96-56 48-56h208v-48.032c-24.64 10.304-51.648 16.032-80 16.032-58.816 0-111.872-24.64-149.728-64h-330.272c-8.832 0-16-7.168-16-16s7.168-16 16-16h305.024c-18.080-28.128-29.504-60.832-32.192-96h-272.832c-8.832 0-16-7.168-16-16s7.168-16 16-16h272.8c2.688-35.168 14.144-67.872 32.192-96h-304.992c-8.832 0-16-7.168-16-16s7.168-16 16-16h328c0.672 0 1.248 0.288 1.92 0.384 37.888-39.584 91.104-64.384 150.080-64.384 28.352 0 55.36 5.728 80 16.064v-224.064c0-8.832-7.2-16-16-16h-672c-8.96 0-16 7.040-16 16v928zM176 640h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 128h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe008;" glyph-name="clipboard2" horiz-adv-x="896" d="M48-64h800c27.808 0 48 20.192 48 48v896c0 27.808-20.192 48-48 48h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16h128c10.016 0 16-5.984 16-16v-896c0-10.016-5.984-16-16-16h-800c-10.016 0-16 5.984-16 16v896c0 10.016 5.984 16 16 16h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-27.808 0-48-20.192-48-48v-896c0-27.808 20.192-48 48-48zM176 800c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16v-768c0-8.832 7.168-16 16-16h672c8.832 0 16 7.168 16 16v768c0 8.832-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h48v-736h-640v736h48zM288 736h320c38.88 0 64 25.12 64 64v144c0 8.832-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16v-144c0-38.88 25.12-64 64-64zM256 928h384v-128c0-21.248-10.784-32-32-32h-320c-21.216 0-32 10.752-32 32v128zM272 448h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16zM272 576h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16zM272 320h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16zM272 192h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe009;" glyph-name="newspaper2" horiz-adv-x="1344" d="M1184 32c38.272 0 64 25.728 64 64v848c0 8.832-7.168 16-16 16s-16-7.168-16-16v-848c0-27.84-20.064-32-32-32-3.296 0-32 0.896-32 32v848c0 8.832-7.168 16-16 16s-16-7.168-16-16v-848c0-42.016 32.192-64 64-64zM144 288h320c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16h-320c-8.832 0-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM160 576h288v-256h-288v256zM144 704h768c8.832 0 16 7.168 16 16v128c0 8.832-7.168 16-16 16h-768c-8.832 0-16-7.168-16-16v-128c0-8.832 7.168-16 16-16zM160 832h736v-96h-736v96zM912 608h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 512h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 416h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 320h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 224h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM144 192h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16zM912 128h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM144 96h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16zM160-62.304h1024c0.256 0 0.512 0 0.64 0 0.224 0 0.416 0.128 0.64 0.128 86.688 0.704 157.056 71.328 157.056 158.176v848c0 7.904-6.4 14.304-14.304 14.304s-14.304-6.4-14.304-14.304v-848c0-71.52-58.176-129.696-129.696-129.696s-129.728 58.176-129.728 129.696v848c0 7.904-6.4 14.304-14.304 14.304h-1024c-7.904 0-14.304-6.4-14.304-14.304v-848c0-87.296 71.008-158.304 158.304-158.304zM30.304 929.696h995.36v-833.696c0-9.792 1.184-19.296 2.88-28.64 0.352-1.856 0.64-3.712 1.056-5.536 1.984-8.896 4.608-17.504 8.032-25.792 0.608-1.504 1.344-2.912 2.016-4.384 3.456-7.744 7.456-15.2 12.096-22.24 0.544-0.8 0.96-1.664 1.504-2.464 5.056-7.36 10.816-14.176 16.992-20.576 1.344-1.376 2.656-2.72 4.064-4.064 5.952-5.76 12.224-11.232 19.008-16h-933.312c-71.488 0-129.696 58.176-129.696 129.696v833.696z" />
<glyph unicode="&#xe00a;" glyph-name="notebook" horiz-adv-x="864" d="M752-64c27.808 0 48 20.192 48 48v896c0 27.808-20.192 48-48 48h-640c-27.808 0-48-20.192-48-48v-37.344c0-8.832 7.168-16 16-16s16 7.168 16 16v37.344c0 10.016 5.984 16 16 16h145.984v-928h-145.984c-10.016 0-16 5.984-16 16v29.344c0 8.832-7.168 16-16 16s-16-7.168-16-16v-29.344c0-27.808 20.192-48 48-48h640zM288 896h464c10.016 0 16-5.984 16-16v-896c0-10.016-5.984-16-16-16h-464v928zM864 16v832c0 8.832-7.168 16-16 16s-16-7.168-16-16v-832c0-8.832 7.168-16 16-16s16 7.168 16 16zM16 608h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 736h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 480h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 224h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 352h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 96h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe00b;" glyph-name="book-open" horiz-adv-x="1344" d="M1200 928h-512c-12.704 0-23.68-4.352-32-11.584-8.32 7.232-19.296 11.584-32 11.584h-512c-27.808 0-48-20.192-48-48v-896c0-27.808 20.192-48 48-48h512c12.704 0 23.68 4.352 32 11.584 8.32-7.232 19.296-11.584 32-11.584h512c27.808 0 48 20.192 48 48v896c0 27.808-20.192 48-48 48zM624-32h-512c-10.016 0-16 5.984-16 16v896c0 10.016 5.984 16 16 16h512c10.016 0 16-5.984 16-16v-896c0-10.016-5.984-16-16-16zM1216-16c0-10.016-5.984-16-16-16h-512c-10.016 0-16 5.984-16 16v896c0 10.016 5.984 16 16 16h512c10.016 0 16-5.984 16-16v-896zM1296 864c-8.832 0-16-7.168-16-16v-832c0-8.832 7.168-16 16-16s16 7.168 16 16v832c0 8.832-7.168 16-16 16zM16 0c8.832 0 16 7.168 16 16v832c0 8.832-7.168 16-16 16s-16-7.168-16-16v-832c0-8.832 7.168-16 16-16zM560 640h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 512h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 768h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 384h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 256h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 128h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 640h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 512h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 768h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 384h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 256h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 128h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16z" />
<glyph unicode="&#xe00c;" glyph-name="browser" horiz-adv-x="1344" d="M1328 640c-8.832 0-16-7.168-16-16v-640c0-8.832-7.168-16-16-16h-1248c-8.832 0-16 7.168-16 16v640c0 8.832-7.168 16-16 16s-16-7.168-16-16v-640c0-26.464 21.536-48 48-48h1248c26.464 0 48 21.536 48 48v640c0 8.832-7.168 16-16 16zM1296 960h-1248c-26.464 0-48-21.536-48-48v-192c0-8.832 7.168-16 16-16h1312c8.832 0 16 7.168 16 16v192c0 26.464-21.536 48-48 48zM1312 736h-1280v176c0 8.832 7.168 16 16 16h1248c8.832 0 16-7.168 16-16v-176zM560 64c8.832 0 16 7.168 16 16v512c0 8.832-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16v-512c0-8.832 7.168-16 16-16h416zM160 576h384v-480h-384v480zM720 480h480c8.832 0 16 7.168 16 16s-7.168 16-16 16h-480c-8.832 0-16-7.168-16-16s7.168-16 16-16zM720 320h480c8.832 0 16 7.168 16 16s-7.168 16-16 16h-480c-8.832 0-16-7.168-16-16s7.168-16 16-16zM720 160h480c8.832 0 16 7.168 16 16s-7.168 16-16 16h-480c-8.832 0-16-7.168-16-16s7.168-16 16-16zM96 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM224 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM352 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe00d;" glyph-name="calendar2" horiz-adv-x="1088" d="M1088-16v608c0 8.832-7.168 16-16 16s-16-7.168-16-16v-608c0-8.832-7.168-16-16-16h-992c-8.832 0-16 7.168-16 16v608c0 8.832-7.168 16-16 16s-16-7.168-16-16v-608c0-26.464 21.536-48 48-48h992c26.464 0 48 21.536 48 48zM144 224c-8.832 0-16-7.168-16-16s7.168-16 16-16h48v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h192v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h192v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h192v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48v160h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-192v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-192v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-192v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-48c-8.832 0-16-7.168-16-16s7.168-16 16-16h48v-160h-48zM864 384v-160h-192v160h192zM640 384v-160h-192v160h192zM224 384h192v-160h-192v160zM912 864h136c2.784 0 8 0 8-16v-144h-1024v144c0 8.832 7.168 16 16 16h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-26.464 0-48-21.536-48-48v-160c0-8.832 7.168-16 16-16h1056c8.832 0 16 7.168 16 16v160c0 35.392-20.672 48-40 48h-136c-8.832 0-16-7.168-16-16s7.168-16 16-16zM720 864c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16h352zM288 816v128c0 8.832-7.168 16-16 16s-16-7.168-16-16v-128c0-8.832 7.168-16 16-16s16 7.168 16 16zM816 800c8.832 0 16 7.168 16 16v128c0 8.832-7.168 16-16 16s-16-7.168-16-16v-128c0-8.832 7.168-16 16-16z" />
<glyph unicode="&#xe00e;" glyph-name="presentation" horiz-adv-x="992" d="M16 864c-8.832 0-16-7.168-16-16v-544c0-26.464 21.536-48 48-48h896c26.464 0 48 21.536 48 48v544c0 8.832-7.168 16-16 16s-16-7.168-16-16v-544c0-8.832-7.168-16-16-16h-896c-8.832 0-16 7.168-16 16v544c0 8.832-7.168 16-16 16zM1040 960h-1088c-8.832 0-16-7.168-16-16s7.168-16 16-16h1088c8.832 0 16 7.168 16 16s-7.168 16-16 16zM379.328 699.328c-5.856 5.856-15.2 6.272-21.568 0.992l-192-160c-6.784-5.664-7.712-15.744-2.048-22.56 5.664-6.784 15.712-7.712 22.56-2.048l180.768 150.656 181.664-181.664c3.104-3.136 7.2-4.704 11.296-4.704s8.192 1.568 11.328 4.672l228.672 228.704v-121.376c0-8.832 7.168-16 16-16s16 7.168 16 16v160c0 2.080-0.416 4.16-1.216 6.112-1.632 3.904-4.736 7.040-8.672 8.672-1.952 0.8-4.032 1.216-6.112 1.216h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16h121.376l-217.376-217.376-180.672 180.704zM257.824-55.424c4.096-7.84 13.76-10.848 21.6-6.752l216.576 113.44 216.576-113.44c2.368-1.248 4.896-1.824 7.424-1.824 5.76 0 11.328 3.136 14.176 8.576 4.096 7.84 1.088 17.504-6.752 21.6l-220.576 115.52c3.136 2.912 5.152 7.008 5.152 11.648v82.656c0 8.832-7.168 16-16 16s-16-7.168-16-16v-82.656c0-4.608 2.016-8.704 5.152-11.616l-220.576-115.52c-7.84-4.128-10.848-13.792-6.752-21.632z" />
<glyph unicode="&#xe00f;" glyph-name="picture" d="M48-64h928c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-928c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.2 16 16 16h928c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-928c-8.8 0-16 7.168-16 16v928zM656 560c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM656 656c17.664 0 32-14.368 32-32s-14.336-32-32-32-32 14.368-32 32 14.336 32 32 32zM144 160h736c8.832 0 16 7.168 16 16v640c0 8.832-7.168 16-16 16h-736c-8.832 0-16-7.168-16-16v-640c0-8.832 7.168-16 16-16zM160 192v180.416c0.704 0.512 1.504 0.8 2.144 1.44l163.712 163.712c8.32 8.32 22.784 8.288 31.104 0l240.672-240.672c3.136-3.136 7.232-4.672 11.328-4.672 3.968 0 7.936 1.472 11.040 4.416l123.712 117.504c4.16 4.16 9.696 6.464 15.552 6.464 5.888 0 11.36-2.304 15.072-5.984l89.664-97.664c0 0 0.032 0 0.032-0.032v-124.928h-704.032zM864 800v-435.776l-66.592 72.512c-10.144 10.208-23.712 15.84-38.112 15.84-0.032 0-0.032 0-0.032 0-14.432 0-28-5.632-37.92-15.552l-112.128-106.496-229.632 229.664c-20.448 20.416-55.968 20.384-76.352 0l-143.232-143.264v383.072h704z" />
<glyph unicode="&#xe010;" glyph-name="pictures" horiz-adv-x="1056" d="M48 64h832c26.464 0 48 21.536 48 48v800c0 26.464-21.536 48-48 48h-832c-26.464 0-48-21.536-48-48v-800c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.2 16 16 16h832c8.8 0 16-7.168 16-16v-800c0-8.832-7.2-16-16-16h-832c-8.8 0-16 7.168-16 16v800zM576 608c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM576 704c17.664 0 32-14.368 32-32s-14.336-32-32-32-32 14.368-32 32 14.336 32 32 32zM112 224h704c8.832 0 16 7.168 16 16v608c0 8.832-7.168 16-16 16h-704c-8.832 0-16-7.168-16-16v-608c0-8.832 7.168-16 16-16zM128 256v148.416c0.704 0.512 1.504 0.8 2.144 1.44l163.712 163.712c8.32 8.32 22.784 8.288 31.104 0l240.672-240.672c3.136-3.136 7.232-4.672 11.328-4.672 3.968 0 7.936 1.472 11.040 4.416l123.712 117.504c4.16 4.16 9.696 6.464 15.552 6.464 5.888 0 11.36-2.304 14.848-5.696l57.888-65.888v-125.024h-672zM800 832v-402.592l-34.592 39.296c-10.144 10.208-23.712 15.84-38.112 15.84-0.032 0-0.032 0-0.032 0-14.432 0-28-5.632-37.92-15.552l-112.128-106.496-229.632 229.664c-20.448 20.416-55.968 20.384-76.352 0l-143.232-143.232v383.072h672zM144 29.344c-8.832 0-16-7.168-16-16v-29.344c0-26.464 21.536-48 48-48h832c26.464 0 48 21.536 48 48v832c0 26.464-21.536 48-48 48h-29.344c-8.832 0-16-7.168-16-16s7.168-16 16-16h29.344c8.8 0 16-7.168 16-16v-832c0-8.832-7.2-16-16-16h-832c-8.8 0-16 7.168-16 16v29.344c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe011;" glyph-name="video" horiz-adv-x="1184" d="M240 960h-192c-27.808 0-48-20.192-48-48v-928c0-27.808 20.192-48 48-48h1088c27.808 0 48 20.192 48 48v928c0 27.808-20.192 48-48 48h-896zM32-16v928c0 10.016 5.984 16 16 16h176v-960h-176c-10.016 0-16 5.984-16 16zM256-32v960h672v-960h-672zM1152 912v-928c0-10.016-5.984-16-16-16h-176v960h176c10.016 0 16-5.984 16-16zM472.864 637.312c-4.896 3.264-11.232 3.584-16.448 0.8-5.152-2.784-8.416-8.192-8.416-14.112v-384c0-5.92 3.264-11.328 8.448-14.112 2.368-1.248 4.96-1.888 7.552-1.888 3.104 0 6.176 0.896 8.864 2.688l288 192c4.448 2.976 7.136 7.968 7.136 13.312s-2.688 10.336-7.136 13.312l-288 192zM480 269.888v324.224l243.168-162.112-243.168-162.112zM160 704h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM96 800h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM160 576h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 448h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 320h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 192h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 64h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1024 672h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 800h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 544h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 416h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 288h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 160h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1088 64h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16z" />
<glyph unicode="&#xe012;" glyph-name="camera2" horiz-adv-x="1344" d="M1264 768h-240c-61.664 0-63.936 57.504-64 64v32c0 40.256-44.48 96-128 96h-319.008c-93.92 0-128-57.408-128-96v-31.808c-0.032-2.624-1.536-64.192-64.992-64.192h-240c-44.128 0-80-35.904-80-80v-576c0-44.096 35.872-80 80-80h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-26.464 0-48 21.536-48 48v400h256c-20.608-49.28-32-103.328-32-160 0-229.376 186.624-416 416-416s416 186.624 416 416c0 56.672-11.488 110.72-32.096 160h256.096v-400c0-26.464-21.536-48-48-48h-224c-8.832 0-16-7.168-16-16s7.168-16 16-16h224c44.128 0 80 35.904 80 80v576c0 44.096-35.872 80-80 80zM672-32c-211.744 0-384 172.256-384 384s172.256 384 384 384 384-172.256 384-384-172.256-384-384-384zM1048 544c-2.368 0-4.576-0.576-6.592-1.504-69.248 133.728-208.704 225.504-369.408 225.504s-300.16-91.776-369.408-225.504c-2.016 0.928-4.224 1.504-6.592 1.504h-264v144c0 26.464 21.536 48 48 48h240c75.776 0 96.608 62.656 96.992 96v32c0 25.728 25.568 64 96 64h319.008c67.008 0 96-42.368 96-64v-32c0-33.216 20.064-96 96-96h240c26.464 0 48-21.536 48-48v-144h-264zM304 800c8.832 0 16 7.168 16 16v32c0 26.464-21.536 48-48 48h-128c-26.464 0-48-21.536-48-48v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832 7.2 16 16 16h128c8.8 0 16-7.168 16-16v-32c0-8.832 7.168-16 16-16zM672 640c-158.816 0-288-129.216-288-288s129.184-288 288-288 288 129.216 288 288-129.184 288-288 288zM672 96c-141.152 0-256 114.848-256 256s114.848 256 256 256 256-114.848 256-256-114.848-256-256-256z" />
<glyph unicode="&#xe013;" glyph-name="printer2" horiz-adv-x="1344" d="M1296 640h-80v112c0 26.464-21.536 48-48 48h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.8 0 16-7.168 16-16v-112h-128v304c0 8.832-7.168 16-16 16h-736c-8.832 0-16-7.168-16-16v-304h-128v112c0 8.832 7.2 16 16 16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-26.464 0-48-21.536-48-48v-112h-80c-26.464 0-48-21.536-48-48v-448c0-26.464 21.536-48 48-48h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.8 0-16 7.168-16 16v112h1280v-112c0-8.832-7.2-16-16-16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16h192c26.464 0 48 21.536 48 48v448c0 26.464-21.536 48-48 48zM320 928h704v-288h-704v288zM32 288v304c0 8.832 7.2 16 16 16h1248c8.8 0 16-7.168 16-16v-304h-1280zM1040 224c-8.832 0-16-7.168-16-16v-240h-704v240c0 8.832-7.168 16-16 16s-16-7.168-16-16v-256c0-8.832 7.168-16 16-16h736c8.832 0 16 7.168 16 16v256c0 8.832-7.168 16-16 16zM1184 384c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM1056 384c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe014;" glyph-name="toolbox" horiz-adv-x="1344" d="M1328 416c-8.832 0-16-7.168-16-16v-416c0-8.832-7.168-16-16-16h-1248c-8.832 0-16 7.168-16 16v416c0 8.832-7.168 16-16 16s-16-7.168-16-16v-416c0-26.464 21.536-48 48-48h1248c26.464 0 48 21.536 48 48v416c0 8.832-7.168 16-16 16zM1296 736h-1248c-26.464 0-48-21.536-48-48v-192c0-8.832 7.168-16 16-16h432v-112c0-26.464 21.536-48 48-48h352c26.464 0 48 21.536 48 48v112h432c8.832 0 16 7.168 16 16v192c0 26.464-21.536 48-48 48zM864 368c0-8.832-7.168-16-16-16h-352c-8.832 0-16 7.168-16 16v112h384v-112zM1312 512h-1280v176c0 8.832 7.168 16 16 16h1248c8.832 0 16-7.168 16-16v-176zM496 960c-26.464 0-48-21.536-48-48v-128c0-8.832 7.168-16 16-16s16 7.168 16 16v128c0 8.832 7.168 16 16 16h352c8.832 0 16-7.168 16-16v-128c0-8.832 7.168-16 16-16s16 7.168 16 16v128c0 26.464-21.536 48-48 48h-352z" />
<glyph unicode="&#xe015;" glyph-name="briefcase2" horiz-adv-x="1216" d="M1200 384c-8.832 0-16-7.168-16-16v-384c0-8.832-7.168-16-16-16h-1120c-8.832 0-16 7.168-16 16v384c0 8.832-7.168 16-16 16s-16-7.168-16-16v-384c0-26.464 21.536-48 48-48h1120c26.464 0 48 21.536 48 48v384c0 8.832-7.168 16-16 16zM816 800c8.832 0 16 7.168 16 16v96c0 26.464-21.536 48-48 48h-352c-26.464 0-48-21.536-48-48v-96c0-8.832 7.168-16 16-16s16 7.168 16 16v96c0 8.832 7.168 16 16 16h352c8.832 0 16-7.168 16-16v-96c0-8.832 7.168-16 16-16zM1168 736h-1120c-26.464 0-48-21.536-48-48v-158.656c0-88.896 302.592-208 612-208 305.376 0 604 119.104 604 208v158.656c0 26.464-21.536 48-48 48zM1184 529.344c0-56.448-270.624-176-572-176-305.6 0-580 119.52-580 176v158.656c0 8.832 7.168 16 16 16h1120c8.832 0 16-7.168 16-16v-158.656zM612 224c30.176 0 61.536 1.248 93.248 3.712 8.8 0.672 15.392 8.384 14.688 17.216-0.672 8.8-8.064 15.552-17.216 14.688-64.448-5.024-125.088-4.8-189.408 0.64-8.448 0.864-16.544-5.792-17.28-14.592s5.792-16.544 14.592-17.28c34.432-2.912 68.544-4.384 101.376-4.384z" />
<glyph unicode="&#xe016;" glyph-name="wallet" horiz-adv-x="1216" d="M1040.288 720c8.832 0 16 7.168 16 16v53.28c0 28.896-23.52 52.416-52.416 52.416h-85.984l-19.616 57.888c-2.752 8.16-11.52 12.704-19.808 10.176l-465.696-141.568c-8.448-2.592-13.216-11.52-10.656-19.968 2.112-6.912 8.448-11.328 15.328-11.328 1.536 0 3.104 0.224 4.672 0.672l450.848 137.088 42.976-126.88c2.848-8.384 12-12.928 20.288-10.016 8.384 2.816 12.864 11.936 10.016 20.288l-17.504 51.68h75.168c11.264 0 20.416-9.152 20.416-20.416v-53.312c-0.032-8.832 7.136-16 15.968-16zM1168 480c-8.832 0-16-7.168-16-16s7.168-16 16-16c11.232 0 16-4.768 16-16v-192c0-11.232-4.768-16-16-16h-256c-11.232 0-16 4.768-16 16v160c0 11.232 4.768 16 16 16h192c8.832 0 16 7.168 16 16v192c0 29.152-18.848 48-48 48h-976c-39.456 0-64 24.544-64 64s24.544 64 64 64h162.432l-96.832-31.936c-8.384-2.752-12.96-11.808-10.208-20.192 2.208-6.72 8.48-10.976 15.2-10.976 1.664 0 3.328 0.256 5.024 0.8l579.808 191.136c8.384 2.784 12.96 11.808 10.176 20.224-2.752 8.384-11.808 12.96-20.224 10.176l-387.2-127.68c-0.736 0.128-1.408 0.448-2.176 0.448h-256c-57.408 0-96-38.592-96-96v-704c0-57.408 38.592-96 96-96h976c29.152 0 48 18.848 48 48v160c0 8.832-7.168 16-16 16s-16-7.168-16-16v-160c0-11.232-4.768-16-16-16h-976c-39.456 0-64 24.544-64 64v630.016c16.416-13.856 38.144-22.016 64-22.016h976c11.232 0 16-4.768 16-16v-176h-176c-29.152 0-48-18.848-48-48v-160c0-29.152 18.848-48 48-48h256c29.152 0 48 18.848 48 48v192c0 29.152-18.848 48-48 48zM992 320c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe017;" glyph-name="gift2" horiz-adv-x="1344" d="M48 416c-8.832 0-16-7.168-16-16v-384c0-26.464 21.536-48 48-48h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320c-8.832 0-16 7.168-16 16v384c0 8.832-7.168 16-16 16zM1296 416c-8.832 0-16-7.168-16-16v-384c0-8.832-7.168-16-16-16h-672c-8.832 0-16-7.168-16-16s7.168-16 16-16h672c26.464 0 48 21.536 48 48v384c0 8.832-7.168 16-16 16zM576 912c0-8.832 7.168-16 16-16h672c8.832 0 16-7.168 16-16v-286.656c0-8.832 7.168-16 16-16s16 7.168 16 16v286.656c0 26.464-21.536 48-48 48h-672c-8.832 0-16-7.168-16-16zM80 928c-26.464 0-48-21.536-48-48v-286.656c0-8.832 7.168-16 16-16s16 7.168 16 16v286.656c0 8.832 7.168 16 16 16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320zM1328 513.344h-652.8c12.704 5.632 23.68 12.192 31.488 20 48.352 48.352 48.352 127.008 0 175.36-46.848 46.848-128.512 46.848-175.36 0-7.52-7.52-13.824-18.016-19.328-30.080v265.376c0 8.832-7.168 16-16 16s-16-7.168-16-16v-423.2c-54.496 22.464-150.432 68.608-170.112 108.384-12.8 25.856-14.752 55.104-5.536 82.432 9.248 27.328 28.544 49.376 54.368 62.176 7.936 3.936 11.168 13.504 7.264 21.44-3.968 7.936-13.504 11.2-21.44 7.264-33.504-16.576-58.528-45.216-70.496-80.64s-9.408-73.376 7.168-106.848c19.36-39.104 84.16-76.512 136.8-101.664h-402.016c-8.832 0-16-7.168-16-16s7.168-16 16-16h299.072c-12.384-5.568-23.104-12-30.752-19.648-48.352-48.352-48.352-127.008 0-175.36 23.424-23.424 54.56-36.32 87.68-36.32s64.256 12.896 87.68 36.32c7.936 7.936 14.592 19.168 20.32 32.16v-366.496c0-8.832 7.168-16 16-16s16 7.168 16 16v521.76c54.656-22.592 149.536-68.416 169.12-107.968 12.8-25.856 14.752-55.104 5.536-82.432-9.248-27.328-28.544-49.376-54.368-62.176-7.936-3.936-11.168-13.504-7.264-21.44 2.784-5.632 8.48-8.896 14.368-8.896 2.368 0 4.8 0.544 7.072 1.664 33.504 16.576 58.528 45.216 70.496 80.64s9.408 73.344-7.168 106.848c-19.264 38.912-83.552 76.16-136.064 101.344h754.272c8.832 0 16 7.168 16 16s-7.168 16-16 16zM553.952 686.048c17.376 17.376 40.48 26.944 65.056 26.944s47.68-9.568 65.056-26.944c35.872-35.872 35.872-94.24 0-130.112-27.328-27.328-121.28-38.464-171.744-41.6 3.584 59.648 16.704 146.784 41.632 171.712zM437.056 308.96c-34.752-34.752-95.36-34.752-130.112 0-35.872 35.872-35.872 94.24 0 130.112 27.328 27.328 121.28 38.464 171.744 41.6-3.584-59.648-16.704-146.784-41.632-171.712z" />
<glyph unicode="&#xe018;" glyph-name="bargraph" horiz-adv-x="1152" d="M832 624v-640c0-5.632 1.152-10.976 2.944-16h-101.888c1.792 5.024 2.944 10.368 2.944 16v928c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48v-928c0-5.632 1.152-10.976 2.944-16h-101.888c1.792 5.024 2.944 10.368 2.944 16v352c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48v-352c0-26.464 21.536-48 48-48h1056c26.464 0 48 21.536 48 48v640c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48zM160-32h-112c-8.8 0-16 7.168-16 16v352c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16v-352c0-8.832-7.2-16-16-16h-112zM464-32c-8.8 0-16 7.168-16 16v928c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-224zM1120 624v-640c0-8.832-7.2-16-16-16h-224c-8.8 0-16 7.168-16 16v640c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16z" />
<glyph unicode="&#xe019;" glyph-name="grid" horiz-adv-x="992" d="M912 608c8.832 0 16 7.168 16 16s-7.168 16-16 16h-240v240c0 8.832-7.168 16-16 16s-16-7.168-16-16v-240h-288v240c0 8.832-7.168 16-16 16s-16-7.168-16-16v-240h-240c-8.832 0-16-7.168-16-16s7.168-16 16-16h240v-288h-240c-8.832 0-16-7.168-16-16s7.168-16 16-16h240v-272c0-8.832 7.168-16 16-16s16 7.168 16 16v272h288v-272c0-8.832 7.168-16 16-16s16 7.168 16 16v272h240c8.832 0 16 7.168 16 16s-7.168 16-16 16h-240v288h240zM640 320h-288v288h288v-288zM992-16v928c0 26.464-21.536 48-48 48h-896c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48h896c26.464 0 48 21.536 48 48zM32-16v928c0 8.832 7.2 16 16 16h896c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-896c-8.8 0-16 7.168-16 16z" />
<glyph unicode="&#xe01a;" glyph-name="expand" d="M1024-16v928c0 26.464-21.536 48-48 48h-928c-26.464 0-48-21.536-48-48v-288c0-8.832 7.168-16 16-16s16 7.168 16 16v288c0 8.832 7.2 16 16 16h928c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-288c-8.832 0-16-7.168-16-16s7.168-16 16-16h288c26.464 0 48 21.536 48 48zM48 544c-26.464 0-48-21.536-48-48v-512c0-26.464 21.536-48 48-48h512c26.464 0 48 21.536 48 48v537.376l224 224v-217.376c0-8.832 7.168-16 16-16s16 7.168 16 16v256c0 8.832-7.168 16-16 16h-256c-8.832 0-16-7.168-16-16s7.168-16 16-16h217.344l-224-224h-537.344zM576-16c0-8.832-7.2-16-16-16h-512c-8.8 0-16 7.168-16 16v512c0 8.832 7.2 16 16 16h528v-528z" />
<glyph unicode="&#xe01b;" glyph-name="focus" horiz-adv-x="1344" d="M272 960h-224c-26.464 0-48-21.536-48-48v-192c0-8.832 7.168-16 16-16s16 7.168 16 16v192c0 8.832 7.2 16 16 16h224c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1296 960h-224c-8.832 0-16-7.168-16-16s7.168-16 16-16h224c8.8 0 16-7.168 16-16v-192c0-8.832 7.168-16 16-16s16 7.168 16 16v192c0 26.464-21.536 48-48 48zM1328 192c-8.832 0-16-7.168-16-16v-192c0-8.832-7.2-16-16-16h-224c-8.832 0-16-7.168-16-16s7.168-16 16-16h224c26.464 0 48 21.536 48 48v192c0 8.832-7.168 16-16 16zM16 192c-8.832 0-16-7.168-16-16v-192c0-26.464 21.536-48 48-48h224c8.832 0 16 7.168 16 16s-7.168 16-16 16h-224c-8.8 0-16 7.168-16 16v192c0 8.832-7.168 16-16 16zM752 352c8.832 0 16 7.168 16 16v160c0 8.832-7.168 16-16 16h-160c-8.832 0-16-7.168-16-16v-160c0-8.832 7.168-16 16-16h160zM608 512h128v-128h-128v128z" />
<glyph unicode="&#xe01c;" glyph-name="edit" d="M48-64h928c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-928c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.2 16 16 16h928c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-928c-8.8 0-16 7.168-16 16v928zM128 48.672c1.536 0 3.072 0.224 4.576 0.672l320 95.328c2.592 0.768 4.928 2.176 6.816 4.064l322.88 326.56c0.736 0.768 1.12 1.696 1.664 2.56l117.056 117.056c19.424 19.424 19.424 51.040 0 70.496l-167.552 167.488c-19.424 19.424-51.040 19.456-70.464 0l-119.648-119.648c-0.768-0.768-1.152-1.728-1.728-2.592l-323.776-323.808c-1.792-1.792-3.136-3.968-3.904-6.368l-101.12-310.88c-1.856-5.664-0.384-11.872 3.744-16.128 3.040-3.104 7.2-4.8 11.456-4.8zM555.488 679.328l33.28-33.28-272.736-274.016-55.264 12.544 294.72 294.752zM336 346.72l275.424 276.672 77.888-77.888-279.84-273.504h-73.472v74.72zM748.32 486.496l-295.872-299.264-18.432 63.968 277.888 271.648 36.416-36.352zM239.776 356.512l64.224-14.592v-85.92c0-8.832 7.168-16 16-16h83.968l20.256-70.4-271.584-80.896 87.136 267.808zM685.6 810.272c6.976 6.944 18.304 6.912 25.216 0l167.52-167.52c6.976-6.944 6.976-18.272 0-25.248l-107.904-107.904-192.736 192.736 107.904 107.936z" />
<glyph unicode="&#xe01d;" glyph-name="adjustments" horiz-adv-x="1056" d="M992 960h-928c-26.304 0-64-37.696-64-64v-896c0-26.304 37.696-64 64-64h928c26.304 0 64 37.696 64 64v896c0 26.304-37.696 64-64 64zM1024 0c-0.192-9.088-22.912-31.808-32-32h-928c-9.088 0.192-31.808 22.912-32 32v896c0.192 9.088 22.912 31.808 32 32h928c9.088-0.192 31.808-22.912 32-32v-896zM528 784c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM528 688c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM784 272c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM784 176c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM272 432c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM272 336c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM272 480c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16s-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM272 256c-8.832 0-16-7.168-16-16v-96c0-8.832 7.168-16 16-16s16 7.168 16 16v96c0 8.832-7.168 16-16 16zM528 608c-8.832 0-16-7.168-16-16v-448c0-8.832 7.168-16 16-16s16 7.168 16 16v448c0 8.832-7.168 16-16 16zM784 320c8.832 0 16 7.168 16 16v448c0 8.832-7.168 16-16 16s-16-7.168-16-16v-448c0-8.832 7.168-16 16-16z" />
<glyph unicode="&#xe01e;" glyph-name="ribbon" horiz-adv-x="896" d="M48 672c-8.832 0-16-7.168-16-16v-670.272c0-21.28 10.112-33.248 18.624-39.52 10.176-7.552 22.144-10.208 32.832-10.208 6.432 0 12.384 0.96 17.216 2.464 93.728 28.64 299.040 239.424 351.136 294.080 50.784-54.976 249.76-265.44 343.488-294.080 12.928-3.968 33.76-4.32 50.048 7.776 8.544 6.272 18.656 18.208 18.656 39.488v670.272c0 8.832-7.168 16-16 16s-16-7.168-16-16v-670.272c0-8.64-3.232-12-5.664-13.792-5.696-4.224-15.488-4.8-21.664-2.912-97.28 29.728-338.4 295.040-340.8 297.696-3.008 3.328-7.264 5.248-11.744 5.28-4.064 0.032-8.736-1.792-11.808-5.088-2.496-2.656-251.584-268.096-348.992-297.888-6.144-1.888-15.968-1.312-21.664 2.912-2.432 1.792-5.664 5.184-5.664 13.792v670.272c0 8.832-7.168 16-16 16zM896 752v160c0 26.464-21.536 48-48 48h-800c-26.464 0-48-21.536-48-48v-160c0-8.832 7.168-16 16-16h864c8.832 0 16 7.168 16 16zM864 768h-832v144c0 8.832 7.168 16 16 16h800c8.832 0 16-7.168 16-16v-144z" />
<glyph unicode="&#xe01f;" glyph-name="hourglass" horiz-adv-x="672" d="M672.672 944c0 8.832-7.168 16-16 16h-641.344c-8.832 0-16-7.168-16-16s7.136-16 16-16h641.376c8.832 0 15.968 7.168 15.968 16zM640 764.416v115.584c0 8.832-7.168 16-16 16h-573.376c-8.832 0-16-7.168-16-16v-115.584c0-159.232 121.856-267.2 192.448-316.352-80.928-55.744-195.072-161.824-195.072-316.48v-115.584c0-8.832 7.168-16 16-16h576c8.832 0 16 7.168 16 16v114.656c0 158.784-123.616 267.68-195.040 317.312 80.928 55.744 195.040 161.792 195.040 316.448zM336 185.92l153.92-153.92h-307.84l153.92 153.92zM407.424 461.504c-4.64-2.912-7.424-8.032-7.424-13.504s2.784-10.592 7.424-13.504c60.32-38.24 200.576-144.416 200.576-303.84v-98.656h-73.216c-0.288 0.352-0.416 0.8-0.736 1.12l-182.048 182.048v24.832c0 8.832-7.168 16-16 16s-16-7.168-16-16v-24.832l-182.048-182.048c-0.32-0.32-0.448-0.768-0.736-1.12h-73.216v99.584c0 152.864 125.664 255.392 200.576 302.88 4.64 2.944 7.424 8.064 7.424 13.536s-2.784 10.592-7.424 13.504c-59.52 37.76-200.576 142.816-200.576 302.912v99.584h544v-99.584c0-152.896-125.664-255.392-200.576-302.912zM497.312 672.896h-314.048c-5.728 0-11.040-3.072-13.888-8.032-2.848-4.992-2.816-11.104 0.064-16.064 37.984-64.672 93.44-104.256 152.16-146.208l5.088-3.616c2.784-1.984 6.016-2.976 9.312-2.976s6.528 0.992 9.312 2.976c8.384 5.984 16.832 11.872 25.28 17.76 52.448 36.608 106.688 74.432 140.512 132.064 2.912 4.928 2.944 11.072 0.096 16.032-2.88 4.992-8.16 8.064-13.888 8.064zM352.256 543.008c-5.408-3.776-10.816-7.552-16.224-11.36-48.16 34.4-90.72 65.344-123.072 109.28h254.176c-30.112-38.784-71.488-67.648-114.88-97.92zM15.328-64h641.376c8.832 0 16 7.168 16 16s-7.168 16-16 16h-641.376c-8.832 0-16-7.168-16-16s7.136-16 16-16zM336 352c-8.832 0-16-7.168-16-16v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832-7.168 16-16 16zM336 448c-8.832 0-16-7.168-16-16v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe020;" glyph-name="lock2" horiz-adv-x="896" d="M448 960c-176.448 0-320-143.552-320-320v-96h-48c-44.096 0-80-35.904-80-80v-448c0-44.096 35.904-80 80-80h736c44.096 0 80 35.904 80 80v448c0 44.096-35.904 80-80 80h-48v96c0 176.448-143.552 320-320 320zM160 640c0 158.784 129.216 288 288 288s288-129.216 288-288v-96h-96v96c0 105.888-86.112 192-192 192s-192-86.112-192-192v-96h-96v96zM608 544h-320v96c0 88.224 71.776 160 160 160s160-71.776 160-160v-96zM393.376 288l-160-160h-146.752l160 160h146.752zM585.376 288l-160-160h-146.752l160 160h146.752zM777.376 288l-160-160h-146.752l160 160h146.752zM864 288v-160h-201.376l160 160h41.376zM41.376 128h-9.376v160h169.376l-160-160zM816-32h-736c-26.464 0-48 21.536-48 48v80h832v-80c0-26.464-21.536-48-48-48zM864 464v-144h-832v144c0 26.464 21.536 48 48 48h736c26.464 0 48-21.536 48-48z" />
<glyph unicode="&#xe021;" glyph-name="megaphone" horiz-adv-x="1280" d="M1263.936 960c-8.864 0-15.936-7.168-15.936-16v-992c0-8.832 7.072-16 15.936-16s16 7.168 16 16v992c0 8.832-7.168 16-16 16zM1206.944 921.472c-5.44 2.656-12.032 1.984-16.832-1.76l-18.080-14.24c-95.296-75.36-254.688-201.472-580.032-201.472h-443.808c-46.432 0-84.192-38.4-84.192-85.568v-342.848c0-46.080 37.76-83.584 84.192-83.584h108.608c2.816-36 16.064-121.408 78.528-184.352 47.168-47.552 112-71.648 192.672-71.648 8.832 0 16 7.168 16 16s-7.168 16-16 16c-71.744 0-128.832 20.864-169.792 62.016-53.344 53.632-66.144 128.768-69.216 161.984h95.84c2.72-21.824 11.52-60.192 40.768-89.664 25.248-25.44 59.712-38.336 102.4-38.336 8.832 0 16 7.168 16 16s-7.168 16-16 16c-33.76 0-60.512 9.664-79.488 28.672-21.024 21.088-28.608 49.472-31.392 67.328h172.672c326.912 0 487.584-126.816 583.584-202.592l16.704-13.152c2.848-2.24 6.336-3.36 9.824-3.36 2.4 0 4.8 0.544 7.008 1.632 5.504 2.688 8.992 8.256 8.992 14.368v918.208c0.032 6.112-3.456 11.68-8.96 14.368zM96 275.584v342.848c0 29.536 23.392 53.568 52.192 53.568h107.808v-448h-107.808c-29.28 0-52.192 22.656-52.192 51.584zM1184 21.856c-100.288 78.912-266.496 202.144-594.176 202.144h-185.504c-1.504 0.48-3.040 0.96-4.736 0.992-0.032 0-0.032 0-0.064 0-1.728 0-3.36-0.48-4.928-0.992h-106.592v448h304c327.584 0 492.608 123.648 592 202.112v-852.256zM16 260.576c8.832 0 16 7.168 16 16v342.848c0 8.832-7.168 16-16 16s-16-7.136-16-16v-342.848c0-8.832 7.168-16 16-16z" />
<glyph unicode="&#xe022;" glyph-name="shield2" horiz-adv-x="864" d="M432 960c-285.984 0-422.656-161.504-428.352-168.384-2.336-2.88-3.648-6.464-3.648-10.208v-321.728c0-272.128 250.432-433.696 358.080-490.528 7.808-4.128 17.472-1.12 21.632 6.688 4.128 7.808 1.12 17.504-6.688 21.632-127.36 67.232-341.024 216.672-341.024 462.24v315.616c22.464 24.16 148.224 147.104 384 152.48v-975.808c0-8.832 7.168-16 16-16 4.768 0 9.056 2.080 12 5.408 52.384 22.528 420 192.48 420 522.592v320c0 3.744-1.312 7.36-3.68 10.208-4.736 5.728-118.848 140-356.512 163.968-8.8 0.608-16.672-5.536-17.536-14.304-0.896-8.8 5.536-16.64 14.304-17.536 201.184-20.288 310.496-126.24 331.424-148.48v-313.856c0-286.464-299.616-446.368-384-485.728v965.728c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe023;" glyph-name="trophy2" horiz-adv-x="1088" d="M816 928c8.832 0 16 7.168 16 16s-7.168 16-16 16h-544c-8.832 0-16-7.168-16-16s7.168-16 16-16h544zM816 896h-608c-105.056 0-154.016-37.312-176.608-68.608-27.648-38.4-32.832-89.696-14.592-144.448 28.224-84.672 123.072-186.4 181.376-231.584 2.944-2.272 6.4-3.36 9.824-3.36 4.768 0 9.504 2.112 12.672 6.208 5.408 6.976 4.128 17.024-2.848 22.464-53.568 41.472-144.8 138.944-170.624 216.416-14.944 44.704-11.328 85.76 10.176 115.584 26.080 36.192 78.144 55.328 150.624 55.328h48v-304c0-215.232 213.536-339.232 257.152-362.304-0.672-1.792-1.152-3.68-1.152-5.696v-80c0-8.832 7.168-16 16-16s16 7.168 16 16v80c0 1.856-0.48 3.584-1.056 5.248 48.448 22.784 289.056 146.752 289.056 362.752v304h48c72.48 0 124.544-19.136 150.624-55.328 21.504-29.824 25.12-70.88 10.176-115.616-20.16-60.512-120.608-177.696-170.624-216.416-6.976-5.408-8.256-15.456-2.848-22.464 3.168-4.064 7.904-6.176 12.672-6.176 3.424 0 6.88 1.088 9.824 3.328 55.424 42.944 158.752 163.808 181.376 231.584 18.24 54.752 13.056 106.048-14.592 144.448-22.592 31.328-71.552 68.64-176.608 68.64h-64zM800 560c0-194.976-228.864-313.728-271.552-334.176-39.296 21.28-240.448 139.744-240.448 334.176v304h512v-304zM352 64c-36.512 0-64-27.52-64-64v-48c0-8.832 7.168-16 16-16h448c8.832 0 16 7.168 16 16v45.6c0 37.216-28.128 66.4-64 66.4h-352zM736-2.4v-29.6h-416v32c0 18.848 13.152 32 32 32h352c18.24 0 32-14.784 32-34.4z" />
<glyph unicode="&#xe024;" glyph-name="flag2" horiz-adv-x="896" d="M432 928h-352c-8.832 0-16-7.168-16-16v-480c0-8.832 7.168-16 16-16h352.064c8.032 0 47.936-2.368 47.936-48 0-8.832 7.168-16 16-16s16 7.168 16 16v480.512c-0.864 27.488-18.688 79.488-80 79.488zM480 433.408c-16.032 10.784-34.816 14.592-48 14.592h-336v448h336c44.672 0 47.808-43.616 48-48v-414.592zM842.528 288h-442.944c0.192-0.032-22.496-0.288-36.48 13.408-8.032 7.904-12.128 19.52-12.128 34.592 0 8.832-7.168 16-16 16s-16-7.168-16-16c0-24.128 7.392-43.52 22.016-57.696 21.984-21.28 52.736-22.304 58.208-22.304 0.48 0 443.328 0 443.328 0 12.448 0 23.008 5.024 29.792 14.176 8.992 12.128 8.8 27.616 5.92 37.184-18.016 59.296-113.312 188.256-140.128 223.872 25.824 39.712 122.080 190.080 140.128 249.376 2.912 9.568 3.104 25.024-5.92 37.184-6.784 9.184-17.344 14.208-29.792 14.208h-281.184c-8.832 0-16-7.168-16-16s7.168-16 16-16h281.184c3.168 0 3.808-0.896 4.064-1.248 1.504-1.984 1.76-6.304 0.992-8.8-19.072-62.752-141.184-248.704-142.432-250.592-3.744-5.696-3.456-13.12 0.672-18.528 1.216-1.6 122.848-160.576 141.76-222.752 0.736-2.528 0.512-6.816-0.992-8.832-0.256-0.352-0.896-1.248-4.064-1.248zM32-48v992c0 8.832-7.168 16-16 16s-16-7.168-16-16v-992c0-8.832 7.168-16 16-16s16 7.168 16 16z" />
<glyph unicode="&#xe025;" glyph-name="map3" horiz-adv-x="1312" d="M295.648-61.664c0.288-0.192 0.672-0.096 0.96-0.288 2.336-1.184 4.768-2.048 7.392-2.048 1.408 0 2.816 0.192 4.224 0.576l347.776 94.912 347.776-94.912c1.408-0.384 2.816-0.576 4.224-0.576 2.624 0 5.056 0.864 7.36 2.080 0.32 0.16 0.672 0.096 0.96 0.288l288 176c6.112 3.744 8.992 11.136 7.040 18.016l-159.488 560c-1.312 4.704-4.736 8.544-9.28 10.432-4.544 1.824-9.632 1.536-13.952-0.832l-158.784-89.088c-7.68-4.32-10.432-14.080-6.112-21.792 4.32-7.744 14.048-10.464 21.824-6.112l141.088 79.2 150.624-528.832-256.48-156.768-60.928 487.392c-1.088 8.8-9.376 14.912-17.888 13.888-8.736-1.088-14.976-9.088-13.888-17.856l61.024-488.288-317.12 86.56v87.36c0 8.832-7.168 16-16 16s-16-7.168-16-16v-87.36l-317.152-86.56 61.024 488.288c1.088 8.768-5.12 16.768-13.888 17.856-8.704 1.024-16.768-5.088-17.888-13.888l-60.896-487.392-256.48 156.736 150.624 528.8 141.088-79.2c7.744-4.288 17.472-1.568 21.824 6.112 4.32 7.712 1.568 17.44-6.112 21.792l-158.816 89.12c-4.256 2.4-9.344 2.72-13.92 0.832-4.544-1.888-7.968-5.696-9.28-10.432l-159.488-560c-1.984-6.912 0.896-14.272 7.040-18.016l287.968-176zM645.152 212.224c3.072-2.816 6.944-4.224 10.848-4.224 3.84 0 7.68 1.376 10.752 4.128 10.656 9.696 261.248 239.648 261.248 475.872 0 152.544-119.456 272-272 272s-272-119.456-272-272c0-232.128 250.496-465.92 261.152-475.776zM656 928c136.8 0 240-103.168 240-240 0-195.104-191.776-394.784-239.904-441.824-48.032 47.584-240.096 249.888-240.096 441.824 0 136.832 103.2 240 240 240zM800 688c0 79.392-64.608 144-144 144s-144-64.608-144-144 64.608-144 144-144 144 64.608 144 144zM656 576c-61.76 0-112 50.24-112 112s50.24 112 112 112 112-50.24 112-112-50.24-112-112-112z" />
<glyph unicode="&#xe026;" glyph-name="puzzle" horiz-adv-x="1120" d="M641.344 834.976c0 62.24-49.888 125.024-161.344 125.024-98.144 0-164.128-50.24-164.128-125.024 0-43.648 17.664-63.552 29.344-76.736 6.176-6.944 8.672-10.080 8.672-13.216 0-5.184 0-8.32-17.856-9.024h-195.136c-75.040 0-140.896-59.808-140.896-128v-119.424c1.216-30.208 18.272-48.992 44.544-48.992 14.944 0 26.016 8.544 36.768 16.832 14.4 11.040 30.688 23.584 62.688 23.584 54.272 0 112-44.864 112-128 0-84.128-58.496-142.784-111.008-142.784-31.68 0-48.256 13.728-62.912 25.824-10.976 9.088-22.304 18.496-37.568 18.496-26.24 0-43.328-18.784-44.544-49.632v-131.264c0.032-71.52 67.2-136.64 140.928-136.64h196.128c29.696 1.216 48.864 18.72 48.864 44.672 0 15.584-8.864 25.6-16.704 34.432-10.496 11.808-21.312 24-21.312 55.488 0 56.512 51.328 93.024 130.72 93.024 79.424 0 130.752-36.512 130.752-93.024 0-31.488-10.848-43.68-21.312-55.488-7.84-8.832-16.736-18.848-16.736-34.432 0-26.304 18.72-43.392 49.536-44.64l126.112-0.032c68.864 0 116.992 53.664 116.992 130.496v148.8c0.832 3.904 10.688 18.816 25.728 18.816 3.072 0 6.176-2.528 13.088-8.672 13.12-11.744 32.992-29.504 76.576-29.504 69.888 0.032 140.672 53.6 140.672 156.064 0 110.528-64.288 160-128 160-43.008 0-67.84-19.648-84.288-32.64-7.296-5.76-14.144-11.2-18.048-11.2-15.072 0-24.928 14.976-25.664 18.272-0.032 0.256-0.032 0.512-0.064 0.768v114.656c0 77.728-49.216 134.144-116.992 134.144h-125.472c-0.416 0.032-0.832 0.064-1.28 0.096-16.896 0.64-16.896 3.744-16.896 8.928 0 3.136 2.496 6.24 8.672 13.216 11.68 13.152 29.376 33.088 29.376 76.736zM588.032 779.456c-7.84-8.832-16.736-18.88-16.736-34.464 0-17.6 8.032-38.784 47.072-40.864 0.736-0.096 1.472-0.128 2.24-0.128h126.336c55.808 0 85.056-51.392 85.056-102.144v-116.256c0-1.152-0.224-2.272 0-3.36 2.944-19.552 26.944-46.048 57.664-46.048 15.040 0 26.112 8.768 37.92 18.080 15.232 12.064 32.544 25.728 64.416 25.728 58.304 0 96-50.24 96-128 0-85.248-56.352-124.032-108.672-124.032-31.328 0-43.488 10.848-55.264 21.344-8.832 7.872-18.848 16.8-34.4 16.8-30.72 0-54.752-26.528-57.664-46.080-0.224-1.088 0-2.208 0-3.36v-150.208c0-48.992-26.336-98.464-85.056-98.464h-125.472c-18.176 0.736-18.176 9.12-18.176 12.672 0 3.104 2.496 6.24 8.672 13.216 11.68 13.184 29.376 33.088 29.376 76.736 0 62.24-50.304 125.024-162.752 125.024-97.312 0-162.72-50.24-162.72-125.024 0-43.648 17.664-63.552 29.376-76.736 6.144-6.944 8.672-10.080 8.672-13.216 0-3.584 0-11.968-17.536-12.672h-195.488c-54.944 0-108.896 51.84-108.896 104.64v130.624c0.704 18.272 8.992 18.272 12.544 18.272 3.712 0 10.24-5.408 17.184-11.136 15.936-13.216 40.096-33.184 83.296-33.184 69.024 0 142.976 70.24 142.976 174.784 0 103.936-74.176 160-144 160-42.88 0-66.528-18.176-82.176-30.24-7.104-5.472-13.248-10.176-17.28-10.176-3.52 0-11.808 0-12.544 17.632v118.784c0 56.576 57.408 96 108.896 96h195.68c0.512 0 0.992 0.032 1.504 0.064v0c39.52 1.472 47.808 23.104 47.808 40.96 0 15.584-8.864 25.6-16.704 34.432-10.496 11.808-21.312 24-21.312 55.52 0 55.648 53.088 93.024 132.128 93.024 78.56 0 129.344-36.512 129.344-93.024 0-31.488-10.848-43.712-21.312-55.52z" />
<glyph unicode="&#xe027;" glyph-name="basket" horiz-adv-x="1344" d="M1264 512h-1184c-4.928 0-9.6-2.272-12.64-6.144s-4.096-8.928-2.912-13.728l128.192-512.544c3.072-10.784 12.512-43.584 47.36-43.584h864c34.976 0 44.32 32.832 47.52 44.128l128 512c1.184 4.768 0.128 9.856-2.912 13.728-3.008 3.872-7.68 6.144-12.608 6.144zM1120.64-11.616c-5.824-20.384-11.84-20.384-16.64-20.384h-864c-4.768 0-10.752 0-16.48 19.872l-123.008 492.128h1143.008l-122.88-491.616zM592 64c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16s-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM367.968 64c0.608 0 1.184 0.032 1.824 0.096 8.768 0.992 15.104 8.896 14.112 17.664l-32 288c-0.96 8.8-8.64 15.008-17.696 14.144-8.768-0.992-15.104-8.896-14.112-17.664l32-288c0.896-8.192 7.84-14.24 15.872-14.24zM784 64c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16s-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM974.208 64.096c0.64-0.064 1.216-0.096 1.824-0.096 8.032 0 14.976 6.048 15.872 14.24l32 288c0.96 8.768-5.344 16.672-14.112 17.664-9.184 0.896-16.704-5.344-17.696-14.144l-32-288c-0.96-8.768 5.344-16.672 14.112-17.664zM1104 576c3.712 0 7.424 1.28 10.464 3.904 6.688 5.792 7.392 15.872 1.632 22.56l-304 352c-5.792 6.72-15.872 7.392-22.56 1.664-6.688-5.792-7.392-15.872-1.632-22.56l304-352c3.168-3.68 7.616-5.568 12.096-5.568zM570.112 956.384c-6.816 5.536-16.896 4.608-22.496-2.272l-288-352c-5.6-6.816-4.608-16.896 2.24-22.528 2.976-2.4 6.592-3.584 10.144-3.584 4.64 0 9.216 1.984 12.384 5.888l288 352c5.6 6.816 4.576 16.896-2.272 22.496zM1328 640h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16h128c8.832 0 16 7.168 16 16s-7.168 16-16 16zM432 608h512c8.832 0 16 7.168 16 16s-7.168 16-16 16h-512c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 608h160c8.832 0 16 7.168 16 16s-7.168 16-16 16h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe028;" glyph-name="envelope" horiz-adv-x="1216" d="M641.92 946.784c-18.56 17.056-49.248 17.056-67.808 0l-566.016-341.472c-4.8-2.912-7.744-8.096-7.744-13.696v-605.504c0-27.616 22.592-50.112 50.368-50.112h1114.56c27.776 0 50.368 22.496 50.368 50.112v605.504c0 5.6-2.944 10.784-7.744 13.696l-565.984 341.472zM592.128 920.32c1.12 0.672 2.112 1.472 3.040 2.368 3.456 3.424 8 5.312 12.832 5.312s9.376-1.888 12.8-5.312c0.928-0.896 1.952-1.696 3.040-2.368l551.264-332.608-399.296-237.952c-7.584-4.544-10.080-14.336-5.568-21.952 3.008-5.024 8.32-7.808 13.76-7.808 2.784 0 5.6 0.704 8.16 2.24l391.84 233.28v-568.224l-541.92 360.512c-17.216 13.728-51.008 13.728-67.072 0.8l-543.008-361.152v568.064l391.808-233.28c2.56-1.536 5.408-2.24 8.192-2.24 5.44 0 10.752 2.784 13.76 7.808 4.512 7.584 2.016 17.408-5.568 21.952l-399.328 237.952 551.264 332.608zM1154.88-32h-1094.016l532.992 354.752c5.536 4.416 22.784 4.384 29.408-0.8l531.616-353.952zM208 544h800c8.832 0 16 7.168 16 16s-7.168 16-16 16h-800c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe029;" glyph-name="streetsign" horiz-adv-x="928" d="M480-48v304c0 8.832-4.256 32-13.088 32s-18.912-7.168-18.912-16v-320c0-8.832 10.048-16 18.912-16s13.088 7.168 13.088 16zM482.912 910.016v33.984c0 8.832-7.168 16-16 16s-16-7.168-16-16v-33.984c0-8.832 7.168-16 16-16s16 7.136 16 16zM124.48 848.928l-114.144-89.536c-6.56-6.048-10.336-14.592-10.336-23.392s3.776-17.344 11.328-24.256l112.16-87.84c9.824-9.056 27.328-15.904 40.736-15.904h442.496c18.336 0 33.28 14.816 33.28 33.056v189.888c0 18.24-14.944 33.056-33.28 33.056h-442.496c-13.408 0-30.912-6.848-39.744-15.072zM608 641.056c0-0.48-0.576-1.056-1.28-1.056h-442.496c-5.44 0-15.072 3.744-20 8.256l-113.152 86.816 114.112 89.536c4 3.648 13.6 7.392 19.040 7.392l443.776-1.056v-189.888zM804.512 560.096c-9.824 9.056-27.328 15.904-40.736 15.904h-442.496c-18.336 0-33.28-14.816-33.28-33.056v-189.92c0-18.208 14.944-33.024 33.28-33.024h442.496c13.408 0 30.912 6.848 39.776 15.072l114.112 89.536c6.56 6.048 10.336 14.592 10.336 23.392s-3.776 17.344-11.328 24.256l-112.16 87.84zM320 544h443.776c5.44 0 15.072-3.744 20-8.256l113.152-86.816-114.112-89.536c-4-3.648-13.6-7.392-19.040-7.392h-443.776v192z" />
<glyph unicode="&#xe02a;" glyph-name="telescope" horiz-adv-x="1120" d="M878.848 885.952c-1.696 4.224-5.088 7.52-9.344 9.088-4.256 1.536-8.992 1.248-12.992-0.864l-380.992-201.024c-7.168-3.776-10.368-12.32-7.456-19.872l7.84-20.512-219.936-120.608c-7.2-3.936-10.24-12.64-7.104-20.16l7.296-17.568-233.568-111.616c-7.68-3.68-11.136-12.704-7.872-20.576l47.936-115.52c2.56-6.144 8.48-9.888 14.784-9.888 1.792 0 3.584 0.288 5.344 0.928l244 86.432 7.296-17.568c2.528-6.112 8.448-9.888 14.784-9.888 1.472 0 2.944 0.192 4.448 0.64l232.832 67.104 6.976-18.208c2.368-6.304 8.416-10.272 14.88-10.272 1.568 0 3.136 0.224 4.704 0.704l416 128c4.288 1.312 7.808 4.352 9.728 8.384s2.080 8.704 0.416 12.832l-160 400.032zM86.4 272.992l-36.288 87.488 218.336 104.352 46.048-111.040-228.096-80.8zM358.112 332.064l-7.616 18.368c0 0 0 0 0 0l-58.976 142.24c0 0 0 0 0 0l-7.616 18.336 202.752 111.2 75.968-196.288 12-31.392-216.512-62.464zM617.6 371.68l-6.496 16.992c-0.096 0.352-0.032 0.768-0.192 1.12l-19.776 51.104-88.128 230.592 352.736 186.080 146.944-367.36-385.088-118.528zM926.848 949.952c-3.296 8.224-12.64 12.192-20.8 8.928-8.192-3.296-12.192-12.608-8.928-20.8l192-480c2.528-6.272 8.544-10.080 14.88-10.080 1.984 0 4 0.352 5.952 1.152 8.192 3.296 12.192 12.608 8.928 20.8l-192.032 480zM576 288h-96c-36.48 0-64-27.52-64-64v-42.080l-188.128-219.488c-5.76-6.688-4.992-16.8 1.728-22.56 3.008-2.592 6.72-3.872 10.4-3.872 4.512 0 8.992 1.888 12.128 5.6l187.232 218.4h72.64v-208c0-8.832 7.168-16 16-16s16 7.168 16 16v208h72.64l187.2-218.4c3.168-3.712 7.648-5.6 12.16-5.6 3.68 0 7.392 1.28 10.4 3.872 6.72 5.76 7.488 15.84 1.728 22.56l-188.128 219.488v39.68c0 37.216-28.096 66.4-64 66.4zM608 192h-160v32c0 18.848 13.152 32 32 32h96c18.24 0 32-14.784 32-34.4v-29.6z" />
<glyph unicode="&#xe02b;" glyph-name="gears" horiz-adv-x="1344" d="M118.144 264.96c5.632-1.344 13.28-8.288 15.488-14.624l11.2-27.008c2.528-5.184 2.048-15.456-0.96-20.384l-44.704-73.088c-9.568-15.68-7.584-37.888 5.28-52.288l37.856-37.824c13.184-11.712 36.448-13.824 51.616-4.64l73.088 44.704c4.576 2.816 14.4 3.808 21.28 0.576l26.976-11.136c5.44-1.888 12.384-9.504 13.728-15.136l20.064-83.328c4.256-17.664 21.12-32.192 39.232-33.856 0 0 11.104-1.024 27.744-1.024s27.744 1.024 27.776 1.024c18.080 1.632 34.944 16.192 39.2 33.856l20.096 83.328c1.344 5.6 8.256 13.248 14.592 15.456l27.008 11.2c4.768 2.336 15.808 1.856 20.384-0.96l73.088-44.704c6.432-3.936 14.112-6.016 22.272-6.016 11.040 0 21.728 3.872 30.016 11.264l37.824 37.856c12.224 13.728 14.208 35.936 4.64 51.616l-44.704 73.088c-3.008 4.928-3.488 15.2-0.576 21.28l11.136 26.976c1.888 5.44 9.504 12.384 15.136 13.728l83.328 20.064c17.664 4.256 32.192 21.12 33.856 39.232 0 0 1.024 11.104 1.024 27.744s-1.024 27.744-1.024 27.776c-1.632 18.080-16.192 34.944-33.856 39.232l-83.296 20.032c-5.632 1.344-13.28 8.288-15.488 14.624l-11.2 27.008c-2.528 5.184-2.048 15.456 0.96 20.384l44.704 73.088c9.568 15.68 7.584 37.888-5.28 52.288l-37.856 37.824c-13.216 11.744-36.512 13.856-51.616 4.64l-73.088-44.704c-4.576-2.784-14.432-3.84-21.28-0.576l-26.976 11.136c-5.44 1.888-12.352 9.504-13.696 15.136l-20.096 83.328c-4.256 17.664-21.12 32.192-39.232 33.856-0.064-0.032-11.168 0.992-27.808 0.992s-27.744-1.024-27.776-1.024c-18.080-1.632-34.944-16.192-39.232-33.856l-20.032-83.264c-1.344-5.632-8.288-13.28-14.624-15.488l-27.008-11.2c-4.8-2.336-15.808-1.824-20.384 0.96l-73.056 44.704c-15.136 9.216-37.92 7.616-52.288-5.248l-37.824-37.856c-12.224-13.728-14.208-35.936-4.64-51.616l44.704-73.088c3.008-4.928 3.488-15.2 0.576-21.28l-11.136-26.976c-1.888-5.44-9.504-12.384-15.136-13.728l-83.328-20.064c-17.664-4.256-32.192-21.12-33.856-39.232 0.064 0-0.96-11.104-0.96-27.744s1.024-27.744 1.024-27.776c1.632-18.080 16.192-34.944 33.856-39.232l83.264-20.032zM32 352c0 14.656 0.864 24.544 0.896 24.864 0.384 4.32 5.28 9.984 9.472 11.008l83.328 20.064c16.16 3.904 32.448 18.688 37.504 33.504l10.368 25.184c7.296 14.944 6.272 36.896-2.4 51.104l-44.704 73.056c-2.144 3.552-1.536 10.592 0.576 12.992l36.512 36.544c2.912 2.592 10.336 3.232 13.664 1.216l73.088-44.704c13.856-8.48 37.6-9.056 50.176-2.816l25.216 10.432c15.712 5.408 30.496 21.696 34.4 37.888l20.032 83.296c1.024 4.224 6.688 9.12 11.008 9.504 0.32 0 10.208 0.864 24.864 0.864s24.544-0.864 24.864-0.896c4.32-0.384 9.984-5.28 11.008-9.472l20.064-83.296c3.904-16.16 18.656-32.48 33.504-37.536l25.184-10.368c14.624-7.168 37.28-6.048 51.104 2.4l73.056 44.704c3.328 2.016 11.2 0.96 12.992-0.576l36.544-36.512c2.752-3.104 3.36-10.112 1.216-13.664l-44.704-73.088c-8.672-14.176-9.696-36.16-2.816-50.176l10.432-25.216c5.408-15.712 21.696-30.496 37.888-34.4l83.296-20.032c4.224-1.024 9.12-6.688 9.504-11.008 0-0.32 0.864-10.208 0.864-24.864s-0.864-24.544-0.896-24.864c-0.384-4.32-5.28-9.984-9.472-11.008l-83.328-20.064c-16.16-3.904-32.448-18.688-37.504-33.504l-10.368-25.184c-7.296-14.944-6.272-36.896 2.4-51.104l44.704-73.056c2.144-3.552 1.536-10.592-0.576-12.992l-36.512-36.544c-1.728-1.536-4.864-2.528-8.032-2.528-2.208 0-4.256 0.48-5.6 1.312l-73.088 44.704c-13.824 8.448-37.568 9.056-50.176 2.816l-25.216-10.432c-15.712-5.408-30.496-21.728-34.368-37.888l-20.064-83.296c-1.024-4.224-6.688-9.12-11.008-9.504-0.352 0-10.24-0.864-24.896-0.864s-24.544 0.864-24.864 0.896c-4.32 0.384-9.984 5.28-11.008 9.472l-20.064 83.328c-3.904 16.16-18.688 32.448-33.504 37.504l-25.184 10.368c-6.528 3.2-14.432 4.864-22.88 4.864-10.528 0-20.544-2.592-28.224-7.296l-73.056-44.704c-3.328-2.016-11.232-0.928-12.992 0.576l-36.544 36.544c-2.752 3.104-3.36 10.112-1.216 13.664l44.704 73.088c8.672 14.176 9.696 36.16 2.816 50.176l-10.432 25.216c-5.408 15.712-21.696 30.496-37.888 34.4l-83.296 20.032c-4.224 1.024-9.12 6.688-9.504 11.008 0 0.32-0.864 10.208-0.864 24.864zM416 176c97.056 0 176 78.944 176 176s-78.944 176-176 176-176-78.944-176-176 78.944-176 176-176zM416 496c79.392 0 144-64.608 144-144s-64.608-144-144-144-144 64.608-144 144 64.608 144 144 144zM879.264 789.952c-1.28-1.952-5.92-4.416-8.288-4.416l-59.552 0.576c-14.464 0-28.96-10.272-33.696-23.872 0 0-2.624-7.456-5.504-18.88s-4.096-19.232-4.096-19.232c-2.24-14.432 5.792-30.4 18.688-37.152l52.512-27.52c2.016-1.056 4.992-5.504 5.312-8.736l2.976-20.32c0.48-2.24-1.056-7.36-2.688-8.96l-42.304-41.472c-10.592-10.368-13.376-28.096-6.080-42.016l19.168-32c8.096-11.904 25.632-17.984 39.392-13.696l58.368 17.856c3.168 0 6.336-1.216 8.128-2.656l16.48-12.16c1.92-1.28 4.448-5.984 4.416-8.288l-0.576-59.264c-0.128-14.592 10.112-29.216 23.872-34.016 0 0 7.456-2.624 18.88-5.504s19.232-4.096 19.232-4.096c0.832-0.128 4.16-0.384 4.992-0.384 13.056 0 26.304 7.84 32.16 19.072l27.52 52.512c1.056 2.016 5.504 4.992 8.736 5.312l21.216 3.072c3.2 0 6.976-1.664 8.032-2.752l41.472-42.304c10.080-10.304 27.072-13.984 42.016-6.080l31.968 19.168c12.224 8.32 18.144 25.28 13.728 39.392l-17.664 56.544c-0.672 2.176 0.384 7.424 2.496 9.952l12.16 16.48c1.28 1.952 5.92 4.416 8.288 4.416l59.552-0.576c14.464 0 28.96 10.272 33.696 23.872 0 0 2.624 7.456 5.504 18.88s4.096 19.232 4.096 19.232c2.24 14.432-5.792 30.4-18.688 37.152l-52.512 27.52c-2.016 1.056-4.992 5.504-5.312 8.736l-2.944 20.256c-0.48 2.24 1.056 7.36 2.688 8.96l42.304 41.472c10.592 10.368 13.376 28.096 6.080 42.016l-19.168 32c-8.096 11.872-25.6 18.016-39.392 13.728l-58.4-17.856c-3.168 0-6.336 1.216-8.128 2.656l-16.48 12.16c-1.92 1.28-4.448 5.984-4.416 8.288l0.576 59.264c0.128 14.592-10.112 29.216-23.872 34.016 0 0-7.456 2.624-18.88 5.504s-19.232 4.096-19.232 4.096c-0.832 0.096-4.16 0.352-4.992 0.352-13.056 0-26.304-7.84-32.16-19.072l-27.52-52.512c-1.056-2.016-5.504-4.992-8.736-5.312l-21.216-3.040c-3.2 0-6.976 1.664-8.032 2.752l-41.472 42.304c-10.048 10.272-27.008 13.984-42.016 6.080l-32-19.136c-12.224-8.32-18.144-25.28-13.728-39.392l17.664-56.544c0.672-2.176-0.384-7.424-2.496-9.952l-12.128-16.48zM905.504 771.648l10.976 14.912c8.576 10.144 11.904 26.688 7.936 39.328l-17.632 56.512c-0.16 0.896 0.544 2.912 0.384 2.944l30.336 18.176 3.616-0.544 41.504-42.304c7.36-7.488 19.488-12.352 30.88-12.352 2.624 0 5.152 0.256 6.528 0.608l18.4 2.72c13.184 1.152 27.232 10.496 33.376 22.208l27.488 52.48c0.512 0.8 2.528 1.952 3.84 1.952 0.352-0.032 6.88-1.12 16.416-3.488 9.504-2.4 15.776-4.544 16.064-4.672 0.992-0.416 2.432-2.496 2.496-3.52l-0.576-59.264c-0.128-13.248 7.84-28.128 18.144-34.848l14.88-10.976c9.888-8.352 26.848-11.872 39.328-7.936l56.768 17.664c1.344 0 2.848-0.832 2.656-0.416l18.176-30.336c0.352-0.832 0-2.944-0.544-3.616l-42.304-41.504c-9.44-9.312-14.336-25.44-11.744-37.408l2.688-18.4c1.152-13.184 10.496-27.232 22.24-33.376l52.48-27.488c0.896-0.576 2.016-2.816 1.952-3.84-0.032-0.352-1.12-6.88-3.488-16.416-2.4-9.504-4.544-15.776-4.672-16.064-0.416-0.992-2.496-2.432-3.52-2.496l-59.584 0.576c-13.152 0-27.872-7.968-34.528-18.144l-10.944-14.88c-8.576-10.144-11.904-26.688-7.936-39.328l17.632-56.512c0.16-0.864-0.544-2.912-0.384-2.944l-30.336-18.176-3.616 0.544-41.504 42.304c-7.36 7.488-19.488 12.352-30.88 12.352-2.624 0-5.152-0.256-6.528-0.608l-18.4-2.72c-13.184-1.152-27.232-10.496-33.376-22.208l-27.488-52.48c-0.512-0.8-2.528-1.952-3.84-1.952v0c-0.352 0.032-6.88 1.12-16.416 3.488-9.504 2.4-15.776 4.544-16.064 4.672-0.992 0.416-2.432 2.496-2.496 3.52l0.576 59.264c0.128 13.248-7.84 28.128-18.144 34.848l-14.88 10.976c-7.104 6.016-17.568 9.6-28 9.6-4.032 0-7.872-0.576-11.36-1.664l-56.768-17.664c-1.376 0-2.88 0.736-2.656 0.416l-18.176 30.336c-0.352 0.832 0 2.944 0.544 3.616l42.304 41.504c9.44 9.312 14.336 25.44 11.744 37.408l-2.688 18.368c-1.152 13.184-10.496 27.232-22.24 33.376l-52.48 27.488c-0.896 0.576-2.016 2.816-1.952 3.84 0.032 0.352 1.12 6.88 3.488 16.416 2.4 9.504 4.544 15.776 4.672 16.064 0.416 0.992 2.496 2.432 3.52 2.496l59.584-0.576c13.152 0 27.872 7.968 34.528 18.144zM1056 576c52.928 0 96 43.072 96 96s-43.072 96-96 96-96-43.072-96-96 43.072-96 96-96zM1056 736c35.296 0 64-28.704 64-64s-28.704-64-64-64-64 28.704-64 64 28.704 64 64 64z" />
<glyph unicode="&#xe02c;" glyph-name="key3" d="M469.856 489.664c3.744 0 7.52 1.312 10.56 3.968l362.144 317.504-21.12 24.064-362.144-317.472c-6.656-5.824-7.328-15.936-1.472-22.592 3.168-3.616 7.584-5.472 12.032-5.472zM326.016-64c196.544 0 313.984 154.56 313.984 304 0 43.072-10.304 90.528-25.536 121.344l144.704 72.352c5.408 2.72 8.832 8.256 8.832 14.304v128h96c0.352 0 3.264 0.192 3.616 0.192 21.312 1.44 27.68 8.224 28.384 31.808v128h96c4.128 0 6.976-0.448 8.896-0.736 3.872-0.608 11.104-1.728 17.376 3.904 6.464 5.76 6.176 13.056 5.92 19.488-0.064 2.304-0.192 5.344-0.192 9.344v144.992c0 25.92-21.088 47.008-47.008 47.008h-124c-11.328 0-22.336-4.128-31.008-11.648l-421.984-369.92c-20.768 4.16-52.16 9.568-74.016 9.568-179.744 0-325.984-146.24-325.984-325.984s146.24-326.016 326.016-326.016zM326.016 556c16.032 0 43.488-3.84 75.328-10.496 4.96-1.088 10.048 0.32 13.824 3.616l427.872 375.104c2.784 2.432 6.336 3.776 9.952 3.776h124c8.288 0 15.008-6.72 15.008-15.008v-144.992h-112c-8.832 0-16-7.168-16-16v-144h-112c-8.832 0-16-7.168-16-16v-134.112l-151.168-75.584c-4.192-2.080-7.264-5.952-8.384-10.496s-0.192-9.376 2.56-13.184c14.080-19.424 28.992-67.648 28.992-118.624 0-133.696-105.472-272-281.984-272-162.112 0-294.016 131.904-294.016 294.016s131.904 293.984 294.016 293.984zM272 96c61.76 0 112 50.24 112 112s-50.24 112-112 112-112-50.24-112-112 50.24-112 112-112zM272 288c44.096 0 80-35.904 80-80s-35.904-80-80-80-80 35.904-80 80 35.904 80 80 80z" />
<glyph unicode="&#xe02d;" glyph-name="paperclip" horiz-adv-x="1088" d="M178.784-59.744c64.48 0 133.856 32.832 182.624 81.632l540.256 549.408c27.712 27.712 43.136 64.448 43.392 103.392 0.288 39.040-14.688 75.648-42.112 103.104-56.576 56.544-149.152 56.032-206.784-1.536l-414.112-432.96c-6.496-6.816-6.272-17.664 0.576-24.192 6.816-6.528 17.6-6.272 24.192 0.544l413.824 432.704c43.936 43.968 114.912 44.512 158.112 1.28 20.896-20.896 32.32-48.832 32.096-78.656-0.192-29.92-12.064-58.112-33.472-79.552l-540.256-549.44c-56.832-56.8-173.632-108.32-243.68-38.208-33.184 33.184-49.824 73.888-48.096 117.728 1.696 43.52 22.176 87.040 57.824 122.656l617.472 626.688c32.832 32.832 84.128 51.84 140.672 52.032 0.352 0 0.672 0 1.024 0 56.064 0 106.656-18.464 138.944-50.752 32.512-32.48 51.008-83.488 50.784-139.968-0.224-56.544-19.232-107.808-52.288-140.864l-476.64-495.52c-6.56-6.816-6.336-17.632 0.48-24.192 6.784-6.528 17.632-6.336 24.16 0.48l476.416 495.296c39.2 39.168 61.824 99.2 62.048 164.672 0.288 65.504-21.888 125.408-60.768 164.288-38.656 38.656-98.048 60.8-163.136 60.8-0.384 0-0.768 0-1.152 0-65.504-0.256-125.536-22.88-164.8-62.144l-617.504-626.72c-86.432-86.432-90.464-207.84-9.632-288.672 30.304-30.272 68.928-43.328 109.536-43.328z" />
<glyph unicode="&#xe02e;" glyph-name="attachment2" d="M607.552 432.928c5.248-0.576 10.464-0.832 15.68-0.832 38.912 0 76.224 15.392 104.256 43.424l236.96 236.96c27.712 27.712 43.168 64.448 43.392 103.392 0.288 39.040-14.688 75.648-42.112 103.104-27.2 27.2-63.36 42.144-102.016 42.144-0.352 0-0.672 0-1.056 0-38.944-0.256-75.648-15.68-103.36-43.392l-236.96-236.96c-35.040-35.040-50.208-84.768-40.608-133.024 1.856-9.28 11.072-15.328 20.128-13.408 9.28 1.856 15.296 10.848 13.44 20.096-7.392 37.024 4.288 75.232 31.232 102.144l236.96 236.96c21.312 21.344 49.536 33.184 79.424 33.376 31.2 0 57.76-11.2 78.656-32.096s32.32-48.864 32.128-78.656c-0.224-29.92-12.064-58.112-33.408-79.424l-236.96-236.96c-24.448-24.416-58.016-36.256-92.128-32.768-9.12 1.056-17.824-5.792-18.816-15.2-1.024-9.472 5.792-17.888 15.168-18.88zM484.48 215.264c36.736 36.736 51.456 88.608 39.328 138.688-2.208 9.184-11.232 14.912-20.672 12.608-9.184-2.208-14.816-11.456-12.608-20.64 9.312-38.432-2.016-78.208-30.272-106.496l-236.96-236.96c-21.312-21.344-49.536-33.184-79.424-33.376-30.688-0.16-57.76 11.168-78.656 32.096-20.896 20.896-32.32 48.832-32.096 78.656 0.192 29.92 12.064 58.112 33.376 79.456l236.96 236.96c24.672 24.672 58.304 36.608 92.992 32.672 9.216-0.704 17.888 5.664 18.944 15.072 1.056 9.376-5.664 17.856-15.072 18.944-44.928 5.056-88.96-10.368-121.056-42.464l-236.96-236.96c-27.712-27.712-43.136-64.448-43.392-103.392-0.288-39.040 14.688-75.648 42.112-103.104 27.2-27.2 63.36-42.144 102.016-42.144 0.352 0 0.672 0 1.056 0 38.944 0.256 75.648 15.68 103.36 43.392l237.024 236.992zM727.488 676.096c-6.688 6.688-17.504 6.688-24.192 0l-432-432c-6.688-6.656-6.688-17.504 0-24.192 3.328-3.328 7.712-5.024 12.096-5.024s8.736 1.664 12.096 5.024l432 432c6.688 6.688 6.688 17.504 0 24.192z" />
<glyph unicode="&#xe02f;" glyph-name="pricetags" horiz-adv-x="1344" d="M1296 960h-320c-22.112 0-50.368-12.032-65.504-27.84l-42.56-42.88c-6.208-6.272-6.144-16.416 0.128-22.624 6.208-6.208 16.416-6.176 22.624 0.096l42.688 43.072c9.12 9.504 29.44 18.176 42.624 18.176h320c8.8 0 16-7.168 16-16v-321.568c0-13.152-8.672-33.472-18.368-42.784l-450.592-447.104c-6.432-6.112-17.12-5.952-23.36 0.256l-84.736 84.768c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l84.736-84.768c9.408-9.376 21.888-14.112 34.368-14.112 12.224 0 24.48 4.512 33.984 13.568l450.624 447.136c15.936 15.296 27.968 43.552 27.968 65.664v321.568c0 26.464-21.536 48-48 48zM1249.216 800c0 35.296-28.704 64-64 64s-64-28.704-64-64 28.704-64 64-64 64 28.704 64 64zM1153.216 800c0 17.632 14.336 32 32 32s32-14.368 32-32-14.336-32-32-32-32 14.368-32 32zM526.784 832c-22.112 0-50.368-12.032-65.536-27.84l-447.776-452.192c-18.176-18.944-17.92-49.504 0.672-68.096l333.696-333.696c9.12-9.152 21.344-14.176 34.432-14.176 12.672 0 24.64 4.768 33.888 13.632l450.592 447.104c15.968 15.296 28.032 43.552 28.032 65.696v321.568c0 26.464-21.536 48-48 48h-320zM864 784v-321.568c0-13.184-9.888-33.472-19.584-42.784l-450.592-447.104c-6.24-5.92-17.28-5.792-23.328 0.256l-333.728 333.664c-6.24 6.272-6.368 16.96-0.416 23.136l447.808 452.224c9.12 9.504 29.44 18.176 42.624 18.176h320c8.8 0 17.216-7.168 17.216-16zM736 736c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM736 640c-17.664 0-32 14.368-32 32s14.336 32 32 32 32-14.368 32-32-14.336-32-32-32z" />
<glyph unicode="&#xe030;" glyph-name="lightbulb" horiz-adv-x="704" d="M352 960c-169.28 0-352-134.592-352-352 0-107.296 42.688-197.568 124.672-265.984 0.864-1.088 1.856-2.016 2.944-2.816 60.832-65.984 63.904-78.528 64.32-107.552 0.192-11.488 0.096-14.88 0-16.736l-0.128-6.688c-0.48-14.464-1.216-38.688 28.768-47.84l259.008-56.992c1.152-0.256 2.304-0.384 3.424-0.384 7.36 0 13.984 5.088 15.616 12.576 1.92 8.64-3.552 17.184-12.192 19.072l-257.76 56.672c-4.96 1.504-5.376 1.632-4.928 15.936l0.096 6.112c0 0 0.32 2.496 0.064 18.752-0.608 40.608-9.44 60.224-73.888 129.888-1.248 1.536-2.752 2.816-4.416 3.776-75.392 64.096-113.6 145.568-113.6 242.208 0 197.664 166.080 320 320 320 157.312 0 320-119.712 320-320 0-127.296-61.696-197.472-112.576-241.632-1.76-0.832-3.328-2.016-4.704-3.488-65.184-70.528-74.016-90.144-74.624-130.752 0-0.96-0.032-2.080 0-3.296l-0.032-1.12c-0.096-2.432-0.448-3.776-0.416-4.288-1.088 0.16-3.744 0.576-3.744 0.576l-134.24 31.584c-8.704 1.984-17.216-3.328-19.232-11.904-2.016-8.608 3.296-17.216 11.904-19.264l132.608-31.104c1.76-0.64 17.696-5.824 31.136 3.616 5.856 4.128 12.672 12.224 13.888 27.712l0.096 1.504c0.032 1.024 0.064 2.080 0.064 3.168 0 0.288 0 0.576-0.032 0.832l0.032 1.472c0.416 28.864 3.424 41.408 64.16 107.392 0.288 0.224 0.608 0.448 0.864 0.704 85.344 71.712 126.848 159.488 126.848 268.288 0 220.32-178.976 352-352 352zM480 16c7.328 0 13.92 5.024 15.584 12.48 1.984 8.608-3.424 17.184-12.064 19.136l-256 58.048c-8.672 1.92-17.184-3.456-19.136-12.064-1.984-8.608 3.424-17.184 12.064-19.136l256-58.048c1.216-0.288 2.4-0.416 3.552-0.416zM243.488 14.272c-8.672 1.92-17.152-3.488-19.136-12.096-1.92-8.64 3.488-17.184 12.128-19.104l208-46.656c1.216-0.288 2.368-0.416 3.52-0.416 7.328 0 13.952 5.056 15.616 12.512 1.92 8.64-3.488 17.184-12.128 19.104l-208 46.656z" />
<glyph unicode="&#xe031;" glyph-name="layers" d="M984.48 727.616l-369.376 208.48c-50.272 28.384-136.672 28.416-187.040 0l-369.376-208.48c-28.256-15.968-43.776-38.304-43.776-62.944s15.552-46.976 43.776-62.912l369.376-208.512c25.152-14.208 58.368-22.016 93.504-22.016 35.168 0 68.384 7.84 93.536 22.016l369.376 208.512c28.256 15.936 43.808 38.272 43.808 62.912s-15.584 46.976-43.808 62.944zM967.648 631.52l-369.376-208.512c-39.616-22.368-113.792-22.4-153.408 0l-369.376 208.512c-16.768 9.472-26.368 21.568-26.368 33.152 0 11.616 9.6 23.68 26.368 33.184l369.376 208.512c19.808 11.2 47.776 17.6 76.672 17.6 28.928 0 56.896-6.432 76.704-17.6l369.376-208.512c16.768-9.472 26.4-21.568 26.4-33.184 0.032-11.584-9.568-23.68-26.368-33.152zM984.48 508.832c-8.192 4.64-18.624 1.76-23.328-6.496-4.64-8.224-1.728-18.656 6.496-23.296 16.768-9.472 26.4-21.568 26.4-33.152s-9.632-23.68-26.4-33.152l-369.376-208.512c-41.536-23.456-111.808-23.488-153.408 0l-369.376 208.512c-16.768 9.472-26.368 21.568-26.368 33.152s9.6 23.68 26.368 33.152c8.224 4.64 11.136 15.072 6.496 23.296-4.672 8.256-15.136 11.168-23.328 6.496-28.256-15.936-43.776-38.304-43.776-62.944s15.52-47.008 43.776-62.944l369.376-208.512c26.208-14.784 59.872-22.208 93.504-22.208 33.664 0 67.328 7.392 93.536 22.208l369.376 208.512c28.256 15.936 43.808 38.304 43.808 62.944s-15.552 47.008-43.776 62.944zM984.48 294.272c-8.192 4.64-18.624 1.76-23.328-6.496-4.64-8.224-1.728-18.656 6.496-23.296 16.768-9.472 26.4-21.568 26.4-33.152s-9.632-23.68-26.4-33.184l-369.376-208.512c-41.536-23.456-111.808-23.488-153.408 0l-369.376 208.544c-16.768 9.472-26.368 21.568-26.368 33.184 0 11.584 9.6 23.68 26.368 33.152 8.224 4.64 11.136 15.072 6.496 23.296-4.672 8.224-15.136 11.168-23.328 6.496-28.192-15.968-43.744-38.304-43.744-62.976s15.52-47.008 43.776-62.944l369.376-208.512c26.208-14.784 59.872-22.208 93.504-22.208 33.664 0 67.328 7.392 93.536 22.208l369.376 208.512c28.256 15.968 43.808 38.304 43.808 62.944s-15.584 47.008-43.808 62.944z" />
<glyph unicode="&#xe032;" glyph-name="pencil3" d="M0-47.328c0-8.832 7.168-16 16-16h995.552c2.144 0 4.224 0.416 6.176 1.248s3.712 2.016 5.184 3.488c0.032 0.032 0.064 0.032 0.096 0.064 0.096 0.096 0.096 0.288 0.224 0.384 1.632 1.76 2.688 3.904 3.424 6.24 0.224 0.736 0.32 1.44 0.448 2.208 0.128 0.8 0.48 1.504 0.48 2.336 0 1.28-0.448 2.4-0.736 3.584-0.096 0.448 0.096 0.896-0.064 1.344l-101.12 310.88c-0.768 2.4-2.112 4.608-3.904 6.368l-547.744 547.776c-0.576 0.896-0.992 1.856-1.76 2.656l-119.648 119.648c-19.424 19.424-51.040 19.424-70.496 0l-167.52-167.52c-9.408-9.408-14.592-21.92-14.592-35.232s5.184-25.856 14.592-35.264l116.992-116.992c0.576-0.864 0.96-1.856 1.728-2.624l546.88-550.56c1.888-1.92 4.192-3.296 6.784-4.064l214.816-64h-885.792c-8.832 0.032-16-7.136-16-15.968zM203.584 634.848l501.984-495.552-18.464-64.064-519.84 523.296 36.32 36.32zM730.112 160l-503.936 497.44 77.984 77.984 499.424-500.736v-74.688h-73.472zM823.52 260l-496.736 498.048 33.248 33.248 518.752-518.752-55.264-12.544zM735.616 128h83.968c8.832 0 16 7.168 16 16v85.92l64.224 14.592 87.136-267.84-271.616 80.928 20.288 70.4zM32 742.144c0 4.768 1.856 9.216 5.216 12.608l167.52 167.52c6.944 6.944 18.24 6.976 25.248 0l107.904-107.904-192.736-192.736-107.904 107.904c-3.392 3.36-5.248 7.84-5.248 12.608z" />
<glyph unicode="&#xe033;" glyph-name="tools" horiz-adv-x="992" d="M6.752 779.328c-27.104-27.136-21.312-65.344 0.256-86.88 0.864-0.832 87.488-83.584 209.312-205.408 3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624-18.368 18.368-35.84 35.744-52.416 52.192l50.848 50.848c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-50.976-50.976c-28.512 28.16-53.632 52.736-74.080 72.672l115.68 115.68c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-116.032-116.032c-23.552 22.816-37.12 35.776-37.344 36-6.752 6.752-15.616 25.76 0 41.376l160 160c6.176 6.272 22.624 18.72 40.672 0.768 0.8-0.896 81.6-92.672 204.928-216 6.24-6.24 16.384-6.24 22.624 0s6.24 16.384 0 22.624c-122.56 122.528-202.752 213.6-204.224 215.264-29.824 29.76-65.792 20.832-86.624 0l-160.032-160zM685.408 187.328c-6.24 6.24-16.384 6.24-22.624 0l-50.912-50.88c-15.52 15.712-31.808 32.16-48.96 49.312-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624c118.528-118.496 201.312-207.008 202.496-208.288 10.976-11.008 26.016-17.056 42.336-17.056v0c16.8 0 33.792 6.56 44.32 17.12l159.936 161.824c20.128 20.128 21.28 54.272 2.496 73.12l-214.592 214.56c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l214.592-214.56c6.4-6.4 5.184-20.224-2.528-27.936l-159.968-161.824c-3.68-3.712-12.032-7.68-21.632-7.68 0 0 0 0 0 0-5.504 0-13.376 1.344-19.328 7.328-0.32 0.352-13.728 14.656-36.992 39.008l116.608 116.608c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-116.128-116.128c-19.968 20.768-44.448 46.016-72.32 74.432l51.072 51.072c6.24 6.208 6.24 16.32 0 22.592zM-9.376-58.528c3.072-3.136 7.2-4.8 11.456-4.8 1.536 0 3.072 0.224 4.576 0.672l320 95.328c2.592 0.768 4.896 2.144 6.784 4.064l546.88 550.56c0.768 0.768 1.152 1.76 1.728 2.624l116.992 116.992c9.408 9.44 14.624 21.952 14.624 35.296 0 13.312-5.216 25.824-14.624 35.2l-167.52 167.488c-18.816 18.816-51.68 18.816-70.496 0l-119.648-119.648c-0.768-0.768-1.184-1.76-1.76-2.656l-547.712-547.744c-1.792-1.792-3.136-3.968-3.904-6.368l-101.12-310.88c-1.856-5.664-0.416-11.84 3.744-16.128zM653.6 791.328l33.248-33.248-496.736-498.080-55.264 12.544 518.752 518.784zM210.080 234.688l499.424 500.736 77.952-77.952-503.936-497.472h-73.44v74.688zM846.368 598.528l-519.808-523.328-18.464 64.064 501.984 495.584 36.288-36.32zM113.856 244.512l64.224-14.592v-85.92c0-8.832 7.168-16 16-16h83.968l20.288-70.4-271.616-80.928 87.136 267.84zM783.68 922.272c6.752 6.752 18.496 6.752 25.248 0l167.52-167.52c3.36-3.36 5.216-7.84 5.216-12.608 0-4.736-1.856-9.248-5.248-12.64l-107.872-107.904-192.736 192.736 107.872 107.936z" />
<glyph unicode="&#xe034;" glyph-name="tools-2" d="M907.328 916.672c3.68 3.68 5.344 8.928 4.448 14.048s-4.224 9.504-8.96 11.712c-73.312 34.56-160.32 19.392-217.536-38.112-54.336-54.688-73.312-140.576-47.968-212.384l-369.248-369.248c-20.064 7.168-41.504 10.752-63.872 10.752-54.848 0-108.032-21.824-145.888-59.904-57.024-57.344-73.088-142.080-40.992-215.904 2.112-4.864 6.496-8.384 11.712-9.344 5.248-0.992 10.592 0.672 14.304 4.448l111.712 112.288c7.36 7.424 19.232 8.416 25.376 2.176l48.224-50.464c7.008-7.072 6.688-17.984-0.704-25.44l-111.296-112c-3.68-3.68-5.312-8.928-4.416-14.048s4.224-9.472 8.928-11.68c26.528-12.512 54.432-18.816 82.912-18.816 50.304 0 98.080 20.224 134.624 56.96 54.336 54.656 73.312 140.544 47.936 212.352l369.248 369.28c20.096-7.168 41.536-10.752 63.904-10.752 54.848 0 108.032 21.824 145.888 59.904 57.024 57.344 73.088 142.080 40.992 215.904-2.112 4.864-6.496 8.384-11.712 9.344-5.152 0.896-10.56-0.672-14.304-4.448l-111.712-112.288c-6.88-6.912-18.56-6.848-25.632 0.32l-47.968 47.968c-7.232 7.264-7.2 18.176-0.032 25.408l112.032 111.968zM772.672 756.672l47.968-47.968c19.168-19.264 52-19.36 70.976-0.288l93.76 94.208c15.008-55.712-0.512-115.488-42.368-157.632-31.904-32.096-76.768-50.464-123.2-50.464-21.856 0-42.56 4.096-61.536 12.16-6.016 2.592-12.96 1.184-17.568-3.392l-384-384c-4.608-4.608-5.952-11.52-3.424-17.504 25.696-61.12 10.048-140-37.216-187.552-42.272-42.496-103.808-57.632-159.52-40.256l94.112 94.72c19.872 20 20.192 51.008 0.928 70.336l-48.192 50.464c-18.592 18.72-51.648 17.568-70.976-1.984l-93.76-94.208c-15.008 55.712 0.512 115.488 42.368 157.632 31.904 32.096 76.768 50.464 123.2 50.464 21.856 0 42.56-4.096 61.536-12.16 5.984-2.624 12.96-1.184 17.568 3.392l384 384c4.608 4.608 5.952 11.52 3.424 17.504-25.696 61.12-10.048 140.032 37.216 187.584 42.24 42.496 103.744 57.536 159.424 40.256l-94.72-94.752c-19.712-19.744-19.712-50.72 0-70.56zM934.72-20.704c-7.072-7.104-19.328-7.104-26.464 0.064l-320.96 320c-6.24 6.176-16.384 6.208-22.624-0.064-6.24-6.24-6.208-16.384 0.032-22.624l320.928-319.936c9.6-9.632 22.336-14.944 35.904-14.944 0 0 0 0 0 0 13.568 0 26.304 5.312 36.096 15.168l45.728 47.776c19.68 19.776 19.68 50.784-0.032 70.592l-320 320c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l319.968-319.968c7.328-7.36 7.328-18.048-0.224-25.664l-45.728-47.776zM187.328 859.328l-96 96c-6.24 6.24-16.384 6.24-22.624 0l-64-64c-6.24-6.24-6.24-16.384 0-22.624l96-96c3.104-3.136 7.2-4.704 11.296-4.704s8.192 1.568 11.328 4.672l20.672 20.704 244.672-244.672c3.136-3.136 7.232-4.704 11.328-4.704s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-244.704 244.704 20.672 20.672c6.272 6.272 6.272 16.384 0.032 22.656zM112 806.624l-73.376 73.376 41.376 41.376 73.376-73.376-41.376-41.376z" />
<glyph unicode="&#xe035;" glyph-name="scissors2" d="M816 32c61.76 0 112 50.24 112 112s-50.24 112-112 112-112-50.24-112-112 50.24-112 112-112zM816 224c44.096 0 80-35.872 80-80s-35.904-80-80-80-80 35.872-80 80 35.904 80 80 80zM599.424 193.6c0-46.432 11.424-104.672 26.752-137.632 31.36-79.584 93.056-119.968 183.424-119.968 118.208 0 214.4 96.192 214.4 214.4 0 114.976-90.176 198.4-214.4 198.4-141.216 0-187.296 75.872-189.12 79.008-0.64 1.088-1.376 2.112-2.24 3.040l-491.36 524.096c-4.48 4.768-11.456 6.304-17.568 3.936-6.080-2.4-10.112-8.32-10.112-14.88 0-308.832 205.952-470.88 356.32-589.152 80.416-63.264 143.904-113.184 143.904-161.248zM132.608 902.048l461.184-491.904c8.576-13.568 65.408-93.344 215.808-93.344 105.696 0 182.4-69.984 182.4-166.4 0-100.608-81.824-182.4-182.4-182.4-76.96 0-127.232 32.64-154.016 100.608-11.712 25.152-24.16 77.536-24.16 124.992 0 63.584-68.896 117.792-156.096 186.4-138.144 108.672-324.864 255.52-342.72 522.048zM96 144c0-61.76 50.24-112 112-112s112 50.24 112 112-50.24 112-112 112-112-50.24-112-112zM288 144c0-44.128-35.904-80-80-80s-80 35.872-80 80 35.904 80 80 80 80-35.872 80-80zM660.288 464.928c-6.528-5.952-7.008-16.064-1.056-22.592 3.168-3.456 7.488-5.216 11.84-5.216 3.84 0 7.712 1.376 10.784 4.192 113.12 103.040 242.944 253.28 242.944 502.688 0 6.56-4 12.48-10.112 14.88-6.080 2.336-13.056 0.832-17.568-3.936l-349.44-372.672c-6.048-6.432-5.728-16.576 0.736-22.592 6.432-6.016 16.544-5.76 22.624 0.704l320.448 341.76c-13.632-212.16-129.472-344.512-231.2-437.216zM349.152 355.328c8.224 3.2 12.32 12.448 9.152 20.672s-12.48 12.384-20.704 9.12c-6.752-2.624-14.048-5.856-21.888-9.344-27.008-12-60.64-26.976-101.312-26.976-124.224 0-214.4-83.424-214.4-198.4 0-118.208 96.192-214.4 214.4-214.4 90.368 0 152.064 40.384 183.008 119.104 16.192 34.72 18.592 110.72 18.592 152.896 0 8.608 24.384 26.976 38.976 37.952 13.472 10.112 27.392 20.608 36.992 31.424 5.856 6.624 5.248 16.736-1.344 22.592-6.592 5.888-16.736 5.248-22.592-1.344-7.488-8.48-20.096-17.952-32.32-27.136-26.592-20.032-51.712-38.912-51.712-63.488 0-66.304-5.824-118.432-15.968-140.288-26.4-67.072-76.672-99.712-153.632-99.712-100.576 0-182.4 81.824-182.4 182.4 0 96.448 76.704 166.4 182.4 166.4 47.488 0 86.112 17.216 114.336 29.792 7.296 3.264 14.112 6.272 20.416 8.736zM486.208 416.512c0-14.245 11.547-25.792 25.792-25.792s25.792 11.547 25.792 25.792c0 14.245-11.547 25.792-25.792 25.792s-25.792-11.547-25.792-25.792z" />
<glyph unicode="&#xe036;" glyph-name="paintbrush" horiz-adv-x="704" d="M492.896 288h146.56c33.696 0 61.088 27.392 64.544 61.088v549.824c-3.456 33.696-30.848 61.088-64.544 61.088h-574.912c-33.696 0-61.088-27.392-64.544-61.088v-549.824c3.456-33.696 30.848-61.088 64.544-61.088h158.784c11.136 0 66.656-2.368 66.656-49.344 0-83.904-17.696-122.944-24.384-137.664l-1.568-3.488 12.896-5.568v-0.416l-14.304 2.88c-0.544-1.056-0.96-2.176-1.216-3.328-4.928-13.152-7.424-26.656-7.424-40.224 0.032-68.704 39.392-114.848 98.016-114.848 59.232 0 99.008 46.144 99.008 114.848 0 12.512-2.112 24.96-6.336 37.152-0.16 3.648-1.568 7.040-3.808 9.664-0.832 1.92-1.92 4-3.232 6.464-7.008 13.28-21.632 40.864-21.632 134.528 0 19.84 20.48 49.344 76.896 49.344zM32 574.112h640v-126.112h-640v126.112zM64.544 928h574.912c16.032 0 29.088-13.056 32.544-29.088v-292.768h-640v292.768c3.456 16.032 16.512 29.088 32.544 29.088zM409.344 89.152c0.896-1.696 1.664-3.104 2.976-6.048 0-0.032 0.096-0.224 0.224-0.512 0.128-0.416 0.256-0.8 0.416-1.216 4-10.016 6.016-20.32 6.016-30.528 0.032-40.064-17.568-82.848-66.976-82.848-48.672 0-65.984 42.784-65.984 82.848 0 10.208 2.016 20.512 6.016 30.528 0.128 0.384 0.288 0.736 0.384 1.12 0.448 0.96 0.992 2.176 1.056 2.304l1.344 2.976c7.424 16.448 27.232 60.032 27.232 150.88-0.064 64.224-62.048 81.344-99.648 81.344 0 0 0 0-0.032 0h-157.824c-16.032 0-29.088 13.056-32.544 29.088v66.912h640v-66.912c-3.456-16.032-16.512-29.088-32.544-29.088h-146.56c-79.904 0-108.896-48.672-108.896-81.344 0-101.6 17.12-133.984 25.344-149.504z" />
<glyph unicode="&#xe037;" glyph-name="magnifying-glass" d="M336 960c-185.28 0-336-150.72-336-336s150.72-336 336-336c87.2 0 166.496 33.664 226.272 88.32 0.704-1.248 1.344-2.56 2.432-3.648l68.832-68.832c-5.76-9.728-9.024-20.736-9.024-32.352 0-17.088 6.656-33.152 18.752-45.248l271.52-271.52c12.064-12.064 28.128-18.72 45.216-18.72s33.152 6.656 45.248 18.752 18.752 28.16 18.752 45.248-6.656 33.152-18.752 45.248l-271.52 271.52c-20.288 20.288-53.088 23.328-77.44 9.568l-68.96 68.96c-1.088 1.088-2.368 1.728-3.648 2.432 54.656 59.776 88.32 139.072 88.32 226.272 0 185.28-150.72 336-336 336zM711.104 294.144l271.52-271.52c6.048-6.048 9.376-14.080 9.376-22.624s-3.328-16.576-9.376-22.624c-12.128-12.064-33.12-12.064-45.248 0l-271.52 271.52c-6.016 6.048-9.376 14.080-9.376 22.624s3.328 16.576 9.376 22.624c6.048 6.016 14.080 9.376 22.624 9.376s16.544-3.328 22.624-9.376zM336 320c-167.616 0-304 136.384-304 304s136.384 304 304 304 304-136.384 304-304-136.384-304-304-304zM336 864c-132.352 0-240-107.648-240-240s107.648-240 240-240 240 107.648 240 240-107.648 240-240 240zM336 416c-114.688 0-208 93.312-208 208s93.312 208 208 208 208-93.312 208-208-93.312-208-208-208z" />
<glyph unicode="&#xe038;" glyph-name="circle-compass" horiz-adv-x="736" d="M368.448 768c8.832 0 16 7.168 16 16v48h15.552c8.832 0 16 7.168 16 16v96c0 8.832-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16v-96c0-8.832 7.168-16 16-16h16.448v-48c0-8.832 7.136-16 16-16zM352 928h32v-64h-32v64zM8.576-58.144c2.368-1.248 4.896-1.856 7.424-1.856 5.76 0 11.328 3.136 14.144 8.576l137.344 261.536c61.6-30.944 129.888-47.68 200.928-47.68 70.848 0 139.008 16.672 200.48 47.456l136.896-261.312c2.88-5.44 8.448-8.576 14.176-8.576 2.496 0 5.056 0.608 7.424 1.824 7.808 4.128 10.848 13.792 6.752 21.632l-137.216 261.92c31.712 18.88 61.504 41.344 88.256 68.096 31.2 31.2 31.2 81.952 0 113.12-30.24 30.24-83.008 30.176-113.12 0-15.136-15.136-31.808-28.16-49.44-39.36l-75.456 144.032c29.216 23.328 48.352 58.784 48.352 98.976 0 70.080-57.024 127.136-127.136 127.136s-127.040-57.056-127.040-127.168c0-40.16 19.072-75.584 48.224-98.912l-75.616-143.936c-17.536 11.2-34.112 24.16-49.152 39.2-30.24 30.24-83.008 30.176-113.12 0-31.2-31.2-31.2-81.952 0-113.12 26.624-26.624 56.288-49.024 87.84-67.84l-137.664-262.144c-4.128-7.84-1.12-17.504 6.72-21.6zM108.224 398.016c12.832 0 24.896-4.992 33.984-14.048 60.352-60.352 140.672-93.568 226.24-93.568s165.952 33.216 226.304 93.568c18.112 18.144 49.76 18.080 67.872 0 18.72-18.72 18.72-49.152 0-67.872-78.464-78.432-182.976-121.664-294.176-121.664-111.264 0-215.68 43.232-294.112 121.664-18.72 18.72-18.72 49.152 0 67.872 9.024 9.024 21.056 14.048 33.888 14.048zM273.344 610.208c0 52.448 42.656 95.136 95.104 95.136s95.136-42.688 95.136-95.136-42.688-95.136-95.136-95.136-95.104 42.72-95.104 95.136zM316.768 494.304c15.808-7.072 33.248-11.232 51.68-11.232 18.368 0 35.744 4.096 51.52 11.136l74.72-142.624c-38.848-18.944-81.696-29.248-126.24-29.248-44.672 0-87.616 10.336-126.528 29.376l74.848 142.592z" />
<glyph unicode="&#xe039;" glyph-name="linegraph" horiz-adv-x="1344" d="M1248 960c-52.928 0-96-43.072-96-96 0-28.416 12.672-53.728 32.352-71.328l-281.6-448.992c-11.872 5.28-24.96 8.32-38.752 8.32-27.776 0-52.608-12.032-70.176-30.944l-290.336 183.84c5.376 11.968 8.512 25.152 8.512 39.104 0 52.928-43.072 96-96 96s-96-43.072-96-96c0-28.928 13.12-54.592 33.408-72.192l-220.64-351.2c-11.328 4.736-23.744 7.392-36.768 7.392-52.928 0-96-43.072-96-96s43.072-96 96-96 96 43.072 96 96c0 28.416-12.64 53.696-32.32 71.296l220.928 351.68c10.976-4.416 22.88-6.976 35.392-6.976 27.488 0 52.128 11.744 69.632 30.304l290.496-183.936c-5.152-11.776-8.128-24.704-8.128-38.368 0-52.928 43.072-96 96-96s96 43.072 96 96c0 27.616-11.872 52.352-30.624 69.888l281.92 449.472c11.328-4.704 23.712-7.36 36.704-7.36 52.928 0 96 43.072 96 96s-43.072 96-96 96zM160 32c0-35.296-28.704-64-64-64s-64 28.704-64 64 28.704 64 64 64 64-28.704 64-64zM416 480c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64zM864 192c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64zM1248 800c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64z" />
<glyph unicode="&#xe03a;" glyph-name="mic2" horiz-adv-x="480" d="M224 191.776v-127.776h-94.912c-36.512 0-64-27.488-64-64v-48c0-8.832 7.168-16 16-16h320c8.832 0 16 7.168 16 16v45.6c0 37.248-28.128 66.4-64 66.4h-97.088v127.776c127.136 8.896 226.176 113.92 226.176 242.048v60.384c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.68-17.088-17.12v-60.384c0-115.104-92.8-208.704-206.912-208.704s-206.912 93.632-206.912 208.704v60.384c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.648-17.088-17.088v-60.384c0-128.096 99.040-233.12 224-242.016zM385.088-2.4v-29.6h-288v32c0 18.848 13.152 32 32 32h224c18.24 0 32-14.784 32-34.4zM241.088 961.088c-80 0-145.088-65.888-145.088-146.912v-380.384c0-80.992 65.088-146.912 145.088-146.912s145.088 65.92 142.912 146.912v380.384c2.176 81.024-62.912 146.912-142.912 146.912zM352 433.824c0-62.144-49.76-112.704-110.912-112.704s-113.088 50.528-113.088 112.704v380.352c0 62.144 51.936 112.704 113.088 112.704s110.912-50.528 110.912-112.704v-380.352z" />
<glyph unicode="&#xe03b;" glyph-name="strategy" horiz-adv-x="736" d="M704-48c0 8.832-7.168 16-16 16h-576c-8.832 0-16-7.168-16-16s7.168-16 16-16h576c8.832 0 16 7.168 16 16zM40.768 660.672c-13.376-8.896-33.664-35.968-14.432-74.432 15.968-31.904 49.28-70.944 84.704-81.248 18.048-5.312 35.84-3.104 51.36 6.272 35.168 21.056 76.704 49.536 94.304 61.76 22.208-11.232 50.24-13.568 78.72-6.24 0.128 0.032 0.256 0.096 0.384 0.128-1.664-52.832-19.552-85.824-107.008-167.040-77.952-72.352-124.192-167.392-123.744-254.272 0.32-56.992 21.088-105.92 60.16-141.408 2.976-2.72 6.816-4.192 10.784-4.192h448c8.832 0 16 7.168 16 16s-7.168 16-16 16h-441.632c-29.408 28.96-45.024 68.16-45.28 113.76-0.416 76.864 43.104 165.28 113.504 230.656 93.28 86.592 117.408 127.616 117.408 199.584 0 1.312-0.448 2.464-0.736 3.68 17.504 9.44 32.64 21.92 42.976 37.024 12.96 18.88 40.864 67.36 20.16 110.272-3.84 7.904-13.408 11.264-21.376 7.424-7.936-3.84-11.296-13.408-7.424-21.376 9.312-19.296 2.688-48.544-17.728-78.24-11.776-17.152-32.832-31.008-56.352-37.024-23.904-6.112-46.624-3.424-62.464 7.424-5.536 3.776-12.8 3.744-18.272-0.128-0.576-0.384-56.864-40.032-100.768-66.368-8.032-4.8-16.512-5.824-25.984-3.008-24.768 7.232-52 38.784-65.024 64.832-10.528 21.056 0.256 31.104 5.152 34.688 110.304 95.264 165.664 194.24 167.936 198.432 2.112 3.904 2.56 8.512 1.152 12.768-0.16 0.48-11.2 34.016-17.28 65.056 33.472-20.16 91.040-48.32 150.976-48.32 83.328 0 277.056-31.104 277.056-319.232 0-1.568-0.288-158.208-63.040-330.464-3.040-8.288 1.248-17.472 9.568-20.512 1.824-0.608 3.648-0.928 5.472-0.928 6.528 0 12.672 4.032 15.040 10.528 64.672 177.536 64.992 334.912 64.96 341.472 0 325.856-236.576 351.168-309.056 351.168-80.288 0-160.384 60.896-161.152 61.536-4.896 3.68-11.36 4.288-16.864 1.632-5.472-2.688-8.928-8.256-8.928-14.336 0-31.392 14.88-82.176 20.672-100.704-13.376-22.336-66.112-104.992-155.904-182.624zM559.52 910.72c-51.232 34.528-108.512 49.28-191.52 49.28-8.832 0-16-7.168-16-16s7.168-16 16-16c76.16 0 128.096-13.088 173.664-43.808 74.048-49.984 162.336-149.568 162.336-340.192 0-46.432 0-110.016-31.52-236.128-2.112-8.576 3.072-17.248 11.648-19.392 1.312-0.32 2.592-0.48 3.872-0.48 7.2 0 13.728 4.832 15.52 12.128 32.48 129.888 32.48 195.776 32.48 243.872 0 204.672-95.968 312.416-176.48 366.72z" />
<glyph unicode="&#xe03c;" glyph-name="beaker" horiz-adv-x="864" d="M560 928c8.832 0 16 7.168 16 16s-7.168 16-16 16h-288c-8.832 0-16-7.168-16-16s7.168-16 16-16h288zM31.68 75.68c-34.368-48.352-30.528-79.936-21.248-97.92 9.824-19.040 35.424-41.76 101.568-41.76h640c66.144 0 91.744 22.72 101.568 41.792 9.28 17.984 13.12 49.568-20.736 97.088l-199.008 318.4-2.816 3.968c-14.304 20.416-87.008 146.048-87.008 250.752v232c0 8.832-7.168 16-16 16h-224c-8.832 0-16-7.168-16-16v-232c0-111.712-78.88-254.624-79.776-256.16l-176.544-316.16zM825.152-7.52c-8.032-15.584-34.688-24.48-73.152-24.48h-640c-38.464 0-65.12 8.896-73.152 24.48-7.328 14.208-0.64 37.184 19.84 66.112l159.968 286.336 0.224-0.128c29.12-16.8 59.232-34.176 119.008-34.176s89.92 17.344 119.008 34.112c26.656 15.36 51.808 29.888 103.040 29.888 19.424 0 36.256-2.4 51.744-6.72l194.56-310.784c19.552-27.456 26.24-50.432 18.912-64.64zM320 648v216h192v-216c0-90.88 48.512-193.344 76.928-243.264-9.28 1.056-18.72 1.888-28.96 1.888-59.808 0-89.92-17.344-119.008-34.112-26.656-15.36-51.808-29.888-103.040-29.888s-76.384 14.528-103.008 29.888l-0.608 0.352 1.472 2.624c0.8 1.28 84.224 149.952 84.224 272.512z" />
<glyph unicode="&#xe03d;" glyph-name="caution" horiz-adv-x="1120" d="M697.568 865.472c-35.36 60.928-83.488 94.528-135.52 94.528s-100.192-33.6-135.552-94.528l-392.608-676.256c-35.84-62.304-39.68-127.008-10.56-177.472 27.712-48 82.080-75.616 149.248-75.744h778.912c0 0 0 0 0.032 0 67.264 0.128 121.728 27.648 149.344 75.552 28.96 50.144 25.056 114.592-10.72 176.8l-392.576 677.12zM1073.184 27.552c-21.792-37.76-66.144-59.456-121.728-59.552h-778.848c-55.392 0.096-99.68 21.888-121.568 59.744-23.264 40.32-19.392 93.344 10.56 145.472l392.576 676.192c29.408 50.688 67.712 78.592 107.872 78.592s78.464-27.904 107.84-78.592l392.576-677.024c29.92-52.032 33.824-104.832 10.72-144.832zM562.048 320c8.832 0 16 7.168 16 16v320c0 8.832-7.168 16-16 16s-16-7.168-16-16v-320c0-8.832 7.168-16 16-16zM560 240c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM560 144c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32z" />
<glyph unicode="&#xe03e;" glyph-name="recycle" d="M388.736 874.688l-98.016-145.76c-4.928-7.328-2.976-17.28 4.352-22.208s17.28-2.976 22.208 4.352l98.592 146.656c26.24 45.344 60.416 70.272 96.128 70.272s69.888-24.928 96.096-70.208l176.448-307.2-125.44 25.088c-8.736 1.824-17.12-3.872-18.816-12.576-1.728-8.672 3.904-17.088 12.544-18.816l160-32c1.088-0.192 2.144-0.288 3.168-0.288 2.528 0 4.896 0.8 7.072 1.888 0.288 0.128 0.608 0.064 0.896 0.224 0.32 0.192 0.512 0.512 0.832 0.736 1.056 0.704 1.984 1.536 2.848 2.496 0.512 0.544 1.024 1.024 1.44 1.632 0.672 0.992 1.12 2.080 1.568 3.2 0.288 0.736 0.672 1.408 0.832 2.176 0.032 0.192 0.16 0.32 0.192 0.512l32 160c1.728 8.672-3.904 17.088-12.544 18.816-8.736 1.824-17.12-3.872-18.816-12.576l-23.648-118.24-172.832 300.928c-32.256 55.584-76.224 86.208-123.84 86.208s-91.584-30.624-123.264-85.312zM320 47.392c0 8.832-7.168 16-16 16h-143.968c-49.504 0.096-89.088 19.488-108.544 53.248-20.736 35.936-17.248 83.328 9.6 130.016l176.384 308.608 51.68-129.248c2.496-6.208 8.512-10.016 14.848-10.016 1.984 0 4 0.384 5.952 1.152 8.192 3.296 12.192 12.608 8.928 20.768l-64 160c-0.32 0.832-0.896 1.44-1.344 2.176-0.416 0.672-0.704 1.344-1.216 1.984-1.12 1.344-2.4 2.4-3.808 3.296-0.224 0.16-0.352 0.384-0.576 0.512-0.032 0.032-0.064 0-0.096 0.032-1.792 1.024-3.744 1.632-5.824 1.888-0.352 0.032-0.672-0.064-1.024-0.032-1.376 0.096-2.72 0.192-4.128-0.128l-160-32c-8.672-1.728-14.272-10.144-12.544-18.816s10.016-14.304 18.816-12.576l125.504 25.088-175.36-306.816c-32.672-56.8-36.128-115.84-9.536-161.952 25.344-43.872 74.976-69.12 136.224-69.248h144c8.864 0.064 16.032 7.232 16.032 16.064zM1000.448 100.928c26.336 45.632 22.784 104.256-8.992 159.36l-64.8 146.176c-3.584 8.064-13.024 11.776-21.12 8.128-8.064-3.584-11.712-13.024-8.128-21.12l65.568-147.648c26.688-46.464 30.272-93.44 9.792-128.896-19.36-33.568-59.008-52.832-108.768-52.928l-329.92-0.544 69.216 69.216c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-96-96c-3.2-3.2-4.704-7.424-4.64-11.616 0-0.096-0.064-0.192-0.064-0.32 0-5.184 2.656-9.6 6.528-12.512l94.176-94.176c3.136-3.104 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-68.16 68.16 328.864 0.544c61.44 0.128 111.168 25.248 136.416 68.928z" />
<glyph unicode="&#xe03f;" glyph-name="anchor" horiz-adv-x="1120" d="M25.984 355.328l70.016 70.048v-25.376c0-242.848 221.152-464 464-464s464 221.152 464 464v24.704l70.688-70.688c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-96.576 96.576c-2.944 4-7.424 6.784-12.768 6.784-1.44 0-2.688-0.448-4.032-0.8-2.944-0.608-5.792-1.728-7.968-3.872l-97.344-97.344c-6.24-6.24-6.24-16.384 0-22.624s16.384-6.24 22.624 0l70.72 70.688v-26.048c0-220.736-196.32-421.664-416-431.104v607.104h272c8.832 0 16 7.168 16 16s-7.168 16-16 16h-272v129.632c54.144 7.84 96 54.112 96 110.368 0 61.76-50.24 112-112 112s-112-50.24-112-112c0-56.256 41.856-102.528 96-110.368v-129.632h-272c-8.832 0-16-7.168-16-16s7.168-16 16-16h272v-607.104c-219.68 9.44-416 210.368-416 431.104v25.376l71.36-71.36c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-98.656 98.624c-2.912 2.944-6.944 4.736-11.36 4.736s-8.448-1.792-11.328-4.704l-97.312-97.312c-6.24-6.24-6.24-16.384 0-22.624s16.384-6.272 22.624-0.032zM560 928c44.096 0 80-35.872 80-80s-35.904-80-80-80-80 35.872-80 80 35.904 80 80 80z" />
<glyph unicode="&#xe040;" glyph-name="profile-male" horiz-adv-x="1152" d="M16-63.456c8.576-2.144 17.344 2.816 19.584 11.328 32.96 122.976 166.912 154.848 246.976 173.92 20.064 4.768 35.904 8.544 46.208 12.992 91.2 39.584 120.928 103.264 129.824 149.728 1.088 5.6-0.928 11.36-5.28 15.136-47.488 40.992-87.552 102.528-112.832 173.312-0.704 2.016-1.824 3.872-3.296 5.472-33.44 36.352-52.64 74.784-52.64 105.408 0 17.888 6.752 29.888 21.952 38.944 4.64 2.784 7.552 7.68 7.776 13.056 7.072 163.008 123.168 291.328 265.568 292.16 0.16 0 3.264-0.224 3.424-0.224 143.104-1.984 258.464-133.056 262.592-298.368 0.128-4.576 2.176-8.864 5.696-11.808 10.016-8.48 14.688-19.232 14.688-33.824 0-25.632-13.664-57.152-38.432-88.704-1.184-1.504-2.080-3.232-2.688-5.056-25.6-81.152-71.552-152.8-126.016-196.64-4.608-3.712-6.784-9.664-5.696-15.456 8.896-46.432 38.624-110.080 129.824-149.728 10.784-4.672 27.52-8.32 48.736-12.896 79.264-17.152 211.904-45.92 244.448-167.424 1.92-7.136 8.384-11.84 15.424-11.84 1.376 0 2.752 0.192 4.16 0.544 8.544 2.304 13.6 11.072 11.328 19.616-37.6 140.384-187.872 172.928-268.576 190.4-18.72 4.064-34.88 7.552-42.752 11.008-59.52 25.856-96.192 65.248-109.152 117.28 55.264 47.456 101.504 120.672 127.936 202.784 28.064 36.48 43.488 74.048 43.488 106.144 0 21.408-6.912 39.264-20.608 53.216-7.616 179.328-135.584 320.544-294.4 322.816l-4.768 0.064c-155.936-0.832-284.448-138.336-295.68-314.56-20.032-14.72-30.208-35.36-30.208-61.568 0-37.856 21.408-83.136 58.88-124.672 25.888-71.136 66.016-133.632 113.792-177.376-12.896-52.224-49.6-91.744-109.248-117.632-7.712-3.36-23.072-7.040-40.864-11.264-81.312-19.328-232.608-55.328-270.496-196.704-2.272-8.544 2.784-17.28 11.328-19.584z" />
<glyph unicode="&#xe041;" glyph-name="profile-female" horiz-adv-x="1152" d="M711.040 296.768c-5.024 0.768-10.144-1.216-13.6-4.96-3.488-3.712-4.992-8.896-4.032-13.92 8.832-46.4 38.56-110.080 129.824-149.728 10.816-4.672 27.52-8.32 48.704-12.896 79.296-17.152 211.904-45.888 244.48-167.424 1.92-7.136 8.384-11.84 15.456-11.84 1.376 0 2.752 0.192 4.16 0.544 8.544 2.304 13.6 11.072 11.328 19.616-37.664 140.384-187.904 172.928-268.64 190.4-18.688 4.064-34.848 7.552-42.752 11.008-54.848 23.808-90.272 59.136-105.632 105.152 152.384-11.328 221.376 49.376 224.416 52.128 3.776 3.424 5.728 8.512 5.152 13.6s-3.52 9.6-7.968 12.16c-87.936 50.24-87.936 223.84-87.936 289.216 0 182.816-123.136 327.744-280.992 330.016-0.448 0.032-3.872 0.096-4.512 0.096 0 0 0 0-0.032 0-160.16-0.896-290.464-145.984-290.464-323.456 0-65.376 0-239.008-87.936-289.216-4.64-2.656-7.616-7.424-8.032-12.736-0.384-5.312 1.92-10.496 6.112-13.792 4.416-3.424 102.016-78.112 222.112-55.424-16.064-44.096-51.008-78.016-104.256-101.152-7.712-3.36-23.072-7.040-40.864-11.264-81.28-19.328-232.608-55.328-270.496-196.704-2.272-8.576 2.784-17.312 11.328-19.616 8.672-2.144 17.312 2.816 19.616 11.328 32.928 123.008 166.944 154.848 246.976 173.92 20.064 4.768 35.904 8.544 46.208 12.992 91.264 39.648 120.96 103.328 129.824 149.728 1.056 5.536-0.864 11.232-5.088 14.944-4.192 3.744-9.984 5.024-15.424 3.328-86.624-27.264-166.656 10.24-201.632 31.040 83.552 69.952 83.552 230.944 83.552 302.624 0 159.904 116.032 290.656 259.84 291.52 0.16 0 3.264-0.192 3.392-0.192 141.824-2.016 248.768-130.112 248.768-297.984 0-71.712 0-233.056 83.904-303.008-28.896-16.512-94.784-43.232-204.864-30.048z" />
<glyph unicode="&#xe042;" glyph-name="bike" horiz-adv-x="1792" d="M1456 608c-61.568 0-119.136-16.928-168.832-45.952l-217.632 333.952h307.168c-0.416-15.936-4.128-42.592-22.368-63.552-18.784-21.536-49.152-32.448-90.336-32.448-8.832 0-16-7.168-16-16s7.168-16 16-16c50.848 0 89.344 14.592 114.432 43.392 37.216 42.752 29.76 100.352 29.408 102.784-1.088 7.904-7.84 13.824-15.84 13.824h-352c-5.888 0-11.296-3.232-14.048-8.384-2.816-5.152-2.56-11.424 0.672-16.384l90.592-139.008h-507.68l-98.656 163.776h177.12c8.832 0 16 7.168 16 16s-7.168 16-16 16h-288c-8.832 0-16-7.168-16-16s7.168-16 16-16h74.048c0.32-0.736 0.384-1.536 0.8-2.24l109.184-181.184-97.728-172.48c-45.28 22.752-96.224 35.904-150.304 35.904-185.28 0-336-150.72-336-336s150.72-336 336-336c178.816 0 325.024 140.512 333.44 320h354.56c0.928-18.528-3.072-43.776-20.608-63.648-18.944-21.472-49.696-32.352-91.392-32.352-8.832 0-16-7.168-16-16s7.168-16 16-16c51.456 0 90.368 14.624 115.648 43.456 36.544 41.728 29.664 97.152 29.376 99.488-1.056 7.968-7.84 13.92-15.872 13.92h-125.696l225.504 442.88 119.36-183.168c-84.8-61.024-140.32-160.32-140.32-272.576 0-185.28 150.72-336 336-336s336 150.72 336 336-150.72 336-336 336zM1107.36 736l-219.136-434.176-259.392 434.176h478.528zM602.976 713.12l258.080-428.256h-189.696c-4.352 114.4-65.984 214.144-157.184 271.488l88.8 156.768zM639.36 284.864h-279.008l138.048 243.68c81.536-51.808 136.608-141.184 140.96-243.68zM336-32c-167.616 0-304 136.384-304 304s136.384 304 304 304c48.32 0 93.888-11.648 134.528-31.776l-151.552-267.456c-2.816-4.928-2.784-11.008 0.096-15.936 2.848-4.896 8.128-7.936 13.824-4.8h306.144c-9.952-161.856-141.856-288.032-303.040-288.032zM1456-32c-167.616 0-304 136.384-304 304 0 101.024 49.728 190.464 125.824 245.76l167.904-257.632c3.072-4.672 8.192-7.264 13.408-7.264 3.008 0 6.016 0.832 8.736 2.592 7.36 4.8 9.472 14.752 4.672 22.144l-167.904 257.632c44.64 25.792 96.224 40.768 151.36 40.768 167.616 0 304-136.384 304-304s-136.384-304-304-304z" />
<glyph unicode="&#xe043;" glyph-name="wine" horiz-adv-x="736" d="M729.664 714.848c0 72.096-21.984 177.088-63.968 238.208-2.976 4.352-7.904 6.944-13.184 6.944h-575.36c-5.28 0-10.208-2.592-13.184-6.944-41.984-61.184-63.968-166.144-63.968-238.208 0-189.824 151.36-400.928 352-411.808v-271.040h-131.168c-36.512 2.4-64-25.088-64-61.6v-18.4c0-8.832 7.168-16 16-16h384c8.832 0 16 7.168 16 16v16c0 37.248-28.128 66.4-64 64h-124.832v271.040c200.64 10.88 345.664 221.984 345.664 411.808zM540.832-32h-352v2.4c0 18.848 13.152 32 32 32h288c18.272 0 32-14.784 32-34.4zM85.824 928h558.016c33.696-54.144 52.192-143.040 53.536-205.696-27.040 6.272-55.872 9.92-88.64 9.92-101.152 0-152.288-29.472-201.76-57.984-47.904-27.616-93.152-53.696-185.728-53.696s-137.76 26.144-185.632 53.76l-0.96 0.576c-1.6 13.408-2.656 26.784-2.656 39.968 0 62.816 18.816 156.864 53.824 213.152zM41.952 633.984c43.424-23.968 93.216-45.376 179.328-45.376 101.12 0 152.256 29.472 201.728 57.984 47.904 27.584 93.152 53.696 185.76 53.696 32.8 0 61.408-3.52 87.648-10.24-12.704-169.984-152.864-356-331.552-356-159.168-0.032-287.648 147.584-322.912 299.936z" />
<glyph unicode="&#xe044;" glyph-name="hotairballoon" horiz-adv-x="896" d="M896 659.168c0 202.432-146.528 300.832-448 300.832s-448-98.4-448-300.832c0-232.8 421.536-501.376 439.456-512.672 0.032-0.032 0.096 0 0.16-0.032 0.352-0.224 0.736-0.224 1.12-0.416 2.304-1.216 4.736-2.048 7.264-2.048s4.96 0.832 7.264 2.016c0.352 0.192 0.768 0.192 1.12 0.416 0.032 0.032 0.096 0 0.16 0.032 17.92 11.328 439.456 279.872 439.456 512.704zM576 659.168c0-177.92-92.032-387.872-128-463.136-35.968 75.232-128 285.088-128 463.136 0 240.96 73.056 268.832 128 268.832s128-27.872 128-268.832zM288 659.168c0-153.504 63.328-324.512 106.592-423.552-87.744 92.704-234.592 270.592-234.592 423.552 0 150.080 61.376 234.464 191.264 260.224-42.368-46.336-63.264-132.544-63.264-260.224zM608 659.168c0 127.68-20.864 213.888-63.264 260.224 129.888-25.76 191.264-110.176 191.264-260.224 0-152.96-146.848-330.816-234.592-423.552 43.264 99.008 106.592 270.048 106.592 423.552zM32 659.168c0 127.072 63.584 207.040 196.992 244.224-67.648-49.024-100.992-130.048-100.992-244.224 0-134.496 100.32-281.344 186.816-383.136-123.456 98.176-282.816 250.56-282.816 383.136zM581.184 276.032c86.496 101.792 186.816 248.608 186.816 383.136 0 114.176-33.344 195.232-100.992 244.224 133.408-37.184 196.992-117.152 196.992-244.224 0-132.576-159.36-284.96-282.816-383.136zM368 96c-8.832 0-16-7.168-16-16v-96c0-26.912 21.088-48 48-48h96c26.912 0 48 21.088 48 48v96c0 8.832-7.168 16-16 16h-160zM512-16c0-9.408-6.592-16-16-16h-96c-9.408 0-16 6.592-16 16v80h128v-80z" />
<glyph unicode="&#xe045;" glyph-name="globe" horiz-adv-x="800" d="M433.664 256c185.28 0 336 150.72 336 336s-150.72 336-336 336-336-150.72-336-336 150.72-336 336-336zM433.664 896c167.616 0 304-136.384 304-304s-136.384-304-304-304-304 136.384-304 304 136.352 304 304 304zM289.664 64c-36.512 0-64-27.488-64-64v-48c0-8.832 7.168-16 16-16h384c8.832 0 16 7.168 16 16v45.6c0 37.248-28.128 66.4-64 66.4h-288zM609.664-2.4v-29.6h-352v32c0 18.848 13.152 32 32 32h288c18.24 0 32-14.784 32-34.4zM417.76 160.704c0-0.192-0.096-0.32-0.096-0.512v-51.328c0-8.832 7.168-16 16-16s16 7.168 16 16v51.328c0 0.224-0.128 0.416-0.128 0.64 103.456 4.128 200.576 44.032 276.416 114.592l37.76-37.728c6.24-6.24 16.384-6.24 22.624 0s6.24 16.384 0 22.624l-48.832 48.832c-6.24 6.24-16.384 6.24-22.624 0-75.584-75.552-176.032-117.152-282.88-117.152s-207.296 41.6-282.848 117.152-117.152 176-117.152 282.848 41.6 207.296 117.152 282.848c6.24 6.24 6.24 16.384 0 22.624l-48.832 48.832c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l37.728-37.76c-74.592-80.096-115.424-183.904-115.424-293.92 0-115.36 44.928-223.872 126.528-305.472 78.208-78.208 181.216-122.272 291.232-125.824z" />
<glyph unicode="&#xe046;" glyph-name="genius" horiz-adv-x="960" d="M18.144 192c25.12-43.52 81.536-66.528 163.104-66.528 0 0 0 0 0.032 0 36.672 0 77.024 5.152 119.104 14.016 40.512-124.128 105.184-203.488 179.616-203.488s139.104 79.36 179.616 203.488c42.112-8.832 82.464-14.016 119.136-14.016 0 0 0 0 0 0 81.536 0 137.952 23.008 163.072 66.528 32.512 56.352 3.744 151.040-94.912 256 98.656 104.96 127.424 199.648 94.912 256-25.12 43.52-81.536 66.528-163.104 66.528-36.672 0-77.056-5.152-119.136-14.016-40.48 124.128-105.152 203.488-179.584 203.488s-139.104-79.36-179.616-203.488c-42.112 8.864-82.496 14.016-119.136 14.016-81.568 0-137.984-23.008-163.104-66.528-32.512-56.352-3.744-151.040 94.912-256-98.656-104.96-127.456-199.648-94.912-256zM480-32c-58.848 0-112.512 70.368-148.064 178.528 48.096 12.192 98.112 29.44 148.064 51.168 49.952-21.728 99.968-38.976 148.064-51.168-35.552-108.16-89.216-178.528-148.064-178.528zM288 448c0 37.248 1.984 73.504 5.376 108.576 28.576 19.904 58.784 39.296 90.624 57.696 31.488 18.176 63.712 34.464 96 49.056 32.288-14.56 64.512-30.848 96-49.056 31.84-18.368 62.016-37.76 90.624-57.696 3.392-35.072 5.376-71.328 5.376-108.576s-1.984-73.504-5.376-108.576c-28.576-19.904-58.784-39.296-90.624-57.696-31.488-18.176-63.712-34.464-96-49.056-32.288 14.56-64.512 30.848-96 49.056-31.84 18.368-62.016 37.76-90.624 57.696-3.392 35.072-5.376 71.328-5.376 108.576zM259.136 364.064c-36.672 27.552-69.888 55.84-98.752 83.936 28.864 28.096 62.080 56.384 98.752 83.936-1.888-27.328-3.136-55.2-3.136-83.936s1.248-56.608 3.136-83.936zM298.272 598.848c5.888 42.912 14.144 83.328 24.448 120.128 38.24-9.632 77.92-22.944 117.824-39.008-24.384-11.808-48.704-24.224-72.544-37.984-24.736-14.304-47.616-28.704-69.728-43.136zM519.424 679.968c39.904 16.064 79.584 29.376 117.824 39.008 10.304-36.8 18.56-77.216 24.448-120.128-22.080 14.432-44.992 28.832-69.728 43.136-23.808 13.76-48.128 26.176-72.544 37.984zM700.864 531.936c36.704-27.552 69.888-55.808 98.752-83.936-28.864-28.096-62.080-56.384-98.752-83.936 1.888 27.328 3.136 55.2 3.136 83.936s-1.248 56.608-3.136 83.936zM661.728 297.152c-5.888-42.912-14.144-83.328-24.448-120.128-38.24 9.632-77.92 22.944-117.824 39.008 24.416 11.776 48.736 24.224 72.576 37.984 24.704 14.304 47.584 28.704 69.696 43.136zM368 254.016c23.84-13.76 48.16-26.208 72.576-37.984-39.904-16.064-79.584-29.376-117.824-39.008-10.304 36.8-18.56 77.216-24.448 120.128 22.080-14.432 44.96-28.832 69.696-43.136zM914.144 208c-18.816-32.608-66.88-50.528-135.36-50.528-33.792 0-70.976 4.672-109.824 12.64 12.672 45.568 22.176 96.256 28.064 150.656 49.472 34.688 91.232 69.376 126.080 103.328 81.024-85.824 119.232-167.232 91.040-216.096zM778.752 738.528c68.48 0 116.576-17.952 135.36-50.528 28.224-48.864-10.016-130.272-91.040-216.096-34.848 33.92-76.608 68.64-126.080 103.328-5.888 54.4-15.392 105.088-28.064 150.656 38.848 7.968 76.064 12.64 109.824 12.64zM480 928c58.848 0 112.512-70.368 148.064-178.528-48.096-12.192-98.112-29.44-148.064-51.168-49.952 21.728-99.968 38.976-148.064 51.168 35.552 108.16 89.216 178.528 148.064 178.528zM45.856 688c18.816 32.608 66.88 50.528 135.36 50.528 33.792 0 70.976-4.672 109.824-12.64-12.672-45.568-22.176-96.256-28.064-150.656-49.472-34.688-91.232-69.376-126.080-103.328-81.024 85.824-119.232 167.232-91.040 216.096zM136.896 424.096c34.848-33.92 76.608-68.64 126.080-103.328 5.888-54.4 15.392-105.088 28.064-150.656-38.816-7.968-76-12.64-109.792-12.64 0 0-0.032 0-0.032 0-68.48 0-116.576 17.952-135.36 50.528-28.192 48.864 10.016 130.272 91.040 216.096zM480 368c44.096 0 80 35.872 80 80s-35.904 80-80 80-80-35.872-80-80 35.904-80 80-80zM480 496c26.464 0 48-21.536 48-48s-21.536-48-48-48-48 21.536-48 48 21.536 48 48 48z" />
<glyph unicode="&#xe047;" glyph-name="map-pin" horiz-adv-x="768" d="M384 960c-211.744 0-384-172.608-384-384.704 0-317.664 358.432-622.688 373.696-635.52 2.976-2.528 6.656-3.776 10.304-3.776 3.616 0 7.232 1.216 10.176 3.648 15.264 12.608 373.824 312.384 373.824 635.648 0 212.096-172.256 384.704-384 384.704zM384.064-26.816c-58.912 52.64-352.064 328.288-352.064 602.112 0 194.496 157.92 352.704 352 352.704s352-158.208 352-352.704c0-278.464-292.864-550.176-351.936-602.112zM384 768c-105.888 0-192-86.112-192-192s86.112-192 192-192 192 86.112 192 192-86.112 192-192 192zM384 416c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160-71.776-160-160-160z" />
<glyph unicode="&#xe048;" glyph-name="dial" d="M511.968 608c-87.328 0-159.072-71.040-159.968-158.368-0.896-88.224 70.144-160.704 158.368-161.632 0.032 0 1.6 0 1.664 0 87.328 0 159.072 71.040 159.968 158.368 0.896 88.224-70.144 160.736-160.032 161.632zM512.032 320v-16l-1.344 16c-70.56 0.704-127.392 58.72-126.688 129.312 0.704 69.856 58.112 126.688 129.312 126.688 70.56-0.704 127.392-58.72 126.688-129.312-0.704-69.856-58.112-126.688-127.968-126.688zM0 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM960 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480 928c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480-32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM128 800c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM832 96c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM832 800c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM128 96c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM768 445.568v242.432c0 8.832-7.168 16-16 16h-240.032c-139.712 0-254.528-113.664-255.968-253.408-0.672-68.384 25.28-132.928 73.152-181.792s111.872-76.128 180.256-76.8c0.032 0 2.592 0 2.656 0 0 0 0 0 0 0 139.68 0 254.496 113.664 255.936 253.568zM512.032 224v-16l-2.304 16c-59.84 0.608-115.84 24.48-157.728 67.232s-64.608 99.232-64 159.072c1.248 122.24 101.696 221.696 226.432 221.696v0h221.568v-226.272c-1.248-122.272-101.728-221.76-223.968-221.728z" />
<glyph unicode="&#xe049;" glyph-name="chat" horiz-adv-x="1344" d="M1140.864 511.264c-8.448 2.624-17.408-1.984-20.096-10.4-2.656-8.416 1.984-17.408 10.4-20.096 125.056-39.84 180.832-99.264 180.832-192.768 0-83.168-75.872-147.712-121.056-178.816-4.352-3.008-6.944-7.904-6.944-13.184v-122.336c-23.36 8.704-64.096 28.48-100.032 68.96-3.744 4.192-9.44 6.112-14.976 5.088-9.12-1.76-18.432-4.256-27.872-6.784-16.32-4.384-33.152-8.928-49.12-8.928-82.176 0-139.712 17.664-198.528 60.896-7.168 5.248-17.12 3.68-22.368-3.424-5.248-7.136-3.712-17.12 3.392-22.368 64.864-47.68 127.872-67.104 217.504-67.104 20.192 0 39.136 5.088 57.44 10.016 5.696 1.568 11.36 3.104 16.96 4.416 59.808-63.168 127.456-77.536 130.4-78.112 1.056-0.224 2.112-0.32 3.2-0.32 3.648 0 7.264 1.248 10.112 3.616 3.744 3.040 5.888 7.584 5.888 12.384v135.648c82.624 58.912 128 129.824 128 200.352 0 108.192-64.544 179.136-203.136 223.264zM1056 528c0 246.272-224.576 432-522.336 432-299.264 0-533.664-189.792-533.664-432.064 0-145.248 102.752-249.312 192-312.288v-212.352c0-5.44 2.752-10.464 7.296-13.44 2.656-1.696 5.664-2.56 8.704-2.56 2.208 0 4.448 0.48 6.56 1.408 4.672 2.080 113.888 51.712 207.328 153.888 40.48-7.52 86.272-14.752 127.808-14.752 302.816 0 506.304 160.832 506.304 400.16zM549.664 159.84c-41.92 0-89.568 8.032-130.656 15.872-5.536 0.992-11.232-0.896-14.976-5.088-65.6-73.984-142.688-120.992-180.032-141.248v194.624c0 5.28-2.592 10.176-6.944 13.184-84.416 58.080-185.056 155.616-185.056 290.752 0 224.352 220.352 400.064 501.664 400.064 279.552 0 490.336-171.968 490.336-400 0-220.224-190.624-368.16-474.336-368.16zM528 592c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM528 496c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32zM752 592c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM752 496c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32zM304 588.96c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM304 492.96c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32z" />
<glyph unicode="&#xe04a;" glyph-name="heart2" horiz-adv-x="1184" d="M864 960c-79.232 0-155.392-29.472-214.528-83.040-22.464-20.32-41.696-43.424-57.472-68.928-15.776 25.504-35.008 48.608-57.472 68.96-59.136 53.536-135.296 83.008-214.528 83.008-176.448 0-320-143.552-320-320 0-119.104 37.056-213.12 123.872-314.4 126.144-147.2 445.408-371.84 458.944-381.344 2.752-1.952 5.984-2.912 9.184-2.912s6.432 0.96 9.184 2.912c13.536 9.504 332.8 234.144 458.976 381.344 86.784 101.28 123.84 195.296 123.84 314.4 0 176.448-143.552 320-320 320zM1035.872 346.4c-111.84-130.432-389.76-330.912-443.872-369.44-54.112 38.528-332.032 239.008-443.84 369.44-81.44 95.008-116.16 182.816-116.16 293.6 0 158.816 129.216 288 288 288 71.264 0 139.84-26.528 193.024-74.72 26.816-24.32 48.576-52.992 64.64-85.248 5.44-10.88 23.232-10.88 28.672 0 16.064 32.256 37.824 60.928 64.64 85.216 53.184 48.224 121.76 74.752 193.024 74.752 158.784 0 288-129.184 288-288 0-110.784-34.72-198.592-116.128-293.6z" />
<glyph unicode="&#xe04b;" glyph-name="cloud2" horiz-adv-x="1344" d="M1086.656 544.384c-13.664 211.584-160.8 415.616-430.656 415.616-246.816 0-437.152-183.456-447.232-428.288-135.040-42.016-208.768-186.528-208.768-291.712 0-161.952 134.592-304 288-304h768c155.104 0 288 167.168 288 304 0 165.344-135.136 294.656-257.344 304.384zM1056-32h-768c-136.384 0-256 127.104-256 272 0 97.632 85.568 272 256 272h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48c-16.288 0-31.68-1.824-46.688-4.448 12.544 191.68 158.24 388.448 414.688 388.448 274.816 0 400-215.648 400-416v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48c0 0.096 0 0.192 0 0.288 96.608-10.592 224-114.272 224-272.288 0-122.432-118.112-272-256-272z" />
<glyph unicode="&#xe04c;" glyph-name="upload4" horiz-adv-x="1344" d="M1086.656 544.384c-13.664 211.584-160.8 415.616-430.656 415.616-246.816 0-437.152-183.456-447.232-428.288-135.040-42.016-208.768-186.528-208.768-291.712 0-161.952 134.592-304 288-304h208c8.832 0 16 7.168 16 16s-7.168 16-16 16h-208c-136.384 0-256 127.104-256 272 0 97.632 85.568 272 256 272h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48c-16.288 0-31.68-1.824-46.688-4.448 12.544 191.68 158.24 388.448 414.688 388.448 274.816 0 400-215.648 400-416v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48c0 0.096 0 0.192 0 0.288 96.608-10.592 224-114.272 224-272.288 0-122.432-118.112-272-256-272h-240c-103.616 0-144 40.384-144 144v438.944l130.496-130.24c3.136-3.136 7.232-4.704 11.328-4.704s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.416 0 22.624l-142.752 142.464c-19.008 18.944-33.76 18.944-52.736 0l-142.752-142.464c-6.24-6.208-6.24-16.384 0-22.624s16.384-6.24 22.624 0l130.464 130.272v-438.944c0-121.728 54.272-176 176-176h240c155.104 0 288 167.168 288 304 0 165.344-135.136 294.656-257.344 304.384z" />
<glyph unicode="&#xe04d;" glyph-name="download4" horiz-adv-x="1344" d="M1086.656 544.576c-13.76 211.52-160.864 415.424-430.656 415.424-32.928 0-65.408-3.2-96.576-9.504-8.672-1.76-14.24-10.176-12.512-18.88 1.76-8.672 10.048-14.24 18.88-12.512 29.056 5.92 59.424 8.896 90.208 8.896 274.816 0 400-215.648 400-416v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48c0 0.16-0.032 0.352-0.032 0.512 98.016-8.448 224.032-93.824 224.032-272.512 0-152.544-112.448-272-256-272h-768c-127.232 0-256 93.44-256 272 0 131.008 80.128 272 256 272h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48v64c0 119.264 73.568 193.344 192 193.344 107.648 0 192-84.928 192-193.344v-415.776l-133.12 123.52c-6.4 6.016-16.544 5.664-22.592-0.832-6.016-6.464-5.664-16.608 0.832-22.592l144.512-134.048c9.568-9.536 18.016-14.24 26.464-14.24 8.352 0 16.64 4.64 25.856 13.856l144.928 134.464c6.496 6.016 6.88 16.128 0.832 22.592-6.016 6.528-16.192 6.88-22.592 0.832l-133.12-123.552v415.776c0 126.368-98.4 225.344-224 225.344-136.064 0-224-88.448-224-225.344v-65.632c-168.16-16.256-256-160.096-256-302.368 0-147.36 100.928-304 288-304h768c161.504 0 288 133.536 288 304 0 201.728-145.824 296.896-257.344 304.576z" />
<glyph unicode="&#xe04e;" glyph-name="target2" horiz-adv-x="1344" d="M1336.928 541.12c-7.2 6.048-17.984 5.088-24.064-2.176l-75.744-90.88c-1.632 0.512-3.296 1.024-5.12-0.064h-44.512l56.64 69.056c6.048 7.264 5.056 18.016-2.176 24.064s-18.016 5.088-24.064-2.176l-74.88-90.944h-50.528l56.64 69.056c6.048 7.264 5.056 18.016-2.176 24.064-7.2 6.048-17.984 5.088-24.064-2.176l-74.88-90.944h-24.064c-0.608 282.912-229.984 512-511.936 512-282.304 0-512-229.696-512-512s229.696-512 512-512c271.136 0 493.12 212.032 510.336 480h25.696l74.88-90.944c3.36-4.064 8.256-6.144 13.12-6.144 3.872 0 7.744 1.28 10.944 3.968 7.264 6.016 8.256 16.8 2.176 24.064l-56.672 69.056h50.528l74.88-90.944c3.36-4.064 8.256-6.144 13.12-6.144 3.872 0 7.744 1.28 10.944 3.968 7.264 6.016 8.256 16.8 2.176 24.064l-56.64 69.056h44.512c1.824-1.088 3.488-0.576 5.152-0.064l75.744-90.88c3.36-4.064 8.256-6.144 13.12-6.144 3.872 0 7.744 1.28 10.944 3.968 7.264 6.016 8.256 16.8 2.176 24.064l-70.88 85.056 70.88 85.056c6.048 7.264 5.056 18.048-2.208 24.064zM512-32c-264.672 0-480 215.328-480 480s215.328 480 480 480c264.32 0 479.328-214.72 479.936-480h-96c-0.576 212.32-172.544 384-383.936 384-211.744 0-384-172.256-384-384s172.256-384 384-384c200.576 0 365.472 154.624 382.336 352h96c-17.12-250.336-224.832-448-478.336-448zM767.936 448c-0.576 141.728-115.136 256-255.936 256-141.152 0-256-114.848-256-256s114.848-256 256-256c129.92 0 237.312 97.376 253.6 224h96.704c-16.736-179.712-167.392-320-350.304-320-194.080 0-352 157.92-352 352s157.92 352 352 352c193.728 0 351.36-157.312 351.936-352h-96zM639.904 448c-0.608 71.168-57.664 128-127.904 128-70.592 0-128-57.408-128-128s57.408-128 128-128c59.072 0 108.416 40.416 123.104 96h98.176c-16.096-108.928-109.056-192-221.28-192-123.488 0-224 100.512-224 224s100.512 224 224 224c123.136 0 223.36-99.904 223.936-224h-96.032zM528 416h73.76c-13.536-37.696-48.512-64-89.76-64-52.928 0-96 43.072-96 96s43.072 96 96 96c52.576 0 95.296-42.496 95.904-96h-79.904c-9.44 1.088-17.088-6.56-17.088-16s7.648-17.088 17.088-16z" />
<glyph unicode="&#xe04f;" glyph-name="hazardous" d="M512-65.088c282.944 0 513.088 230.144 513.088 513.088s-230.144 513.088-513.088 513.088-513.088-230.144-513.088-513.088 230.144-513.088 513.088-513.088zM512 926.912c264.064 0 478.912-214.848 478.912-478.912s-214.848-478.912-478.912-478.912-478.912 214.848-478.912 478.912 214.848 478.912 478.912 478.912zM319.584 114.752c2.688-1.568 5.632-2.272 8.576-2.272 5.792 0 11.392 2.912 14.624 8.224l169.216 278.368 169.248-278.368c3.232-5.312 8.832-8.224 14.624-8.224 2.944 0 5.888 0.704 8.576 2.272 124.256 71.904 192.672 184.576 192.672 317.248 0 9.44-7.648 17.088-17.088 16h-339.104l169.952 310.176c4.48 8.16 1.632 18.4-6.432 23.072-117.248 67.808-267.648 67.808-384.832 0-8.096-4.64-10.944-14.912-6.464-23.072l169.92-310.176h-339.072c-9.44 1.088-17.088-6.56-17.088-16 0-132.672 68.416-245.344 192.672-317.248zM862.464 416c-5.408-108.576-61.888-200.576-160.832-262.976l-159.232 262.976h320.064zM672.64 759.648l-160.64-292.16-160.608 292.16c99.392 51.456 221.792 51.456 321.248 0zM481.6 416l-159.2-262.976c-98.976 62.368-155.456 154.368-160.864 262.976h320.064z" />
<glyph unicode="&#xe050;" glyph-name="piechart" d="M928 399.424c0 8.832-7.168 16-16 16h-432v432.576c0 8.832-7.168 16-16 16-255.84 0-464-207.84-464-463.328 0-264.896 199.776-464.672 464.672-464.672 246.816 0 463.328 216.576 463.328 463.424zM32 400.672c0 232.512 185.184 422.592 416 431.040v-432.288c0-8.832 7.168-16 16-15.424h431.68c-9.056-223.68-206.56-416-431.008-416-246.656 0-432.672 185.984-432.672 432.672zM560 480h447.968c8.832-0.576 16.032 7.168 16.032 16 0 255.84-208.16 464-464 464-8.832 0-16-7.168-16-16v-448.576c0-8.832 7.168-16 16-15.424zM576 927.712c226.016-8.288 408.288-191.040 415.808-416.288h-415.808v416.288z" />
<glyph unicode="&#xe051;" glyph-name="speedometer" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM528 766.304c9.76 0 17.696 7.904 17.696 17.696v64c0 9.792-7.936 17.696-17.696 17.696s-17.696-7.904-17.696-17.696v-64c0-9.792 7.936-17.696 17.696-17.696zM176 481.696h-64c-9.76 0-17.696-7.904-17.696-17.696s7.936-17.696 17.696-17.696h64c9.76 0 17.696 7.904 17.696 17.696s-7.936 17.696-17.696 17.696zM830.304 464c0-9.792 7.936-17.696 17.696-17.696h64c9.76 0 17.696 7.904 17.696 17.696s-7.936 17.696-17.696 17.696h-64c-9.76 0-17.696-7.904-17.696-17.696zM274.4 635.904c4.544 0 9.056 1.728 12.512 5.184 6.912 6.912 6.912 18.080 0 24.992l-50.4 50.432c-6.912 6.944-18.080 6.944-24.992 0-6.912-6.912-6.912-18.080 0-24.992l50.4-50.4c3.424-3.488 7.968-5.216 12.48-5.216zM764.512 284.512c-6.912 6.944-18.080 6.944-24.992 0-6.912-6.912-6.912-18.080 0-24.992l48-48c3.456-3.456 7.968-5.184 12.512-5.184s9.056 1.728 12.512 5.184c6.912 6.912 6.912 18.080 0 24.992l-48.032 48zM796.512 707.488c6.912 6.912 6.912 18.080 0 24.992-6.912 6.944-18.080 6.944-24.992 0l-50.4-50.4c-6.912-6.912-6.912-18.080 0-24.992 3.456-3.456 7.968-5.184 12.512-5.184s9.056 1.728 12.512 5.184l50.368 50.4zM275.488 268.512l-48-48c-6.912-6.912-6.912-18.080 0-24.992 3.456-3.456 7.968-5.184 12.512-5.184s9.056 1.728 12.512 5.184l48 48c6.912 6.912 6.912 18.080 0 24.992s-18.112 6.912-25.024 0zM624 192h-224c-28.448 1.088-49.12-19.552-49.12-48v-30.624c0-28.736 21.568-51.296 49.12-49.376h224c27.52-1.92 49.12 20.64 49.12 49.376v30.624c0 28.448-20.672 49.088-49.12 48zM638.88 113.376c0-8.224-4.672-17.088-14.88-18.176h-224c-10.24 1.088-14.88 9.984-14.88 0.8v30.624c0 26.848 5.408 32.288 14.88 33.376h224c9.472-1.088 14.88-6.528 14.88-16v-30.624zM512 362.656c22.784 0 44.224 8.864 60.32 24.992 29.152 29.152 32.768 74.24 10.88 107.36l84.896 84.896c6.656 6.688 6.656 17.504 0 24.192-6.688 6.688-17.504 6.688-24.192 0l-84.992-84.992c-32.8 20.96-79.136 17.376-107.232-10.752-33.28-33.28-33.28-87.392 0-120.672 16.096-16.16 37.536-25.024 60.32-25.024zM481.856 478.144c8.032 8.064 18.752 12.512 30.144 12.512s22.112-4.448 30.176-12.512c16.64-16.64 16.64-43.68 0-60.32-16.096-16.128-44.192-16.128-60.32 0-16.64 16.64-16.64 43.712 0 60.32z" />
<glyph unicode="&#xe052;" glyph-name="global" d="M1.088 426.624c11.328-272.352 235.808-490.624 510.912-490.624s499.584 218.272 510.912 490.624c0.608 1.696 1.088 3.456 1.088 5.376 0 1.152-0.416 2.144-0.64 3.2 0.096 4.288 0.64 8.48 0.64 12.8 0 282.304-229.696 512-512 512s-512-229.696-512-512c0-4.32 0.544-8.512 0.64-12.8-0.224-1.056-0.64-2.048-0.64-3.2 0-1.92 0.48-3.68 1.088-5.376zM797.472 232.256c-42.208 17.664-87.52 31.328-134.88 40.672 5.056 46.496 8.032 94.784 8.96 143.040h159.36c-2.912-65.728-14.592-127.776-33.44-183.712zM862.88 416h127.488c-5.952-89.792-36.416-172.896-85.216-242.528-24.288 17.056-50.464 32.608-78.624 46.080 20.64 59.808 33.344 126.176 36.352 196.448zM396.448 246.848c37.696 5.888 76.384 9.152 115.552 9.152s77.856-3.264 115.52-9.152c-22.208-170.72-70.72-278.848-115.52-278.848s-93.312 108.128-115.552 278.848zM445.056-21.248c-88.032 28.224-162.496 111.072-207.424 223.488 39.872 16.8 82.752 29.92 127.68 38.944 14.688-111.872 41.536-209.344 79.744-262.432zM392.768 617.312c38.944-6.016 78.88-9.312 119.232-9.312s80.288 3.296 119.232 9.312c5.504-51.84 8.768-108.416 8.768-169.312h-256c0 60.896 3.264 117.472 8.768 169.312zM639.52 416c-0.896-48.8-3.776-94.752-8.32-137.312-38.912 6.016-78.816 9.312-119.2 9.312s-80.288-3.296-119.232-9.312c-5.536 52.032-7.584 97.824-8.32 137.312h255.072zM658.72 241.184c44.928-9.024 87.776-22.144 127.68-38.944-44.928-112.416-119.392-195.264-207.424-223.488 38.176 53.088 65.024 150.56 79.744 262.432zM672 448c0 58.752-3.264 118.272-9.408 175.040 47.36 9.344 92.672 23.040 134.88 40.672 21.888-64.928 34.528-138.080 34.528-215.712h-160zM658.72 654.816c-14.72 111.872-41.536 209.376-79.776 262.432 88.032-28.224 162.496-111.072 207.424-223.488-39.872-16.8-82.72-29.952-127.648-38.944zM627.552 649.152c-37.696-5.888-76.384-9.152-115.552-9.152s-77.856 3.264-115.552 9.152c22.24 170.72 70.752 278.848 115.552 278.848s93.312-108.128 115.552-278.848zM365.28 654.816c-44.928 9.024-87.776 22.144-127.68 38.944 44.928 112.416 119.392 195.264 207.424 223.488-38.176-53.088-65.024-150.56-79.744-262.432zM361.408 623.040c-6.144-56.768-9.408-116.288-9.408-175.040h-160c0 77.632 12.64 150.784 34.528 215.744 42.208-17.664 87.52-31.328 134.88-40.704zM352.448 416c0.928-48.256 3.904-96.544 8.96-143.072-47.36-9.344-92.672-23.040-134.88-40.672-18.848 55.936-30.528 117.984-33.44 183.744h159.36zM197.44 219.552c-28.16-13.504-54.304-29.024-78.592-46.080-48.8 69.632-79.264 152.704-85.216 242.528h127.488c3.008-70.272 15.712-136.64 36.32-196.448zM138.016 147.84c21.92 15.328 45.344 29.504 70.624 41.76 32.128-79.52 78.368-145.536 133.952-190.176-80.832 30.656-151.328 82.176-204.576 148.416zM681.408-0.544c55.616 44.608 101.824 110.656 133.952 190.176 25.28-12.288 48.704-26.432 70.624-41.76-53.248-66.272-123.744-117.792-204.576-148.416zM864 448c0 82.144-13.696 159.584-37.44 228.448 28.16 13.504 54.336 29.024 78.624 46.080 54.528-77.888 86.816-172.448 86.816-274.528h-128zM886.016 748.16c-21.92-15.328-45.344-29.472-70.624-41.76-32.128 79.52-78.368 145.568-133.952 190.176 80.8-30.656 151.296-82.176 204.576-148.416zM342.592 896.544c-55.616-44.608-101.824-110.656-133.952-190.176-25.312 12.288-48.704 26.464-70.624 41.792 53.248 66.24 123.744 117.76 204.576 148.384zM118.848 722.528c24.256-17.056 50.432-32.576 78.592-46.080-23.744-68.864-37.44-146.304-37.44-228.448h-128c0 102.080 32.288 196.64 86.848 274.528z" />
<glyph unicode="&#xe053;" glyph-name="compass3" d="M0 448c0-282.304 229.696-512 512-512s512 229.696 512 512-229.696 512-512 512-512-229.696-512-512zM512 928c264.672 0 480-215.328 480-480s-215.328-480-480-480-480 215.328-480 480 215.328 480 480 480zM512 32c229.376 0 416 186.624 416 416s-186.624 416-416 416-416-186.624-416-416 186.624-416 416-416zM480 830.368v-48.832c0-8.832 7.168-16 16-16s16 7.168 16 16v50.464c200.928 0 366.016-155.2 382.368-352h-48.864c-8.832 0-16-7.168-16-16s7.168-16 16-16h50.496c0-211.744-172.256-384-384-384v50.464c0 8.832-7.168 16-16 16s-16-7.168-16-16v-48.832c-196.768 16.352-352 181.408-352 382.368h50.496c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48.864c15.456 186.208 164.16 334.912 350.368 350.368zM300.352 222.688c3.264 0 6.528 0.992 9.344 3.008l179.648 129.152c7.296-1.792 14.816-2.976 22.656-2.976 52.928 0 96 43.072 96 96 0 7.584-1.12 14.88-2.784 21.984l131.392 182.784c4.576 6.368 3.872 15.136-1.664 20.672-5.504 5.536-14.272 6.176-20.672 1.696l-184.896-132.896c-5.664 1.056-11.456 1.76-17.408 1.76-52.928 0-96-43.072-96-96 0-6.24 0.704-12.352 1.856-18.272l-130.464-181.568c-4.576-6.368-3.872-15.136 1.664-20.672 3.104-3.072 7.2-4.672 11.328-4.672zM448 447.84c0 35.296 28.704 64 64 64s64-28.704 64-64-28.704-64-64-64-64 28.736-64 64zM653.568 591.904l-63.584-88.48c-6.912 9.632-15.424 18.016-25.344 24.544l88.928 63.936zM432.16 394.656c6.368-9.536 14.528-17.696 23.776-24.416l-85.504-61.472 61.728 85.888z" />
<glyph unicode="&#xe054;" glyph-name="lifesaver" d="M183.616 870.528l-94.176-94.144c-6.24-6.272-6.24-16.384 0-22.624 3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672l94.176 94.144c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.656 0zM911.872 142.304l-94.176-94.144c-6.24-6.24-6.24-16.384 0-22.624 3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672l94.176 94.144c6.24 6.24 6.24 16.384 0 22.624s-16.416 6.272-22.656 0zM852.864 864.256c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l87.904-87.872c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-87.936 87.872zM95.744 129.76c-6.24-6.24-6.24-16.384 0-22.624l87.904-87.872c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-87.904 87.872c-6.304 6.24-16.416 6.24-22.656 0zM145.024 644.48c-6.528-12.16-12.192-24.672-17.408-37.248-41.888-101.248-41.92-217.312-0.032-318.464 6.464-15.584 13.664-30.496 21.376-44.256 18.656-33.312 41.792-63.872 68.736-90.816 30.848-30.88 66.208-56.608 105.088-76.448 9.856-5.024 19.872-9.472 30.016-13.664 50.624-20.96 104.192-31.584 159.2-31.584s108.576 10.624 159.232 31.584c0.032 0 0.032 0.032 0.064 0.064 12.576 5.184 25.024 10.88 37.152 17.376 36 19.264 68.928 43.712 97.856 72.672 28.928 28.896 53.376 61.824 72.672 97.888 6.496 12.16 12.224 24.608 17.44 37.248 0 0 0 0.032 0 0.032 41.824 101.216 41.824 217.248-0.032 318.368-4.192 10.112-8.672 20.192-13.664 30.016-19.808 38.848-45.536 74.176-76.448 105.088-26.912 26.912-57.44 50.016-90.784 68.704-13.728 7.712-28.64 14.944-44.288 21.408-101.216 41.888-217.056 41.888-318.432-0.032 0 0-0.032 0-0.032 0-12.64-5.248-25.088-10.912-37.248-17.44-35.968-19.264-68.864-43.712-97.792-72.672-28.928-28.896-53.408-61.792-72.672-97.824zM451.2 594.752c0 0 0 0 0 0 13.824 5.696 28.064 9.44 42.304 11.104 14.912 1.76 30.048 1.376 44.864-1.12 11.776-1.952 23.36-5.28 34.464-9.824 0 0 0 0 0.032 0 19.328-8 36.672-19.584 51.552-34.464 14.752-14.752 26.304-32.096 34.336-51.584 0 0 0 0 0-0.032 0 0 0 0 0 0 6.752-16.352 10.72-33.344 11.84-50.56 0.608-9.504 0.352-19.168-0.736-28.672-1.664-14.272-5.376-28.512-11.104-42.304 0 0 0 0 0 0s0 0 0-0.032c-8.032-19.488-19.584-36.832-34.336-51.584-14.72-14.72-32.096-26.272-51.616-34.336 0 0 0 0 0 0-13.824-5.664-28.064-9.44-42.304-11.072-9.504-1.12-19.072-1.376-28.704-0.736-17.184 1.088-34.208 5.088-50.592 11.84-19.52 8.064-36.896 19.616-51.616 34.336-14.88 14.88-26.464 32.192-34.464 51.552-4.576 11.072-7.904 22.688-9.888 34.496-2.496 14.88-2.848 29.984-1.12 44.832 1.664 14.272 5.376 28.512 11.104 42.304 0 0 0 0 0 0s0 0 0 0.032c8.032 19.488 19.584 36.832 34.336 51.584 14.752 14.624 32.128 26.176 51.648 34.24zM872.672 580.064c30.912-84.736 30.912-179.328 0-264.128l-178.816 74.048c3.808 11.776 6.4 23.776 7.808 35.84 1.344 11.392 1.632 23.008 0.896 34.432-0.992 15.456-3.904 30.784-8.704 45.728l178.816 74.080zM323.712 416.352c1.504-8.928 3.648-17.76 6.368-26.368l-178.752-74.080c-30.912 84.736-30.88 179.328 0.032 264.128l178.784-74.048c-3.808-11.776-6.4-23.776-7.808-35.808-2.048-17.856-1.632-35.968 1.376-53.824zM240.32 176.32c-24.864 24.864-46.208 53.056-63.456 83.84-4.672 8.32-9.12 17.056-13.312 26.176l178.752 74.016c8.992-17.472 20.64-33.344 34.656-47.392 13.952-13.984 29.888-25.568 47.456-34.56l-74.112-178.912c-4.352 1.984-8.672 4.064-12.992 6.24-35.872 18.368-68.512 42.080-96.992 70.592zM379.936 87.328l74.080 178.848c14.944-4.8 30.272-7.712 45.696-8.704 11.456-0.672 22.976-0.48 34.496 0.896 12.032 1.408 24 4.032 35.776 7.808l74.080-178.848c-84.576-30.976-179.552-30.976-264.128 0zM783.68 176.32c-26.688-26.72-57.088-49.28-90.368-67.104-6.464-3.456-13.024-6.688-19.648-9.728l-74.112 178.912c17.6 8.992 33.504 20.576 47.456 34.56 13.984 13.952 25.568 29.888 34.56 47.456l178.88-74.080c-3.040-6.656-6.24-13.216-9.728-19.68-17.76-33.28-40.32-63.648-67.040-90.336zM783.68 719.68c28.544-28.544 52.256-61.152 70.56-97.024 2.208-4.288 4.256-8.608 6.272-12.992l-178.912-74.080c-9.024 17.568-20.576 33.504-34.56 47.456-14.048 14.048-29.952 25.696-47.424 34.688l74.080 178.752c9.152-4.224 17.92-8.672 26.208-13.344 30.752-17.248 58.944-38.592 83.776-63.456zM644.096 808.672l-74.080-178.784c-8.64 2.752-17.472 4.864-26.368 6.368-17.696 3.008-35.84 3.456-53.856 1.344-12.032-1.408-24-4.032-35.776-7.808l-74.080 178.848c84.64 31.008 179.584 31.008 264.16 0.032zM330.656 786.784c6.464 3.456 13.024 6.688 19.68 9.696l74.080-178.88c-17.6-8.992-33.504-20.608-47.456-34.56-13.984-13.952-25.568-29.888-34.56-47.456l-178.88 74.080c3.008 6.656 6.208 13.216 9.696 19.68 17.824 33.28 40.384 63.648 67.104 90.336 26.688 26.72 57.088 49.28 90.336 67.104zM749.376 30.688c-146.432-83.424-328.352-83.424-474.784 0-7.712 4.352-17.472 1.728-21.824-6.016-4.384-7.648-1.696-17.44 5.984-21.824 78.112-44.512 165.664-66.72 253.248-66.72s175.136 22.208 253.248 66.72c7.68 4.384 10.368 14.144 5.984 21.824-4.416 7.744-14.176 10.368-21.856 6.016zM66.88 701.216c-88.992-156.192-88.992-350.24 0-506.432 2.944-5.184 8.352-8.096 13.92-8.096 2.688 0 5.408 0.672 7.904 2.080 7.68 4.384 10.368 14.144 5.984 21.824-83.424 146.432-83.424 328.384 0 474.816 4.384 7.648 1.696 17.44-5.984 21.824-7.712 4.32-17.472 1.664-21.824-6.016zM957.12 194.784c88.992 156.192 88.992 350.24 0 506.432-4.384 7.68-14.208 10.336-21.824 6.016-7.68-4.384-10.368-14.144-5.984-21.824 83.424-146.432 83.424-328.384 0-474.816-4.384-7.648-1.696-17.44 5.984-21.824 2.496-1.408 5.216-2.080 7.904-2.080 5.568 0 10.976 2.912 13.92 8.096zM274.624 865.312c146.432 83.424 328.352 83.424 474.784 0 2.496-1.408 5.216-2.080 7.904-2.080 5.568 0 10.976 2.912 13.92 8.096 4.384 7.648 1.696 17.44-5.984 21.824-156.224 88.992-350.24 88.992-506.464 0-7.68-4.384-10.368-14.144-5.984-21.824 4.352-7.712 14.112-10.304 21.824-6.016z" />
<glyph unicode="&#xe055;" glyph-name="clock3" d="M512-64c282.304 0 512 229.696 512 512s-229.696 512-512 512-512-229.696-512-512 229.696-512 512-512zM512 928c264.672 0 480-215.328 480-480s-215.328-480-480-480-480 215.328-480 480 215.328 480 480 480zM641.952 263.424c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-152.608 152.576v223.168c0 8.832-7.168 16-16 16s-16-7.168-16-16v-229.792c0-4.256 1.696-8.32 4.672-11.328l157.28-157.248zM96 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM864 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM224 704c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM736 192c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM768 704c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM224 192c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe056;" glyph-name="aperture" d="M512-64c282.304 0 512 229.696 512 512s-229.696 512-512 512-512-229.696-512-512 229.696-512 512-512zM246.72 847.68c-28.064-75.648-42.016-153.888-39.872-233.184 1.6-57.536 11.424-115.168 29.344-171.36 13.92-43.52 32.096-84.96 54.112-123.136 3.52-6.144 7.2-12.192 10.912-18.176 3.040-4.864 8.256-7.552 13.6-7.552 2.912 0 5.824 0.768 8.448 2.4 7.488 4.672 9.824 14.528 5.152 22.016-3.52 5.696-7.008 11.456-10.4 17.312-20.832 36.192-38.112 75.488-51.328 116.832-16.992 53.344-26.336 108.032-27.84 162.528-2.272 83.456 13.312 165.856 47.136 246.848 1.568 3.84 3.232 7.616 4.896 11.392 66.24 34.56 141.344 54.4 221.12 54.4 76.576 0 148.736-18.464 213.024-50.496-79.36-13.536-153.888-40.544-221.408-82.016-48.992-30.048-94.016-67.424-133.728-111.072-30.784-33.76-57.568-70.272-79.584-108.416-3.552-6.144-7.008-12.352-10.304-18.592-4.16-7.808-1.184-17.504 6.624-21.632 2.368-1.28 4.96-1.888 7.488-1.888 5.728 0 11.264 3.104 14.112 8.512 3.136 5.888 6.368 11.744 9.76 17.6 20.864 36.192 46.304 70.784 75.52 102.88 37.728 41.408 80.416 76.832 126.848 105.376 71.2 43.68 150.336 71.392 235.328 82.304 4.672 0.64 9.376 1.152 14.080 1.696 125.344-80.224 210.816-216.832 220.704-373.952-51.392 61.92-112.032 112.96-181.696 150.688-50.624 27.424-105.504 47.712-163.104 60.288-51.84 11.36-104.064 16.192-154.976 14.336-8.8-0.352-15.712-7.744-15.392-16.608 0.32-8.64 7.392-15.392 16-15.392 0.192 0 0.384 0 0.608 0 47.872 1.792 97.728-2.816 146.976-13.6 54.624-11.936 106.688-31.2 154.656-57.152 73.44-39.808 136.992-94.496 190.656-164.832 2.304-2.976 4.512-6.016 6.752-9.024-6.88-157.888-89.856-296.256-213.664-378.688 28.064 75.648 42.016 153.888 39.872 233.184-1.6 57.536-11.424 115.168-29.344 171.36-13.92 43.52-32.096 84.96-54.112 123.136-3.52 6.144-7.2 12.192-10.912 18.176-4.672 7.52-14.56 9.76-22.016 5.152-7.488-4.672-9.824-14.528-5.152-22.016 3.52-5.696 7.008-11.456 10.4-17.312 20.832-36.192 38.112-75.488 51.328-116.832 16.992-53.344 26.336-108.032 27.84-162.528 2.272-83.424-13.312-165.856-47.136-246.848-1.6-3.808-3.232-7.616-4.896-11.392-66.272-34.56-141.376-54.4-221.152-54.4-76.576 0-148.736 18.464-213.024 50.496 79.328 13.536 153.888 40.544 221.408 82.016 49.056 30.112 94.048 67.488 133.728 111.072 30.816 33.792 57.6 70.272 79.584 108.448 3.552 6.144 7.008 12.352 10.304 18.592 4.16 7.808 1.184 17.504-6.624 21.632-7.744 4.16-17.504 1.152-21.632-6.624-3.136-5.888-6.368-11.744-9.76-17.6-20.864-36.192-46.304-70.784-75.552-102.88-37.632-41.376-80.32-76.8-126.816-105.376-71.2-43.68-150.336-71.392-235.328-82.304-4.672-0.64-9.376-1.152-14.080-1.696-125.344 80.224-210.816 216.832-220.704 373.952 51.392-61.92 112.032-112.96 181.696-150.688 50.624-27.424 105.504-47.712 163.104-60.288 44.64-9.824 89.6-14.752 133.696-14.752 7.136 0 14.176 0.128 21.28 0.384 8.8 0.352 15.712 7.744 15.392 16.608-0.32 8.8-6.56 16.16-16.608 15.392-47.808-1.824-97.728 2.816-146.976 13.6-54.624 11.936-106.688 31.2-154.656 57.152-73.44 39.808-136.992 94.496-190.656 164.832-2.304 2.976-4.512 6.016-6.752 9.024 6.912 157.888 89.92 296.256 213.696 378.688z" />
<glyph unicode="&#xe057;" glyph-name="quote" d="M512-64c282.304 0 512 229.696 512 512s-229.696 512-512 512-512-229.696-512-512 229.696-512 512-512zM512 928c264.672 0 480-215.328 480-480s-215.328-480-480-480-480 215.328-480 480 215.328 480 480 480zM343.488 523.328c16.224-5.28 33.088-2.848 48.992 7.104 7.456 4.672 9.76 14.56 5.056 22.048-4.672 7.456-14.528 9.76-22.048 5.056-7.712-4.8-15.136-6.016-22.016-3.808-7.328 2.4-14.24 8.576-20.032 17.856-5.184 8.256-6.848 18.048-4.672 27.552 2.208 9.536 7.968 17.6 16.256 22.784 19.776 12.48 45.504 5.344 62.176-7.168 28.192-21.088 40.8-57.76 40.8-118.752 0-90.048-40.96-202.016-119.264-241.728-7.872-4-11.040-13.632-7.040-21.536 2.88-5.536 8.48-8.736 14.304-8.736 2.432 0 4.896 0.576 7.264 1.728 93.92 47.648 136.736 173.536 136.736 270.272 0 71.104-17.024 116.96-53.6 144.384-30.464 22.944-70.016 26.368-98.336 8.672-15.52-9.696-26.336-24.864-30.432-42.72-4.128-17.856-1.024-36.224 8.672-51.712 9.824-15.68 22.656-26.496 37.184-31.296zM599.488 523.328c16.192-5.28 33.088-2.848 48.992 7.104 7.456 4.672 9.76 14.56 5.056 22.048-4.672 7.456-14.528 9.76-22.048 5.056-7.68-4.8-15.136-6.016-22.016-3.808-7.328 2.4-14.24 8.576-20.032 17.856-5.184 8.256-6.848 18.048-4.672 27.552 2.208 9.536 7.968 17.6 16.256 22.784 19.808 12.48 45.536 5.344 62.176-7.168 28.192-21.088 40.8-57.76 40.8-118.752 0-90.048-40.96-202.016-119.264-241.728-7.872-4-11.040-13.632-7.040-21.536 2.88-5.536 8.48-8.736 14.304-8.736 2.432 0 4.896 0.576 7.264 1.728 93.92 47.648 136.736 173.536 136.736 270.272 0 71.104-17.024 116.96-53.6 144.384-30.464 22.944-70.016 26.368-98.336 8.672-15.52-9.696-26.336-24.864-30.432-42.72-4.128-17.856-1.024-36.224 8.672-51.712 9.824-15.68 22.656-26.496 37.184-31.296z" />
<glyph unicode="&#xe058;" glyph-name="scope" d="M544 752c0 8.832-7.168 16-16 16s-16-7.168-16-16v-272h-304c-8.832 0-16-7.168-16-16s7.168-16 16-16h304v-303.008c0-8.832 7.168-16 16-16s16 7.168 16 16v303.008h303.008c8.832 0 16 7.168 16 16s-7.168 16-16 16h-303.008v272zM1009.984 480h-83.616c-15.616 203.84-178.528 366.752-382.368 382.368v81.632c0 8.832-7.168 16-16 16s-16-7.168-16-16v-80c-218.56 0-397.92-169.568-414.368-384h-79.648c-8.832 0-16-7.168-16-16s7.168-16 16-16h78.016c0-229.376 186.624-416 416-416v-80c0-8.832 7.168-16 16-16s16 7.168 16 16v81.632c214.432 16.448 384 195.808 384 414.368h81.984c8.832 0 16 7.168 16 16s-7.136 16-16 16zM512 64c-211.744 0-384 172.256-384 384s172.256 384 384 384 384-172.256 384-384-172.256-384-384-384z" />
<glyph unicode="&#xe059;" glyph-name="alarmclock" horiz-adv-x="960" d="M480 896c-247.040 0-448-200.96-448-448s200.96-448 448-448 448 200.96 448 448-200.96 448-448 448zM480 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM240 960c-132.352 0-240-107.648-240-240v-33.984c0-8.832 7.168-16 16-16s16 7.136 16 16v33.984c0 114.688 93.312 208 208 208h28c8.832 0 16 7.168 16 16s-7.168 16-16 16h-28zM716 960h-28c-8.832 0-16-7.168-16-16s7.168-16 16-16h28c114.688 0 208-93.312 208-208v-33.984c0-8.832 7.168-16 16-16s16 7.168 16 16v33.984c0 132.352-107.648 240-240 240zM480 438.624v223.168c0 8.832-7.168 16-16 16s-16-7.168-16-16v-229.792c0-4.256 1.696-8.32 4.672-11.328l157.248-157.248c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-152.576 152.576zM60.8-57.6l96 128c5.28 7.072 3.84 17.088-3.232 22.4-7.040 5.248-17.056 3.84-22.4-3.232l-96-128c-5.28-7.072-3.84-17.088 3.232-22.4 2.88-2.144 6.272-3.168 9.6-3.168 4.832 0 9.664 2.208 12.8 6.4zM828.8 89.6c-5.344 7.104-15.328 8.48-22.4 3.232-7.072-5.312-8.512-15.328-3.232-22.4l96-128c3.168-4.192 7.968-6.4 12.8-6.4 3.328 0 6.72 1.024 9.6 3.2 7.072 5.312 8.512 15.328 3.232 22.4l-96 127.968z" />
<glyph unicode="&#xe05a;" glyph-name="refresh" d="M852.192 832h155.808c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16v-192c0-8.832 7.168-16 16-16s16 7.168 16 16v150.944l19.552-19.552c90.656-90.656 140.608-211.2 140.608-339.392s-49.952-248.736-140.608-339.392c-134.56-134.592-336.128-177.024-513.632-108-8.224 3.264-17.504-0.864-20.704-9.088-3.2-8.256 0.864-17.536 9.12-20.704 60.288-23.424 123.136-34.816 185.504-34.816 133.44 0 264.512 52.16 362.336 150.016 96.704 96.672 149.984 225.28 149.984 362.016s-53.28 265.312-149.984 361.984l-21.984 21.984zM208 256c-8.832 0-16-7.168-16-16v-154.88l-22.816 22.816c-90.656 90.656-140.608 211.2-140.608 339.392s49.952 248.768 140.608 339.424c132.32 132.352 331.232 175.84 506.752 110.592 8.192-3.072 17.472 1.12 20.576 9.44 3.072 8.288-1.152 17.504-9.44 20.576-187.168 69.504-399.36 23.2-540.512-117.984-96.704-96.672-149.984-225.28-149.984-362.016s53.28-265.344 149.984-362.016l21.312-21.344h-151.872c-8.832 0-16-7.168-16-16s7.168-16 16-16h187.392c1.28-0.32 12.032 0.8 15.168 3.936 0.128 0.128 0.16 0.288 0.288 0.416 3.136 2.944 5.152 7.008 5.152 11.648v192c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe05b;" glyph-name="happy3" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM336 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM336 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32zM688 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM688 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32zM730.336 253.6c-54.272-58.784-131.104-92.512-210.816-92.512-80.96 0-158.592 34.592-212.992 94.944-6.336 6.976-17.184 7.584-24.16 1.216-7.008-6.304-7.584-17.12-1.248-24.16 60.896-67.488 147.776-106.176 238.4-106.176 89.216 0 175.232 37.728 235.936 103.488 6.4 6.944 5.984 17.76-0.96 24.16s-17.76 6.016-24.16-0.96z" />
<glyph unicode="&#xe05c;" glyph-name="sad3" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM517.216 325.664c-89.248 0-175.264-37.728-235.968-103.52-6.4-6.944-5.984-17.76 0.992-24.16 6.912-6.4 17.728-6.016 24.16 0.96 54.24 58.816 131.072 92.544 210.784 92.544 80.928 0 158.592-34.592 212.992-94.944 3.36-3.712 8.032-5.632 12.704-5.632 4.096 0 8.192 1.44 11.456 4.416 7.008 6.304 7.584 17.12 1.248 24.16-60.896 67.488-147.776 106.176-238.368 106.176zM336 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM336 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32zM688 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM688 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32z" />
<glyph unicode="&#xe05d;" glyph-name="facebook3" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM624 736h-85.376c-108.736 1.088-122.624-66.208-122.624-139.040v-52.96h-48c-9.44 1.088-17.12-6.56-16-16v-96c-1.12-9.44 6.56-17.088 16-16h48v-240c-0.992-9.44 6.656-17.088 16.096-16h97.76c9.44-1.088 17.088 6.56 14.080 16l0.064 240h80c9.44-1.088 17.12 6.56 16 16v96c1.12 9.44-6.56 17.088-16 16h-80.096l0.096 48c3.104 20.448 3.104 17.12 22.080 16h57.248c4.448 0.992 9.184 0.448 12.512 3.68s5.248 7.648 4.128 12.32v96c1.152 9.44-6.528 17.088-15.968 16zM606.88 641.792l-40.128 1.536c-49.696 0-53.856-26.976-53.856-54.592l-0.128-60.672c0-4.544 1.792-8.896 4.992-12.128 3.2-3.2 7.552-4.992 12.096-4.992h78.144v-61.824h-78.080c-9.44 0-17.088-7.648-17.12-17.088l-0.032-240.032h-64.768v240c0 9.44-6.432 17.088-15.904 17.088h-48.096v61.824h48.096c4.544 0 8.896 1.792 12.096 4.992 3.2 3.232 3.776 7.584 3.776 12.128v68.96c0 71.744 14.496 105.92 90.624 105.92h68.256v-61.12z" />
<glyph unicode="&#xe05e;" glyph-name="twitter2" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM793.408 606.528c3.52 6.528 6.464 13.408 8.736 20.576 2.144 6.784-0.064 14.144-5.632 18.592-5.536 4.416-13.28 4.928-19.36 1.344-16.416-9.76-34.080-16.96-52.672-21.536-22.336 20.192-51.68 31.584-81.984 31.584-67.36 0-122.144-54.784-122.144-122.080 0-1.696 0.032-3.36 0.096-5.056-71.52 8.928-137.536 45.28-183.52 101.696-3.52 4.352-8.96 6.624-14.592 6.24-5.6-0.448-10.624-3.584-13.44-8.48-10.816-18.56-16.544-39.776-16.544-61.408 0-20.48 5.088-40.192 14.432-57.664-2.368-0.384-4.704-1.248-6.848-2.496-5.216-3.104-8.448-9.344-8.448-15.392 0-36.32 16.16-69.664 42.208-92.32-0.384-0.352-0.736-0.736-1.12-1.12-4-4.544-5.312-10.816-3.456-16.576 11.232-35.008 37.248-62.272 69.888-75.68-33.312-16.48-72-22.912-108.992-18.528-7.808 0.704-15.392-3.712-18.112-11.264-2.656-7.488 0.16-15.84 6.88-20.16 50.944-32.64 109.792-49.888 170.208-49.888 197.76 0 315.968 160.64 315.968 315.936 0 1.76 0 3.488-0.032 5.248 19.104 14.912 35.68 32.736 49.312 53.12 4.224 6.304 3.776 14.688-1.12 20.512-4.832 5.728-12.8 7.712-19.712 4.8zM737.568 550.368c-4.704-3.392-7.392-8.928-7.104-14.752 0.192-4.224 0.288-8.512 0.288-12.736 0-138.496-105.376-281.76-281.728-281.76-31.648 0-62.848 5.312-92.384 15.616 35.36 6.752 68.512 21.824 97.44 44.48 5.696 4.48 7.968 12.032 5.664 18.912-2.304 6.848-8.672 11.52-15.904 11.648-28.512 0.576-54.368 14.752-70.208 37.184 8.096 0.544 16.032 1.888 23.744 3.968 7.648 2.080 12.832 9.152 12.576 17.088-0.256 7.904-5.952 14.624-13.728 16.192-32.096 6.432-57.28 30.176-66.592 60.96 8.512-2.144 17.248-3.392 25.984-3.68 7.52 0.032 14.496 4.64 16.832 11.872s-0.416 15.2-6.784 19.424c-24.48 16.384-39.104 43.712-39.104 73.184 0 7.136 0.864 14.176 2.528 21.056 55.392-56.8 130.56-91.104 210.176-95.104 5.632-0.032 10.56 1.984 13.984 6.112s4.736 9.6 3.52 14.848c-1.504 6.496-2.272 13.248-2.272 20.064 0 48.48 39.456 87.904 87.936 87.904 24.224 0 47.616-10.112 64.16-27.776 4.032-4.32 9.984-6.208 15.808-5.088 5.28 1.056 10.496 2.272 15.648 3.68-2.304-1.728-4.704-3.328-7.232-4.832-6.912-4.128-9.984-12.576-7.392-20.192s10.368-12.608 18.208-11.424c1.952 0.224 3.872 0.48 5.824 0.736-3.168-2.624-6.496-5.152-9.888-7.584z" />
<glyph unicode="&#xe05f;" glyph-name="googleplus" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM577.088 654.016c0 9.44-7.648 17.088-17.088 17.088h-136.32c-0.832 0-1.504-0.352-2.304-0.48-1.824 0.064-3.52 0.48-5.376 0.48-71.2 0-129.088-49.376-129.088-110.080s57.92-110.080 129.088-110.080c9.824 0 19.296 1.12 28.512 2.912-2.4-9.312-3.712-20-2.112-31.936 1.504-11.168 5.952-21.856 11.776-32.256-11.872 2.080-24.096 3.488-36.832 3.488-88.064 0-159.712-52.96-159.712-118.080s71.648-118.080 159.712-118.080c88.096 0 159.744 52.96 159.744 118.080 0 33.472-19.136 63.584-49.504 85.088-1.216 3.072-3.040 5.92-5.984 7.904-27.136 18.368-42.336 37.888-45.216 57.984-3.2 22.368 9.984 38.72 10.656 39.552 1.44 1.696 2.432 3.616 3.104 5.6 33.152 19.936 54.976 52.704 54.976 89.856 0 29.472-13.824 56.128-36 75.904h50.88c9.44-0.064 17.088 7.616 17.088 17.056zM417.344 191.104c-69.216 0-125.536 37.664-125.536 83.904s56.32 83.904 125.536 83.904 125.568-37.664 125.568-83.904-56.352-83.904-125.568-83.904zM416 485.088c-52.32 0-94.912 34.048-94.912 75.904s42.592 75.904 94.912 75.904 94.912-34.048 94.912-75.904-42.592-75.904-94.912-75.904zM809.984 576h-74.912v76c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.648-13.984-13.088v-80h-78.016c-9.44 1.088-17.088-6.56-17.088-16s7.648-17.088 17.088-16h78.016v-76c0-9.44 4.576-17.088 14.016-17.088s17.088 7.648 17.088 17.088v76h74.912c9.44-1.088 17.088 6.56 17.088 16s-7.68 17.088-17.12 16z" />
<glyph unicode="&#xe060;" glyph-name="rss3" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM336.064 513.568c-9.44 0-17.088-7.648-17.088-17.088s7.648-17.088 17.088-17.088c72.096 0 132.48-22.304 174.528-64.512 42.080-42.176 64.32-102.656 64.32-174.88 0-9.44 7.648-17.088 17.088-17.088s17.088 7.648 17.088 17.088c0.032 81.472-25.664 150.272-74.24 199.040-48.672 48.736-117.376 74.528-198.784 74.528zM336.16 671.136c-9.44 0-17.088-7.648-17.088-17.088s7.648-17.088 17.088-17.088c228.48 0 400.736-170.656 400.736-396.928 0-9.44 7.648-17.088 17.088-17.088s17.088 7.648 17.088 17.088c0.032 245.76-186.944 431.104-434.912 431.104zM383.968 355.776c-35.872 0-65.056-29.216-65.056-65.12 0-35.872 29.184-65.056 65.056-65.056 35.904 0 65.12 29.184 65.12 65.088-0.032 35.904-29.248 65.088-65.12 65.088zM383.968 259.776c-17.024 0-30.88 13.856-30.88 30.88 0 17.056 13.856 30.944 30.88 30.944s30.912-13.92 30.944-30.944c0-17.024-13.888-30.88-30.944-30.88z" />
<glyph unicode="&#xe061;" glyph-name="tumblr3" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM655.936 576h-111.936v112.032c1.056 9.44-6.592 17.088-16.032 17.088h-82.528c-8.64 0-15.904-6.4-16.96-15.008-3.040-24.416-8.512-44.448-16.224-59.616-7.552-14.944-17.792-27.936-30.4-38.688-10.272-8.736-27.936-17.344-51.040-24.8-7.072-2.272-11.84-8.864-10.816-16.288v-86.688c-1.024-9.44 6.624-17.088 16.064-16.032l47.936-32v-149.376c-1.088 9.632 1.184 3.104 5.632-7.392l1.888-4.544c0.16-0.416 16.384-40.736 35.904-57.568 14.4-12.352 31.84-21.952 51.84-28.544 18.72-6.112 34.592-9.664 60.512-9.664 21.824 0 42.464 2.208 61.44 6.624 21.792 5.088 41.504 11.968 62.016 21.664 6.016 2.816 9.824 8.832 8.768 15.456v76.96c1.024 6.272-2.4 12.064-7.936 15.072s-12.256 2.688-17.536-0.768c-22.56-14.816-34.656-17.472-57.472-17.472-10.624 0-19.84 2.176-28.192 6.752-3.36 6.112-8.224 24.896-10.080 32.288-1.664 6.368-3.072 11.584-4.032 14.176-1.76 4.672-1.76 21.376-1.728 40.704l0.032 77.632h110.88c9.44-1.056 17.088 6.592 16.064 16.032v96c1.024 9.44-6.624 17.088-16.064 15.968zM638.848 480h-110.88c-9.44 1.12-17.088-6.528-15.968-15.968l-0.064-93.568c-1.152-27.296-1.152-42.304 2.784-52.8 0.736-1.952 1.696-5.888 2.944-10.688 8.128-31.648 13.248-45.888 23.776-52.064 14.016-8.384 30.016-12.64 47.616-12.64 18.336 0 33.056 1.6 49.792 8.608v-37.12c-14.88-6.368-29.568-11.168-45.44-14.88-16.416-3.808-34.432-5.76-53.664-5.76-21.568 0-33.728 2.688-49.856 7.968-15.68 5.184-29.248 12.608-40.224 22.016-8.704 7.488-20.928 30.528-26.4 44.256l-2.112 5.152c-3.040 7.2-4.064 9.632-5.152 26.112v165.408c1.088 9.44-6.56 17.088-16 17.088h-46.848v57.408c22.016 8.032 39.072 17.184 50.848 27.264 16.128 13.696 29.152 30.24 38.752 49.216 7.776 15.328 13.632 34.048 17.44 55.936h50.688v-110.912c0-9.44 7.648-17.088 17.088-16.032h110.88v-64z" />
<glyph unicode="&#xe062;" glyph-name="linkedin3" d="M624.48 577.536c-21.696 0-37.76-5.472-50.336-12.384-2.016 7.168-8.64 12.416-16.448 10.848h-95.488c-9.44 1.568-17.088-6.080-14.176-16v-352c-2.912-8.96 4.736-16.64 14.176-16h95.488c9.44-0.64 17.088 7.040 17.088 16.48l-0.032 212.736c-0.032 0.096-0.384 10.272 6.048 17.28 5.152 5.568 14.016 8.416 26.272 8.416 20.416 0 29.504-8.352 32.896-27.040v-211.392c-3.36-9.44 4.288-17.12 13.728-16.48h100.64c9.44-0.64 17.088 7.040 13.696 16.48v218.496c3.36 111.104-75.776 150.56-143.552 150.56zM737.216 224h-66.432v195.872c0 37.792-24.416 61.216-63.68 61.216-22.208 0-39.488-6.528-51.392-19.392-16.544-17.92-15.264-40.64-11.712-45.696v-192h-64.704v319.36h61.312v-10.752c0-6.496 3.68-12.48 9.536-15.328s12.8-2.144 17.984 1.792l4.48 3.456c12.96 10.208 26.368 20.8 51.904 20.8 26.432 0 112.736-8.416 112.736-116.384v-202.944zM352 737.088c-35.904 0-65.088-29.184-65.088-65.088s29.184-65.088 65.088-65.088 65.088 29.184 65.088 65.088-29.184 65.088-65.088 65.088zM352 641.088c-17.024 0-30.912 13.888-30.912 30.912s13.888 30.912 30.912 30.912 30.912-13.888 30.912-30.912-13.888-30.912-30.912-30.912zM397.696 577.568h-94.976c-9.44 0-17.088-7.648-14.72-17.568v-352c-2.368-8.96 5.28-16.64 14.72-16h94.976c9.44-0.64 17.088 7.040 17.088 16.48v352c0 9.44-7.648 17.088-17.088 17.088zM384 224h-64.192v319.36h64.192v-319.36zM512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912z" />
<glyph unicode="&#xe063;" glyph-name="dribbble2" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM699.232 623.84c-49.216 52.416-115.68 81.248-187.232 81.248-33.6 0-66.4-6.464-97.504-19.264-88.256-36.16-148.896-117.504-158.304-212.192-0.8-8.448-1.28-16.96-1.28-25.632 0-77.696 34.624-150.4 95.072-199.52 45.664-37.12 103.232-57.568 162.016-57.568 37.088 0 73.152 7.936 107.264 23.616 69.632 32.064 120.96 92.832 140.832 166.752 0 0 0 0.032 0 0.032 5.952 22.4 8.992 44.832 8.992 66.688 0 65.472-24.8 127.904-69.856 175.84zM730.752 406.24c-5.664 1.216-11.168 1.76-16.8 2.752-7.456 1.312-14.912 2.688-22.272 3.648-8.736 1.12-17.28 1.696-25.856 2.272-6.912 0.448-13.824 1.056-20.608 1.152-2.112 0.032-4.352 0.352-6.464 0.352-11.264 0-22.432-0.544-33.536-1.504-1.44-0.128-2.848-0.416-4.288-0.544-8.96-0.896-17.888-1.92-26.656-3.456-1.44 3.744-3.072 7.264-4.544 10.976-5.952 15.072-12.096 29.92-18.432 44.544-1.568 3.584-2.944 7.36-4.512 10.912 3.36 1.344 6.368 2.848 9.632 4.256 3.328 1.44 6.656 2.848 9.856 4.352 7.104 3.328 13.856 6.784 20.384 10.368 2.080 1.152 4.288 2.208 6.304 3.36 8.32 4.8 16.16 9.824 23.552 14.976 1.76 1.248 3.36 2.528 5.056 3.776 5.568 4.064 10.912 8.16 15.936 12.32 2.176 1.824 4.224 3.616 6.304 5.44 4.384 3.84 8.544 7.68 12.48 11.52 1.792 1.728 3.584 3.456 5.28 5.216 4.48 4.576 8.64 9.152 12.576 13.696 0.768 0.896 1.664 1.792 2.4 2.688 4.192 4.992 8.128 9.92 11.712 14.752 30.208-38.944 46.656-86.496 46.656-136.064 0-13.664-1.408-27.648-4.16-41.76zM512 670.912c57.472 0 111.168-21.504 152.704-60.864-0.448-0.672-0.832-1.28-1.312-1.92-1.216-1.696-2.56-3.424-3.84-5.12-2.336-3.104-4.8-6.24-7.424-9.44-1.568-1.888-3.2-3.808-4.864-5.696-2.752-3.136-5.664-6.304-8.704-9.472-1.824-1.92-3.68-3.84-5.632-5.76-3.424-3.36-7.136-6.72-10.912-10.048-1.888-1.664-3.648-3.328-5.632-4.992-5.888-4.928-12.096-9.792-18.816-14.496-0.416-0.288-0.928-0.576-1.376-0.896-6.304-4.384-13.024-8.64-20.096-12.736-2.592-1.504-5.44-2.912-8.16-4.384-5.184-2.816-10.496-5.568-16.064-8.16-3.424-1.6-7.040-3.136-10.624-4.64-2.88-1.216-5.984-2.336-8.96-3.52-0.8 1.696-1.632 3.168-2.432 4.864-6.688 13.92-13.376 27.424-20 40.096-0.512 0.992-1.024 1.888-1.536 2.88-6.336 12.096-12.544 23.456-18.688 34.368-1.408 2.496-2.784 4.992-4.192 7.424-6.176 10.816-12.16 21.024-17.92 30.56-1.312 2.176-2.528 4.128-3.808 6.208-5.184 8.448-10.176 16.384-14.88 23.68-0.48 0.736-1.056 1.696-1.536 2.432 20.96 6.368 42.656 9.632 64.704 9.632zM414.752 648.512c0.192-0.288 0.384-0.576 0.576-0.864 5.056-7.712 10.56-16.384 16.288-25.6 1.216-1.952 2.464-3.968 3.68-5.984 5.92-9.632 12.032-19.872 18.4-31.008 0.704-1.216 1.408-2.528 2.112-3.744 5.984-10.496 12.128-21.728 18.368-33.44 1.184-2.24 2.368-4.416 3.584-6.72 6.624-12.608 13.312-25.952 20.032-39.872 0.48-0.992 0.96-2.016 1.44-3.008-10.624-2.976-21.056-6.208-32.384-8.352-1.728-0.32-3.52-0.544-5.248-0.864-34.368-6.080-71.872-8.256-112-6.72-3.104 0.128-6.112 0.128-9.28 0.288-15.424 0.8-31.552 2.656-47.744 4.576 12.48 70.24 57.76 130.112 122.176 161.312zM289.088 448c0 1.536 0.032 3.104 0.064 4.64 4.544-0.544 8.768-0.576 13.28-1.024 12.544-1.28 24.864-2.272 36.992-2.912 7.2-0.384 14.336-0.672 21.376-0.8 4.32-0.096 8.928-0.512 13.184-0.512 0 0 0 0 0.032 0 9.184 0 18.016 0.544 26.912 0.96 3.744 0.16 7.584 0.16 11.264 0.384 16.544 1.088 32.608 2.912 48.16 5.408 4.032 0.64 7.84 1.536 11.776 2.272 11.936 2.24 23.52 4.896 34.752 8 2.336 0.64 4.896 0.96 7.168 1.664 1.632-3.616 3.2-7.296 4.8-10.976 5.984-13.696 11.808-27.616 17.408-41.728 1.344-3.392 2.688-6.816 4.032-10.24-3.456-0.992-6.656-2.24-10.048-3.328-4.416-1.376-8.8-2.784-13.056-4.32-7.008-2.496-13.728-5.248-20.384-8.096-3.616-1.568-7.328-3.008-10.848-4.672-7.968-3.744-15.616-7.776-23.040-11.968-1.792-0.992-3.712-1.92-5.472-2.944-9.12-5.312-17.76-10.944-26.016-16.736-2.304-1.6-4.384-3.296-6.624-4.928-5.824-4.288-11.552-8.576-16.928-12.992-2.72-2.24-5.248-4.48-7.872-6.72-4.576-3.936-8.992-7.872-13.248-11.84-2.56-2.432-5.056-4.8-7.488-7.232-3.872-3.84-7.584-7.616-11.136-11.424-2.272-2.432-4.576-4.832-6.72-7.232-0.8-0.896-1.728-1.824-2.528-2.688-44.512 42.080-69.792 100.224-69.792 161.984zM385.664 264.416c0.576 0.64 1.024 1.216 1.6 1.856 1.92 2.144 4.032 4.288 6.048 6.464 3.264 3.488 6.656 6.976 10.208 10.464 2.272 2.24 4.64 4.48 7.040 6.72 3.712 3.488 7.616 6.976 11.616 10.432 2.56 2.208 5.12 4.416 7.776 6.592 4.416 3.616 9.088 7.136 13.792 10.624 2.592 1.92 5.088 3.872 7.744 5.728 6.4 4.48 13.12 8.768 20.032 12.928 1.28 0.768 2.432 1.6 3.744 2.368 8.256 4.8 16.928 9.312 25.952 13.536 2.752 1.28 5.696 2.368 8.512 3.584 6.496 2.816 13.088 5.536 19.968 7.968 3.648 1.28 7.424 2.4 11.2 3.584 3.712 1.152 7.616 2.144 11.456 3.2 7.2-20.064 14.24-40.256 20.544-60.928 0.288-0.928 0.608-1.792 0.896-2.72 6.624-21.952 12.384-44.32 17.92-66.784-68.416-26.464-146.624-16.768-206.048 24.384zM623.552 255.264c-5.056 20.096-10.624 40.032-16.544 59.744-0.224 0.768-0.416 1.568-0.64 2.336-6.176 20.384-12.768 40.48-19.776 60.256 4.64 0.736 9.248 1.6 13.952 2.144 3.904 0.448 7.808 0.96 11.744 1.248 11.424 0.864 22.976 1.216 34.752 0.96 1.312-0.032 2.592 0.096 3.904 0.032 13.216-0.448 26.624-1.728 40.224-3.584 3.68-0.512 7.424-1.28 11.136-1.888 6.336-1.056 12.768-2.464 19.168-3.808-17.728-49.6-52.288-91.072-97.92-117.44z" />
<glyph unicode="&#xe900;" glyph-name="icons9" d="M509.856 624.352c-88.384 0-160.256-71.936-160.256-160.384 0-88.384 71.936-160.384 160.256-160.384 88.48 0 160.384 72 160.384 160.384 0 88.416-71.904 160.384-160.384 160.384zM509.856 332.928c-72.224 0-130.912 58.848-130.912 131.104s58.752 131.104 130.912 131.104 131.104-58.816 131.104-131.104-58.816-131.104-131.104-131.104zM900.16 575.648l-92.768 11.712 57.472 73.792c4.576 5.792 4.032 14.144-1.216 19.328l-137.248 137.408c-5.216 5.216-13.504 5.632-19.296 1.184l-73.856-57.472-11.584 92.768c-0.928 7.392-7.2 12.864-14.592 12.864h-194.24c-7.392 0-13.632-5.568-14.592-12.896l-11.584-92.768-73.792 57.44c-5.76 4.48-14.048 4.032-19.328-1.184l-137.408-137.312c-5.216-5.216-5.728-13.504-1.184-19.328l57.44-73.792-92.768-11.712c-7.36-0.928-12.864-7.136-12.864-14.464v-194.304c0-7.392 5.568-13.568 12.864-14.528l92.768-11.584-57.44-73.952c-4.576-5.792-4.032-14.144 1.184-19.296l137.408-137.28c5.28-5.28 13.504-5.728 19.328-1.12l73.792 57.376 11.584-92.864c0.928-7.2 7.2-12.768 14.528-12.768h194.24c7.392 0 13.632 5.568 14.592 12.832l11.584 92.864 73.856-57.376c5.824-4.576 14.144-4.128 19.296 1.12l137.28 137.408c5.216 5.216 5.728 13.504 1.216 19.392l-57.44 73.728 92.736 11.584c7.36 0.96 12.864 7.136 12.864 14.528v194.304c0 7.296-5.568 13.504-12.864 14.432zM883.712 379.776l-105.44-13.12c-5.216-0.608-9.664-4.032-11.712-8.96-1.984-4.896-1.28-10.4 1.92-14.624l65.216-83.936-119.104-119.136-84 65.28c-4.096 3.104-9.6 3.904-14.528 1.92-4.896-2.016-8.256-6.528-8.96-11.712l-13.184-105.536h-168.448l-13.184 105.536c-0.672 5.216-4.096 9.664-8.96 11.712-4.896 2.112-10.4 1.248-14.592-1.92l-83.904-65.28-119.136 119.040 65.376 84.032c3.2 4.16 3.936 9.76 1.984 14.624-2.048 4.896-6.496 8.288-11.712 8.96l-105.536 13.12v168.448l105.568 13.28c5.216 0.608 9.664 4.032 11.712 8.928 1.984 4.896 1.216 10.432-1.984 14.624l-65.376 83.872 119.136 119.072 83.904-65.216c4.16-3.2 9.792-4.032 14.592-1.984 4.896 2.016 8.256 6.528 8.96 11.744l13.184 105.536h168.448l13.184-105.536c0.672-5.216 4.096-9.664 8.96-11.744 4.896-1.984 10.432-1.184 14.528 1.984l84 65.408 119.104-119.136-65.216-83.872c-3.232-4.16-3.904-9.76-1.92-14.624s6.464-8.256 11.648-8.928l105.504-13.28v-168.448z" />
<glyph unicode="&#xe901;" glyph-name="icons20" d="M863.712 591.68c54.112 54.112 54.112 142.144 0 196.32-54.112 54.080-142.176 53.952-196.32 0-4.032-4.128-4.032-9.856-1.792-14.752-41.824 17.92-87.936 27.936-136.288 27.936-48.416 0-94.464-9.984-136.384-27.936 2.24 4.96 2.24 10.592-1.824 14.624-54.112 54.112-142.112 54.112-196.32 0-54.144-54.144-54.144-142.24 0-196.32 2.56-2.624 6.080-3.936 9.536-3.936 1.856 0 3.392 1.344 5.024 2.112-17.856-41.824-27.872-87.872-27.872-136.192 0-112.832 54.304-213.024 137.856-276.64-10.592-4.416-20.192-11.296-25.952-21.472-7.392-12.704-9.344-27.584-5.632-41.824 3.872-14.24 13.024-26.208 25.888-33.696 8.416-4.896 17.92-7.36 27.616-7.36 19.68 0 38.112 10.592 47.936 27.712 5.888 10.24 7.136 21.536 6.080 32.512 41.248-17.312 86.56-26.944 134.048-26.944 47.424 0 92.64 9.6 133.92 26.88-1.024-10.912 0.256-22.176 6.176-32.48 9.856-17.056 28.224-27.68 47.808-27.68 9.664 0 19.232 2.56 27.616 7.424 12.832 7.36 21.984 19.232 25.792 33.504 3.872 14.272 1.92 29.216-5.408 41.984-5.824 10.144-15.52 16.928-25.984 21.472 83.52 63.552 137.856 163.776 137.856 276.704 0 48.288-10.016 94.4-27.936 136.352 1.632-0.704 3.2-2.112 5.216-2.112 3.392 0 6.88 1.28 9.536 3.936zM213.824 768.896c43.616 43.52 114.688 43.52 158.176 0 1.76-1.728 4.096-2.048 6.336-2.656-70.56-34.144-127.712-91.328-161.92-161.888-0.576 2.24-0.864 4.576-2.56 6.336-43.552 43.52-43.552 114.528 0 158.176zM365.76 113.568c-7.392-12.96-25.472-18.016-38.528-10.304-6.592 3.84-11.296 9.952-13.28 17.248-1.984 7.2-0.928 14.848 2.848 21.376 5.024 8.736 14.4 14.144 24.512 14.144 4.96 0 9.856-1.344 14.176-3.872 13.504-7.68 18.080-25.12 10.304-38.592zM741.632 141.888c3.776-6.464 4.896-14.176 2.816-21.408-1.888-7.296-6.624-13.376-13.184-17.184-13.184-7.68-31.072-2.656-38.592 10.304-7.776 13.504-3.104 30.88 10.336 38.624 4.288 2.464 9.152 3.84 14.016 3.84 10.208 0 19.552-5.472 24.576-14.208zM849.952 453.536c0-176.896-143.872-320.8-320.64-320.8-176.864 0-320.8 143.936-320.8 320.8 0 176.8 143.936 320.64 320.8 320.64 176.8 0 320.64-143.872 320.64-320.64zM844.704 610.784c-1.792-1.728-2.048-4.128-2.624-6.336-34.24 70.432-91.392 127.616-161.92 161.76 2.24 0.576 4.576 0.928 6.336 2.656 43.616 43.552 114.624 43.552 158.208 0 43.488-43.616 43.488-114.624 0-158.176zM529.344 713.12c-144.448 0-261.92-117.44-261.92-261.856s117.472-261.888 261.92-261.888c144.384 0 261.76 117.472 261.76 261.888s-117.408 261.856-261.76 261.856zM529.344 216.32c-129.632 0-234.912 105.408-234.912 234.88s105.344 234.88 234.912 234.88c129.44 0 234.816-105.376 234.816-234.88s-105.408-234.88-234.816-234.88zM542.752 455.84v160.224c0 7.456-6.016 13.504-13.472 13.504-7.488 0-13.504-6.048-13.504-13.504v-165.824c0-3.552 1.44-7.008 4.032-9.536l78.112-78.24c2.56-2.56 6.048-3.904 9.536-3.904 3.424 0 6.88 1.344 9.568 3.904 5.216 5.28 5.216 13.92 0 19.168l-74.208 74.176z" />
<glyph unicode="&#xe902;" glyph-name="icons37" d="M990.72 639.744c-5.696 9.44-17.376 20.608-40.8 20.608h-651.648l-31.68 68.32c-1.856 4.672-4.416 9.312-8.192 14.336-2.208 2.912-4.64 5.696-8.672 9.312-2.56 2.272-5.312 4.288-8.192 6.080l-1.536 0.864c-2.912 1.664-5.952 3.168-9.088 4.288l-2.112 0.672c-3.104 0.96-6.112 1.856-9.344 2.4l-4.416 0.48c-1.984 0.288-3.936 0.448-5.952 0.448h-127.872c-34.304 0-62.080-27.904-62.080-62.080s27.904-62.208 62.080-62.208h87.968l35.552-76.832c8.736-25.408 20.896-47.36 20.96-47.36l87.808-197.12c0.768-1.568 1.568-3.104 2.848-4.992l16.384-34.848c6.336-20.576 22.656-36.192 42.688-41.856v-2.72l446.176 0.352-0.256 2.4c19.84 5.792 36 21.376 42.272 41.792l106.624 236.288c7.296 13.824 42.624 84.8 20.672 121.248zM938.368 534.304l-101.248-224.672-2.784 0.704-4.576-16.8c-3.168-11.872-13.952-20.192-27.328-20.192 0 0 0 0 0 0l-20.192 0.576v-0.928l-389.6 0.288c-12.32 0-23.072 8.288-26.272 20.224l-4.576 16.8-2.72-0.672-101.824 225.824c0 0-11.552 20.704-19.2 43.392l-46.144 100.032h-110.624c-14.72 0-26.752 12.032-26.752 26.752s12.032 26.752 26.752 26.752h129.024l3.232-0.32c1.344-0.256 2.656-0.608 4.896-1.344 1.344-0.48 2.624-1.184 4.576-2.24 1.248-0.8 2.4-1.728 4.128-3.104 1.184-1.056 2.208-2.24 3.456-3.872 1.44-1.984 2.496-3.872 3.648-6.592l41.504-89.728h674.272c8.288 0 9.92-2.496 10.432-3.552 7.616-12.544-5.024-54.848-22.048-87.168zM460.64 201.92c-47.968 0-86.976-39.008-86.976-86.976s39.008-86.976 86.976-86.976c47.936 0 86.944 39.008 86.944 86.976s-39.008 86.976-86.912 86.976zM460.64 59.456c-30.624 0-55.552 24.896-55.552 55.552s24.896 55.552 55.552 55.552c30.624 0 55.552-24.928 55.552-55.552s-24.96-55.552-55.552-55.552zM762.112 201.92c-47.968 0-86.976-39.008-86.976-86.976s39.040-86.976 86.976-86.976c47.936 0 86.912 39.008 86.912 86.976s-39.008 86.976-86.912 86.976zM762.112 59.456c-30.624 0-55.552 24.896-55.552 55.552s24.896 55.552 55.552 55.552c30.592 0 55.552-24.928 55.552-55.552s-24.928-55.552-55.552-55.552z" />
<glyph unicode="&#xe903;" glyph-name="icons39" d="M244.448 695.936c16.864 0 30.592 13.696 30.592 30.528s-13.696 30.464-30.592 30.464-30.592-13.696-30.592-30.464c0-16.864 13.728-30.528 30.592-30.528zM244.448 733.088c3.68 0 6.688-2.976 6.688-6.592 0-7.36-13.408-7.36-13.408 0 0 3.616 3.008 6.592 6.752 6.592zM807.904 818.4h-640.672c-6.528 0-11.904-5.376-11.904-11.904v-640.672c0-6.56 5.376-11.904 11.904-11.904h640.672c6.56 0 11.904 5.344 11.904 11.968v640.64c0 6.528-5.344 11.904-11.904 11.904zM795.936 794.528v-136.256h-616.768v136.256h616.768zM179.136 177.728v456.704h616.736v-456.704h-616.736zM486.464 694.976c17.408 0 31.552 14.112 31.552 31.52 0 17.312-14.144 31.424-31.552 31.424-17.312 0-31.424-14.048-31.424-31.424s14.048-31.52 31.424-31.52zM486.464 734.048c4.16 0 7.616-3.424 7.616-7.552 0-8.32-15.104-8.416-15.104 0 0 4.128 3.36 7.552 7.488 7.552zM252.736 574.752c-4.736 4.576-12.32 4.416-16.864-0.256-4.576-4.736-4.416-12.256 0.256-16.864l74.208-71.552-71.52-71.52c-4.64-4.64-4.64-12.224 0-16.864 2.4-2.304 5.408-3.456 8.448-3.456s6.080 1.12 8.384 3.456l88.672 88.704-91.648 88.448zM407.456 418.016h-80.032c-6.56 0-11.904-5.344-11.904-11.904 0-6.528 5.344-11.904 11.904-11.904h80.032c6.496 0 11.872 5.344 11.872 11.904s-5.376 11.904-11.872 11.904zM365.024 694.976c17.408 0 31.52 14.112 31.52 31.52 0 17.312-14.112 31.424-31.52 31.424-17.312 0-31.424-14.048-31.424-31.424s14.048-31.52 31.424-31.52zM365.024 734.048c4.16 0 7.616-3.424 7.616-7.552 0-8.32-15.168-8.416-15.168 0 0 4.128 3.392 7.552 7.552 7.552z" />
<glyph unicode="&#xe904;" glyph-name="icons42" d="M896.608 65.408h-716.864c-39.52 0-71.712 32.16-71.712 71.712v537.6c0 39.52 32.16 71.712 71.712 71.712h358.432c9.92 0 17.92-8.032 17.92-17.92s-8.032-17.92-17.92-17.92h-358.432c-19.744 0-35.84-16.064-35.84-35.84v-537.6c0-19.744 16.096-35.84 35.84-35.84h716.896c19.808 0 35.872 16.096 35.872 35.84v537.6c0 19.744-16.096 35.84-35.872 35.84-9.856 0-17.856 8.032-17.856 17.92s8.032 17.92 17.856 17.92c39.52 0 71.68-32.16 71.68-71.712v-537.6c0-39.52-32.16-71.712-71.712-71.712zM896.608 137.12h-609.312v537.6h179.2c9.856 0 17.856-8.032 17.856-17.92s-8.032-17.856-17.92-17.856h-143.392v-466.016h537.6v466.016h-35.84c-9.92 0-17.92 8.032-17.92 17.856 0 9.92 8.032 17.92 17.92 17.92h71.68v-537.6zM251.456 172.96h-143.392v466.016h143.392v-466.016zM143.904 208.768h71.712v394.272h-71.712v-394.272zM420.576 431.776l47.328 148.704 322.432 322.432c27.104 27.104 74.368 27.104 101.376 0 27.936-27.936 27.936-73.408 0-101.344l-322.432-322.432-148.704-47.328zM499.456 561.312l-23.648-74.4 74.368 23.648 316.256 316.224c13.952 14.016 13.952 36.736 0 50.72-13.568 13.568-37.152 13.568-50.72 0l-316.224-316.224zM126.016 495.584h107.52v-35.84h-107.52v35.84zM126.016 352.192h107.52v-35.84h-107.52v35.84zM853.696 770.88c-4.576 0-9.248 1.728-12.672 5.216l-76.032 76.032c-7.008 7.008-7.008 18.368 0 25.312s18.368 7.008 25.312 0l76.032-76.064c7.008-7.008 7.008-18.304 0-25.312-3.424-3.552-8.064-5.216-12.608-5.216zM752.384 669.504c-4.576 0-9.248 1.728-12.672 5.216l-76.032 76.064c-7.008 6.944-7.008 18.304 0 25.312 6.944 7.008 18.304 7.008 25.312 0l76.064-76.064c6.944-7.008 6.944-18.304 0-25.312-3.552-3.552-8.064-5.216-12.672-5.216zM559.712 476.96c-4.576 0-9.248 1.728-12.672 5.216l-76.064 76.032c-7.008 7.008-7.008 18.368 0 25.312s18.304 6.944 25.312 0l76.064-76.064c7.008-7.008 7.008-18.304 0-25.312-3.552-3.552-8.064-5.216-12.608-5.216zM412.736 405.952c-4.576 0-9.248 1.728-12.672 5.216-7.008 7.008-7.008 18.368 0 25.312l35.488 35.488c7.008 7.008 18.304 7.008 25.312 0s7.008-18.304 0-25.312l-35.488-35.488c-3.456-3.552-8.064-5.216-12.672-5.216z" />
<glyph unicode="&#xe905;" glyph-name="icons96" d="M558.72 704.64c-129.6 0-235.104-105.504-235.104-235.104 0-72.16 32.896-138.976 90.304-184.224 1.056-1.536 2.4-2.912 4.032-4.032 0.352-0.224 30.848-20.704 30.848-60.032 0-0.544 0.608-0.96 0.608-1.632 0-0.512-0.384-0.96-0.288-1.536l38.592-176.224c1.472-6.752 7.424-11.584 14.4-11.584h113.344c6.88 0 12.864 4.896 14.4 11.584l38.656 176.224c0 0.512-0.384 0.96-0.32 1.536 0 0.672 0.704 1.056 0.704 1.632 0 38.784 29.536 59.264 30.688 60.032 1.344 0.928 2.304 2.016 3.2 3.328 57.92 45.248 91.136 112.416 91.136 184.896 0 129.664-105.408 235.104-235.104 235.104zM603.552 59.808h-89.6l-3.104 14.528h95.904l-3.104-14.528zM613.152 103.808h-108.768l-3.232 14.624h115.264l-3.2-14.624zM622.848 147.936h-128.224l-12.768 58.592h153.888l-12.896-58.592zM682.048 305.888c-1.248-0.928-2.304-1.92-3.104-3.2-9.856-7.904-33.312-30.176-38.592-66.624h-66.88v205.6c0 16.192 13.216 29.344 29.376 29.344 8.128 0 14.752 6.592 14.752 14.752s-6.688 14.752-14.752 14.752c-17.824 0-33.28-8.416-44.128-20.96-1.056 1.216-1.376 2.72-2.56 3.872-11.008 11.008-25.728 17.152-41.216 17.152 0 0 0 0-0.224 0-8.128 0-14.656-6.592-14.656-14.848 0-8.192 6.56-14.656 14.752-14.656 0 0 0 0 0 0s0 0 0 0c7.68 0 14.976-2.976 20.512-8.512 5.568-5.568 8.672-12.896 8.672-20.832v-205.6h-66.848c-5.216 36.256-28.576 58.496-38.528 66.56-0.864 1.216-1.92 2.336-3.2 3.2-52.416 39.648-82.368 99.264-82.368 163.712 0 113.376 92.224 205.632 205.568 205.632 113.44 0 205.632-92.224 205.632-205.632 0-64.48-30.016-124.032-82.304-163.712zM563.872 762.080c8.128 0 14.752 6.592 14.752 14.72v99.040c0 8.192-6.688 14.752-14.752 14.752-8.192 0-14.624-6.592-14.624-14.752v-99.072c0-8.128 6.496-14.656 14.624-14.656zM343.424 679.456c2.912-2.912 6.688-4.352 10.432-4.352 3.872 0 7.616 1.44 10.4 4.288 5.728 5.728 5.728 15.072 0 20.864l-69.888 70.016c-5.728 5.76-15.104 5.76-20.864 0-5.696-5.728-5.696-15.072 0-20.832l70.016-70.016zM281.664 479.808c0 8.128-6.592 14.752-14.656 14.752h-99.168c-8.192 0-14.752-6.624-14.752-14.752s6.592-14.752 14.752-14.752h99.168c8.128 0 14.656 6.592 14.656 14.752zM343.648 280.288l-70.176-70.080c-5.696-5.728-5.696-15.072 0-20.832 2.912-2.912 6.752-4.288 10.528-4.288 3.648 0 7.52 1.44 10.4 4.288l70.080 70.048c5.728 5.76 5.728 15.104 0 20.864-5.696 5.696-15.040 5.76-20.8 0zM784.224 267.648c-5.728 5.632-15.008 5.728-20.832 0-5.792-5.76-5.792-15.104 0-20.832l69.888-70.176c2.912-2.848 6.752-4.288 10.528-4.288s7.52 1.44 10.4 4.288c5.728 5.728 5.728 15.072 0 20.832l-70.016 70.176zM959.872 494.56h-99.072c-8.128 0-14.752-6.528-14.752-14.752 0-8.128 6.56-14.656 14.752-14.656h99.072c8.192 0 14.752 6.528 14.752 14.752 0 8.128-6.528 14.752-14.752 14.752zM773.824 675.104c3.776 0 7.488 1.44 10.528 4.352l70.080 70.016c5.728 5.76 5.728 15.104 0 20.864-5.696 5.728-15.040 5.792-20.864 0l-70.080-70.016c-5.792-5.76-5.792-15.072 0-20.8 2.752-2.912 6.528-4.384 10.336-4.384z" />
<glyph unicode="&#xe906;" glyph-name="icons112" d="M200.064 745.408c21.856 0 39.584 17.728 39.584 39.52s-17.728 39.456-39.584 39.456c-21.824 0-39.456-17.696-39.456-39.456 0-21.856 17.696-39.52 39.456-39.52zM200.064 793.504c4.896 0 8.736-3.776 8.736-8.512 0-9.664-17.28-9.92-17.28 0 0 4.672 3.872 8.512 8.512 8.512zM929.536 903.968h-829.44c-8.384 0-15.36-6.944-15.36-15.424v-829.376c0-8.48 6.944-15.424 15.36-15.424h829.44c8.448 0 15.424 6.944 15.424 15.488v829.344c0 8.448-6.944 15.424-15.424 15.424zM914.112 873.056v-176.384h-798.528v176.384h798.528zM115.616 74.592v591.232h798.496v-591.232h-798.496zM513.536 744.192c22.4 0 40.576 18.272 40.576 40.768 0 22.4-18.144 40.64-40.576 40.64s-40.768-18.208-40.768-40.64c0-22.464 18.304-40.768 40.768-40.768zM513.536 794.688c5.376 0 9.76-4.416 9.76-9.792 0-10.88-19.648-10.784-19.648 0 0 5.344 4.48 9.792 9.856 9.792zM356.352 744.192c22.4 0 40.576 18.272 40.576 40.768 0 22.4-18.144 40.64-40.576 40.64-22.528 0-40.768-18.208-40.768-40.64 0-22.464 18.208-40.768 40.768-40.768zM356.352 794.688c5.344 0 9.76-4.416 9.76-9.792 0-10.88-19.68-10.784-19.68 0 0 5.344 4.416 9.792 9.952 9.792z" />
<glyph unicode="&#xe907;" glyph-name="icons158" d="M525.568 892.704c-136.032 0-246.688-110.656-246.688-246.688 0-95.136 89.28-271.008 169.152-409.344-90.624-14.528-150.208-52.736-150.208-98.784 0-60.096 97.92-105.408 227.808-105.408s227.808 45.344 227.808 105.472c0 46.080-59.616 84.288-150.176 98.784 79.744 138.336 169.12 314.304 169.12 409.344 0 136-110.688 246.656-246.72 246.656zM525.568 861.184c118.656 0 215.168-96.416 215.168-215.168 0-97.44-110.368-300.896-176.256-413.632-15.872-27.136-29.536-49.536-38.88-64.768-9.312 15.2-22.976 37.6-38.848 64.768-65.888 112.672-176.384 316.128-176.384 413.632 0 118.656 96.48 215.168 215.232 215.168zM721.856 137.92c0-35.072-80.608-73.984-196.288-73.984s-196.32 38.912-196.32 73.984c0 26.176 50.528 58.592 135.552 69.76 4.096-6.944 7.52-12.672 11.296-18.912 1.984-3.392 4.16-6.944 6.080-10.176 4.704-7.68 8.672-14.144 12.352-20.288 1.184-1.888 2.464-4.032 3.552-5.728 4.032-6.688 7.2-11.712 9.6-15.616 0.256-0.288 0.576-0.928 0.864-1.28 2.4-3.872 3.776-6.048 3.776-6.048l13.248-20.96 13.344 20.96c0 0 1.248 1.984 3.616 5.696 0.512 0.864 1.28 2.176 1.984 3.328 2.4 3.648 5.088 8.128 8.736 14.144 0.864 1.28 1.856 2.912 2.752 4.352 3.904 6.464 8.192 13.504 13.216 21.856 1.664 2.848 3.648 6.112 5.568 9.248 3.776 6.336 7.424 12.352 11.648 19.52 85.056-11.040 135.488-43.552 135.488-69.728zM679.968 646.080c0 85.056-69.248 154.24-154.4 154.24s-154.272-69.216-154.272-154.24c0-85.152 69.216-154.432 154.272-154.432s154.4 69.248 154.4 154.432zM402.784 646.080c0 67.712 55.136 122.72 122.88 122.72 67.712 0 122.88-55.072 122.88-122.72 0-67.776-55.136-122.912-122.88-122.912-67.68 0-122.88 55.136-122.88 122.912z" />
<glyph unicode="&#xe908;" glyph-name="icons163" d="M676 155.136c15.168 0 26.272 12.32 26.272 27.488v194.592c0 15.168-11.232 27.488-26.272 27.488-15.168 0-26.368-12.32-26.368-27.488v-194.592c0-15.2 11.232-27.488 26.368-27.488zM552.448 155.136c15.168 0 26.336 12.32 26.336 27.488v194.592c0 15.168-11.232 27.488-26.336 27.488s-26.336-12.32-26.336-27.488v-194.592c0-15.2 11.232-27.488 26.336-27.488zM429.024 155.136c15.168 0 26.336 12.32 26.336 27.488v194.592c0 15.168-11.232 27.488-26.336 27.488-15.168 0-26.336-12.32-26.336-27.488v-194.592c0-15.2 11.232-27.488 26.336-27.488zM875.68 652.128h-152.736l-78.272 126.048c-9.856 16.992-28.096 27.552-47.776 27.552-9.6 0-19.2-2.56-27.488-7.392-26.272-15.168-35.36-48.928-19.744-75.872l44.832-70.272h-228.672l45.248 71.008c15.168 26.24 6.112 60.096-20.224 75.264-8.384 4.896-17.824 7.392-27.488 7.392-19.68 0-37.92-10.592-47.456-27.008l-78.656-126.56h-131.52c-40.736 0-73.824-33.152-73.824-73.824v-42.144c0-36.576 26.784-72.384 61.664-78.24l55.36-316.608c0.864-39.968 33.632-72.192 73.792-72.192h533.504c40.192 0 72.992 32.288 73.824 72.224l55.104 316.32c36.192 4.704 64.352 41.056 64.352 78.496v42.144c0 40.736-33.12 73.824-73.824 73.824zM795.008 145.824l-0.256-2.976c0-21.248-17.312-38.528-38.592-38.528h-533.504c-21.248 0-38.528 17.28-38.528 38.528l-54.56 313.792h719.648l-54.144-310.848zM914.144 536.064c0-21.216-17.28-44.224-38.528-44.224h-769.952c-21.248 0-38.528 22.976-38.528 44.224v42.144c0 21.248 17.28 38.528 38.528 38.528h151.136l89.28 143.648c5.28 9.088 17.824 12.544 27.040 7.2 9.44-5.408 12.768-17.632 7.68-26.368l-79.488-124.576h357.504l-79.136 123.904c-5.376 9.44-2.176 21.6 7.2 27.040 9.312 5.312 21.632 2.112 27.392-7.68l89.024-143.2h172.352c21.248 0 38.528-17.28 38.528-38.528v-42.144zM305.568 155.136c15.168 0 26.272 12.32 26.272 27.488v194.592c0 15.168-11.232 27.488-26.272 27.488-15.168 0-26.336-12.32-26.336-27.488v-194.592c0-15.2 11.232-27.488 26.336-27.488z" />
<glyph unicode="&#xe909;" glyph-name="icons171" d="M891.584 376h-672.064v134.432c0 37.056 30.144 67.232 67.232 67.232h168.736c5.568 0 10.784 2.752 13.92 7.392 3.104 4.576 3.776 10.528 1.664 15.648-10.848 27.136-16.384 55.744-16.384 85.024v127.136c0 55.584 45.216 100.8 100.8 100.8s100.8-45.216 100.8-100.8v-127.136c0-29.248-5.568-57.824-16.352-85.024-2.048-5.216-1.44-11.008 1.632-15.648 3.104-4.576 8.384-7.392 13.952-7.392h168.736c37.056 0 67.2-30.144 67.2-67.232v-134.368zM253.12 409.6h604.832v100.8c0 18.528-15.072 33.6-33.6 33.6h-168.736c-16.704 0-32.352 8.288-41.696 22.144-9.344 13.92-11.296 31.488-5.024 46.976 9.312 23.136 13.952 47.552 13.952 72.544v127.2c0 37.056-30.144 67.232-67.232 67.232s-67.232-30.144-67.232-67.232v-127.136c0-24.96 4.704-49.344 13.952-72.512 6.208-15.584 4.288-33.12-5.024-46.976-9.344-13.92-24.96-22.176-41.696-22.176h-168.8c-18.528 0-33.632-15.104-33.632-33.632v-100.8zM841.184 107.168h-419.968c-4.416 0-8.736 1.76-11.872 4.896-3.104 3.104-4.896 7.424-4.896 11.872v63.2l-35.36-70.784c-2.912-5.696-8.736-9.312-15.040-9.312h-84c-9.312 0-16.8 7.52-16.8 16.8v268.8c0 9.312 7.52 16.8 16.8 16.8h571.232c9.312 0 16.8-7.52 16.8-16.8v-268.8c0-9.312-7.52-16.8-16.8-16.8zM437.984 140.8h386.4v235.232h-537.6v-235.232h56.768l62.496 125.152c3.552 6.944 11.296 10.592 18.912 8.864s12.928-8.512 12.928-16.352v-117.632zM774.016 107.168c-9.312 0-16.8 7.52-16.8 16.8v168c0 9.312 7.52 16.8 16.8 16.8 9.248 0 16.736-7.52 16.736-16.8v-168c0-9.312-7.52-16.8-16.736-16.8zM706.784 107.168c-9.312 0-16.8 7.52-16.8 16.8v134.432c0 9.312 7.52 16.8 16.8 16.8s16.8-7.52 16.8-16.8v-134.432c0-9.312-7.52-16.8-16.8-16.8zM639.52 107.168c-9.248 0-16.736 7.52-16.736 16.8v84c0 9.312 7.52 16.8 16.736 16.8 9.312 0 16.8-7.52 16.8-16.8v-84c0-9.312-7.52-16.8-16.8-16.8zM589.184 812.832c0-18.56-15.040-33.6-33.6-33.6s-33.6 15.040-33.6 33.6c0 18.56 15.040 33.6 33.6 33.6s33.6-15.040 33.6-33.6z" />
<glyph unicode="&#xe90a;" glyph-name="icons180" d="M663.136 636.096c4.032 0 7.84 1.632 10.624 4.384l94.752 94.752c2.848 2.912 4.384 6.752 4.384 10.688 0 4.032-1.536 7.84-4.384 10.624l-94.752 94.56c-2.784 2.912-6.624 4.416-10.624 4.416h-142.592v16.416c0 8.288-6.752 15.104-15.040 15.104s-15.072-6.752-15.072-15.104v-16.416h-237.248c-6.080 0-11.616-3.68-13.92-9.312-2.336-5.632-1.056-12.096 3.232-16.416l83.936-83.936-83.936-84c-4.288-4.288-5.568-10.752-3.328-16.512 2.272-5.632 7.776-9.312 13.92-9.312h237.152v-31.712h-142.688c-4.032 0-7.776-1.632-10.624-4.416l-94.624-94.624c-5.92-5.92-5.92-15.488 0-21.344l94.624-94.656c2.912-2.912 6.624-4.416 10.624-4.416h142.752v-233.888c-86.304-4.128-152.192-42.080-152.192-90.368 0-51.104 73.44-91.136 167.232-91.136s167.264 40 167.264 91.136c0 48.288-65.728 86.272-152.096 90.368v233.888h237.152c6.080 0 11.616 3.68 13.952 9.312s1.056 12.096-3.328 16.448l-83.904 84 83.904 84c4.288 4.288 5.568 10.752 3.328 16.416-2.336 5.632-7.872 9.312-13.952 9.312h-237.216v31.712h142.72zM642.4 60.64c0-28.8-56.32-60.928-137.088-60.928s-136.96 32.16-136.96 60.928c0 26.912 49.536 56.48 121.984 60.224v-60.224c0-8.192 6.752-15.040 15.072-15.040s15.040 6.752 15.040 15.040v60.224c72.448-3.776 121.856-33.312 121.856-60.224zM721.312 574.176l-68.832-68.864c-5.92-5.92-5.92-15.488 0-21.344l68.832-68.896h-367.392l-79.488 79.52 79.488 79.488h367.392zM289.568 666.336l68.832 68.864c5.92 5.952 5.92 15.488 0 21.376l-68.8 68.8h367.392l79.488-79.456-79.488-79.52h-367.392z" />
<glyph unicode="&#xe90b;" glyph-name="icons185" d="M606.656 367.456c-2.272 2.208-5.088 2.752-8 3.328 54.144 58.112 84.512 132.672 84.512 212.448 0 83.456-32.512 162.048-91.584 221.056-59.104 59.136-137.664 91.68-221.184 91.68s-162.112-32.544-221.248-91.68c-59.040-59.040-91.616-137.6-91.584-221.152 0-83.52 32.576-162.112 91.712-221.152 59.040-59.104 137.536-91.616 221.088-91.616 79.712 0 154.304 30.368 212.352 84.416 0.512-2.848 1.12-5.728 3.232-7.968l253.152-253.088c2.752-2.784 6.528-4.288 10.24-4.288s7.424 1.472 10.24 4.288c5.696 5.696 5.696 14.88 0 20.512l-253.024 253.152zM570.976 382.56c-53.568-53.536-124.8-83.104-200.608-83.104-75.744 0-147.008 29.568-200.608 83.104-53.568 53.632-83.104 124.8-83.104 200.64 0 75.776 29.504 147.008 83.008 200.608 53.664 53.632 124.96 83.168 200.672 83.168 75.744 0 147.008-29.568 200.64-83.168 53.568-53.632 83.104-124.8 83.104-200.544 0-75.776-29.568-147.040-83.168-200.672zM134.24 583.040h29.024c0 114.176 92.992 207.136 207.136 207.136v29.088c-130.208 0-236.16-105.952-236.16-236.224z" />
<glyph unicode="&#xe90c;" glyph-name="icons202" d="M524.704 116.896c-29.28 0-53.12-23.744-53.12-53.024s23.744-53.12 53.12-53.12 53.12 23.776 53.12 53.12-23.744 53.024-53.12 53.024zM524.704 38.944c-13.728 0-24.96 11.232-24.96 24.96s11.232 24.928 24.96 24.928c13.728 0 24.96-11.232 24.96-24.928s-11.232-24.96-24.96-24.96zM485.728 845.184h47.648c7.776 0 14.048 6.336 14.048 14.048s-6.336 14.048-14.048 14.048h-47.648c-7.776 0-14.048-6.336-14.048-14.048s6.336-14.048 14.048-14.048zM718.016 765.184h-410.816c-9.664 0-17.536-7.872-17.536-17.536v-592.384c0-9.664 7.872-17.536 17.536-17.536h410.816c9.664 0 17.504 7.904 17.504 17.536v592.384c0 9.664-7.872 17.536-17.504 17.536zM700.384 172.768h-375.68v557.28h375.68v-557.28zM448.288 800.576h125.632c7.776 0 14.048 6.336 14.048 14.048s-6.336 14.048-14.048 14.048h-125.632c-7.776 0-14.048-6.336-14.048-14.048s6.336-14.048 14.048-14.048zM738.080 939.36h-454.080c-35.488 0-64.448-28.864-64.448-64.448v-850.016c0-35.488 28.928-64.448 64.448-64.448h454.080c35.552 0 64.448 28.864 64.448 64.448v850.016c0 35.488-28.8 64.448-64.448 64.448zM767.36 24.96c0-16.192-13.152-29.28-29.28-29.28h-454.080c-16.192 0-29.28 13.152-29.28 29.28v850.016c0 16.192 13.152 29.28 29.28 29.28h454.080c16.192 0 29.28-13.152 29.28-29.28v-850.016zM379.744 786.56c15.52 0 28.096 12.608 28.096 28.096s-12.544 28.096-28.096 28.096-28.128-12.608-28.128-28.096 12.608-28.096 28.128-28.096zM379.744 825.184c5.728 0 10.592-4.704 10.592-10.592 0-5.92-4.704-10.592-10.592-10.592-5.92 0-10.592 4.704-10.592 10.592 0 5.792 4.704 10.592 10.592 10.592z" />
<glyph unicode="&#xe90d;" glyph-name="icons206" d="M717.376 447.936h-414.688c-8.448 0-15.424-6.944-15.424-15.424s6.944-15.424 15.424-15.424h414.688c8.512 0 15.424 6.944 15.424 15.424s-6.912 15.424-15.424 15.424zM717.376 551.744h-414.752c-8.512 0-15.488-6.944-15.488-15.424s6.912-15.424 15.488-15.424h414.752c8.512 0 15.424 6.944 15.424 15.424s-6.912 15.424-15.424 15.424zM717.376 655.264h-414.688c-8.448 0-15.424-6.944-15.424-15.392s6.944-15.424 15.424-15.424h414.688c8.512 0 15.424 6.944 15.424 15.424 0 8.448-6.912 15.392-15.424 15.392zM872.864 862.688h-725.568c-37.152 0-67.328-30.272-67.328-67.296v-518.272c0-36.416 29.152-66.112 65.184-67.232 0.704 0 1.472 0 2.112 0h408.288l202.688-202.72c2.976-2.912 6.944-4.48 11.008-4.48 1.888 0 3.936 0.32 5.92 1.184 5.728 2.4 9.536 7.968 9.536 14.24v191.808h88.192c0.8 0 1.472 0 2.208 0 35.904 1.184 64.928 30.72 65.12 67.36v518.272c0 36.992-30.336 67.072-67.328 67.072zM909.312 276.96c0-19.968-16.448-36.224-36.416-36.224-0.672 0-1.28 0-1.856 0h-101.728c-8.608 0-15.424-6.944-15.424-15.488v-170.016l-181.024 180.896c-2.912 2.912-6.752 4.576-10.88 4.576h-412.832c-0.704 0-1.216 0-1.856 0-20.064 0-36.416 16.352-36.416 36.416v518.272c0 20.064 16.32 36.448 36.416 36.448h725.568c19.936 0 36.352-16.352 36.416-36.576v-518.368z" />
<glyph unicode="&#xe90e;" glyph-name="icons208" d="M943.424 729.952c0 1.792-1.28 2.976-1.984 4.672-0.48 1.568-0.224 3.328-1.28 4.768-0.288 0.32-0.672 0.256-0.864 0.448-1.28 1.536-3.104 1.984-4.992 2.912-1.856 0.8-3.328 2.048-5.28 2.176-0.352 0-0.544 0.384-0.928 0.384h-829.376c-0.352 0-0.544-0.352-0.928-0.384-2.016 0-3.552-1.344-5.28-2.176-1.856-0.928-3.648-1.44-5.024-2.912 0-0.256-0.576 0-0.864-0.448-1.056-1.44-0.768-3.2-1.248-4.896-0.672-1.632-1.984-2.848-1.984-4.64v-518.272c0-1.792 1.28-2.976 1.984-4.64 0.48-1.632 0.224-3.392 1.248-4.896 0.256-0.32 0.544 0 0.864-0.416 2.784-3.232 6.752-5.568 11.296-5.568h829.376c4.576 0 8.448 2.272 11.296 5.568 0.288 0.256 0.512 0 0.8 0.416 1.12 1.44 0.8 3.168 1.28 4.896 0.672 1.632 1.984 2.848 1.984 4.64v518.272zM114.112 698.496l293.6-227.712-293.6-227.616v455.296zM584.544 483.072c0 0-0.224 0-0.224 0l-70.912-55.136-3.2 2.464-67.68 52.64c0 0-0.224 0-0.352 0l-298.4 231.424h739.104l-298.336-231.424zM432.928 451.264l71.008-54.944c1.536-1.216 3.552-1.248 5.28-1.856 1.056-0.256 1.856-0.96 2.976-1.024 0.416 0 0.704-0.416 1.184-0.416 0.352 0 0.672 0.384 1.12 0.384 1.12 0 1.888 0.704 2.912 1.024 1.856 0.512 3.872 0.672 5.376 1.856l71.008 54.944 289.024-224.224h-739.104l289.152 224.224zM619.008 470.784l293.536 227.712v-455.296l-293.536 227.616z" />
<glyph unicode="&#xe90f;" glyph-name="icons236" horiz-adv-x="1056" d="M695.936 328.352h-337.984c-6.464 0-11.648-5.216-11.648-11.648s5.216-11.648 11.648-11.648h337.984c6.464 0 11.648 5.216 11.648 11.648s-5.216 11.648-11.648 11.648zM817.472 748.192h-571.712c-8.992 0-16.352-7.296-16.352-16.32v-360.096c0-8.992 7.296-16.32 16.352-16.32h571.712c8.992 0 16.352 7.296 16.352 16.32v360.096c0 8.992-7.296 16.32-16.352 16.32zM801.184 388.032h-539.136v327.552h539.136v-327.552zM970.816 278.816h-54.112v508.576c0 27.424-19.84 49.792-44.224 49.792h-687.232c-24.352 0-44.224-22.304-44.224-49.792v-508.576h-57.92c-25.056 0-45.472-22.816-45.472-50.752 0-13.248 4.48-25.632 12.672-35.136 0 0 0-0.256 0.256-0.352l67.424-82.144c3.104-3.776 7.68-5.952 12.512-5.952h779.424c4.288 0 8.448 1.728 11.552 4.736l72.736 72.736c1.632 1.632 2.784 3.456 3.552 5.408 11.232 9.312 18.464 23.936 18.464 40.608 0 27.968-20.48 50.752-45.472 50.752zM173.696 787.456c0 10.080 6.048 17.12 11.584 17.12h687.232c5.568 0 11.616-7.296 11.616-17.12v-508.576h-710.464v508.576zM903.264 137.088h-765.088l-32.928 40.192h838.176l-40.096-40.192zM970.816 209.952h-887.744c-3.616 0-6.336 2.176-7.904 3.904-3.168 3.552-4.992 8.736-4.992 14.24 0 9.856 5.92 18.112 12.896 18.112h887.712c6.944 0 12.864-8.288 12.864-18.112 0-9.952-5.92-18.208-12.864-18.208z" />
<glyph unicode="&#xe910;" glyph-name="heart3" d="M934.176 791.52c-116.128 115.072-301.824 117.472-422.112 9.216-120.32 108.256-305.952 105.856-422.144-9.216-119.712-118.528-119.712-310.688 0-429.28 34.208-33.888 353.696-350.112 353.696-350.112 37.856-37.504 99.072-37.504 136.896 0 0 0 349.824 346.304 353.696 350.112 119.744 118.592 119.744 310.752-0.032 429.28zM888.576 407.424l-353.696-350.112c-12.576-12.512-33.088-12.512-45.6 0l-353.696 350.112c-94.4 93.44-94.4 245.472 0 338.912 91.008 90.080 237.312 93.248 333.088 7.104l43.392-39.040 43.36 39.040c95.808 86.144 242.112 83.008 333.12-7.104 94.4-93.408 94.4-245.44 0.032-338.912zM296.096 719.968c8.864 0 16-7.168 16-16s-7.168-16-16-16h-0.032c-57.408 0-103.968-46.56-103.968-103.968v-0.032c0-8.832-7.168-16-16-16s-16 7.168-16 16v0c0 75.072 60.832 135.904 135.872 135.968 0.064 0 0.064 0.032 0.128 0.032z" />
<glyph unicode="&#xe911;" glyph-name="cloud3" d="M829.248 539.424c-13.984 146.016-135.552 260.576-285.248 260.576-115.808 0-214.944-68.736-260.672-167.36-13.76 4.352-28.096 7.36-43.296 7.36-79.52 0-144-64.512-144-144 0-15.808 3.168-30.752 7.872-44.928-61.856-36.064-103.872-102.24-103.872-179.008 0-114.88 93.12-208 208-208v-0.064l575.968 0.064c132.576 0 240 107.424 240 240 0 116.992-83.872 214.176-194.752 235.36zM784 128.064v-0.064h-575.968c-79.392 0.064-144 64.64-144 144.064 0 51.2 26.976 97.44 72.128 123.744 43.872 25.184 46.88 30.176 28.48 75.424-3.104 9.312-4.608 17.408-4.608 24.736 0 44.128 35.872 80 80 80 0 0 20.992 1.504 43.296-7.36 36.704-14.624 40.704-0.64 58.048 37.088 36.704 79.136 116.224 130.304 202.624 130.304 115.2 0 210.432-87.136 221.568-202.688 3.936-45.824 3.936-45.824 51.68-56.736 82.752-15.808 142.752-88.384 142.752-172.512 0-97.056-78.944-176-176-176z" />
<glyph unicode="&#xe912;" glyph-name="star" d="M1020.192 558.176c-8.864 25.568-31.616 44.288-59.008 48.352l-266.432 39.616-115.808 240.448c-12.192 25.248-38.272 41.408-66.944 41.408s-54.752-16.16-66.944-41.408l-115.808-240.448-266.464-39.616c-27.36-4.064-50.112-22.784-58.944-48.352-8.8-25.632-2.144-53.856 17.184-73.12l195.264-194.944-45.28-270.432c-4.608-27.232 7.2-54.56 30.336-70.496 12.704-8.736 27.648-13.184 42.592-13.184 12.288 0 24.608 3.008 35.776 8.992l232.288 125.056 232.32-125.056c11.168-5.984 23.488-8.992 35.744-8.992 14.944 0 29.888 4.448 42.624 13.184 23.136 15.936 34.88 43.264 30.304 70.496l-45.312 270.432 195.328 194.944c19.296 19.296 25.92 47.52 17.184 73.12zM754.816 340.384c-16.384-16.32-23.808-39.328-20.064-61.888l45.312-270.432-232.32 124.992c-11.136 6.016-23.424 8.992-35.776 8.992-12.288 0-24.608-3.008-35.744-8.992l-232.32-124.992 45.312 270.432c3.776 22.56-3.648 45.568-20.032 61.888l-195.264 194.944 266.432 39.68c24.352 3.616 45.312 18.848 55.776 40.576l115.872 240.384 115.84-240.416c10.496-21.728 31.424-36.928 55.744-40.576l266.496-39.68-195.264-194.912z" />
<glyph unicode="&#xe913;" glyph-name="tv2" d="M709.44 684.032c-86.624 17.824-174.56 26.848-261.28 26.848s-174.624-9.024-261.28-26.848c-11.2-2.304-20.352-10.432-23.968-21.344-46.144-140.192-46.144-282.336 0-422.528 3.584-10.88 12.736-19.008 23.968-21.312 86.656-17.792 174.56-26.848 261.28-26.848 86.688 0 174.656 9.056 261.28 26.88 11.264 2.304 20.384 10.432 24 21.312 46.112 140.192 46.112 282.336 0 422.528-3.616 10.88-12.768 19.008-24 21.312zM703.008 250.176c-169.888-34.88-339.808-34.88-509.664 0-44.192 134.176-44.192 268.32 0 402.528 169.888 34.912 339.808 34.912 509.664 0 44.192-134.176 44.192-268.32 0-402.528zM987.328 757.76c-6.176 26.048-28 45.504-54.56 48.704-139.52 16.96-281.024 25.536-420.608 25.536-139.552 0-281.056-8.576-420.576-25.504-26.56-3.232-48.352-22.656-54.528-48.736-48.928-205.536-48.928-413.952 0-619.52 6.176-26.048 27.968-45.504 54.528-48.672 67.232-8.192 134.912-14.176 202.592-18.432-3.648-2.336-6.016-4.704-6.016-7.136 0-17.696 100.288-32 224-32s224 14.304 224 32c0 2.432-2.368 4.8-6.016 7.136 67.68 4.256 135.36 10.24 202.56 18.432 26.56 3.2 48.384 22.624 54.56 48.672 48.992 205.568 48.992 413.984 0.064 619.52zM925.056 153.056c-275.264-33.376-550.528-33.376-825.76 0-46.816 196.64-46.816 393.28 0 589.888 275.264 33.408 550.528 33.408 825.76 0 46.816-196.608 46.816-393.248 0-589.888zM848.192 576c26.496 0 48 21.504 48 48s-21.504 48-48 48-48-21.504-48-48 21.504-48 48-48zM848.192 640c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.168 16 16 16zM880.192 256c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-96c-8.864 0-16 7.2-16 16 0 8.864 7.136 16 16 16h96zM912.192 352c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-96c-8.864 0-16 7.2-16 16 0 8.864 7.136 16 16 16h96zM912.192 448c8.8 0 16-7.168 16-16s-7.2-16-16-16h-96c-8.864 0-16 7.168-16 16s7.136 16 16 16h96zM432.16 582.272c8.832 0.352 16-6.528 16-15.36s-7.2-16.256-16-16.576l-119.968-8.224c-8.736-0.896-16.864-8.768-18.048-17.472l-5.344-60.64c-0.352-8.8-7.84-16-16.576-16-8.768 0-15.584 7.2-15.136 16l9.76 89.152c1.472 8.704 9.824 16.64 18.56 17.632l146.752 11.488z" />
<glyph unicode="&#xe914;" glyph-name="sound" d="M863.936 511.904c0 158.784-129.184 288-288 287.968v0.128c-8.8 0.032-15.936 7.2-15.936 16 0 8.832 7.136 16 16 16 0.32 0 0.576-0.128 0.8-0.192 176.256-0.416 318.944-143.264 319.136-319.552 0-0.096 0.064-0.16 0.064-0.256 0-8.832-7.2-15.968-16-15.968s-15.936 7.104-16 15.872h-0.064zM291.872 931.904c-18.336 18.368-42.912 28.096-67.904 28.096-12.352 0-24.8-2.368-36.672-7.296-35.904-14.848-59.296-49.856-59.296-88.704l-0.032-440.224-99.84-99.904c-37.504-37.44-37.504-98.24 0-135.744l224-224c18.752-18.752 43.296-28.128 67.872-28.128s49.12 9.376 67.872 28.128l99.872 99.872h440.192c38.88 0 73.888 23.36 88.672 59.264 14.88 35.872 6.688 77.184-20.8 104.64l-703.936 704zM442.496 109.248l-99.872-99.872c-8.16-8.128-17.696-9.376-22.624-9.376s-14.464 1.248-22.624 9.376l-224 224c-8.16 8.192-9.376 17.696-9.376 22.624s1.216 14.496 9.376 22.624l99.84 99.872c0.288 0.32 0.384 0.672 0.672 0.992l269.6-269.632c-0.288-0.224-0.704-0.288-0.992-0.608zM487.744 128c-4.96 0-9.568-1.76-14.304-2.816l-284.32 284.32c1.088 4.736 2.848 9.344 2.848 14.272l0.032 385.472 681.184-681.248h-385.44zM957.504 147.744c-4.928-12-16.576-19.744-29.568-19.744h-9.504l-726.432 726.496v9.504c0 12.992 7.744 24.608 19.744 29.568 3.936 1.632 8.032 2.432 12.224 2.432 8.576 0 16.608-3.328 22.624-9.344l703.968-704.032c9.184-9.184 11.936-22.88 6.944-34.88zM575.936 896c-17.632 0.032-31.936 14.368-31.936 32 0 17.696 14.304 32 32 32 0.32 0 0.576-0.128 0.8-0.16 246.944-0.448 446.944-200.608 447.136-447.584 0-0.096 0.064-0.16 0.064-0.256 0-17.696-14.304-32-32-32-17.632 0-31.936 14.272-32 31.872h-0.064c0 211.744-172.256 384-384 384v0.128z" />
<glyph unicode="&#xe915;" glyph-name="video2" d="M960 768h-28.384c-16.8 0-32.928-6.624-44.928-18.432l-86.688-85.504v39.936c0 53.024-43.008 96-96 96h-608c-52.928 0-96-43.040-96-96v-512c0-52.992 42.976-96 96-96h608c52.992 0 96 43.008 96 96v39.072l86.688-85.504c12-11.808 28.128-18.432 44.928-18.432h28.384c35.328 0 64 28.64 64 64v512.864c0 35.36-28.672 64-64 64zM96 160c-17.664 0-32 14.368-32 32v512c0 17.696 14.304 32 32 32h608c17.632 0 32-14.336 32-32v-512c0-17.632-14.368-32-32-32h-608zM960 191.136h-32l-128 128v0.864l-32 32v192l160 160h32v-512.864z" />
<glyph unicode="&#xe916;" glyph-name="trash" d="M959.36 741.792c-3.072 50.24-44.384 90.112-95.36 90.112h-96v32.064c0 53.024-43.008 96-96 96h-320c-53.024 0-96-42.976-96-96v-32.032h-96c-51.040 0-92.32-39.872-95.392-90.112h-0.608v-69.856c0-35.328 28.672-64 64-64v0-544c0-70.688 57.312-128 128-128h512c70.688 0 128 57.312 128 128v544c35.328 0 64 28.672 64 64v69.824h-0.64zM320 863.936c0 17.696 14.304 32 32 32h320c17.696 0 32-14.304 32-32v-32h-384v32zM832 63.936c0-35.264-28.736-64-64-64h-512c-35.296 0-64 28.736-64 64v544h640v-544zM896 703.968v-32h-768v63.968c0 17.696 14.304 32 32 32h704c17.696 0 32-14.304 32-32v-31.968zM288 63.808h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32zM288 511.84h64v-416h-64v416zM480 63.808h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32zM480 511.84h64v-416h-64v416zM672 63.808h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32zM672 511.84h64v-416h-64v416z" />
<glyph unicode="&#xe917;" glyph-name="user2" d="M995.52 53.248c-6.432 4.256-123.136 80.8-296.736 118.368 63.68 80.672 104.576 189.184 121.952 261.408 24.128 100.096 14.752 295.936-81.376 417.984-56.192 71.328-134.816 108.992-227.36 108.992s-171.168-37.696-227.328-108.992c-96.128-122.016-105.472-317.856-81.376-417.952 17.376-72.224 58.24-180.736 121.952-261.408-173.6-37.568-290.304-114.112-296.704-118.368-23.456-15.616-33.952-44.8-25.76-71.744 8.128-27.040 33.056-45.536 61.216-45.536h896c28.192 0 53.056 18.496 61.248 45.504 8.224 26.944-2.272 56.128-25.728 71.744zM648.544 211.264l-10.432-13.248c-76.32-87.68-175.84-87.68-252.128 0l-10.464 13.248c-89.12 112.928-133.344 262.304-114.304 404.8 17.44 136.928 95.904 279.936 250.784 279.936s233.376-143.040 250.816-279.968c18.976-142.56-25.088-291.776-114.272-404.768zM64 0c4.416 2.944 112.832 74.048 274.752 109.056l79.488 17.184c28.384-18.624 59.52-30.24 93.76-30.24 34.272 0 65.376 11.616 93.76 30.24l79.488-17.184c160.64-34.752 268.672-105.056 274.752-109.056h-896z" />
<glyph unicode="&#xe918;" glyph-name="key4" d="M704.128 960c-176.736 0-320-143.296-320-320 0-41.12 8.608-80.032 22.816-116.128l-388.768-388.736c-11.232-11.264-18.176-21.952-18.176-39.136v-96c0-34.24 29.728-64 64-64h96c17.152 0 28 6.88 39.232 18.048l45.92 45.952h74.976c35.328 0 64 28.672 64 64v64h64c35.328 0 64 28.672 64 64v75.008l75.808 75.872c36.128-14.24 75.008-22.88 116.192-22.88 176.672 0 320 143.296 320 320s-143.328 320-320 320zM704.128 384c-47.36 0-91.264 13.76-129.312 36.224l-11.008-10.976-96.96-96.992c-12-12-18.752-28.256-18.752-45.248v-75.008h-64c-35.328 0-64-28.64-64-64v-64h-74.944c-16.96 0-33.248-6.752-45.248-18.752l-45.376-45.376-90.432 0.128-0.096 91.2 373.28 372.608c0 0 0-0.032 0.032-0.064l47.008 47.008c-22.464 38.048-36.224 81.92-36.224 129.28 0 141.376 114.656 256 256 256s256-114.624 256-256-114.592-256.032-255.968-256.032zM890.24 696.352c-35.872 49.984-79.552 93.6-129.76 129.728-8.16 5.92-18.72 7.392-28.224 4.064-44.448-15.648-74.88-46.048-90.432-90.496-1.184-3.328-1.76-6.784-1.76-10.208 0-6.368 1.984-12.672 5.824-18.016 36-50.048 79.616-93.696 129.696-129.696 8.192-5.888 18.688-7.392 28.192-4.096 44.512 15.552 74.944 46.016 90.56 90.496 1.184 3.328 1.76 6.784 1.76 10.208-0.032 6.368-2.048 12.672-5.856 18.016zM794.24 607.68c-47.296 34.016-88.48 75.2-122.24 121.376 12.384 35.296 35.552 58.464 69.824 71.072 47.328-34.080 88.448-75.168 122.112-121.952-12.512-35.040-35.616-58.080-69.696-70.496z" />
<glyph unicode="&#xe919;" glyph-name="search3" d="M640 959.84c-212.064 0-384-171.936-384-384 0-64.832 16.224-125.856 44.64-179.456l-267.008-266.944 0.224-0.192c-20.864-20.512-33.856-48.928-33.856-80.512 0-62.368 50.56-112.928 112.928-112.928 31.52 0 59.968 12.992 80.48 33.888l-0.064 0.064 266.912 266.88c53.632-28.512 114.752-44.8 179.744-44.8 212.064 0 384 171.936 384 384s-171.936 384-384 384zM153.44 9.696c-10.304-10.688-24.576-17.376-40.512-17.376-31.2 0-56.48 25.248-56.48 56.448 0 15.936 6.72 30.176 17.376 40.512l-0.288 0.256 258.112 258.112c22.56-30.432 49.44-57.312 79.808-79.936l-258.016-258.016zM640 255.808c-176.704 0-320 143.328-320 320 0 176.704 143.296 320 320 320 176.672 0 320-143.296 320-320 0-176.672-143.328-320-320-320zM640 799.84c8.8 0 16-7.168 16-16s-7.2-16-16-16c-106.048 0-192-85.984-192-192 0-8.832-7.168-16-16-16s-16 7.168-16 16c0 123.712 100.256 224 224 224z" />
<glyph unicode="&#xe91a;" glyph-name="settings" d="M972.512 554.24l-98.048 19.648c-4.928 14.176-10.752 27.936-17.184 41.248l55.552 83.328c16.928 25.376 13.568 59.2-8 80.736l-61.568 61.568c-12.384 12.384-28.736 18.752-45.312 18.752-12.256 0-24.64-3.52-35.424-10.752l-83.328-55.52c-13.376 6.464-27.136 12.224-41.312 17.152l-19.648 98.080c-5.952 29.952-32.256 51.456-62.752 51.456h-87.040c-30.496 0-56.768-21.536-62.752-51.456l-19.648-98.080c-14.176-4.928-27.936-10.72-41.248-17.152l-83.296 55.52c-10.848 7.232-23.2 10.752-35.488 10.752-16.544 0-32.896-6.368-45.28-18.752l-61.536-61.568c-21.568-21.568-24.928-55.36-8-80.736l55.52-83.328c-6.464-13.344-12.224-27.104-17.152-41.28l-98.112-19.616c-29.92-5.984-51.456-32.256-51.456-62.752v-87.040c0-30.496 21.536-56.8 51.456-62.752l98.080-19.68c4.928-14.176 10.72-27.936 17.152-41.248l-55.488-83.328c-16.928-25.376-13.568-59.2 8-80.736l61.568-61.568c12.384-12.384 28.736-18.752 45.28-18.752 12.288 0 24.672 3.552 35.456 10.752l83.328 55.552c13.344-6.496 27.104-12.256 41.28-17.184l19.616-98.048c5.984-29.952 32.256-51.488 62.752-51.488h87.040c30.496 0 56.8 21.568 62.752 51.488l19.68 98.048c14.176 4.928 27.936 10.752 41.248 17.184l83.328-55.552c10.816-7.2 23.2-10.752 35.424-10.752 16.576 0 32.928 6.368 45.312 18.752l61.568 61.568c21.568 21.568 24.928 55.36 8 80.736l-55.552 83.328c6.496 13.376 12.256 27.136 17.184 41.312l98.048 19.616c29.92 5.92 51.488 32.256 51.488 62.752v87.040c0 30.496-21.568 56.768-51.488 62.752zM861.888 384.8c-22.24-4.448-40.448-20.32-47.872-41.76-4.128-11.808-8.928-23.264-14.304-34.368-9.952-20.448-8.256-44.576 4.32-63.424l55.552-83.328-61.568-61.568-83.328 55.552c-10.688 7.136-23.072 10.752-35.488 10.752-9.504 0-19.072-2.112-27.872-6.368-11.136-5.376-22.56-10.24-34.432-14.368-21.376-7.424-37.248-25.632-41.696-47.872l-19.68-98.112h-87.040l-19.616 98.112c-4.448 22.24-20.32 40.448-41.728 47.872-11.808 4.128-23.296 8.928-34.4 14.304-8.832 4.32-18.368 6.432-27.904 6.432-12.448 0-24.8-3.616-35.488-10.752l-83.328-55.552-61.568 61.568 55.52 83.328c12.576 18.88 14.208 43.008 4.384 63.36-5.376 11.136-10.208 22.56-14.336 34.432-7.424 21.376-25.664 37.248-47.872 41.696l-98.080 19.68-0.064 87.072 98.112 19.616c22.208 4.448 40.448 20.32 47.872 41.728 4.128 11.808 8.896 23.296 14.304 34.4 9.92 20.416 8.256 44.544-4.352 63.392l-55.488 83.328 61.536 61.568 83.328-55.52c10.688-7.136 23.072-10.752 35.488-10.752 9.504 0 19.040 2.112 27.872 6.368 11.104 5.376 22.56 10.208 34.4 14.336 21.408 7.424 37.28 25.664 41.728 47.872l19.648 98.080 87.040 0.032 19.616-98.112c4.448-22.208 20.32-40.448 41.76-47.872 11.808-4.128 23.264-8.896 34.368-14.304 8.864-4.288 18.368-6.4 27.936-6.4 12.448 0 24.8 3.616 35.488 10.752l83.328 55.52 61.568-61.568-55.552-83.328c-12.576-18.88-14.176-42.976-4.384-63.36 5.376-11.104 10.24-22.56 14.368-34.4 7.424-21.408 25.632-37.28 47.872-41.728l98.048-19.648 0.096-87.040-98.112-19.648zM512 671.968c-123.68 0-224-100.32-224-224 0-123.712 100.32-224 224-224s224 100.32 224 224c0 123.68-100.32 224-224 224zM512 251.936c-108.224 0-196 87.808-196 196 0 108.224 87.776 196 196 196 108.192 0 196-87.776 196-196 0-108.192-87.808-196-196-196zM512 575.968c-70.72 0-128-57.28-128-128 0-70.688 57.28-128 128-128 70.688 0 128 57.312 128 128s-57.312 128-128 128zM512 351.936c-52.992 0-96 43.008-96 96s43.008 96 96 96 96-43.008 96-96c0-52.992-43.008-96-96-96z" />
<glyph unicode="&#xe91b;" glyph-name="camera3" d="M512 639.968c-141.408 0-256-114.592-256-256 0-141.376 114.592-256 256-256 141.376 0 256 114.624 256 256s-114.624 256-256 256zM657.76 259.008c-68.992-80.512-190.176-89.824-270.688-20.8-80.544 68.992-89.824 190.208-20.8 270.688 68.96 80.544 190.176 89.824 270.688 20.8 80.48-68.96 89.792-190.208 20.8-270.688zM512 511.968c8.832 0 16-7.168 16-16s-7.168-16-16-16c-53.024 0-95.968-42.976-96-95.968v-0.064c0-8.8-7.168-16-16-16s-16 7.2-16 16v0.064c0.032 70.656 57.312 127.968 128 127.968zM943.744 670.656l-138.688 23.136-43.936 109.888c-14.688 36.64-49.696 60.32-89.12 60.32h-320c-39.424 0-74.432-23.68-89.152-60.352l-43.904-109.856-138.656-23.136c-46.528-7.712-80.288-47.52-80.288-94.656v-480c0-52.928 43.072-96 96-96h832c52.928 0 96 43.072 96 96v480c0 47.136-33.76 86.944-80.256 94.656zM960 96c0-17.696-14.304-32-32-32h-832c-17.696 0-32 14.304-32 32v480c0 15.648 11.328 28.992 26.752 31.552l174.208 29.024 57.312 143.296c4.896 12.128 16.64 20.128 29.728 20.128h320c13.056 0 24.8-7.968 29.696-20.128l57.312-143.296 174.24-29.024c15.424-2.56 26.752-15.904 26.752-31.552v-480z" />
<glyph unicode="&#xe91c;" glyph-name="tag" d="M1004.512 515.744l-160 256c-23.36 37.408-64.384 60.16-108.512 60.16h-608c-70.688 0-128-57.312-128-128v-512c0-70.688 57.312-128 128-128h608c44.128 0 85.12 22.752 108.512 60.192l160 256c25.984 41.44 25.984 94.144 0 135.648zM950.24 414.016l-160-256.064c-11.744-18.816-32.064-30.048-54.24-30.048h-608c-35.296 0-64 28.736-64 64v512c0 35.296 28.704 64 64 64h608c22.176 0 42.496-11.264 54.24-30.048l160-256c12.896-20.64 12.896-47.264 0-67.84zM736 543.904c-53.056 0-96-42.976-96-96s42.944-96 96-96c52.992 0 96 43.008 96 96 0 53.024-43.008 96-96 96zM736 383.872c-35.36 0-64 28.672-64 64s28.64 64 64 64c35.328 0 64-28.672 64-64 0-35.296-28.672-64-64-64z" />
<glyph unicode="&#xe91d;" glyph-name="lock3" d="M800 544v128c0 159.072-128.928 288-288 288s-288-128.928-288-288v-128c-53.024 0-96-42.976-96-96v-224c0-159.072 128.928-288 288-288h192c159.072 0 288 128.928 288 288v224c0 53.056-43.008 96-96 96zM288 672c0 123.712 100.288 224 224 224s224-100.288 224-224v-128h-64v127.936c0 88.384-71.616 160-160 160s-160-71.616-160-160v-127.936h-64v128zM640 672v-128h-256v128c0 70.688 57.312 128 128 128s128-57.312 128-128zM832 352v-128c0-123.488-100.512-224-224-224h-192c-123.488 0-224 100.512-224 224v224c0 17.664 14.336 32 32 32 21.344 0 42.656 0 64 0h448c21.312 0 42.624 0 64 0 17.632 0 32-14.336 32-32v-96zM512 352c35.328 0 64-28.64 64-64 0-19.488-10.496-56.576-21.312-85.824-8.736-23.616-17.664-42.112-42.688-42.112-23.008 0-33.952 18.688-42.656 42.432-10.688 29.184-21.344 66.080-21.344 85.504 0 35.36 28.672 64 64 64z" />
<glyph unicode="&#xe91e;" glyph-name="bulb" d="M512 960c-194.432 0-352-157.568-352-352 0-128.992 118.016-265.696 160.992-385.76 64.096-179.040 56.992-286.24 191.008-286.24 136 0 126.88 106.688 191.008 285.504 43.104 120.32 160.992 258.496 160.992 386.496 0 194.432-157.632 352-352 352zM594.944 90.368l-158.656-19.808c-5.664 16.384-11.744 35.552-19.136 60.576-0.096 0.32-0.224 0.672-0.288 0.992l198.016 24.736c-2.816-9.44-5.824-19.36-8.448-28.256-4.192-14.368-7.936-26.848-11.488-38.24zM407.552 162.944c-5.824 19.264-12.384 39.552-19.68 61.056h248.512c-3.936-11.488-7.872-23.008-11.264-33.888l-217.568-27.168zM512 0c-32.416 0-47.328 3.744-63.904 40l135.616 16.992c-19.648-52.928-33.952-56.992-71.712-56.992zM661.504 288h-298.656c-15.936 34.56-35.072 69.12-53.952 102.944-41.76 74.72-84.896 152-84.896 217.056 0 158.816 129.184 288 288 288s288-129.184 288-288c0-64.576-43.2-142.272-84.992-217.44-18.688-33.696-37.696-68.192-53.504-102.56zM512 800c8.8 0 16-7.168 16-16s-7.168-16-16-16c-88.224 0-160-71.776-160-160 0-8.832-7.168-16-16-16s-16 7.168-16 16c0 105.888 86.112 192 192 192z" />
<glyph unicode="&#xe91f;" glyph-name="pen2" d="M940.64 877.44c-52.64 52.576-121.952 82.56-190.272 82.56-57.632 0-110.688-21.376-149.44-60.064l-155.744-156.928c-0.48-0.448-1.024-0.736-1.504-1.216-0.256-0.256-0.416-0.608-0.672-0.832l0.064-0.064-330.528-333.088c-15.232-15.136-26.272-33.984-32.416-54.56l-75.168-272.256c-0.064-0.736-4.96-22.112-4.96-32.992 0-61.824 50.208-112 112.128-112 12.32 0 36.16 5.888 37.024 6.016l271.296 71.328c20.608 6.112 39.328 17.248 54.56 32.512l488.416 492.256c88.832 88.896 78.816 237.888-22.784 339.328zM512.448 198.56c-2.624 28.864-10.784 57.184-23.008 84.064l302.56 302.528c18.496-58.432 8.992-119.552-31.552-160.128-0.256-0.256-0.576-0.416-0.8-0.672l0.448-0.416-247.296-249.28c0 7.968 0.384 15.776-0.352 23.904zM473.376 311.808c-11.936 19.616-25.504 38.56-42.304 55.328-19.552 19.552-41.984 34.88-65.408 47.744l305.024 305.024c23.936-10.624 46.88-25.76 67.136-46.016 17.312-17.248 30.688-36.576 40.992-56.672l-305.44-305.408zM335.552 430.016c-29.632 11.936-60.672 18.752-91.776 19.168l246.496 248.384c37.728 36.8 92.672 47.392 146.784 33.984l-301.504-301.536zM133.344 4.064c-3.488-0.8-14.336-3.552-21.696-4.064-26.304 0.32-47.648 21.696-47.648 48 0.384 5.376 2.528 14.624 3.264 17.984l33.696 122.048c36.576 0.992 75.936-13.248 106.88-44.256 31.424-31.36 46.208-71.488 44.608-108.512l-119.104-31.2zM283.968 43.616c-0.768 42.944-18.24 87.616-53.504 122.816-33.344 33.376-76.992 52.64-120.512 54.368l31.872 115.424c2.304 7.68 6.88 15.264 12.512 21.888 64.192 45.952 162.912 32.384 231.488-36.256 72.544-72.512 83.744-178.752 27.872-242.176-3.712-1.952-7.456-3.808-11.488-4.992l-118.24-31.072zM918.112 583.296l-53.888-54.304c0 7.232 0.864 14.176 0.192 21.568-5.632 61.92-34.496 121.792-81.376 168.608-52.128 52.16-121.248 82.080-189.696 82.272l52.992 53.44c26.528 26.464 63.552 41.12 104.032 41.12 51.488 0 104.384-23.296 145.056-63.84 38.176-38.112 60.928-85.472 64.192-133.376 3.008-44.704-11.744-85.696-41.504-115.488z" />
<glyph unicode="&#xe920;" glyph-name="diamond" d="M1005.248 650.336l-162.56 162.592c-12 12-28.32 18.752-45.248 18.752h-570.848c-16.96 0-33.248-6.752-45.248-18.752l-162.56-162.592c-12.576-12.544-18.848-29.088-18.784-45.664 0.096-15.040 5.472-30.048 16.192-42.112l447.968-477.056c12.16-13.696 29.568-21.504 47.84-21.504s35.68 7.808 47.808 21.504l448 477.056c10.944 12.32 16.32 27.744 16.192 43.136-0.128 16.192-6.432 32.32-18.752 44.64zM583.008 607.68h-142.048l71.040 59.168 71.008-59.168zM537.024 687.68l87.424 72.896 64.576-64.576-81.024-67.488-70.976 59.168zM416 628.512l-81.024 67.488 64.576 64.576 87.456-72.896-71.008-59.168zM591.68 575.68l-79.68-398.496-79.68 398.496h159.36zM624.32 575.68h156.992l-235.488-392.608 78.496 392.608zM632.928 607.68l78.816 65.632 65.632-65.632h-144.448zM662.624 767.68h112.384l-61.312-51.104-51.072 51.104zM512 708.48l-71.040 59.2h142.016l-70.976-59.2zM310.272 716.576l-61.312 51.104h112.416l-51.104-51.104zM312.256 673.312l78.784-65.632h-144.416l65.632 65.632zM399.68 575.68l78.496-392.608-235.52 392.608h157.024zM406.528 240.384l-314.88 335.296h113.728l201.152-335.296zM818.624 575.68h113.76l-314.944-335.36 201.184 335.36zM822.624 607.68l-86.176 86.176 73.504 61.28 147.424-147.456h-134.752zM213.952 755.2l73.632-61.344-86.208-86.176h-137.184l149.76 147.52z" />
<glyph unicode="&#xe921;" glyph-name="display2" d="M864 800.128l-704-0.128c-17.696 0-32-14.176-32-31.872v-448c0-17.696 14.304-32 32-32h704c17.696 0 32 14.304 32 32v448c0 17.696-14.304 32-32 32zM864 320h-704v448.128h704v-448.128zM928 928h-832c-53.024 0-96-42.944-96-96v-640c0-52.928 42.816-95.808 95.68-95.936h320.32v-38.944l-199.744-25.952c-14.272-3.552-24.256-16.352-24.256-31.040 0-17.696 14.304-32 32-32h576c17.696 0 32 14.304 32 32 0 14.688-9.984 27.488-24.256 31.072l-199.744 25.92v38.944h320.32c52.864 0.128 95.68 43.008 95.68 95.936v640c0 53.056-43.008 96-96 96zM960 192c0-17.632-14.368-32-32-32h-832c-17.664 0-32 14.368-32 32v640c0 17.664 14.336 32 32 32h832c17.632 0 32-14.336 32-32v-640z" />
<glyph unicode="&#xe922;" glyph-name="location3" d="M512.064 392.128c105.888 0 192 86.144 192 192s-86.112 192-192 192c-105.888 0-192-86.112-192-192s86.112-192 192-192zM512.064 744.128c88.256 0 160-71.744 160-160s-71.744-160-160-160c-88.256 0-160 71.744-160 160s71.744 160 160 160zM512 960c-211.776 0-384-170.112-384-384.032 0-224 192.032-453.152 332.032-614.208 0.512-0.64 22.976-25.76 50.752-25.76 0.064 0 2.336 0 2.464 0 27.744 0 50.24 25.12 50.752 25.76 140.064 161.056 332.064 390.176 332.064 614.208 0 213.92-172.256 384.032-384.064 384.032zM515.744 3.744c-0.672-0.64-2.624-2.048-4.32-3.136-0.32 0.864-2.688 2.752-4.128 4.256-117.28 134.944-315.296 362.688-315.296 571.104 0 176.448 143.584 320.032 320 320.032 176.512 0 320.064-143.584 320.064-320.064 0-208.384-198.016-436.128-316.32-572.192z" />
<glyph unicode="&#xe923;" glyph-name="eye2" d="M1022.88 455.168c-0.32 1.344-0.128 2.784-0.64 4.096-0.192 0.544-0.672 0.832-0.864 1.344-0.32 0.768-0.256 1.632-0.672 2.368-92.8 177.632-294.816 304.896-507.936 304.896-213.152 0-415.136-127.072-508-304.672-0.416-0.736-0.352-1.6-0.672-2.368-0.224-0.512-0.672-0.8-0.864-1.344-0.512-1.312-0.32-2.752-0.64-4.096-0.576-2.4-1.12-4.704-1.12-7.168s0.576-4.736 1.12-7.168c0.32-1.344 0.128-2.784 0.64-4.096 0.192-0.544 0.672-0.832 0.864-1.344 0.32-0.768 0.256-1.632 0.672-2.368 92.832-177.632 294.848-304.896 508-304.896 213.12 0 415.136 127.072 507.936 304.672 0.448 0.736 0.384 1.6 0.672 2.368 0.192 0.512 0.672 0.8 0.864 1.344 0.512 1.312 0.32 2.752 0.64 4.096 0.544 2.432 1.12 4.736 1.12 7.168s-0.576 4.768-1.12 7.168zM512.736 192.384c-179.68 0-355.584 102.112-443.232 255.84 88.128 153.92 263.776 255.68 443.232 255.68 179.616 0 355.552-102.144 443.2-255.84-88.128-153.952-263.744-255.68-443.2-255.68zM512.736 576.032c8.832 0 15.936-7.136 15.936-16 0-8.8-7.136-15.968-15.936-15.968v-0.032c-52.928 0-95.968-43.040-95.968-95.904 0-8.832-7.168-16-15.968-16-8.832 0-16 7.168-16 16 0 70.56 57.184 127.744 127.744 127.872 0.064 0 0.128 0.032 0.192 0.032zM512 672c-123.744 0-224-100.288-224-224s100.288-224 224-224c123.68 0 224 100.32 224 224 0 123.744-100.32 224-224 224zM512 256c-105.888 0-192 86.112-192 192s86.112 192 192 192c105.888 0 192-86.112 192-192s-86.112-192-192-192z" />
<glyph unicode="&#xe924;" glyph-name="bubble3" d="M512 736c8.832 0 16-7.168 16-16s-7.2-16-16-16c-170.464 0-320-89.728-320-192 0-8.832-7.168-16-16-16s-16 7.168-16 16c0 121.408 161.184 224 352 224zM512 896c-282.784 0-512-171.936-512-384 0-132.064 88.928-248.512 224.256-317.632 0-0.864-0.256-1.44-0.256-2.368 0-57.376-42.848-119.136-61.696-151.552 0.032 0 0.064 0 0.064 0-1.504-3.52-2.368-7.392-2.368-11.456 0-16 12.96-28.992 28.992-28.992 3.008 0 8.288 0.8 8.16 0.448 100 16.384 194.208 108.256 216.096 134.88 31.968-4.704 64.928-7.328 98.752-7.328 282.72 0 512 171.936 512 384s-229.248 384-512 384zM512 192c-29.344 0-59.456 2.24-89.472 6.624-3.104 0.512-6.208 0.672-9.28 0.672-19.008 0-37.216-8.448-49.472-23.36-13.696-16.672-52.672-53.888-98.72-81.248 12.48 28.64 22.24 60.736 22.912 93.824 0.192 2.048 0.288 4.128 0.288 5.888 0 24.064-13.472 46.048-34.88 56.992-118.592 60.544-189.376 157.984-189.376 260.608 0 176.448 200.96 320 448 320 246.976 0 448-143.552 448-320s-200.992-320-448-320z" />
<glyph unicode="&#xe925;" glyph-name="stack2" d="M1021.568 369.44l-128.064 480.192c-7.744 27.296-33.056 46.368-61.504 46.368h-640c-28.48 0-53.76-19.072-61.504-46.368l-128.064-480.192c-1.632-5.824-2.432-11.68-2.432-17.44v-224c0-70.688 57.312-128 128-128h768c70.688 0 128 57.312 128 128v224c0 5.76-0.8 11.616-2.432 17.44zM960 128c0-35.264-28.736-64-64-64h-768c-35.296 0-64 28.736-64 64v224l128.032 480.032h639.904l128.064-480.032v-224zM759.744 768h-495.488c-14.496 0-27.2-9.76-30.944-23.776l-110.24-384c-2.528-9.632-0.512-19.872 5.568-27.744s15.424-12.48 25.344-12.48h146.176l46.304-92.64c10.88-21.664 33.024-35.36 57.28-35.36h216.512c24.256 0 46.368 13.696 57.248 35.36l46.304 92.64h146.176c9.952 0 19.328 4.64 25.376 12.512s8.064 18.112 5.568 27.744l-110.24 384c-3.744 14.016-16.448 23.744-30.944 23.744zM776.992 384h-53.184c-24.384 0-46.304-13.504-57.248-35.36l-46.304-92.64h-216.512l-46.304 92.64c-10.944 21.856-32.864 35.36-57.248 35.36h-129.504l93.568 352h495.488l93.568-352h-76.32z" />
<glyph unicode="&#xe926;" glyph-name="cup" d="M899.552 799.296l-38.88 116.96c-8.672 26.144-33.12 43.744-60.672 43.744h-576c-27.584 0-52-17.6-60.736-43.744l-39.2-117.024c-33.408-2.144-60.064-29.28-60.064-63.232v-96c0-35.328 28.672-64 64-64h33.088c0-2.4-0.96-4.672-0.672-7.072l64-576c3.584-32.352 30.944-56.928 63.584-56.928h448c32.64 0 60 24.576 63.552 56.928l64 576c0.32 2.4-0.672 4.672-0.672 7.072h33.12c35.328 0 64 28.672 64 64v96c0 34.080-26.88 61.344-60.448 63.296zM224 896h576l32-96h-640l32 96zM288 0l-10.656 96h469.312l-10.656-96h-448zM750.176 128h-476.416l-35.552 320h547.552l-35.584-320zM789.312 480h-554.656l-10.656 96h576l-10.688-96zM896 640h-768v96h768v-96z" />
<glyph unicode="&#xe927;" glyph-name="phone3" d="M768 960h-512c-53.056 0-96-42.976-96-96v-832c0-53.056 42.976-96 96-96h512c52.992 0 96 43.008 96 96v832c0 53.056-43.008 96-96 96zM800 32c0-17.632-14.368-32-32-32h-512c-17.664 0-32 14.304-32 32v64.128h576v-64.128zM800 128.128h-576v639.872h576v-639.872zM800 800h-576v64c0 17.664 14.336 32 32 32h512c17.632 0 32-14.336 32-32v-64zM576 848c0-8.832-7.2-16-16-16h-96c-8.864 0-16 7.168-16 16v0c0 8.864 7.136 16 16 16h96c8.8 0 16-7.136 16-16v0zM544 48.128c0-8.8-7.2-16-16-16h-32c-8.832 0-16 7.2-16 16v0c0 8.864 7.168 16 16 16h32c8.8 0 16-7.136 16-16v0z" />
<glyph unicode="&#xe928;" glyph-name="news" d="M928 960h-704c-53.024 0-96-42.944-96-96v-64h-32c-53.024 0-96-42.944-96-96v-640c0-70.688 57.312-128 128-128h768c70.688 0 128 57.312 128 128v800c0 53.056-43.008 96-96 96zM960 64c0-35.264-28.736-64-64-64h-768c-35.296 0-64 28.736-64 64v640c0 17.664 14.336 32 32 32h32v-640c0-17.696 14.304-32 32-32s32 14.304 32 32v768c0 17.664 14.336 32 32 32h704c17.632 0 32-14.336 32-32v-800zM623.936 543.84c-8.8 0-16 7.168-16 16s7.2 16 16 16h256c8.864 0 16-7.168 16-16s-7.136-16-16-16h-256zM623.936 639.84c-8.8 0-16 7.168-16 16s7.2 16 16 16h256c8.864 0 16-7.168 16-16s-7.136-16-16-16h-256zM623.936 735.84c-8.8 0-16 7.168-16 16s7.2 16 16 16h256c8.864 0 16-7.168 16-16s-7.136-16-16-16h-256zM528 95.872c8.832 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h256zM528 191.872c8.832 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h256zM528 287.872c8.832 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h256zM880 95.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.864 0-16 7.136-16 16 0 8.8 7.136 16 16 16h256zM880 191.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.864 0-16 7.136-16 16 0 8.8 7.136 16 16 16h256zM880 287.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.864 0-16 7.136-16 16 0 8.8 7.136 16 16 16h256zM880 479.872c8.8 0 16-7.168 16-16s-7.2-16-16-16h-608c-8.832 0-16 7.168-16 16s7.168 16 16 16h608zM880 383.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-608c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h608zM288 544h224c17.696 0 32 14.304 32 32v223.872c0 17.696-14.304 32-32 32h-224c-17.696 0-32-14.304-32-32v-223.872c0-17.664 14.304-32 32-32zM320 768h160v-160h-160v160z" />
<glyph unicode="&#xe929;" glyph-name="mail5" d="M896 800h-768c-70.688 0-128-57.344-128-128v-416c0-70.688 57.312-128 128-128h768c70.688 0 128 57.312 128 128v416c0 70.656-57.312 128-128 128zM64 632l223.968-168-223.968-168v336zM960 256c0-35.328-28.736-64-64-64h-768c-35.296 0-64 28.672-64 64l250.624 188 139.776-104.864c17.056-12.736 37.312-19.2 57.6-19.2 20.256 0 40.512 6.432 57.568 19.2l139.808 104.864 250.624-188zM960 296l-224 168 224 168v-336zM550.368 364.736c-11.168-8.384-24.416-12.8-38.368-12.8s-27.232 4.448-38.4 12.8l-409.6 307.264c0 35.296 28.704 64 64 64h768c35.264 0 64-28.704 64-64l-409.632-307.264z" />
<glyph unicode="&#xe92a;" glyph-name="like" d="M933.248 624.896c-40 10.496-134.048 10.368-271.616 14.016 6.496 30.016 8 57.088 8 105.152 0 114.816-83.648 215.936-157.632 215.936-52.256 0-95.328-42.72-96-95.264-0.704-64.448-20.64-175.744-128-232.192-7.872-4.16-30.4-15.264-33.696-16.704l1.696-1.44c-16.8 14.496-40.096 25.6-64 25.6h-96c-52.928 0-96-43.072-96-96v-512c0-52.928 43.072-96 96-96h96c38.080 0 69.952 23.008 85.376 55.264 0.384-0.128 1.056-0.32 1.504-0.384 2.112-0.576 4.608-1.184 7.648-1.984 0.576-0.16 0.864-0.224 1.472-0.384 18.432-4.576 53.92-13.056 129.76-30.496 16.256-3.712 102.144-22.016 191.104-22.016h174.944c53.312 0 91.744 20.512 114.624 61.696 0.32 0.64 7.68 15.008 13.696 34.432 4.512 14.624 6.176 35.328 0.736 56.32 34.368 23.616 45.44 59.328 52.64 82.56 12.064 38.112 8.448 66.752 0.064 87.264 19.328 18.24 35.808 46.048 42.752 88.512 4.32 26.304-0.32 53.376-12.448 75.904 18.112 20.352 26.368 45.952 27.328 69.632l0.384 6.688c0.224 4.192 0.416 6.784 0.416 16 0 40.416-28 91.968-90.752 109.888zM224 32c0-17.696-14.304-32-32-32h-96c-17.696 0-32 14.304-32 32v512c0 17.696 14.304 32 32 32h96c17.696 0 32-14.304 32-32v-512zM959.264 494.88c-0.64-15.808-7.264-46.88-63.264-46.88-48 0-64 0-64 0-8.864 0-16-7.168-16-16s7.136-16 16-16c0 0 14.016 0 62.016 0s54.304-39.808 51.2-59.008c-3.968-23.872-15.168-68.992-69.216-68.992-53.984 0-76 0-76 0-8.864 0-16-7.136-16-16 0-8.8 7.136-16 16-16 0 0 38.016 0 63.008 0 54.016 0 49.248-41.184 41.504-65.76-10.208-32.288-16.448-62.24-84.512-62.24-23.008 0-52.192 0-52.192 0-8.864 0-16-7.136-16-16 0-8.8 7.136-16 16-16 0 0 22.176 0 50.176 0 35.008 0 36.64-33.12 32.992-44.992-4-12.992-8.736-22.624-8.928-23.072-9.664-17.44-25.248-27.936-58.24-27.936h-174.944c-87.872 0-175.040 19.936-177.28 20.448-132.928 30.624-139.936 32.992-148.288 35.36 0 0-27.072 4.576-27.072 28.192l-0.224 441.984c0 15.008 9.568 28.576 25.408 33.344 1.984 0.768 4.672 1.6 6.592 2.4 146.176 60.544 190.688 193.28 192 302.272 0.192 15.328 12 32 32 32 33.824 0 93.632-67.904 93.632-151.936 0-75.872-3.072-88.992-29.632-168.064 320 0 317.76-4.608 345.984-12 35.008-10.016 38.016-39.008 38.016-48.992 0-10.976-0.32-9.376-0.736-20.128zM144 128c-26.496 0-48-21.504-48-48s21.504-48 48-48 48 21.504 48 48-21.504 48-48 48zM144 64c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16z" />
<glyph unicode="&#xe92b;" glyph-name="photo" d="M864 960h-704c-70.688 0-128-57.312-128-128v-768c0-70.688 57.312-128 128-128h704c70.688 0 128 57.312 128 128v768c0 70.688-57.312 128-128 128zM928 64c0-35.264-28.736-64-64-64h-704c-35.296 0-64 28.736-64 64v768c0 35.296 28.704 64 64 64h704c35.264 0 64-28.704 64-64v-768zM832 832h-640c-17.696 0-32-14.304-32-32v-576c0-17.696 14.304-32 32-32h640c17.696 0 32 14.304 32 32v576c0 17.696-14.304 32-32 32zM832 800v-443.808l-104 112.96c-6.112 6.912-14.816 10.848-24 10.848s-17.952-3.936-24-10.848l-83.328-94.4-252.672 286.4c-6.080 6.912-14.816 10.848-24 10.848s-17.92-3.936-24-10.848l-104-119.936v258.784h640zM192 492.8l128 147.2 276.672-313.632 88.384-102.368h-493.056v268.8zM727.68 224l-109.696 126.56 86.016 97.44 128-140.128v-83.872h-104.32zM640 544c52.992 0 96 42.976 96 96s-43.008 96-96 96c-53.056 0-96-42.976-96-96s42.944-96 96-96zM640 704c35.264 0 64-28.704 64-64s-28.736-64-64-64c-35.328 0-64 28.704-64 64s28.672 64 64 64z" />
<glyph unicode="&#xe92c;" glyph-name="note" d="M1005.248 717.28l-192 192c-12 12-28.32 18.72-45.248 18.72h-672c-52.928 0-96-43.040-96-96v-768c0-52.928 43.072-96 96-96h832c52.928 0 96 43.072 96 96v608c0 16.992-6.752 33.28-18.752 45.28zM960 64c0-17.696-14.304-32-32-32h-832c-17.696 0-32 14.304-32 32v768c0 17.696 14.304 32 32 32h640v-128h-0.064c0-53.024 43.008-96 96-96h128.064v-576zM863.936 672h-32c-35.264 0-64 28.704-64 64h0.064v128l192-192h-96.064zM496 704c-8.832 0-16 7.136-16 16s7.168 16 16 16h160c8.8 0 16-7.168 16-16s-7.2-16-16-16h-160zM496 608c-8.832 0-16 7.168-16 16s7.168 16 16 16h160c8.8 0 16-7.168 16-16s-7.2-16-16-16h-160zM480 528c0 8.864 7.168 16 16 16h384c8.8 0 16-7.168 16-16s-7.2-16-16-16h-384c-8.832 0-16 7.168-16 16zM880 352c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-736c-8.832 0-16 7.2-16 16 0 8.864 7.168 16 16 16h736zM880 256c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-736c-8.832 0-16 7.2-16 16 0 8.864 7.168 16 16 16h736zM880 160c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-736c-8.832 0-16 7.2-16 16 0 8.864 7.168 16 16 16h736zM880 448c8.8 0 16-7.168 16-16s-7.2-16-16-16h-736c-8.832 0-16 7.136-16 16s7.168 16 16 16h736zM160 512h224c17.696 0 32 14.304 32 32v192c0 17.696-14.304 32-32 32h-224c-17.696 0-32-14.304-32-32v-192c0-17.664 14.304-32 32-32zM192 704h160v-128h-160v128z" />
<glyph unicode="&#xe92d;" glyph-name="clock4" d="M480 640c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM480 256c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM288 448c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM672 448c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM344.224 312.256c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM344.224 583.776c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM615.744 312.256c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM832 512c-2.24 0-4.128-1.056-6.304-1.28-11.136 55.84-37.44 105.792-73.504 147.008l-45.952 249.984c-5.6 30.304-32.064 52.288-62.912 52.288h-256c-30.848 0-57.28-22.016-62.944-52.32l-44.8-241.568c-53.76-57.184-87.584-133.376-87.584-218.112 0-82.656 32.448-156.96 83.872-213.696l45.184-246.016c5.632-30.272 32.096-52.288 62.944-52.288h256c30.816 0 57.248 22.016 62.944 52.32l45.568 245.824c38.048 41.952 65.696 93.44 77.184 151.2 2.176-0.288 4.064-1.344 6.304-1.344 35.328 0 64 28.672 64 64 0 35.36-28.672 64-64 64zM387.328 896h256l32-172.384c-47.264 27.488-101.376 44.384-160 44.384-58.592 0-112.736-16.896-160-44.384l32 172.384zM640 0h-256l-32 172.384c47.232-27.456 101.376-44.384 160-44.384 58.592 0 112.768 16.928 160 44.384l-32-172.384zM512 192c-141.152 0-256 114.88-256 256 0 141.152 114.848 256 256 256s256-114.848 256-256c0-141.12-114.88-256-256-256zM670.112 607.168c3.872-3.872 4.256-10.112 0.896-14.368l-77.632-96.672-59.136-71.2c-6.048-5.824-14.368-8.8-22.368-8.864-8.608 0.064-16.64 3.392-22.624 9.344s-9.248 13.92-9.248 22.336c0 8.704 3.36 16.832 9.472 22.976l166.144 137.12c4.384 3.52 10.624 3.2 14.496-0.672z" />
<glyph unicode="&#xe92e;" glyph-name="paperplane" d="M1009.376 954.88c-5.312 3.424-11.36 5.12-17.376 5.12-6.176 0-12.384-1.76-17.76-5.376l-960-640c-9.888-6.56-15.328-18.112-14.048-29.952 1.216-11.808 8.896-22.016 19.936-26.368l250.368-100.192 117.728-206.016c5.632-9.888 16.096-16 27.424-16.128 0.128 0 0.224 0 0.352 0 11.232 0 21.664 5.952 27.424 15.552l66.464 110.816 310.24-124.064c3.808-1.536 7.808-2.272 11.872-2.272 5.44 0 10.816 1.376 15.68 4.128 8.448 4.736 14.24 13.056 15.872 22.624l160 960c2.080 12.576-3.488 25.184-14.176 32.128zM100.352 295.136l741.6 494.432-539.2-577.184c-2.848 1.696-5.376 3.936-8.512 5.184l-193.888 77.568zM326.048 189.888c-0.064 0.128-0.16 0.192-0.224 0.32l606.176 648.8-516.768-805.184-89.184 156.064zM806.944 12.512l-273.312 109.312c-6.496 2.56-13.248 3.424-19.936 3.808l420.864 652.416-127.616-765.536z" />
<glyph unicode="&#xe92f;" glyph-name="params" d="M256 767.328v96.672c0 52.928-43.072 96-96 96s-96-43.072-96-96v-96.672c-38.656-29.28-64-75.136-64-127.328s25.344-98.048 64-127.264v-480.736c0-52.928 43.072-96 96-96s96 43.072 96 96v480.736c38.656 29.184 64 75.072 64 127.264s-25.344 98.048-64 127.328zM128 864c0 17.696 14.304 32 32 32s32-14.304 32-32v-67.2c-10.336 2.080-21.024 3.2-32 3.2s-21.664-1.12-32-3.2v67.2zM192 32c0-17.696-14.304-32-32-32s-32 14.304-32 32v451.264c10.336-2.144 21.024-3.264 32-3.264s21.664 1.12 32 3.264v-451.264zM251.68 613.12c-0.512-1.696-0.96-3.36-1.568-5.056-3.040-8.448-6.944-16.448-12.096-23.552-0.128-0.192-0.32-0.32-0.448-0.512-5.568-7.616-12.192-14.368-19.712-20.064-0.128-0.128-0.224-0.192-0.32-0.256-7.712-5.824-16.32-10.496-25.568-13.76-10.016-3.616-20.672-5.92-31.968-5.92s-21.952 2.304-32 5.952c-9.248 3.264-17.856 7.936-25.568 13.76-0.096 0.064-0.192 0.128-0.32 0.256-7.52 5.696-14.144 12.448-19.712 20.064-0.128 0.192-0.32 0.32-0.448 0.512-5.152 7.136-9.056 15.136-12.096 23.552-0.608 1.696-1.056 3.36-1.568 5.056-2.528 8.544-4.288 17.472-4.288 26.848 0 9.44 1.76 18.368 4.32 26.944 0.512 1.696 0.96 3.36 1.568 4.992 3.008 8.448 6.912 16.448 12.096 23.616 0.128 0.192 0.32 0.32 0.448 0.512 5.568 7.552 12.192 14.368 19.712 20.064 0.128 0.064 0.224 0.192 0.32 0.256 7.68 5.728 16.288 10.432 25.536 13.728 10.048 3.584 20.704 5.888 32 5.888s21.952-2.304 32-5.888c9.248-3.328 17.856-8 25.568-13.76 0.096-0.064 0.192-0.192 0.32-0.256 7.52-5.696 14.144-12.512 19.712-20.064 0.128-0.192 0.32-0.32 0.448-0.512 5.152-7.136 9.056-15.136 12.064-23.584 0.608-1.632 1.088-3.296 1.568-4.992 2.56-8.576 4.32-17.504 4.32-26.944 0-9.376-1.76-18.304-4.32-26.88zM960 767.328v96.672c0 52.928-43.072 96-96 96s-96-43.072-96-96v-96.672c-38.688-29.28-64-75.136-64-127.328s25.312-98.048 64-127.264v-480.736c0-52.928 43.072-96 96-96s96 43.072 96 96v480.736c38.624 29.184 64 75.072 64 127.264s-25.376 98.048-64 127.328zM832 864c0 17.696 14.304 32 32 32s32-14.304 32-32v-67.2c-10.368 2.080-21.056 3.2-32 3.2-11.008 0-21.696-1.12-32-3.2v67.2zM896 32c0-17.696-14.304-32-32-32s-32 14.304-32 32v451.264c10.304-2.144 20.992-3.264 32-3.264 10.944 0 21.632 1.12 32 3.264v-451.264zM955.68 613.12c-0.512-1.696-0.992-3.36-1.568-5.056-3.072-8.448-6.944-16.448-12.128-23.552-0.128-0.192-0.32-0.32-0.448-0.512-5.568-7.616-12.192-14.368-19.68-20.064-0.128-0.128-0.256-0.192-0.32-0.256-7.744-5.824-16.32-10.496-25.568-13.76-10.016-3.616-20.704-5.92-31.968-5.92-11.328 0-21.952 2.304-32 5.952-9.248 3.264-17.888 7.936-25.568 13.76-0.128 0.064-0.192 0.128-0.32 0.256-7.552 5.696-14.176 12.448-19.744 20.064-0.128 0.192-0.32 0.32-0.448 0.512-5.12 7.136-9.056 15.136-12.064 23.552-0.64 1.696-1.056 3.36-1.568 5.056-2.528 8.544-4.288 17.472-4.288 26.848 0 9.44 1.76 18.368 4.32 26.944 0.512 1.696 0.928 3.36 1.568 4.992 3.008 8.448 6.944 16.448 12.064 23.616 0.128 0.192 0.32 0.32 0.448 0.512 5.568 7.552 12.192 14.368 19.744 20.064 0.128 0.064 0.192 0.192 0.32 0.256 7.68 5.76 16.32 10.432 25.568 13.76 10.016 3.552 20.64 5.856 31.968 5.856 11.264 0 21.952-2.304 32-5.888 9.248-3.328 17.824-8 25.568-13.76 0.064-0.064 0.192-0.192 0.32-0.256 7.488-5.696 14.112-12.512 19.68-20.064 0.128-0.192 0.32-0.32 0.448-0.512 5.184-7.2 9.056-15.2 12.128-23.616 0.576-1.632 1.056-3.328 1.568-4.992 2.528-8.544 4.288-17.472 4.288-26.912 0-9.376-1.76-18.304-4.32-26.88zM608 383.328v480.672c0 52.928-43.072 96-96 96s-96-43.072-96-96v-480.672c-38.656-29.248-64-75.136-64-127.328s25.344-98.048 64-127.264v-96.736c0-52.928 43.072-96 96-96s96 43.072 96 96v96.736c38.624 29.184 64 75.072 64 127.264s-25.376 98.048-64 127.328zM480 864c0 17.696 14.304 32 32 32s32-14.304 32-32v-451.2c-10.368 2.048-21.056 3.2-32 3.2-10.976 0-21.664-1.12-32-3.2v451.2zM544 32c0-17.696-14.304-32-32-32s-32 14.304-32 32v67.264c10.336-2.144 21.024-3.264 32-3.264 10.944 0 21.632 1.12 32 3.264v-67.264zM603.68 229.12c-0.512-1.696-0.992-3.36-1.568-5.056-3.072-8.448-6.944-16.448-12.128-23.552-0.128-0.192-0.32-0.32-0.448-0.512-5.568-7.616-12.192-14.368-19.68-20.064-0.128-0.128-0.256-0.192-0.32-0.256-7.744-5.824-16.32-10.496-25.568-13.76-10.016-3.616-20.704-5.92-31.968-5.92-11.296 0-21.952 2.304-32 5.952-9.248 3.264-17.856 7.936-25.568 13.76-0.096 0.064-0.192 0.128-0.32 0.256-7.52 5.696-14.144 12.448-19.712 20.064-0.128 0.192-0.32 0.32-0.448 0.512-5.152 7.136-9.056 15.136-12.096 23.552-0.608 1.696-1.056 3.36-1.568 5.056-2.528 8.544-4.288 17.472-4.288 26.848 0 9.44 1.76 18.368 4.32 26.944 0.512 1.696 0.96 3.36 1.568 4.992 3.040 8.448 6.944 16.448 12.096 23.616 0.128 0.192 0.32 0.32 0.448 0.512 5.568 7.552 12.192 14.368 19.712 20.064 0.128 0.064 0.224 0.192 0.32 0.256 7.712 5.76 16.32 10.432 25.568 13.76 10.016 3.552 20.672 5.856 31.968 5.856 11.264 0 21.952-2.304 32-5.888 9.248-3.328 17.824-8 25.568-13.76 0.064-0.064 0.192-0.192 0.32-0.256 7.488-5.696 14.112-12.512 19.68-20.064 0.128-0.192 0.32-0.32 0.448-0.512 5.184-7.2 9.056-15.2 12.128-23.616 0.576-1.632 1.056-3.328 1.568-4.992 2.528-8.544 4.288-17.472 4.288-26.912 0-9.376-1.76-18.304-4.32-26.88z" />
<glyph unicode="&#xe930;" glyph-name="banknote" d="M1005.28 621.248l-320 320c-15.872 15.872-38.88 22.24-60.672 16.864-11.488-2.816-21.76-8.736-29.888-16.864-7.264-7.264-12.736-16.256-15.872-26.304-14.496-47.008-39.552-87.872-76.64-124.928-49.536-49.504-114.048-87.008-182.304-126.656-72.448-41.984-147.296-85.504-208.64-146.816-52.128-52.192-87.616-110.24-108.416-177.632-7.008-22.752-0.896-47.36 15.872-64.192l320-320c15.872-15.872 38.88-22.24 60.672-16.864 11.488 2.88 21.76 8.736 29.888 16.864 7.264 7.264 12.736 16.256 15.872 26.368 14.528 47.008 39.584 87.872 76.704 124.928 49.504 49.504 113.984 86.944 182.304 126.56 72.384 42.048 147.264 85.568 208.576 146.88 52.128 52.128 87.616 110.24 108.448 177.632 6.976 22.72 0.832 47.424-15.904 64.16zM384 0c-105.984 105.984-214.016 214.048-320 320 90.944 294.432 485.12 281.568 576 576 105.984-105.952 214.048-214.016 320.064-320-90.976-294.368-485.152-281.568-576.064-576zM625.984 483.2c-10.432 8.736-20.928 14.688-31.488 17.632-10.496 2.944-20.992 4.128-31.616 3.36-10.496-0.8-21.248-3.2-32-7.328-10.752-4.192-21.568-8.736-32.448-14.016-17.184 19.744-34.368 39.264-51.552 57.376 7.744 7.008 15.264 10.56 22.496 10.816 7.264 0.32 14.24-0.448 20.864-2.112 6.752-1.696 12.928-3.136 18.624-4.256 5.76-1.12 10.752 0.128 15.136 3.808 4.64 4 7.2 9.184 7.552 15.424 0.32 6.304-2.048 12.448-7.328 18.432-6.752 7.744-14.88 12.448-24.64 14.176-9.632 1.696-19.488 1.568-29.76-0.672-10.112-2.304-19.744-6.112-28.864-11.488s-16.448-10.88-21.888-16.256c-2.080 1.984-4.16 3.936-6.24 5.888-2.304 2.112-5.184 3.264-8.64 3.2-3.488 0-6.368-1.504-8.736-4.256-2.304-2.688-3.36-5.824-2.944-9.12 0.32-3.424 1.696-6.048 4.064-8.064 2.080-1.76 4.16-3.488 6.24-5.312-8.192-9.888-14.944-20.8-20.256-32.32-5.376-11.552-8.576-23.008-9.76-34.112-1.248-11.2-0.064-21.44 3.36-30.944 3.424-9.568 9.76-17.696 19.008-25.376 15.072-12.512 32.8-17.824 53.376-16.64 20.512 1.248 42.624 7.36 66.4 20.128 18.88-21.824 37.824-43.488 56.736-63.616-8-6.752-15.008-10.624-21.184-11.872-6.176-1.312-11.68-1.184-16.672 0.32-4.992 1.568-9.632 3.808-13.888 6.688-4.256 2.944-8.448 5.44-12.64 7.488-4.128 2.048-8.384 3.2-12.736 3.264s-8.992-2.048-14.112-6.432c-5.248-4.576-7.872-9.888-7.872-15.872 0-5.952 2.752-12 8.128-18.112 5.44-6.112 12.512-11.264 21.056-15.328s18.208-6.624 28.832-7.328c10.624-0.736 21.824 0.864 33.632 5.248 11.872 4.32 23.616 12.128 35.2 23.744 5.568-5.44 11.2-10.624 16.8-15.616 2.368-2.048 5.248-3.072 8.736-2.816 3.36 0.128 6.304 1.696 8.64 4.512 2.368 2.88 3.36 6.048 3.008 9.376-0.32 3.36-1.696 5.952-4 7.808-5.632 4.512-11.264 9.248-16.864 14.24 9.568 11.744 17.248 24.128 22.944 36.384 5.696 12.32 9.056 24.192 10.176 35.2 1.12 11.072-0.192 21.056-3.808 30.112-3.584 9.184-9.952 17.056-19.072 24.64zM447.072 461.504c-9.056-0.384-16.96 2.624-23.872 9.312-2.944 2.816-4.992 6.24-6.24 10.304-1.312 4.064-1.76 8.512-1.248 13.376 0.448 4.8 1.888 9.824 4.384 14.88 2.368 5.056 5.888 10.112 10.368 15.008 16.224-16.128 32.416-33.824 48.64-52.128-12.288-6.752-22.976-10.368-32.032-10.752zM598.016 397.44c-2.88-5.312-6.176-10.048-10.048-14.176-17.952 18.112-35.872 38.016-53.76 58.432 4.576 2.048 9.376 4.192 14.56 6.368s10.368 3.616 15.552 4.512c5.312 0.8 10.56 0.576 15.808-0.672 5.184-1.312 10.112-4.128 14.688-8.576 4.512-4.512 7.36-9.184 8.512-14.24 1.248-5.12 1.312-10.304 0.448-15.616-0.928-5.344-2.816-10.656-5.76-16.032zM470.944 250.24c6.304 5.088 15.584 4.832 21.376-1.056 6.272-6.24 6.272-16.448 0-22.688-0.512-0.512-1.056-0.864-1.632-1.312l0.064-0.064c-20.256-15.392-36.896-29.248-54.848-47.2-16.224-16.192-30.88-33.248-43.552-50.56l-20.448-28c-0.64-1.152-1.408-2.208-2.368-3.2-6.272-6.24-16.48-6.24-22.72 0-5.44 5.44-6.112 13.824-2.112 20.064l-0.064 0.064 21.888 29.888c13.664 18.688 29.376 36.992 46.752 54.368 18.080 18.144 37.6 34.336 57.6 49.696h0.064zM588.096 713.12c16.192 16.192 30.816 33.184 43.52 50.592l21.248 29.12c0.768 1.376 1.632 2.752 2.816 3.936 6.304 6.304 16.512 6.304 22.816 0 5.984-6.016 6.24-15.52 0.8-21.888l0.064-0.064-21.888-30.016c-13.696-18.688-29.376-36.928-46.752-54.304-18.080-18.080-37.568-34.336-57.568-49.696l-0.128 0.064c-6.368-5.856-16.256-5.728-22.368 0.448-6.304 6.304-6.304 16.576 0 22.88 1.12 1.184 2.432 2.016 3.744 2.752 18.816 14.368 36.96 29.44 53.696 46.176z" />
<glyph unicode="&#xe931;" glyph-name="data" d="M512 960c-215.808 0-448-65.056-448-208v-608c0-142.88 232.192-208 448-208 215.776 0 448 65.12 448 208v608c0 142.944-232.256 208-448 208zM896 144c0-79.488-171.936-144-384-144-212.096 0-384 64.512-384 144v119.552c66.112-68.128 225.6-103.552 384-103.552s317.888 35.424 384 103.552v-119.552zM896 336h-0.128c0-0.32 0.128-0.672 0.128-0.992 0-79.008-171.936-143.008-384-143.008s-384 64-384 143.008c0 0.32 0.128 0.672 0.128 0.992h-0.128v119.552c66.112-68.128 225.6-103.552 384-103.552s317.888 35.424 384 103.552v-119.552zM896 528h-0.128c0-0.32 0.128-0.672 0.128-0.992 0-79.008-171.936-143.008-384-143.008s-384 64-384 143.008c0 0.32 0.128 0.672 0.128 0.992h-0.128v109.952c83.872-63.904 237.6-93.952 384-93.952s300.128 30.048 384 93.952v-109.952zM512 608c-212.096 0-384 64.512-384 144 0 79.552 171.904 144 384 144 212.064 0 384-64.448 384-144 0-79.488-171.936-144-384-144zM768 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM768 320c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM768 512c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32z" />
<glyph unicode="&#xe932;" glyph-name="music2" d="M1001.152 944.992c-11.616 9.76-26.176 15.008-41.12 15.008-3.68 0-7.424-0.32-11.136-0.992l-544.064-96c-30.592-5.376-52.864-31.936-52.864-63.008v-549.44c-32.48 23.552-74.624 37.44-121.408 37.44-27.2 0-54.4-4.512-80.928-13.312-60.736-20.256-109.44-60.864-133.632-111.488-18.688-39.136-21.088-81.696-6.848-119.872 24.352-65.216 93.536-107.328 176.256-107.328 27.2 0 54.4 4.448 80.896 13.312 60.704 20.192 109.408 60.8 133.6 111.36 10.4 21.824 15.264 44.672 15.456 67.328h0.576v512c3.68 0 7.424 0.32 11.136 0.928l532.96 94.048v-388.416c-32.512 23.552-74.624 37.44-121.44 37.44-27.2 0-54.432-4.512-80.928-13.312-60.736-20.256-109.44-60.864-133.568-111.488-18.688-39.136-21.12-81.696-6.88-119.872 24.384-65.216 93.504-107.328 176.256-107.328 27.2 0 54.432 4.448 80.928 13.312 60.672 20.192 109.376 60.8 133.568 111.36 10.432 21.824 15.264 44.672 15.488 67.328h0.576v672c0 18.88-8.384 36.864-22.88 48.992zM246.016 9.984c-76.672-25.568-155.936-0.576-176.928 55.68-21.056 56.32 24.032 122.688 100.672 148.256 76.672 25.568 155.936 0.64 176.928-55.68 21.088-56.288-24-122.688-100.672-148.256zM852.896 105.984c-76.736-25.568-156-0.576-176.992 55.68-21.056 56.32 24.064 122.688 100.672 148.256 76.736 25.568 156 0.64 176.992-55.68 21.088-56.288-23.968-122.688-100.672-148.256zM958.72 800l-544.064-96v96l544.064 96v-96z" />
<glyph unicode="&#xe933;" glyph-name="megaphone2" d="M800 960c-65.696 0-117.312-45.12-154.368-114.752l-0.672 0.384c-53.824-105.376-133.952-173.632-221.728-173.632h-295.232c-71.776 0-128-70.304-128-160 0-89.76 56.224-160 128-160 35.296-0.128 63.84-28.672 63.84-64v-288c0-35.36 28.672-64 64-64h128c35.328 0 64 28.64 64 64v32c0 32-32 46.304-32 64v224c0 0.736 0.512 1.248 0.576 1.984 0.32 4.576 1.568 8.8 3.584 12.64 0.576 1.056 1.184 1.888 1.888 2.816 2.56 3.808 5.792 6.944 9.728 9.376 0.192 0.128 0.256 0.32 0.448 0.448 0.128 0 0.224 0.128 0.352 0.128 2.56 1.44 5.632 1.76 8.512 2.56 80.768-8.576 153.888-73.76 204.064-171.936l0.8 0.384c37.088-69.408 88.576-114.4 154.208-114.4 147.072 0 224 225.376 224 448s-76.928 448-224 448zM640 512c0 33.184 1.952 65.248 5.248 96h90.752c35.328 0 64-43.008 64-96 0-53.056-28.672-96-64-96h-90.752c-3.296 30.752-5.248 62.752-5.248 96zM64 512c0 52.992 28.672 96 64 96h224.448c-19.84-23.328-32.448-57.184-32.448-96 0-38.88 12.608-72.736 32.448-96h-224.448c-35.328 0-64 42.944-64 96zM383.84 0h-128v288c0 23.328-6.24 45.12-17.184 64h22.336v-0.384h96.256c-3.424-9.952-5.408-20.512-5.408-31.616v-224c0-30.816 17.216-51.328 27.488-63.552 1.408-1.696 3.072-3.424 4.512-5.312v-27.136zM423.232 415.616h-7.232v0.384c-35.328 0-64 42.944-64 96 0 52.992 28.672 96 64 96h7.232c60.352 0 116.864 23.744 166.592 64.576-9.152-51.52-13.824-106.080-13.824-160.576 0-54.688 4.672-109.44 13.888-160.992-49.76 40.864-106.304 64.608-166.656 64.608zM800 128c-64.576 0-120 91.872-145.312 224h81.312c71.744 0 128 70.24 128 160 0 89.696-56.256 160-128 160h-81.312c25.312 132.064 80.736 224 145.312 224 88.384 0 160-171.936 160-384s-71.616-384-160-384z" />
<glyph unicode="&#xe934;" glyph-name="study" d="M1024 704c0 44.992-30.624 83.456-74.432 93.568l-416.416 96.096c-6.976 1.568-14.080 2.336-21.152 2.336s-14.176-0.768-21.6-2.432l-415.968-96c-43.84-10.112-74.432-48.576-74.432-93.568s30.624-83.456 74.4-93.568l85.6-19.744v-270.688c0-84.928 97.216-160 352-160s352 75.072 352 160v270.688l85.568 19.744c43.808 10.112 74.432 48.576 74.432 93.568zM800 320c0-35.36-96-96-288-96s-288 60.64-288 96v255.904l266.816-61.568c6.976-1.568 14.112-2.336 21.184-2.336s14.208 0.768 21.568 2.432l266.432 61.472v-255.904zM519.2 576.8c-2.4-0.512-4.8-0.8-7.2-0.8s-4.832 0.288-7.2 0.8l-416 96c-14.528 3.36-24.8 16.288-24.8 31.2s10.272 27.84 24.8 31.2l416 96c2.368 0.512 4.768 0.8 7.2 0.8s4.832-0.288 7.2-0.8l416-96c14.496-3.36 24.8-16.288 24.8-31.2s-10.304-27.84-24.8-31.2l-416-96zM928 544c0 17.696 14.304 32 32 32 17.664 0 32-14.304 32-32v-288c0-17.696-14.336-32-32-32-17.696 0-32 14.304-32 32v288zM960 192c35.328 0 64-92.672 64-128s-28.672-64-64-64c-35.36 0-64 28.672-64 64s28.64 128 64 128z" />
<glyph unicode="&#xe935;" glyph-name="lab2" d="M661.824 840.576c-15.136 15.104-35.2 23.424-56.576 23.424s-41.44-8.32-56.64-23.456l-45.12-45.184c-15.136-15.104-23.488-35.2-23.488-56.608 0-15.072 4.128-29.504 11.872-42.016l-434.464-174.048c-29.056-12.768-49.888-38.976-55.744-70.048-5.92-31.264 4-63.328 26.688-85.984l407.040-402.56c17.536-17.536 40.832-27.488 65.44-28.064 0.576-0.032 1.92-0.032 2.496-0.032 6.464 0 13.024 0.672 19.52 1.984 31.808 6.592 57.856 28.576 69.664 58.496l170.944 428.032c12.864-8.48 28-13.024 43.744-13.024 21.44 0 41.504 8.352 56.576 23.456l45.024 45.056c15.264 15.168 23.616 35.296 23.616 56.736s-8.384 41.6-23.424 56.576l-247.168 247.264zM533.088 20.256c-3.968-10.016-12.704-17.408-23.264-19.584-2.432-0.512-4.896-0.704-7.328-0.672-8.128 0.192-15.968 3.456-21.824 9.344l-407.296 402.816c-7.488 7.456-10.784 18.144-8.8 28.576 1.952 10.368 8.928 19.136 18.624 23.36l198.944 79.68c134.048-44.576 268.128-1.632 402.24-144.704l-151.296-378.816zM863.744 525.44l-45.248-45.216c-6.24-6.272-16.384-6.272-22.624 0l-56.576 56.544-45.824-114.848 3.808 9.696c-96.32 96.16-194.208 108.288-282.528 119.136-28.384 3.488-55.904 7.136-82.944 12.96l271.712 108.832-54.88 54.88c-6.24 6.24-6.24 16.384 0 22.624l45.248 45.28c6.24 6.24 16.384 6.24 22.624 0l247.2-247.264c6.336-6.24 6.336-16.384 0.032-22.624zM528 288c44.096 0 80 35.872 80 80s-35.872 80-80 80c-44.128 0-80-35.872-80-80s35.904-80 80-80zM528 416c26.496 0 48-21.504 48-48s-21.504-48-48-48c-26.528 0-48 21.504-48 48s21.472 48 48 48zM944 960c-44.128 0-80-35.872-80-80s35.872-80 80-80 80 35.872 80 80-35.872 80-80 80zM944 832c-26.496 0-48 21.504-48 48s21.504 48 48 48 48-21.504 48-48-21.504-48-48-48zM256 416c0-35.296 28.704-64 64-64s64 28.704 64 64-28.704 64-64 64-64-28.704-64-64zM320 448c17.664 0 32-14.304 32-32s-14.336-32-32-32-32 14.304-32 32 14.336 32 32 32zM384 224c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM896 704c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32z" />
<glyph unicode="&#xe936;" glyph-name="food" d="M944 288h-86.112c-1.44 7.648-3.2 15.136-5.12 22.592l153.568 76.768c15.808 7.904 22.176 27.136 14.304 42.944-7.936 15.808-27.072 22.144-42.944 14.304l-146.496-73.216c-55.872 120.576-177.76 204.608-319.2 204.608-172.224 0-315.68-124.416-345.888-288h-86.112c-44.096 0-80-35.872-80-80 0-15.68 5.76-30.816 16.16-42.528l111.84-125.824v-23.648c0-44.128 35.904-80 80-80h608c44.128 0 80 35.872 80 80v23.648l111.808 125.824c10.432 11.712 16.192 26.848 16.192 42.528 0 44.128-35.872 80-80 80zM825.568 288h-17.984l15.936 8c0.608-2.688 1.472-5.28 2.048-8zM512 544c128.928 0 240-76.8 290.624-186.912l-28.512-14.24c-45.312 99.68-145.472 169.152-262.112 169.152-137.024 0-251.488-95.776-280.64-224h-32.896c29.728 145.888 159.008 256 313.536 256zM658.432 288c-24.736 56.416-80.992 96-146.432 96s-121.664-39.584-146.432-96h-34.368c26.432 74.432 97.376 128 180.8 128 78.88 0 146.816-47.872 176.256-116.064l-29.824-11.936zM512 320c-28.256 0-53.44-12.512-71.040-32h-39.168c22.208 38.048 63.040 64 110.208 64 47.136 0 88-25.952 110.176-64h-39.2c-17.536 19.488-42.72 32-70.976 32zM512 448c-101.28 0-186.944-67.584-214.56-160h-33.024c28.544 110.208 128.544 192 247.584 192 103.872 0 193.376-62.336 233.44-151.488l-28.576-14.272c-34.816 78.624-113.504 133.76-204.864 133.76zM832 64v-48c0-8.832-7.2-16-16-16h-608c-8.832 0-16 7.168-16 16v48l-128 144c0 8.832 7.168 16 16 16h864c8.8 0 16-7.168 16-16l-128-144zM255.264 585.216c-0.224 0.448-0.384 0.864-0.576 1.344-16.608 40.096-0.096 79.424 14.816 114.912 14.112 33.664 26.624 63.488 13.696 92.576-0.064 0.128-0.096 0.256-0.16 0.384-0.032 0.096-0.064 0.192-0.096 0.288-0.032 0.064-0.032 0.128-0.032 0.192-0.64 1.696-1.024 3.488-1.024 5.408 0 8.64 7.008 15.68 15.68 15.68 6.656 0 12.32-4.16 14.592-10.016 17.856-40.672 1.632-80.672-13.504-116.704-14.016-33.344-25.408-64.32-13.408-92.544 0.064-0.224 0.064-0.416 0-0.64 0.352-1.28 0.576-2.624 0.576-4 0-8.864-7.2-16.096-16.064-16.096-6.208 0-11.52 3.52-14.176 8.64-0.032 0-0.064 0-0.064 0-0.096 0.192-0.16 0.384-0.256 0.576zM644.928 589.888c-0.192 0.416-0.352 0.864-0.512 1.28-16.608 40.096-0.128 79.456 14.752 114.944 14.144 33.664 26.624 63.488 13.696 92.576 0 0.128-0.064 0.256-0.128 0.384-0.064 0.096-0.064 0.192-0.128 0.288 0 0.064 0 0.128 0 0.192-0.608 1.696-1.056 3.488-1.056 5.408 0 8.64 7.040 15.68 15.68 15.68 6.688 0 12.32-4.128 14.624-10.016 17.856-40.672 1.632-80.672-13.504-116.704-14.016-33.344-25.376-64.32-13.44-92.544 0.128-0.224 0.128-0.416 0.064-0.64 0.32-1.28 0.576-2.624 0.576-4 0-8.864-7.264-16.096-16.128-16.096-6.176 0-11.488 3.552-14.176 8.672h-0.064c-0.064 0.192-0.128 0.384-0.256 0.576zM480.608 729.216c-0.224 0.448-0.384 0.864-0.608 1.312-16.64 40.096-0.128 79.456 14.784 114.944 14.112 33.664 26.624 63.488 13.696 92.576-0.032 0.128-0.096 0.256-0.128 0.384-0.032 0.096-0.064 0.192-0.096 0.288-0.032 0.064-0.032 0.128-0.032 0.192-0.64 1.696-1.024 3.488-1.024 5.408 0 8.64 7.040 15.68 15.68 15.68 6.688 0 12.32-4.16 14.624-10.048 17.856-40.672 1.632-80.672-13.504-116.704-14.016-33.344-25.408-64.32-13.408-92.544 0.064-0.224 0.064-0.416 0-0.64 0.352-1.28 0.576-2.624 0.576-4 0-8.864-7.2-16.096-16.064-16.096-6.176 0-11.488 3.552-14.176 8.672-0.032 0-0.064 0-0.064 0-0.096 0.192-0.16 0.384-0.256 0.576z" />
<glyph unicode="&#xe937;" glyph-name="t-shirt" d="M1000 753.984l-160 128c-11.36 9.088-25.504 14.016-40 14.016h-576c-14.528 0-28.64-4.928-40-14.016l-160-128c-20.928-16.768-29.184-44.8-20.704-70.24l64-192c6.304-18.912 21.088-33.824 39.968-40.288 6.72-2.304 13.76-3.456 20.736-3.456 11.136 0 22.176 2.912 32 8.576v-392.576c0-35.328 28.672-64 64-64h576c35.328 0 64 28.672 64 64v392.576c9.824-5.664 20.864-8.576 32-8.576 7.008 0 14.016 1.152 20.736 3.456 18.88 6.464 33.632 21.376 39.936 40.288l64 192c8.512 25.44 0.256 53.472-20.672 70.24zM632.128 832c-17.696-37.152-64.576-64-120.128-64s-102.464 26.848-120.128 64h240.256zM896 512l-96 64v-512h-576v512l-96-64-64 192 160 128h133.664c17.824-55.104 79.872-96 154.336-96 74.432 0 136.512 40.896 154.304 96h133.696l160-128-64-192z" />
<glyph unicode="&#xe938;" glyph-name="fire2" d="M704 672c-1.984-85.6-66.24-157.888-66.24-157.888 0 159.232-125.76 285.888-125.76 285.888s-1.696-94.784-65.376-190.336c-63.68 222.944-254.784 350.336-254.784 350.336 95.552-350.336-31.84-477.76-31.84-732.544 0-149.472 126.528-291.456 320-291.456 286.624 0 342.048 105.216 371.68 223.776 40.832 163.232-20.32 352.992-147.68 512.224zM789.632 175.328c-20.576-82.208-43.808-175.328-309.632-175.328-160.256 0-256 115.648-256 227.456 0 85.632 15.616 155.936 32.128 230.368 20.992 94.368 42.496 190.976 33.184 318.752 98.688-136.608 133.824-317.6 133.824-317.6s91.872 128.992 116.576 188.896c18.912-38.496 36.288-167.872 36.288-295.872 0 0 84.992 70.016 148.736 175.296 67.136-120.384 91.328-246.24 64.896-351.968zM717.824 422.56l5.952-33.12c13.312-74.176 5.856-161.856-18.944-223.424-2.496-6.24-8.512-10.016-14.816-10.016-2.016 0-4.064 0.384-6.016 1.152-8.192 3.296-12.192 12.608-8.864 20.8 18.688 46.368 26.56 111.648 21.568 171.296-32.128-35.904-72.608-73.312-159.104-114.4l-16.192-7.648-5.824 16.896c-11.584 33.6-23.264 67.552-28.32 114.88-17.312-27.296-33.12-51.616-59.68-87.776l-16.256-22.144-11.264 25.088c-27.552 61.6-48.544 109.696-65.184 152-15.392-49.44-26.88-106.624-26.88-222.112 0-8.832-7.2-16-16-16-8.864 0-16 7.168-16 16 0 150.688 20 208.736 41.12 270.208l16.64 48.32 15.328-43.2c16.48-46.432 38.176-97.6 68.864-166.784 20.224 28.576 33.792 50.080 50.176 76.032l48.576 76.096v-54.688c0-61.568 11.072-101.792 23.264-138.336 85.088 42.816 116.96 80.064 150.656 119.36l27.2 31.52z" />
<glyph unicode="&#xe939;" glyph-name="clip" d="M939.616 811.616c112.512-112.448 112.512-294.816 0-407.264l-350.944-350.976c-12.512-12.544-32.736-12.544-45.248 0-12.576 12.512-12.576 32.704 0 45.248l346.432 346.464c87.488 87.488 87.488 229.248-0.064 316.768-87.36 87.488-229.248 87.488-316.736 0l-462.304-456.864c-62.496-62.464-62.496-163.776 0-226.24 62.496-62.496 163.744-62.496 226.24 0l466.88 461.344c37.44 37.44 37.44 98.336 0 135.776-37.44 37.408-98.304 37.408-135.744 0l-351.008-351.008c-12.512-12.512-32.736-12.512-45.248 0-12.512 12.544-12.512 32.736 0 45.28l350.976 350.976c62.432 62.464 163.744 62.464 226.24 0 62.496-62.496 62.496-163.776 0-226.272l-466.88-461.376c-87.296-87.328-229.408-87.328-316.736 0s-87.328 229.472 0 316.8l466.88 461.344c112.448 112.512 294.816 112.512 407.264 0z" />
<glyph unicode="&#xe93a;" glyph-name="shop" d="M1004.8 601.6l-96 127.936c-3.744 5.024-8.192 9.376-12.8 13.536v152.928c0 35.328-28.672 64-64 64h-640c-35.36 0-64-28.672-64-64v-152.96c-4.608-4.128-9.056-8.448-12.8-13.44l-95.968-127.968c-12.416-16.512-19.232-36.96-19.232-57.632v-32c0-52.928 43.072-96 96-96v0-416c0-35.328 28.672-64 64-64h704c35.328 0 64 28.672 64 64v416c52.928 0 96 43.072 96 96v32c0 20.672-6.816 41.12-19.2 57.6zM832 896v-128h-640v128h640zM326.176 480h-134.048l128 224h70.048l-64-224zM423.488 704h72.512v-224h-136.512l64 224zM528 704h72.512l64-224h-136.512v224zM633.76 704h70.048l128-224h-134.048l-64 224zM64 512v32c0 6.944 2.24 13.664 6.4 19.2l96 128c6.048 8.064 15.52 12.8 25.6 12.8h91.264l-128-224h-59.264c-17.664 0-32 14.304-32 32zM640 0h-240v320h240v-320zM864 0h-192v320c0 17.696-14.368 32-32 32h-240c-17.664 0-32-14.304-32-32v-320h-208v416h704v-416zM960 512c0-17.696-14.304-32-32-32h-59.328l-128 224h91.328c10.048 0 19.552-4.736 25.568-12.8l96-128c4.192-5.536 6.432-12.256 6.432-19.2v-32z" />
<glyph unicode="&#xe93b;" glyph-name="calendar3" d="M938.688 864h-138.688v64c0 17.696-14.304 32-32 32s-32-14.304-32-32v-64h-192v64c0 17.696-14.336 32-32 32s-32-14.304-32-32v-64h-192v64c0 17.696-14.336 32-32 32s-32-14.304-32-32v-64h-138.656c-47.136 0-85.344-38.176-85.344-85.312v-757.344c0-47.136 38.208-85.344 85.344-85.344h853.344c47.136 0 85.312 38.208 85.312 85.344v757.344c0 47.136-38.176 85.312-85.312 85.312zM960 21.344c0-11.776-9.568-21.344-21.312-21.344h-853.344c-11.776 0-21.344 9.568-21.344 21.344v757.344c0 11.744 9.568 21.312 21.344 21.312h138.656v-64c0-17.696 14.336-32 32-32s32 14.304 32 32v64h192v-64c0-17.696 14.336-32 32-32s32 14.304 32 32v64h192v-64c0-17.696 14.304-32 32-32s32 14.304 32 32v64h138.688c11.744 0 21.312-9.568 21.312-21.312v-757.344zM224 576h128v-96h-128zM224 416h128v-96h-128zM224 256h128v-96h-128zM448 256h128v-96h-128zM448 416h128v-96h-128zM448 576h128v-96h-128zM672 256h128v-96h-128zM672 416h128v-96h-128zM672 576h128v-96h-128z" />
<glyph unicode="&#xe93c;" glyph-name="wallet2" d="M512 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM928.032 544c-0.032 0-0.032 0 0 0l-0.032 192v96c0 53.024-43.008 96-96 96h-656c-97.056 0-176-78.976-176-176v-640c0-97.024 78.944-176 176-176h576c97.024 0 176 78.976 176 176v48c0 0 0 0 0.032 0 127.936 96.032 127.936 287.968 0 384zM176 864h656c17.632 0 32-14.336 32-32v-197.888c-10.048 3.584-20.736 5.888-32 5.888h-0.032v160c0 17.696-14.336 32-32 32h-672c-17.664 0-32-14.304-32-32v-126.176c-19.744 20.192-31.968 47.712-31.968 78.176 0 61.856 50.112 112 112 112zM799.968 768h-672v32h672v-32zM799.968 736v-32h-672v32h672zM799.968 672v-32h-623.968c-17.28 0-33.408 4.224-48 11.2v20.8h671.968zM864 112c0-61.856-50.144-112-112-112h-576c-61.888 0-112 50.144-112 112v504.352c30.432-25.184 69.472-40.352 112-40.352h656c17.632 0 32-14.336 32-32v-64h-288c-88.384 0-160-71.616-160-160s71.648-160 160-160h288v-48zM904.864 224h-328.864c-52.928 0-96 43.072-96 96s43.072 96 96 96h288c19.744 0.256 39.328 9.824 51.264 25.728 3.328 4.48 5.92 9.504 8 14.752 0.288 0.704 0.8 1.248 1.056 1.984 23.008-30.176 35.68-67.168 35.68-106.464 0-49.216-19.872-94.88-55.136-128z" />
<glyph unicode="&#xe93d;" glyph-name="vynil" d="M702.432 923.2c-262.464 105.088-560.48-22.464-665.6-284.96-105.152-262.528 22.464-560.576 284.96-665.664 262.496-105.12 560.512 22.464 665.632 284.96 105.152 262.528-22.496 560.512-284.992 665.664zM345.6 31.968c-229.312 91.84-341.184 353.088-249.376 582.432 91.84 229.312 353.12 341.216 582.464 249.344 229.312-91.808 341.184-353.088 249.376-582.4-91.872-229.344-353.12-341.184-582.464-249.376zM535.968 507.296c-32.8 13.152-70.080-2.816-83.232-35.616s2.816-70.048 35.584-83.2c32.8-13.152 70.112 2.816 83.232 35.584 13.12 32.8-2.816 70.048-35.584 83.232zM500.224 418.144c-16.384 6.592-24.352 25.216-17.824 41.632 6.592 16.384 25.248 24.352 41.632 17.824 16.352-6.56 24.32-25.216 17.792-41.632-6.56-16.384-25.216-24.352-41.6-17.824zM583.488 626.080c-98.432 39.424-210.176-8.448-249.6-106.848-39.424-98.432 8.448-210.176 106.848-249.6 98.432-39.424 210.176 8.416 249.6 106.848s-8.384 210.208-106.848 249.6zM464.576 329.056c-65.536 26.208-97.472 100.896-71.264 166.4 26.24 65.504 100.864 97.472 166.368 71.264 65.568-26.24 97.504-100.928 71.328-166.432-26.272-65.504-100.928-97.504-166.432-71.232zM749.824 352.704h-0.064c-26.144-65.248-76.256-113.792-136.192-139.712-0.224-0.096-0.352-0.352-0.672-0.48-8.128-3.456-17.504 0.288-20.992 8.448-3.488 8.096 0.32 17.504 8.384 20.96 52.672 22.56 96.8 65.216 119.808 122.688v-0.032c3.296 8.224 12.608 12.224 20.8 8.896 8.192-3.264 12.192-12.576 8.928-20.768zM859.68 325.952c8.192-3.296 12.192-12.608 8.928-20.8-39.2-97.856-114.432-170.72-204.32-209.536-0.384-0.16-0.672-0.512-1.056-0.704-8.128-3.456-17.504 0.256-20.992 8.416-3.488 8.128 0.32 17.536 8.384 20.992 82.816 35.456 152.128 102.496 188.256 192.736 3.296 8.192 12.608 12.192 20.8 8.896zM800.256 349.728c8.192-3.296 12.192-12.608 8.928-20.8-32.672-81.568-95.36-142.24-170.24-174.592-0.352-0.192-0.544-0.48-0.864-0.64-8.128-3.456-17.504 0.288-20.992 8.416s0.32 17.536 8.448 21.024h-0.064c67.808 29.024 124.48 83.84 153.984 157.696 3.296 8.224 12.608 12.192 20.8 8.896zM432.416 674.816c3.488-8.16-0.288-17.536-8.416-21.056-52.672-22.528-96.8-65.216-119.776-122.624h-0.032c-3.264-8.192-12.576-12.192-20.8-8.896-8.192 3.296-12.192 12.576-8.896 20.8h0.032c26.112 65.216 76.256 113.792 136.192 139.712 0.224 0.096 0.384 0.352 0.672 0.448 8.128 3.488 17.536-0.224 21.024-8.384zM382.016 792.48c3.488-8.128-0.288-17.504-8.384-21.024-82.816-35.456-152.096-102.496-188.256-192.704-3.296-8.224-12.608-12.192-20.8-8.896-8.224 3.264-12.224 12.576-8.896 20.832 39.2 97.856 114.4 170.688 204.32 209.536 0.32 0.16 0.608 0.512 0.992 0.672 8.128 3.456 17.536-0.288 21.024-8.416zM398.784 712.672v-0.096c-67.744-28.992-124.448-83.84-153.984-157.696-3.296-8.224-12.608-12.16-20.8-8.896-8.16 3.328-12.192 12.608-8.864 20.832 32.64 81.536 95.328 142.272 170.24 174.656 0.32 0.128 0.512 0.448 0.832 0.576 8.128 3.488 17.536-0.288 21.024-8.384 3.488-8.16-0.32-17.536-8.416-20.992z" />
<glyph unicode="&#xe93e;" glyph-name="truck2" d="M794.624 593.76c-5.952 8.896-15.936 14.24-26.624 14.24h-32c-17.696 0-32-14.304-32-32v-192c0-17.696 14.304-32 32-32h128c17.696 0 32 14.304 32 32v48c0 6.304-1.888 12.512-5.376 17.76l-96 144zM864 384h-128v192h32l96-144v-48zM1007.872 469.248l-128 192c-17.856 26.784-47.744 42.752-79.872 42.752h-128v64c0 52.928-43.072 96-96 96h-480c-52.928 0-96-43.072-96-96v-352c0-52.928 43.072-96 96-96v0-96c0-52.928 43.072-96 96-96h36.544c14.304-55.072 64-96 123.488-96 59.424 0 109.12 40.928 123.424 96h169.024c14.304-55.072 64-96 123.488-96 59.424 0 109.12 40.928 123.424 96h36.608c52.928 0 96 43.072 96 96v192c0 19.008-5.568 37.44-16.128 53.248zM96 384c-17.664 0-32 14.304-32 32v352c0 17.696 14.336 32 32 32h480c17.696 0 32-14.304 32-32v-352c0-17.696-14.304-32-32-32h-480zM352.032 96c-35.36 0-64 28.672-64 64s28.64 64 64 64c35.328 0 64-28.672 64-64s-28.704-64-64-64zM768 96c-35.36 0-64 28.672-64 64s28.64 64 64 64c35.328 0 64-28.672 64-64s-28.672-64-64-64zM960 224c0-17.696-14.304-32-32-32h-36.576c-14.304 55.072-64 96-123.424 96-59.488 0-109.184-40.928-123.488-96h-169.024c-14.304 55.072-64 96-123.424 96-59.488 0-109.184-40.928-123.488-96h-36.576c-17.664 0-32 14.304-32 32v96h416c52.928 0 96 43.072 96 96v224h128c10.688 0 20.672-5.344 26.624-14.24l128-192c3.488-5.248 5.376-11.456 5.376-17.76v-192z" />
<glyph unicode="&#xe93f;" glyph-name="world" d="M496 960c-273.952 0-496-222.048-496-496s222.048-496 496-496 496 222.048 496 496-222.048 496-496 496zM927.2 480h-191.872c-1.76 70.88-14.368 138.592-36.736 200.576 43.2 18.016 83.136 41.984 119.552 70.304 64.736-72.672 105.216-167.040 109.056-270.88zM478.304 32.896c-53.184 44.288-97.792 101.792-130.432 168.576 41.888 13.088 86.272 20.256 132.128 21.728v-190.368c-0.576 0-1.12 0.032-1.696 0.064zM513.632 895.104c60.352-50.24 109.6-117.536 142.912-196.032-45.632-15.584-94.112-24.64-144.576-26.24v222.368c0.608-0.032 1.12-0.064 1.664-0.096zM566.944 889.664c88.32-14.688 167.552-55.936 229.248-115.648-33.504-25.696-70.112-47.456-109.696-63.936-29.12 69.024-69.984 130.048-119.552 179.584zM480 895.2v-222.368c-50.464 1.632-98.976 10.656-144.576 26.24 33.312 78.496 82.56 145.792 142.912 196.032 0.576 0.032 1.088 0.064 1.664 0.096zM305.472 710.048c-39.52 16.48-76.16 38.24-109.664 63.936 61.664 59.712 140.928 100.96 229.248 115.648-49.6-49.504-90.432-110.528-119.584-179.584zM323.36 669.568c49.344-17.12 101.92-27.104 156.64-28.768v-160.8h-191.328c1.728 67.008 13.6 131.040 34.688 189.568zM480 448v-192.8c-50.464-1.536-99.264-9.792-145.248-24.608-27.712 65.984-44.064 139.488-46.080 217.408h191.328zM425.056 38.336c-79.136 13.152-151.008 47.616-209.44 97.664 31.52 21.856 65.6 40.352 102.016 54.4 27.904-57.856 64.416-109.216 107.424-152.064zM512 32.8v190.368c45.824-1.472 90.24-8.64 132.128-21.728-32.672-66.784-77.248-124.288-130.432-168.576-0.544 0-1.12-0.032-1.696-0.064zM674.368 190.4c36.384-14.048 70.432-32.576 102.016-54.4-58.432-50.016-130.304-84.512-209.44-97.664 43.008 42.848 79.488 94.208 107.424 152.064zM657.248 230.592c-46.016 14.816-94.816 23.072-145.248 24.608v192.8h191.328c-2.016-77.92-18.4-151.424-46.080-217.408zM512 480v160.8c54.688 1.664 107.264 11.616 156.64 28.736 21.056-58.528 32.928-122.56 34.688-189.568h-191.328zM173.888 750.88c36.416-28.32 76.352-52.288 119.52-70.304-22.368-61.984-34.976-129.696-36.736-200.576h-191.872c3.84 103.84 44.32 198.208 109.088 270.88zM64.8 448h191.872c1.984-81.76 19.072-158.976 48.096-228.384-40.544-15.808-78.336-36.864-113.216-61.792-75.136 74.784-122.56 177.024-126.752 290.176zM800.448 157.856c-34.88 24.896-72.672 45.984-113.248 61.792 29.056 69.408 46.112 146.624 48.128 228.384h191.872c-4.192-113.184-51.648-215.424-126.752-290.176z" />
<glyph unicode="&#xe940;" glyph-name="mail-envelope" d="M192.115 704h671.77c35.643 0 64.115-28.569 64.115-63.81v-384.38c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81zM192.098 672c-17.727 0-32.098-14.398-32.098-32.219v-383.562c0-17.794 14.045-32.219 32.098-32.219h671.803c17.727 0 32.098 14.398 32.098 32.219v383.562c0 17.794-14.045 32.219-32.098 32.219h-671.803zM736 608h96v-96h-96v96zM768 576v-32h32v32h-32zM224 384v-32h256v32h-256zM224 608v-32h128v32h-128zM224 320v-32h256v32h-256z" />
<glyph unicode="&#xe941;" glyph-name="mail-envelope2" d="M192.115 704h671.77c35.643 0 64.115-28.569 64.115-63.81v-384.38c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81zM224 608v-32h128v32h-128zM736 608v-96h96v96h-96zM768 576v-32h32v32h-32zM224 384v-32h256v32h-256zM224 320v-32h256v32h-256z" />
<glyph unicode="&#xe942;" glyph-name="mail-envelope-open" d="M660.421 320h-266.608l71.819-63.37 72.55-0.347-54.294-0.283h108.112l0.638 0.567-3.18-0.017 70.963 63.449zM696.21 352l103.79 92.801v258.923c0 17.826-14.551 32.276-31.999 32.276h-480.003c-17.672 0-31.999-14.2-31.999-32.066v-262.334l101.546-89.6h338.664zM418.909 768l109.091 96 109.091-96h130.992c35.408 0 63.918-28.648 63.918-63.988v-107.532l96-84.48v-448.19c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l96 84.48v107.532c0 35.59 28.617 63.988 63.918 63.988h130.992zM589.691 768l-61.691 54.4-61.691-54.4h123.381zM832 554.327v-84.994l48 42.667-48 42.327zM224 469.333v84.994l-48-42.327 48-42.667zM432 224l-224-192h640l-224 192h-192zM885.924 40.795v0 0c6.203 5.866 10.076 14.145 10.076 23.204v416.001l-256-224.547 245.924-214.659zM170.076 40.795l245.924 214.659-256 224.547v-416.001c0-9.060 3.872-17.338 10.076-23.204v0 0zM320 640v-32h416v32h-416zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416z" />
<glyph unicode="&#xe943;" glyph-name="mail-envelope-open2" d="M361.381 352l-105.381 89.6v262.334c0 17.867 14.326 32.066 31.999 32.066h480.003c17.448 0 31.999-14.357 31.999-32.066v-262.334l-106.659-89.6h-331.96zM399.017 320l57.054-48.51h141.432l57.746 48.51h-256.231zM709.925 315.936l-69.925-59.936 189.538-162.462-25.846-25.846-191.866 164.457-167.149-0.729-0.677 0.58-191.692-164.308-25.846 25.846 189.538 162.462-69.925 59.936-122.075 103.263v177.281l-96-84.48v-448.19c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v448.19l-96 84.48v-177.281l-122.075-103.263zM637.091 768l-109.091 96-109.091-96h218.182zM320 640v-32h416v32h-416zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416z" />
<glyph unicode="&#xe944;" glyph-name="mail-envelope-closed" d="M170.080 663.235l357.92-311.235 357.981 311.287c6.206-5.878 10.019-14.235 10.019-23.507v-383.562c0-17.821-14.371-32.219-32.098-32.219h-671.803c-18.053 0-32.098 14.425-32.098 32.219v383.562c0 9.253 3.874 17.582 10.080 23.454zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77zM528 393.6l-320 278.4h640l-320-278.4z" />
<glyph unicode="&#xe945;" glyph-name="mail-envelope-closed2" d="M226.462 610.462l25.846 25.846 275.692-236.308 275.692 236.308 25.846-25.846-301.538-258.462-301.538 258.462zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77z" />
<glyph unicode="&#xe946;" glyph-name="mail-envelope-open3" d="M528 822.4l-352-310.4 352-304 352 304-352 310.4zM896 483.84l-368-323.84-368 323.84v-419.947c0-17.614 14.045-31.893 32.098-31.893h671.803c17.727 0 32.098 14.395 32.098 31.893v419.947zM928 63.81c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l400 352 400-352v-448.19z" />
<glyph unicode="&#xe947;" glyph-name="mail-envelope-open4" d="M226.462 418.462l301.538-258.462 301.538 258.462-26.471 26.471-275.067-230.532-275.067 230.532-26.471-26.471zM928 512v-448.19c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l400 352 400-352z" />
<glyph unicode="&#xe948;" glyph-name="mail-envelope-open5" d="M538.182 256.283l-54.294-0.283h108.112l0.638 0.567-3.18-0.017 210.542 188.25v258.923c0 17.826-14.551 32.276-31.999 32.276h-480.003c-17.672 0-31.999-14.2-31.999-32.066v-262.334l209.632-184.97 72.55-0.347zM418.909 768l109.091 96 109.091-96h130.992c35.408 0 63.918-28.648 63.918-63.988v-107.532l96-84.48v-448.19c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l96 84.48v107.532c0 35.59 28.617 63.988 63.918 63.988h130.992zM589.691 768l-61.691 54.4-61.691-54.4h123.381zM832 554.327v-84.994l48 42.667-48 42.327zM224 469.333v84.994l-48-42.327 48-42.667zM432 224l-224-192h640l-224 192h-192zM885.924 40.795v0 0c6.203 5.866 10.076 14.145 10.076 23.204v416.001l-256-224.547 245.924-214.659zM170.076 40.795l245.924 214.659-256 224.547v-416.001c0-9.060 3.872-17.338 10.076-23.204v0 0z" />
<glyph unicode="&#xe949;" glyph-name="mail-envelope-open6" d="M709.925 315.936l-69.925-59.936 189.538-162.462-25.846-25.846-191.866 164.457-167.149-0.729-0.677 0.58-191.692-164.308-25.846 25.846 189.538 162.462-69.925 59.936-122.075 103.263v177.281l-96-84.48v-448.19c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v448.19l-96 84.48v-177.281l-122.075-103.263zM418.909 768l109.091 96 109.091-96h-218.182zM287.999 736c-17.672 0-31.999-14.2-31.999-32.066v-262.334l200.070-170.109h141.432l202.498 170.109v262.334c0 17.71-14.551 32.066-31.999 32.066h-480.003z" />
<glyph unicode="&#xe94a;" glyph-name="mail-envelope-closed3" d="M170.080 663.235l247.52-215.235-247.581-215.287c-6.206 5.878-10.019 14.235-10.019 23.507v383.562c0 9.253 3.874 17.582 10.080 23.454zM885.981 663.287c6.206-5.878 10.019-14.235 10.019-23.507v-383.562c0-9.252-3.874-17.582-10.080-23.454l-247.52 215.235 247.581 215.287zM614.459 427.181l233.541-203.181h-640l233.541 203.181 86.459-75.181 86.459 75.181zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77zM528 393.6l-320 278.4h640l-320-278.4z" />
<glyph unicode="&#xe94b;" glyph-name="mail-envelope-closed4" d="M829.538 285.538l-25.846-25.846-191.692 164.308-84-72-84 72-191.692-164.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 275.692-236.308 275.692 236.308 25.846-25.846-189.538-162.462 189.538-162.462zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77z" />
<glyph unicode="&#xe94c;" glyph-name="mail-envelope-open7" d="M528 864l-400-352v-448.19c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v448.19l-400 352zM432 224h192l224-192h-640l224 192zM528 822.4l352-310.4-288-256h-128l-288 256 352 310.4zM885.924 40.795l-245.924 214.659 256 224.547v-416.001c0-9.060-3.872-17.338-10.076-23.204v0 0zM170.076 40.795v0 0c-6.203 5.866-10.076 14.145-10.076 23.204v416.001l256-224.547-245.924-214.659z" />
<glyph unicode="&#xe94d;" glyph-name="mail-envelope-open8" d="M528 864l-400-352v-448.2c0-35.2 28.5-63.8 64.1-63.8h671.8c35.4 0 64.1 28.6 64.1 63.8v448.2l-400 352zM829.5 93.5v0l-25.8-25.8-191.7 164.3-84-72-84 72-191.7-164.3-25.8 25.8 189.5 162.5-189.5 162.5 25.8 25.8 275.7-236.3 275.7 236.3 25.8-25.8-189.5-162.5 189.5-162.5z" />
<glyph unicode="&#xe94e;" glyph-name="mail-error" d="M832 398.769v273.012c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 138.456-120.397 71.144 120.397 48-81.231zM696.579 332.057l-146.12 127.125-86.459-75.181-86.459 75.181-233.541-203.181h507.636l44.942 76.057zM632.727 224h-504.612c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-327.575l128-216.615h-416l56.727 96zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM784 416l-152-256h304l-152 256zM768 352v-96h32v96h-32zM768 224v-32h32v32h-32z" />
<glyph unicode="&#xe94f;" glyph-name="mail-error2" d="M689.033 383.115l-113.033 96.885 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 122.219-104.759-75.108-127.241h-466.996c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-263.719l-80 135.529-94.967-160.885zM784 480l208-352h-416l208 352zM768 352v-96h32v96h-32zM768 224v-32h32v32h-32z" />
<glyph unicode="&#xe950;" glyph-name="mail-checked" d="M832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0zM800 216.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe951;" glyph-name="mail-checked2" d="M644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM800 216.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe952;" glyph-name="mail-cancel" d="M816 281.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0z" />
<glyph unicode="&#xe953;" glyph-name="mail-cancel2" d="M816 281.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe954;" glyph-name="mail--forbidden" d="M928.51 393.883l-202.393-202.393c24.635-19.706 55.883-31.49 89.883-31.49 79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883zM905.883 416.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144 0-34 11.784-65.248 31.49-89.883l202.393 202.393zM832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4z" />
<glyph unicode="&#xe955;" glyph-name="mail--forbidden2" d="M951.252 416.625c25.442-30.52 40.748-69.785 40.748-112.625 0-97.202-78.798-176-176-176-42.84 0-82.105 15.306-112.625 40.748l247.877 247.877zM928.625 439.252c-30.52 25.442-69.785 40.748-112.625 40.748-97.202 0-176-78.798-176-176 0-42.84 15.306-82.105 40.748-112.625l247.877 247.877zM644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0z" />
<glyph unicode="&#xe956;" glyph-name="mail-add" d="M800 320v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0z" />
<glyph unicode="&#xe957;" glyph-name="mail-add2" d="M800 288h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe958;" glyph-name="mail-remove" d="M832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0zM704 320v-32h224v32h-224z" />
<glyph unicode="&#xe959;" glyph-name="mail-remove2" d="M644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM704 320v-32h224v32h-224z" />
<glyph unicode="&#xe95a;" glyph-name="flag3" d="M256 624v208c0 0 95.24 71.562 256 0s256 0 256 0v-352c0 0-95.275-69.996-256 0-105.964 46.148-183.48 31.446-224 16.071v-464.071h-32v592zM496.66 803.199c-131.145 57.668-208.66 9.602-208.66 9.602v-282.805c0 0 100.94 40.532 236.057-20.633 126.559-57.291 212.506-10.891 212.506-10.891v285.527c0 0-96.734-43.756-239.902 19.199v0 0z" />
<glyph unicode="&#xe95b;" glyph-name="flag4" d="M256 624.194v-592h32v464.071c40.52 15.375 118.036 30.077 224-16.071 160.725-69.996 256 0 256 0v352c0 0-95.24-71.563-256 0s-256 0-256 0v-208z" />
<glyph unicode="&#xe95c;" glyph-name="flag5" d="M256 688v176h512l-176-176 176-176h-480v-480h-32v656zM288 832v-288h400l-144 144 144 144h-400z" />
<glyph unicode="&#xe95d;" glyph-name="flag6" d="M256 688v-656h32v480h480l-176 176 176 176h-512v-176z" />
<glyph unicode="&#xe95e;" glyph-name="flag7" d="M288 656v208l448-192-416-178.286v-461.714h-32v624zM320 816v-288l336 144-336 144z" />
<glyph unicode="&#xe95f;" glyph-name="flag8" d="M288 656v-624h32v461.714l416 178.286-448 192v-208z" />
<glyph unicode="&#xe960;" glyph-name="flag9" d="M224 688v176h512v-352h-480v-480h-32v656zM256 832v-288h448v288h-448z" />
<glyph unicode="&#xe961;" glyph-name="flag10" d="M224 688v-656h32v480h480v352h-512v-176z" />
<glyph unicode="&#xe962;" glyph-name="bookmark2" d="M415.909 832h192.182c52.977 0 95.909-42.853 95.909-95.715v-672.285l-192 192-192-192v672.285c0 52.778 42.94 95.715 95.909 95.715zM415.988 800c-35.339 0-63.988-28.749-63.988-63.806v-595.393l160 160 160-160v595.393c0 35.239-28.398 63.806-63.988 63.806h-192.025z" />
<glyph unicode="&#xe963;" glyph-name="bookmark3" d="M415.909 832c-52.969 0-95.909-42.937-95.909-95.715v-672.285l192 192 192-192v672.285c0 52.862-42.932 95.715-95.909 95.715h-192.182z" />
<glyph unicode="&#xe964;" glyph-name="bookmark-add" d="M608 544v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM640 352.717v0 0c89.704 8.084 160 83.474 160 175.283s-70.296 167.199-160 175.283v33.003c0 52.862-42.932 95.715-95.909 95.715h-192.182c-52.969 0-95.909-42.937-95.909-95.715v-672.285l192 192 192-192v288.717zM608 352.717v-211.917l-160 160-160-160v595.393c0 35.057 28.648 63.806 63.988 63.806h192.025c35.59 0 63.988-28.567 63.988-63.806v-32.912c-89.704-8.084-160-83.474-160-175.283s70.296-167.199 160-175.283v0 0zM624 384v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe965;" glyph-name="bookmark-add2" d="M608 544v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM640 320.606v-256.606l-192 192-192-192v672.285c0 52.778 42.94 95.715 95.909 95.715h192.182c52.977 0 95.909-42.853 95.909-95.715v-0.891c-5.281 0.402-10.616 0.606-16 0.606-114.875 0-208-93.125-208-208s93.125-208 208-208c5.384 0 10.719 0.205 16 0.606v0 0zM624 352c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe966;" glyph-name="bookmark-remove" d="M640 352.717v0 0c89.704 8.084 160 83.474 160 175.283s-70.296 167.199-160 175.283v33.003c0 52.862-42.932 95.715-95.909 95.715h-192.182c-52.969 0-95.909-42.937-95.909-95.715v-672.285l192 192 192-192v288.717zM608 352.717v-211.917l-160 160-160-160v595.393c0 35.057 28.648 63.806 63.988 63.806h192.025c35.59 0 63.988-28.567 63.988-63.806v-32.912c-89.704-8.084-160-83.474-160-175.283s70.296-167.199 160-175.283v0 0zM624 384v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM512 544v-32h224v32h-224z" />
<glyph unicode="&#xe967;" glyph-name="bookmark-remove2" d="M640 320.606v-256.606l-192 192-192-192v672.285c0 52.778 42.94 95.715 95.909 95.715h192.182c52.977 0 95.909-42.853 95.909-95.715v-0.891c-5.281 0.402-10.616 0.606-16 0.606-114.875 0-208-93.125-208-208s93.125-208 208-208c5.384 0 10.719 0.205 16 0.606v0 0zM624 352v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM512 544v-32h224v32h-224z" />
<glyph unicode="&#xe968;" glyph-name="eye-hidden" d="M259.478 291.478c-111.728 65.958-163.478 156.522-163.478 156.522s128 224 416 224c41.744 0 80.127-4.706 115.246-12.754l-27.185-27.185c-27.352 5.057-56.698 7.939-88.061 7.939-256 0-377.602-192-377.602-192s48.473-76.535 148.639-132.962l-23.559-23.559zM396.754 236.754c35.119-8.048 73.502-12.754 115.246-12.754 288 0 416 224 416 224s-51.751 90.564-163.478 156.522l-23.559-23.559c100.166-56.427 148.639-132.962 148.639-132.962s-121.602-192-377.602-192c-31.363 0-60.709 2.882-88.061 7.939l-27.185-27.185zM636.757 476.757c2.122-9.244 3.243-18.869 3.243-28.757 0-70.692-57.308-128-128-128-9.888 0-19.513 1.121-28.757 3.243l28.757 28.757c24.569 0 49.137 9.373 67.882 28.118s28.118 43.314 28.118 67.882l28.757 28.757zM540.757 572.757c-9.244 2.122-18.869 3.243-28.757 3.243-70.692 0-128-57.308-128-128 0-9.888 1.121-19.513 3.243-28.757l28.757 28.757c0 24.569 9.373 49.137 28.118 67.882s43.314 28.118 67.882 28.118l28.757 28.757zM768 736l-544-544 32-32 544 544-32 32z" />
<glyph unicode="&#xe969;" glyph-name="eye-hidden2" d="M259.478 291.478c-111.728 65.958-163.478 156.522-163.478 156.522s128 224 416 224c41.744 0 80.127-4.706 115.246-12.754l-86.489-86.489c-9.244 2.122-18.869 3.243-28.757 3.243-70.692 0-128-57.308-128-128 0-9.888 1.121-19.513 3.243-28.757l-127.765-127.765zM396.754 236.754c35.119-8.048 73.502-12.754 115.246-12.754 288 0 416 224 416 224s-51.751 90.564-163.478 156.522l-127.765-127.765c2.122-9.244 3.243-18.869 3.243-28.757 0-70.692-57.308-128-128-128-9.888 0-19.513 1.121-28.757 3.243l-86.489-86.489zM608 448c0-24.569-9.373-49.137-28.118-67.882s-43.314-28.118-67.882-28.118l96 96zM512 544c-24.569 0-49.137-9.373-67.882-28.118s-28.118-43.314-28.118-67.882l96 96zM768 736l-544-544 32-32 544 544-32 32z" />
<glyph unicode="&#xe96a;" glyph-name="eye3" d="M512 672v0 0c288 0 416-224 416-224s-128-224-416-224c-288 0-416 224-416 224s128 224 416 224zM512 640c-256 0-377.602-192-377.602-192s121.602-192 377.602-192c256 0 377.602 192 377.602 192s-121.602 192-377.602 192v0 0zM512 320v0 0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM512 352c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0 0zM512 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0z" />
<glyph unicode="&#xe96b;" glyph-name="eye4" d="M512 672v0c288 0 416-224 416-224s-128-224-416-224c-288 0-416 224-416 224s128 224 416 224zM512 320c70.692 0 128 57.308 128 128s-57.308 128-128 128c-70.692 0-128-57.308-128-128s57.308-128 128-128v0zM512 352v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM512 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xe96c;" glyph-name="star2" d="M512 224l288-192-128 320 288 192h-320l-128 320-128-320h-320l288-192-128-320 288 192zM512 263.902l-217.6-145.502 102.4 246.399-230.4 147.2h239.998l105.602 272 105.602-272h240l-230.402-147.2 102.402-246.399-217.602 145.502z" />
<glyph unicode="&#xe96d;" glyph-name="star3" d="M512 224l-288-192 128 320-288 192h320l128 320 128-320h320l-288-192 128-320z" />
<glyph unicode="&#xe96e;" glyph-name="key5" d="M593.037 337.037l-145.037-145.037h-96v-96h-96v-96h-160v160l337.037 337.037c-11.016 29.564-17.037 61.56-17.037 94.963 0 150.221 121.779 272 272 272s272-121.779 272-272c0-150.221-121.779-272-272-272-33.403 0-65.399 6.021-94.963 17.037v0 0zM447.96 463.96l-319.96-319.96v-112h96v96h96v96h112l127.96 127.96c-47.513 25.397-86.603 64.487-112 112v0 0zM928 592c0 132.548-107.452 240-240 240s-240-107.452-240-240c0-132.548 107.452-240 240-240s240 107.452 240 240v0 0zM864 672v0 0c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM832 672c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64v0 0z" />
<glyph unicode="&#xe96f;" glyph-name="key6" d="M593.037 337.037l-145.037-145.037h-96v-96h-96v-96h-160v160l337.037 337.037c-11.016 29.564-17.037 61.56-17.037 94.963 0 150.221 121.779 272 272 272s272-121.779 272-272c0-150.221-121.779-272-272-272-33.403 0-65.399 6.021-94.963 17.037v0 0zM864 672c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96v0z" />
<glyph unicode="&#xe970;" glyph-name="key7" d="M545.077 532.228l-406.918-407.548c-13.74-13.761-13.734-36.138-0.067-49.901l0.588-0.593c13.703-13.799 35.8-14.002 49.705-0.104l84.787 84.745 78.827-78.827 48 48-78.815 78.815 96.024 95.976 62.791-62.791 48 48-62.779 62.779 130.624 130.559c30.801-21.036 68.041-33.338 108.154-33.338 106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192 0-39.948 12.2-77.046 33.077-107.772zM416 256l-48-48 80-80-96-96-80 80-60.015-60.015c-26.923-26.923-70.528-27.044-97.348-0.223l1.125-1.125c-26.779 26.779-26.72 70.405 0.223 97.348l389.037 389.037c-15.989 30.831-25.022 65.85-25.022 102.978 0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-37.129 0-72.147 9.033-102.978 25.022v0l-89.022-89.022 64-64-96-96-64 64zM704 512v0 0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM704 544c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0 0z" />
<glyph unicode="&#xe971;" glyph-name="key8" d="M416.273 256l-48-48 80-80-96-96-80 80-60.015-60.015c-26.923-26.923-70.528-27.044-97.348-0.223l1.125-1.125c-26.779 26.779-26.72 70.405 0.223 97.348l389.037 389.037c-15.989 30.831-25.022 65.85-25.022 102.978 0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-37.129 0-72.147 9.033-102.978 25.022v0l-89.022-89.022 64-64-96-96-64 64zM704.273 512c70.692 0 128 57.308 128 128s-57.308 128-128 128c-70.692 0-128-57.308-128-128s57.308-128 128-128v0z" />
<glyph unicode="&#xe972;" glyph-name="trash-can" d="M672 768h128v-32h-544v32h128v32c0 35.593 28.616 64 63.917 64h160.167c35.249 0 63.917-28.654 63.917-64v-32zM256 704h544v-607.956c0-53.066-42.982-96.044-96.004-96.044h-351.992c-53.317 0-96.004 43.001-96.004 96.044v607.956zM288 672v-576.295c0-35.184 28.589-63.705 63.74-63.705h352.519c35.203 0 63.74 28.743 63.74 63.705v576.295h-480zM384 608v-512h32v512h-32zM512 608v-512h32v512h-32zM640 608v-512h32v512h-32zM448.094 832c-17.725 0-32.094-14.204-32.094-32v-32h224v32c0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xe973;" glyph-name="trash-can2" d="M672 768h128v-32h-544v32h128v32c0 35.593 28.616 64 63.917 64h160.167c35.249 0 63.917-28.654 63.917-64v-32zM256 704h544v-607.956c0-53.066-42.982-96.044-96.004-96.044h-351.992c-53.317 0-96.004 43.001-96.004 96.044v607.956zM384 608v-512h32v512h-32zM512 608v-512h32v512h-32zM640 608v-512h32v512h-32zM448.094 832c-17.725 0-32.094-14.204-32.094-32v-32h224v32c0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xe974;" glyph-name="trash-can3" d="M736 736h128v-32h-64v-607.781c0-53.467-42.982-96.219-96.004-96.219h-351.992c-53.317 0-96.004 43.079-96.004 96.219v607.781h-64v32h192v63.844c0 35.551 28.616 64.156 63.917 64.156h160.167c35.249 0 63.917-28.724 63.917-64.156v-63.844h64zM288 704v-608.174c0-35.25 28.589-63.826 63.74-63.826h352.519c35.203 0 63.74 28.875 63.74 63.826v608.174h-480zM384 640v-544h32v544h-32zM512 640v-544h32v544h-32zM640 640v-544h32v544h-32zM448.094 832c-17.725 0-32.094-14.165-32.094-31.967v-64.033h224v64.033c0 17.655-14.012 31.967-32.094 31.967h-159.813z" />
<glyph unicode="&#xe975;" glyph-name="trash-can4" d="M736 736h128v-32h-64v-607.781c0-53.467-42.982-96.219-96.004-96.219h-351.992c-53.317 0-96.004 43.079-96.004 96.219v607.781h-64v32h192v63.844c0 35.551 28.616 64.156 63.917 64.156h160.167c35.249 0 63.917-28.724 63.917-64.156v-63.844h64zM384 640v-544h32v544h-32zM512 640v-544h32v544h-32zM640 640v-544h32v544h-32zM448.094 832c-17.725 0-32.094-14.165-32.094-31.967v-64.033h224v64.033c0 17.655-14.012 31.967-32.094 31.967h-159.813z" />
<glyph unicode="&#xe976;" glyph-name="information" d="M544 288v160h-96v-32h64v-128h-64v-32h160v32h-64zM528 128v0 0c-167.895 0-304 136.105-304 304s136.105 304 304 304c167.895 0 304-136.105 304-304s-136.105-304-304-304zM528 160c150.221 0 272 121.779 272 272s-121.779 272-272 272c-150.221 0-272-121.779-272-272s121.779-272 272-272v0 0zM528 512c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0z" />
<glyph unicode="&#xe977;" glyph-name="information2" d="M528 128v0c-167.895 0-304 136.105-304 304s136.105 304 304 304c167.895 0 304-136.105 304-304s-136.105-304-304-304zM544 288v160h-96v-32h64v-128h-64v-32h160v32h-64zM528 512c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe978;" glyph-name="information3" d="M544 256v224h-96v-32h64v-192h-64v-32h160v32h-64zM528 32v0 0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0 0zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0z" />
<glyph unicode="&#xe979;" glyph-name="information4" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM544 256v224h-96v-32h64v-192h-64v-32h160v32h-64zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe97a;" glyph-name="book2" d="M544 672h-192v-608h448v608h-256zM832 32h-544.186c-52.828 0-95.814 42.973-95.814 95.983v624.017c0 44.491 35.711 80 79.762 80h560.238v-32h-16.15c-26.183 0-47.85-21.49-47.85-48 0-26.694 21.423-48 47.85-48h16.15v-672zM320 64v608h-48.238c-17.899 0-34.439 5.932-47.762 15.945v-560.228c0-35.19 28.564-63.717 63.843-63.717h32.157zM271.788 800c-26.392 0-47.788-21.306-47.788-48 0-26.51 21.352-48 47.788-48h480.212c0 0-16 25.264-16 48.846s16 47.154 16 47.154h-480.212z" />
<glyph unicode="&#xe97b;" glyph-name="book3" d="M287.814 32c-52.828 0-95.814 42.973-95.814 95.983v624.017c0 44.491 35.711 80 79.762 80h560.238v-32h-16.15c-26.183 0-47.85-21.49-47.85-48 0-26.694 21.423-48 47.85-48h16.15v-672h-480v672h400c0 0-16 25.264-16 48.846s16 47.154 16 47.154h-480.212c-26.392 0-47.788-21.306-47.788-48 0-26.51 21.352-48 47.788-48h48.212v-672h-32.186z" />
<glyph unicode="&#xe97c;" glyph-name="book-bookmark" d="M832 32v672h-16.15c-26.427 0-47.85 21.306-47.85 48 0 26.51 21.667 48 47.85 48h16.15v32h-560.238c-44.052 0-79.762-35.509-79.762-80v-624.017c0-53.010 42.986-95.983 95.814-95.983h544.186zM800 672v-608h-448v608h128v-352l96 96 96-96v352h128zM320 64h-32.157c-35.279 0-63.843 28.527-63.843 63.717v560.228c13.323-10.013 29.864-15.945 47.762-15.945h48.238v-608zM271.788 800h480.212c0 0-16-23.572-16-47.154s16-48.846 16-48.846h-480.212c-26.436 0-47.788 21.49-47.788 48 0 26.694 21.395 48 47.788 48zM512 672h128v-275.199l-64 64-64-64v275.199z" />
<glyph unicode="&#xe97d;" glyph-name="book-bookmark2" d="M480 704h-128v-672h480v672h-16.15c-26.427 0-47.85 21.306-47.85 48 0 26.51 21.667 48 47.85 48h16.15v32h-560.238c-44.052 0-79.762-35.509-79.762-80v-624.017c0-53.010 42.986-95.983 95.814-95.983h32.186v672h-48.212c-26.436 0-47.788 21.49-47.788 48 0 26.694 21.395 48 47.788 48h480.212c0 0-16-23.572-16-47.154s16-48.846 16-48.846h-80v-384l-96 96-96-96v384zM512 704v-307.199l64 64 64-64v307.199h-128z" />
<glyph unicode="&#xe97e;" glyph-name="clipboard-edit" d="M846.183 539.189l-83.19 83.19-361.347-361.398 83.378-83.378 361.159 361.586zM868.797 561.83l55.334 55.399c12.479 12.494 12.387 32.803-0.153 45.309l-37.754 37.65c-12.564 12.529-32.807 12.627-45.33 0.102l-55.274-55.282 83.178-83.178zM380.919 236.454l-20.465-99.606 100.317 19.755-79.851 79.851zM704 352v-319.885c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0.084 35.479 28.745 64 64.088 64h31.912c0.029 53.18 43.131 96 96.296 96h31.408c53.089 0 96.267-42.976 96.296-96h31.912c35.443 0 64.004-28.639 64.088-64v0h32.083c35.408 0 63.918-28.705 63.918-64.115v-95.885l114.563 114.563c25.366 25.366 65.641 25.232 90.565 0.309l37.744-37.744c24.846-24.846 24.785-65.471-0.309-90.565l-242.563-242.563zM672 576v127.902c0 17.727-14.551 32.098-31.999 32.098h-32.001c-0.084-35.479-28.745-64-64.088-64h-287.823c-35.443 0-64.004 28.639-64.088 64h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v287.902l-192-192-160-32 32 160 320 320zM320 800h-64.142c-17.595 0-31.858-14.165-31.858-31.967v-32.067c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v32.067c0 17.655-14.235 31.967-31.858 31.967h-64.142v32.067c0 35.309-28.605 63.933-64.156 63.933h-31.688c-35.432 0-64.156-28.744-64.156-63.933v-32.067zM400 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0 0z" />
<glyph unicode="&#xe97f;" glyph-name="clipboard-edit2" d="M846.183 539.189l-361.159-361.586-83.378 83.378 361.347 361.398 83.19-83.19zM868.797 561.83l-83.178 83.178 55.274 55.282c12.523 12.525 32.766 12.428 45.33-0.102l37.754-37.65c12.541-12.506 12.633-32.815 0.153-45.309l-55.334-55.399zM380.919 236.454l79.851-79.851-100.317-19.755 20.465 99.606zM704 608v95.885c0 35.41-28.51 64.115-63.918 64.115h-32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.551-28.693-64.156-64.088-64.156h-287.823c-35.495 0-64.088 28.724-64.088 64.156v31.688c0 0.052 0 0.104 0 0.156h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v319.885l242.563 242.563c25.094 25.094 25.155 65.719 0.309 90.565l-37.744 37.744c-24.924 24.924-65.199 25.057-90.565-0.309l-114.563-114.563zM320 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM400 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe980;" glyph-name="clipboard-add" d="M672 128v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM552.229 0h-328.312c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0.084 35.479 28.745 64 64.088 64h31.912c0.029 53.18 43.131 96 96.296 96h31.408c53.089 0 96.267-42.976 96.296-96h31.912c35.443 0 64.004-28.639 64.088-64v0h32.083c35.408 0 63.918-28.705 63.918-64.115v-467.076c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM736 281.375v454.527c0 17.727-14.551 32.098-31.999 32.098h-32.001c-0.084-35.479-28.745-64-64.088-64h-287.823c-35.443 0-64.004 28.639-64.088 64h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h307.192c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v0 0zM384 832h-64.142c-17.595 0-31.858-14.165-31.858-31.967v-32.067c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v32.067c0 17.655-14.235 31.967-31.858 31.967h-64.142v32.067c0 35.309-28.605 63.933-64.156 63.933h-31.688c-35.432 0-64.156-28.744-64.156-63.933v-32.067zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-32c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0z" />
<glyph unicode="&#xe981;" glyph-name="clipboard-add2" d="M672 96h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM768 304.059v431.826c0 35.41-28.51 64.115-63.918 64.115h-32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.551-28.693-64.156-64.088-64.156h-287.823c-35.495 0-64.088 28.724-64.088 64.156v31.688c0 0.052 0 0.104 0 0.156h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h288.781c-20.698 32.33-32.698 70.763-32.698 112 0 114.875 93.125 208 208 208 28.349 0 55.373-5.671 80-15.941v0zM384 832v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-64c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe982;" glyph-name="clipboard-remove" d="M552.229 0h-328.312c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0.084 35.479 28.745 64 64.088 64h31.912c0.029 53.18 43.131 96 96.296 96h31.408c53.089 0 96.267-42.976 96.296-96h31.912c35.443 0 64.004-28.639 64.088-64v0h32.083c35.408 0 63.918-28.705 63.918-64.115v-467.076c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM736 281.375v454.527c0 17.727-14.551 32.098-31.999 32.098h-32.001c-0.084-35.479-28.745-64-64.088-64h-287.823c-35.443 0-64.004 28.639-64.088 64h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h307.192c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v0 0zM384 832h-64.142c-17.595 0-31.858-14.165-31.858-31.967v-32.067c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v32.067c0 17.655-14.235 31.967-31.858 31.967h-64.142v32.067c0 35.309-28.605 63.933-64.156 63.933h-31.688c-35.432 0-64.156-28.744-64.156-63.933v-32.067zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-32c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM576 128v-32h224v32h-224z" />
<glyph unicode="&#xe983;" glyph-name="clipboard-remove2" d="M768 304.059v431.826c0 35.41-28.51 64.115-63.918 64.115h-32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.551-28.693-64.156-64.088-64.156h-287.823c-35.495 0-64.088 28.724-64.088 64.156v31.688c0 0.052 0 0.104 0 0.156h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h288.781c-20.698 32.33-32.698 70.763-32.698 112 0 114.875 93.125 208 208 208 28.349 0 55.373-5.671 80-15.941v0zM384 832v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-64v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM576 128v-32h224v32h-224z" />
<glyph unicode="&#xe984;" glyph-name="clipboard3" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe985;" glyph-name="clipboard4" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe986;" glyph-name="clipboard-download" d="M480 190.4l-104 104-24-24 144-144 144 144-24 24-104-104v353.6h-32v-353.6zM416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe987;" glyph-name="clipboard-download2" d="M480 190.4l-104 104-24-24 144-144 144 144-24 24-104-104v353.6h-32v-353.6zM416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe988;" glyph-name="clipboard-upload" d="M480 320l-104-104-24 24 144 144 144-144-24-24-104 104v-320h-32v320zM416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe989;" glyph-name="clipboard-upload2" d="M416 800v32.1c0 35.2 28.7 63.9 64.2 63.9h31.7c35.6 0 64.2-28.6 64.2-63.9v-32.1h64.1c17.6 0 31.9-14.3 31.9-32v-32c0-17.8-14.3-32-31.9-32h-288.3c-17.6 0-31.9 14.3-31.9 32v32c0 17.8 14.3 32 31.9 32h64.1zM496 800c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16v0zM736.1 768h-32.1v-31.8c0-35.6-28.7-64.2-64.1-64.2h-287.8c-35.5 0-64.1 28.7-64.1 64.2v31.8h-32.1c-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h224.1v352l-104-104-24 24 144 144 144-144-24-24-104 104v-352h224.1c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1z" />
<glyph unicode="&#xe98a;" glyph-name="clipboard-checked" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM456.114 202.071l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe98b;" glyph-name="clipboard-checked2" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM456.114 202.071l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe98c;" glyph-name="clipboard-text" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM288 352v-32h416v32h-416zM288 256v-32h416v32h-416zM288 160v-32h416v32h-416z" />
<glyph unicode="&#xe98d;" glyph-name="clipboard-text2" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM288 352v-32h416v32h-416zM288 256v-32h416v32h-416zM288 160v-32h416v32h-416z" />
<glyph unicode="&#xe98e;" glyph-name="clipboard-list" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM448 512v-32h256v32h-256zM288 544h96v-96h-96v96zM320 512v-32h32v32h-32zM288 384h96v-96h-96v96zM320 352v-32h32v32h-32zM448 352v-32h256v32h-256zM288 224h96v-96h-96v96zM320 192v-32h32v32h-32zM448 192v-32h256v32h-256z" />
<glyph unicode="&#xe98f;" glyph-name="clipboard-list2" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM448 512v-32h256v32h-256zM288 544v-96h96v96h-96zM320 512v-32h32v32h-32zM288 384v-96h96v96h-96zM320 352v-32h32v32h-32zM448 352v-32h256v32h-256zM288 224v-96h96v96h-96zM320 192v-32h32v32h-32zM448 192v-32h256v32h-256z" />
<glyph unicode="&#xe990;" glyph-name="note2" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719z" />
<glyph unicode="&#xe991;" glyph-name="note3" d="M160 608v-479.972c0-35.176 28.569-64.028 63.81-64.028h448.19v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v288h-736zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" />
<glyph unicode="&#xe992;" glyph-name="note-add" d="M800 160h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM659.191 96h-435.231c-17.651 0-31.96 14.036-31.96 31.96v480.040h672v-262.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0zM896 332.809v403.163c0 35.176-28.666 64.028-64.028 64.028h-607.945c-35.176 0-64.028-28.666-64.028-64.028v-607.945c0-35.176 28.666-64.028 64.028-64.028h456.202c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v0zM192 640v96.040c0 17.651 14.036 31.96 31.96 31.96h608.080c17.651 0 31.96-14.036 31.96-31.96v-96.040h-672zM816 32v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe993;" glyph-name="note-add2" d="M800 160h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM640.698 64h-416.671c-35.361 0-64.028 28.852-64.028 64.028v479.972h736v-239.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.852 64.028-64.028v-95.972h-736zM816 0c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe994;" glyph-name="note-remove" d="M659.191 96h-435.231c-17.651 0-31.96 14.036-31.96 31.96v480.040h672v-262.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0zM896 332.809v403.163c0 35.176-28.666 64.028-64.028 64.028h-607.945c-35.176 0-64.028-28.666-64.028-64.028v-607.945c0-35.176 28.666-64.028 64.028-64.028h456.202c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v0zM192 640v96.040c0 17.651 14.036 31.96 31.96 31.96h608.080c17.651 0 31.96-14.036 31.96-31.96v-96.040h-672zM816 32v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM704 192v-32h224v32h-224z" />
<glyph unicode="&#xe995;" glyph-name="note-remove2" d="M640.698 64h-416.671c-35.361 0-64.028 28.852-64.028 64.028v479.972h736v-239.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.852 64.028-64.028v-95.972h-736zM816 0v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM704 192v-32h224v32h-224z" />
<glyph unicode="&#xe996;" glyph-name="note-text" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM256 512v-32h544v32h-544zM256 416v-32h544v32h-544zM256 320v-32h352v32h-352zM256 224v-32h352v32h-352z" />
<glyph unicode="&#xe997;" glyph-name="note-text2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM256 512v-32h544v32h-544zM256 416v-32h544v32h-544zM256 320v-32h352v32h-352zM256 224v-32h352v32h-352z" />
<glyph unicode="&#xe998;" glyph-name="note-list" d="M688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM416 384v-32h224v32h-224zM256 416h96v-96h-96v96zM288 384v-32h32v32h-32zM416 512v-32h384v32h-384zM256 544h96v-96h-96v96zM288 512v-32h32v32h-32zM416 256v-32h192v32h-192zM256 288h96v-96h-96v96zM288 256v-32h32v32h-32z" />
<glyph unicode="&#xe999;" glyph-name="note-list2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM416 384v-32h224v32h-224zM256 416v-96h96v96h-96zM288 384v-32h32v32h-32zM416 512v-32h384v32h-384zM256 544v-96h96v96h-96zM288 512v-32h32v32h-32zM416 256v-32h192v32h-192zM256 288v-96h96v96h-96zM288 256v-32h32v32h-32z" />
<glyph unicode="&#xe99a;" glyph-name="note-checked" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM459.314 237.271l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe99b;" glyph-name="note-checked2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM459.314 237.271l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe99c;" glyph-name="note-important" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM480 544h96v-256h-96v256zM512 512v-192h32v192h-32zM480 256h96v-96h-96v96zM512 224v-32h32v32h-32z" />
<glyph unicode="&#xe99d;" glyph-name="note-important2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM512 512v-192h32v192h-32zM512 224v-32h32v32h-32z" />
<glyph unicode="&#xe99e;" glyph-name="notebook2" d="M224 352h-32v32h32v96h-32v32h32v96h-32v32h32v96h-32v32h32v31.765c0 35.488 28.617 64.235 63.918 64.235h480.165c35.408 0 63.918-28.759 63.918-64.235v-735.531c0-35.488-28.617-64.235-63.918-64.235h-480.165c-35.408 0-63.918 28.759-63.918 64.235v31.765h-32v32h32v96h-32v32h32v96zM256 352v-96h32v-32h-32v-96h32v-32h-32v-32.145c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855v736.291c0 17.593-14.551 31.855-31.999 31.855h-480.003c-17.672 0-31.999-14.568-31.999-31.855v-32.145h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32zM352 704v-32h352v32h-352zM384 576v-32h288v32h-288z" />
<glyph unicode="&#xe99f;" glyph-name="notebook3" d="M160 384h64v-32h-64v32zM160 512h64v-32h-64v32zM160 256h64v-32h-64v32zM160 128h64v-32h-64v32zM160 640h64v-32h-64v32zM160 768h64v-32h-64v32zM768.1 864h-480.2c-35.3 0-63.9-28.7-63.9-64.2v-31.8h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-31.8c0-35.5 28.5-64.2 63.9-64.2h480.2c35.3 0 63.9 28.7 63.9 64.2v735.6c0 35.4-28.5 64.2-63.9 64.2zM672 544h-288v32h288v-32zM704 672h-352v32h352v-32z" />
<glyph unicode="&#xe9a0;" glyph-name="notebook4" d="M224 352h-32v32h32v96h-32v32h32v96h-32v32h32v96h-32v32h32v31.765c0 35.488 28.617 64.235 63.918 64.235h480.165c35.408 0 63.918-28.759 63.918-64.235v-735.531c0-35.488-28.617-64.235-63.918-64.235h-480.165c-35.408 0-63.918 28.759-63.918 64.235v31.765h-32v32h32v96h-32v32h32v96zM256 352v-96h32v-32h-32v-96h32v-32h-32v-32.145c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855v736.291c0 17.593-14.551 31.855-31.999 31.855h-480.003c-17.672 0-31.999-14.568-31.999-31.855v-32.145h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32zM384 704h288v-160h-288v160zM416 672v-96h224v96h-224z" />
<glyph unicode="&#xe9a1;" glyph-name="notebook5" d="M160 384h64v-32h-64v32zM160 128h64v-32h-64v32zM160 256h64v-32h-64v32zM160 512h64v-32h-64v32zM160 640h64v-32h-64v32zM160 768h64v-32h-64v32zM416 672h224v-96h-224v96zM768.1 864h-480.2c-35.3 0-63.9-28.7-63.9-64.2v-31.8h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-31.8c0-35.5 28.5-64.2 63.9-64.2h480.2c35.3 0 63.9 28.7 63.9 64.2v735.6c0 35.4-28.5 64.2-63.9 64.2zM672 544h-288v160h288v-160z" />
<glyph unicode="&#xe9a2;" glyph-name="notebook6" d="M704 832h64.001c17.448 0 31.999-14.262 31.999-31.855v-736.291c0-17.286-14.326-31.855-31.999-31.855h-480.003c-17.448 0-31.999 14.262-31.999 31.855v32.145h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32v32.145c0 17.286 14.326 31.855 31.999 31.855h224.001v-384l96 96 96-96v384zM224 352v-96h-32v-32h32v-96h-32v-32h32v-31.765c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.747 63.918 64.235v735.531c0 35.476-28.51 64.235-63.918 64.235h-480.165c-35.301 0-63.918-28.747-63.918-64.235v-31.765h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32zM544 832h128v-307.199l-64 64-64-64v307.199z" />
<glyph unicode="&#xe9a3;" glyph-name="notebook7" d="M704 864h64.082c35.408 0 63.918-28.759 63.918-64.235v-735.531c0-35.488-28.617-64.235-63.918-64.235h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.617 64.235 63.918 64.235h224.082v-416l96 96 96-96v416zM160 640v-32h64v32h-64zM160 512v-32h64v32h-64zM160 768v-32h64v32h-64zM160 256v-32h64v32h-64zM160 128v-32h64v32h-64zM160 384v-32h64v32h-64zM224 640v-32h64v32h-64zM224 512v-32h64v32h-64zM224 768v-32h64v32h-64zM224 256v-32h64v32h-64zM224 128v-32h64v32h-64zM224 384v-32h64v32h-64zM544 864v-339.199l64 64 64-64v339.199h-128z" />
<glyph unicode="&#xe9a4;" glyph-name="notebook8" d="M672 832v32h32v-32h32.082c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.082v32h32v-32h96v32h32v-32h96v32h32v-32h96zM672 800h-96v-32h-32v32h-96v-32h-32v32h-96v-32h-32v32h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v671.803c0 17.727-14.551 32.098-31.999 32.098h-32.001v-32h-32v32z" />
<glyph unicode="&#xe9a5;" glyph-name="notebook9" d="M416 896h32v-64h-32v64zM544 896h32v-64h-32v64zM672 896h32v-64h-32v64zM288 896h32v-64h-32v64zM736.1 832c0 0-28.1 0-32.1 0v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64c-4 0-32.1 0-32.1 0-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h480.2c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1z" />
<glyph unicode="&#xe9a6;" glyph-name="notebook-text" d="M672 832v32h32v-32h32.082c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.082v32h32v-32h96v32h32v-32h96v32h32v-32h96zM672 800h-96v-32h-32v32h-96v-32h-32v32h-96v-32h-32v32h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v671.803c0 17.727-14.551 32.098-31.999 32.098h-32.001v-32h-32v32zM288 672v-32h416v32h-416zM288 576v-32h416v32h-416zM288 480v-32h416v32h-416zM288 384v-32h416v32h-416zM288 288v-32h416v32h-416zM288 192v-32h416v32h-416z" />
<glyph unicode="&#xe9a7;" glyph-name="notebook-text2" d="M736.1 832c0 0-28.1 0-32.1 0v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64c-4 0-32.1 0-32.1 0-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h480.2c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1zM704 160h-416v32h416v-32zM704 256h-416v32h416v-32zM704 352h-416v32h416v-32zM704 448h-416v32h416v-32zM704 544h-416v32h416v-32zM704 640h-416v32h416v-32zM288 896h32v-64h-32v64zM416 896h32v-64h-32v64zM544 896h32v-64h-32v64zM672 896h32v-64h-32v64z" />
<glyph unicode="&#xe9a8;" glyph-name="notebook-list" d="M672 832v32h32v-32h32.082c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.082v32h32v-32h96v32h32v-32h96v32h32v-32h96zM672 800h-96v-32h-32v32h-96v-32h-32v32h-96v-32h-32v32h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v671.803c0 17.727-14.551 32.098-31.999 32.098h-32.001v-32h-32v32zM448 576v-32h256v32h-256zM288 608h96v-96h-96v96zM320 576v-32h32v32h-32zM288 448h96v-96h-96v96zM320 416v-32h32v32h-32zM448 416v-32h256v32h-256zM288 288h96v-96h-96v96zM320 256v-32h32v32h-32zM448 256v-32h256v32h-256z" />
<glyph unicode="&#xe9a9;" glyph-name="notebook-list2" d="M288 896h32v-64h-32v64zM416 896h32v-64h-32v64zM544 896h32v-64h-32v64zM672 896h32v-64h-32v64zM320 256h32v-32h-32v32zM320 416h32v-32h-32v32zM320 576h32v-32h-32v32zM736.1 832c0 0-28.1 0-32.1 0v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64c-4 0-32.1 0-32.1 0-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h480.2c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1zM384 192h-96v96h96v-96zM384 352h-96v96h96v-96zM384 512h-96v96h96v-96zM704 224h-256v32h256v-32zM704 384h-256v32h256v-32zM704 544h-256v32h256v-32z" />
<glyph unicode="&#xe9aa;" glyph-name="document2" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9ab;" glyph-name="document3" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9ac;" glyph-name="document-text" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 640v-32h224v32h-224zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9ad;" glyph-name="document-text2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM320 640v-32h224v32h-224zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9ae;" glyph-name="document-text3" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 640v-32h160v32h-160zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h320v32h-320zM320 352v-32h416v32h-416zM320 256v-32h288v32h-288zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9af;" glyph-name="document-text4" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM320 640v-32h160v32h-160zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h320v32h-320zM320 352v-32h416v32h-416zM320 256v-32h288v32h-288zM320 160v-32h416v32h-416zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b0;" glyph-name="document-download" d="M512 158.4l-104 104-24-24 144-144 144 144-24 24-104-104v353.6h-32v-353.6zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9b1;" glyph-name="document-download2" d="M512 158.4v353.6h32v-353.6l104 104 24-24-144-144-144 144 24 24 104-104zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b2;" glyph-name="document-upload" d="M512 32h-224.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-544.211c0-17.55-14.326-31.789-31.999-31.789h-224.001v320l104-104 24 24-144 144-144-144 24-24 104 104v-320zM624 864h-335.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v576.295l-192 224h-16zM640 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xe9b3;" glyph-name="document-upload2" d="M512 0h-224.082c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-224.082v352l104-104 24 24-144 144-144-144 24-24 104 104v-352zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b4;" glyph-name="document-bookmark" d="M512 832h96v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-544.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h32.142v-352l96 96 96-96v352zM624 864h-335.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v576.295l-192 224h-16zM640 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM352 832h128v-275.199l-64 64-64-64v275.199z" />
<glyph unicode="&#xe9b5;" glyph-name="document-bookmark2" d="M512 864h96v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h31.727v-384l96 96 96-96v384zM352 864v-307.199l64 64 64-64v307.199h-128zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b6;" glyph-name="document-diagrams" d="M608 384v96h-160v-160h-128v-192h416v256h-128zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM352 288h96v-128h-96v128zM480 448h96v-288h-96v288zM608 352h96v-192h-96v192z" />
<glyph unicode="&#xe9b7;" glyph-name="document-diagrams2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM352 288v-128h96v128h-96zM480 448v-288h96v288h-96zM608 352v-192h96v192h-96z" />
<glyph unicode="&#xe9b8;" glyph-name="document-recording" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM416 304.173v47.827h32v-47.764c0-44.313 35.509-80.236 80-80.236 44.183 0 80 35.989 80 80.236v47.764h32v-47.827c0-56.562-41.723-103.27-96-111.038v-65.135h64v-32h-160v32h64v65.14c-54.186 7.788-96 54.532-96 111.033v0zM480 431.946v0c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-127.893c0-26.576-21.49-48.054-48-48.054-26.694 0-48 21.514-48 48.054v127.893zM528 448c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0z" />
<glyph unicode="&#xe9b9;" glyph-name="document-recording2" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM416 304.173v47.827h32v-47.764c0-44.313 35.509-80.236 80-80.236 44.183 0 80 35.989 80 80.236v47.764h32v-47.827c0-56.562-41.723-103.27-96-111.038v-65.135h64v-32h-160v32h64v65.14c-54.186 7.788-96 54.532-96 111.033v0zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM480 431.946v0c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-127.893c0-26.576-21.49-48.054-48-48.054-26.694 0-48 21.514-48 48.054v127.893zM528 448c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0z" />
<glyph unicode="&#xe9ba;" glyph-name="document-table" d="M512 288v-64h-128v64h128zM544 288h128v-64h-128v64zM512 128h-128v64h128v-64zM544 128v64h128v-64h-128zM512 384v-64h-128v64h128zM544 384h128v-64h-128v64zM512 480v-64h-128v64h128zM544 480h128v-64h-128v64zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM352 544v-448h352v448h-352z" />
<glyph unicode="&#xe9bb;" glyph-name="document-table2" d="M512 288h-128v-64h128v64zM544 288h128v-64h-128v64zM512 128h-128v64h128v-64zM544 128h128v64h-128v-64zM512 384h-128v-64h128v64zM544 384h128v-64h-128v64zM512 480h-128v-64h128v64zM544 480h128v-64h-128v64zM608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM352 544v-448h352v448h-352z" />
<glyph unicode="&#xe9bc;" glyph-name="document-music" d="M704 472.889v-200.883c-13.371 10.043-29.99 15.994-48 15.994-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80v304l-288-64v-207.994c-13.371 10.043-29.99 15.994-48 15.994-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80v247.111l224 49.778zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM400 128v0c-26.51 0-48 21.49-48 48s21.49 48 48 48c26.51 0 48-21.49 48-48s-21.49-48-48-48zM656 160v0c-26.51 0-48 21.49-48 48s21.49 48 48 48c26.51 0 48-21.49 48-48s-21.49-48-48-48z" />
<glyph unicode="&#xe9bd;" glyph-name="document-music2" d="M704 472.889l-224-49.778v-247.111c0-44.183-35.817-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80 18.010 0 34.629-5.951 48-15.994v207.994l288 64v-304c0-44.183-35.817-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80 18.010 0 34.629-5.951 48-15.994v200.883zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM400 128c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM656 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe9be;" glyph-name="document-movie" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 448h416v-352h-416v352zM416 416v-128h224v128h-224zM416 256v-128h224v128h-224zM352 416v-32h32v32h-32zM352 352v-32h32v32h-32zM352 288v-32h32v32h-32zM352 224v-32h32v32h-32zM352 160v-32h32v32h-32zM672 416v-32h32v32h-32zM672 352v-32h32v32h-32zM672 288v-32h32v32h-32zM672 224v-32h32v32h-32zM672 160v-32h32v32h-32z" />
<glyph unicode="&#xe9bf;" glyph-name="document-movie2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM320 448v-352h416v352h-416zM416 416v-128h224v128h-224zM416 256v-128h224v128h-224zM352 416v-32h32v32h-32zM352 352v-32h32v32h-32zM352 288v-32h32v32h-32zM352 224v-32h32v32h-32zM352 160v-32h32v32h-32zM672 416v-32h32v32h-32zM672 352v-32h32v32h-32zM672 288v-32h32v32h-32zM672 224v-32h32v32h-32zM672 160v-32h32v32h-32z" />
<glyph unicode="&#xe9c0;" glyph-name="document-play" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM384 416l288-144-288-144v288zM416 364.8v-185.6l185.602 92.8-185.602 92.8z" />
<glyph unicode="&#xe9c1;" glyph-name="document-play2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM384 416v-288l288 144-288 144zM416 364.8v-185.6l185.602 92.8-185.602 92.8z" />
<glyph unicode="&#xe9c2;" glyph-name="document-graph" d="M478.699 262.353l-94.699-101.552v-0.8h320v-32h-352v256h32v-176.279l93.12 99.859 70.21-65.472 102.476 109.892h-41.805v32h96v-96h-32v40.88l-123.091-131.999-70.21 65.472zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9c3;" glyph-name="document-graph2" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM478.699 262.353l-94.699-101.552v-0.8h320v-32h-352v256h32v-176.279l93.12 99.859 70.21-65.472 102.476 109.892h-41.805v32h96v-96h-32v40.88l-123.091-131.999-70.21 65.472z" />
<glyph unicode="&#xe9c4;" glyph-name="document-time" d="M671.121 288h-127.121v127.121c66.746-7.378 119.743-60.375 127.121-127.121zM671.121 256c-7.959-71.999-69-128-143.121-128-79.529 0-144 64.471-144 144 0 74.121 56.001 135.162 128 143.121v-159.121h159.121zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM528 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe9c5;" glyph-name="document-time2" d="M703.283 288h-159.283v159.283c84.434-7.609 151.674-74.848 159.283-159.283zM703.283 256c-8.084-89.704-83.474-160-175.283-160-97.202 0-176 78.798-176 176 0 91.809 70.296 167.199 160 175.283v-191.283h191.283zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9c6;" glyph-name="document-text5" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 768v-64h32v32h32v-128h32v128h32v-32h32v64h-160zM320 448v-32h416v32h-416zM320 544v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9c7;" glyph-name="document-text6" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM320 768v-64h32v32h32v-128h32v128h32v-32h32v64h-160zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM320 448v-32h416v32h-416zM320 544v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9c8;" glyph-name="document-code" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM544 384l-64-256h32l64 256h-32zM416 160l-96 96 96 96 22.4-22.4-73.6-73.6 73.6-73.6-22.4-22.4zM640 160l96 96-96 96-22.4-22.4 73.6-73.6-73.6-73.6 22.4-22.4z" />
<glyph unicode="&#xe9c9;" glyph-name="document-code2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM416 128l22.4 22.4-105.6 105.6 105.6 105.6-22.4 22.4-128-128 128-128zM640 128l128 128-128 128-22.4-22.4 105.6-105.6-105.6-105.6 22.4-22.4zM544 384l-64-256h32l64 256h-32z" />
<glyph unicode="&#xe9ca;" glyph-name="document-cloud" d="M513.134 288h-0.947c-35.45 0-64.187-28.407-64.187-64 0-35.346 28.706-64 64.187-64h319.625c35.45 0 64.187 28.407 64.187 64 0 35.346-28.706 64-64.187 64h-1.413c-7.412 36.516-39.696 64-78.4 64-8.724 0-17.122-1.397-24.983-3.978-17.103 39.971-56.789 67.978-103.017 67.978-61.856 0-112-50.144-112-112 0-5.432 0.387-10.774 1.134-16v0zM736 394.517v0 0c2.809-3.471 5.46-7.076 7.942-10.803 2.661 0.189 5.349 0.285 8.058 0.285 45.721 0 85.043-27.396 102.446-66.668 42.404-10.151 73.554-48.086 73.554-93.332 0-52.911-43.116-96-96.303-96h-95.697v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-245.483zM704 423.751v184.249h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211h-191.697c-53.531 0-96.303 42.981-96.303 96 0 41.781 26.885 77.438 64.383 90.59 5.421 74.584 67.649 133.41 143.617 133.41 29.602 0 57.118-8.932 80-24.249v0 0zM544 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9cb;" glyph-name="document-cloud2" d="M743.942 383.715c2.661 0.189 5.349 0.285 8.058 0.285 45.721 0 85.043-27.396 102.446-66.668v0c42.404-10.151 73.554-48.086 73.554-93.332 0-52.911-43.116-96-96.303-96h-319.393c-53.531 0-96.303 42.981-96.303 96 0 41.781 26.885 77.438 64.383 90.59 5.421 74.584 67.649 133.41 143.617 133.41 50.050 0 94.136-25.534 119.942-64.285v0zM736 96v-32.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-168.229c-30.43 25.131-69.452 40.229-112 40.229-86.075 0-157.718-61.79-172.993-143.433-39.908-21.695-67.007-64.031-67.007-112.567 0-70.692 57.243-128 127.878-128h224.122zM544 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9cc;" glyph-name="documents2" d="M223.918 799.945l0.083 0.055c0 0 0 0-0.001 0s0 0 0.001 0c0.126 35.38 28.694 64 63.917 64 0.209 35.38 28.854 64 64.171 64h351.912l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705-0.209-35.38-28.777-64-64-64-0.209-35.38-28.777-64-64-64h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.617 64.235 63.918 64.235v-0.055zM223.999 768c-17.672 0-31.999-14.568-31.999-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855l-448.082 0.145c-35.408 0-63.918 28.759-63.918 64.235v703.765c0 0 0 0-0.001 0.001v-0.001zM287.999 832c-17.672 0-31.999-14.568-31.999-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855v0.145h-448.082c-35.408 0-63.918 28.759-63.918 64.235v703.765h-0.001zM672 896h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM704 880v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9cd;" glyph-name="documents3" d="M287.918 864c0.209 35.38 28.937 64 64.355 64h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918-0.209-35.38-28.777-64-64-64-0.209-35.38-28.777-64-64-64h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.617 64.235 63.918 64.235 0.082 35.253 28.699 64 64 64v0zM224 64.235l-0.001 703.765c-17.672 0-31.999-14.568-31.999-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855l-448.082 0.145c-35.408 0-63.918 28.759-63.918 64.235zM256 800.145v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855l-448.082 0.145c-35.408 0-63.918 28.759-63.918 64.235v703.765c-17.674 0-32-14.568-32-31.855v0zM704 928v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9ce;" glyph-name="documents4" d="M736 560v-432h128.001c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-96.145h192l192-224v-16zM320 800v95.765c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-128.082v-96.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h127.912zM736 912v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM512 768h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM544 752v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9cf;" glyph-name="documents5" d="M736 96h128.082c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-63.765h240l208-243.2v-492.8h-32v448h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v96.082zM736 960v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM544 800v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9d0;" glyph-name="document-search" d="M553.883 255.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM464 256c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xe9d1;" glyph-name="document-search2" d="M553.883 255.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM464 256c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xe9d2;" glyph-name="document-star" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM528 224l-128-96 48 160-128 96h160l48 160 48-160h160l-128-96 48-160-128 96z" />
<glyph unicode="&#xe9d3;" glyph-name="document-star2" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM528 224l-128-96 48 160-128 96h160l48 160 48-160h160l-128-96 48-160-128 96z" />
<glyph unicode="&#xe9d4;" glyph-name="document-unlocked" d="M768 373.186v298.814l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h352.082v-31.906c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.182 31.921 31.956v160.116c0 17.633-14.302 31.928-32.078 31.928h-191.922v80.076c0 43.838 35.817 79.924 80 79.924 44.491 0 80-35.783 80-79.924v-16.076h32v15.899c0 44.697-26.201 83.284-64 101.287v0 0zM576 64h-352.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-257.139c-5.227 0.751-10.569 1.139-16 1.139-61.856 0-112-50.201-112-112.101v-79.899c-17.673 0-32-14.012-32-32.094v-95.906zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM624.11 160h191.781c8.657 0 16.11-7.13 16.11-15.926v-128.147c0-9.051-7.212-15.926-16.11-15.926h-191.781c-8.657 0-16.11 7.13-16.11 15.926v128.147c0 9.051 7.212 15.926 16.11 15.926z" />
<glyph unicode="&#xe9d5;" glyph-name="document-unlocked2" d="M768 640h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h320.082v128.061c0 23.848 12.872 44.463 32 55.458v56.735c0 79.203 64.471 143.746 144 143.746 16.82 0 32.978-2.89 48-8.202v232.202zM576 704.094c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224v-191.906zM816.039 192h16.039c17.639 0 31.921-14.369 31.921-32.094v-159.813c0-18.082-14.292-32.094-31.921-32.094h-224.157c-17.639 0-31.921 14.369-31.921 32.094v159.813c0 18.082 14.292 32.094 32 32.094v80.080c0 61.92 50.144 111.92 112 111.92 61.73 0 112-50.109 112-111.92v-16.080h-32v15.702c0 44.347-35.509 80.298-80 80.298-44.183 0-80-35.596-80-80.298v-79.702h176.039z" />
<glyph unicode="&#xe9d6;" glyph-name="document-locked" d="M576 32v-31.906c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.282 32.094-31.921 32.094h-0.079v47.827c0 44.726-26.201 83.338-64 101.352v330.821l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h352.082zM576 64h-352.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-289.14c-5.227 0.751-10.569 1.14-16 1.14-61.856 0-112-50.166-112-112.173v-47.827h-0.079c-17.63 0-31.921-14.012-31.921-32.094v-95.906zM640 192v47.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-47.702h-160zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM624.11 160h191.781c8.657 0 16.11-7.13 16.11-15.926v-128.147c0-9.051-7.212-15.926-16.11-15.926h-191.781c-8.657 0-16.11 7.13-16.11 15.926v128.147c0 9.051 7.212 15.926 16.11 15.926z" />
<glyph unicode="&#xe9d7;" glyph-name="document-locked2" d="M768 640h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h320.082v143.946c0 20.914 13.351 38.671 32 45.287v18.68c0 79.329 64.471 144.086 144 144.086 16.82 0 32.978-2.897 48-8.221v264.221zM576 704.094c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224v-191.906zM608 239.827l-0.079-47.827c-17.63 0-31.921-14.012-31.921-32.094v-159.813c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.282 32.094-32 32.094v47.827c0 61.951-50.27 112.173-112 112.173-61.856 0-112-50.166-112-112.173zM640 239.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-47.702h-160v47.702z" />
<glyph unicode="&#xe9d8;" glyph-name="document-error" d="M768 130.462v541.538l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h261.901l-37.818-64h416l-96 162.462zM504.727 64h-280.729c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-455.385l-80 135.385-151.273-256zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM656 256l152-256h-304l152 256zM640 192v-96h32v96h-32zM640 64v-32h32v32h-32z" />
<glyph unicode="&#xe9d9;" glyph-name="document-error2" d="M448.222 32h-224.305c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-445.741l-112 189.741-207.778-352zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM656 320l208-352h-416l208 352zM640 192v-96h32v96h-32zM640 64v-32h32v32h-32z" />
<glyph unicode="&#xe9da;" glyph-name="document-cancel" d="M688 121.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe9db;" glyph-name="document-cancel2" d="M688 121.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe9dc;" glyph-name="document-checked" d="M552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM672 56.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe9dd;" glyph-name="document-checked2" d="M512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM672 56.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe9de;" glyph-name="document-add" d="M672 160v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe9df;" glyph-name="document-add2" d="M672 160v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe9e0;" glyph-name="document-remove" d="M552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM576 160v-32h224v32h-224z" />
<glyph unicode="&#xe9e1;" glyph-name="document-remove2" d="M512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM576 160v-32h224v32h-224z" />
<glyph unicode="&#xe9e2;" glyph-name="document-forbidden" d="M800.51 233.883c19.706-24.635 31.49-55.883 31.49-89.883 0-79.529-64.471-144-144-144-34 0-65.248 11.784-89.883 31.49l202.393 202.393zM777.883 256.51l-202.393-202.393c-19.706 24.635-31.49 55.883-31.49 89.883 0 79.529 64.471 144 144 144 34 0 65.248-11.784 89.883-31.49zM552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xe9e3;" glyph-name="document-forbidden2" d="M824.588 255.004c24.641-30.283 39.412-68.918 39.412-111.004 0-97.202-78.798-176-176-176-42.085 0-80.72 14.771-111.004 39.412l247.591 247.591zM802.228 277.899c-30.742 26.251-70.634 42.101-114.228 42.101-97.202 0-176-78.798-176-176 0-43.594 15.85-83.486 42.101-114.228l248.128 248.128zM512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9e4;" glyph-name="document-information" d="M552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM640 160v-32h32v-32h-32v-32h96v32h-32v64h-64zM672 224v-32h32v32h-32z" />
<glyph unicode="&#xe9e5;" glyph-name="document-information2" d="M512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM640 160v-32h32v-32h-32v-32h96v32h-32v64h-64zM672 224v-32h32v32h-32z" />
<glyph unicode="&#xe9e6;" glyph-name="folder-information" d="M691.191 160v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 128h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 576h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 96c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM832 320v-32h32v32h-32zM800 256v-32h32v-32h-32v-32h96v32h-32v64h-64z" />
<glyph unicode="&#xe9e7;" glyph-name="folder-information2" d="M672.698 128h-608.913c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-208.098c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 576v-32h928v32h-928zM848 64v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM800 256v-32h32v-32h-32v-32h96v32h-32v64h-64zM832 320v-32h32v32h-32z" />
<glyph unicode="&#xe9e8;" glyph-name="document-list" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM480 512v-32h256v32h-256zM320 544h96v-96h-96v96zM352 512v-32h32v32h-32zM320 384h96v-96h-96v96zM352 352v-32h32v32h-32zM480 352v-32h256v32h-256zM320 224h96v-96h-96v96zM352 192v-32h32v32h-32zM480 192v-32h256v32h-256z" />
<glyph unicode="&#xe9e9;" glyph-name="document-list2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM480 512v-32h256v32h-256zM320 544v-96h96v96h-96zM352 512v-32h32v32h-32zM320 384v-96h96v96h-96zM352 352v-32h32v32h-32zM480 352v-32h256v32h-256zM320 224v-96h96v96h-96zM352 192v-32h32v32h-32zM480 192v-32h256v32h-256z" />
<glyph unicode="&#xe9ea;" glyph-name="document-font" d="M704 143.994c-13.371-10.043-29.99-15.994-48-15.994-44.183 0-80 35.817-80 80s35.817 80 80 80c18.010 0 34.629-5.951 48-15.994v15.994h32v-160h-32v15.994zM477.714 224h-91.429l-34.286-96h-32l96 256h32l96-256h-32l-34.286 96zM466.286 256l-34.286 96-34.286-96h68.571zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM656 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe9eb;" glyph-name="document-font2" d="M704 143.994c-13.371-10.043-29.99-15.994-48-15.994-44.183 0-80 35.817-80 80s35.817 80 80 80c18.010 0 34.629-5.951 48-15.994v15.994h32v-160h-32v15.994zM477.714 224h-91.429l-34.286-96h-32l96 256h32l96-256h-32l-34.286 96zM466.286 256l-34.286 96-34.286-96h68.571zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM656 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe9ec;" glyph-name="inbox" d="M672 448h216.801l-140 224h-441.602l-140-224h216.801v-64.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v64.067zM704 416v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM128 432v16l160 256h480l160-256v-288h-800v272z" />
<glyph unicode="&#xe9ed;" glyph-name="inbox2" d="M384 448v-63.811c0-35.451 28.667-64.189 63.917-64.189h160.167c35.3 0 63.917 28.37 63.917 64.189v63.811h216.801l-140 224h-441.602l-140-224h216.801zM128 448l160 256h480l160-256v-288h-800v288z" />
<glyph unicode="&#xe9ee;" glyph-name="inboxes" d="M640 576h216.801l-140 224h-441.602l-140-224h216.801v-64.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v64.067zM672 544v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM896 304v-272h-800v544l160 256h480l160-256v-272zM352 288v-32.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v32.067h-288zM672 288v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192z" />
<glyph unicode="&#xe9ef;" glyph-name="inboxes2" d="M896 320v256l-160 256h-480l-160-256v-256h800zM352 288h-256v-256h800v256h-256v-48.001c0-44.437-28.616-79.999-63.917-79.999h-160.167c-35.249 0-63.917 35.817-63.917 79.999v48.001zM352 576h-216.801l140 224h441.602l140-224h-216.801v-63.811c0-35.82-28.616-64.189-63.917-64.189h-160.167c-35.249 0-63.917 28.739-63.917 64.189v63.811z" />
<glyph unicode="&#xe9f0;" glyph-name="inbox-document" d="M640 352h128v224h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.045-31.858-32.098v-415.902h128v-64.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v64.067zM672 320v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM96 336v16l96 153.6v262.242c0 35.453 28.693 64.158 64.088 64.158h351.912l192-224v-102.4l96-153.6v-288h-800v272zM192 352v90.881l-56.801-90.881h56.801zM800 352h56.801l-56.801 90.881v-90.881zM608 784v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9f1;" glyph-name="inbox-document2" d="M640 352v-64.067c0-35.189-28.616-63.933-63.917-63.933h-160.167c-35.249 0-63.917 28.624-63.917 63.933v64.067h-128v415.902c0 18.053 14.264 32.098 31.858 32.098h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-224h-128zM896 304v48l-96 153.6v102.4l-192 224h-351.912c-35.395 0-64.088-28.705-64.088-64.158v-262.242l-96-153.6v-288h800v240zM192 352h-56.801l56.801 90.881v-90.881zM856.801 352h-56.801v90.881l56.801-90.881zM608 784l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xe9f2;" glyph-name="inbox-document-text" d="M672 320h192v-224h-736v224h192v-48c0-44.183 35.689-80 79.874-80h192.252c44.113 0 79.874 35.509 79.874 80v48zM96 336v-272h800v288l-96 153.6v102.4l-192 224h-351.912c-35.395 0-64.088-28.705-64.088-64.158v-262.242l-96-153.6v-16zM192 352h-56.801l56.801 90.881v-90.881zM800 352v90.881l56.801-90.881h-56.801zM224 352v415.902c0 18.053 14.264 32.098 31.858 32.098h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-224h-544zM608 784l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM352 320h288v-48c0-26.694-21.582-48-48.205-48h-191.591c-26.558 0-48.205 21.49-48.205 48v48zM288 480v-32h416v32h-416zM288 736v-32h224v32h-224zM288 608v-32h224v32h-224z" />
<glyph unicode="&#xe9f3;" glyph-name="inbox-document-text2" d="M896 304v48l-96 153.6v102.4l-192 224h-351.912c-35.395 0-64.088-28.705-64.088-64.158v-262.242l-96-153.6v-288h800v240zM192 352h-56.801l56.801 90.881v-90.881zM856.801 352h-56.801v90.881l56.801-90.881zM224 352v415.902c0 18.053 14.264 32.098 31.858 32.098h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-224h-544zM608 784l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM288 480v-32h416v32h-416zM288 736v-32h224v32h-224zM288 608v-32h224v32h-224zM352 288v32h288v-32c0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64z" />
<glyph unicode="&#xe9f4;" glyph-name="inbox-download" d="M480 448l-104 104-24-24 144-144 144 144-24 24-104-104v352h-32v-352zM544 608h172.801l140-224h-216.801v-64.067c0-35.189-28.616-63.933-63.917-63.933h-160.167c-35.249 0-63.917 28.624-63.917 63.933v64.067h-216.801l140 224h172.801v32h-192l-160-256v-288h800v288l-160 256h-192v-32zM672 352h192v-224h-736v224h192v-48c0-44.183 35.689-80 79.874-80h192.252c44.113 0 79.874 35.509 79.874 80v48z" />
<glyph unicode="&#xe9f5;" glyph-name="inbox-download2" d="M480 448l-104 104-24-24 144-144 144 144-24 24-104-104v352h-32v-352zM640 384h216.801l-140 224h-172.801v32h192l160-256v-288h-800v288l160 256h192v-32h-172.801l-140-224h216.801v-64c0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64v64z" />
<glyph unicode="&#xe9f6;" glyph-name="inbox-upload" d="M480 800l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM544 608h172.801l140-224h-216.801v-64.067c0-35.189-28.616-63.933-63.917-63.933h-160.167c-35.249 0-63.917 28.624-63.917 63.933v64.067h-216.801l140 224h172.801v32h-192l-160-256v-288h800v288l-160 256h-192v-32zM672 352h192v-224h-736v224h192v-48c0-44.183 35.689-80 79.874-80h192.252c44.113 0 79.874 35.509 79.874 80v48z" />
<glyph unicode="&#xe9f7;" glyph-name="inbox-upload2" d="M480 800l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM640 384h216.801l-140 224h-172.801v32h192l160-256v-288h-800v288l160 256h192v-32h-172.801l-140-224h216.801v-64c0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64v64z" />
<glyph unicode="&#xe9f8;" glyph-name="folder2" d="M512 672h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128zM491.52 640l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-576.525c0-17.528 14.275-31.738 31.775-31.738h800.45c17.549 0 31.775 14.228 31.775 32.028v447.944c0 17.689-14.522 32.028-32.095 32.028h-404.385z" />
<glyph unicode="&#xe9f9;" glyph-name="folder3" d="M512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9fa;" glyph-name="folder4" d="M64 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM64 512h864v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9fb;" glyph-name="folder5" d="M32 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM32 512v-352.283c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v352.157h-928z" />
<glyph unicode="&#xe9fc;" glyph-name="folders" d="M32 480v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM32 448h864v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262zM96 768v32.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-0.215v32h0.225c17.549 0 31.775 14.228 31.775 32.028v447.944c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-32.262h-32zM480 608l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9fd;" glyph-name="folders2" d="M0 480v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM0 448v-352.283c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v352.157h-928zM96 768v32.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-0.215v383.996c0 53.022-42.956 96.004-96.107 96.004h-351.893l-64 128h-352z" />
<glyph unicode="&#xe9fe;" glyph-name="folder-download2" d="M512 512h416v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262h416v-289.6l-104 104-24-24 144-144 144 144-24 24-104-104v289.6zM64 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9ff;" glyph-name="folder-download3" d="M512 512h448v-352.157c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v352.283h448v-289.6l-104 104-24-24 144-144 144 144-24 24-104-104v289.6zM32 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928z" />
<glyph unicode="&#xea00;" glyph-name="folder-upload2" d="M480 128h-384.225c-17.499 0-31.775 14.209-31.775 31.738v352.262h864v-351.972c0-17.8-14.226-32.028-31.775-32.028h-384.225v288l104-104 24 24-144 144-144-144 24-24 104 104v-288zM64 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xea01;" glyph-name="folder-upload3" d="M480 96h-384.215c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-352.157c0-35.279-28.558-63.843-63.785-63.843h-384.215v288l104-104 24 24-144 144-144-144 24-24 104 104v-288zM32 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928z" />
<glyph unicode="&#xea02;" glyph-name="folder-unlocked" d="M736 160h-672.225c-17.499 0-31.775 14.209-31.775 31.738v352.262h864v-65.137c-5.227 0.75-10.569 1.137-16 1.137-61.856 0-112-50-112-111.92v-80.080c-17.673 0-32-14.012-32-32.094v-95.906zM928 469.204v170.954c0 35.259-28.706 63.843-64.187 63.843h-383.813l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h672.215v-31.906c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.165 32.094-31.967 32.094h-192.033v79.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-15.702h32v16.080c0 44.625-26.201 83.15-64 101.124v0 0zM32 576v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM784.11 256h191.781c8.657 0 16.11-7.13 16.11-15.926v-128.147c0-9.051-7.212-15.926-16.11-15.926h-191.781c-8.657 0-16.11 7.13-16.11 15.926v128.147c0 9.051 7.212 15.926 16.11 15.926z" />
<glyph unicode="&#xea03;" glyph-name="folder-unlocked2" d="M0 576v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.611 64.187-63.904v-64.096h-928zM0 544v-352.283c0-35.19 28.47-63.717 63.717-63.717h640.283v128.083c0 23.626 12.871 44.296 32 55.358v56.371c0 79.625 64.471 144.188 144 144.188 16.82 0 32.978-2.899 48-8.227v40.227h-928zM960 288h32.079c17.639 0 31.921-14.369 31.921-32.094v-159.813c0-18.082-14.292-32.094-31.921-32.094h-224.157c-17.639 0-31.921 14.369-31.921 32.094v159.813c0 18.082 14.292 32.094 32 32.094v80.080c0 61.92 50.144 111.92 112 111.92 61.73 0 112-50.109 112-111.92v-16.080h-32v15.702c0 44.347-35.509 80.298-80 80.298-44.183 0-80-35.596-80-80.298v-79.702h160z" />
<glyph unicode="&#xea04;" glyph-name="folder-locked" d="M736 160v95.906c0 18.082 14.292 32.094 31.921 32.094h0.079v47.827c0 62.007 50.144 112.173 112 112.173 5.431 0 10.773-0.389 16-1.14v97.14h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h672.225zM736 128h-672.215c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-202.978c37.799-18.014 64-56.626 64-101.352v-47.827h0.079c17.639 0 31.921-14.369 31.921-32.094v-159.813c0-18.082-14.292-32.094-31.921-32.094h-224.157c-17.639 0-31.921 14.369-31.921 32.094v31.906zM800 288h160v47.702c0 44.347-35.509 80.298-80 80.298-44.183 0-80-35.596-80-80.298v-47.702zM32 576h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM784.11 256c-8.897 0-16.11-6.875-16.11-15.926v-128.147c0-8.796 7.453-15.926 16.11-15.926h191.781c8.897 0 16.11 6.875 16.11 15.926v128.147c0 8.796-7.453 15.926-16.11 15.926h-191.781z" />
<glyph unicode="&#xea05;" glyph-name="folder-locked2" d="M0 576v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.611 64.187-63.904v-64.096h-928zM0 544v-352.283c0-35.19 28.47-63.717 63.717-63.717h640.283v128.083c0 23.626 12.871 44.296 32 55.358v56.371c0 79.625 64.471 144.188 144 144.188 16.82 0 32.978-2.899 48-8.227v40.227h-928zM768 367.827l-0.079-79.827c-17.63 0-31.921-14.012-31.921-32.094v-159.813c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.282 32.094-32 32.094v79.827c0 61.951-50.27 112.173-112 112.173-61.856 0-112-50.166-112-112.173zM800 367.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-79.702h-160v79.702z" />
<glyph unicode="&#xea06;" glyph-name="folder-search" d="M521.883 319.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM512 672h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128zM491.52 640l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-576.525c0-17.528 14.275-31.738 31.775-31.738h800.45c17.549 0 31.775 14.228 31.775 32.028v447.944c0 17.689-14.522 32.028-32.095 32.028h-404.385zM432 320c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xea07;" glyph-name="folder-search2" d="M521.883 319.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813zM432 320c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xea08;" glyph-name="folder-error" d="M664.727 128l151.273 256 80-135.385v263.385h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h600.952zM645.818 96h-582.033c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-413.696l96-162.462h-416l37.818 64zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM816 320l-152-256h304l-152 256zM800 256v-96h32v96h-32zM800 128v-32h32v32h-32z" />
<glyph unicode="&#xea09;" glyph-name="folder-error2" d="M608.222 96h-544.437c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-253.741l-112 189.741-207.778-352zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM816 384l208-352h-416l208 352zM800 256v-96h32v96h-32zM800 128v-32h32v32h-32z" />
<glyph unicode="&#xea0a;" glyph-name="folder-cancel" d="M848 185.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0z" />
<glyph unicode="&#xea0b;" glyph-name="folder-cancel2" d="M672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176zM848 185.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882z" />
<glyph unicode="&#xea0c;" glyph-name="folder-checked" d="M691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM832 120.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea0d;" glyph-name="folder-checked2" d="M672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM832 120.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea0e;" glyph-name="folder-add" d="M832 224v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0z" />
<glyph unicode="&#xea0f;" glyph-name="folder-add2" d="M832 192h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xea10;" glyph-name="folder-remove" d="M691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM736 224v-32h224v32h-224z" />
<glyph unicode="&#xea11;" glyph-name="folder-remove2" d="M672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM736 224v-32h224v32h-224z" />
<glyph unicode="&#xea12;" glyph-name="folder-forbidden" d="M960.51 297.883l-202.393-202.393c24.635-19.706 55.883-31.49 89.883-31.49 79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883zM937.883 320.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144 0-34 11.784-65.248 31.49-89.883l202.393 202.393zM691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262z" />
<glyph unicode="&#xea13;" glyph-name="folder-forbidden2" d="M984.588 319.004c24.641-30.283 39.412-68.918 39.412-111.004 0-97.202-78.798-176-176-176-42.085 0-80.72 14.771-111.004 39.412l247.591 247.591zM962.228 341.899c-30.742 26.251-70.634 42.101-114.228 42.101-97.202 0-176-78.798-176-176 0-43.594 15.85-83.486 42.101-114.228l248.128 248.128zM672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928z" />
<glyph unicode="&#xea14;" glyph-name="folder-bookmark" d="M768 512h192v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262h480v-288l96 96 96-96v288zM96 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM544 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813zM608 512h128v-211.199l-64 64-64-64v211.199z" />
<glyph unicode="&#xea15;" glyph-name="folder-bookmark2" d="M768 512h224v-352.157c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v352.283h512v-288l96 96 96-96v288zM64 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM608 512v-211.199l64 64 64-64v211.199h-128z" />
<glyph unicode="&#xea16;" glyph-name="document-zip" d="M416 382.412v33.588h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h-96.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-160v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-65.583c36.709-7.378 64-39.683 64-78.417 0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80 0 38.973 27.484 71.054 64 78.412v0 0zM832 640v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM432 352c-26.51 0-48-21.306-48-48 0-26.51 21.306-48 48-48 26.51 0 48 21.306 48 48 0 26.51-21.306 48-48 48v0z" />
<glyph unicode="&#xea17;" glyph-name="document-zip2" d="M416 382.412v33.588h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-127.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-128v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-65.583c36.709-7.378 64-39.683 64-78.417 0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80 0 38.973 27.484 71.054 64 78.412v0 0zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM432 352c-26.51 0-48-21.306-48-48 0-26.51 21.306-48 48-48 26.51 0 48 21.306 48 48 0 26.51-21.306 48-48 48v0z" />
<glyph unicode="&#xea18;" glyph-name="zip" d="M512 399.206v-16.794c-36.516-7.358-64-39.439-64-78.412 0-44.183 35.509-80 80-80 44.183 0 80 35.509 80 80 0 38.734-27.291 71.039-64 78.417v65.583h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h159.996c53.317 0 96.004-42.848 96.004-95.704v-608.592c0-52.693-42.982-95.704-96.004-95.704h-351.992c-53.317 0-96.004 42.848-96.004 95.704v608.592c0 52.693 42.982 95.704 96.004 95.704h127.996v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-16.794zM352.198 864c-70.802 0-128.198-57.359-128.198-127.951v-608.098c0-70.665 57.199-127.951 128.198-127.951h351.604c70.802 0 128.198 57.359 128.198 127.951v608.098c0 70.665-57.199 127.951-128.198 127.951h-351.604zM528 352v0c26.694 0 48-21.49 48-48 0-26.694-21.49-48-48-48-26.694 0-48 21.49-48 48 0 26.694 21.49 48 48 48z" />
<glyph unicode="&#xea19;" glyph-name="zip2" d="M512 382.412v33.588h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-159.802c-70.802 0-128.198-57.359-128.198-127.951v-608.098c0-70.665 57.199-127.951 128.198-127.951h351.604c70.802 0 128.198 57.359 128.198 127.951v608.098c0 70.665-57.199 127.951-128.198 127.951h-127.802v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-65.583c36.709-7.378 64-39.683 64-78.417 0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80 0 38.973 27.484 71.054 64 78.412v0 0zM528 352c-26.51 0-48-21.306-48-48 0-26.51 21.306-48 48-48 26.51 0 48 21.306 48 48 0 26.51-21.306 48-48 48v0z" />
<glyph unicode="&#xea1a;" glyph-name="search4" d="M621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-75.111-30.445-143.111-79.667-192.333l191.916-191.916c8.802-8.802 8.588-22.915-0.249-31.751-8.898-8.898-23.052-8.948-31.751-0.249l-194.581 194.581zM464 288c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0z" />
<glyph unicode="&#xea1b;" glyph-name="search5" d="M621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-58.773-18.641-113.192-50.332-157.668l178.714-178.714c17.606-17.606 17.46-45.778-0.006-63.244l-0.75-0.75c-17.421-17.421-45.781-17.469-63.244-0.006l-178.714 178.714zM464 320c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0z" />
<glyph unicode="&#xea1c;" glyph-name="search-plus" d="M448 544v128h32v-128h128v-32h-128v-128h-32v128h-128v32h128zM644.651 324.651c-48.040-42.708-111.316-68.651-180.651-68.651-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-69.335-25.943-132.612-68.651-180.651l4.651 4.651 208.249-208.249c8.802-8.802 8.588-22.915-0.249-31.751-8.898-8.898-23.052-8.948-31.751-0.249l-208.249 208.249 4.651 4.651zM464 288c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0z" />
<glyph unicode="&#xea1d;" glyph-name="search-plus2" d="M448 544v128h32v-128h128v-32h-128v-128h-32v128h-128v32h128zM621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-58.773-18.641-113.192-50.332-157.668l178.714-178.714c17.606-17.606 17.46-45.778-0.006-63.244l-0.75-0.75c-17.421-17.421-45.781-17.469-63.244-0.006l-178.714 178.714zM464 320c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0z" />
<glyph unicode="&#xea1e;" glyph-name="search-minus" d="M644.651 324.651c-48.040-42.708-111.316-68.651-180.651-68.651-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-69.335-25.943-132.612-68.651-180.651l4.651 4.651 208.249-208.249c8.802-8.802 8.588-22.915-0.249-31.751-8.898-8.898-23.052-8.948-31.751-0.249l-208.249 208.249 4.651 4.651zM464 288c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0zM320 544v-32h288v32h-288z" />
<glyph unicode="&#xea1f;" glyph-name="search-minus2" d="M621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-58.773-18.641-113.192-50.332-157.668l178.714-178.714c17.606-17.606 17.46-45.778-0.006-63.244l-0.75-0.75c-17.421-17.421-45.781-17.469-63.244-0.006l-178.714 178.714zM464 320c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM320 544v-32h288v32h-288z" />
<glyph unicode="&#xea20;" glyph-name="lock4" d="M480 258.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM448 239.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM256 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v0 0zM288 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM352 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973zM255.918 480c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.301 0 63.918 28.706 63.918 64.187v319.625c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea21;" glyph-name="lock5" d="M480 258.731v0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM256 512v0 0c-53.045-0.15-96-42.866-96-96.303v-319.393c0-53.187 43.059-96.303 96.281-96.303h479.438c53.175 0 96.281 42.772 96.281 96.303v319.393c0 53.093-42.907 96.151-96 96.303v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025zM352 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea22;" glyph-name="lock-open" d="M640 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM608 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM512 448h383.719c53.222 0 96.281-43.116 96.281-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v240.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.997c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.019c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024zM480 687.977c0 114.888-93.359 208.023-208 208.023-114.875 0-208-93.439-208-208.023v-128.019c0-8.813 7.422-15.958 16-15.958v0c8.837 0 16 6.952 16 15.976v128.165c0 96.997 78.798 175.859 176 175.859 97.004 0 176-78.735 176-175.859v-240.141h32v239.977zM415.918 416c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.301 0 63.918 28.706 63.918 64.187v319.625c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea23;" glyph-name="lock-open2" d="M640 194.731v-83.019c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v83.019c18.643 6.589 32 24.369 32 45.269 0 26.51-21.49 48-48 48s-48-21.49-48-48c0-20.9 13.357-38.679 32-45.269v0 0zM416 688.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.976c0-26.313-21.49-48.027-48-48.027-26.694 0-48 21.502-48 48.027v127.998c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024h383.719c53.222 0 96.281-43.116 96.281-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v240.003z" />
<glyph unicode="&#xea24;" glyph-name="lock-open3" d="M768 656v-95.995c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.012c0 79.52-64.633 143.983-144 143.983-79.529 0-144-64.327-144-143.983v-224.034c0-5.402 0.298-10.735 0.879-15.983h383.121c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v240.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-32.024zM736 688.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-224.421c0-5.312 0.2-10.578 0.593-15.79h31.407v239.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-127.781c0-8.797 7.422-15.929 16-15.929v0c8.837 0 16 6.882 16 15.695v128.515zM512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM480 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM287.918 416c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.301 0 63.918 28.706 63.918 64.187v319.625c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea25;" glyph-name="lock-open4" d="M512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM768 656v32.024c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-240.025c-53.045-0.15-96-42.866-96-96.303v-319.393c0-53.187 43.059-96.303 96.281-96.303h479.438c53.175 0 96.281 42.772 96.281 96.303v319.393c0 53.093-42.907 96.151-96 96.303h-383.121c-0.581 5.248-0.879 10.581-0.879 15.983v224.034c0 79.656 64.471 143.983 144 143.983 79.367 0 144-64.463 144-143.983v-115.984c0-33.155 21.306-60.033 48-60.033 26.51 0 48 27.142 48 60.033v83.967z" />
<glyph unicode="&#xea26;" glyph-name="lock-stripes" d="M224 224h608v191.813c0 35.45-28.51 64.187-63.918 64.187h-480.165c-35.301 0-63.918-28.706-63.918-64.187v-191.813zM224 192v-64h24l48 64h-72zM224 96c0.1-35.364 28.572-64 63.917-64h480.165c35.238 0 63.817 28.605 63.917 64h-607.999zM832 128v64h-24l-48-64h72zM288 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v0 0zM280 128h64l48 64h-64l-48-64zM376 128h64l48 64h-64l-48-64zM472 128h64l48 64h-64l-48-64zM568 128h64l48 64h-64l-48-64zM664 128h64l48 64h-64l-48-64zM320 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM384 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973z" />
<glyph unicode="&#xea27;" glyph-name="lock-stripes2" d="M864 128v64h-56l-48-64h104zM864 96c-0.162-53.389-43.207-96-96.281-96h-479.438c-53.121 0-96.117 42.953-96.281 96h671.999zM192 128v64h104l-48-64h-56zM280 128l48 64h64l-48-64h-64zM376 128l48 64h64l-48-64h-64zM472 128l48 64h64l-48-64h-64zM568 128l48 64h64l-48-64h-64zM664 128l48 64h64l-48-64h-64zM864 224v191.697c0 53.093-42.907 96.151-96 96.303v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025c-53.045-0.15-96-42.866-96-96.303v-191.697h672zM384 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea28;" glyph-name="lock-rounded" d="M512 258.731v0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM480 239.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM288 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v0 0zM320 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM384 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973zM287.918 480c-35.301 0-63.918-28.706-63.918-64.187v-159.813c0-123.712 100.399-224 223.807-224h160.387c123.605 0 223.807 100.54 223.807 224v159.813c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea29;" glyph-name="lock-rounded2" d="M512 258.731v0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM288 512v0 0c-53.045-0.15-96-42.866-96-96.303v-159.697c0-141.385 114.757-256 255.971-256h160.057c141.369 0 255.971 114.903 255.971 256v159.697c0 53.093-42.907 96.151-96 96.303v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025zM384 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea2a;" glyph-name="lock-rounded-open" d="M672 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM640 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM544 448h383.719c53.222 0 96.281-43.116 96.281-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v240.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.997c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.019c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024zM512 687.977c0 114.888-93.359 208.023-208 208.023-114.875 0-208-93.439-208-208.023v-128.019c0-8.813 7.422-15.958 16-15.958v0c8.837 0 16 6.952 16 15.976v128.165c0 96.997 78.798 175.859 176 175.859 97.004 0 176-78.735 176-175.859v-240.141h32v239.977zM447.918 416c-35.301 0-63.918-28.706-63.918-64.187v-159.813c0-123.712 100.399-224 223.807-224h160.387c123.605 0 223.807 100.54 223.807 224v159.813c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea2b;" glyph-name="lock-rounded-open2" d="M672 194.731v-83.019c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v83.019c18.643 6.589 32 24.369 32 45.269 0 26.51-21.49 48-48 48s-48-21.49-48-48c0-20.9 13.357-38.679 32-45.269v0 0zM448 688.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.976c0-26.313-21.49-48.027-48-48.027-26.694 0-48 21.502-48 48.027v127.998c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024h383.719c53.222 0 96.281-43.116 96.281-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v240.003z" />
<glyph unicode="&#xea2c;" glyph-name="lock-rounded-open3" d="M768 656v-95.995c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.012c0 79.52-64.633 143.983-144 143.983-79.529 0-144-64.327-144-143.983v-224.034c0-5.402 0.298-10.735 0.879-15.983h383.121c53.093-0.152 96-43.21 96-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v240.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-32.024zM736 688.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-224.421c0-5.312 0.2-10.578 0.593-15.79h31.407v239.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-127.781c0-8.797 7.422-15.929 16-15.929v0c8.837 0 16 6.882 16 15.695v128.515zM512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM480 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM287.918 416c-35.301 0-63.918-28.706-63.918-64.187v-159.813c0-123.712 100.399-224 223.807-224h160.387c123.605 0 223.807 100.54 223.807 224v159.813c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea2d;" glyph-name="lock-rounded-open4" d="M512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM768 656v32.024c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-240.025c-53.045-0.15-96-42.866-96-96.303v-159.697c0-141.385 114.757-256 255.971-256h160.057c141.369 0 255.971 114.903 255.971 256v159.697c0 53.093-42.907 96.151-96 96.303h-383.121c-0.581 5.248-0.879 10.581-0.879 15.983v224.034c0 79.656 64.471 143.983 144 143.983 79.367 0 144-64.463 144-143.983v-115.984c0-33.155 21.306-60.033 48-60.033 26.51 0 48 27.142 48 60.033v83.967z" />
<glyph unicode="&#xea2e;" glyph-name="combination-lock" d="M832 128v64h-288v32h288v64h-288v32h288v64h-288v32h288c-0.1 35.364-28.572 64-63.917 64h-480.165c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.238 0 63.817 28.605 63.917 64h-288v32h288zM288 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v0 0zM320 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM384 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973z" />
<glyph unicode="&#xea2f;" glyph-name="combination-lock2" d="M864 96h-320v32h320v64h-320v32h320v64h-320v32h320v64h-320v32h320c-0.163 52.954-43.008 95.848-96 96v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025c-53.045-0.15-96-42.866-96-96.303v-319.393c0-53.187 43.059-96.303 96.281-96.303h479.438c53.074 0 96.118 42.611 96.281 96zM384 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea30;" glyph-name="printer3" d="M800 96v-32.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v32.012h-64.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h64.183v224.012c0 35.59 28.617 63.988 63.918 63.988h480.165c35.408 0 63.918-28.648 63.918-63.988v-224.012h64.183c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-64.183zM192 128v192h608v-192h63.765c35.476 0 64.235 28.593 64.235 64.088v287.823c0 35.395-28.747 64.088-64.235 64.088h-735.531c-35.476 0-64.235-28.593-64.235-64.088v-287.823c0-35.395 28.747-64.088 64.235-64.088h63.765zM255.999 832c-17.672 0-31.999-14.497-31.999-31.905v-224.095h544v224.095c0 17.621-14.551 31.905-31.999 31.905h-480.003zM224 288v-224.095c0-17.621 14.551-31.905 31.999-31.905h480.003c17.672 0 31.999 14.497 31.999 31.905v224.095h-544zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea31;" glyph-name="printer4" d="M192 608v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 96h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v256h-672v-256zM192 320v-256.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v256.012h-608zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea32;" glyph-name="printer5" d="M800 160h64.183c52.918 0 95.817 43.019 95.817 95.982v288.037c0 53.009-42.898 95.982-95.817 95.982h-64.183v224.012c0 35.339-28.51 63.988-63.918 63.988h-480.165c-35.301 0-63.918-28.398-63.918-63.988v-224.012h-64.183c-52.918 0-95.817-43.019-95.817-95.982v-288.037c0-53.009 42.898-95.982 95.817-95.982h64.183v-128.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v128.012zM192 192h-63.765c-35.488 0-64.235 28.693-64.235 64.088v287.823c0 35.495 28.759 64.088 64.235 64.088h735.531c35.488 0 64.235-28.693 64.235-64.088v-287.823c0-35.495-28.759-64.088-64.235-64.088h-63.765v96h-608v-96zM255.999 896h480.003c17.448 0 31.999-14.284 31.999-31.905v-224.095h-544v224.095c0 17.408 14.326 31.905 31.999 31.905zM224 256h544v-224.095c0-17.408-14.326-31.905-31.999-31.905h-480.003c-17.448 0-31.999 14.284-31.999 31.905v224.095zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea33;" glyph-name="printer6" d="M192 672v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 160h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v160h-672v-160zM192 288v-256.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v256.012h-608zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea34;" glyph-name="printer-text" d="M832 96v-32.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v32.012h-64.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h64.183v224.012c0 35.59 28.617 63.988 63.918 63.988h480.165c35.408 0 63.918-28.648 63.918-63.988v-224.012h64.183c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-64.183zM224 128v192h608v-192h63.765c35.476 0 64.235 28.593 64.235 64.088v287.823c0 35.395-28.747 64.088-64.235 64.088h-735.531c-35.476 0-64.235-28.593-64.235-64.088v-287.823c0-35.395 28.747-64.088 64.235-64.088h63.765zM287.999 832c-17.672 0-31.999-14.497-31.999-31.905v-224.095h544v224.095c0 17.621-14.551 31.905-31.999 31.905h-480.003zM256 288v-224.095c0-17.621 14.551-31.905 31.999-31.905h480.003c17.672 0 31.999 14.497 31.999 31.905v224.095h-544zM800 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM288 224v-32h480v32h-480zM288 128v-32h480v32h-480z" />
<glyph unicode="&#xea35;" glyph-name="printer-text2" d="M224 608v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM192 96h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v256h-672v-256zM224 320h608v-256.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v256.012zM800 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM288 224v-32h480v32h-480zM288 128v-32h480v32h-480z" />
<glyph unicode="&#xea36;" glyph-name="printer-text3" d="M800 160h64.183c52.918 0 95.817 43.019 95.817 95.982v288.037c0 53.009-42.898 95.982-95.817 95.982h-64.183v224.012c0 35.339-28.51 63.988-63.918 63.988h-480.165c-35.301 0-63.918-28.398-63.918-63.988v-224.012h-64.183c-52.918 0-95.817-43.019-95.817-95.982v-288.037c0-53.009 42.898-95.982 95.817-95.982h64.183v-128.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v128.012zM192 192h-63.765c-35.488 0-64.235 28.693-64.235 64.088v287.823c0 35.495 28.759 64.088 64.235 64.088h735.531c35.488 0 64.235-28.693 64.235-64.088v-287.823c0-35.495-28.759-64.088-64.235-64.088h-63.765v96h-608v-96zM255.999 896h480.003c17.448 0 31.999-14.284 31.999-31.905v-224.095h-544v224.095c0 17.408 14.326 31.905 31.999 31.905zM224 256h544v-224.095c0-17.408-14.326-31.905-31.999-31.905h-480.003c-17.448 0-31.999 14.284-31.999 31.905v224.095zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM256 192v-32h480v32h-480zM256 96v-32h480v32h-480z" />
<glyph unicode="&#xea37;" glyph-name="printer-text4" d="M192 672v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 160h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v160h-672v-160zM192 288h608v-256.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v256.012zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM256 192v-32h480v32h-480zM256 96v-32h480v32h-480z" />
<glyph unicode="&#xea38;" glyph-name="document-shred" d="M864 320h-672v-64h-32v160h32v-64h672v64h32v-160h-32v64zM832 384h-32v224h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-416.145h-32v415.765c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-256zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM800 288v-288h32v288h-32zM736 288v-256h32v256h-32zM672 288v-224h32v224h-32zM608 288v-288h32v288h-32zM544 288v-256h32v256h-32zM480 288v-288h32v288h-32zM416 288v-224h32v224h-32zM352 288v-288h32v288h-32zM288 288v-256h32v256h-32zM224 288v-288h32v288h-32z" />
<glyph unicode="&#xea39;" glyph-name="document-shred2" d="M864 320h-672v-64h-32v160h32v-64h672v64h32v-160h-32v64zM224 384v415.765c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-224h-608zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM800 288v-288h32v288h-32zM736 288v-256h32v256h-32zM672 288v-224h32v224h-32zM608 288v-288h32v288h-32zM544 288v-256h32v256h-32zM480 288v-288h32v288h-32zM416 288v-224h32v224h-32zM352 288v-288h32v288h-32zM288 288v-256h32v256h-32zM224 288v-288h32v288h-32z" />
<glyph unicode="&#xea3a;" glyph-name="shredder" d="M832 224h32.183c52.918 0 95.817 43.162 95.817 96.186v159.629c0 53.122-42.898 96.186-95.817 96.186h-64.183v224.012c0 35.339-28.51 63.988-63.918 63.988h-480.165c-35.301 0-63.918-28.398-63.918-63.988v-224.012h-64.183c-52.918 0-95.817-43.162-95.817-96.186v-159.629c0-53.122 42.898-96.186 95.817-96.186h32.183v96h672v-96zM128 256c-35.38 0.126-64 28.694-64 63.916v160.167c0 35.249 28.759 63.917 64.235 63.917h735.531c35.488 0 64.235-28.616 64.235-63.917v-160.167c0-35.171-28.632-63.79-64-63.916v96h-736v-96zM255.999 832h480.003c17.448 0 31.999-14.284 31.999-31.905v-224.095h-544v224.095c0 17.408 14.326 31.905 31.999 31.905zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM192 288v-256h32v256h-32zM256 288v-224h32v224h-32zM320 288v-256h32v256h-32zM384 288v-192h32v192h-32zM448 288v-224h32v224h-32zM512 288v-192h32v192h-32zM576 288v-256h32v256h-32zM704 288v-224h32v224h-32zM768 288v-256h32v256h-32zM640 288v-192h32v192h-32z" />
<glyph unicode="&#xea3b;" glyph-name="shredder2" d="M192 608v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 224h-32.183c-52.919 0-95.817 43.064-95.817 96.186v159.629c0 53.023 42.899 96.186 95.817 96.186h736.366c52.919 0 95.817-43.064 95.817-96.186v-159.629c0-53.023-42.899-96.186-95.817-96.186h-32.183v96h-672v-96zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM192 288v-256h32v256h-32zM256 288v-224h32v224h-32zM320 288v-256h32v256h-32zM384 288v-192h32v192h-32zM448 288v-224h32v224h-32zM512 288v-192h32v192h-32zM576 288v-256h32v256h-32zM704 288v-224h32v224h-32zM768 288v-256h32v256h-32zM640 288v-192h32v192h-32z" />
<glyph unicode="&#xea3c;" glyph-name="document-scan" d="M704 32h-64v32h64v-32zM736 32h32.082c35.301 0 63.918 28.743 63.918 63.705v32.295h-32v-32.211c0-17.55-14.326-31.789-31.999-31.789h-32.001v-32zM608 32h-64v32h64v-32zM512 32h-64v32h64v-32zM416 32h-64v32h64v-32zM320 32h-32.082c-35.408 0-63.918 28.759-63.918 64.235v31.765h32v-32.145c0-17.593 14.551-31.855 31.999-31.855h32.001v-32zM832 160v64h-32v-64h32zM224 160v64h32v-64h-32zM832 256v64h-32v-64h32zM224 256v64h32v-64h-32zM864 384v64h32v-160h-32v64h-672v-64h-32v160h32v-64h672zM832 416h-32v224h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-416.145h-32v415.765c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-256zM640 848v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xea3d;" glyph-name="document-scan2" d="M608 32h-64v32h64v-32zM640 32h64v32h-64v-32zM416 32h-64v32h64v-32zM448 32h64v32h-64v-32zM320 32h-32.082c-35.408 0-63.918 28.759-63.918 64.235v31.765h32v-32.079c0-17.63 14.551-31.921 31.999-31.921h32.001v-32zM832 256v64h-32v-64h32zM832 224v-64h-32v64h32zM224 256v64h32v-64h-32zM224 224v-64h32v64h-32zM864 384v64h32v-160h-32v64h-672v-64h-32v160h32v-64h672zM832 416v224h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-415.765h608zM832 128v-32.082c0-35.408-28.617-63.918-63.918-63.918h-32.082v32h32.001c17.672 0 31.999 14.282 31.999 31.921v32.079h32zM640 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xea3e;" glyph-name="cloud-download2" d="M480 88l-104 104-24-24 144-144 144 144-24 24-104-104v360h-32v-360zM448 256h-223.91c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 83.694 0 154.881-53.551 181.166-128.257 24.779 20.167 56.395 32.257 90.834 32.257 75.467 0 137.375-58.053 143.502-131.938v0c55.362-14.081 96.498-64.286 96.498-124.062 0-70.549-57.348-128-128.090-128h-223.91v-32h224.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h224.018v32z" />
<glyph unicode="&#xea3f;" glyph-name="cloud-download3" d="M512 224h256.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h256.018v-136l-104 104-24-24 144-144 144 144-24 24-104-104v136zM480 448v-224h32v224h-32z" />
<glyph unicode="&#xea40;" glyph-name="cloud-upload2" d="M480 448l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM448 288h-223.91c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 83.694 0 154.881-53.551 181.166-128.257 24.779 20.167 56.395 32.257 90.834 32.257 75.467 0 137.375-58.053 143.502-131.938v0c55.362-14.081 96.498-64.286 96.498-124.062 0-70.549-57.348-128-128.090-128h-223.91v-32h224.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h224.018v32z" />
<glyph unicode="&#xea41;" glyph-name="cloud-upload3" d="M512 256h256.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h256.018v192l-104-104-24 24 144 144 144-144-24-24-104 104v-192zM480 256v-160h32v160h-32z" />
<glyph unicode="&#xea42;" glyph-name="cloud-error" d="M363.636 288h-139.546c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 83.694 0 154.881-53.551 181.166-128.257 24.779 20.167 56.395 32.257 90.834 32.257 75.467 0 137.375-58.053 143.502-131.938v0c55.362-14.081 96.498-64.286 96.498-124.062 0-70.549-57.348-128-128.090-128h-139.546l-132.364 224-132.364-224zM647.273 256h120.745c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h120.745l-56.727-96h416l-56.727 96zM496 448l152-256h-304l152 256zM480 384v-96h32v96h-32zM480 256v-32h32v32h-32z" />
<glyph unicode="&#xea43;" glyph-name="cloud-error2" d="M686.769 256h81.249c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h81.249l190.769 320 190.769-320zM496 512l208-352h-416l208 352zM480 384v-96h32v96h-32zM480 256v-32h32v32h-32z" />
<glyph unicode="&#xea44;" glyph-name="cloud4" d="M195.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 59.775-41.136 109.981-96.498 124.062v0c-6.127 73.885-68.035 131.938-143.502 131.938-34.439 0-66.055-12.090-90.834-32.257-26.285 74.707-97.471 128.257-181.166 128.257-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM828.252 468.304c58.574-23.776 99.748-81.218 99.748-148.304 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 83.608 0 156.518-45.806 195.002-113.692 23.258 11.333 49.385 17.692 76.998 17.692 84.757 0 155.521-59.912 172.252-139.696v0 0z" />
<glyph unicode="&#xea45;" glyph-name="cloud5" d="M828.252 468.304c58.574-23.776 99.748-81.218 99.748-148.304 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 83.608 0 156.518-45.806 195.002-113.692 23.258 11.333 49.385 17.692 76.998 17.692 84.757 0 155.521-59.912 172.252-139.696z" />
<glyph unicode="&#xea46;" glyph-name="inbox-filled" d="M640 448h216.801l-140 224h-441.602l-140-224h216.801v-63.844c0-35.432 28.667-64.156 63.917-64.156h160.167c35.3 0 63.917 28.605 63.917 64.156v63.844zM672 416v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM96 424v24l160 256h480l160-256v-288h-800v264zM320 640l-19.199-32h390.398l-19.199 32h-352zM278.398 576l-19.199-32h473.602l-19.199 32h-435.203zM240 512l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea47;" glyph-name="inbox-filled2" d="M352 448v-63.844c0-35.432 28.667-64.156 63.917-64.156h160.167c35.3 0 63.917 28.605 63.917 64.156v63.844h216.801l-140 224h-441.602l-140-224h216.801zM96 448l160 256h480l160-256v-288h-800v288zM320 640l-19.199-32h390.398l-19.199 32h-352zM278.398 576l-19.199-32h473.602l-19.199 32h-435.203zM240 512l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea48;" glyph-name="pen3" d="M576 160h-128v512h128v-512zM568.616 128l-56.616-73.6-56.616 73.6h113.231zM576 704h-128v95.9c0 17.596 14.461 32.1 32.3 32.1h63.4c18.113 0 32.3-14.372 32.3-32.1v-95.9zM512 0l96 128v671.972c0 35.361-28.744 64.028-63.933 64.028h-64.134c-35.309 0-63.933-28.852-63.933-64.028v-671.972l96-128z" />
<glyph unicode="&#xea49;" glyph-name="pen4" d="M608 160v512h-192v-512h192zM608 128l-96-128-96 128h192zM608 704v95.972c0 35.361-28.744 64.028-63.933 64.028h-64.134c-35.309 0-63.933-28.852-63.933-64.028v-95.972h192z" />
<glyph unicode="&#xea4a;" glyph-name="pen-angled" d="M718.183 571.189l-361.159-361.586-83.378 83.378 361.347 361.398 83.19-83.19zM740.797 593.83l-83.178 83.178 55.274 55.282c12.523 12.525 32.766 12.428 45.33-0.102l37.754-37.65c12.541-12.506 12.633-32.815 0.153-45.309l-55.334-55.399zM252.919 268.454l79.851-79.851-100.317-19.755 20.465 99.606zM224 288l-32-160 160 32 466.563 466.563c25.094 25.094 25.155 65.719 0.309 90.565l-37.744 37.744c-24.924 24.924-65.199 25.057-90.565-0.309l-466.563-466.563z" />
<glyph unicode="&#xea4b;" glyph-name="pen-angled2" d="M763.3 571.3l55.2 55.2c25.1 25.1 25.2 65.7 0.3 90.6l-37.7 37.7c-24.9 24.9-65.2 25.1-90.6-0.3l-55.2-55.2 128-128zM228.7 292.7l-4.7-4.7-32-160 160 32 4.7 4.7zM251.336 315.329l361.399 361.399 127.985-127.985-361.399-361.399-127.985 127.985z" />
<glyph unicode="&#xea4c;" glyph-name="document-edit" d="M846.183 571.189l-361.159-361.586-83.378 83.378 361.347 361.398 83.19-83.19zM868.797 593.83l-83.178 83.178 55.274 55.282c12.523 12.525 32.766 12.428 45.33-0.102l37.754-37.65c12.541-12.506 12.633-32.815 0.153-45.309l-55.334-55.399zM380.919 268.454l79.851-79.851-100.317-19.755 20.465 99.606zM704 640v0l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v320.295l242.563 242.563c25.094 25.094 25.155 65.719 0.309 90.565l-37.744 37.744c-24.924 24.924-65.199 25.057-90.565-0.309l-114.563-114.563zM672 352v-288.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067l-320-320-32-160 160 32 192 192zM512 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xea4d;" glyph-name="document-edit2" d="M846.183 571.189l-83.19 83.19-361.347-361.398 83.378-83.378 361.159 361.586zM868.797 593.83l55.334 55.399c12.479 12.494 12.387 32.803-0.153 45.309l-37.754 37.65c-12.564 12.529-32.807 12.627-45.33 0.102l-55.274-55.282 83.178-83.178zM380.919 268.454l-20.465-99.606 100.317 19.755-79.851 79.851zM704 384v-320.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h127.811l146.563 146.563c25.366 25.366 65.641 25.232 90.565 0.309l37.744-37.744c24.846-24.846 24.785-65.471-0.309-90.565l-242.563-242.563zM512 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xea4e;" glyph-name="document-certificate" d="M672 161.616v0 0c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v-33.616h-256.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-544.211c0-17.55-14.326-31.789-31.999-31.789h-64.001v33.616zM544 138.778v0 0c14.548-6.911 30.822-10.778 48-10.778s33.452 3.867 48 10.778v-125.977l-48 47.999-48-47.999v125.977zM672 96h64.082c35.301 0 63.918 28.743 63.918 63.705v576.295l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h256.082v-160l80 80 80-80v160zM608 912l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM288 736v-32h224v32h-224zM288 832v-32h224v32h-224zM288 640v-32h416v32h-416zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM592 160v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80z" />
<glyph unicode="&#xea4f;" glyph-name="document-certificate2" d="M672 161.616v0 0c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v-65.616h-256.082c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-64.082v65.616zM544 138.778v-157.977l48 47.999 48-47.999v157.977c-14.548-6.911-30.822-10.778-48-10.778s-33.452 3.867-48 10.778v0 0zM608 960v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM288 736v-32h224v32h-224zM288 832v-32h224v32h-224zM288 640v-32h416v32h-416zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM592 160c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80v0z" />
<glyph unicode="&#xea50;" glyph-name="certificate" d="M416 321.616v-65.616h415.921c17.717 0 32.079 14.365 32.079 32.239v415.521c0 17.805-14.063 32.239-32.079 32.239h-639.842c-17.717 0-32.079-14.365-32.079-32.239v-415.521c0-17.805 14.063-32.239 32.079-32.239h63.921v65.616c-19.795 20.201-32 47.867-32 78.384 0 61.856 50.144 112 112 112s112-50.144 112-112c0-30.517-12.205-58.183-32-78.384v0 0zM288 298.778v-125.977l48 47.999 48-47.999v125.977c-14.548-6.911-30.822-10.778-48-10.778s-33.452 3.867-48 10.778v0 0zM256 224h-63.842c-35.453 0-64.158 28.655-64.158 64.003v415.993c0 35.522 28.725 64.003 64.158 64.003h639.683c35.453 0 64.158-28.655 64.158-64.003v-415.993c0-35.522-28.725-64.003-64.158-64.003h-415.842v-128l-80 80-80-80v128zM224 608v-32h576v32h-576zM512 512v-32h288v32h-288zM608 416v-32h192v32h-192zM336 320c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80v0z" />
<glyph unicode="&#xea51;" glyph-name="certificate2" d="M416 321.616v0 0c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v-97.616h-63.842c-35.453 0-64.158 28.655-64.158 64.003v415.993c0 35.522 28.725 64.003 64.158 64.003h639.683c35.453 0 64.158-28.655 64.158-64.003v-415.993c0-35.522-28.725-64.003-64.158-64.003h-415.842v97.616zM288 298.778v-157.977l48 47.999 48-47.999v157.977c-14.548-6.911-30.822-10.778-48-10.778s-33.452 3.867-48 10.778v0 0zM224 608v-32h576v32h-576zM512 512v-32h288v32h-288zM608 416v-32h192v32h-192zM336 320c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80v0z" />
<glyph unicode="&#xea52;" glyph-name="package" d="M608 544v-224h-160v224h-288v-448h736v448h-288zM480 800h-172.801l-140-224h280.801l32 224zM576 800l32-224h280.801l-140 224h-172.801zM128 560v16l160 256h480l160-256v-512h-800v496zM512 800l-32-224h96l-32 224h-32zM480 544v-192h96v192h-96zM192 288v-32h224v32h-224zM192 160v-32h224v32h-224zM192 224v-32h160v32h-160z" />
<glyph unicode="&#xea53;" glyph-name="package2" d="M128 544h320v-224h160v224h320v-480h-800v480zM448 576h-320l160 256h192l-32-256zM608 576h320l-160 256h-192l32-256zM480 576h96l-32 256h-32l-32-256zM480 544v-192h96v192h-96zM192 288v-32h224v32h-224zM192 160v-32h224v32h-224zM192 224v-32h160v32h-160z" />
<glyph unicode="&#xea54;" glyph-name="box" d="M96 560v16l160 256h480l160-256v-512h-800v496zM135.199 576h721.602l-140 224h-441.602l-140-224zM128 544v-448h736v448h-736zM415.917 384h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 352c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xea55;" glyph-name="box2" d="M96 576l160 256h480l160-256v-512h-800v512zM856.801 576l-140 224h-441.602l-140-224h721.602zM415.917 384c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167z" />
<glyph unicode="&#xea56;" glyph-name="box-filled" d="M96 576l160 256h480l160-256v-512h-800v512zM856.801 576l-140 224h-441.602l-140-224h721.602zM128 544v-448h736v448h-736zM415.917 384h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 352c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813zM320 768l-19.199-32h390.398l-19.199 32h-352zM278.398 704l-19.199-32h473.602l-19.199 32h-435.203zM240 640l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea57;" glyph-name="box-filled2" d="M96 576l160 256h480l160-256v-512h-800v512zM856.801 576l-140 224h-441.602l-140-224h721.602zM415.917 384c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167zM320 768l-19.199-32h390.398l-19.199 32h-352zM278.398 704l-19.199-32h473.602l-19.199 32h-435.203zM240 640l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea58;" glyph-name="box3" d="M96 624v16l160 256h480l160-256v-640h-800v624zM135.199 640h721.602l-140 224h-441.602l-140-224zM128 480v-448h736v448h-736zM415.917 320h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 288c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813zM128 608v-96h736v96h-736z" />
<glyph unicode="&#xea59;" glyph-name="box4" d="M896 608v-96h-800v96h800zM96 480h800v-480h-800v480zM256 896l-160-256h800l-160 256h-480zM415.917 320c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167z" />
<glyph unicode="&#xea5a;" glyph-name="box5" d="M128 544h-64v256h864v-256h-64v-480h-736v480zM160 544v-448h672v448h-672zM96 768v-192h800v192h-800zM415.917 384h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 352c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xea5b;" glyph-name="box6" d="M864 544v-480h-736v480h736zM928 576v224h-864v-224h864zM415.917 384c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167z" />
<glyph unicode="&#xea5c;" glyph-name="box-bookmark" d="M736 512h96v-448h-672v448h384v-288l96 96 96-96v288zM128 512v-480h736v480h64v256h-864v-256h64zM96 736h800v-192h-800v192zM576 512h128v-211.199l-64 64-64-64v211.199z" />
<glyph unicode="&#xea5d;" glyph-name="box-bookmark2" d="M864 512v-480h-736v480h416v-288l96 96 96-96v288h128zM928 544v224h-864v-224h864zM576 512v-211.199l64 64 64-64v211.199h-128z" />
<glyph unicode="&#xea5e;" glyph-name="tag-cord" d="M344.358 768h167.642l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 30.403 20.906 55.557 49.030 62.244 5.25-8.488 9.573-18.589 12.585-30.365-16.58-1.366-29.615-15.4-29.615-32.161v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l229.235 230.8c12.388 12.473 12.327 32.604-0.188 45.015l-421.184 417.713h-144.284c-0.756 3.654-1.518 7.416-2.286 11.287-1.421 7.163-3.119 14.067-5.072 20.713v0 0zM367.383 671.998c0.205 0.002 0.411 0.002 0.617 0.002 44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80 0 5.141 0.485 10.169 1.412 15.040 18.494-40.85 41.635-58.921 76.112-63.214 0.187-0.023 0.378 0.049 0.574 0.211 0.631-0.025 1.266-0.037 1.903-0.037 26.51 0 48 21.49 48 48 0 21.932-14.709 40.428-34.8 46.162 0.005 0.236-0.002 0.371-0.021 0.399-4.143 6.021-8.759 16.918-13.795 33.436v0 0zM318.042 741.059c-27.732 139.765-177.767 159.439-235.588 67.456-46.365-73.758-0.49-200.515 77.546-200.515v32c-49.66 0-84.743 96.937-50.454 151.485 42.963 68.348 155.226 53.627 177.108-56.654 25.885-130.459 45.408-158.831 97.346-158.831v32c-31.781 0-42.708 15.88-65.958 133.059v0z" />
<glyph unicode="&#xea5f;" glyph-name="tag-cord2" d="M344.477 767.229h167.642l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 30.403 20.906 55.557 49.030 62.244 6.303-10.19 11.27-22.706 14.235-37.652 25.904-130.553 51.765-177.494 110.258-184.777 0.187-0.023 0.378 0.049 0.574 0.211 0.631-0.025 1.266-0.037 1.903-0.037 26.51 0 48 21.49 48 48 0 21.932-14.709 40.428-34.8 46.162 0.005 0.236-0.002 0.371-0.021 0.399-8.672 12.603-19.416 46.569-31.749 108.725-1.421 7.163-3.119 14.067-5.072 20.713v0 0zM318.161 740.288c-27.732 139.765-177.767 159.439-235.588 67.456-46.365-73.758-0.49-200.515 77.546-200.515v32c-49.66 0-84.743 96.937-50.454 151.485 42.963 68.348 155.226 53.627 177.108-56.654 25.885-130.459 45.408-158.831 97.346-158.831v32c-31.781 0-42.708 15.88-65.958 133.059v0z" />
<glyph unicode="&#xea60;" glyph-name="tag2" d="M448 832l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012zM432 800h-239.73c-17.822 0-32.27-14.624-32.27-32.27v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l229.235 230.8c12.388 12.473 12.327 32.604-0.188 45.015l-421.184 417.713zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea61;" glyph-name="tag3" d="M448 832l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea62;" glyph-name="tags" d="M200.493 800v0 0c11.047 19.192 31.762 32 55.495 32h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-20.273-20.273-50.933-23.999-75.164-11.164l-20.836-20.836c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h40.505zM192 768h-31.73c-17.822 0-32.27-14.624-32.27-32.27v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l18.632 18.759-418.769 418.769v256zM496 800h-239.73c-17.822 0-32.27-14.624-32.27-32.27v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l229.235 230.8c12.388 12.473 12.327 32.604-0.188 45.015l-421.184 417.713zM368 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM368 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea63;" glyph-name="tags2" d="M159.988 800c-35.339 0-63.988-28.398-63.988-63.988v-256.012l428.189-428.189c22.925-22.925 58.812-24.954 83.834-6.107l-448.022 450.296v303.783c0 0.072 0 0.145 0.001 0.217h-0.013zM512 832l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012zM368 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea64;" glyph-name="tag-add" d="M288 288v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xea65;" glyph-name="tag-add2" d="M288 288v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xea66;" glyph-name="tag-remove" d="M215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM192 288v-32h224v32h-224z" />
<glyph unicode="&#xea67;" glyph-name="tag-remove2" d="M192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM192 288v-32h224v32h-224z" />
<glyph unicode="&#xea68;" glyph-name="tag-checked" d="M215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM288 184.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea69;" glyph-name="tag-checked2" d="M192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM288 184.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea6a;" glyph-name="tag-cancel" d="M304 249.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xea6b;" glyph-name="tag-cancel2" d="M304 249.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xea6c;" glyph-name="paperclip2" d="M704.333 443.314l-271.615-271.615c-49.94-49.94-131.048-49.799-180.933 0.086v0c-49.987 49.987-50.105 130.914 0.142 181.162l373.093 373.093c31.307 31.307 81.795 31.577 113.254 0.117v0c31.242-31.242 31.268-81.869 0.168-112.969l-373.706-373.706c-12.394-12.394-32.485-12.398-45.069 0.185v0c-12.497 12.497-12.502 32.753-0.034 45.221l271.563 271.563-22.627 22.627-271.396-271.396c-25.067-25.067-25.3-65.474-0.133-90.642v0c24.994-24.994 65.386-25.124 90.31-0.2l373.595 373.595c43.715 43.715 43.607 114.7-0.043 158.349v0c-43.739 43.739-114.582 43.81-158.448-0.056l-373.318-373.318c-62.472-62.472-62.335-163.896 0.022-226.252v0c62.484-62.484 163.821-62.453 226.469 0.195l271.334 271.334-22.627 22.627z" />
<glyph unicode="&#xea6d;" glyph-name="paperclip3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM659.078 398.059l-158.338-158.338c-50.017-50.017-131.188-49.939-181.073-0.054-49.987 49.987-50.071 130.949 0.164 181.183l237.234 237.234c31.347 31.347 81.868 31.65 113.327 0.19 31.242-31.242 31.18-81.957-0.066-113.203l-237.367-237.367c-12.582-12.582-32.826-12.739-45.41-0.155-12.497 12.497-12.376 32.878-0.067 45.188l158.459 158.459-22.627 22.627-158.451-158.451c-24.961-24.961-25.109-65.283 0.059-90.451 24.994-24.994 65.495-25.014 90.375-0.134l237.915 237.915c43.632 43.632 43.457 114.55-0.192 158.2-43.739 43.739-114.744 43.648-158.551-0.159l-237.609-237.609c-62.384-62.384-62.176-163.737 0.18-226.094 62.484-62.484 163.573-62.701 226.324 0.049l158.342 158.342-22.627 22.627z" />
<glyph unicode="&#xea6e;" glyph-name="basketball" d="M544 799.658c89.925-3.847 171.491-39.965 233.411-97.068v0c-62.091-67.562-101.24-156.543-105.097-254.591h-128.314v351.658zM512 799.658v-351.658h-128.314c-3.857 98.048-43.006 187.029-105.097 254.591v0c61.92 57.103 143.486 93.221 233.411 97.068zM544 64.342v351.658h128.314c3.857-98.048 43.006-187.029 105.097-254.591v0c-61.92-57.103-143.486-93.221-233.411-97.068zM512 64.342c-89.925 3.847-171.491 39.965-233.411 97.068 62.091 67.562 101.24 156.543 105.097 254.591h128.314v-351.658zM800 679.875c56.287-61.73 91.843-142.692 95.658-231.875v0h-191.317c3.815 89.183 39.371 170.144 95.658 231.875v0 0zM800 184.125v0 0c-56.287 61.73-91.843 142.692-95.658 231.875h191.317c-3.815-89.183-39.371-170.144-95.658-231.875zM160.342 448c3.815 89.183 39.371 170.144 95.658 231.875v0c56.287-61.73 91.843-142.692 95.658-231.875h-191.317zM160.342 416h191.317c-3.815-89.183-39.371-170.144-95.658-231.875-56.287 61.73-91.843 142.692-95.658 231.875zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea6f;" glyph-name="basketball2" d="M511.686 32.628v383.686h-128.314c-4.306-109.458-52.596-207.615-127.686-277.287 67.732-62.845 157.269-102.515 256-106.399v0zM211.218 187.644c-49.322 63.702-79.836 142.7-83.218 228.67h223.344c-4.303-100.588-48.984-190.717-118.247-254.591 0.433-0.471-14.558 16.465-21.879 25.921v0zM822.274 161.723c62.091 67.562 101.24 156.543 105.097 254.591v0h-223.344c4.303-100.588 48.984-190.717 118.247-254.591v0 0zM799.686 139.027c-67.732-62.845-157.269-102.515-256-106.399v0 383.686h128.314c4.306-109.458 52.596-207.615 127.686-277.287v0 0zM822.274 702.905c62.091-67.562 101.24-156.543 105.097-254.591v0h-223.344c4.303 100.588 48.984 190.717 118.247 254.591v0 0zM799.686 725.601c-67.732 62.845-157.269 102.515-256 106.399v-383.686h128.314c4.306 109.458 52.596 207.615 127.686 277.287v0zM233.097 702.905c-62.091-67.562-101.24-156.543-105.097-254.591v0h223.344c-4.303 100.588-48.984 190.717-118.247 254.591v0zM255.686 725.601c67.732 62.845 157.269 102.515 256 106.399v0-383.686h-128.314c-4.306 109.458-52.596 207.615-127.686 277.287v0z" />
<glyph unicode="&#xea70;" glyph-name="baseball" d="M278.589 161.409v0c8.768 9.541 17.079 19.509 24.898 29.87l23.542-17.104 18.809 25.889-24.105 17.514c15.885 24.968 29.077 51.816 39.168 80.136l29.764-9.671 9.889 30.434-30.136 9.792c7.536 28.141 12.079 57.506 13.268 87.733h32.314v32h-32.314c-1.189 30.227-5.732 59.592-13.268 87.733l30.136 9.792-9.889 30.434-29.764-9.671c-10.091 28.32-23.283 55.168-39.168 80.136l24.105 17.514-18.809 25.889-23.542-17.104c-7.819 10.36-16.129 20.329-24.898 29.87 65.573 60.471 153.179 97.409 249.411 97.409s183.838-36.938 249.411-97.409c-8.768-9.541-17.079-19.509-24.898-29.87l-23.542 17.104-18.809-25.889 24.105-17.514c-15.885-24.968-29.077-51.816-39.168-80.136l-29.764 9.671-9.889-30.434 30.136-9.792c-7.536-28.141-12.079-57.506-13.268-87.733h-32.314v-32h32.314c1.189-30.227 5.732-59.592 13.268-87.733l-30.136-9.792 9.889-30.434 29.764 9.671c10.091-28.32 23.283-55.168 39.168-80.136l-24.105-17.514 18.809-25.889 23.542 17.104c7.819-10.36 16.129-20.329 24.898-29.87v0c-65.573-60.471-153.179-97.409-249.411-97.409s-183.838 36.938-249.411 97.409zM256 184.125c-59.635 65.402-96 152.392-96 247.875s36.365 182.472 96 247.875c7.582-8.316 14.789-16.98 21.592-25.967l-28.229-20.509 18.809-25.889 27.615 20.063c13.979-22.238 25.644-46.078 34.659-71.181l-31.082-10.099 9.889-30.434 30.679 9.968c6.573-25.002 10.582-51.044 11.727-77.827h-31.658v-32h31.658c-1.146-26.783-5.154-52.825-11.727-77.827v0l-30.679 9.968-9.889-30.434 31.082-10.099c-9.015-25.103-20.68-48.942-34.659-71.181l-27.615 20.063-18.809-25.889 28.229-20.509c-6.803-8.987-14.009-17.651-21.592-25.967v0zM800 184.125v0 0c-7.582 8.316-14.789 16.98-21.592 25.967l28.229 20.509-18.809 25.889-27.615-20.063c-13.979 22.238-25.644 46.078-34.659 71.181l31.082 10.099-9.889 30.434-30.679-9.968c-6.573 25.002-10.582 51.044-11.727 77.827h31.658v32h-31.658c1.146 26.783 5.154 52.825 11.727 77.827l30.679-9.968 9.889 30.434-31.082 10.099c9.015 25.103 20.68 48.942 34.659 71.181l27.615-20.063 18.809 25.889-28.229 20.509c6.803 8.987 14.009 17.651 21.592 25.967 59.635-65.402 96-152.392 96-247.875s-36.365-182.472-96-247.875zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea71;" glyph-name="baseball2" d="M800 138.713c-71.373-66.223-166.958-106.713-272-106.713s-200.627 40.489-272 106.713v0 0c17.326 16.076 33.225 33.668 47.486 52.566l23.542-17.104 18.809 25.889-24.105 17.514c15.885 24.968 29.077 51.816 39.168 80.136l29.764-9.671 9.889 30.434-30.136 9.792c7.536 28.141 12.079 57.506 13.268 87.733h32.314v32h-32.314c-1.189 30.227-5.732 59.592-13.268 87.733l30.136 9.792-9.889 30.434-29.764-9.671c-10.091 28.32-23.283 55.168-39.168 80.136l24.105 17.514-18.809 25.889-23.542-17.104c-14.261 18.898-30.16 36.49-47.486 52.566v0c71.373 66.223 166.958 106.713 272 106.713s200.627-40.489 272-106.713v0c-17.326-16.076-33.225-33.668-47.486-52.566l-23.542 17.104-18.809-25.889 24.105-17.514c-15.885-24.968-29.077-51.816-39.168-80.136l-29.764 9.671-9.889-30.434 30.136-9.792c-7.536-28.141-12.079-57.506-13.268-87.733h-32.314v-32h32.314c1.189-30.227 5.732-59.592 13.268-87.733v0l-30.136-9.792 9.889-30.434 29.764 9.671c10.091-28.32 23.283-55.168 39.168-80.136l-24.105-17.514 18.809-25.889 23.542 17.104c14.261-18.898 30.16-36.49 47.486-52.566v0 0 0zM840.56 182.365c54.72 68.424 87.44 155.209 87.44 249.635 0 104.352-39.959 199.371-105.411 270.591-16.126-14.871-30.919-31.165-44.18-48.683l28.229-20.509-18.809-25.889-27.615 20.063c-13.979-22.238-25.644-46.078-34.659-71.181l31.082-10.099-9.889-30.434-30.679 9.968c-6.573-25.002-10.582-51.044-11.727-77.827h31.658v-32h-31.658c1.146-26.783 5.154-52.825 11.727-77.827l30.679 9.968 9.889-30.434-31.082-10.099c9.015-25.103 20.68-48.942 34.659-71.181l27.615 20.063 18.809-25.889-28.229-20.509c13.261-17.518 28.055-33.812 44.18-48.683-0.433-0.471 11.82 13.263 17.972 20.955v0zM212.641 185.905c-53.035 67.866-84.641 153.289-84.641 246.095 0 104.352 39.959 199.371 105.411 270.591 16.126-14.871 30.919-31.165 44.18-48.683l-28.229-20.509 18.809-25.889 27.615 20.063c13.979-22.238 25.644-46.078 34.659-71.181l-31.082-10.099 9.889-30.434 30.679 9.968c6.573-25.002 10.582-51.044 11.727-77.827h-31.658v-32h31.658c-1.146-26.783-5.154-52.825-11.727-77.827l-30.679 9.968-9.889-30.434 31.082-10.099c-9.015-25.103-20.68-48.942-34.659-71.181l-27.615 20.063-18.809-25.889 28.229-20.509c-13.261-17.518-28.055-33.812-44.18-48.683 0.433-0.471-13.778 15.548-20.771 24.496v0z" />
<glyph unicode="&#xea72;" glyph-name="tennis-ball" d="M777.411 702.591v0c-65.452-71.219-105.411-166.239-105.411-270.591s39.959-199.371 105.411-270.591c-65.573-60.471-153.179-97.409-249.411-97.409s-183.838 36.938-249.411 97.409c65.452 71.219 105.411 166.239 105.411 270.591s-39.959 199.371-105.411 270.591v0c65.573 60.471 153.179 97.409 249.411 97.409s183.838-36.938 249.411-97.409zM800 679.875c59.635-65.402 96-152.392 96-247.875s-36.365-182.472-96-247.875c-59.635 65.402-96 152.392-96 247.875s36.365 182.472 96 247.875v0zM256 679.875v0 0c59.635-65.402 96-152.392 96-247.875s-36.365-182.472-96-247.875c-59.635 65.402-96 152.392-96 247.875s36.365 182.472 96 247.875zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea73;" glyph-name="tennis-ball2" d="M800 725.287c-71.373 66.223-166.958 106.713-272 106.713s-200.627-40.489-272-106.713v0c78.731-73.051 128-177.415 128-293.287s-49.269-220.236-128-293.287c71.373-66.223 166.958-106.713 272-106.713s200.627 40.489 272 106.713c-78.731 73.051-128 177.415-128 293.287s49.269 220.236 128 293.287v0 0zM822.589 702.591c65.452-71.219 105.411-166.239 105.411-270.591s-39.959-199.371-105.411-270.591c-72.915 67.242-118.589 163.583-118.589 270.591s45.673 203.349 118.589 270.591v0 0zM233.411 702.591c-65.452-71.219-105.411-166.239-105.411-270.591s39.959-199.371 105.411-270.591c72.915 67.242 118.589 163.583 118.589 270.591s-45.673 203.349-118.589 270.591v0z" />
<glyph unicode="&#xea74;" glyph-name="bowling-ball" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM624 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM432 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea75;" glyph-name="bowling-ball2" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM624 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM432 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea76;" glyph-name="billiard-ball" d="M576.008 432c19.427-14.596 31.992-37.83 31.992-64 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.17 12.565 49.404 31.992 64-19.427 14.596-31.992 37.83-31.992 64 0 44.183 35.817 80 80 80s80-35.817 80-80c0-26.17-12.565-49.404-31.992-64v0 0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 224c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM528 320c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM528 448c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea77;" glyph-name="billiard-ball2" d="M576.008 432c19.427-14.596 31.992-37.83 31.992-64 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.17 12.565 49.404 31.992 64-19.427 14.596-31.992 37.83-31.992 64 0 44.183 35.817 80 80 80s80-35.817 80-80c0-26.17-12.565-49.404-31.992-64v0 0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 224c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM528 320c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM528 448c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea78;" glyph-name="soccer-ball" d="M282.096 494.362l113.485-48.172 40.052-137.68-78.856-81.658-129.431-7.11c-39.496 55.842-63.826 123.172-66.993 195.993l121.743 78.626zM284.936 527.92l-49.333 127.558c41.686 54.459 98.242 96.933 163.603 121.355l112.794-91.809v-122.047l-106.134-86.389-120.929 51.331zM387.908 213.023l72.404 74.977h131.769l75.234-77.907-34.756-131.027c-33.143-9.804-68.237-15.066-104.559-15.066s-71.416 5.262-104.559 15.066l-35.533 133.957zM695.414 227.061l-75.882 78.579 41.276 141.887 112.002 47.542 122.837-79.333c-3.167-72.821-27.497-140.151-66.993-195.993l-133.24 7.319zM771.606 529.321l-122.417-51.963-105.188 85.619v122.047l112.794 91.809c65.361-24.423 121.917-66.896 163.603-121.355l-48.791-126.156zM213.234 622.751l41.532-107.667-94.108-60.896c3.655 61.467 22.398 118.872 52.576 168.563zM386.164 92.328c-51.591 21.568-97.225 54.547-133.745 95.782l106.713 5.768 27.032-101.55zM669.836 92.328l27.032 101.55 106.713-5.768c-36.521-41.235-82.154-74.214-133.745-95.782zM842.766 622.751c30.178-49.691 48.921-107.096 52.576-168.563l-94.108 60.896 41.532 107.667zM620.053 788.393l-92.053-74.793-92.053 74.793c29.421 7.577 60.266 11.607 92.053 11.607s62.632-4.030 92.053-11.607zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM528 534.4l102.4-83.2-41.601-131.2h-121.6l-41.601 131.2 102.4 83.2z" />
<glyph unicode="&#xea79;" glyph-name="soccer-ball2" d="M282.096 494.362l113.485-48.172 40.052-137.68-78.856-81.658-129.431-7.11c-39.496 55.842-63.826 123.172-66.993 195.993l121.743 78.626zM284.936 527.92l-49.333 127.558c41.686 54.459 98.242 96.933 163.603 121.355l112.794-91.809v-122.047l-106.134-86.389-120.929 51.331zM387.908 213.023l72.404 74.977h131.769l75.234-77.907-34.756-131.027c-33.143-9.804-68.237-15.066-104.559-15.066s-71.416 5.262-104.559 15.066l-35.533 133.957zM695.414 227.061l-75.882 78.579 41.276 141.887 112.002 47.542 122.837-79.333c-3.167-72.821-27.497-140.151-66.993-195.993l-133.24 7.319zM771.606 529.321l-122.417-51.963-105.188 85.619v122.047l112.794 91.809c65.361-24.423 121.917-66.896 163.603-121.355l-48.791-126.156zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea7a;" glyph-name="soccer-court" d="M96 288h128v288h-128v96.001c0 17.448 14.226 31.999 31.775 31.999h800.45c17.499 0 31.775-14.326 31.775-31.999v-96.001h-128v-288h128v-96.001c0-17.448-14.226-31.999-31.775-31.999h-800.45c-17.499 0-31.775 14.326-31.775 31.999v96.001zM544 288.879v-128.879h-32v128.879c-71.999 7.959-128 69-128 143.121s56.001 135.162 128 143.121v128.879h32v-128.879c71.999-7.959 128-69 128-143.121s-56.001-135.162-128-143.121zM544 321.134c54.277 7.764 96 54.442 96 110.866s-41.723 103.102-96 110.866v-221.732zM512 542.866c-54.277-7.764-96-54.442-96-110.866s41.723-103.102 96-110.866v221.732zM127.785 736c-35.228 0-63.785-28.51-63.785-63.918v-480.165c0-35.301 28.791-63.918 63.785-63.918h800.43c35.228 0 63.785 28.51 63.785 63.918v480.165c0 35.301-28.791 63.918-63.785 63.918h-800.43zM864 544h96v-224h-96v224zM96 544h96v-224h-96v224z" />
<glyph unicode="&#xea7b;" glyph-name="soccer-court2" d="M64 288v-96.082c0-35.301 28.791-63.918 63.785-63.918h384.215v160.879c-71.999 7.959-128 69-128 143.121s56.001 135.162 128 143.121v160.879h-384.215c-35.228 0-63.785-28.51-63.785-63.918v-96.082h160v-288h-160zM992 288v-96.082c0-35.408-28.558-63.918-63.785-63.918h-384.215v160.879c71.999 7.959 128 69 128 143.121s-56.001 135.162-128 143.121v160.879h384.215c34.994 0 63.785-28.617 63.785-63.918v-96.082h-160v-288h160zM544 321.134c54.277 7.764 96 54.442 96 110.866s-41.723 103.102-96 110.866v-221.732zM512 542.866c-54.277-7.764-96-54.442-96-110.866s41.723-103.102 96-110.866v221.732zM864 544v-224h128v224h-128zM64 544v-224h128v224h-128z" />
<glyph unicode="&#xea7c;" glyph-name="football" d="M640 416h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-64v32h64v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h64v-32h-64v-64h-32v64zM528 224v0c-100.309 0-180.163 28.288-241.007 64v288c60.844 35.712 140.699 64 241.007 64s180.163-28.288 241.007-64v-288c-60.844-35.712-140.699-64-241.007-64zM256 307.868c-82.797 57.759-121.6 124.132-121.6 124.132s38.803 66.373 121.6 124.132v-248.265zM800 307.868v248.265c82.797-57.759 121.6-124.132 121.6-124.132s-38.803-66.373-121.6-124.132zM96 432c0 0 128-240 432-240s432 240 432 240c0 0-128 240-432 240s-432-240-432-240v0z" />
<glyph unicode="&#xea7d;" glyph-name="football2" d="M640 416h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-64v32h64v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h64v-32h-64v-64h-32v64zM288 250.348c62.912-33.601 142.382-58.348 240-58.348s177.088 24.747 240 58.348v0 363.304c-62.912 33.601-142.382 58.348-240 58.348s-177.088-24.747-240-58.348v-363.304zM256 269.024c-110.513 70.188-160 162.976-160 162.976s49.487 92.788 160 162.976v-325.952zM800 269.024c110.513 70.188 160 162.976 160 162.976s-49.487 92.788-160 162.976v-325.952z" />
<glyph unicode="&#xea7e;" glyph-name="football3" d="M640 448h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-64v-32h64v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h64v32h-64v64h-32v-64zM528 672v0c304 0 432-240 432-240s-128-240-432-240c-304 0-432 240-432 240s128 240 432 240zM528 640c-272 0-393.6-208-393.6-208s121.6-208 393.6-208c272 0 393.6 208 393.6 208s-121.6 208-393.6 208v0z" />
<glyph unicode="&#xea7f;" glyph-name="football4" d="M640 416h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-64v32h64v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h64v-32h-64v-64h-32v64zM528 672c-304 0-432-240-432-240s128-240 432-240c304 0 432 240 432 240s-128 240-432 240v0z" />
<glyph unicode="&#xea80;" glyph-name="basketball3" d="M551.848 64.76v0c-5.147 25.613-7.848 52.111-7.848 79.24 0 108.873 43.496 207.586 114.060 279.711-42.233 59.126-95.072 110.155-155.739 150.309-62.052-124.686-187.268-212.406-333.764-221.279v0c36.25-165.146 183.413-288.741 359.443-288.741 8.012 0 15.964 0.256 23.848 0.76zM583.814 68.205c67.931 10.336 129.758 39.244 180.139 81.383v0c-10.544 90.053-41.3 173.929-87.608 246.97-62.209-65.904-100.345-154.777-100.345-252.558 0-25.982 2.693-51.335 7.814-75.795v0zM880.22 538.943c-44.596 147.070-178.783 255.185-339.043 260.826v0c1.864-15.663 2.823-31.604 2.823-47.768 0-52.434-10.089-102.511-28.431-148.397 64.556-41.952 120.869-95.519 165.976-157.739 55.061 47.913 123.356 81.010 198.675 93.079v0zM888.186 507.795v0c-71.692-10.908-136.586-42.502-188.403-88.503 46.807-72.11 79.127-154.494 92.836-243.027v0c64.002 66.211 103.38 156.375 103.38 255.735 0 25.982-2.693 51.335-7.814 75.795zM163.039 384.484v0 0c137.393 7.002 254.892 89.358 311.985 206.555-68.816 40.353-146.507 67.203-229.437 76.914-53.429-63.88-85.588-146.161-85.588-235.953 0-16.101 1.034-31.961 3.039-47.516zM508.961 799.516c-91.812-4.679-174.74-43.008-236.696-102.896 77.495-12 150.279-38.26 215.585-76.013 15.603 40.807 24.15 85.102 24.15 131.393 0 16.101-1.034 31.961-3.039 47.516v0 0zM133.084 368.050c-3.346 20.823-5.084 42.183-5.084 63.95 0 220.914 179.086 400 400 400s400-179.086 400-400c0-220.914-179.086-400-400-400-193.544 0-354.983 137.46-392.015 320.079-1.072 5.287-2.040 10.611-2.901 15.971v0z" />
<glyph unicode="&#xea81;" glyph-name="basketball4" d="M130.823 384.31c-1.864 15.663-2.823 31.604-2.823 47.768 0 89.682 29.514 172.471 79.359 239.184 97.296-5.078 188.373-33.648 267.665-80.144-59.714-122.576-185.505-207.039-331.024-207.039-3.807 0-12.579 0.21-13.177 0.232v0zM135.985 352.157c37.031-182.618 198.47-320.079 392.015-320.079 10.614 0 21.132 0.413 31.537 1.225v0c-10.117 35.177-15.537 72.343-15.537 110.775 0 108.873 43.496 207.586 114.060 279.711-42.233 59.126-95.072 110.155-155.739 150.309-65.492-131.599-201.347-222.020-358.321-222.020-2.678 0-5.349 0.026-8.015 0.079v0 0zM503.443 831.337c-107.221-6.494-203.043-55.225-271.044-129.773v0c92.431-8.281 179.057-36.716 255.451-80.879 15.603 40.807 24.15 85.102 24.15 131.393 0 27.21-2.953 53.731-8.557 79.259v0 0zM536.015 832c178.963-3.517 329.114-124.568 376.448-289.146-88.051-6.867-168.098-42.246-230.918-96.911-45.107 62.22-101.42 115.787-165.976 157.739 18.342 45.886 28.431 95.963 28.431 148.397 0 27.369-2.749 54.097-7.985 79.921v0zM767.184 111.438c-50.565-37.78-110.366-63.88-175.404-74.302v0c-10.262 33.843-15.78 69.748-15.78 106.943 0 97.78 38.136 186.654 100.345 252.558 52.801-83.282 85.382-180.65 90.839-285.199v0 0zM797.486 136.478c80.195 73.152 130.514 178.5 130.514 295.6 0 27.129-2.701 53.627-7.848 79.24-84.34-5.395-160.952-39.2-220.368-91.948 53.763-82.827 88.413-179.207 97.702-282.892v0 0z" />
<glyph unicode="&#xea82;" glyph-name="baseball-set" d="M636.374 144.362v0c-1.138 5.23-1.882 11.286-1.566 8.927 65.944 7.754 118.256 60.066 126.011 126.011 49.851-6.676 89.32-46.145 95.996-95.996-65.944-7.754-118.256-60.066-126.011-126.011-46.835 6.272-84.507 41.49-94.429 87.069zM728.478 278.963v0 0c-7.454-47.976-45.358-85.88-93.334-93.334 7.454 47.976 45.358 85.88 93.334 93.334zM856.478 150.963c-7.454-47.976-45.358-85.88-93.334-93.334 7.454 47.976 45.358 85.88 93.334 93.334v0 0zM441.782 429.815l-232.843-264.96 28.467-28.467 264.96 232.843-60.583 60.583zM462.95 453.902l63.503-63.503 352.746 309.989c31.335 27.537 32.744 73.853 3.481 103.116l-6.626 6.626c-29.412 29.412-75.464 27.984-103.116-3.481l-309.989-352.746zM187.771 140.768l-21.168-24.087-11.418 11.418c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-11.418 11.418 24.087 21.168-25.547 25.547zM162.948 160.809l590.395 669.115c38.524 43.661 102.629 45.543 143.55 4.622l10.203-10.203c40.891-40.891 38.852-105.191-4.622-143.55l-669.142-590.42c7.491-17.5 4.132-38.597-10.159-52.888-18.876-18.876-49.139-18.743-67.886 0.004l-45.247 45.247c-18.687 18.687-18.749 49.141-0.004 67.886 14.4 14.4 35.427 17.737 52.913 10.187v0 0zM745.811 312.296c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144v0z" />
<glyph unicode="&#xea83;" glyph-name="baseball-set2" d="M889.017 183.503c-7.072 67.384-60.616 120.928-128 128v0c0.524-4.997 0.793-10.071 0.793-15.207 0-79.529-64.471-144-144-144-5.136 0-10.209 0.269-15.207 0.793 7.072-67.384 60.616-120.928 128-128-0.524 4.997-0.793 10.071-0.793 15.207 0 79.529 64.471 144 144 144 5.136 0 10.209-0.269 15.207-0.793v0zM888.818 151.299c-7.754-65.944-60.066-118.257-126.011-126.011-0.657 4.909-0.997 9.919-0.997 15.007 0 61.856 50.144 112 112 112 5.089 0 10.098-0.339 15.007-0.997v0zM728.814 311.304c-65.944-7.754-118.257-60.066-126.011-126.011 4.909-0.657 9.919-0.997 15.007-0.997 61.856 0 112 50.144 112 112 0 5.089-0.339 10.098-0.997 15.007v0zM419.748 451.849l-236.467-267.996 73.123-73.123 267.996 236.467-104.652 104.652zM440.961 475.891l312.382 354.033c38.524 43.661 102.629 45.543 143.55 4.622l10.203-10.203c40.891-40.891 38.852-105.191-4.622-143.55l-354.033-312.382-107.48 107.48zM234.493 87.386c5.917-16.866 2.166-36.414-11.321-49.901-18.876-18.876-49.139-18.743-67.886 0.004l-45.247 45.247c-18.687 18.687-18.749 49.141-0.004 67.886 13.563 13.563 33.004 17.312 49.829 11.394l74.629-74.629z" />
<glyph unicode="&#xea84;" glyph-name="tennis-ball3" d="M528 832c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400v0zM528 64c-203.241 0-368 164.759-368 368s164.759 368 368 368c137.154 0 256.784-75.032 320.081-186.288-29.956-23.619-67.773-37.712-108.881-37.712-39.126 0-67.2 16-105.026 34.898s-67.387 29.102-106.174 29.102c-114.875 0-208-93.125-208-208s93.125-208 208-208c38.787 0 80 16 106.706 29.637s65.368 34.363 104.494 34.363c41.108 0 78.924-14.093 108.881-37.712-63.297-111.256-182.926-186.288-320.081-186.288v0zM896 432v0c0-54.499-11.847-106.23-33.105-152.76-34.572 25.613-77.364 40.76-123.695 40.76-46.599 0-97.931-27.782-131.2-44.8-13.645-6.979-48.421-19.2-80-19.2-97.202 0-176 78.798-176 176s78.798 176 176 176c31.579 0 53.045-5.723 80-19.2 32-16 84.601-44.8 131.2-44.8 46.33 0 89.122 15.147 123.695 40.76 21.259-46.53 33.105-98.262 33.105-152.76z" />
<glyph unicode="&#xea85;" glyph-name="tennis-ball4" d="M887.968 606.631c-1.345 2.768 5.808-12.096 10.134-22.617 19.27-46.867 29.898-98.199 29.898-152.014 0-62.612-14.386-121.864-40.032-174.631-7.755 7.935-16.14 15.252-25.073 21.871-34.572 25.613-77.364 40.76-123.695 40.76-46.599 0-97.931-27.782-131.2-44.8-13.645-6.979-48.421-19.2-80-19.2-97.202 0-176 78.798-176 176s78.798 176 176 176c31.579 0 53.045-5.723 80-19.2 32-16 84.601-44.8 131.2-44.8 46.33 0 89.122 15.147 123.695 40.76 8.934 6.618 17.318 13.936 25.073 21.871v0zM871.909 636.392c1.986-3.335-3.566 6.079-8.663 13.89-71.381 109.406-194.869 181.718-335.246 181.718-220.914 0-400-179.086-400-400s179.086-400 400-400c146.236 0 274.144 78.474 343.909 195.608-7.217 8.278-15.197 15.874-23.828 22.68-29.956 23.619-67.773 37.712-108.881 37.712-39.126 0-77.788-20.726-104.494-34.363s-67.919-29.637-106.706-29.637c-114.875 0-208 93.125-208 208s93.125 208 208 208c38.787 0 68.347-10.204 106.174-29.102s65.9-34.898 105.026-34.898c41.108 0 78.924 14.093 108.881 37.712 8.632 6.806 16.611 14.402 23.828 22.68v0z" />
<glyph unicode="&#xea86;" glyph-name="trophy3" d="M512 128v160c-105.897 0.092-192 85.918-192 191.778v0.222c-112 48-128 288-128 288h672c0 0-16-240-128-288v0-0.222c0-105.907-85.946-191.687-192-191.778v-160h128v-32h-288v32h128zM352 736v-255.759c0-88.499 71.657-160.241 160.035-160.241h31.93c88.385 0 160.035 71.513 160.035 160.241v255.759h-352zM320 736h-92.8c0 0 17.733-167.061 92.8-220.8v220.8zM735.438 736v-220.17c75.066 53.739 92.812 220.17 92.812 220.17h-92.812z" />
<glyph unicode="&#xea87;" glyph-name="trophy4" d="M512 128h-128v-32h288v32h-128v160c106.054 0.092 192 85.871 192 191.778v0.222c112 48 128 288 128 288h-672c0 0 16-240 128-288v-0.222c0-105.86 86.103-191.686 192-191.778v-160zM320 736v-220.8c-75.066 53.739-92.8 220.8-92.8 220.8h92.8zM735.438 736h92.812c0 0-17.746-166.431-92.812-220.17v220.17z" />
<glyph unicode="&#xea88;" glyph-name="trophy-one" d="M512 128v160c-105.897 0.092-192 85.918-192 191.778v0.222c-112 48-128 288-128 288h672c0 0-16-240-128-288v0-0.222c0-105.907-85.946-191.687-192-191.778v-160h128v-32h-288v32h128zM352 736v-255.759c0-88.499 71.657-160.241 160.035-160.241h31.93c88.385 0 160.035 71.513 160.035 160.241v255.759h-352zM320 736h-92.8c0 0 17.733-167.061 92.8-220.8v220.8zM735.438 736v-220.17c75.066 53.739 92.812 220.17 92.812 220.17h-92.812zM543.904 384h-31.904v192h-64v32c52.81 0 64 28.654 64 64h31.904v-288z" />
<glyph unicode="&#xea89;" glyph-name="trophy-one2" d="M512 128h-128v-32h288v32h-128v160c106.054 0.092 192 85.871 192 191.778v0.222c112 48 128 288 128 288h-672c0 0 16-240 128-288v-0.222c0-105.86 86.103-191.686 192-191.778v-160zM320 736v-220.8c-75.066 53.739-92.8 220.8-92.8 220.8h92.8zM735.438 736h92.812c0 0-17.746-166.431-92.812-220.17v220.17zM543.904 384h-31.904v192h-64v32c52.81 0 64 28.654 64 64h31.904v-288z" />
<glyph unicode="&#xea8a;" glyph-name="trophy5" d="M672 160h96v-128h-480v128h96v96h128v128c-105.897 0.092-192 85.918-192 191.778v0.222c-112 48-128 288-128 288h672c0 0-16-240-128-288v-0.222c0-105.907-85.946-191.687-192-191.778v-128h128v-96zM352 832v-255.759c0-88.499 71.657-160.241 160.035-160.241h31.93c88.385 0 160.035 71.513 160.035 160.241v255.759h-352zM320 832h-92.8c0 0 17.733-167.061 92.8-220.8v220.8zM735.438 832v-220.17c75.066 53.739 92.812 220.17 92.812 220.17h-92.812zM416 224v-64h224v64h-224zM320 128v-64h416v64h-416z" />
<glyph unicode="&#xea8b;" glyph-name="trophy6" d="M672 160v96h-128v128c106.054 0.092 192 85.871 192 191.778v0.222c112 48 128 288 128 288h-672c0 0 16-240 128-288v-0.222c0-105.86 86.103-191.686 192-191.778v-128h-128v-96h-96v-128h480v128h-96zM320 832v-220.8c-75.066 53.739-92.8 220.8-92.8 220.8h92.8zM735.438 832h92.812c0 0-17.746-166.431-92.812-220.17v220.17z" />
<glyph unicode="&#xea8c;" glyph-name="medal" d="M608 896h-160v-461.656c25.022 8.844 51.949 13.656 80 13.656s54.978-4.812 80-13.656v461.656zM640 896v-475.681c19.058-10.074 36.596-22.639 52.18-37.261l43.82 128.622v384.32h-96zM416 896h-96v-384.32l43.82-128.622c15.585 14.622 33.123 27.187 52.18 37.261v475.681zM339.718 356.845l-51.718 155.155v416h480v-416l-51.718-155.155c32.384-40.908 51.718-92.618 51.718-148.845 0-132.548-107.452-240-240-240s-240 107.452-240 240c0 56.226 19.335 107.936 51.718 148.845v0 0zM528 0c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0z" />
<glyph unicode="&#xea8d;" glyph-name="medal2" d="M608 928h-160v-459.955c25.294 7.772 52.158 11.955 80 11.955s54.706-4.183 80-11.955v459.955zM640 928h128v-416l-39.914-119.743c-24.627 26.729-54.542 48.512-88.086 63.688v472.056zM416 928h-128v-416l39.914-119.743c24.627 26.729 54.542 48.512 88.086 63.688v472.056zM528-32c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0z" />
<glyph unicode="&#xea8e;" glyph-name="medal3" d="M608 896h-160v-461.656c25.022 8.844 51.949 13.656 80 13.656s54.978-4.812 80-13.656v461.656zM640 896v-475.681c19.058-10.074 36.596-22.639 52.18-37.261l43.82 128.622v384.32h-96zM416 896h-96v-384.32l43.82-128.622c15.585 14.622 33.123 27.187 52.18 37.261v475.681zM339.718 356.845l-51.718 155.155v416h480v-416l-51.718-155.155c32.384-40.908 51.718-92.618 51.718-148.845 0-132.548-107.452-240-240-240s-240 107.452-240 240c0 56.226 19.335 107.936 51.718 148.845v0 0zM528 0c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM528 130.462l-88.615-66.462 24.615 110.769-80 81.231h112l32 96 32-96h112l-80-81.231 32-110.769-96 66.462z" />
<glyph unicode="&#xea8f;" glyph-name="medal4" d="M608 928h-160v-459.955c25.294 7.772 52.158 11.955 80 11.955s54.706-4.183 80-11.955v459.955zM640 928h128v-416l-39.914-119.743c-24.627 26.729-54.542 48.512-88.086 63.688v472.056zM416 928h-128v-416l39.914-119.743c24.627 26.729 54.542 48.512 88.086 63.688v472.056zM528-32c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0zM528 130.462l-88.615-66.462 24.615 110.769-80 81.231h112l32 96 32-96h112l-80-81.231 32-110.769-96 66.462z" />
<glyph unicode="&#xea90;" glyph-name="weights" d="M736 416h-416v-111.794c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v18.524c-5.004-1.769-10.39-2.73-16-2.73-26.694 0-48 21.514-48 48.054v47.946h-64v32h64v47.946c0 26.576 21.49 48.054 48 48.054 5.622 0 11.005-0.954 16-2.709v0 18.503c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-111.794h416v111.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-18.524c5.004 1.769 10.39 2.73 16 2.73 26.694 0 48-21.514 48-48.054v-47.946h64v-32h-64v-47.946c0-26.576-21.49-48.054-48-48.054-5.622 0-11.005 0.954-16 2.709v-18.503c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v111.794zM848 512c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0zM208 512c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0zM784 576c-8.837 0-16-7.119-16-16.309v-255.381c0-9.007 7.422-16.309 16-16.309 8.837 0 16 7.119 16 16.309v255.381c0 9.007-7.422 16.309-16 16.309v0zM272 576c-8.837 0-16-7.119-16-16.309v-255.381c0-9.007 7.422-16.309 16-16.309 8.837 0 16 7.119 16 16.309v255.381c0 9.007-7.422 16.309-16 16.309v0z" />
<glyph unicode="&#xea91;" glyph-name="weights2" d="M736 416h-416v-111.794c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v18.524c-5.004-1.769-10.39-2.73-16-2.73-26.694 0-48 21.514-48 48.054v47.946h-64v32h64v47.946c0 26.576 21.49 48.054 48 48.054 5.622 0 11.005-0.954 16-2.709v0 18.503c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-111.794h416v111.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-18.524c5.004 1.769 10.39 2.73 16 2.73 26.694 0 48-21.514 48-48.054v-47.946h64v-32h-64v-47.946c0-26.576-21.49-48.054-48-48.054-5.622 0-11.005 0.954-16 2.709v-18.503c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v111.794z" />
<glyph unicode="&#xea92;" glyph-name="tennis-racket" d="M416 800h32v32h-25.751c-2.12-2.845-4.203-5.768-6.249-8.768v-23.232zM416 736h32v32h-32v-32zM384 736v26.574c-3.479-8.58-6.713-17.451-9.681-26.574h9.681zM416 672h32v32h-32v-32zM384 672v32h-18.739c-2.533-10.437-4.731-21.12-6.569-32h25.308zM416 512v-32h32v32h-32zM384 512h-18.591c4.977-12.805 11.234-24.175 18.591-34.199v0 34.199zM416 576v-32h32v32h-32zM384 576h-31.565c0.63-11.347 1.937-22.005 3.869-32v0h27.696v32zM416 640v-32h32v32h-32zM384 640h-29.604c-1.055-10.547-1.772-21.227-2.13-32v0h31.734v32zM480 800h32v32h-32v-32zM480 883.763v-19.763h32v30.662c-10.967-1.839-21.668-5.54-32-10.9zM480 736h32v32h-32v-32zM480 672h32v32h-32v-32zM480 512v-32h32v32h-32zM448 429.686v18.314h-33.943c10.368-7.489 21.755-13.557 33.943-18.314zM480 420.464c10.332-2.047 21.033-3.365 32-4.005v31.541h-32v-27.536zM480 576v-32h32v32h-32zM480 640v-32h32v32h-32zM608 832v-32h32v23.232c-2.045 3-4.129 5.923-6.249 8.768h-25.751zM544 832v-32h32v32h-32zM544 864h32v19.763c-10.332 5.36-21.033 9.061-32 10.9v-30.662zM608 768v-32h32v32h-32zM544 768v-32h32v32h-32zM608 704v-32h32v32h-32zM690.739 704h-18.739v-32h25.308c-1.838 10.88-4.036 21.563-6.569 32zM681.681 736c-2.968 9.123-6.202 17.994-9.681 26.574v-26.574h9.681zM544 704v-32h32v32h-32zM608 480h32v32h-32v-32zM608 448v-18.314c12.188 4.757 23.575 10.825 33.943 18.314h-33.943zM544 480h32v32h-32v-32zM544 448v-31.541c10.967 0.64 21.668 1.958 32 4.005v0 27.536h-32zM608 544h32v32h-32v-32zM699.696 544c1.932 9.995 3.239 20.653 3.869 32v0h-31.565v-32h27.696zM690.591 512h-18.591v-34.199c7.357 10.024 13.614 21.394 18.591 34.199zM544 544h32v32h-32v-32zM608 608h32v32h-32v-32zM703.734 608c-0.358 10.773-1.075 21.453-2.13 32v0h-29.604v-32h31.734zM544 608h32v32h-32v-32zM735.635 576c-6.114-131.614-88.327-186.581-191.635-191.616v-163.098c18.723-6.59 32-24.445 32-45.437v-159.697c0-26.766-21.49-48.152-48-48.152-26.694 0-48 21.558-48 48.152v159.697c0 21.101 13.357 38.859 32 45.43v0 163.106c-103.308 5.035-185.521 60.002-191.635 191.616h-0.365v32h0.24c5.256 175.133 96.263 320 207.76 320s202.504-144.867 207.76-320h0.24v-32h-0.365zM528 192c-8.837 0-16-7.292-16-15.712v-160.576c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v160.576c0 8.678-7.422 15.712-16 15.712v0 0z" />
<glyph unicode="&#xea93;" glyph-name="tennis-racket2" d="M416 800h32v32h-25.751c-2.12-2.845-4.203-5.768-6.249-8.768v-23.232zM416 736h32v32h-32v-32zM384 736v26.574c-3.479-8.58-6.713-17.451-9.681-26.574h9.681zM416 672h32v32h-32v-32zM384 672v32h-18.739c-2.533-10.437-4.731-21.12-6.569-32h25.308zM416 512v-32h32v32h-32zM384 512h-18.591c4.977-12.805 11.234-24.175 18.591-34.199v0 34.199zM416 576v-32h32v32h-32zM384 576h-31.565c0.63-11.347 1.937-22.005 3.869-32v0h27.696v32zM416 640v-32h32v32h-32zM384 640h-29.604c-1.055-10.547-1.772-21.227-2.13-32v0h31.734v32zM480 800h32v32h-32v-32zM480 883.763v-19.763h32v30.662c-10.967-1.839-21.668-5.54-32-10.9zM480 736h32v32h-32v-32zM480 672h32v32h-32v-32zM480 512v-32h32v32h-32zM448 429.686v18.314h-33.943c10.368-7.489 21.755-13.557 33.943-18.314zM480 420.464c10.332-2.047 21.033-3.365 32-4.005v31.541h-32v-27.536zM480 576v-32h32v32h-32zM480 640v-32h32v32h-32zM608 832v-32h32v23.232c-2.045 3-4.129 5.923-6.249 8.768h-25.751zM544 832v-32h32v32h-32zM544 864h32v19.763c-10.332 5.36-21.033 9.061-32 10.9v-30.662zM608 768v-32h32v32h-32zM544 768v-32h32v32h-32zM608 704v-32h32v32h-32zM690.739 704h-18.739v-32h25.308c-1.838 10.88-4.036 21.563-6.569 32zM681.681 736c-2.968 9.123-6.202 17.994-9.681 26.574v-26.574h9.681zM544 704v-32h32v32h-32zM608 480h32v32h-32v-32zM608 448v-18.314c12.188 4.757 23.575 10.825 33.943 18.314v0h-33.943zM544 480h32v32h-32v-32zM544 448v-31.541c10.967 0.64 21.668 1.958 32 4.005v0 27.536h-32zM608 544h32v32h-32v-32zM699.696 544c1.932 9.995 3.239 20.653 3.869 32v0h-31.565v-32h27.696zM690.591 512h-18.591v-34.199c7.357 10.024 13.614 21.394 18.591 34.199zM544 544h32v32h-32v-32zM608 608h32v32h-32v-32zM703.734 608c-0.358 10.773-1.075 21.453-2.13 32v0h-29.604v-32h31.734zM544 608h32v32h-32v-32zM735.635 576c-6.114-131.614-88.327-186.581-191.635-191.616v-163.098c18.723-6.59 32-24.445 32-45.437v-159.697c0-26.766-21.49-48.152-48-48.152-26.694 0-48 21.558-48 48.152v159.697c0 21.101 13.357 38.859 32 45.43v0 163.106c-103.308 5.035-185.521 60.002-191.635 191.616h-0.365v32h0.24c5.256 175.133 96.263 320 207.76 320s202.504-144.867 207.76-320h0.24v-32h-0.365z" />
<glyph unicode="&#xea94;" glyph-name="basketball-hoop" d="M408.759 309.081v0c12.105-5.946 28.108-10.939 46.785-14.571l-6.163 33.896c-20.248 4.603-38.272 10.929-53.14 18.554l12.518-37.879zM420.837 272.534l12.091-36.586c10.337-3.031 21.989-5.576 34.633-7.528l-6.090 33.493c-14.633 2.718-28.281 6.305-40.634 10.621v0zM512 288.293v32.033c-10.133 0.415-20.019 1.221-29.583 2.383v0l5.976-32.871c7.629-0.726 15.517-1.247 23.607-1.546v0zM512 256.326v0c-5.999 0.246-11.911 0.628-17.721 1.141l5.922-32.573c3.879-0.253 7.815-0.454 11.799-0.601v32.033zM544 256.326v-32.033c3.984 0.147 7.919 0.348 11.799 0.601l5.922 32.573c-5.81-0.512-11.722-0.895-17.721-1.141v0zM544 288.293v0c8.090 0.298 15.978 0.82 23.607 1.546l5.976 32.871c-9.565-1.163-19.45-1.968-29.583-2.383v-32.033zM635.038 272.49v0c-12.319-4.296-25.925-7.869-40.509-10.577l-6.090-33.493c12.578 1.941 24.173 4.47 34.47 7.48l12.128 36.59zM647.153 309.038l12.562 37.899c-14.86-7.615-32.867-13.933-53.096-18.531l-6.163-33.896c18.631 3.623 34.602 8.601 46.696 14.528v0zM478.768 166.775l-5.298 29.139c-10.17 1.505-19.934 3.42-29.196 5.701l3.556-10.761h0.22c0.861-9.779 12.69-18.441 30.718-24.078zM511.882 160.65c0.039-0.003 0.079-0.006 0.118-0.010v0 31.686c-1.986 0.081-3.963 0.178-5.93 0.289l5.812-31.965zM544 192.326v-31.686c0.039 0.003 0.079 0.006 0.118 0.010v0l5.812 31.965c-1.967-0.111-3.944-0.207-5.93-0.289v0 0zM611.529 201.566v0 0c-9.204-2.26-18.901-4.158-29-5.652l-5.298-29.139c18.027 5.638 29.857 14.3 30.718 24.078h0.029l3.551 10.713zM356.611 381.728v0c-0.387 0.753-0.751 1.511-1.091 2.272h-67.521v288h480v-288h-67.521c-0.32-0.716-0.661-1.429-1.022-2.138l-18.814-61.862h151.356v416h-608v-416h151.498l-18.887 61.728zM355.521 416v0 0c16.307 36.516 87.332 64 172.479 64s156.172-27.484 172.479-64h35.521v224h-416v-224h35.521zM416.471 186.088l-31.182 101.912h-193.29v480h672v-480h-193.088l-31.416-103.301h-0.217c-6.341-31.908-53.744-56.699-111.279-56.699-58.368 0-106.308 25.513-111.529 58.088v0 0zM528 352c79.529 0 144 21.49 144 48s-64.471 48-144 48c-79.529 0-144-21.49-144-48s64.471-48 144-48v0z" />
<glyph unicode="&#xea95;" glyph-name="basketball-hoop2" d="M356.611 381.728v0c-0.387 0.753-0.751 1.511-1.091 2.272h-67.521v288h480v-288h-67.521c-0.32-0.716-0.661-1.429-1.022-2.138l-18.814-61.862h151.356v416h-608v-416h151.498l-18.887 61.728zM355.521 416v0 0c16.307 36.516 87.332 64 172.479 64s156.172-27.484 172.479-64h35.521v224h-416v-224h35.521zM416.471 186.088l-31.182 101.912h-193.29v480h672v-480h-193.088l-31.416-103.301h-0.217c-6.341-31.908-53.744-56.699-111.279-56.699-58.368 0-106.308 25.513-111.529 58.088v0 0zM528 352c79.529 0 144 21.49 144 48s-64.471 48-144 48c-79.529 0-144-21.49-144-48s64.471-48 144-48v0z" />
<glyph unicode="&#xea96;" glyph-name="table-tennis" d="M271 448h419.2c11.4 28.9 16.8 61.2 14.3 95.3l-2.4 33.4c-7.4 105.7-99.7 191.3-205.7 191.3h-31.7c-106.1 0-198.3-85.8-205.8-191.3l-2.4-33.4c-2.4-34.1 2.9-66.4 14.5-95.3zM287.3 416c36.2-58 100.8-96 177.1-96h32.3c76.2 0 140.8 38 177.1 96h-386.5zM562.3 127.9c1-17.6-14.2-31.9-32-31.9h-96c-18.1 0-32.9 14.3-32 31.9l9.2 165.6c-114.2 24.5-194.7 127-187 249.7l2.1 32.9c7.7 124 114.2 223.9 237.8 223.9h32.3c123.8 0 230.1-100.2 237.8-223.8l2.1-32.9c7.6-122.3-72.2-224.5-185.8-249.4l11.5-166zM443.3 288.9c-4-72.8-8.9-160.9-9-160.9h96c-0.3 0-6.3 88.1-11.3 161-7.4-0.6-14.9-1-22.5-1h-31.9c-7.2 0-14.3 0.3-21.3 0.9v0zM832.6 272c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64v0zM736.6 272c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32v0z" />
<glyph unicode="&#xea97;" glyph-name="table-tennis2" d="M236.983 448c-10.048 29.432-14.583 61.579-12.478 95.25l2.058 32.924c7.743 123.892 114.205 223.826 237.828 223.826h32.322c123.8 0 230.102-100.21 237.828-223.826l2.058-32.924c2.104-33.672-2.426-65.819-12.468-95.25h-487.147zM250.605 416c39.453-76.501 119.118-128 214.018-128h31.859c94.94 0 174.594 51.495 214.034 128h-459.91zM551.25 262.32l9.302-134.399c0.98-17.639-14.161-31.921-32-31.921h-96c-18.113 0-32.929 14.292-31.95 31.921l7.446 134.033c17.543-3.899 35.893-5.954 54.851-5.954h31.859c19.551 0 38.455 2.184 56.492 6.32v0 0zM832.552 272c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64v0z" />
<glyph unicode="&#xea98;" glyph-name="volleyball" d="M249.184 672.187c-3.23-127.062 35.344-255.67 117.67-363.534-45.49-33.097-95.719-58.463-148.545-75.521 1.979-3.076-11.963 19.155-19.516 34.229-24.823 49.538-38.793 105.457-38.793 164.638 0 81.975 26.804 157.69 72.125 218.859 7.468 10.079 19.296 23.923 17.059 21.329v0zM284.223 707.68v0c-4.159-3.681 9.696 8.673 21.526 17.65 34.484 26.168 73.723 46.395 116.194 59.156 8.559 2.572 21.176 5.684 18.75 5.094-10.467-109.208 10.965-222.506 68.21-325.289-31.62-52.846-71.089-98.205-116.052-135.448-85.346 111.95-120.739 247.563-108.627 378.836zM857.965 595.117c-110.631 71.089-245.737 104.699-385.010 86.61-3.972 38.212-3.715 76.53 0.586 114.271-2.682-0.398 13.436 1.905 24.377 2.79 9.921 0.803 19.954 1.212 30.082 1.212 133.138 0 249.763-70.702 314.376-176.609 6.777-11.107 16.602-30.319 15.589-28.274v0zM880.167 539.116v0c-2.039 6.712 1.915-5.602 5.164-18.787 6.971-28.296 10.669-57.881 10.669-88.329 0-18.994-1.439-37.651-4.214-55.87-1.755-11.524-5.563-28.799-4.965-26.173-95.079 79.434-216.908 127.92-350.002 129.975-30.121 54.103-49.719 111.295-59.436 169.179 148.541 19.233 292.043-23.902 402.784-109.995zM362.387 103.283v0c6.454-3.258-5.765 2.675-17.863 9.646-36.79 21.201-69.568 48.582-96.918 80.725-4.845 5.695-11.313 13.959-9.938 12.196 120.905 41.434 228.23 124.204 298.737 242.084 61.901-0.966 121.216-12.584 176.193-33.102-65.578-156.491-197.196-267.28-350.211-311.549zM408.666 83.78c146.355 53.289 270.244 165.277 334.394 318.581 49.19-21.965 94.404-51.233 134.263-86.426 1.273 3.835-2.060-6.39-5.403-15.145-52.852-138.45-186.902-236.79-343.92-236.79-38.991 0-76.566 6.064-111.833 17.3-4.459 1.421-9.43 3.14-7.502 2.48v0zM928 432c0 220.914-179.086 400-400 400s-400-179.086-400-400c0-220.914 179.086-400 400-400s400 179.086 400 400v0z" />
<glyph unicode="&#xea99;" glyph-name="volleyball2" d="M921.647 503.392c-114.984 109.544-276.406 167.453-444.264 145.719 9.717-57.884 29.315-115.076 59.436-169.179 146.035-2.255 278.508-60.409 376.964-154.009-0.548-1.996 2.817 10.478 4.68 18.855 6.244 28.077 9.537 57.265 9.537 87.222 0 15.363-0.866 30.524-2.552 45.436-1.847 16.337-5.141 33.396-3.8 25.956v0zM907.173 559.731c-118.402 94.921-273.537 142.866-434.217 121.997-5.133 49.389-3.204 98.954 5.394 147.221-1.641-0.203 5.747 0.706 11.124 1.22 12.679 1.212 25.53 1.831 38.527 1.831 167.707 0 311.309-103.209 370.752-249.577 4.615-11.363 9.774-26.715 8.42-22.693v0zM902.784 291.915c-45.661 46.011-99.735 83.659-159.724 110.446-71.067-169.833-215.45-288.96-382.471-333.749-1.897 0.875 5.394-2.492 11.025-4.886 48.039-20.425 100.893-31.726 156.386-31.726 166.396 0 309.061 101.602 369.343 246.151 2.896 6.944 6.354 16.206 5.441 13.764v0zM316.848 92.208c172.136 34.078 323.749 150.804 395.75 322.624-54.977 20.518-114.292 32.136-176.193 33.102-76.767-128.347-197.183-215.073-331.25-252.14-1.541 2.102 5.408-7.354 10.706-13.956 22.803-28.416 49.405-53.651 79.037-74.935 8.404-6.037 23.27-15.517 21.95-14.695v0zM186.327 223.9c64.531 16.456 125.941 45.037 180.527 84.753-93.136 122.027-130.275 270.603-114.24 413.455 1.123 1.066-13.75-13.446-21.745-22.311-63.942-70.901-102.868-164.803-102.868-267.797 0-69.058 17.5-134.029 48.308-190.72 4.442-8.173 11.372-19.598 10.018-17.38v0zM290.482 753.879c-26.022-145.169 6.96-299.888 102.367-425.035 44.962 37.242 84.431 82.602 116.052 135.448-63.175 113.43-82.733 239.666-63.934 359.079 1.010 0.213-5.644-1.209-9.942-2.232-45.316-10.787-87.643-29.285-125.517-54.029-9.076-5.93-21.519-15.074-19.025-13.23v0z" />
<glyph unicode="&#xea9a;" glyph-name="stop-watch" d="M247.343 607.284c48.95 44.891 110.085 76.707 177.873 89.914-25.155 20.538-41.216 51.794-41.216 86.801 0 61.856 50.144 112 112 112s112-50.144 112-112c0-35.007-16.061-66.263-41.216-86.801v0c67.788-13.208 128.924-45.023 177.873-89.914v0l39.343 39.343-22.627 22.627 22.627 22.627 67.882-67.882-22.627-22.627-22.627 22.627-39.343-39.343c60.060-65.49 96.716-152.793 96.716-248.657 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 95.864 36.656 183.167 96.716 248.657l-39.343 39.343-22.627-22.627-22.627 22.627 67.882 67.882 22.627-22.627-22.627-22.627 39.343-39.343zM516.695 379.322l99.796 99.796c6.121 6.121 16.456 6.326 22.705 0.077 6.066-6.066 6.214-16.414-0.077-22.705l-99.796-99.796c2.999-6.266 4.678-13.284 4.678-20.695 0-26.51-21.49-48-48-48-7.41 0-14.428 1.679-20.695 4.678l-35.796-35.796c-6.121-6.121-16.456-6.326-22.705-0.077-6.066 6.066-6.214 16.414 0.077 22.705l35.796 35.796c-2.999 6.266-4.678 13.284-4.678 20.695 0 26.51 21.49 48 48 48 7.41 0 14.428-1.679 20.695-4.678v0 0zM512 705.6c36.516 7.412 64 39.696 64 78.4 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-38.703 27.484-70.987 64-78.4v62.4h-32v32h96v-32h-32v-62.4zM256.52 320.072h79.857c8.668 0 15.695 7.422 15.695 16 0 8.837-6.882 16-15.695 16h-79.847c7.919 119.766 103.694 215.519 223.47 223.403v-79.78c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v79.78c119.776-7.884 215.551-103.636 223.47-223.403h-79.847c-8.668 0-15.695-7.422-15.695-16 0-8.837 6.882-16 15.695-16h79.857c-7.852-119.834-103.656-215.661-223.48-223.547v79.924c0 8.668-7.422 15.695-16 15.695-8.837 0-16-6.882-16-15.695v-79.924c-119.824 7.887-215.628 103.714-223.48 223.547zM496 0c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM496 64c150.221 0 272 121.779 272 272s-121.779 272-272 272c-150.221 0-272-121.779-272-272s121.779-272 272-272v0zM496 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9b;" glyph-name="stop-watch2" d="M516.695 379.322l99.796 99.796c6.121 6.121 16.456 6.326 22.705 0.077 6.066-6.066 6.214-16.414-0.077-22.705l-99.796-99.796c2.999-6.266 4.678-13.284 4.678-20.695 0-26.51-21.49-48-48-48-7.41 0-14.428 1.679-20.695 4.678l-35.796-35.796c-6.121-6.121-16.456-6.326-22.705-0.077-6.066 6.066-6.214 16.414 0.077 22.705l35.796 35.796c-2.999 6.266-4.678 13.284-4.678 20.695 0 26.51 21.49 48 48 48 7.41 0 14.428-1.679 20.695-4.678v0 0zM767.284 584.657c60.060-65.49 96.716-152.793 96.716-248.657 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 95.864 36.656 183.167 96.716 248.657l-39.343 39.343-22.627-22.627-22.627 22.627 67.882 67.882 22.627-22.627-22.627-22.627 39.343-39.343c48.95 44.891 110.085 76.707 177.873 89.914v0c-25.155 20.538-41.216 51.794-41.216 86.801 0 61.856 50.144 112 112 112s112-50.144 112-112c0-35.007-16.061-66.263-41.216-86.801 67.788-13.208 128.924-45.023 177.873-89.914l39.343 39.343-22.627 22.627 22.627 22.627 67.882-67.882-22.627-22.627-22.627 22.627-39.343-39.343zM512 705.6c36.516 7.412 64 39.696 64 78.4 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-38.703 27.484-70.987 64-78.4v62.4h-32v32h96v-32h-32v-62.4zM256.52 320.072c7.852-119.834 103.656-215.661 223.48-223.547v0 79.924c0 8.813 7.163 15.695 16 15.695 8.578 0 16-7.027 16-15.695v-79.924c119.824 7.887 215.628 103.714 223.48 223.547h-79.857c-8.813 0-15.695 7.163-15.695 16 0 8.578 7.027 16 15.695 16h79.847c-7.919 119.766-103.694 215.519-223.47 223.403v0-79.78c0-8.813-7.163-15.695-16-15.695-8.578 0-16 7.027-16 15.695v79.78c-119.776-7.884-215.551-103.636-223.47-223.403h79.847c8.813 0 15.695-7.163 15.695-16 0-8.578-7.027-16-15.695-16h-79.857zM496 64c150.221 0 272 121.779 272 272s-121.779 272-272 272c-150.221 0-272-121.779-272-272s121.779-272 272-272v0zM496 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9c;" glyph-name="stop-watch3" d="M480 445.269v178.692c0 8.687 7.163 16.039 16 16.039 8.578 0 16-7.181 16-16.039v-178.692c18.643-6.589 32-24.369 32-45.269s-13.357-38.679-32-45.269v-50.692c0-8.687-7.163-16.039-16-16.039-8.578 0-16 7.181-16 16.039v50.692c-18.643 6.589-32 24.369-32 45.269s13.357 38.679 32 45.269v0 0zM744.657 671.284l39.343 39.343-22.627 22.627 22.627 22.627 67.882-67.882-22.627-22.627-22.627 22.627-39.343-39.343c60.060-65.49 96.716-152.793 96.716-248.657 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 197.88 156.182 359.282 352 367.658v64.342h-32v32h96v-32h-32v-64.342c89.56-3.831 170.829-39.673 232.657-96.374zM496 64c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM496 384c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9d;" glyph-name="stop-watch4" d="M480 445.269v178.692c0 8.687 7.163 16.039 16 16.039 8.578 0 16-7.181 16-16.039v-178.692c18.643-6.589 32-24.369 32-45.269s-13.357-38.679-32-45.269v-50.692c0-8.687-7.163-16.039-16-16.039-8.578 0-16 7.181-16 16.039v50.692c-18.643 6.589-32 24.369-32 45.269s13.357 38.679 32 45.269v0 0zM744.657 671.284c-61.828 56.701-143.097 92.543-232.657 96.374v0 64.342h32v32h-96v-32h32v-64.342c-195.818-8.377-352-169.779-352-367.658 0-203.241 164.759-368 368-368s368 164.759 368 368c0 95.864-36.656 183.167-96.716 248.657l39.343 39.343 22.627-22.627 22.627 22.627-67.882 67.882-22.627-22.627 22.627-22.627-39.343-39.343zM496 384c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9e;" glyph-name="hockey-stick" d="M368 288c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0zM526.188 156.656c-7.675-15.451-28.473-28.564-46.093-28.564h-192.19c-17.408 0-31.905 14.312-31.905 31.967v32.067c0 17.801 14.195 31.967 31.705 31.967h160.295l247.139 492.77c8.623 17.193 29.766 24.1 47.177 15.331l24.272-12.224c17.496-8.811 24.456-30.11 15.735-47.666l-256.135-515.647zM678.87 613.044l30.554-15.568 44.24 89.063c0.927 1.867 0.227 3.996-1.47 4.85l-24.272 12.224c-1.657 0.834-3.514 0.23-4.179-1.097l-44.873-89.473zM664.524 584.44l-196.774-392.347h-19.75c0 0-160 0.147-160 0.033 0 0 0.078-32.033-0.095-32.033h192.19c5.317 0 15.096 6.093 17.434 10.8l197.658 397.924-30.664 15.624z" />
<glyph unicode="&#xea9f;" glyph-name="hockey-stick2" d="M720.5 547.9l-194.3-391.2c-7.7-15.5-28.5-28.6-46.1-28.6h-192.2c-17.4 0-31.9 14.3-31.9 32v32.1c0 17.8 14.2 32 31.7 32h160.3l184.8 368.5 87.7-44.8zM734.7 576.5l47.6 95.8c8.7 17.6 1.8 38.9-15.7 47.7l-24.3 12.2c-17.4 8.8-38.6 1.9-47.2-15.3l-48-95.7 87.6-44.7zM368 288.1c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48v0z" />
<glyph unicode="&#xeaa0;" glyph-name="hockey-sticks" d="M583.889 399.777l88.111-175.685h160.295c17.51 0 31.705-14.165 31.705-31.967v-32.067c0-17.655-14.497-31.967-31.905-31.967h-192.19c-17.621 0-38.418 13.113-46.093 28.564l-65.526 131.915 17.924 35.848 76.261-153.528c2.338-4.706 12.117-10.8 17.434-10.8h192.19c-0.173 0-0.095 32.033-0.095 32.033 0 0.114-160-0.033-160-0.033h-19.75l-86.233 171.941 17.872 35.744zM495.754 575.509l-17.872-35.744-22.406 44.676-30.664-15.624 33.687-67.818-17.924-35.848-102.898 207.153c-8.721 17.556-1.76 38.855 15.735 47.666l24.272 12.224c17.411 8.769 38.554 1.862 47.177-15.331l70.893-141.354zM441.13 613.044l-44.873 89.473c-0.665 1.327-2.522 1.931-4.179 1.097l-24.272-12.224c-1.696-0.854-2.397-2.984-1.47-4.85l44.24-89.063 30.554 15.568zM430.188 156.656c-7.675-15.451-28.473-28.564-46.093-28.564h-192.19c-17.408 0-31.905 14.312-31.905 31.967v32.067c0 17.801 14.195 31.967 31.705 31.967h160.295l247.139 492.77c8.623 17.193 29.766 24.1 47.177 15.331l24.272-12.224c17.496-8.811 24.456-30.11 15.735-47.666l-256.135-515.647zM582.87 613.044l30.554-15.568 44.24 89.063c0.927 1.867 0.227 3.996-1.47 4.85l-24.272 12.224c-1.657 0.834-3.514 0.23-4.179-1.097l-44.873-89.473zM380.604 209.747l-8.854-17.654h-19.75c0 0-160 0.147-160 0.033 0 0 0.078-32.033-0.095-32.033h192.19c5.317 0 15.096 6.093 17.434 10.8l197.658 397.924-30.664 15.624-187.92-374.693z" />
<glyph unicode="&#xeaa1;" glyph-name="hockey-sticks2" d="M627.738 554.361l-197.55-397.705c-7.675-15.451-28.473-28.564-46.093-28.564h-192.19c-17.408 0-31.905 14.312-31.905 31.967v32.067c0 17.801 14.195 31.967 31.705 31.967h160.295l188.048 374.949 87.69-44.68zM641.975 583.022l44.349 89.282c8.721 17.556 1.76 38.855-15.735 47.666l-24.272 12.224c-17.411 8.769-38.554 1.862-47.177-15.331l-44.745-89.217 87.58-44.624zM439.99 464.072l-44.622 89.833 87.692 44.681 12.112-24.151-55.182-110.363zM527.701 287.494l64.99-130.838c7.675-15.451 28.473-28.564 46.093-28.564h192.19c17.408 0 31.905 14.312 31.905 31.967v32.067c0 17.801-14.195 31.967-31.705 31.967h-160.295l-87.573 174.612-55.605-111.211zM381.131 582.566l-44.575 89.738c-8.721 17.556-1.76 38.855 15.735 47.666l24.272 12.224c17.411 8.769 38.554 1.862 47.177-15.331l44.973-89.672-87.582-44.625z" />
<glyph unicode="&#xeaa2;" glyph-name="shuttlecock" d="M385.371 90.719l60.857 517.281h99.544l60.68-515.783-110.452-84.238-110.629 82.74zM353.677 95.194l-95.773-84.473-63.037 63.936 125.133 533.344h94.007l-60.33-512.806zM638.567 93.119l-60.574 514.881h94.007l124.529-533.344-61.793-63.936-96.169 82.398zM704 608v80c0 114.875-93.125 208-208 208s-208-93.125-208-208v-80l-128-544 96-96 112 96 128-96 128 96 112-96 96 96-128 544zM320 640v48c0 97.202 78.798 176 176 176s176-78.798 176-176v-48h-352z" />
<glyph unicode="&#xeaa3;" glyph-name="shuttlecock2" d="M704 640v48c0 114.875-93.125 208-208 208s-208-93.125-208-208v-48h416zM545.772 608h-99.544l-62.326-529.767-2.683-24.147 114.781-86.086 114.781 86.086-2.672 24.045-62.338 529.869zM348.242 47.065l-92.242-79.065-96 96 128 544h126.007l-61.898-526.131-3.867-34.805zM642.175 608h62.615l127.21-544-95.408-96-91.673 79.065-3.832 34.702-61.528 526.233h62.615z" />
<glyph unicode="&#xeaa4;" glyph-name="golf" d="M384 688v-411.442c-131.677-21.93-224-73.025-224-132.558 0-79.529 164.759-144 368-144s368 64.471 368 144c0 79.529-164.759 144-368 144-39.053 0-76.685-2.38-112-6.791v0 244.505l416 178.286-448 192v-208zM416 249.627c35.031 4.127 72.729 6.373 112 6.373 185.568 0 336-50.144 336-112s-150.432-112-336-112c-185.568 0-336 50.144-336 112 0 44.678 78.483 83.246 192 101.222v-54.182c-36.516-4.447-64-23.818-64-47.040 0-26.51 35.817-48 80-48s80 21.49 80 48c0 23.222-27.484 42.592-64 47.040v58.587zM416 848l336-144-336-144v288zM656 128c26.51 0 48 14.327 48 32s-21.49 32-48 32c-26.51 0-48-14.327-48-32s21.49-32 48-32v0z" />
<glyph unicode="&#xeaa5;" glyph-name="golf2" d="M384 688v-560h32v397.714l416 178.286-448 192v-208zM448 284.588c25.756 2.234 52.526 3.412 80 3.412 203.241 0 368-64.471 368-144s-164.759-144-368-144c-203.241 0-368 64.471-368 144 0 54.583 77.608 102.072 192 126.494v-88.091c-19.431-8.757-32-22.7-32-38.404 0-26.51 35.817-48 80-48s80 21.49 80 48c0 15.704-12.569 29.646-32 38.404v102.184zM656 128c26.51 0 48 14.327 48 32s-21.49 32-48 32c-26.51 0-48-14.327-48-32s21.49-32 48-32v0z" />
<glyph unicode="&#xeaa6;" glyph-name="move" d="M575.196 255.204v0 0c36.516-7.412 64-39.696 64-78.4 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 38.703 27.484 70.987 64 78.4v106.973l-256 256v-105.373h-32v160h160v-32h-105.652l265.652-267.991v-117.609zM287.196 282.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM735.196 506.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM575.196 730.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM559.196 128.804c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeaa7;" glyph-name="move2" d="M575.196 255.204v117.609l-265.652 267.991h105.652v32h-160v-160h32v105.373l256-256v-106.973c-36.516-7.412-64-39.696-64-78.4 0-44.183 35.817-80 80-80s80 35.817 80 80c0 38.703-27.484 70.987-64 78.4v0zM287.196 282.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM735.196 506.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM575.196 730.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569z" />
<glyph unicode="&#xeaa8;" glyph-name="clipboard-move" d="M672 222.4v0 0c36.516-7.412 64-39.696 64-78.4 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 38.703 27.484 70.987 64 78.4v74.973l-256 256v-105.373h-32v160h160v-32h-105.652l265.652-267.991v-85.609zM416 249.373l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM672 505.373l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM448 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM416 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM736 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM528 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM656 96c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeaa9;" glyph-name="clipboard-move2" d="M448 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM736 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM672 190.4v85.609l-265.652 267.991h105.652v32h-160v-160h32v105.373l256-256v-74.973c-36.516-7.412-64-39.696-64-78.4 0-44.183 35.817-80 80-80s80 35.817 80 80c0 38.703-27.484 70.987-64 78.4v0 0zM416 217.373l56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569zM672 473.373l56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569zM656 64c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM528 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xeaaa;" glyph-name="award" d="M320 425.334v0 0c-58.92 52.735-96 129.37-96 214.666 0 159.058 128.942 288 288 288s288-128.942 288-288c0-85.296-37.080-161.931-96-214.666v-457.334l-192 192-192-192v457.334zM352 400.498v-355.697l160 160 160-160v355.697c-45.763-30.633-100.795-48.498-160-48.498s-114.237 17.865-160 48.498v0 0zM512 384c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512 448v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 480c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeaab;" glyph-name="award2" d="M320 383.977v-415.977l192 192 192-192v415.977c-53.482-40.172-119.961-63.977-192-63.977s-138.518 23.804-192 63.977v0 0zM512 352v0c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288zM512 448c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM512 480c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeaac;" glyph-name="award3" d="M320 425.334v0 0c-58.92 52.735-96 129.37-96 214.666 0 159.058 128.942 288 288 288s288-128.942 288-288c0-85.296-37.080-161.931-96-214.666v-457.334l-192 192-192-192v457.334zM352 400.498v-355.697l160 160 160-160v355.697c-45.763-30.633-100.795-48.498-160-48.498s-114.237 17.865-160 48.498v0 0zM512 384c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512 553.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeaad;" glyph-name="award4" d="M320 383.977v-415.977l192 192 192-192v415.977c-53.482-40.172-119.961-63.977-192-63.977s-138.518 23.804-192 63.977v0 0zM512 352c159.058 0 288 128.942 288 288s-128.942 288-288 288c-159.058 0-288-128.942-288-288s128.942-288 288-288v0zM512 553.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeaae;" glyph-name="award5" d="M512.231 320.001l-140.984-367.275-55.22 124.027-124.027-55.22 139.295 362.876c-64.959 52.806-106.462 133.352-106.462 223.591 0 159.058 128.942 288 288 288s288-128.942 288-288c0-90.239-41.503-170.785-106.462-223.591l139.295-362.876-124.027 55.22-55.22-124.027-140.984 367.275c-0.201 0-0.402-0.001-0.603-0.001s-0.402 0-0.603 0.001v0 0zM478.722 321.999v0 0c-43.999 5.192-84.96 20.303-120.587 43.034l-108.737-283.27 82.685 36.814 36.814-82.685 109.826 286.107zM667.533 365.033v0 0c-35.627-22.731-76.589-37.842-120.587-43.034l109.826-286.107 36.814 82.685 82.685-36.814-108.737 283.27zM512.834 352c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512.834 416v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512.834 448c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeaaf;" glyph-name="award6" d="M500.044 288.251l-128.796-335.525-55.22 124.027-124.027-55.22 127.293 331.609c50.579-38.469 112.955-62.225 180.751-64.89v0zM706.375 353.141l127.293-331.609-124.027 55.22-55.22-124.027-128.796 335.525c67.795 2.665 130.172 26.421 180.751 64.89v0 0zM512.834 320v0c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288zM512.834 416c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM512.834 448c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeab0;" glyph-name="award7" d="M512.231 320.001l-140.984-367.275-55.22 124.027-124.027-55.22 139.295 362.876c-64.959 52.806-106.462 133.352-106.462 223.591 0 159.058 128.942 288 288 288s288-128.942 288-288c0-90.239-41.503-170.785-106.462-223.591l139.295-362.876-124.027 55.22-55.22-124.027-140.984 367.275c-0.201 0-0.402-0.001-0.603-0.001s-0.402 0-0.603 0.001v0 0zM478.722 321.999v0 0c-43.999 5.192-84.96 20.303-120.587 43.034l-108.737-283.27 82.685 36.814 36.814-82.685 109.826 286.107zM667.533 365.033v0 0c-35.627-22.731-76.589-37.842-120.587-43.034l109.826-286.107 36.814 82.685 82.685-36.814-108.737 283.27zM512.834 352c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512.834 521.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab1;" glyph-name="award8" d="M500.044 288.251l-128.796-335.525-55.22 124.027-124.027-55.22 127.293 331.609c50.579-38.469 112.955-62.225 180.751-64.89v0zM706.375 353.141l127.293-331.609-124.027 55.22-55.22-124.027-128.796 335.525c67.795 2.665 130.172 26.421 180.751 64.89v0 0zM512.834 320c159.058 0 288 128.942 288 288s-128.942 288-288 288c-159.058 0-288-128.942-288-288s128.942-288 288-288v0zM512.834 521.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab2;" glyph-name="medal5" d="M488.066 556.621v0 0c7.534 0.591 15.15 0.892 22.837 0.892 7.592 0 15.116-0.294 22.561-0.871l150.038 371.357 29.621-11.968-146.989-363.809c43.266-8.403 83.074-26.492 117.076-51.919l148.592 367.778 29.719-12.007-152.524-377.509c55.371-52.486 89.906-126.736 89.906-209.053 0-159.058-128.942-288-288-288s-288 128.942-288 288c0 82.214 34.449 156.382 89.7 208.857l-152.603 377.705 29.67 11.987 148.663-367.955c33.976 25.468 73.766 43.602 117.021 52.054l-147.005 363.851 29.67 11.987 150.047-371.379zM510.903 13.514c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM510.903 77.514v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM510.903 109.514c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeab3;" glyph-name="medal6" d="M545.976 587.614l137.525 340.386 178.019-71.924-139.74-345.869c-48.049 42.131-108.822 70.105-175.804 77.407v0 0zM299.815 510.022l-139.815 346.053 178.019 71.924 137.537-340.416c-66.972-7.359-127.725-35.385-175.742-77.561v0 0zM510.903-18.486v0c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288zM510.903 77.514c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM510.903 109.514c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeab4;" glyph-name="medal7" d="M488.066 556.621v0 0c7.534 0.591 15.15 0.892 22.837 0.892 7.592 0 15.116-0.294 22.561-0.871l150.038 371.357 29.621-11.968-146.989-363.809c43.266-8.403 83.074-26.492 117.076-51.919l148.592 367.778 29.719-12.007-152.524-377.509c55.371-52.486 89.906-126.736 89.906-209.053 0-159.058-128.942-288-288-288s-288 128.942-288 288c0 82.214 34.449 156.382 89.7 208.857l-152.603 377.705 29.67 11.987 148.663-367.955c33.976 25.468 73.766 43.602 117.021 52.054l-147.005 363.851 29.67 11.987 150.047-371.379zM510.903 13.514c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0 0zM510.903 183.36l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab5;" glyph-name="medal8" d="M545.976 587.614l137.525 340.386 178.019-71.924-139.74-345.869c-48.049 42.131-108.822 70.105-175.804 77.407v0 0zM299.815 510.022l-139.815 346.053 178.019 71.924 137.537-340.416c-66.972-7.359-127.725-35.385-175.742-77.561v0 0zM510.903-18.486c159.058 0 288 128.942 288 288s-128.942 288-288 288c-159.058 0-288-128.942-288-288s128.942-288 288-288v0 0zM510.903 183.36l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab6;" glyph-name="boxing-glove" d="M415.471 542.456v0c1.293-0.46 2.677-0.947 4.147-1.459 11.754-4.093 24.609-8.191 38.123-12.012 23.103-6.533 45.659-11.558 66.666-14.481 13.233-1.842 25.571-2.803 36.831-2.803 29.268 0 59.639 6.001 89.198 16.031 10.395 3.527 19.927 7.303 28.367 11.066 4.983 2.222 8.432 3.912 10.121 4.805l14.963-28.286c-2.3-1.217-6.389-3.22-12.052-5.745-9.305-4.149-19.747-8.285-31.117-12.143-32.624-11.070-66.319-17.728-99.48-17.728-12.839 0-26.627 1.075-41.242 3.109-22.607 3.146-46.549 8.48-70.963 15.384-14.161 4.005-27.614 8.293-39.939 12.585-1.669 0.581-3.237 1.134-4.7 1.656-30.919 0.463-116.394-3.746-116.394-64.432 0-100.164 96-94.887 124.8-192h355.2v320.167c0 88.273-71.657 159.833-160.035 159.833h-31.93c-88.385 0-160.23-71.491-160.472-159.811l-0.092-33.734zM384 224c0 98.445-127.705 96-128 224-0.221 96 128 96 128 96v32.094c0 105.943 86.037 191.906 192.17 191.906h31.66c105.974 0 192.17-85.869 192.17-191.794v-416.206c0-35.593-28.693-64-64.088-64h-287.823c-35.495 0-64.088 28.654-64.088 64v64zM416 224v-64.033c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v64.033h-352zM448 192v-32h128v32h-128z" />
<glyph unicode="&#xeab7;" glyph-name="boxing-glove2" d="M256 448c0.259-112.354 98.684-124.204 122.742-192h421.258v320.206c0 105.925-86.195 191.794-192.17 191.794h-31.66c-106.132 0-192.17-85.964-192.17-191.906v-18.688c15.46-7.697 27.16-13.393 28.334-13.82 49.433-17.964 104.591-31.887 148.905-31.887 29.268 0 59.639 6.001 89.198 16.031 10.395 3.527 19.927 7.303 28.367 11.066 4.983 2.222 8.432 3.912 10.121 4.805l14.963-28.286c-2.3-1.217-6.389-3.22-12.052-5.745-9.305-4.149-19.747-8.285-31.117-12.143-32.624-11.070-66.319-17.728-99.48-17.728-49.064 0-107.115 14.654-159.834 33.812-3.025 1.099-13.361 6.133-32.161 15.495-7.276 3.625-14.391 7.187-21.481 10.75-38.037-7.619-91.905-29.503-91.762-91.756v0zM384 224h416v-64c0-35.593-28.693-64-64.088-64h-287.823c-35.495 0-64.088 28.654-64.088 64v64zM448 192v-32h128v32h-128z" />
<glyph unicode="&#xeab8;" glyph-name="whistle" d="M262.817 402.889v0 0c-10.767 8.225-24.221 13.111-38.817 13.111-35.346 0-64-28.654-64-64s28.654-64 64-64c14.595 0 28.050 4.886 38.817 13.111 22.302-81.341 96.763-141.111 185.183-141.111 106.039 0 192 85.961 192 192 0 13.801-1.456 27.262-4.223 40.238l260.223 55.762v96h-320v-64h-96v64h-32c-88.421 0-162.881-59.77-185.183-141.111zM608 512h256v-38.4l-269.152-57.971c8.461-19.501 13.152-41.017 13.152-63.629 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 77.326 54.854 141.84 127.772 156.753 10.41 2.129 21.188 3.247 32.228 3.247v-64h160v64zM224 384v0c17.796 0 32-14.327 32-32 0-17.796-14.327-32-32-32-17.796 0-32 14.327-32 32 0 17.796 14.327 32 32 32zM512 736v-128h32v128h-32zM675.83 703.328l-67.83-108.55 27.138-16.957 67.83 108.55-27.138 16.957zM379.138 703.328l67.83-108.55-27.138-16.957-67.83 108.55 27.138 16.957z" />
<glyph unicode="&#xeab9;" glyph-name="whistle2" d="M262.817 402.889c22.302 81.341 96.763 141.111 185.183 141.111h32v-64h96v64h320v-96l-260.223-55.762c2.767-12.976 4.223-26.437 4.223-40.238 0-106.039-85.961-192-192-192-88.421 0-162.881 59.77-185.183 141.111-10.767-8.225-24.221-13.111-38.817-13.111-35.346 0-64 28.654-64 64s28.654 64 64 64c14.595 0 28.050-4.886 38.817-13.111v0 0zM224 384c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM512 736v-128h32v128h-32zM675.83 703.328l-67.83-108.55 27.138-16.957 67.83 108.55-27.138 16.957zM379.138 703.328l67.83-108.55-27.138-16.957-67.83 108.55 27.138 16.957z" />
<glyph unicode="&#xeaba;" glyph-name="volleyball-water" d="M175.663 209.012l15.333 7.423c-39.875 62.21-62.997 136.187-62.997 215.565 0 220.914 179.086 400 400 400s400-179.086 400-400c0-93.013-31.747-178.61-84.996-246.549-2.672-1.15 4.107 1.733 10.123 4.54 18.325 8.55 36.299 18.743 53.899 30.427 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.203 40.343-0.203 40.343 13.836 10.221 28.847 20.282 44.944 29.888 10.573 6.31 21.227 12.223 31.956 17.718 0.958 0.491 2.764 1.415 2.764 1.415v0zM346.277 256.583v0c-5.272-0.261 4.289 0.328 14.371 0.427 62.896 0.618 126.816-15.226 190.53-51.065 0.704-0.396 2.006-1.086 3.705-1.97 67.232 54.652 122.173 126.042 157.715 210.857-54.977 20.518-114.292 32.136-176.193 33.102-48.484-81.061-114.379-145.52-190.128-191.351zM782.037 165.749c39.226 37.437 70.191 83.455 89.883 135.041 3.342 8.755 6.676 18.98 5.403 15.145-39.859 35.193-85.073 64.461-134.263 86.426-35.671-85.245-89.813-157.716-156.018-214.423-0.308 0.136-0.617 0.273-0.925 0.41 62.2-27.671 122.315-34.916 179.692-25.668 8.679 1.399 19.443 3.766 16.229 3.068v0zM525.624 32.007c0.791-0.005 1.583-0.007 2.376-0.007 0.796 0 1.592 0.002 2.387 0.007h-4.763zM249.184 672.187v0 0c2.237 2.594-9.591-11.249-17.059-21.329-45.321-61.169-72.125-136.883-72.125-218.859 0-59.182 13.97-115.1 38.793-164.638 7.553-15.074 21.495-37.305 19.516-34.229 52.826 17.058 103.055 42.424 148.545 75.521-82.326 107.864-120.9 236.472-117.67 363.534zM284.223 707.68c-12.112-131.273 23.281-266.886 108.627-378.836 44.962 37.242 84.431 82.602 116.052 135.448-57.245 102.783-78.677 216.081-68.21 325.289 2.427 0.59-10.191-2.522-18.75-5.094-42.471-12.761-81.71-32.988-116.194-59.156-11.83-8.977-25.685-21.331-21.526-17.65v0 0zM857.965 595.117v0 0c1.013-2.045-8.812 17.167-15.589 28.274-64.614 105.907-181.238 176.609-314.376 176.609-10.128 0-20.161-0.409-30.082-1.212-10.94-0.885-27.059-3.188-24.377-2.79-4.301-37.741-4.558-76.059-0.586-114.271 139.273 18.089 274.379-15.522 385.010-86.61zM880.167 539.116c-110.741 86.093-254.243 129.228-402.784 109.995 9.717-57.884 29.315-115.076 59.436-169.179 133.094-2.055 254.923-50.541 350.002-129.975-0.598-2.625 3.21 14.65 4.965 26.173 2.775 18.218 4.214 36.876 4.214 55.87 0 30.448-3.698 60.033-10.669 88.329-3.248 13.185-7.202 25.498-5.164 18.787v0 0zM191.334 120.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeabb;" glyph-name="volleyball-water2" d="M635.378 234.506c44.362 48.056 81.137 104.418 107.682 167.855 59.989-26.786 114.064-64.435 159.724-110.446 0.912 2.439-2.539-6.804-5.434-13.745-80.474-50.522-168.58-69.773-261.972-43.664v0 0zM600.999 246.1c46.333 47.511 84.574 104.241 111.599 168.733-54.977 20.518-114.292 32.136-176.193 33.102-30.399-50.823-67.641-95.121-109.866-132.392 41.406-7.341 83.066-22.212 124.639-45.597 16.75-9.422 33.361-17.346 49.821-23.846v0 0zM357.708 320.969c-86.412 119.631-120.593 263.059-105.094 401.139 1.123 1.066-13.75-13.446-21.745-22.311-63.942-70.901-102.868-164.803-102.868-267.797 0-58.934 12.745-114.89 35.629-165.264 62.568 33.579 127.742 53.041 194.078 54.234v0 0zM921.647 503.392c-114.984 109.544-276.406 167.453-444.264 145.719 9.717-57.884 29.315-115.076 59.436-169.179 146.035-2.255 278.508-60.409 376.964-154.009-0.548-1.996 2.817 10.478 4.68 18.855 6.244 28.077 9.537 57.265 9.537 87.222 0 15.363-0.866 30.524-2.552 45.436-1.847 16.337-5.141 33.396-3.8 25.956v0zM907.173 559.731c-118.402 94.921-273.537 142.866-434.217 121.997-5.133 49.389-3.204 98.954 5.394 147.221-1.641-0.203 5.747 0.706 11.124 1.22 12.679 1.212 25.53 1.831 38.527 1.831 167.707 0 311.309-103.209 370.752-249.577 4.615-11.363 9.774-26.715 8.42-22.693v0zM290.482 753.879c-26.022-145.169 6.96-299.888 102.367-425.035 44.962 37.242 84.431 82.602 116.052 135.448-63.175 113.43-82.733 239.666-63.934 359.079 1.010 0.213-5.644-1.209-9.942-2.232-45.316-10.787-87.643-29.285-125.517-54.029-9.076-5.93-21.519-15.074-19.025-13.23v0zM96 159.991c13.836 10.221 28.847 20.282 44.944 29.888 129.022 76.997 270.126 94.877 410.234 16.066 128.678-72.381 249.158-56.356 355.848 14.473 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.136-0.111-0.203-0.166v40.509zM191.334 120.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeabc;" glyph-name="checkered-flag" d="M768.562 402.667c0 0-57.8-29.279-147.495-14.722-6.211 1.008-15.166 3.096-13.068 2.667v127.851c-25.751 4.628-53.432 12.638-82.119 25.556-27.78 12.51-53.882 20.608-77.881 25.551v-127.303c3.321-0.592-4.299 0.157-11.638 1.198-83.25 11.807-148.362-9.276-148.362-9.276v128.637c0.004 0.001 71.281 23.257 160 7.44v127.303c-97.262 20.031-159.996-11.762-160-11.764v127.188c0 0 62.729 31.549 160 11.726v-126.453c25.643-4.571 52.743-12.407 80-25.012 28.518-13.187 55.348-21.604 80-26.643v127.362c92.73-16.643 160.562 10.22 160.562 10.22v-129.264c-0.36 1.217-0.562 1.888-0.562 1.888-0.004-0.002-67.573-26.964-160-10.354v-127.851c22.708-4.642 43.568-6.418 62.197-6.418 60.769 0 97.8 18.902 97.803 18.904l0.562-128.431zM256 32.194h32v366.565c44.073 15.856 130.577 33.089 240-14.565 160.725-69.996 272 0 272 0v448c0 0-111.24-71.563-272 0s-272 0-272 0v-800z" />
<glyph unicode="&#xeabd;" glyph-name="checkered-flag2" d="M608 773.975v-127.362c96.781-19.784 159.996 12.483 160 12.485l0.562 0.46v-130.74h-0.562c-0.004-0.002-67.573-26.964-160-10.354v-128.125c-24.578 5.015-51.312 13.359-79.719 26.394-27.356 12.553-54.553 20.345-80.281 24.882v127.956c-97.262 20.031-159.996-11.762-160-11.764v133.020c0.004 0.001 71.281 23.257 160 7.44v126.453c24.079-4.907 50.275-12.962 78.16-25.423 28.581-12.772 56.165-20.715 81.84-25.323zM256 576.194v-544h32v366.565c44.073 15.856 130.577 33.089 240-14.565 160.725-69.996 272 0 272 0v448c0 0-111.24-71.563-272 0s-272 0-272 0v-256zM448 697.571v0 0c24-4.943 50.101-13.041 77.881-25.551 28.687-12.918 56.367-20.928 82.119-25.556v-127.851c-24.652 5.039-51.482 13.456-80 26.643-27.257 12.605-54.357 20.44-80 25.012v127.303z" />
<glyph unicode="&#xeabe;" glyph-name="target-arrow" d="M288 199.326l-32-32v-103.326h-32v71.326l-41.373-41.373-22.627 22.627 43.419 43.419h-75.419v32h107.419l32 32h-75.419v32h107.419l170.29 170.29-21.71 21.71 96 32-32-96-19.663 19.663-172.337-172.337v-103.326h-32v71.326zM248.926 288c-36.003 55.218-56.926 121.166-56.926 192 0 194.404 157.596 352 352 352s352-157.596 352-352c0-194.404-157.596-352-352-352-70.834 0-136.782 20.923-192 56.926v34.298l2.727 2.727c53.007-38.945 118.454-61.951 189.273-61.951 176.731 0 320 143.269 320 320s-143.269 320-320 320c-176.731 0-320-143.269-320-320 0-71.278 23.304-137.113 62.71-190.302l-1.698-1.698h-36.085zM448.106 475.459c-0.070 1.505-0.106 3.019-0.106 4.541 0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-1.522 0-3.036 0.035-4.541 0.106l9.031 31.608 0.476 0.476c33.026 2.534 59.034 30.135 59.034 63.81 0 35.346-28.654 64-64 64-33.793 0-61.469-26.191-63.836-59.382l-32.059-9.16zM355.676 358.665c-22.574 34.965-35.676 76.62-35.676 121.335 0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-44.252 0-85.507 12.832-120.246 34.978l23.275 23.275c28.459-16.686 61.598-26.252 96.972-26.252 106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192 0-35.84 9.82-69.386 26.916-98.095l-23.24-23.24z" />
<glyph unicode="&#xeabf;" glyph-name="target-arrow2" d="M288 199.326l-32-32v-103.326h-32v71.326l-41.373-41.373-22.627 22.627 43.419 43.419h-75.419v32h107.419l32 32h-75.419v32h107.419l170.29 170.29-21.71 21.71 96 32-32-96-19.663 19.663-172.337-172.337v-103.326h-32v71.326zM248.926 288c-36.003 55.218-56.926 121.166-56.926 192 0 194.404 157.596 352 352 352s352-157.596 352-352c0-194.404-157.596-352-352-352-70.834 0-136.782 20.923-192 56.926v34.298l71.754 71.754c34.74-22.146 75.995-34.978 120.246-34.978 123.712 0 224 100.288 224 224s-100.288 224-224 224c-123.712 0-224-100.288-224-224 0-44.715 13.102-86.37 35.676-121.335l-70.665-70.665h-36.085zM495.899 363.123l-48.871-48.871c28.459-16.686 61.598-26.252 96.972-26.252 106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192 0-35.84 9.82-69.386 26.916-98.095v0l48.832 48.832-30.447 30.207 50.805 14.516c-0.070 1.505-0.106 3.019-0.106 4.541 0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-1.522 0-3.036 0.035-4.541 0.106l-14.292-50.020-29.269 29.038zM548.618 416.164c33.19 2.367 59.382 30.043 59.382 63.836 0 35.346-28.654 64-64 64-33.793 0-61.469-26.191-63.836-59.382l95.836 27.382-27.382-95.836z" />
<glyph unicode="&#xeac0;" glyph-name="target3" d="M512 96v0c-194.404 0-352 157.596-352 352s157.596 352 352 352c194.404 0 352-157.596 352-352s-157.596-352-352-352zM512 128c176.731 0 320 143.269 320 320s-143.269 320-320 320c-176.731 0-320-143.269-320-320s143.269-320 320-320v0zM512 224v0c-123.712 0-224 100.288-224 224s100.288 224 224 224c123.712 0 224-100.288 224-224s-100.288-224-224-224zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM512 352v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeac1;" glyph-name="target4" d="M512 96v0c-194.404 0-352 157.596-352 352s157.596 352 352 352c194.404 0 352-157.596 352-352s-157.596-352-352-352zM512 224c123.712 0 224 100.288 224 224s-100.288 224-224 224c-123.712 0-224-100.288-224-224s100.288-224 224-224v0zM512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 352c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeac2;" glyph-name="sailing-boat" d="M229.439 224c13.127-37.286 48.584-64 90.565-64h415.992c41.785 0 77.335 26.761 90.526 64h-597.084zM544 256h320c0-70.549-57.299-128-127.98-128h-416.040c-70.685 0-127.98 57.308-127.98 128h320v480h32v-480zM864 288l-288 288v-288h288zM784 320h-176v176l176-176zM288 560v0c96 160 192 176 192 176s-32-112-32-256c0-144 32-192 32-192h-288c0 0 0 112 96 272zM300.697 518.111c-73.497-139.504-73.497-198.111-73.497-198.111h208c0 0-19.2 57.879-19.2 160s19.2 199.305 19.2 199.305c0 0-71.691-41.972-134.503-161.193v0z" />
<glyph unicode="&#xeac3;" glyph-name="sailing-boat2" d="M544 256h320c0-70.549-57.299-128-127.98-128h-416.040c-70.685 0-127.98 57.308-127.98 128h320v480h32v-480zM864 288h-288v288l288-288zM288 560c-96-160-96-272-96-272h288c0 0-32 48-32 192s32 256 32 256c0 0-96-16-192-176v0z" />
<glyph unicode="&#xeac4;" glyph-name="sailing-boat-water" d="M693.476 224h10.544c70.681 0 127.98 57.451 127.98 128h-320v480h-32v-480h-320c0-28.033 9.010-53.962 24.292-75.047 9.965 4.822 19.991 9.281 30.072 13.361-7.298 8.713-13.073 18.744-16.925 29.685v0h139.971c18.152 1.374 36.404 1.403 54.724 0h402.389c-13.191-37.239-48.741-64-90.526-64h-125.152c39.071-18.425 77.335-28.769 114.632-32v0 0zM832 384l-288 288v-288h288zM752 416h-176v176l176-176zM256 656v0c96 160 192 176 192 176s-32-112-32-256c0-144 32-192 32-192h-288c0 0 0 112 96 272zM268.697 614.111c-73.497-139.504-73.497-198.111-73.497-198.111h208c0 0-19.2 57.879-19.2 160s19.2 199.305 19.2 199.305c0 0-71.691-41.972-134.503-161.193v0zM96 191.991c13.836 10.221 28.847 20.282 44.944 29.888 129.022 76.997 270.126 94.877 410.234 16.066 128.678-72.381 249.158-56.356 355.848 14.473 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.136-0.111-0.203-0.166v40.509zM191.334 152.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeac5;" glyph-name="sailing-boat-water2" d="M693.476 224h10.544c70.681 0 127.98 57.451 127.98 128h-320v480h-32v-480h-320c0-28.033 9.010-53.962 24.292-75.047 117.145 56.689 242.744 63.211 367.553-6.994 48.473-27.266 95.784-41.987 141.632-45.959v0 0zM832 384h-288v288l288-288zM256 656c-96-160-96-272-96-272h288c0 0-32 48-32 192s32 256 32 256c0 0-96-16-192-176v0zM96 159.991c13.836 10.221 28.847 20.282 44.944 29.888 129.022 76.997 270.126 94.877 410.234 16.066 128.678-72.381 249.158-56.356 355.848 14.473 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.136-0.111-0.203-0.166v40.509zM191.334 120.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeac6;" glyph-name="bowling-pins" d="M672.798 512h62.008l1.194 64h-64l0.798-64zM658.419 480c-19.132-33.46-50.419-101.841-50.419-191.234 0-112.766 51.2-192.766 51.2-192.766h89.6c0 0 51.2 79.959 51.2 192.766 0 89.352-31.515 157.762-50.78 191.234h-90.802zM670.057 608h67.912c6.965 53.144 30.032 71.247 30.032 112 0 35.346-30.441 48.648-64 48.648s-64-13.056-64-48.648c0-40.801 23.121-58.481 30.057-112zM288.798 512h62.008l1.194 64h-64l0.798-64zM274.419 480c-19.132-33.46-50.419-101.841-50.419-191.234 0-112.766 51.2-192.766 51.2-192.766h89.6c0 0 51.2 79.959 51.2 192.766 0 89.352-31.515 157.762-50.78 191.234h-90.802zM286.057 608h67.912c6.965 53.144 30.032 71.247 30.032 112 0 35.346-30.441 48.648-64 48.648s-64-13.056-64-48.648c0-40.801 23.121-58.481 30.057-112zM448 288.766c0-128.686-64-224.766-64-224.766h-128c0 0-64 96-64 224.766s64 223.234 64 223.234v64c0 64-32 96-32 144 0 35.593 32 80 96 80s96-44.654 96-80c0-48-32-80-32-144v-64c0.009-0.013 64-94.558 64-223.234v0zM832 288.766c0-128.686-64-224.766-64-224.766h-128c0 0-64 96-64 224.766s64 223.234 64 223.234v64c0 64-32 96-32 144 0 35.593 32 80 96 80s96-44.654 96-80c0-48-32-80-32-144v-64c0.009-0.013 64-94.558 64-223.234v0z" />
<glyph unicode="&#xeac7;" glyph-name="bowling-pins2" d="M640 512v64h128v-64h-128zM622.036 480c-18.931-38.163-46.036-107.436-46.036-191.234 0-128.766 64-224.766 64-224.766h128c0 0 64 96.080 64 224.766 0 83.76-27.114 153.058-46.046 191.234h-163.918zM637.215 608c-7.786 44.155-29.215 72.72-29.215 112 0 35.593 32 80 96 80s96-44.654 96-80c0-39.28-21.429-67.845-29.215-112h-133.569zM256 512v64h128v-64h-128zM238.036 480c-18.931-38.163-46.036-107.436-46.036-191.234 0-128.766 64-224.766 64-224.766h128c0 0 64 96.080 64 224.766 0 83.76-27.114 153.058-46.046 191.234h-163.918zM253.215 608c-7.786 44.155-29.215 72.72-29.215 112 0 35.593 32 80 96 80s96-44.654 96-80c0-39.28-21.429-67.845-29.215-112h-133.569z" />
<glyph unicode="&#xeac8;" glyph-name="bowling-pin-ball" d="M449.24 137.042v0 0c-20.915 28.95-33.24 64.514-33.24 102.958 0 50.629 21.378 96.266 55.6 128.374-10.693 50.318-29.342 88.973-42.38 111.626h-90.802c-19.132-33.46-50.419-101.841-50.419-191.234 0-112.766 51.2-192.766 51.2-192.766h89.6c0 0 9.573 14.95 20.441 41.042zM472.623 110.673c-13.197-29.519-24.623-46.673-24.623-46.673h-128c0 0-64 96-64 224.766s64 223.234 64 223.234v64c0 64-32 96-32 144 0 35.593 32 80 96 80s96-44.654 96-80c0-48-32-80-32-144v-64c0.006-0.009 32.567-48.117 51.237-122.402 26.934 16.737 58.72 26.402 92.763 26.402 97.202 0 176-78.798 176-176s-78.798-176-176-176c-46.070 0-88.006 17.701-119.377 46.673v0 0zM352.798 512h62.008l1.194 64h-64l0.798-64zM350.057 608h67.912c6.965 53.144 30.032 71.247 30.032 112 0 35.346-30.441 48.648-64 48.648s-64-13.056-64-48.648c0-40.801 23.121-58.481 30.057-112zM592 96c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM592 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM560 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM624 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xeac9;" glyph-name="bowling-pin-ball2" d="M457.957 80.945c-5.976-10.968-9.957-16.945-9.957-16.945h-128c0 0-64 96-64 224.766 0 83.798 27.105 153.071 46.036 191.234v0h163.918c7.467-15.058 16.208-34.959 24.055-58.679-63.278-35.669-106.010-103.505-106.010-181.321 0-63.805 28.729-120.9 73.957-159.055v0 0zM320 512v64h128v-64h-128zM317.215 608c-7.786 44.155-29.215 72.72-29.215 112 0 35.593 32 80 96 80s96-44.654 96-80c0-39.28-21.429-67.845-29.215-112h-133.569zM592 64v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM592 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM560 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM624 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xeaca;" glyph-name="diving-goggles" d="M512 288v0c0-63.193 0 0 0 0 0-88.134 71.634-160 160-160 88.186 0 160 71.522 160 159.748v544.252h96v-544.125c0-141.255-114.615-255.875-256-255.875-141.097 0-256 114.615-256 256 0 0 0-123.712 0 0h-64v96h224v-96h-64zM864 287.794c0-105.925-86.177-191.794-192-191.794-106.039 0-192 85.964-192 191.906v32.094h64v32h-160v-32h64v-31.905c0-123.764 100.184-224.095 224-224.095 0 0-92.123 0 0 0 123.712 0 224 100.332 224 223.933v352.067h-32v-352.206zM864 672h32v128h-32v-128zM128 592v-15.965c0-88.385 71.491-160.035 159.811-160.035h32.096c17.725 0 40.149 11.507 50.588 26.421l56.832 81.189c20.254 28.934 53.138 28.781 73.21 0l56.622-81.189c10.176-14.592 32.464-26.421 50.579-26.421h32.155c88.424 0 160.106 71.657 160.106 160.035v15.965c0 97.202-79.063 176-175.682 176h-320.635c-97.027 0-175.682-78.996-175.682-176v0zM624.318 736c79.085 0 143.682-64.61 143.682-144v-15.965c0-70.705-57.354-128.035-128.106-128.035h-32.155c-7.5 0-20.052 6.589-24.332 12.726l-56.622 81.189c-32.825 47.067-92.698 47.153-125.673 0.046l-56.832-81.189c-4.367-6.239-16.943-12.772-24.373-12.772h-32.096c-70.614 0-127.811 57.291-127.811 128.035v15.965c0 79.418 64.415 144 143.682 144h320.635z" />
<glyph unicode="&#xeacb;" glyph-name="diving-goggles2" d="M512 288h64v96h-224v-96h64c0-123.712 0 0 0 0 0-141.385 114.903-256 256-256 141.385 0 256 114.62 256 255.875v544.125h-96v-544.252c0-88.227-71.814-159.748-160-159.748-88.366 0-160 71.866-160 160 0 0 0-63.193 0 0v0zM864 672v128h32v-128h-32zM128 592v-15.965c0-88.385 71.491-160.035 159.811-160.035h32.096c17.725 0 40.149 11.507 50.588 26.421l56.832 81.189c20.254 28.934 53.138 28.781 73.21 0l56.622-81.189c10.176-14.592 32.464-26.421 50.579-26.421h32.155c88.424 0 160.106 71.657 160.106 160.035v15.965c0 97.202-79.063 176-175.682 176h-320.635c-97.027 0-175.682-78.996-175.682-176v0zM624.318 736c79.085 0 143.682-64.61 143.682-144v-15.965c0-70.705-57.354-128.035-128.106-128.035h-32.155c-7.5 0-20.052 6.589-24.332 12.726l-56.622 81.189c-32.825 47.067-92.698 47.153-125.673 0.046l-56.832-81.189c-4.367-6.239-16.943-12.772-24.373-12.772h-32.096c-70.614 0-127.811 57.291-127.811 128.035v15.965c0 79.418 64.415 144 143.682 144h320.635zM624.318 704c61.411 0 111.682-50.065 111.682-111.518v-15.896c0-52.8-43.024-95.622-96.106-95.622h-32.155c2.991 0 0.228 1.444 1.915-0.965l-56.622 80.84c-45.541 65.018-132.402 65.143-178.136 0.091l-56.832-80.84c1.627 2.315-1.158 0.874 1.843 0.874h-32.096c-52.929 0-95.811 42.767-95.811 95.622v15.896c0 61.497 50.107 111.518 111.682 111.518h320.635z" />
<glyph unicode="&#xeacc;" glyph-name="sports-shoe" d="M396.8 555.349l16.016-24.617c-4.523-3.516-8.974-6.975-13.355-10.334l-17.437 26.802-26.823-17.451 18.357-28.216c-4.85-3.258-9.612-6.248-14.291-8.897l-18.843 28.963-26.823-17.451 15.212-23.383c-2.971-0.503-5.908-0.767-8.812-0.767-64 0-95.826 0-95.826 0-53.116 0-96.174-43.189-96.174-96.296 0-70.529 57.534-127.704 128.090-127.704h607.795c35.41 0 64.45 28.806 64.273 63.745 0 0 8.775 288.255-64.158 288.255s-64-63.086-160-63.086c-96 0-80 63.086-128 63.086-36.124 0-68.918-13.315-98.921-31.357l-15.668 24.082-26.823-17.451 15.769-24.238c-4.075-2.894-8.096-5.831-12.065-8.785l-14.67 22.549-26.823-17.451zM891.576 460.812c2.437-25.366 3.853-51.553 4.503-76.812h-192.079c-61.359 0-80 0-144.624-8.436-0.77 4.772-2.325 10.111-5.065 15.592-7.621 15.241-22.026 24.845-42.311 24.845h-176c-21.715 0-34.31 8.397-41.689 23.155-1.479 2.959-2.654 5.953-3.568 8.845 7.913 0 17.458 0 29.257 0 9.16 0 18.155 1.471 27.306 4.341l14.091-21.658 26.823 17.451-11.471 17.631c3.941 2.288 7.962 4.789 12.082 7.498 0.724 0.476 1.45 0.958 2.179 1.445l11.987-18.425 26.823 17.451-12.858 19.764c0.692 0.528 1.393 1.064 2.103 1.609 1.519 1.165 6.059 4.684 11.26 8.714l14.272-21.937 26.823 17.451-15.636 24.033c4.12 3.074 8.137 6.004 12.060 8.793l14.541-22.351 26.823 17.451-14.653 22.522c3.389 2.036 6.716 3.947 9.989 5.735l0.754-1.547c0 0 19.508-29.404 35.387-45.283 37.843-37.843 86.793-60.686 147.314-60.686 58.918 0 112.527 15.767 159.77 42.013 12.305 6.836 32.448 20.676 36.134 23.572 3.411-15.597 5.803-33.318 7.672-52.774zM896.51 353.144c0.020-8.656-0.044-17.101-0.181-25.253-0.059-3.524-0.118-5.959-0.155-7.173 0.072-18.244-14.522-32.718-32.288-32.718h-607.795c-28.439 0-54.035 12.374-71.646 32h231.556c45.098 0 76.524 10.443 137.704 21.007 70.296 12.138 113.997 12.138 150.296 12.138h192.51zM165.421 352c-3.51 9.927-5.421 20.598-5.421 31.704 0 35.473 28.771 64.296 64.174 64.296 1.127 0 1.127 0 6.768 0 11.552 0 18.21 0 26.745 0 2.932-10.96 6.541-20.233 8.003-23.155 12.621-25.241 36.026-40.845 70.311-40.845h176c7.715 0 11.31-2.397 13.689-7.155 1.69-3.379 2.311-7.107 2.311-8.845-42.272-11.078-74.434-16-112-16h-250.579zM576 576c4.101 0 5.034-0.573 11.019-7.64-0.421 0.497 8.038-9.754 11.050-13.146 24.883-28.032 55.641-42.3 105.931-42.3 48.712 0 77.005 12.124 109.163 38.983 1.455 1.216 3.636 3.056 6.952 5.85 17.096 14.331 25.458 18.254 43.885 18.254-0.582 0 4.369-5.791 10.582-23.586 3.539-10.139 2.637-6.965 2.637-6.965s-9.599-4.462-10.194-4.912c-10.182-7.687-21.811-15.338-34.795-22.551-42.757-23.754-91.148-37.987-144.23-37.987-51.479 0-92.529 19.157-124.686 51.314-10.215 10.215-25.95 32.045-25.95 32.045l-3.878 5.236c14.41 5.013 28.252 7.405 42.515 7.405z" />
<glyph unicode="&#xeacd;" glyph-name="sports-shoe2" d="M450.358 559.036c-4.075-2.894-8.096-5.831-12.065-8.785v0l33.127-50.918-26.823-17.451-31.781 48.85c-4.523-3.516-8.974-6.975-13.355-10.334l30.36-46.664-26.823-17.451-29.44 45.251c-4.85-3.258-9.612-6.248-14.291-8.897v0l28.954-44.504-26.823-17.451-32.584 50.084c-2.971-0.503-5.908-0.767-8.812-0.767-11.751 0-22.416 0-32 0v0-16c0-5.738 1.621-15.465 6.311-24.845 7.379-14.759 19.974-23.155 41.689-23.155h176c20.285 0 34.69-9.603 42.311-24.845 2.937-5.874 4.513-11.587 5.219-16.612 62.789 10.367 144.47 8.312 144.47 8.312h224.064c-1.102 45.188-4.769 106.114-15.646 153.192l-5.104-3.361c-2.926-2.926-8.264-7.716-15.899-13.744-12.525-9.888-27.109-19.742-43.644-28.928-47.243-26.246-100.852-42.013-159.77-42.013-92.838 0-153.354 50.438-186.851 113.82-1.371 2.594-4.005 9.766-8.773 23.442v0c-5.179-2.714-10.277-5.6-15.297-8.619l32.129-49.385-26.823-17.451-32.028 49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174-43.189-96.174-96.296 0-10.944 1.385-21.567 3.99-31.704v0h284.010c36.416 0 72.658 7.852 111.996 16.241-0.053 1.825-0.692 5.373-2.307 8.603-2.379 4.759-5.974 7.155-13.689 7.155h-176c-34.285 0-57.69 15.603-70.311 40.845-7.31 14.621-9.689 28.893-9.689 39.155v16zM145.091 320c22.168-38.252 63.651-64 110.999-64h607.795c35.41 0 64.45 28.806 64.273 63.745 0 0 0.38 12.484 0.325 32.255h-224.483c0 0-96 0-150.296-10.993-47.971-9.713-92.606-21.007-137.704-21.007h-270.909zM521.749 598.222c17.217 6.104 35.275 9.778 54.251 9.778 48 0 32-63.086 128-63.086s87.066 63.086 160 63.086c17.1 0 29.709-15.847 38.992-40.109l-15.867-10.578c-4.512-4.073-8.925-8.033-15.539-13.255-11.225-8.862-24.391-17.758-39.356-26.072-42.757-23.754-91.148-37.987-144.23-37.987-78.695 0-130.026 42.782-158.559 96.772-0.287 0.542-3.615 9.742-7.692 21.45v0z" />
<glyph unicode="&#xeace;" glyph-name="soccer-shoe" d="M412.816 530.732c-4.523-3.516-8.974-6.975-13.355-10.334l-17.437 26.802-26.823-17.451 18.357-28.216c-4.85-3.258-9.612-6.248-14.291-8.897l-18.843 28.963-26.823-17.451 15.212-23.383c-2.971-0.503-5.908-0.767-8.812-0.767-64 0-95.826 0-95.826 0-53.116 0-96.174-43.189-96.174-96.296 0-70.529 57.534-127.704 128.090-127.704h63.91v-32h32v32h64.088v-32h31.912v32h64v-32h32v32h64v-32h32v32h64.004l-0.004-32h32v32h64v-32h32v32h31.885c35.41 0 64.45 28.806 64.273 63.745 0 0 8.775 288.255-64.158 288.255s-64-63.086-160-63.086c-96 0-80 63.086-128 63.086-36.124 0-68.918-13.315-98.921-31.357l-15.668 24.082-26.823-17.451 15.769-24.238c-4.075-2.894-8.096-5.831-12.065-8.785l-14.67 22.549-26.823-17.451 16.016-24.617zM891.576 460.812c2.437-25.366 3.853-51.553 4.503-76.812h-192.079c-61.359 0-80 0-144.624-8.436-0.77 4.772-2.325 10.111-5.065 15.592-7.621 15.241-22.026 24.845-42.311 24.845h-176c-21.715 0-34.31 8.397-41.689 23.155-1.479 2.959-2.654 5.953-3.568 8.845 7.913 0 17.458 0 29.257 0 9.16 0 18.155 1.471 27.306 4.341l14.091-21.658 26.823 17.451-11.471 17.631c3.941 2.288 7.962 4.789 12.082 7.498 0.724 0.476 1.45 0.958 2.179 1.445l11.987-18.425 26.823 17.451-12.858 19.764c0.692 0.528 1.393 1.064 2.103 1.609 1.519 1.165 6.059 4.684 11.26 8.714l14.272-21.937 26.823 17.451-15.636 24.033c4.12 3.074 8.137 6.004 12.060 8.793l14.541-22.351 26.823 17.451-14.653 22.522c3.389 2.036 6.716 3.947 9.989 5.735l0.754-1.547c0 0 19.508-29.404 35.387-45.283 37.843-37.843 86.793-60.686 147.314-60.686 58.918 0 112.527 15.767 159.77 42.013 12.305 6.836 32.448 20.676 36.134 23.572 3.411-15.597 5.803-33.318 7.672-52.774zM896.51 353.144c0.020-8.656-0.044-17.101-0.181-25.253-0.059-3.524-0.118-5.959-0.155-7.173 0.072-18.244-14.522-32.718-32.288-32.718h-607.795c-28.439 0-54.035 12.374-71.646 32h231.556c45.098 0 76.524 10.443 137.704 21.007 70.296 12.138 113.997 12.138 150.296 12.138h192.51zM165.421 352c-3.51 9.927-5.421 20.598-5.421 31.704 0 35.473 28.771 64.296 64.174 64.296 1.127 0 1.127 0 6.768 0 11.552 0 18.21 0 26.745 0 2.932-10.96 6.541-20.233 8.003-23.155 12.621-25.241 36.026-40.845 70.311-40.845h176c7.715 0 11.31-2.397 13.689-7.155 1.69-3.379 2.311-7.107 2.311-8.845-42.272-11.078-74.434-16-112-16h-250.579zM576 576c4.101 0 5.034-0.573 11.019-7.64-0.421 0.497 8.038-9.754 11.050-13.146 24.883-28.032 55.641-42.3 105.931-42.3 48.712 0 77.005 12.124 109.163 38.983 1.455 1.216 3.636 3.056 6.952 5.85 17.096 14.331 25.458 18.254 43.885 18.254-0.582 0 4.369-5.791 10.582-23.586 3.539-10.139 2.637-6.965 2.637-6.965s-9.599-4.462-10.194-4.912c-10.182-7.687-21.811-15.338-34.795-22.551-42.757-23.754-91.148-37.987-144.23-37.987-51.479 0-92.529 19.157-124.686 51.314-10.215 10.215-25.95 32.045-25.95 32.045l-3.878 5.236c14.41 5.013 28.252 7.405 42.515 7.405v0z" />
<glyph unicode="&#xeacf;" glyph-name="soccer-shoe2" d="M450.358 559.036c-4.075-2.894-8.096-5.831-12.065-8.785v0l33.127-50.918-26.823-17.451-31.781 48.85c-4.523-3.516-8.974-6.975-13.355-10.334l30.36-46.664-26.823-17.451-29.44 45.251c-4.85-3.258-9.612-6.248-14.291-8.897v0l28.954-44.504-26.823-17.451-32.584 50.084c-2.971-0.503-5.908-0.767-8.812-0.767-11.751 0-22.416 0-32 0v0-16c0-5.738 1.621-15.465 6.311-24.845 7.379-14.759 19.974-23.155 41.689-23.155h176c20.285 0 34.69-9.603 42.311-24.845 2.937-5.874 4.513-11.587 5.219-16.612 62.789 10.367 144.47 8.312 144.47 8.312h224.064c-1.102 45.188-4.769 106.114-15.646 153.192l-5.104-3.361c-2.926-2.926-8.264-7.716-15.899-13.744-12.525-9.888-27.109-19.742-43.644-28.928-47.243-26.246-100.852-42.013-159.77-42.013-92.838 0-153.354 50.438-186.851 113.82-1.371 2.594-4.005 9.766-8.773 23.442v0c-5.179-2.714-10.277-5.6-15.297-8.619l32.129-49.385-26.823-17.451-32.028 49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174-43.189-96.174-96.296 0-10.944 1.385-21.567 3.99-31.704v0h284.010c36.416 0 72.658 7.852 111.996 16.241-0.053 1.825-0.692 5.373-2.307 8.603-2.379 4.759-5.974 7.155-13.689 7.155h-176c-34.285 0-57.69 15.603-70.311 40.845-7.31 14.621-9.689 28.893-9.689 39.155v16zM145.091 320c22.168-38.252 63.651-64 110.999-64h63.91v-32h32v32h64v-32h32v32h64v-32h32v32h64v-32h32v32h64v-32h32v32h64v-32h32v32h31.885c35.41 0 64.45 28.806 64.273 63.745 0 0 0.38 12.484 0.325 32.255h-224.483c0 0-96 0-150.296-10.993-47.971-9.713-92.606-21.007-137.704-21.007h-270.909zM521.749 598.222c17.217 6.104 35.275 9.778 54.251 9.778 48 0 32-63.086 128-63.086s87.066 63.086 160 63.086c17.1 0 29.709-15.847 38.992-40.109l-15.867-10.578c-4.512-4.073-8.925-8.033-15.539-13.255-11.225-8.862-24.391-17.758-39.356-26.072-42.757-23.754-91.148-37.987-144.23-37.987-78.695 0-130.026 42.782-158.559 96.772-0.287 0.542-3.615 9.742-7.692 21.45v0z" />
<glyph unicode="&#xead0;" glyph-name="ice-skate" d="M412.816 530.732c-4.523-3.516-8.974-6.975-13.355-10.334l-17.437 26.802-26.823-17.451 18.357-28.216c-4.85-3.258-9.612-6.248-14.291-8.897l-18.843 28.963-26.823-17.451 15.212-23.383c-2.971-0.503-5.908-0.767-8.812-0.767-64 0-95.826 0-95.826 0-53.116 0-96.174-43.189-96.174-96.296 0-70.529 57.534-127.704 128.090-127.704h63.91v-64h-160.295c-17.51 0-31.705 14.502-31.705 32h-32c0-35.346 28.37-64 64.189-64h767.969v32h-192.158v64h127.885c35.41 0 64.45 28.806 64.273 63.745 0 0 8.775 288.255-64.158 288.255s-64-63.086-160-63.086c-96 0-80 63.086-128 63.086-36.124 0-68.918-13.315-98.921-31.357l-15.668 24.082-26.823-17.451 15.769-24.238c-4.075-2.894-8.096-5.831-12.065-8.785l-14.67 22.549-26.823-17.451 16.016-24.617zM891.576 460.812c2.437-25.366 3.853-51.553 4.503-76.812h-192.079c-61.359 0-80 0-144.624-8.436-0.77 4.772-2.325 10.111-5.065 15.592-7.621 15.241-22.026 24.845-42.311 24.845h-176c-21.715 0-34.31 8.397-41.689 23.155-1.479 2.959-2.654 5.953-3.568 8.845h29.257c9.16 0 18.155 1.471 27.306 4.341l14.091-21.658 26.823 17.451-11.471 17.631c3.941 2.288 7.962 4.789 12.082 7.498 0.724 0.476 1.45 0.958 2.179 1.445l11.987-18.425 26.823 17.451-12.858 19.764c0.692 0.528 1.393 1.064 2.103 1.609 1.519 1.165 6.059 4.684 11.26 8.714l14.272-21.937 26.823 17.451-15.636 24.033c4.12 3.074 8.137 6.004 12.060 8.793l14.541-22.351 26.823 17.451-14.653 22.522c3.389 2.036 6.716 3.947 9.989 5.735l0.754-1.547c0 0 19.508-29.404 35.387-45.283 37.843-37.843 86.793-60.686 147.314-60.686 58.918 0 112.527 15.767 159.77 42.013 12.305 6.836 32.448 20.676 36.134 23.572 3.411-15.597 5.803-33.318 7.672-52.774v0 0zM896.51 353.144c0.020-8.656-0.044-17.101-0.181-25.253-0.059-3.524-0.118-5.959-0.155-7.173 0.072-18.244-14.522-32.718-32.288-32.718h-607.795c-28.439 0-54.035 12.374-71.646 32h231.556c45.098 0 76.524 10.443 137.704 21.007 70.296 12.138 113.997 12.138 150.296 12.138h192.51zM165.421 352c-3.51 9.927-5.421 20.598-5.421 31.704 0 35.473 28.771 64.296 64.174 64.296h6.768c11.552 0 18.21 0 26.745 0 2.932-10.96 6.541-20.233 8.003-23.155 12.621-25.241 36.026-40.845 70.311-40.845h176c7.715 0 11.31-2.397 13.689-7.155 1.69-3.379 2.311-7.107 2.311-8.845-42.272-11.078-74.434-16-112-16h-250.579zM576 576c4.101 0 5.034-0.573 11.019-7.64-0.421 0.497 8.038-9.754 11.050-13.146 24.883-28.032 55.641-42.3 105.931-42.3 48.712 0 77.005 12.124 109.163 38.983 1.455 1.216 3.636 3.056 6.952 5.85 17.096 14.331 25.458 18.254 43.885 18.254-0.582 0 4.369-5.791 10.582-23.586 3.539-10.139 2.637-6.965 2.637-6.965s-9.599-4.462-10.194-4.912c-10.182-7.687-21.811-15.338-34.795-22.551-42.757-23.754-91.148-37.987-144.23-37.987-51.479 0-92.529 19.157-124.686 51.314-10.215 10.215-25.95 32.045-25.95 32.045l-3.878 5.236c14.41 5.013 28.252 7.405 42.515 7.405v0 0zM352 256h352v-64h-352v64z" />
<glyph unicode="&#xead1;" glyph-name="ice-skate2" d="M320 256v-64h-160c-17.673 0-32 14.502-32 32h-32c0-35.2 28.801-64 65.342-64h766.658v32h-192v64h127.885c35.41 0 64.45 28.806 64.273 63.745 0 0 0.38 12.484 0.325 32.255h-224.483c0 0-96 0-150.296-10.993-47.971-9.713-92.606-21.007-137.704-21.007h-270.909c22.168-38.252 63.651-64 110.999-64h63.91zM352 256h352v-64h-352v64zM450.358 559.036c-4.075-2.894-8.096-5.831-12.065-8.785v0l33.127-50.918-26.823-17.451-31.781 48.85c-4.523-3.516-8.974-6.975-13.355-10.334l30.36-46.664-26.823-17.451-29.44 45.251c-4.85-3.258-9.612-6.248-14.291-8.897v0l28.954-44.504-26.823-17.451-32.584 50.084c-2.971-0.503-5.908-0.767-8.812-0.767h-32v-16c0-5.738 1.621-15.465 6.311-24.845 7.379-14.759 19.974-23.155 41.689-23.155h176c20.285 0 34.69-9.603 42.311-24.845 2.937-5.874 4.513-11.587 5.219-16.612 62.789 10.367 144.47 8.312 144.47 8.312h224.064c-1.102 45.188-4.769 106.114-15.646 153.192l-5.104-3.361c-2.926-2.926-8.264-7.716-15.899-13.744-12.525-9.888-27.109-19.742-43.644-28.928-47.243-26.246-100.852-42.013-159.77-42.013-92.838 0-153.354 50.438-186.851 113.82-1.371 2.594-4.005 9.766-8.773 23.442v0c-5.179-2.714-10.277-5.6-15.297-8.619l32.129-49.385-26.823-17.451-32.028 49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174-43.189-96.174-96.296 0-10.944 1.385-21.567 3.99-31.704v0h284.010c36.416 0 72.658 7.852 111.996 16.241-0.053 1.825-0.692 5.373-2.307 8.603-2.379 4.759-5.974 7.155-13.689 7.155h-176c-34.285 0-57.69 15.603-70.311 40.845-7.31 14.621-9.689 28.893-9.689 39.155v16zM521.749 598.222c17.217 6.104 35.275 9.778 54.251 9.778 48 0 32-63.086 128-63.086s87.066 63.086 160 63.086c17.1 0 29.709-15.847 38.992-40.109l-15.867-10.578c-4.512-4.073-8.925-8.033-15.539-13.255-11.225-8.862-24.391-17.758-39.356-26.072-42.757-23.754-91.148-37.987-144.23-37.987-78.695 0-130.026 42.782-158.559 96.772-0.287 0.542-3.615 9.742-7.692 21.45v0 0z" />
<glyph unicode="&#xead2;" glyph-name="cloud6" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0z" />
<glyph unicode="&#xead3;" glyph-name="cloud7" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0z" />
<glyph unicode="&#xead4;" glyph-name="cloud-sun" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xead5;" glyph-name="cloud-sun2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xead6;" glyph-name="cloud-moon" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.014v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159z" />
<glyph unicode="&#xead7;" glyph-name="cloud-moon2" d="M808.798 624v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0z" />
<glyph unicode="&#xead8;" glyph-name="cloud-rain" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xead9;" glyph-name="cloud-rain2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xeada;" glyph-name="cloud-sun-rain" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeadb;" glyph-name="cloud-sun-rain2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeadc;" glyph-name="cloud-moon-rain" d="M227.232 476.904v0 0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624.173c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.186v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xeadd;" glyph-name="cloud-moon-rain2" d="M808.798 624.173v0 0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xeade;" glyph-name="cloud-snow" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeadf;" glyph-name="cloud-snow2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae0;" glyph-name="cloud-sun-snow" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeae1;" glyph-name="cloud-sun-snow2" d="M798.509 632.988v0 0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae2;" glyph-name="cloud-moon-snow" d="M227.232 476.904v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624.173c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.186v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae3;" glyph-name="cloud-moon-snow2" d="M808.798 624.173v0 0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae4;" glyph-name="cloud-lightning" d="M546.134 288h81.065l-195.199-195.2 47.317 131.2h-82.516l73.598 192h124.801l-49.065-128zM608 224l96 96h-112l48 128h-192l-84-224h-107.91c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-191.91zM576 192h224.018c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735v0c-1.462 95.941-79.69 173.265-175.979 173.265-33.877 0-65.518-9.571-92.367-26.157-40.84 54.724-106.099 90.157-179.633 90.157-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h177.472l-81.455-224 224 224z" />
<glyph unicode="&#xeae5;" glyph-name="cloud-lightning2" d="M546.134 288h81.065l-195.199-195.2 47.317 131.2h-82.516l73.598 192h124.801l-49.065-128zM576 192h224.018c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735v0c-1.462 95.941-79.69 173.265-175.979 173.265-33.877 0-65.518-9.571-92.367-26.157-40.84 54.724-106.099 90.157-179.633 90.157-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h177.472l-81.455-224 224 224z" />
<glyph unicode="&#xeae6;" glyph-name="cloud-sun-lightning" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM608 224h191.91c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h107.91l84 224h192l-48-128h112l-96-96zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeae7;" glyph-name="cloud-sun-lightning2" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeae8;" glyph-name="cloud-moon-lightning" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM608 224h191.91c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h107.91l84 224h192l-48-128h112l-96-96zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0z" />
<glyph unicode="&#xeae9;" glyph-name="cloud-moon-lightning2" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0z" />
<glyph unicode="&#xeaea;" glyph-name="cloud-wind" d="M227.232 668.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 690.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM960 224c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h32c0 53.019 43.089 96 96 96 53.019 0 96-43.089 96-96 0-53.019-42.98-96-96.254-96h-735.746v-32h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 256c0 53.019-43.089 96-96 96-53.019 0-96-42.946-96-95.725v-0.275h32c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-32h384.018c53.009 0 95.982 43.089 95.982 96v0zM800 0c0-35.346-28.407-64-64-64v0c-35.346 0-64 28.631-64 63.816v0.184h32c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v32h448.19c35.241 0 63.81-28.407 63.81-64v0 0z" />
<glyph unicode="&#xeaeb;" glyph-name="cloud-wind2" d="M863.979 690.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM960 224c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h32c0 53.019 43.089 96 96 96 53.019 0 96-43.089 96-96 0-53.019-42.98-96-96.254-96h-735.746v-32h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 256c0 53.019-43.089 96-96 96-53.019 0-96-42.946-96-95.725v-0.275h32c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-32h384.018c53.009 0 95.982 43.089 95.982 96v0zM800 0c0-35.346-28.407-64-64-64v0c-35.346 0-64 28.631-64 63.816v0.184h32c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v32h448.19c35.241 0 63.81-28.407 63.81-64v0 0z" />
<glyph unicode="&#xeaec;" glyph-name="cloud-raindrops" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM224 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM256.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM448 4.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM480.305 6.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM672 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM704.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0z" />
<glyph unicode="&#xeaed;" glyph-name="cloud-raindrops2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0zM224 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM448 4.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM672 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0z" />
<glyph unicode="&#xeaee;" glyph-name="cloud-sun-raindrops" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM224 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM256.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM448 4.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM480.305 6.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM672 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM704.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaef;" glyph-name="cloud-sun-raindrops2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM224 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM448 4.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM672 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaf0;" glyph-name="cloud-moon-raindrops" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.014v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM224 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM256.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM448 4.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM480.305 6.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM672 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM704.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0z" />
<glyph unicode="&#xeaf1;" glyph-name="cloud-moon-raindrops2" d="M808.798 624v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0zM224 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM448 4.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM672 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0z" />
<glyph unicode="&#xeaf2;" glyph-name="cloud-snowflakes" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf3;" glyph-name="cloud-snowflakes2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf4;" glyph-name="cloud-sun-snowflakes" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaf5;" glyph-name="cloud-sun-snowflakes2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaf6;" glyph-name="cloud-moon-snowflakes" d="M227.232 476.904v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624.173c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.186v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf7;" glyph-name="cloud-moon-snowflakes2" d="M808.798 624.173v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf8;" glyph-name="clouds" d="M264.562 192h-24.356c-26.623 0-48.206-21.306-48.206-48 0-26.51 21.489-48 48.206-48h255.588c26.623 0 48.206 21.306 48.206 48 0 26.51-21.489 48-48.206 48h-15.794c0 35.346-28.654 64-64 64-13.173 0-25.417-3.98-35.594-10.803-8.747 24.929-32.489 42.803-60.406 42.803-35.346 0-64-28.654-64-64 0-11.657 3.117-22.586 8.562-32v0zM506.797 223.255c21.726-2.965 40.65-14.585 53.191-31.255h239.921c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0c-56.845-13.107-99.232-64.079-99.232-124.731 0-47.691 26.185-89.29 64.887-111.311v0c9.107 6.62 19.671 11.367 31.126 13.692-0.009 0.539-0.013 1.078-0.013 1.619 0 53.019 42.981 96 96 96 29.659 0 56.177-13.45 73.786-34.583 7.13 1.689 14.567 2.583 22.214 2.583 42.077 0 77.831-27.070 90.797-64.745v0 0zM170.899 184.427c-45.038 28.306-74.899 78.443-74.899 135.573 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 41.228 0 79.855-11.138 113.036-30.57 11.507 14.626 28.024 25.103 46.978 28.951v0c-0.009 0.539-0.013 1.078-0.013 1.619 0 53.019 42.981 96 96 96 29.659 0 56.177-13.45 73.786-34.583 7.13 1.689 14.567 2.583 22.214 2.583 42.077 0 77.831-27.070 90.797-64.745v0c39.151-5.343 69.203-38.791 69.203-79.255 0-44.491-35.911-80-80.209-80h-2.982c11.881-23.241 18.746-49.472 19.17-77.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-225.619c1.050-5.17 1.601-10.521 1.601-16 0-44.491-35.911-80-80.209-80h-255.582c-44.381 0-80.209 35.817-80.209 80 0 14.794 3.97 28.594 10.899 40.427v0 0zM823.771 576h24.023c26.623 0 48.206 21.306 48.206 48 0 26.51-21.489 48-48.206 48h-15.794c0 35.346-28.654 64-64 64-13.173 0-25.417-3.98-35.594-10.803-8.747 24.929-32.489 42.803-60.406 42.803-35.346 0-64-28.654-64-64 0-11.657 3.117-22.586 8.562-32v0h-24.356c-14.679 0-27.825-6.476-36.666-16.761v0c15.071-12.016 28.556-25.936 40.094-41.395 26.849 16.586 58.49 26.157 92.367 26.157 54.654 0 103.489-24.912 135.771-64v0 0z" />
<glyph unicode="&#xeaf9;" glyph-name="clouds2" d="M506.797 223.255c39.151-5.343 69.203-38.791 69.203-79.255 0-44.491-35.911-80-80.209-80h-255.582c-44.381 0-80.209 35.817-80.209 80 0 38.919 27.479 70.964 64.013 78.381v0c-0.009 0.539-0.013 1.078-0.013 1.619 0 53.019 42.981 96 96 96 29.659 0 56.177-13.45 73.786-34.583 7.13 1.689 14.567 2.583 22.214 2.583 42.077 0 77.831-27.070 90.797-64.745v0zM529.721 250.808c40.305-12.779 70.961-47.865 77.139-90.808v0h193.159c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735v0c-1.462 95.941-79.69 173.265-175.979 173.265-33.877 0-65.518-9.571-92.367-26.157-40.84 54.724-106.099 90.157-179.633 90.157-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-45.569 18.999-86.689 49.544-115.83 11.657 18.256 28.458 32.922 48.357 41.932v0c10.471 60.16 62.944 105.898 126.099 105.898 32.707 0 62.548-12.267 85.175-32.451 3.569 0.299 7.179 0.451 10.825 0.451 49.491 0 92.421-28.088 113.721-69.192v0 0zM877.596 549.666c29.54 11.728 50.404 40.422 50.404 74.334 0 40.465-30.052 73.913-69.203 79.255v0c-12.966 37.675-48.72 64.745-90.797 64.745-7.646 0-15.084-0.894-22.214-2.583-17.61 21.133-44.127 34.583-73.786 34.583-53.019 0-96-42.981-96-96 0-0.541 0.004-1.080 0.013-1.619v0c-7.41-1.504-14.447-4.022-20.958-7.404 17.842-11.565 34.153-25.29 48.563-40.805 25.789 11.46 54.342 17.828 84.382 17.828 84.336 0 156.949-50.192 189.596-122.334v0 0z" />
<glyph unicode="&#xeafa;" glyph-name="cloud-add" d="M512 384v79.89c0 8.657 7.163 16.11 16 16.11 8.578 0 16-7.212 16-16.11v-79.89h79.89c8.657 0 16.11-7.163 16.11-16 0-8.578-7.212-16-16.11-16h-79.89v-79.89c0-8.657-7.163-16.11-16-16.11-8.578 0-16 7.212-16 16.11v79.89h-79.89c-8.657 0-16.11 7.163-16.11 16 0 8.578 7.212 16 16.11 16h79.89zM227.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0z" />
<glyph unicode="&#xeafb;" glyph-name="cloud-add2" d="M512 384h-79.89c-8.897 0-16.11-7.422-16.11-16 0-8.837 7.453-16 16.11-16h79.89v-79.89c0-8.897 7.422-16.11 16-16.11 8.837 0 16 7.453 16 16.11v79.89h79.89c8.897 0 16.11 7.422 16.11 16 0 8.837-7.453 16-16.11 16h-79.89v79.89c0 8.897-7.422 16.11-16 16.11-8.837 0-16-7.453-16-16.11v-79.89zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0z" />
<glyph unicode="&#xeafc;" glyph-name="cloud-remove" d="M227.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM432.11 384c-8.897 0-16.11-7.422-16.11-16 0-8.837 7.453-16 16.11-16h191.781c8.897 0 16.11 7.422 16.11 16 0 8.837-7.453 16-16.11 16h-191.781z" />
<glyph unicode="&#xeafd;" glyph-name="cloud-remove2" d="M863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM432.11 384c-8.897 0-16.11-7.422-16.11-16 0-8.837 7.453-16 16.11-16h191.781c8.897 0 16.11 7.422 16.11 16 0 8.837-7.453 16-16.11 16h-191.781z" />
<glyph unicode="&#xeafe;" glyph-name="cloud-error3" d="M227.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM528 512c-8.837 0-16-7.292-16-15.712v-160.576c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v160.576c0 8.678-7.422 15.712-16 15.712v0zM528 256c-8.837 0-16 7.422-16 16 0 8.837 7.422 16 16 16 8.837 0 16-7.422 16-16 0-8.837-7.422-16-16-16v0z" />
<glyph unicode="&#xeaff;" glyph-name="cloud-error4" d="M528 256v0c8.578 0 16 7.163 16 16 0 8.578-7.163 16-16 16-8.578 0-16-7.163-16-16 0-8.578 7.163-16 16-16zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM528 512c-8.837 0-16-7.292-16-15.712v-160.576c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v160.576c0 8.678-7.422 15.712-16 15.712v0z" />
<glyph unicode="&#xeb00;" glyph-name="cloud-fog" d="M96.459 307.769c-0.304 4.037-0.459 8.116-0.459 12.231 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 4.246 0.118 8.465 0.351 12.653v0c-0.23 1.079-0.351 2.199-0.351 3.347 0 1.941 0.363 3.824 1.026 5.574 10.855 113.59 106.54 202.426 222.974 202.426 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0c56.585-24.664 96.021-81.082 96.021-146.735 0-4.115-0.156-8.194-0.462-12.232 0.301-1.208 0.462-2.47 0.462-3.768 0-2.491-0.594-4.885-1.65-7.028-11.18-77.326-77.809-136.972-158.332-136.972h-544.036c-80.735 0-147.251 59.559-158.353 137.053-1.036 2.101-1.629 4.458-1.629 6.947 0 1.29 0.159 2.553 0.459 3.769v0zM128 320h800c0 11.050-1.406 21.772-4.047 32h-791.905c-2.642-10.232-4.048-20.956-4.048-32zM132.047 288c2.932-11.353 7.386-22.096 13.13-32v0h765.65c5.743 9.908 10.195 20.652 13.125 32h-791.905zM272.889 608c-8.781-9.811-16.568-20.531-23.203-32v0h332.628c-6.635 11.469-14.422 22.189-23.203 32h-286.222zM309.831 640h212.339c-30.41 20.219-66.914 32-106.169 32s-75.76-11.781-106.169-32zM235.205 544.785c-3.775-10.533-6.655-21.492-8.55-32.785v0h597.151c-4.027 11.393-9.447 22.128-16.055 32h-567.489c-1.767 0-3.467 0.276-5.058 0.785v0 0zM597.483 576h181.035c-24.732 20.013-56.225 32-90.517 32s-65.786-11.987-90.517-32zM224 480c0-10.903 0.909-21.593 2.655-32h604.466c0.581 5.253 0.879 10.592 0.879 16s-0.298 10.747-0.879 16h-607.121zM172.013 416.52c-10.636-9.264-19.728-20.251-26.84-32.52v0h765.65c-7.119 12.275-16.219 23.261-26.858 32.522-1.285-0.34-2.633-0.522-4.022-0.522h-703.886c-1.393 0-2.749 0.181-4.044 0.52v0 0zM171.439 224c22.598-19.916 52.251-32 84.651-32h543.82c32.458 0 62.097 12.095 84.67 32h-713.141z" />
<glyph unicode="&#xeb01;" glyph-name="cloud-fog2" d="M956.789 288c2.105 10.343 3.211 21.045 3.211 32h-864c0-10.959 1.099-21.66 3.193-32h857.597zM946.655 256c-4.999-11.421-11.293-22.15-18.697-32v0l-799.957-0.094c-7.417 9.873-13.718 20.633-18.716 32.094h837.37zM572.767 640c8.275-8.109 15.923-16.854 22.866-26.157 26.849 16.586 58.49 26.157 92.367 26.157 37.677 0 72.589-11.839 101.219-32v0h-557.068c8.022 11.501 17.096 22.214 27.082 32h313.535zM531.443 672c-33.713 20.314-73.213 32-115.443 32s-81.729-11.686-115.443-32h230.886zM823.771 576c8.116-9.827 15.186-20.551 21.038-32v0h-643.533c3.288 11.048 7.405 21.739 12.28 32h610.215zM857.375 512c2.917-10.313 4.917-21.011 5.908-32v0h-671.283c0 10.865 0.774 21.549 2.268 32h663.107zM896 448.077c12.151-9.118 22.956-19.927 32.070-32.077v0h-800.028c9.105 12.113 19.889 22.896 32.005 32l735.952 0.077zM946.716 384c4.431-10.16 7.838-20.87 10.092-32v0h-857.597c2.265 11.126 5.687 21.837 10.135 32h837.37zM895.952 192c-26.729-20.084-59.944-32-95.934-32h-544.036c-36.098 0-69.354 11.907-96.085 32h736.055z" />
<glyph unicode="&#xeb02;" glyph-name="-cloud-sun-fog" d="M959.538 211.768v0c0.301-1.208 0.462-2.47 0.462-3.768 0-2.491-0.594-4.885-1.65-7.028-11.18-77.326-77.809-136.972-158.332-136.972h-544.036c-80.735 0-147.251 59.559-158.353 137.053-1.036 2.101-1.629 4.458-1.629 6.947 0 1.29 0.159 2.553 0.459 3.769-0.304 4.037-0.459 8.116-0.459 12.231 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 4.246 0.118 8.465 0.351 12.653-0.23 1.079-0.351 2.199-0.351 3.347 0 1.941 0.363 3.824 1.026 5.574v0c10.855 113.59 106.54 202.426 222.974 202.426 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-4.115-0.156-8.194-0.462-12.232zM128 224h800c0 11.050-1.406 21.772-4.047 32h-791.905c-2.642-10.232-4.048-20.956-4.048-32zM132.047 192c2.932-11.353 7.386-22.096 13.13-32v0h765.65c5.743 9.908 10.195 20.652 13.125 32h-791.905zM272.889 512c-8.781-9.811-16.568-20.531-23.203-32v0h332.628c-6.635 11.469-14.422 22.189-23.203 32h-286.222zM309.831 544h212.339c-30.41 20.219-66.914 32-106.169 32s-75.76-11.781-106.169-32zM235.205 448.785c-3.775-10.533-6.655-21.492-8.55-32.785v0h597.151c-4.027 11.393-9.447 22.128-16.055 32h-567.489c-1.767 0-3.467 0.276-5.058 0.785v0 0zM597.483 480h181.035c-24.732 20.013-56.225 32-90.517 32s-65.786-11.987-90.517-32zM224 384c0-10.903 0.909-21.593 2.655-32h604.466c0.581 5.253 0.879 10.592 0.879 16s-0.298 10.747-0.879 16h-607.121zM172.013 320.52c-10.636-9.264-19.728-20.251-26.84-32.52v0h765.65c-7.119 12.275-16.219 23.261-26.858 32.522-1.285-0.34-2.633-0.522-4.022-0.522h-703.886c-1.393 0-2.749 0.181-4.044 0.52v0 0zM171.439 128c22.598-19.916 52.251-32 84.651-32h543.82c32.458 0 62.097 12.095 84.67 32h-713.141zM767.966 524.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 832c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 742.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 527.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 742.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb03;" glyph-name="-cloud-sun-fog2" d="M99.211 256c2.265 11.126 5.687 21.837 10.135 32v0h837.37c4.431-10.16 7.838-20.87 10.092-32h-857.597zM96 224c0-10.959 1.099-21.66 3.193-32v0h857.597c2.105 10.343 3.211 21.045 3.211 32h-864zM259.233 544c-9.986-9.786-19.060-20.499-27.082-32v0h567.132c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-42.229 0-81.729-11.686-115.443-32h230.886c-11.308 6.814-23.267 12.657-35.762 17.414 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173v0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-6.943 9.303-14.591 18.048-22.866 26.157h-313.535zM213.556 480c-4.875-10.261-8.992-20.952-12.28-32v0h643.533c-5.853 11.449-12.922 22.173-21.038 32h-610.215zM194.268 416c-1.495-10.451-2.268-21.135-2.268-32v0h671.283c-0.99 10.989-2.991 21.687-5.908 32h-663.107zM160.048 352c-12.116-9.104-22.9-19.887-32.005-32v0h800.028c-9.114 12.15-19.92 22.959-32.070 32.077v-0.077h-735.952zM128 127.906c-7.417 9.873-13.718 20.633-18.716 32.094v0h837.37c-4.999-11.421-11.293-22.15-18.697-32l-799.957-0.094zM159.897 96c26.731-20.093 59.986-32 96.085-32h544.036c35.991 0 69.206 11.916 95.934 32h-736.055zM624 832c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 742.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 527.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 742.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb04;" glyph-name="cloud-moon-fog" d="M959.538 211.941v0c0.301-1.208 0.462-2.47 0.462-3.768 0-2.491-0.594-4.885-1.65-7.028-11.18-77.326-77.809-136.972-158.332-136.972h-544.036c-80.735 0-147.251 59.559-158.353 137.053-1.036 2.101-1.629 4.458-1.629 6.947 0 1.29 0.159 2.553 0.459 3.769-0.304 4.037-0.459 8.116-0.459 12.231 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 4.246 0.118 8.465 0.351 12.653-0.23 1.079-0.351 2.199-0.351 3.347 0 1.941 0.363 3.824 1.026 5.574v0c10.855 113.59 106.54 202.426 222.974 202.426 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-4.115-0.156-8.194-0.462-12.232zM128 224.173h800c0 11.050-1.406 21.772-4.047 32h-791.905c-2.642-10.232-4.048-20.956-4.048-32zM132.047 192.173c2.932-11.353 7.386-22.096 13.13-32v0h765.65c5.743 9.908 10.195 20.652 13.125 32h-791.905zM272.889 512.173c-8.781-9.811-16.568-20.531-23.203-32v0h332.628c-6.635 11.469-14.422 22.189-23.203 32h-286.222zM309.831 544.173h212.339c-30.41 20.219-66.914 32-106.169 32s-75.76-11.781-106.169-32zM235.205 448.958c-3.775-10.533-6.655-21.492-8.55-32.785v0h597.151c-4.027 11.393-9.447 22.128-16.055 32h-567.489c-1.767 0-3.467 0.276-5.058 0.785v0 0zM597.483 480.173h181.035c-24.732 20.013-56.225 32-90.517 32s-65.786-11.987-90.517-32zM224 384.173c0-10.903 0.909-21.593 2.655-32h604.466c0.581 5.253 0.879 10.592 0.879 16s-0.298 10.747-0.879 16h-607.121zM172.013 320.693c-10.636-9.264-19.728-20.251-26.84-32.52v0h765.65c-7.119 12.275-16.219 23.261-26.858 32.522-1.285-0.34-2.633-0.522-4.022-0.522h-703.886c-1.393 0-2.749 0.181-4.044 0.52v0 0zM171.439 128.173c22.598-19.916 52.251-32 84.651-32h543.82c32.458 0 62.097 12.095 84.67 32h-713.141zM783.265 516.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0z" />
<glyph unicode="&#xeb05;" glyph-name="cloud-moon-fog2" d="M99.211 256c2.265 11.126 5.687 21.837 10.135 32v0h837.37c4.431-10.16 7.838-20.87 10.092-32h-857.597zM96 224c0-10.959 1.099-21.66 3.193-32v0h857.597c2.105 10.343 3.211 21.045 3.211 32h-864zM259.233 544c-9.986-9.786-19.060-20.499-27.082-32v0h591.621c16.419 19.881 28.555 43.429 34.997 69.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-42.229 0-81.729-11.686-115.443-32h251.637c-5.306 15.013-8.194 31.169-8.194 48 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159v0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-6.943 9.303-14.591 18.048-22.866 26.157h-313.535zM213.556 480c-4.875-10.261-8.992-20.952-12.28-32v0h643.533c-5.853 11.449-12.922 22.173-21.038 32h-610.215zM194.268 416c-1.495-10.451-2.268-21.135-2.268-32v0h671.283c-0.99 10.989-2.991 21.687-5.908 32h-663.107zM160.048 352c-12.116-9.104-22.9-19.887-32.005-32v0h800.028c-9.114 12.15-19.92 22.959-32.070 32.077v-0.077h-735.952zM128 127.906c-7.417 9.873-13.718 20.633-18.716 32.094v0h837.37c-4.999-11.421-11.293-22.15-18.697-32l-799.957-0.094zM159.897 96c26.731-20.093 59.986-32 96.085-32h544.036c35.991 0 69.206 11.916 95.934 32h-736.055z" />
<glyph unicode="&#xeb06;" glyph-name="moon-stars" d="M582.857 583.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM710.857 376.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM474.768 245.405v0c2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-97.202 78.798-176 176-176 82.452 0 151.662 56.698 170.768 133.232zM160 288.173c0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-19.719-56.019-73.104-96.173-135.867-96.173-79.529 0-144 64.471-144 144v0zM859.755 562.286l52.245-18.286-52.245-18.286-27.755-77.714-27.755 77.714-52.245 18.286 52.245 18.286 27.755 77.714 27.755-77.714z" />
<glyph unicode="&#xeb07;" glyph-name="moon-stars2" d="M582.857 583.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM710.857 376.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM474.768 245.405c-19.106-76.535-88.316-133.232-170.768-133.232-97.202 0-176 78.798-176 176 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901v0zM859.755 562.286l52.245-18.286-52.245-18.286-27.755-77.714-27.755 77.714-52.245 18.286 52.245 18.286 27.755 77.714 27.755-77.714z" />
<glyph unicode="&#xeb08;" glyph-name="moon" d="M698.768 389.405v0c2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-97.202 78.798-176 176-176 82.452 0 151.662 56.698 170.768 133.232zM384 432.173c0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-19.719-56.019-73.104-96.173-135.867-96.173-79.529 0-144 64.471-144 144v0z" />
<glyph unicode="&#xeb09;" glyph-name="moon2" d="M698.768 389.405c-19.106-76.535-88.316-133.232-170.768-133.232-97.202 0-176 78.798-176 176 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901z" />
<glyph unicode="&#xeb0a;" glyph-name="sun2" d="M528.93 256v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM528.93 288c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM528.93 736c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 646.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 431.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM744.548 215.452c6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104v0zM528.93 126.141c8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852v0zM313.312 215.452c6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523v0zM224 431.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 646.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb0b;" glyph-name="sun3" d="M528.93 256c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM528.93 736c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 646.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 431.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM744.548 215.452c6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104v0zM528.93 126.141c8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852v0zM313.312 215.452c6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523v0zM224 431.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 646.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb0c;" glyph-name="sunrise" d="M241.192 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737zM703.283 320c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h32.161c-0.581 5.253-0.879 10.592-0.879 16 0 79.529 64.471 144 144 144s144-64.471 144-144c0-5.408-0.298-10.747-0.879-16h32.161zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0z" />
<glyph unicode="&#xeb0d;" glyph-name="sunrise2" d="M435.596 320h-81.949c-0.475 5.27-0.717 10.607-0.717 16 0 97.202 78.798 176 176 176s176-78.798 176-176c0-5.393-0.243-10.73-0.717-16v0h-81.949l-93.333 80-93.333-80zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM242.122 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0z" />
<glyph unicode="&#xeb0e;" glyph-name="sunset" d="M704.212 384c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h32.161c-0.581 5.253-0.879 10.592-0.879 16 0 79.529 64.471 144 144 144s144-64.471 144-144c0-5.408-0.298-10.747-0.879-16h32.161zM528.93 704c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM744.548 614.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM833.859 399.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM224 399.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM313.312 614.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0zM241.192 288c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb0f;" glyph-name="sunset2" d="M703.283 384c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h350.565zM528 704c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM743.618 614.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM832.93 399.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM223.070 399.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM312.382 614.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0zM241.192 288c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb10;" glyph-name="sunset3" d="M704.212 320c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h32.161c-0.581 5.253-0.879 10.592-0.879 16 0 79.529 64.471 144 144 144s144-64.471 144-144c0-5.408-0.298-10.747-0.879-16h32.161zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM241.192 256c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb11;" glyph-name="sunset4" d="M704.212 320c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h350.565zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM241.192 256c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb12;" glyph-name="sunset5" d="M697.375 352c-20.894 73.872-88.813 128-169.375 128s-148.481-54.128-169.375-128h33.569c19.768 55.929 73.108 96 135.806 96s116.038-40.071 135.806-96h33.569zM528 608c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM743.618 518.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM312.382 518.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM240.263 288c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb13;" glyph-name="sunset6" d="M697.375 352c-20.894 73.872-88.813 128-169.375 128s-148.481-54.128-169.375-128h338.75zM528 608c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM743.618 518.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM312.382 518.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM240.263 288c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb14;" glyph-name="rainbow" d="M512 608c276.277 0 501.444-218.823 511.64-492.607 0.236-1.094 0.36-2.229 0.36-3.393 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.701 257.69-220.258 464-480 464s-471.299-206.31-479.738-464c-0.262-8.837-7.425-16-16.262-16s-16 7.163-16 16c0 1.164 0.124 2.299 0.36 3.393 10.195 273.784 235.363 492.607 511.64 492.607v0zM512 544c240.831 0 437.277-190.030 447.576-428.324 0.278-1.18 0.424-2.411 0.424-3.676 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.71 222.336-191.607 400-416 400s-407.29-177.664-415.698-400c-0.302-8.837-7.465-16-16.302-16s-16 7.163-16 16c0 1.265 0.147 2.496 0.424 3.676 10.298 238.294 206.745 428.324 447.576 428.324v0zM512 480c205.356 0 373.063-161.199 383.486-363.962 0.335-1.29 0.514-2.643 0.514-4.038 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.722 186.978-162.958 336-352 336s-343.278-149.022-351.643-336c-0.357-8.837-7.521-16-16.357-16s-16 7.163-16 16c0 1.395 0.178 2.748 0.514 4.038 10.423 202.764 178.13 363.962 383.486 363.962v0zM16.085 64c-8.883 0-16.085-7.422-16.085-16 0-8.837 7.086-16 16.085-16h991.831c8.883 0 16.085 7.422 16.085 16 0 8.837-7.086 16-16.085 16h-991.831zM896 560c0 97.202-78.798 176-176 176-69.3 0-129.245-40.053-157.95-98.272 11.477-1.047 22.852-2.45 34.112-4.199 25.109 42.197 71.172 70.471 123.838 70.471 79.529 0 144-64.471 144-144 0-15.199-2.355-29.848-6.719-43.602 8.848-7.275 17.462-14.825 25.83-22.635 8.311 20.446 12.89 42.807 12.89 66.237v0zM704 848.148v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v0zM913.095 774.792l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104v0zM1009.077 575.070h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16v0zM504.278 752.165l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523v0z" />
<glyph unicode="&#xeb15;" glyph-name="rainbow2" d="M512 608c276.277 0 501.444-218.823 511.64-492.607 0.236-1.094 0.36-2.229 0.36-3.393 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.701 257.69-220.258 464-480 464s-471.299-206.31-479.738-464c-0.262-8.837-7.425-16-16.262-16s-16 7.163-16 16c0 1.164 0.124 2.299 0.36 3.393 10.195 273.784 235.363 492.607 511.64 492.607v0zM512 544c240.831 0 437.277-190.030 447.576-428.324 0.278-1.18 0.424-2.411 0.424-3.676 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.71 222.336-191.607 400-416 400s-407.29-177.664-415.698-400c-0.302-8.837-7.465-16-16.302-16s-16 7.163-16 16c0 1.265 0.147 2.496 0.424 3.676 10.298 238.294 206.745 428.324 447.576 428.324v0zM512 480c205.356 0 373.063-161.199 383.486-363.962 0.335-1.29 0.514-2.643 0.514-4.038 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.722 186.978-162.958 336-352 336s-343.278-149.022-351.643-336c-0.357-8.837-7.521-16-16.357-16s-16 7.163-16 16c0 1.395 0.178 2.748 0.514 4.038 10.423 202.764 178.13 363.962 383.486 363.962v0zM16.085 64c-8.883 0-16.085-7.422-16.085-16 0-8.837 7.086-16 16.085-16h991.831c8.883 0 16.085 7.422 16.085 16 0 8.837-7.086 16-16.085 16h-991.831zM896 560c0 97.202-78.798 176-176 176-69.3 0-129.245-40.053-157.95-98.272 123.628-11.277 235.3-63.918 321.060-143.965 8.311 20.446 12.89 42.807 12.89 66.237v0zM704 848.148v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v0zM913.095 774.792l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104v0zM1009.077 575.070h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16v0zM504.278 752.165l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523v0z" />
<glyph unicode="&#xeb16;" glyph-name="umbrella" d="M944 576c44.183 0 80-28.654 80-64 0 173.277-213.472 314.387-480 319.837v48.183c0 8.826-7.422 15.98-16 15.98-8.837 0-16-6.916-16-15.98v-48.183c-266.528-5.449-480-146.559-480-319.837 0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64s80-28.654 80-64v-448.295c0-17.274-14.327-31.705-32-31.705-17.796 0-32 14.195-32 31.705v48.145c0 8.919-7.422 16.15-16 16.15-8.837 0-16-6.849-16-16.15v-47.817c0-35.365 28.407-64.033 64-64.033 35.346 0 64 28.407 64 64v448c0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64v0zM512 579.186c-20.328 17.781-48.661 28.814-80 28.814-28.608 0-54.71-9.193-74.506-24.321v0c18.19 116.206 79.577 204.098 154.506 215.147v-219.64zM544 579.186v219.64c74.928-11.049 136.315-98.941 154.506-215.147-19.796 15.128-45.898 24.321-74.506 24.321-31.339 0-59.672-11.033-80-28.814zM327.164 595.567c-16.283 7.914-35.108 12.433-55.164 12.433-25.623 0-49.237-7.375-68.108-19.784v0c29.361 91.943 110.55 165.53 214.975 196.252-44.434-42.214-77.766-109.434-91.702-188.901v0 0zM728.836 595.567v0 0c-13.936 79.467-47.269 146.687-91.702 188.901 104.425-30.723 185.614-104.309 214.975-196.252-18.872 12.409-42.485 19.784-68.108 19.784-20.056 0-38.881-4.519-55.164-12.433zM171.927 593.117c-17.329 9.425-37.884 14.883-59.927 14.883-7.78 0-15.375-0.68-22.709-1.974 37.069 66.646 112.447 122.207 209.795 156.543-61.348-42.436-106.758-101.549-127.159-169.452v0 0zM756.914 762.569c97.348-34.336 172.725-89.898 209.795-156.543-7.333 1.294-14.928 1.974-22.709 1.974-22.043 0-42.598-5.458-59.927-14.883-20.401 67.904-65.811 127.017-127.159 169.452v0 0z" />
<glyph unicode="&#xeb17;" glyph-name="umbrella2" d="M864 512h160c0 35.346-35.817 64-80 64s-80-28.654-80-64v0zM864 512c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 35.346-35.817 64-80 64s-80-28.654-80-64v0-448c0-35.593-28.654-64-64-64-35.593 0-64 28.669-64 64.033v47.817c0 9.301 7.163 16.15 16 16.15 8.578 0 16-7.231 16-16.15v-48.145c0-17.51 14.204-31.705 32-31.705 17.673 0 32 14.431 32 31.705v448.295c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 173.277 213.472 314.387 480 319.837v48.183c0 9.064 7.163 15.98 16 15.98 8.578 0 16-7.155 16-15.98v-48.183c266.528-5.449 480-146.559 480-319.837h-160z" />
<glyph unicode="&#xeb18;" glyph-name="raindrops" d="M288 592v0c0-41.6 26.682-80 80.337-80s79.663 41.6 79.663 80c0 53.895-79.663 144-79.663 144s-80.337-90.105-80.337-144zM608 464v0c0-41.6 26.682-80 80.337-80s79.663 41.6 79.663 80c0 53.895-79.663 144-79.663 144s-80.337-90.105-80.337-144zM384 208v0c0-41.6 26.682-80 80.337-80s79.663 41.6 79.663 80c0 53.895-79.663 144-79.663 144s-80.337-90.105-80.337-144zM640 464c0 32 48.337 92.8 48.337 92.8s47.663-60.8 47.663-92.8c0-38.4-26.008-48-47.663-48s-48.337 9.6-48.337 48v0zM320 592c0 32 48.337 92.8 48.337 92.8s47.663-60.8 47.663-92.8c0-38.4-26.008-48-47.663-48s-48.337 9.6-48.337 48v0zM416 208c0 32 48.337 92.8 48.337 92.8s47.663-60.8 47.663-92.8c0-38.4-26.008-48-47.663-48s-48.337 9.6-48.337 48v0z" />
<glyph unicode="&#xeb19;" glyph-name="raindrops2" d="M288 592c0 53.895 80.337 144 80.337 144s79.663-90.105 79.663-144c0-38.4-26.008-80-79.663-80s-80.337 38.4-80.337 80v0zM608 464c0 53.895 80.337 144 80.337 144s79.663-90.105 79.663-144c0-38.4-26.008-80-79.663-80s-80.337 38.4-80.337 80v0zM384 208c0 53.895 80.337 144 80.337 144s79.663-90.105 79.663-144c0-38.4-26.008-80-79.663-80s-80.337 38.4-80.337 80v0z" />
<glyph unicode="&#xeb1a;" glyph-name="raindrop" d="M384 377.263v0c0-66.972 57.308-121.263 128-121.263s128 54.291 128 121.263c0 80.842-128 262.737-128 262.737s-128-181.895-128-262.737zM416 377.263c0 54.737 96 205.137 96 205.137s96-150.4 96-205.137c0-57.263-57.308-89.263-96-89.263s-96 32-96 89.263v0z" />
<glyph unicode="&#xeb1b;" glyph-name="raindrop2" d="M384 377.263c0 80.842 128 262.737 128 262.737s128-181.895 128-262.737c0-66.972-57.308-121.263-128-121.263s-128 54.291-128 121.263z" />
<glyph unicode="&#xeb1c;" glyph-name="sunglasses" d="M576.32 481.042h351.227c0.952-11.374 0.256-22.693-0.736-32h-346.91c-2.762 10.019-4.693 21.284-3.582 32zM595.487 513.042c3.782 2.44 8.223 4.572 13.414 6.323 57.274 19.318 116.244 24.555 148.434 25.427s123.67 0.401 148.532-17.509c5.391-3.883 9.545-8.753 12.717-14.241h-323.097zM431.663 417.042c-3.287-9.137-8.869-20.713-15.804-32v0h-304.892c-3.464 9.606-6.495 21.12-8.719 32h329.416zM442.94 449.042h-345.524c-0.995 9.314-1.681 20.646-0.664 32h349.644c1.234-10.691-0.68-21.971-3.456-32zM389.979 353.042c-1.607-1.379-3.226-2.649-4.85-3.794-21.107-14.875-67.477-26.736-125.758-26.736-33.844 0-61.317 1.592-88.362 7.677-19.335 4.35-31.728 8.355-43.032 22.853h262.002zM425.757 513.042h-319.538c3.079 5.014 7.033 9.47 12.071 13.068 24.758 17.68 115.855 18.145 147.91 17.284s90.779-6.031 147.813-25.102c4.448-1.487 8.343-3.253 11.743-5.251zM913.456 385.042h-306.806c-6.84 11.324-12.331 22.884-15.558 32h330.935c-2.188-10.845-5.165-22.332-8.571-32zM896.954 353.042c-11.574-15.566-24.146-19.711-44.027-24.223-27.159-6.164-54.747-7.777-88.733-7.777-58.525 0-105.091 12.015-126.286 27.083-2.041 1.451-4.074 3.101-6.086 4.917h265.132zM481.888 544.786c-139.756 38.513-336.804 36.714-438.171 19.633-12.241-2.063-14.162-58.331-3.276-60.299 20.035-8.102 28.583-28.322 28.583-28.322s5.982-17.941 23.356-90.905c17.373-72.964 58.791-81.713 58.791-81.713s50.693-12.544 109.171-12.544c58.478 0 93.459 2.659 130.91 21.391s53.819 70.904 53.819 70.904c0 0 18.869 44.955 31.86 87.374 4.074 13.302 66.066 13.302 70.14 0 12.991-42.418 31.86-87.374 31.86-87.374s16.369-52.171 53.819-70.904c37.451-18.733 72.432-21.391 130.91-21.391s109.171 12.544 109.171 12.544c0 0 41.418 8.749 58.791 81.713s23.356 90.905 23.356 90.905c0 0 8.548 20.219 28.583 28.322 10.886 1.969 8.965 58.237-3.276 60.299-101.367 17.081-298.416 18.88-438.171-19.633-9.484-2.172-50.741-2.172-60.225 0v0z" />
<glyph unicode="&#xeb1d;" glyph-name="sunglasses2" d="M480.591 544.786c-139.756 38.513-336.804 36.714-438.171 19.633-12.241-2.063-14.162-58.331-3.276-60.299 20.035-8.102 28.583-28.322 28.583-28.322s5.982-17.941 23.356-90.905c17.373-72.964 58.791-81.713 58.791-81.713s50.693-12.544 109.171-12.544c58.478 0 93.459 2.659 130.91 21.391s53.819 70.904 53.819 70.904c0 0 18.869 44.955 31.86 87.374 4.074 13.302 66.066 13.302 70.14 0 12.991-42.418 31.86-87.374 31.86-87.374s16.369-52.171 53.819-70.904c37.451-18.733 72.432-21.391 130.91-21.391s109.171 12.544 109.171 12.544c0 0 41.418 8.749 58.791 81.713s23.356 90.905 23.356 90.905c0 0 8.548 20.219 28.583 28.322 10.886 1.969 8.965 58.237-3.276 60.299-101.367 17.081-298.416 18.88-438.171-19.633-9.484-2.172-50.741-2.172-60.225 0z" />
<glyph unicode="&#xeb1e;" glyph-name="stars" d="M408.32 459.52l-40.32-107.52-40.32 107.52-71.68 20.48 71.68 20.48 40.32 107.52 40.32-107.52 71.68-20.48-71.68-20.48zM726.857 664.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM662.857 280.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM430.703 528.432l-62.703 175.568-62.703-175.568-145.297-48.432 145.297-48.432 62.703-175.568 62.703 175.568 145.297 48.432-145.297 48.432z" />
<glyph unicode="&#xeb1f;" glyph-name="stars2" d="M726.857 664.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM662.857 280.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM430.703 528.432l-62.703 175.568-62.703-175.568-145.297-48.432 145.297-48.432 62.703-175.568 62.703 175.568 145.297 48.432-145.297 48.432z" />
<glyph unicode="&#xeb20;" glyph-name="clouds3" d="M832.070 320v0 0c20.060-26.741 31.93-59.981 31.93-96 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 24.023 0 47.162-3.782 68.856-10.782 16.405 61.489 72.485 106.782 139.144 106.782 24.846 0 48.222-6.292 68.621-17.37 27.464 48.579 79.592 81.37 139.379 81.37 88.366 0 160-71.634 160-160 0-12.079-1.339-23.846-3.876-35.16 57.18-12.931 99.876-64.018 99.876-124.84 0-70.692-57.611-128-128.306-128h-31.624zM800.103 352h64.083c52.828 0 95.814 42.981 95.814 96 0 52.911-42.898 96-95.814 96h-17.31c10.891 18.827 17.124 40.686 17.124 64 0 70.692-57.308 128-128 128-61.326 0-112.578-43.127-125.084-100.707-20.488 22.549-50.049 36.707-82.916 36.707-53.234 0-97.793-37.139-109.181-86.92 31.989-15.75 59.673-38.909 80.814-67.237 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265 11.475-5.002 22.245-11.309 32.124-18.735v0 0zM32 224c0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273 0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269-56.845-13.107-99.232-64.079-99.232-124.731v0z" />
<glyph unicode="&#xeb21;" glyph-name="clouds4" d="M870.219 320.163c67.68 3.397 121.781 59.332 121.781 127.837 0 60.821-42.696 111.908-99.876 124.84 2.537 11.314 3.876 23.081 3.876 35.16 0 88.366-71.634 160-160 160-59.787 0-111.914-32.792-139.379-81.37-20.4 11.078-43.776 17.37-68.621 17.37-55.31 0-103.336-31.183-127.458-76.927 41.378-13.703 78.077-37.677 107.077-68.901 25.789 11.46 54.342 17.828 84.382 17.828 107.089 0 195.276-80.928 206.739-184.963 29.654-16.855 54.38-41.379 71.48-70.874v0 0zM864 224c0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265 56.585-24.664 96.021-81.082 96.021-146.735v0z" />
<glyph unicode="&#xeb22;" glyph-name="moonrise" d="M626.099 330.163c27.468 23.41 47.65 55.116 56.668 91.242 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-61.403 31.444-115.462 79.109-146.952l25.192 22.043c-43.208 24.855-72.301 71.485-72.301 124.909 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-9.064-25.748-25.239-48.145-46.169-64.831l24.401-21.351zM240.263 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" />
<glyph unicode="&#xeb23;" glyph-name="moonrise2" d="M618.843 338.135c23.004 22.425 39.892 51.095 47.925 83.271 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-64.736 34.95-121.308 87.011-151.878l120.989 103.705 90.843-77.865zM240.263 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" />
<glyph unicode="&#xeb24;" glyph-name="moonset" d="M682.768 485.405v0c2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-97.202 78.798-176 176-176 82.452 0 151.662 56.698 170.768 133.232zM368 528.173c0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-19.719-56.019-73.104-96.173-135.867-96.173-79.529 0-144 64.471-144 144v0zM240.263 256c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb25;" glyph-name="moonset2" d="M681.838 469.405c-19.106-76.535-88.316-133.232-170.768-133.232-97.202 0-176 78.798-176 176 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901v0zM240.263 256c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb26;" glyph-name="wind" d="M960 512c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h32c0 53.019 43.089 96 96 96 53.019 0 96-43.089 96-96 0-53.019-42.98-96-96.254-96h-735.746v-32h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 544c0 53.019-43.089 96-96 96-53.019 0-96-42.946-96-95.725v-0.275h32c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-32h384.018c53.009 0 95.982 43.089 95.982 96v0zM800 288c0-35.346-28.407-64-64-64v0c-35.346 0-64 28.631-64 63.816v0.184h32c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v32h448.19c35.241 0 63.81-28.407 63.81-64v0 0z" />
<glyph unicode="&#xeb27;" glyph-name="wind2" d="M960 512c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h64c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.472-64-64.115-64h-735.885v-64h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 640c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-127.907v-0.093h64c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-64h384.122c70.625 0 127.878 57.451 127.878 128v0zM832 224c0-53.019-43.089-96-96-96v0c-53.019 0-96 42.946-96 95.725v0.275h64c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v64h447.996c53.022 0 96.004-43.089 96.004-96v0 0z" />
<glyph unicode="&#xeb28;" glyph-name="full-moon" d="M512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb29;" glyph-name="full-moon2" d="M704 448c0-106.039-85.961-192-192-192s-192 85.961-192 192c0 106.039 85.961 192 192 192s192-85.961 192-192z" />
<glyph unicode="&#xeb2a;" glyph-name="crescent" d="M512 608h0.019c-0.006 0-0.013 0-0.019 0-53.019 0-96-71.634-96-160s42.981-160 96-160c-88.366 0-160 71.634-160 160s71.634 160 160 160zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb2b;" glyph-name="crescent2" d="M544 324.033c-10.228-2.632-20.95-4.033-32-4.033-70.692 0-128 57.308-128 128s57.308 128 128 128c11.050 0 21.772-1.4 32-4.033-55.207-14.209-96-64.325-96-123.967s40.793-109.758 96-123.967v0zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb2c;" glyph-name="half-moon" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 288v320c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeb2d;" glyph-name="half-moon2" d="M512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM384 448c0 70.692 57.308 128 128 128v-256c-70.692 0-128 57.308-128 128v0z" />
<glyph unicode="&#xeb2e;" glyph-name="gibbous-moon" d="M512 608v0c53.019 0 96-71.634 96-160s-42.981-160-96-160c-88.366 0-160 71.634-160 160s71.634 160 160 160zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb2f;" glyph-name="gibbous-moon2" d="M512 576v0c35.346 0 64-57.308 64-128s-28.654-128-64-128c-70.692 0-128 57.308-128 128s57.308 128 128 128zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb30;" glyph-name="moon3" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 288c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeb31;" glyph-name="moon4" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 320c70.692 0 128 57.308 128 128s-57.308 128-128 128c-70.692 0-128-57.308-128-128s57.308-128 128-128v0z" />
<glyph unicode="&#xeb32;" glyph-name="gibbous-moon3" d="M512 608v0c-53.019 0-96-71.634-96-160s42.981-160 96-160c88.366 0 160 71.634 160 160s-71.634 160-160 160zM512 256c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192v0z" />
<glyph unicode="&#xeb33;" glyph-name="gibbous-moon4" d="M512 576c70.692 0 128-57.308 128-128s-57.308-128-128-128c-35.346 0-64 57.308-64 128s28.654 128 64 128v0zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb34;" glyph-name="half-moon3" d="M512 256v0c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192zM512 288v320c88.366 0 160-71.634 160-160s-71.634-160-160-160v0z" />
<glyph unicode="&#xeb35;" glyph-name="half-moon4" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM640 448c0 70.692-57.308 128-128 128v-256c70.692 0 128 57.308 128 128v0z" />
<glyph unicode="&#xeb36;" glyph-name="crescent3" d="M512 608h-0.019c0.006 0 0.013 0 0.019 0 53.019 0 96-71.634 96-160s-42.981-160-96-160c88.366 0 160 71.634 160 160s-71.634 160-160 160zM512 256c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192v0z" />
<glyph unicode="&#xeb37;" glyph-name="crescent4" d="M480 571.967c10.228 2.632 20.95 4.033 32 4.033 70.692 0 128-57.308 128-128s-57.308-128-128-128c-11.050 0-21.772 1.4-32 4.033 55.207 14.209 96 64.325 96 123.967s-40.793 109.758-96 123.967v0zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb38;" glyph-name="barometer" d="M572.538 274.466c21.387-14.36 35.462-38.769 35.462-66.466 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 27.697 14.075 52.106 35.462 66.466l44.538 237.534 44.538-237.534zM936.847 196.107c15.009 43.875 23.153 90.933 23.153 139.893 0 238.587-193.413 432-432 432s-432-193.413-432-432c0-48.96 8.145-96.018 23.153-139.893l30.654 9.289c-14.132 40.93-21.807 84.871-21.807 130.604 0 220.914 179.086 400 400 400s400-179.086 400-400c0-45.733-7.675-89.674-21.807-130.604l30.654-9.289zM528 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0zM528 704c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0 0zM744.365 633.699c-7.149 5.194-16.989 3.837-22.17-3.293l-56.786-78.159c-5.095-7.013-3.221-17.060 3.719-22.102 7.149-5.194 16.989-3.837 22.17 3.293l56.786 78.159c5.095 7.013 3.221 17.060-3.719 22.102v0 0zM878.085 449.648c-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067 2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067v0 0zM878.085 222.149c2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367v0 0zM177.915 222.149c2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067v0 0zM177.915 449.648c-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367 2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367v0 0zM311.635 633.699c-7.149-5.194-8.899-14.972-3.719-22.102l56.786-78.159c5.095-7.013 15.23-8.335 22.17-3.293 7.149 5.194 8.899 14.972 3.719 22.102l-56.786 78.159c-5.095 7.013-15.23 8.335-22.17 3.293v0 0z" />
<glyph unicode="&#xeb39;" glyph-name="barometer2" d="M572.538 274.466l-44.538 237.534-44.538-237.534c-21.387-14.36-35.462-38.769-35.462-66.466 0-5.479 0.551-10.83 1.6-16h-329.019c-15.919 45.040-24.582 93.508-24.582 144 0 238.587 193.413 432 432 432s432-193.413 432-432c0-50.492-8.662-98.96-24.582-144h-329.019c1.049 5.17 1.6 10.521 1.6 16 0 27.697-14.075 52.106-35.462 66.466zM528 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0zM528 736c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0 0zM744.365 665.699c-7.149 5.194-16.989 3.837-22.17-3.293l-56.786-78.159c-5.095-7.013-3.221-17.060 3.719-22.102 7.149-5.194 16.989-3.837 22.17 3.293l56.786 78.159c5.095 7.013 3.221 17.060-3.719 22.102v0 0zM878.085 481.648c-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067 2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067v0 0zM878.085 254.149c2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367v0 0zM177.915 254.149c2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067v0 0zM177.915 481.648c-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367 2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367v0 0zM311.635 665.699c-7.149-5.194-8.899-14.972-3.719-22.102l56.786-78.159c5.095-7.013 15.23-8.335 22.17-3.293 7.149 5.194 8.899 14.972 3.719 22.102l-56.786 78.159c-5.095 7.013-15.23 8.335-22.17 3.293v0 0z" />
<glyph unicode="&#xeb3a;" glyph-name="compass-north" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 736c0 0 96-224 96-288 0-21.378 0 0 0 0 0-53.019-43.089-96-96-96-53.019 0-96 42.78-96 96 0 0 0-38.72 0 0 0 64 96 288 96 288v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb3b;" glyph-name="compass-north2" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM512 736c0 0 96-224 96-288 0-21.378 0 0 0 0 0-53.019-43.089-96-96-96-53.019 0-96 42.78-96 96 0 0 0-38.72 0 0 0 64 96 288 96 288v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb3c;" glyph-name="compass-west" d="M96 448v0c0-229.75 186.25-416 416-416s416 186.25 416 416c0 229.75-186.25 416-416 416s-416-186.25-416-416zM128 448c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384s-384 171.923-384 384v0zM608 448c0 53.019-42.78 96-96 96-64 0-288-96-288-96s224-96 288-96c53.019 0 96 43.089 96 96v0zM448 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v0z" />
<glyph unicode="&#xeb3d;" glyph-name="compass-west2" d="M512 864v0c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.75 0-416 186.25-416 416s186.25 416 416 416zM512 832c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384v0zM512 800c-194.404 0-352-157.596-352-352s157.596-352 352-352c194.404 0 352 157.596 352 352s-157.596 352-352 352v0zM512 544c53.019 0 96-43.089 96-96 0-53.019-42.78-96-96-96-64 0-288 96-288 96s224 96 288 96v0zM512 512c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64v0z" />
<glyph unicode="&#xeb3e;" glyph-name="compass-east" d="M928 448v0c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM896 448c0-212.077-171.923-384-384-384s-384 171.923-384 384c0 212.077 171.923 384 384 384s384-171.923 384-384v0zM416 448c0-53.019 42.78-96 96-96 64 0 288 96 288 96s-224 96-288 96c-53.019 0-96-43.089-96-96v0zM576 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64v0z" />
<glyph unicode="&#xeb3f;" glyph-name="compass-east2" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM512 352c-53.019 0-96 43.089-96 96 0 53.019 42.78 96 96 96 64 0 288-96 288-96s-224-96-288-96v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb40;" glyph-name="compass-south" d="M928 448v0c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM896 448c0-212.077-171.923-384-384-384s-384 171.923-384 384c0 212.077 171.923 384 384 384s384-171.923 384-384v0zM608 448c0 53.019-43.089 96-96 96-53.019 0-96-42.78-96-96 0-64 96-288 96-288s96 224 96 288v0zM576 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64v0z" />
<glyph unicode="&#xeb41;" glyph-name="compass-south2" d="M96 448v0c0 229.75 186.25 416 416 416s416-186.25 416-416c0-229.75-186.25-416-416-416s-416 186.25-416 416zM128 448c0-212.077 171.923-384 384-384s384 171.923 384 384c0 212.077-171.923 384-384 384s-384-171.923-384-384v0zM160 448c0-194.404 157.596-352 352-352s352 157.596 352 352c0 194.404-157.596 352-352 352s-352-157.596-352-352v0zM416 448c0 53.019 43.089 96 96 96 53.019 0 96-42.78 96-96 0-64-96-288-96-288s-96 224-96 288v0zM448 448c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64v0z" />
<glyph unicode="&#xeb42;" glyph-name="air-sock" d="M736 595.198l-64-6.858v167.506l64-6.846v-153.802zM768 598.627v146.95l64-6.846v-133.246l-64-6.858zM640 584.911l-96-10.287v194.914l96-10.269v-174.358zM512 571.196l-96-10.287v222.322l96-10.269v-201.766zM384 557.48l-96-10.287v249.73l96-10.269v-229.174zM208 832c-8.837 0-16-6.916-16-15.98v-768.039c0-8.826 7.422-15.98 16-15.98 8.837 0 16 6.916 16 15.98v768.039c0 8.826-7.422 15.98-16 15.98v0zM256 832v-320l608 64v192l-608 64z" />
<glyph unicode="&#xeb43;" glyph-name="air-sock2" d="M512 571.196v201.766l128-13.693v-174.358l-128-13.716zM416 560.909l-128-13.716v249.73l128-13.693v-222.322zM736 595.198v153.802l96-10.269v-133.246l-96-10.287zM208 832c-8.837 0-16-6.916-16-15.98v-768.039c0-8.826 7.422-15.98 16-15.98 8.837 0 16 6.916 16 15.98v768.039c0 8.826-7.422 15.98-16 15.98v0zM256 832v-320l608 64v192l-608 64z" />
<glyph unicode="&#xeb44;" glyph-name="tornado" d="M894.699 820.828v0 0c-16.184-65.992-181.343-117.86-382.699-117.86-162.44 0-301.323 33.757-357.435 81.453 45.361-55.478 146.108-123.126 90.643-199.719-180.973-161.906-113.955-296.739-59.4-344.758 116.984-102.969 198.27-112.528 274.176-143.047 76.582-30.791 92.836-76.379 92.836-76.379s35.189 68.276-149.5 149.402c-148.848 65.383-27.918 201.369 199.783 338.902 192.722 116.406 302.551 244.95 291.597 312.006zM112.575 860.903c33.332 54.73 179.076 99.097 399.979 99.097s363.784-52.706 399.979-99.097c49.997-64.083-28.165-215.528-266.652-363.355-203.336-126.038-353.246-248.622-233.321-297.29 285.611-115.907 133.326-264.258 133.326-264.258s0 99.097-99.995 132.129c-169.029 55.837-233.321 99.097-299.984 165.161-50.429 49.976-104.7 207.715 66.663 363.355 85.273 77.449-163.945 159.253-99.995 264.258v0zM864 830.968c0 53.019-157.596 96-352 96s-352-42.981-352-96c0-53.019 157.596-96 352-96s352 42.981 352 96v0z" />
<glyph unicode="&#xeb45;" glyph-name="tornado2" d="M112.575 860.903c33.332 54.73 179.076 99.097 399.979 99.097s363.784-52.706 399.979-99.097c49.997-64.083-28.165-215.528-266.652-363.355-203.336-126.038-353.246-248.622-233.321-297.29 285.611-115.907 133.326-264.258 133.326-264.258s0 99.097-99.995 132.129c-169.029 55.837-233.321 99.097-299.984 165.161-50.429 49.976-104.7 207.715 66.663 363.355 85.273 77.449-163.945 159.253-99.995 264.258v0zM864 830.968c0 53.019-157.596 96-352 96s-352-42.981-352-96c0-53.019 157.596-96 352-96s352 42.981 352 96v0z" />
<glyph unicode="&#xeb46;" glyph-name="degree-fahrenheit" d="M288 512v0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 544c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0zM640.070 768c-88.404 0-160.070-71.553-160.070-159.848v-464.332c0-8.737 7.422-15.82 16-15.82v0c8.837 0 16 7.285 16 16.309v303.691h207.89c8.897 0 16.11 7.422 16.11 16v0c0 8.837-7.453 16-16.11 16h-207.89v128c0 70.692 57.338 128 128.076 128h207.885c8.858 0 16.039 7.422 16.039 16v0c0 8.837-7.328 16-16.011 16h-207.919z" />
<glyph unicode="&#xeb47;" glyph-name="degree-fahrenheit2" d="M288 512v0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 576c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM640.070 768c-88.404 0-160.070-71.553-160.070-159.848v-448.414c0-17.528 14.204-31.738 32-31.738v0c17.673 0 32 14.282 32 31.921v256.079h160.295c17.51 0 31.705 14.204 31.705 32v0c0 17.673-14.431 32-31.705 32h-160.295v127.704c0 53.183 43.157 96.296 96.011 96.296h192.137c17.592 0 31.853 14.204 31.853 32v0c0 17.673-14.584 32-32.079 32h-191.851z" />
<glyph unicode="&#xeb48;" glyph-name="degree-celsius" d="M832 592c0-8.837 7.422-16 16-16 8.837 0 16 7.422 16 16v16.152c0 88.282-71.328 159.848-160.070 159.848h-63.86c-88.404 0-160.070-71.553-160.070-159.848v-320.304c0-88.282 71.328-159.848 160.070-159.848h63.86c88.404 0 160.070 71.553 160.070 159.848v16.152c0 8.837-7.422 16-16 16-8.837 0-16-7.422-16-16v-16.167c0-70.498-57.447-127.833-128.312-127.833h-63.375c-71.103 0-128.312 57.233-128.312 127.833v320.334c0 70.498 57.447 127.833 128.312 127.833h63.375c71.103 0 128.312-57.233 128.312-127.833v-16.167zM288 512v0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 544c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0z" />
<glyph unicode="&#xeb49;" glyph-name="degree-celsius2" d="M832 320c-17.673 0-32-14.204-32-32-0.162-53.389-43.104-96-96.053-96h-63.893c-53.205 0-96.053 43.116-96.053 96.303v319.393c0 53.531 43.005 96.303 96.053 96.303h63.893c53.103 0 95.89-42.953 96.053-96 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 88.434-71.328 160-160.070 160h-63.86c-88.404 0-160.070-71.553-160.070-159.848v-320.304c0-88.282 71.328-159.848 160.070-159.848h63.86c88.404 0 160.070 71.553 160.070 159.848 0 17.825-14.204 32.152-32 32.152v0zM288 512v0 0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 576c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0 0z" />
<glyph unicode="&#xeb4a;" glyph-name="warning2" d="M461.575 763.251l-345.123-558.368c-37.289-60.329-10.11-108.884 60.438-108.884h670.194c70.532 0 97.607 48.749 60.438 108.884l-345.123 558.368c-27.776 44.938-72.983 45.045-100.825 0zM491.302 751.267c11.115 17.961 29.171 17.904 40.251 0l352.168-569.043c18.534-29.947 4.67-54.224-30.133-54.224h-684.296c-35.176 0-48.766 24.118-30.135 54.224l352.145 569.043zM512 576c-17.673 0-32-14.497-32-31.905v-192.19c0-17.621 14.204-31.905 32-31.905 17.673 0 32 14.497 32 31.905v192.19c0 17.621-14.204 31.905-32 31.905v0zM512 192c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb4b;" glyph-name="warning3" d="M907.5 204.9l-345.1 558.4c-27.8 44.9-73 45-100.8 0v0l-345.1-558.4c-37.3-60.3-10.2-108.9 60.4-108.9h670.2c70.5 0 97.6 48.7 60.4 108.9zM512 192c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM544 351.9c0-17.4-14.3-31.9-32-31.9-17.8 0-32 14.3-32 31.9v192.2c0 17.4 14.3 31.9 32 31.9v0c17.8 0 32-14.3 32-31.9v-192.2z" />
<glyph unicode="&#xeb4c;" glyph-name="compass4" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM466.745 402.745c24.994-24.994 65.516-24.994 90.51 0s24.994 65.516 0 90.51c-24.994 24.994-65.516 24.994-90.51 0s-24.994-65.516 0-90.51v0z" />
<glyph unicode="&#xeb4d;" glyph-name="compass5" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM466.745 402.745c24.994-24.994 65.516-24.994 90.51 0s24.994 65.516 0 90.51c-24.994 24.994-65.516 24.994-90.51 0s-24.994-65.516 0-90.51v0z" />
<glyph unicode="&#xeb4e;" glyph-name="compass6" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM494.059 398.059c18.745-18.745 49.137-18.745 67.882 0s18.745 49.137 0 67.882c-18.745 18.745-49.137 18.745-67.882 0s-18.745-49.137 0-67.882v0zM528 768c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0zM865.387 430.613c0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16 0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16v0zM528 93.227c8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695v0zM190.613 430.613c0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16 0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16v0z" />
<glyph unicode="&#xeb4f;" glyph-name="compass7" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 96c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM494.059 398.059c18.745-18.745 49.137-18.745 67.882 0s18.745 49.137 0 67.882c-18.745 18.745-49.137 18.745-67.882 0s-18.745-49.137 0-67.882v0zM528 736v0c8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695zM833.387 430.613v0c0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16 0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16zM528 125.227v0c-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695 8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695zM222.613 430.613v0c0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16 0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16z" />
<glyph unicode="&#xeb50;" glyph-name="compass8" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM528 768c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0zM865.387 430.613c0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16 0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16v0zM528 93.227c8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695v0zM190.613 430.613c0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16 0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16v0zM493.615 464c-33.941-33.941-110.874-178.757-110.874-178.757s144.816 76.933 178.757 110.874l-67.882 67.882z" />
<glyph unicode="&#xeb51;" glyph-name="compass9" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 96c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM528 736v0c8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695zM833.387 430.613v0c0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16 0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16zM528 125.227v0c-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695 8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695zM222.613 430.613v0c0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16 0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16zM493.615 464c-33.941-33.941-110.874-178.757-110.874-178.757s144.816 76.933 178.757 110.874l-67.882 67.882z" />
<glyph unicode="&#xeb52;" glyph-name="compass10" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM467.855 492.8c-45.255-45.255-115.4-205.909-115.4-205.909s160.655 70.145 205.909 115.4l-90.51 90.51z" />
<glyph unicode="&#xeb53;" glyph-name="compass11" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM467.855 492.8c-45.255-45.255-115.4-205.909-115.4-205.909s160.655 70.145 205.909 115.4l-90.51 90.51z" />
<glyph unicode="&#xeb54;" glyph-name="thermometer" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb55;" glyph-name="thermometer2" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb56;" glyph-name="thermometer-low" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284zM512 32c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0z" />
<glyph unicode="&#xeb57;" glyph-name="thermometer-low2" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0zM512 32c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0z" />
<glyph unicode="&#xeb58;" glyph-name="thermometer-quarter" d="M543.563 218.691c37.514-13.055 64.437-48.729 64.437-90.691 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.966 26.928 77.643 64.447 90.694-0.294 1.755-0.447 3.559-0.447 5.399v159.813c0 18.082 14.327 32.094 32 32.094 17.796 0 32-14.369 32-32.094v-159.813c0-1.847-0.149-3.652-0.437-5.403v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb59;" glyph-name="thermometer-quarter2" d="M543.563 218.691c37.514-13.055 64.437-48.729 64.437-90.691 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.966 26.928 77.643 64.447 90.694-0.294 1.755-0.447 3.559-0.447 5.399v159.813c0 18.082 14.327 32.094 32 32.094 17.796 0 32-14.369 32-32.094v-159.813c0-1.847-0.149-3.652-0.437-5.403v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb5a;" glyph-name="thermometer-half" d="M543.542 218.698c37.525-13.049 64.458-48.728 64.458-90.698 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.965 26.927 77.641 64.445 90.694-0.293 1.751-0.445 3.55-0.445 5.386v319.842c0 17.495 14.327 32.079 32 32.079 17.796 0 32-14.362 32-32.079v-319.842c0-1.83-0.157-3.628-0.458-5.381v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb5b;" glyph-name="thermometer-half2" d="M543.542 218.698c37.525-13.049 64.458-48.728 64.458-90.698 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.965 26.927 77.641 64.445 90.694-0.293 1.751-0.445 3.55-0.445 5.386v319.842c0 17.495 14.327 32.079 32 32.079 17.796 0 32-14.362 32-32.079v-319.842c0-1.83-0.157-3.628-0.458-5.381v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb5c;" glyph-name="thermometer-three-quarters" d="M543.553 218.694c37.519-13.052 64.447-48.728 64.447-90.694 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.961 26.922 77.635 64.435 90.69-0.286 1.727-0.435 3.5-0.435 5.309v480.003c0 17.448 14.327 31.999 32 31.999 17.796 0 32-14.326 32-31.999v-480.003c0-1.803-0.153-3.576-0.447-5.305v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb5d;" glyph-name="thermometer-three-quarters2" d="M543.553 218.694c37.519-13.052 64.447-48.728 64.447-90.694 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.961 26.922 77.635 64.435 90.69-0.286 1.727-0.435 3.5-0.435 5.309v480.003c0 17.448 14.327 31.999 32 31.999 17.796 0 32-14.326 32-31.999v-480.003c0-1.803-0.153-3.576-0.447-5.305v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb5e;" glyph-name="thermometer-full" d="M543.577 218.686c37.507-13.059 64.423-48.729 64.423-90.686 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.959 26.919 77.632 64.43 90.688-0.283 1.715-0.43 3.476-0.43 5.272v608.080c0 17.924 14.327 31.96 32 31.96 17.796 0 32-14.309 32-31.96v-608.080c0-1.801-0.145-3.562-0.423-5.274v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb5f;" glyph-name="thermometer-full2" d="M543.577 218.686c37.507-13.059 64.423-48.729 64.423-90.686 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.959 26.919 77.632 64.43 90.688-0.283 1.715-0.43 3.476-0.43 5.272v608.080c0 17.924 14.327 31.96 32 31.96 17.796 0 32-14.309 32-31.96v-608.080c0-1.801-0.145-3.562-0.423-5.274v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb60;" glyph-name="lightning" d="M546.134 512l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM433.455 416h-81.455l96 256h192l-48-128h112l-352-352 81.455 224z" />
<glyph unicode="&#xeb61;" glyph-name="lightning2" d="M433.455 416h-81.455l96 256h192l-48-128h112l-352-352 81.455 224z" />
<glyph unicode="&#xeb62;" glyph-name="wind-turbine" d="M588.325 475.235c129.582-57.932 199.43-84.769 199.43-84.769s-79.096 63.048-173.25 130.291c-4.375-17.593-13.602-33.268-26.179-45.522v0 0zM428.114 520.984c-116.407-84.238-175.308-131.905-175.308-131.905s95.526 37.516 201.764 85.942c-12.744 12.338-22.079 28.175-26.456 45.963v0 0zM616.307 558.11c81.772-58.070 278.476-200.958 265.78-222.948-12.666-21.938-233.732 76.444-325.313 118.397v0l28.562-485.56c0 0-16-32-64-32s-64 32-64 32l28.562 485.56c-91.58-41.954-312.647-140.336-325.313-118.397-12.696 21.991 184.008 164.879 265.78 222.948 3.602 24.456 16.427 45.911 34.826 60.718 9.439 100.141 34.792 341.171 60.144 341.171s50.705-241.030 60.144-341.171c18.4-14.808 31.224-36.263 34.826-60.718v0 0zM517.544 448.074l-27.868-469.724c0 0 6.201-10.35 31.66-10.35s31.99 10.35 31.99 10.35l-28.158 469.725c-1.271-0.050-2.549-0.075-3.832-0.075-1.27 0-2.534 0.025-3.793 0.074v0 0zM547.886 636.282c-14.735 142.739-26.549 217.48-26.549 217.48s-15.25-101.335-26.429-217.446c8.396 2.399 17.262 3.684 26.429 3.684 9.21 0 18.117-1.297 26.549-3.718v0 0zM521.337 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb63;" glyph-name="wind-turbine2" d="M616.307 558.11c81.772-58.070 278.476-200.958 265.78-222.948-12.666-21.938-233.732 76.444-325.313 118.397v0l28.562-485.56c0 0-16-32-64-32s-64 32-64 32l28.562 485.56c-91.58-41.954-312.647-140.336-325.313-118.397-12.696 21.991 184.008 164.879 265.78 222.948-0.678-4.605-1.030-9.317-1.030-14.11 0-53.019 42.981-96 96-96s96 42.981 96 96c0 4.794-0.351 9.505-1.030 14.11v0 0zM581.481 618.829c-9.439 100.141-34.792 341.171-60.144 341.171s-50.705-241.030-60.144-341.171c16.457 13.244 37.375 21.171 60.144 21.171s43.687-7.927 60.144-21.171v0 0zM521.337 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb64;" glyph-name="snowflake" d="M415.143 341.77l74.23 74.23h-180.148c-0.754-1.945-1.906-3.764-3.466-5.324l-45.464-45.464c-6.327-6.327-16.275-6.144-22.523 0.104-6.066 6.066-6.295 16.332-0.104 22.523l28.16 28.16h-25.565c-9.011 0-16.263 7.163-16.263 16 0 8.578 7.281 16 16.263 16h24.081l-26.676 26.676c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c1.156-1.156 2.088-2.454 2.8-3.84v0h180.815l-73.814 73.814c-1.728-0.669-3.599-1.039-5.552-1.039h-64.295c-8.948 0-15.852 7.163-15.852 16 0 8.578 7.097 16 15.852 16h38.886l-26.324 26.324c-6.237 6.237-6.045 16.541 0.021 22.607 6.248 6.248 16.375 6.252 22.607 0.021l26.213-26.213v38.664c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-1.893-0.347-3.708-0.978-5.391l73.863-73.863v180.383c-1.494 0.729-2.892 1.708-4.127 2.944l-45.464 45.464c-6.327 6.327-6.144 16.275 0.104 22.523 6.066 6.066 16.332 6.295 22.523 0.104l26.963-26.963v24.655c0 9.011 7.163 16.263 16 16.263 8.578 0 16-7.281 16-16.263v-25.565l27.873 27.873c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-1.483-1.483-3.2-2.598-5.037-3.352v-179.975l73.863 73.863c-0.522 1.547-0.807 3.198-0.807 4.913v64.295c0 8.948 7.163 15.852 16 15.852 8.578 0 16-7.097 16-15.852v-38.015l26.043 26.043c6.231 6.231 16.358 6.228 22.607-0.021 6.066-6.066 6.258-16.37 0.021-22.607l-26.803-26.803h39.535c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-2.129 0-4.159 0.439-6.014 1.226v0l-73.522-73.522h181.724c0.712 1.386 1.644 2.684 2.8 3.84l45.464 45.464c6.327 6.327 16.275 6.144 22.523-0.104 6.066-6.066 6.295-16.332 0.104-22.523l-26.676-26.676h23.171c9.011 0 16.263-7.163 16.263-16 0-8.578-7.281-16-16.263-16h-24.655l28.16-28.16c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-1.56 1.56-2.712 3.379-3.466 5.324v0h-181.058l74.377-74.377c1.479 0.474 3.051 0.731 4.68 0.731h64.295c8.948 0 15.852-7.163 15.852-16 0-8.578-7.097-16-15.852-16h-37.706l25.453-25.453c6.237-6.237 6.045-16.541-0.021-22.607-6.248-6.248-16.375-6.252-22.607-0.021l-26.522 26.522v-39.844c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v64.295c0 2.211 0.473 4.317 1.32 6.229l-73.897 73.897v-181.46c1.837-0.754 3.554-1.869 5.037-3.352l45.464-45.464c6.327-6.327 6.144-16.275-0.104-22.523-6.066-6.066-16.332-6.295-22.523-0.104l-27.873 27.873v-24.081c0-9.011-7.163-16.263-16-16.263-8.578 0-16 7.281-16 16.263v23.171l-26.963-26.963c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c1.235 1.235 2.633 2.215 4.127 2.944v181.868l-74.319-74.319c0.616-1.665 0.954-3.459 0.954-5.328v-64.295c0-8.948-7.163-15.852-16-15.852-8.578 0-16 7.097-16 15.852v38.577l-25.734-25.734c-6.231-6.231-16.358-6.228-22.607 0.021-6.066 6.066-6.258 16.37-0.021 22.607l25.932 25.932h-38.973c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c1.977 0 3.869-0.378 5.615-1.063v0z" />
<glyph unicode="&#xeb65;" glyph-name="snowflake2" d="M415.143 341.77l74.23 74.23h-180.148c-0.754-1.945-1.906-3.764-3.466-5.324l-45.464-45.464c-6.327-6.327-16.275-6.144-22.523 0.104-6.066 6.066-6.295 16.332-0.104 22.523l28.16 28.16h-25.565c-9.011 0-16.263 7.163-16.263 16 0 8.578 7.281 16 16.263 16h24.081l-26.676 26.676c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c1.156-1.156 2.088-2.454 2.8-3.84v0h180.815l-73.814 73.814c-1.728-0.669-3.599-1.039-5.552-1.039h-64.295c-8.948 0-15.852 7.163-15.852 16 0 8.578 7.097 16 15.852 16h38.886l-26.324 26.324c-6.237 6.237-6.045 16.541 0.021 22.607 6.248 6.248 16.375 6.252 22.607 0.021l26.213-26.213v38.664c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-1.893-0.347-3.708-0.978-5.391l73.863-73.863v180.383c-1.494 0.729-2.892 1.708-4.127 2.944l-45.464 45.464c-6.327 6.327-6.144 16.275 0.104 22.523 6.066 6.066 16.332 6.295 22.523 0.104l26.963-26.963v24.655c0 9.011 7.163 16.263 16 16.263 8.578 0 16-7.281 16-16.263v-25.565l27.873 27.873c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-1.483-1.483-3.2-2.598-5.037-3.352v-179.975l73.863 73.863c-0.522 1.547-0.807 3.198-0.807 4.913v64.295c0 8.948 7.163 15.852 16 15.852 8.578 0 16-7.097 16-15.852v-38.015l26.043 26.043c6.231 6.231 16.358 6.228 22.607-0.021 6.066-6.066 6.258-16.37 0.021-22.607l-26.803-26.803h39.535c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-2.129 0-4.159 0.439-6.014 1.226v0l-73.522-73.522h181.724c0.712 1.386 1.644 2.684 2.8 3.84l45.464 45.464c6.327 6.327 16.275 6.144 22.523-0.104 6.066-6.066 6.295-16.332 0.104-22.523l-26.676-26.676h23.171c9.011 0 16.263-7.163 16.263-16 0-8.578-7.281-16-16.263-16h-24.655l28.16-28.16c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-1.56 1.56-2.712 3.379-3.466 5.324v0h-181.058l74.377-74.377c1.479 0.474 3.051 0.731 4.68 0.731h64.295c8.948 0 15.852-7.163 15.852-16 0-8.578-7.097-16-15.852-16h-37.706l25.453-25.453c6.237-6.237 6.045-16.541-0.021-22.607-6.248-6.248-16.375-6.252-22.607-0.021l-26.522 26.522v-39.844c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v64.295c0 2.211 0.473 4.317 1.32 6.229l-73.897 73.897v-181.46c1.837-0.754 3.554-1.869 5.037-3.352l45.464-45.464c6.327-6.327 6.144-16.275-0.104-22.523-6.066-6.066-16.332-6.295-22.523-0.104l-27.873 27.873v-24.081c0-9.011-7.163-16.263-16-16.263-8.578 0-16 7.281-16 16.263v23.171l-26.963-26.963c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c1.235 1.235 2.633 2.215 4.127 2.944v181.868l-74.319-74.319c0.616-1.665 0.954-3.459 0.954-5.328v-64.295c0-8.948-7.163-15.852-16-15.852-8.578 0-16 7.097-16 15.852v38.577l-25.734-25.734c-6.231-6.231-16.358-6.228-22.607 0.021-6.066 6.066-6.258 16.37-0.021 22.607l25.932 25.932h-38.973c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c1.977 0 3.869-0.378 5.615-1.063v0zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0z" />
<glyph unicode="&#xeb66;" glyph-name="flashed-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM672 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM672 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM448 288v-32h160v32h-160z" />
<glyph unicode="&#xeb67;" glyph-name="flashed-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM672 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM448 288v-32h160v32h-160z" />
<glyph unicode="&#xeb68;" glyph-name="flashed-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM672 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM672 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeb69;" glyph-name="flashed-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM672 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xeb6a;" glyph-name="flashed-face-glasses" d="M297.515 585.721l-78.067 46.907c65.651 100.761 179.322 167.372 308.551 167.372s242.9-66.611 308.551-167.372l-78.067-46.907c-15.524 32.122-48.417 54.279-86.485 54.279-41.799 0-77.359-26.714-90.537-64h-106.925c-13.179 37.286-48.738 64-90.537 64-38.068 0-70.96-22.157-86.485-54.279zM288.495 553.809c-0.327-3.225-0.495-6.497-0.495-9.809 0-53.019 42.981-96 96-96s96 42.981 96 96v0h96c0-53.019 42.981-96 96-96s96 42.981 96 96c0 3.311-0.168 6.584-0.495 9.809l85.333 51.273c27.546-51.591 43.162-110.513 43.162-173.082 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 62.569 15.615 121.492 43.162 173.082l85.333-51.273zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM384 480v0c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 480v0c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeb6b;" glyph-name="flashed-face-glasses2" d="M294.226 578.084c13.749 36.194 48.757 61.916 89.774 61.916 41.799 0 77.359-26.714 90.537-64h106.925c13.179 37.286 48.738 64 90.537 64 41.016 0 76.025-25.723 89.774-61.916v0l106.636 64.073c-70.49 113.937-196.585 189.843-340.409 189.843s-269.919-75.906-340.409-189.843l106.636-64.073zM288.001 544.492c-0.001-0.164-0.001-0.328-0.001-0.492 0-53.019 42.981-96 96-96s96 42.981 96 96v0h96c0-53.019 42.981-96 96-96s96 42.981 96 96c0 0.164 0 0.328-0.001 0.492l116.149 69.789c28.034-54.664 43.852-116.625 43.852-182.281 0-220.914-179.086-400-400-400s-400 179.086-400 400c0 65.656 15.819 127.618 43.852 182.281l116.149-69.789zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xeb6c;" glyph-name="face-missing-moth" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb6d;" glyph-name="face-missing-moth2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb6e;" glyph-name="neutral-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM384 288v-32h288v32h-288z" />
<glyph unicode="&#xeb6f;" glyph-name="neutral-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM384 288v-32h288v32h-288z" />
<glyph unicode="&#xeb70;" glyph-name="smiling-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xeb71;" glyph-name="smiling-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" />
<glyph unicode="&#xeb72;" glyph-name="sad-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xeb73;" glyph-name="sad-face2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xeb74;" glyph-name="face-open-mouth" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeb75;" glyph-name="face-open-mouth2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xeb76;" glyph-name="face-open-mouth3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-79.529 0-144 35.817-144 80s64.471 80 144 80c79.529 0 144-35.817 144-80s-64.471-80-144-80zM528 224c61.856 0 112 21.49 112 48s-50.144 48-112 48c-61.856 0-112-21.49-112-48s50.144-48 112-48v0z" />
<glyph unicode="&#xeb77;" glyph-name="face-open-mouth4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c79.529 0 144 35.817 144 80s-64.471 80-144 80c-79.529 0-144-35.817-144-80s64.471-80 144-80z" />
<glyph unicode="&#xeb78;" glyph-name="winking-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM352 544v-32h128v32h-128zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xeb79;" glyph-name="winking-face2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM352 544h128v-32h-128v32z" />
<glyph unicode="&#xeb7a;" glyph-name="laughing-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM288 352h480c0 0-32-192-240-192s-240 192-240 192zM331.027 320c0 0 41.198-128.43 197.761-128.43s195.766 128.43 195.766 128.43h-393.527z" />
<glyph unicode="&#xeb7b;" glyph-name="laughing-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM288 352c0 0 32-192 240-192s240 192 240 192h-480z" />
<glyph unicode="&#xeb7c;" glyph-name="laughing-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM288 352h480c0 0-32-192-240-192s-240 192-240 192zM331.027 320c0 0 41.198-128.43 197.761-128.43s195.766 128.43 195.766 128.43h-393.527zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb7d;" glyph-name="laughing-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM288 352c0 0 32-192 240-192s240 192 240 192h-480zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb7e;" glyph-name="smirking-face" d="M448 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM672 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xeb7f;" glyph-name="smirking-face2" d="M448 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM672 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xeb80;" glyph-name="stubborn-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeb81;" glyph-name="stubborn-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeb82;" glyph-name="neutral-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb83;" glyph-name="neutral-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb84;" glyph-name="sad-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xeb85;" glyph-name="sad-face4" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM320 576h128v-32h-128v32zM608 576h128v-32h-128v32zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xeb86;" glyph-name="smiling-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xeb87;" glyph-name="smiling-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" />
<glyph unicode="&#xeb88;" glyph-name="smiling-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb89;" glyph-name="smiling-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb8a;" glyph-name="grinning-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xeb8b;" glyph-name="grinning-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xeb8c;" glyph-name="sad-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb8d;" glyph-name="sad-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.402 288c111.402 0 176.598-64 176.598-64v32c0 0-65.195 64-176.598 64s-175.402-64-175.402-64v-32c0 0 64 64 175.402 64zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb8e;" glyph-name="neutral-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb8f;" glyph-name="neutral-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb90;" glyph-name="angry-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb91;" glyph-name="angry-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb92;" glyph-name="worried-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeb93;" glyph-name="worried-face2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32zM384 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM608 640h128v-32h-128v32zM320 640h128v-32h-128v32z" />
<glyph unicode="&#xeb94;" glyph-name="winking-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM352 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xeb95;" glyph-name="winking-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM352 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xeb96;" glyph-name="angry-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb97;" glyph-name="angry-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.902 256c95.902 0 144.098-32 144.098-32s-32 96-144 96c-112 0-144-96-144-96s48 32 143.902 32zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb98;" glyph-name="grinning-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xeb99;" glyph-name="grinning-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xeb9a;" glyph-name="sad-face5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xeb9b;" glyph-name="sad-face6" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xeb9c;" glyph-name="grinning-face-eyebrows3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeb9d;" glyph-name="grinning-face-eyebrows4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeb9e;" glyph-name="fake-grinning-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb9f;" glyph-name="fake-grinning-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeba0;" glyph-name="worried-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeba1;" glyph-name="worried-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM527.902 256c95.902 0 144.098-32 144.098-32s-32 96-144 96c-112 0-144-96-144-96s48 32 143.902 32zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeba2;" glyph-name="face-stuck-out-tongue" d="M416 320v-80c0-61.856 50.27-112 112-112 61.856 0 112 50.27 112 112v80h64v32h-352v-32h64zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM448 320h160v-80c0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80v80z" />
<glyph unicode="&#xeba3;" glyph-name="face-stuck-out-tongue2" d="M416 320h-64v32h352v-32h-64v-80c0-61.73-50.144-112-112-112-61.73 0-112 50.144-112 112v80zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM448 320v-80c0-44.183 35.509-80 80-80 44.183 0 80 35.509 80 80v80h-160z" />
<glyph unicode="&#xeba4;" glyph-name="face-stuck-out-tongue3" d="M416 320v-80c0-61.856 50.27-112 112-112 61.856 0 112 50.27 112 112v80h64v32h-352v-32h64zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM448 320h160v-80c0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80v80zM352 544v-32h128v32h-128z" />
<glyph unicode="&#xeba5;" glyph-name="face-stuck-out-tongue4" d="M416 320h-64v32h352v-32h-64v-80c0-61.73-50.144-112-112-112-61.73 0-112 50.144-112 112v80zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM448 320v-80c0-44.183 35.509-80 80-80 44.183 0 80 35.509 80 80v80h-160zM352 544h128v-32h-128v32z" />
<glyph unicode="&#xeba6;" glyph-name="kissing-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48v0z" />
<glyph unicode="&#xeba7;" glyph-name="kissing-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48z" />
<glyph unicode="&#xeba8;" glyph-name="grinning-face-teeth" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeba9;" glyph-name="grinning-face-teeth2" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM608 640h128v-32h-128v32zM320 640h128v-32h-128v32z" />
<glyph unicode="&#xebaa;" glyph-name="angry-face-teeth" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582zM684.111 641.053l17.894-26.529-106.117-71.577-17.894 26.529 106.117 71.577zM478.005 569.476l-17.894-26.529-106.117 71.577 17.894 26.529 106.117-71.577z" />
<glyph unicode="&#xebab;" glyph-name="angry-face-teeth2" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM684.111 641.053l17.894-26.529-106.117-71.577-17.894 26.529 106.117 71.577zM478.005 569.476l-17.894-26.529-106.117 71.577 17.894 26.529 106.117-71.577z" />
<glyph unicode="&#xebac;" glyph-name="worried-face-teeth" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebad;" glyph-name="worried-face-teeth2" d="M528 832c-220.9 0-400-179.1-400-400s179.1-400 400-400 400 179.1 400 400-179.1 400-400 400zM290 569.5l106.1 71.6 17.9-26.5-106.1-71.6-17.9 26.5zM416 224h-15.8c-21.1 0-38.9 13.4-45.5 32h61.3v-32zM416 288h-61.3c6.6 18.7 24.5 32 45.5 32h15.8v-32zM384 480c-17.7 0-32 14.3-32 32s14.3 32 32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32zM512 224h-64v32h64v-32zM512 288h-64v32h64v-32zM640 320h15.8c21.1 0 38.9-13.4 45.5-32h-61.3v32zM608 224h-64v32h64v-32zM608 288h-64v32h64v-32zM655.8 224h-15.8v32h61.3c-6.6-18.7-24.5-32-45.5-32zM672 480c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32c0-17.7-14.3-32-32-32zM748.1 542.9l-106.1 71.6 17.9 26.5 106.1-71.5-17.9-26.6z" />
<glyph unicode="&#xebae;" glyph-name="grinning-face-teeth3" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582z" />
<glyph unicode="&#xebaf;" glyph-name="grinning-face-teeth4" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32z" />
<glyph unicode="&#xebb0;" glyph-name="face-open-mouth-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xebb1;" glyph-name="face-open-mouth-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xebb2;" glyph-name="face-open-mouth-eyebrows3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebb3;" glyph-name="face-open-mouth-eyebrows4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebb4;" glyph-name="angry-face-open-mouth-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM684.111 641.053l17.894-26.529-106.117-71.577-17.894 26.529 106.117 71.577zM478.005 569.476l-17.894-26.529-106.117 71.577 17.894 26.529 106.117-71.577z" />
<glyph unicode="&#xebb5;" glyph-name="angry-face-open-mouth-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM684.111 641.053l-106.117-71.577 17.894-26.529 106.117 71.577-17.894 26.529zM478.005 569.476l-106.117 71.577-17.894-26.529 106.117-71.577 17.894 26.529z" />
<glyph unicode="&#xebb6;" glyph-name="unamused-face-tightly-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebb7;" glyph-name="unamused-face-tightly-closed-eyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebb8;" glyph-name="sad-face--tightly-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebb9;" glyph-name="sad-face--tightly-closed-eyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebba;" glyph-name="kissing-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48v0z" />
<glyph unicode="&#xebbb;" glyph-name="kissing-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48z" />
<glyph unicode="&#xebbc;" glyph-name="face-closed-meyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xebbd;" glyph-name="face-closed-meyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM339.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM609.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xebbe;" glyph-name="amused-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xebbf;" glyph-name="amused-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xebc0;" glyph-name="amused-face-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xebc1;" glyph-name="amused-face-closed-eyes2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xebc2;" glyph-name="amused-face-closed-eyes3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xebc3;" glyph-name="amused-face-closed-eyes4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xebc4;" glyph-name="face-closed-eyes-open-mouth" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xebc5;" glyph-name="face-closed-eyes-open-mouth2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xebc6;" glyph-name="face-closed-eyes-open-mouth3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebc7;" glyph-name="face-closed-eyes-open-mouth4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebc8;" glyph-name="face-closed-eyes-open-mouth5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xebc9;" glyph-name="face-closed-eyes-open-mouth6" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xebca;" glyph-name="laughing-face5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM288 352h480c0 0-32-192-240-192s-240 192-240 192zM331.027 320c0 0 41.198-128.43 197.761-128.43s195.766 128.43 195.766 128.43h-393.527z" />
<glyph unicode="&#xebcb;" glyph-name="laughing-face6" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM597.49 518.627l22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-90.51 90.51-90.51-90.51zM277.49 518.627l22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-90.51 90.51-90.51-90.51zM288 352c0 0 32-192 240-192s240 192 240 192h-480z" />
<glyph unicode="&#xebcc;" glyph-name="smiling-face5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebcd;" glyph-name="smiling-face6" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 256c111.402 0 176.598 64 176.598 64v-32c0 0-65.195-64-176.598-64s-175.402 64-175.402 64v32c0 0 64-64 175.402-64zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebce;" glyph-name="grinning-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebcf;" glyph-name="grinning-face4" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.902 288c95.902 0 144.098 32 144.098 32s-32-96-144-96c-112 0-144 96-144 96s48-32 143.902-32zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebd0;" glyph-name="sad-face7" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xebd1;" glyph-name="sad-face8" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM339.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM609.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xebd2;" glyph-name="sad-face9" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xebd3;" glyph-name="sad-face10" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM627.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM321.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xebd4;" glyph-name="sad-face-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xebd5;" glyph-name="sad-face-closed-eyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM320 544h128v-32h-128v32zM608 544h128v-32h-128v32zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xebd6;" glyph-name="sad-face11" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xebd7;" glyph-name="sad-face12" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM627.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM321.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xebd8;" glyph-name="smiling-face7" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xebd9;" glyph-name="smiling-face8" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" />
<glyph unicode="&#xebda;" glyph-name="astonished-face" d="M643.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM355.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xebdb;" glyph-name="astonished-face2" d="M643.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM355.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM528 192c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80z" />
<glyph unicode="&#xebdc;" glyph-name="astonished-face3" d="M643.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM355.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 192v0c-79.529 0-144 35.817-144 80s64.471 80 144 80c79.529 0 144-35.817 144-80s-64.471-80-144-80zM528 224c61.856 0 112 21.49 112 48s-50.144 48-112 48c-61.856 0-112-21.49-112-48s50.144-48 112-48v0z" />
<glyph unicode="&#xebdd;" glyph-name="astonished-face4" d="M643.387 560l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM355.387 560l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 192c79.529 0 144 35.817 144 80s-64.471 80-144 80c-79.529 0-144-35.817-144-80s64.471-80 144-80z" />
<glyph unicode="&#xebde;" glyph-name="face-moustache" d="M528 295.738c13.894-24.865 43.804-64.755 105.767-67.675 86.233-4.064 165.083 75.936 165.083 106.014-33.232-36.332-88.747-39.597-119.622-24.686-45.461 21.955-37.567 65.41-70.707 93.845-18.836 16.162-45.588 17.131-68.488 0-4.128-3.088-8.271-7.035-12.033-11.793-3.762 4.758-7.905 8.705-12.033 11.793-22.9 17.131-49.652 16.162-68.488 0-33.14-28.435-25.246-71.891-70.707-93.845-30.875-14.911-86.39-11.645-119.622 24.686 0-30.077 78.85-110.077 165.083-106.014 61.963 2.92 91.873 42.81 105.767 67.675v0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xebdf;" glyph-name="face-moustache2" d="M528 295.738c-13.894-24.865-43.804-64.755-105.767-67.675-86.233-4.064-165.083 75.936-165.083 106.014 33.232-36.332 88.747-39.597 119.622-24.686 45.461 21.955 37.567 65.41 70.707 93.845 18.836 16.162 45.588 17.131 68.488 0 4.128-3.088 8.271-7.035 12.033-11.793 3.762 4.758 7.905 8.705 12.033 11.793 22.9 17.131 49.652 16.162 68.488 0 33.14-28.435 25.246-71.891 70.707-93.845 30.875-14.911 86.39-11.645 119.622 24.686 0-30.077-78.85-110.077-165.083-106.014-61.963 2.92-91.873 42.81-105.767 67.675zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 448c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32z" />
<glyph unicode="&#xebe0;" glyph-name="face-moustache3" d="M528 295.738c13.894-24.865 43.804-64.755 105.767-67.675 86.233-4.064 165.083 75.936 165.083 106.014-33.232-36.332-88.747-39.597-119.622-24.686-45.461 21.955-37.567 65.41-70.707 93.845-18.836 16.162-45.588 17.131-68.488 0-4.128-3.088-8.271-7.035-12.033-11.793-3.762 4.758-7.905 8.705-12.033 11.793-22.9 17.131-49.652 16.162-68.488 0-33.14-28.435-25.246-71.891-70.707-93.845-30.875-14.911-86.39-11.645-119.622 24.686 0-30.077 78.85-110.077 165.083-106.014 61.963 2.92 91.873 42.81 105.767 67.675v0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xebe1;" glyph-name="face-moustache4" d="M528 295.738c-13.894-24.865-43.804-64.755-105.767-67.675-86.233-4.064-165.083 75.936-165.083 106.014 33.232-36.332 88.747-39.597 119.622-24.686 45.461 21.955 37.567 65.41 70.707 93.845 18.836 16.162 45.588 17.131 68.488 0 4.128-3.088 8.271-7.035 12.033-11.793 3.762 4.758 7.905 8.705 12.033 11.793 22.9 17.131 49.652 16.162 68.488 0 33.14-28.435 25.246-71.891 70.707-93.845 30.875-14.911 86.39-11.645 119.622 24.686 0-30.077-78.85-110.077-165.083-106.014-61.963 2.92-91.873 42.81-105.767 67.675zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32z" />
<glyph unicode="&#xebe2;" glyph-name="face-glasses" d="M835.522 634.199v0 0c-78.137 8.787-207.455 7.843-301.44-15.703-2.053-0.427-4.070-0.8-6.082-1.113-2.013 0.313-4.029 0.686-6.082 1.113-93.985 23.545-223.303 24.49-301.44 15.703v0c65.806 99.882 178.966 165.801 307.522 165.801s241.716-65.92 307.522-165.801zM859.391 592.206c23.457-48.431 36.609-102.783 36.609-160.206 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 57.423 13.152 111.775 36.609 160.206 0.479-0.444 1.005-0.727 1.581-0.821 14.692-5.402 20.961-18.881 20.961-18.881s4.387-11.961 17.127-60.603c12.74-48.642 43.113-54.475 43.113-54.475s37.175-8.363 80.059-8.363c42.884 0 68.537 1.773 96.001 14.261s39.468 47.269 39.468 47.269c0 0 13.837 29.97 23.364 58.249 1.446 4.291 5.23 7.209 9.718 9.077 4.488-1.868 8.272-4.785 9.718-9.077 9.526-28.279 23.364-58.249 23.364-58.249s12.004-34.781 39.468-47.269c27.464-12.488 53.117-14.261 96.001-14.261s80.059 8.363 80.059 8.363c0 0 30.373 5.833 43.113 54.475s17.127 60.603 17.127 60.603c0 0 6.268 13.479 20.961 18.881 0.576 0.095 1.102 0.377 1.581 0.821v0 0zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM270.084 597.852v0c15.821 10.234 74.035 10.503 94.52 10.005s58.011-3.491 94.458-14.53c36.447-11.039 14.836-48.59 12.007-56.665-4.099-11.699-16.978-32.576-30.466-41.186s-43.12-15.476-80.364-15.476c-21.628 0-39.184 0.922-56.467 4.444s-25.886 6.653-36.047 26.563c-4.398 8.617-8.121 22.731-9.651 32.973s-7.547 41.222 12.009 53.872zM785.916 597.852c19.556-12.65 13.539-43.63 12.009-53.872s-5.254-24.356-9.651-32.973c-10.161-19.91-18.764-23.041-36.047-26.563s-34.839-4.444-56.467-4.444c-37.243 0-66.876 6.866-80.364 15.476s-26.367 29.487-30.466 41.186c-2.829 8.075-24.44 45.626 12.007 56.665s73.973 14.032 94.458 14.53c20.485 0.498 78.699 0.229 94.52-10.005v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xebe3;" glyph-name="face-glasses2" d="M528 617.383v0c2.013 0.313 4.029 0.686 6.082 1.113 102.487 25.675 246.989 24.476 321.325 13.089 8.976-1.375 10.386-38.887 2.402-40.2-14.692-5.402-20.961-18.881-20.961-18.881s-4.387-11.961-17.127-60.603c-12.74-48.642-43.113-54.475-43.113-54.475s-37.175-8.363-80.059-8.363c-42.884 0-68.537 1.773-96.001 14.261s-39.468 47.269-39.468 47.269c0 0-13.837 29.97-23.364 58.249-1.446 4.291-5.23 7.209-9.718 9.077-4.488-1.868-8.272-4.785-9.718-9.077-9.526-28.279-23.364-58.249-23.364-58.249s-12.004-34.781-39.468-47.269c-27.464-12.488-53.117-14.261-96.001-14.261s-80.059 8.363-80.059 8.363c0 0-30.373 5.833-43.113 54.475s-17.127 60.603-17.127 60.603c0 0-6.268 13.479-20.961 18.881-7.983 1.312-6.574 38.825 2.402 40.2 74.336 11.387 218.838 12.587 321.325-13.089 2.053-0.427 4.070-0.8 6.082-1.113zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 256c111.402 0 176.598 64 176.598 64v-32c0 0-65.195-64-176.598-64s-175.402 64-175.402 64v32c0 0 64-64 175.402-64zM270.084 597.852c15.821 10.234 74.035 10.503 94.52 10.005s58.011-3.491 94.458-14.53c36.447-11.039 14.836-48.59 12.007-56.665-4.099-11.699-16.978-32.576-30.466-41.186s-43.12-15.476-80.364-15.476c-21.628 0-39.184 0.922-56.467 4.444s-25.886 6.653-36.047 26.563c-4.398 8.617-8.121 22.731-9.651 32.973s-7.547 41.222 12.009 53.872zM785.916 597.852c19.556-12.65 13.539-43.63 12.009-53.872s-5.254-24.356-9.651-32.973c-10.161-19.91-18.764-23.041-36.047-26.563s-34.839-4.444-56.467-4.444c-37.243 0-66.876 6.866-80.364 15.476s-26.367 29.487-30.466 41.186c-2.829 8.075-24.44 45.626 12.007 56.665s73.973 14.032 94.458 14.53c20.485 0.498 78.699 0.229 94.52-10.005zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xebe4;" glyph-name="face-sunglasses" d="M835.522 634.199v0c-78.137 8.787-207.455 7.843-301.44-15.703-2.053-0.427-4.070-0.8-6.082-1.113-2.013 0.313-4.029 0.686-6.082 1.113-93.985 23.545-223.303 24.49-301.44 15.703v0c65.806 99.882 178.966 165.801 307.522 165.801s241.716-65.92 307.522-165.801zM859.391 592.206c23.457-48.431 36.609-102.783 36.609-160.206 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 57.423 13.152 111.775 36.609 160.206 0.479-0.444 1.005-0.727 1.581-0.821 14.692-5.402 20.961-18.881 20.961-18.881s4.387-11.961 17.127-60.603c12.74-48.642 43.113-54.475 43.113-54.475s37.175-8.363 80.059-8.363c42.884 0 68.537 1.773 96.001 14.261s39.468 47.269 39.468 47.269c0 0 13.837 29.97 23.364 58.249 1.446 4.291 5.23 7.209 9.718 9.077 4.488-1.868 8.272-4.785 9.718-9.077 9.526-28.279 23.364-58.249 23.364-58.249s12.004-34.781 39.468-47.269c27.464-12.488 53.117-14.261 96.001-14.261s80.059 8.363 80.059 8.363c0 0 30.373 5.833 43.113 54.475s17.127 60.603 17.127 60.603c0 0 6.268 13.479 20.961 18.881 0.576 0.095 1.102 0.377 1.581 0.821v0zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xebe5;" glyph-name="face-sunglasses2" d="M528 617.383c2.013 0.313 4.029 0.686 6.082 1.113 102.487 25.675 246.989 24.476 321.325 13.089 8.976-1.375 10.386-38.887 2.402-40.2-14.692-5.402-20.961-18.881-20.961-18.881s-4.387-11.961-17.127-60.603c-12.74-48.642-43.113-54.475-43.113-54.475s-37.175-8.363-80.059-8.363c-42.884 0-68.537 1.773-96.001 14.261s-39.468 47.269-39.468 47.269c0 0-13.837 29.97-23.364 58.249-1.446 4.291-5.23 7.209-9.718 9.077-4.488-1.868-8.272-4.785-9.718-9.077-9.526-28.279-23.364-58.249-23.364-58.249s-12.004-34.781-39.468-47.269c-27.464-12.488-53.117-14.261-96.001-14.261s-80.059 8.363-80.059 8.363c0 0-30.373 5.833-43.113 54.475s-17.127 60.603-17.127 60.603c0 0-6.268 13.479-20.961 18.881-7.983 1.312-6.574 38.825 2.402 40.2 74.336 11.387 218.838 12.587 321.325-13.089 2.053-0.427 4.070-0.8 6.082-1.113zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 256c111.402 0 176.598 64 176.598 64v-32c0 0-65.195-64-176.598-64s-175.402 64-175.402 64v32c0 0 64-64 175.402-64z" />
<glyph unicode="&#xebe6;" glyph-name="smirking-face-sunglasses" d="M835.522 634.199v0 0c-78.137 8.787-207.455 7.843-301.44-15.703-2.053-0.427-4.070-0.8-6.082-1.113-2.013 0.313-4.029 0.686-6.082 1.113-93.985 23.545-223.303 24.49-301.44 15.703v0c65.806 99.882 178.966 165.801 307.522 165.801s241.716-65.92 307.522-165.801zM859.391 592.206c23.457-48.431 36.609-102.783 36.609-160.206 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 57.423 13.152 111.775 36.609 160.206 0.479-0.444 1.005-0.727 1.581-0.821 14.692-5.402 20.961-18.881 20.961-18.881s4.387-11.961 17.127-60.603c12.74-48.642 43.113-54.475 43.113-54.475s37.175-8.363 80.059-8.363c42.884 0 68.537 1.773 96.001 14.261s39.468 47.269 39.468 47.269c0 0 13.837 29.97 23.364 58.249 1.446 4.291 5.23 7.209 9.718 9.077 4.488-1.868 8.272-4.785 9.718-9.077 9.526-28.279 23.364-58.249 23.364-58.249s12.004-34.781 39.468-47.269c27.464-12.488 53.117-14.261 96.001-14.261s80.059 8.363 80.059 8.363c0 0 30.373 5.833 43.113 54.475s17.127 60.603 17.127 60.603c0 0 6.268 13.479 20.961 18.881 0.576 0.095 1.102 0.377 1.581 0.821v0 0zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xebe7;" glyph-name="smirking-face-sunglasses2" d="M528 617.383v0c2.013 0.313 4.029 0.686 6.082 1.113 102.487 25.675 246.989 24.476 321.325 13.089 8.976-1.375 10.386-38.887 2.402-40.2-14.692-5.402-20.961-18.881-20.961-18.881s-4.387-11.961-17.127-60.603c-12.74-48.642-43.113-54.475-43.113-54.475s-37.175-8.363-80.059-8.363c-42.884 0-68.537 1.773-96.001 14.261s-39.468 47.269-39.468 47.269c0 0-13.837 29.97-23.364 58.249-1.446 4.291-5.23 7.209-9.718 9.077-4.488-1.868-8.272-4.785-9.718-9.077-9.526-28.279-23.364-58.249-23.364-58.249s-12.004-34.781-39.468-47.269c-27.464-12.488-53.117-14.261-96.001-14.261s-80.059 8.363-80.059 8.363c0 0-30.373 5.833-43.113 54.475s-17.127 60.603-17.127 60.603c0 0-6.268 13.479-20.961 18.881-7.983 1.312-6.574 38.825 2.402 40.2 74.336 11.387 218.838 12.587 321.325-13.089 2.053-0.427 4.070-0.8 6.082-1.113zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xebe8;" glyph-name="middle-finger" d="M896 272v191.862c0 44.259-35.509 80.138-80 80.138-20.323 0-38.876-7.524-52.987-19.988-11.269 30.364-40.427 51.988-75.013 51.988-18.010 0-34.629-5.996-48-16.068v255.958c0 44.244-35.509 80.111-80 80.111-44.183 0-80-35.763-80-80.111v-223.769c-13.332 9.974-29.925 15.88-48 15.88-44.183 0-80-36.086-80-79.924v-27.813c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM624 32c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v105.64c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-80.093h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v16.093c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-48.093h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebe9;" glyph-name="middle-finger2" d="M867.685 272c0-132.548-107.452-240-240-240-0.013 0-0.027 0-0.040 0-120.271 0.015-191.64 65.636-248.044 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v137.341c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h24.186c2.575 1.486 5.18 2.926 7.814 4.319v0 331.973c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-304.291h32v48.143c0 26.112 21.49 47.857 48 47.857 26.694 0 48-21.427 48-47.857v-75.824c2.634-1.392 5.239-2.832 7.814-4.319h24.186v47.795c0 26.558 21.49 48.205 48 48.205 26.694 0 48-21.582 48-48.205v-255.795z" />
<glyph unicode="&#xebea;" glyph-name="rock-n-roll" d="M896 304v384.236c0 44.053-35.509 79.764-80 79.764-44.183 0-80-35.639-80-79.764v-96.115c-13.332 9.974-29.925 15.88-48 15.88-20.302 0-38.837-7.619-52.943-20.108-11.236 30.427-40.426 52.108-75.057 52.108-18.010 0-34.629-5.996-48-16.068v159.799c0 44.331-35.509 80.269-80 80.269-44.183 0-80-35.693-80-80.269v-251.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM624 64c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v329.271c0 26.951 21.49 48.276 48 48.276 26.694 0 48-21.614 48-48.276v-303.724h32v80.093c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-48.093h32v16.093c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-48.093h32v208.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-384.28c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebeb;" glyph-name="rock-n-roll2" d="M608 512v47.848c0 26.593-21.306 48.152-48 48.152-26.51 0-48-21.386-48-48.152v-79.848h-32v303.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-312.048c-64.334 70.184-148.749 146.785-184.134 111.209-34.789-34.977 49.818-131.421 175.002-342.057 14.735-24.793 30.491-47.588 47.874-67.736 42.812-65.738 116.959-109.2 201.258-109.2 132.548 0 240 107.452 240 240v384.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-208.28h-32v47.848c0 26.593-21.306 48.152-48 48.152-26.51 0-48-21.386-48-48.152v-15.848h-32z" />
<glyph unicode="&#xebec;" glyph-name="high-five" d="M896 272v384.2c0 44.1-35.5 79.8-80 79.8-18 0-34.6-5.9-48-15.9v31.8c0 44.2-35.5 80.1-80 80.1-18 0-34.6-6-48-16.1 0 44.2-35.5 80.1-80 80.1-44.1 0-79.9-35.7-80-79.9-13.3 10-29.9 15.9-48 15.9-44.2 0-80-35.7-80-80.3v-251.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.4-131.8 177.5-178.3 277.1-178.3 150.2 0 272 121.8 272 272v0zM624 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.8c0 26.5 21.5 47.8 48 47.8 26.7 0 48-21.4 48-47.8v-304.2h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v271.9c0 26.9 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-303.9h32v208.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-384.3c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xebed;" glyph-name="high-five2" d="M638.952 631.678v120.203c0 26.935 21.49 48.119 48 48.119 26.694 0 48-21.543 48-48.119v-303.881h32v208.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-384.28c0-132.548-107.452-240-240-240-0.013 0-0.027 0-0.040 0-120.271 0.015-191.64 65.636-248.044 160.541-125.184 210.636-209.791 307.079-175.002 342.057 35.194 35.384 118.886-40.197 183.086-110.067v327.193c0 26.951 21.49 48.276 48 48.276 26.694 0 48-21.614 48-48.276v-303.724h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v151.678z" />
<glyph unicode="&#xebee;" glyph-name="thumb-up" d="M352 544h-192.061c-35.313 0-63.939-28.482-63.939-64.003v-415.993c0-35.348 28.375-64.003 63.939-64.003h623.792c44.331 0 80.269 35.509 80.269 80 0 18.010-5.931 34.63-15.976 48.001 44.197 0.156 79.976 35.607 79.976 79.999 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 44.183-35.693 80-80.269 80h-191.739c33.578 160.539 17.492 352-111.992 352s-61.877-153.205-112-248.406c-50.123-95.202-144-103.594-144-103.594v0 0zM159.705 512h160.295v-480h-160.295c-17.274 0-31.705 14.434-31.705 32.239v415.521c0 17.874 14.195 32.239 31.705 32.239zM224 96c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0zM681.6 512h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-431.946c0 0 0 416 0 480 48 0 89.792 32 89.792 32 29.127 18.186 60.678 45.703 82.083 86.359 50.123 95.202-7.742 233.641 84.125 233.641 94.728 0 110.337-155.288 80.038-320 0 0-6.437-32-6.437-32v0 0z" />
<glyph unicode="&#xebef;" glyph-name="thumb-up2" d="M320 32h431.946c26.539 0 48.054 21.306 48.054 48 0 26.51-21.478 48-48.054 48h-47.946v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-80.221v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-80.221v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-230.621c38.424 176 27.248 352-73.6 352-91.867 0-34.002-138.439-84.125-233.641s-155.874-118.359-155.875-118.359h-16v-480zM159.933 512h128.067v-480h-128.067c-35.189 0-63.933 28.538-63.933 63.74v352.519c0 35.152 28.624 63.74 63.933 63.74zM192 96c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0z" />
<glyph unicode="&#xebf0;" glyph-name="thumb-down" d="M320 352h-192.061c-35.313 0-63.939 28.482-63.939 64.003v415.993c0 35.348 28.375 64.003 63.939 64.003h623.792c44.331 0 80.269-35.509 80.269-80 0-18.010-5.931-34.63-15.976-48.001 44.197-0.156 79.976-35.607 79.976-79.999 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-44.183-35.693-80-80.269-80h-191.739c33.578-160.539 17.492-352-111.992-352s-61.877 153.205-112 248.406c-50.123 95.202-144 103.594-144 103.594v0 0zM127.705 384h160.295v480h-160.295c-17.274 0-31.705-14.434-31.705-32.239v-415.521c0-17.874 14.195-32.239 31.705-32.239zM192 800c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0zM649.6 384h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-431.946c0 0 0-416 0-480 48 0 89.792-32 89.792-32 29.127-18.186 60.678-45.703 82.083-86.359 50.123-95.202-7.742-233.641 84.125-233.641 94.728 0 110.337 155.288 80.038 320 0 0-6.437 32-6.437 32v0 0z" />
<glyph unicode="&#xebf1;" glyph-name="thumb-down2" d="M320 864h431.946c26.539 0 48.054-21.306 48.054-48 0-26.51-21.478-48-48.054-48h-47.946v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-80.221v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-80.221v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-230.621c38.424-176 27.248-352-73.6-352-91.867 0-34.002 138.439-84.125 233.641s-155.874 118.359-155.875 118.359h-16v480zM159.933 384h128.067v480h-128.067c-35.189 0-63.933-28.538-63.933-63.74v-352.519c0-35.152 28.624-63.74 63.933-63.74zM192 800c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0z" />
<glyph unicode="&#xebf2;" glyph-name="thumb-up3" d="M615.962 0h136.114c44.141 0 79.924 35.509 79.924 80 0 18.010-5.996 34.63-16.069 48 44.239 0.107 80.069 35.576 80.069 80 0 20.345-7.568 38.916-20.087 53.034v0c30.43 11.302 52.087 40.428 52.087 74.966 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 44.183-35.693 80-80.269 80h-191.739c33.578 160.539 17.492 352-111.992 352s-61.877-153.205-112-248.406c-50.122-95.198-143.993-103.593-144-103.594h-192.157c-35.259 0-63.843-28.589-63.843-63.74v-352.519c0-35.203 28.375-63.74 63.939-63.74h192.061l192-64h103.962zM336 512c0 0 105.752 23.158 155.875 118.359s-7.742 233.641 84.125 233.641c100.848 0 112.023-176 73.6-352v0h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-239.946l-192 64h-191.906c-18.082 0-32.094 14.305-32.094 31.952v352.096c0 17.632 14.326 31.952 31.999 31.952h208.001z" />
<glyph unicode="&#xebf3;" glyph-name="thumb-up4" d="M649.6 512h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-239.946l-192 64h-191.906c-18.082 0-32.094 14.305-32.094 31.952v352.096c0 17.632 14.326 31.952 31.999 31.952h208.001c0 0 105.752 23.158 155.875 118.359s-7.742 233.641 84.125 233.641c100.848 0 112.023-176 73.6-352v0z" />
<glyph unicode="&#xebf4;" glyph-name="thumb-down3" d="M615.962 896h136.114c44.141 0 79.924-35.509 79.924-80 0-18.010-5.996-34.63-16.069-48 44.239-0.107 80.069-35.576 80.069-80 0-20.345-7.568-38.916-20.087-53.034v0c30.43-11.302 52.087-40.428 52.087-74.966 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-44.183-35.693-80-80.269-80h-191.739c33.578-160.539 17.492-352-111.992-352s-61.877 153.205-112 248.406c-50.122 95.198-143.993 103.593-144 103.594h-192.157c-35.259 0-63.843 28.589-63.843 63.74v352.519c0 35.203 28.375 63.74 63.939 63.74h192.061l192 64h103.962zM336 384c0 0 105.752-23.158 155.875-118.359s-7.742-233.641 84.125-233.641c100.848 0 112.023 176 73.6 352v0h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-239.946l-192-64h-191.906c-18.082 0-32.094-14.305-32.094-31.952v-352.096c0-17.632 14.326-31.952 31.999-31.952h208.001z" />
<glyph unicode="&#xebf5;" glyph-name="thumb-down4" d="M649.6 384h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-239.946l-192-64h-191.906c-18.082 0-32.094-14.305-32.094-31.952v-352.096c0-17.632 14.326-31.952 31.999-31.952h208.001c0 0 105.752-23.158 155.875-118.359s-7.742-233.641 84.125-233.641c100.848 0 112.023 176 73.6 352v0 0z" />
<glyph unicode="&#xebf6;" glyph-name="two-fingers-swipe-left" d="M352 736v-267.737c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v223.958c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-38.652 0-70.902-27.317-78.37-64h-227.23l104 104-24 24-144-144 144-144 24 24-104 104h225.6zM624 0c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebf7;" glyph-name="two-fingers-swipe-left2" d="M420.356 736c6.609 18.779 24.371 32 45.244 32 26.694 0 48-21.614 48-48.276v-303.724h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v80.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-112.28h32v79.795c0 26.558 21.49 48.205 48 48.205 26.694 0 48-21.582 48-48.205v-255.795c0-132.548-107.452-240-240-240-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v313.547h-225.6l104-104-24-24-144 144 144 144 24-24-104-104h228.356z" />
<glyph unicode="&#xebf8;" glyph-name="two-fingers-swipe-right" d="M640 736h225.6l-104-104 24-24 144 144-144 144-24-24 104-104h-225.6v15.889c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-44.183 0-80-35.693-80-80.269v-283.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v176.068zM624 0c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebf9;" glyph-name="two-fingers-swipe-right2" d="M575.7 704v-256h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-48.3h257.6l-104 104 24 24 144-144-144-144-24 24 104 104h-257.6z" />
<glyph unicode="&#xebfa;" glyph-name="two-fingers-swipe-up" d="M608 32.4c5.2-0.3 10.6-0.4 16-0.4 132.5 0 240 107.5 240 240v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 48.5-81.5 108-141.5 200.1-156.7v285.8l-104-104-24 24 144 144 144-144-24-24-104 104v-289.2zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 20.4 0 39-7.6 53-20.1 11.4 30.5 40.6 52.1 75 52.1 44.5 0 80-35.9 80-80.1v-224c13.4 10.1 30 16.1 48 16.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.6z" />
<glyph unicode="&#xebfb;" glyph-name="two-fingers-swipe-up2" d="M607.7 32.4c-110.7 5.6-178.2 69.5-232.1 160.1-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-127.2-98.9-231.2-224-239.5v289.1l104-104 24 24-144 144-144-144 24-24 104 104v-289.2z" />
<glyph unicode="&#xebfc;" glyph-name="two-fingers-swipe-down" d="M640 190.4l104 104 24-24-144-144-144 144 24 24 104-104v625.9c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-337.4zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 20.4 0 39-7.6 53-20.1 11.4 30.5 40.6 52.1 75 52.1 44.5 0 80-35.9 80-80.1v-224c13.4 10.1 30 16.1 48 16.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.6z" />
<glyph unicode="&#xebfd;" glyph-name="two-fingers-swipe-down2" d="M639.7 464v96.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-625.9l-104 104-24-24 144-144 144 144-24 24-104-104v273.6z" />
<glyph unicode="&#xebfe;" glyph-name="two-fingers" d="M896 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-18 0-34.6-6-48-16.1v224c0 44.2-35.5 80.1-80 80.1-34.3 0-63.6-21.6-75-52.1-14.1 12.6-32.6 20.2-53 20.2-44.2 0-80-35.7-80-80.3v-283.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.8 177.5-178.3 277.1-178.3 150.2 0 272 121.8 272 272v0zM624 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v47.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xebff;" glyph-name="two-fingers2" d="M575.7 816.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v336.3z" />
<glyph unicode="&#xec00;" glyph-name="three-fingers-double-tap" d="M639.1 831.3c-20.3 20.2-48.2 32.7-79.1 32.7-34.5 0-65.4-15.6-85.9-40.2-13 5.3-27.2 8.2-42.1 8.2-30.9 0-58.9-12.5-79.2-32.8v0c-20.3-20.3-32.8-48.3-32.8-79.2v-90.5c-20 24.7-32 56.2-32 90.5 0 79.5 64.5 144 144 144 11.3 0 22.4-1.3 33-3.8 25.3 22.3 58.6 35.8 95 35.8 79.5 0 144-64.5 144-144 0-34.3-12-65.8-32-90.5v90.8c0 30.8-12.6 58.8-32.9 79v0 0zM672 616.2c39.1 32.3 64 81.1 64 135.8 0 97.2-78.8 176-176 176-38.7 0-74.5-12.5-103.6-33.7-8 1.1-16.1 1.7-24.4 1.7-97.2 0-176-78.8-176-176 0-54.7 24.9-103.5 64-135.8v0-39.5c-57.7 37-96 101.7-96 175.3 0 114.9 93.1 208 208 208 5.4 0 10.8-0.2 16.1-0.6 32.3 20.6 70.7 32.6 111.9 32.6 114.9 0 208-93.1 208-208 0-73.6-38.3-138.3-96-175.3v39.5zM896 208v191.5c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-18 0-34.6-6-48-16.1v224c0 44.2-35.5 80.1-80 80.1-34.3 0-63.6-21.6-75-52.1-14.1 12.5-32.6 20.1-53 20.1-44.2 0-80-35.7-80-80.3v-283.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.7 177.5-178.2 277.1-178.2 150.2 0 272 121.8 272 272v0zM624-32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v47.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xec01;" glyph-name="three-fingers-double-tap2" d="M639.7 673.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112-45.8 0-85.2-27.5-102.6-66.9-8.2 1.9-16.7 2.9-25.4 2.9-61.9 0-112-50.1-112-112 0-30.5 12.2-58.2 32-78.4v78.4c0 43.9 35.8 80 80 80 18.1 0 34.7-5.9 48-15.9v0.2c0 43.6 35.8 79.7 80 79.7 44.5 0 80-35.7 80-79.7v-78.7zM639.7 632.2c38.6 25.8 64 69.8 64 119.8 0 79.5-64.5 144-144 144-50 0-94.1-25.5-119.9-64.2-2.7 0.1-5.4 0.2-8.1 0.2-79.5 0-144-64.5-144-144 0-49.9 25.4-93.9 64-119.8v-37.1c-57 29.1-96 88.4-96 156.8 0 94.6 74.6 171.7 168.1 175.8 32.3 39.3 81.2 64.3 135.9 64.3 97.2 0 176-78.8 176-176 0-68.4-39-127.7-96-156.8v37zM607.7 752.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v336.3z" />
<glyph unicode="&#xec02;" glyph-name="two-fingers-resize-out" d="M197.744 730.256l22.627-22.627-131.629-131.629h103.258v-32h-160v160h32v-107.487l133.744 133.744zM250.256 741.744l-22.627 22.627 131.629 131.629h-103.258v32h160v-160h-32v107.487l-133.744-133.744zM992 208v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v223.958c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-44.183 0-80-35.693-80-80.269v-283.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM720-32c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0 0z" />
<glyph unicode="&#xec03;" glyph-name="two-fingers-resize-out2" d="M96 596.513l133.744 133.744 22.627-22.627-131.629-131.629h103.258v-32h-160v160h32v-107.487zM416 875.487l-133.744-133.744-22.627 22.627 131.629 131.629h-103.258v32h160v-160h-32v107.487zM736 752.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v336.291z" />
<glyph unicode="&#xec04;" glyph-name="two-fingers-resize-in" d="M422.1 928l22.6-22.6-131.6-131.7h103.3v-32h-160v160h32v-107.5l133.7 133.8zM58.6 523.5l-22.6 22.6 131.6 131.6h-103.2v32h160v-160h-32v107.5l-133.8-133.7zM992.4 213.7v191.6c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-18 0-34.6-6-48-16.1v224c0 44.2-35.5 80.1-80 80.1-34.3 0-63.6-21.6-75-52.1-14.1 12.5-32.6 20.1-53 20.1-44.2 0-80-35.7-80-80.3v-283.4c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.4-131.8 177.5-178.3 277.1-178.3 150.2-0.1 272 121.7 272 271.9v0zM720.4-26.3c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.5c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.2c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v47.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0 0z" />
<glyph unicode="&#xec05;" glyph-name="two-fingers-resize-in2" d="M454.1 928l22.6-22.6-131.6-131.7h103.3v-32h-160v160h32v-107.5l133.7 133.8zM90.6 523.5l-22.6 22.6 131.6 131.6h-103.2v32h160v-160h-32v107.5l-133.8-133.7zM736.4 758c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.8c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.2 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.7c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v336.3z" />
<glyph unicode="&#xec06;" glyph-name="two-fingers-rotate" d="M138.212 561.906c-5.9 19.278-9.075 39.747-9.075 60.957 0 114.875 93.125 208 208 208 21.21 0 41.679-3.175 60.957-9.075v0l-83.585 83.585 22.627 22.627 113.137-113.137-33.137-33.137v-2.054c-0.453 0.232-0.908 0.462-1.364 0.69l-78.636-78.636-22.627 22.627 68.478 68.478c-14.619 3.934-29.989 6.032-45.85 6.032-97.202 0-176-78.798-176-176 0-15.861 2.098-31.232 6.032-45.85l68.478 68.478 22.627-22.627-78.636-78.636c0.228-0.456 0.458-0.91 0.69-1.364h-2.054l-33.137-33.137-113.137 113.137 22.627 22.627 83.585-83.585zM993.137 206.863v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v223.958c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-44.183 0-80-35.693-80-80.269v-283.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM721.137-33.137c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xec07;" glyph-name="two-fingers-rotate2" d="M170.212 561.906c-5.9 19.278-9.075 39.747-9.075 60.957 0 114.875 93.125 208 208 208 21.21 0 41.679-3.175 60.957-9.075v0l-83.585 83.585 22.627 22.627 113.137-113.137-33.137-33.137v-2.054c-0.453 0.232-0.908 0.462-1.364 0.69l-78.636-78.636-22.627 22.627 68.478 68.478c-14.619 3.934-29.989 6.032-45.85 6.032-97.202 0-176-78.798-176-176 0-15.861 2.098-31.232 6.032-45.85l68.478 68.478 22.627-22.627-78.636-78.636c0.228-0.456 0.458-0.91 0.69-1.364h-2.054l-33.137-33.137-113.137 113.137 22.627 22.627 83.585-83.585zM737.137 751.154c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v336.291z" />
<glyph unicode="&#xec08;" glyph-name="one-finger-swipe-left" d="M416 736h-225.6l104-104-24-24-144 144 144 144 24-24-104-104h227.23c7.468 36.683 39.718 64 78.37 64 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 267.737zM687.96 0c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0z" />
<glyph unicode="&#xec09;" glyph-name="one-finger-swipe-left2" d="M420.356 736c6.609 18.779 24.371 32 45.244 32 26.694 0 48-21.614 48-48.276v-303.724h32v144.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-112.291h32v80.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-112.28h32v79.795c0 26.558 21.49 48.205 48 48.205 26.694 0 48-21.582 48-48.205v-255.795c0-132.548-107.452-240-240-240-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v313.547h-225.6l104-104-24-24-144 144 144 144 24-24-104-104h228.356z" />
<glyph unicode="&#xec0a;" glyph-name="one-finger-swipe-right" d="M510.3 768h227.2l-104 104 24 24 144-144-144-144-24 24 104 104h-225.5v-143.9c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.6c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v283.5c0 44.6 35.8 80.3 80 80.3 38.9 0 70.9-27.5 78.3-64v0zM623.9 0c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0z" />
<glyph unicode="&#xec0b;" glyph-name="one-finger-swipe-right2" d="M479.7 704v-288h32v144.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 21 0 38.6-13.3 45.2-32h256.7l-104 104 24 24 144-144-144-144-24 24 104 104h-253.9z" />
<glyph unicode="&#xec0c;" glyph-name="one-finger-swipe-up" d="M640 32.6c125.1 8.8 224 119.3 224 239.4 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 53.9-90.6 121.4-154.5 232.1-160.1v289.2l-104-104-24 24 144 144 144-144-24-24-104 104v-289zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec0d;" glyph-name="one-finger-swipe-up2" d="M607.7 64.4c-110.7 5.6-178.2 69.5-232.1 160.1-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v144.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-127.2-98.9-231.2-224-239.5v289.1l104-104 24 24-144 144-144-144 24-24 104 104v-289.2z" />
<glyph unicode="&#xec0e;" glyph-name="one-finger-swipe-down" d="M896 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-20.3 0-38.8-7.6-52.9-20.1-11.3 30.5-40.5 52.2-75.1 52.2-18 0-34.6-5.9-48-15.9v159.6c0 44.3-35.5 80.3-80 80.3-44.2 0-80-35.7-80-80.3v-283.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.8 177.5-178.3 277.1-178.3 150.2 0 272 121.8 272 272v0zM640 527.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-125.3-107.5-240-240-240-120.3 0-191.6 65.6-248 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v111.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-369.4l-104 104-24-24 144-144 144 144-24 24-104-104v337.4h-0.1z" />
<glyph unicode="&#xec0f;" glyph-name="one-finger-swipe-down2" d="M639.7 512v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v144.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-401.9l-104 104-24-24 144-144 144 144-24 24-104-104v289.6z" />
<glyph unicode="&#xec10;" glyph-name="one-finger" d="M623.96 32c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0 0zM896 272c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.468c0 44.576 35.817 80.269 80 80.269 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec11;" glyph-name="one-finger2" d="M607.7 624.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec12;" glyph-name="one-finger-double-tap" d="M601.856 599.916c24.025 33.921 38.144 75.354 38.144 120.084 0 114.875-93.125 208-208 208s-208-93.125-208-208c0-73.639 38.267-138.34 96-175.302v39.531c-39.088 32.281-64 81.117-64 135.771 0 97.202 78.798 176 176 176s176-78.798 176-176c0-42.666-15.182-81.785-40.437-112.252 12.046-0.804 23.578-3.515 34.293-7.832v0 0zM544 629.483c20.013 24.732 32 56.225 32 90.517 0 79.529-64.471 144-144 144s-144-64.471-144-144c0-34.293 11.987-65.786 32-90.517v90.796c0 61.761 50.144 111.721 112 111.721 61.73 0 112-50.019 112-111.721v-90.796zM623.96-32c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0zM896 208c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.468c0 44.576 35.817 80.269 80 80.269 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec13;" glyph-name="one-finger-double-tap2" d="M586.1 635.6c13.7 25.1 21.5 53.8 21.5 84.4 0 97.2-78.8 176-176 176s-176-78.8-176-176c0-68.4 39-127.7 96-156.8v37.1c-38.6 25.8-64 69.8-64 119.8 0 79.5 64.5 144 144 144s144-64.5 144-144c0-29.8-9.1-57.5-24.6-80.5 2.8 0.3 5.7 0.5 8.6 0.5 9.4-0.1 18.3-1.7 26.5-4.5v0 0 0zM511.7 641.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112s-112-50.1-112-112c0-30.5 12.2-58.2 32-78.4v78.4c0 43.9 35.8 80 80 80 44.5 0 80-35.8 80-80v-78.4zM607.7 560.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec14;" glyph-name="one-finger-tap" d="M544 661.5c20 24.7 32 56.2 32 90.5 0 79.5-64.5 144-144 144s-144-64.5-144-144c0-34.3 12-65.8 32-90.5v90.8c0 61.7 50.1 111.7 112 111.7 61.7 0 112-50 112-111.7v-90.8zM623.9 0c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0zM896 240c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec15;" glyph-name="one-finger-tap2" d="M512 673.616c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v78.352c0 43.906 35.817 80.032 80 80.032 44.491 0 80-35.831 80-80.032v-78.352zM608 592.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-144.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v112.291z" />
<glyph unicode="&#xec16;" glyph-name="one-finger-tap-hold" d="M760 768h72v32h-64v94.9c54.3-7.8 96-54.4 96-110.9 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 56.4 41.7 103.1 96 110.9v-126.9h24zM624-32c-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9 13.4 9.6 30 15.5 48 15.5 44.5 0 80-35.8 80-80v-191.5c0-150.2-121.8-272-272-272v0 0 0zM623.9 0c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0 0zM752 640c79.5 0 144 64.5 144 144s-64.5 144-144 144-144-64.5-144-144 64.5-144 144-144v0 0z" />
<glyph unicode="&#xec17;" glyph-name="one-finger-tap-hold2" d="M727.7 768h72v32h-64v94.9c54.3-7.8 96-54.4 96-110.9 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 56.4 41.7 103.1 96 110.9v-126.9h24zM479.7 609.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112s-112-50.1-112-112c0-30.5 12.2-58.2 32-78.4v78.4c0 43.9 35.8 80 80 80 44.5 0 80-35.8 80-80v-78.4zM719.7 640c79.5 0 144 64.5 144 144s-64.5 144-144 144-144-64.5-144-144 64.5-144 144-144v0zM575.7 528.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec18;" glyph-name="thumb-finger-tap" d="M352 586.517c-26.399 32.624-66.764 53.483-112 53.483-79.529 0-144-64.471-144-144 0-66.343 44.864-122.207 105.908-138.908-7.794 14.815-14.781 29.396-20.713 43.57-31.924 19.733-53.195 55.052-53.195 95.338 0 61.856 50.144 112 112 112 44.95 0 83.715-26.48 101.548-64.692 3.514-2.213 7-4.503 10.452-6.857v50.067zM576 661.483c20.013 24.732 32 56.225 32 90.517 0 79.529-64.471 144-144 144s-144-64.471-144-144c0-34.293 11.987-65.786 32-90.517v90.796c0 61.761 50.144 111.721 112 111.721 61.73 0 112-50.019 112-111.721v-90.796zM655.96 0c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0zM928 240c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.468c0 44.576 35.817 80.269 80 80.269 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec19;" glyph-name="thumb-finger-tap2" d="M383.51 500.721c0.324 3.717 0.49 7.479 0.49 11.279 0 70.692-57.308 128-128 128s-128-57.308-128-128c0-68.116 53.206-123.805 120.326-127.774-8.404 12.856-16.215 25.141-23.242 36.86-37.851 12.868-65.084 48.71-65.084 90.913 0 53.019 42.981 96 96 96 47.12 0 86.311-33.948 94.449-78.72 11.162-8.815 22.243-18.462 33.061-28.559v0 0zM544 673.616c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v78.352c0 43.906 35.817 80.032 80 80.032 44.491 0 80-35.831 80-80.032v-78.352zM640 592.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-144.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v112.291z" />
<glyph unicode="&#xec1a;" glyph-name="one-finger-click" d="M416 960v-128h32v128h-32zM620.9 877.5l-99.5-80.5 20.1-24.9 99.5 80.6c0 0-20.1 24.8-20.1 24.8zM685 662l-124.7 28.8-7.2-31.2 124.7-28.8 7.2 31.2zM186.1 630.8l124.7 28.8-7.2 31.2-124.7-28.8 7.2-31.2zM223 852.7l99.5-80.6 20.1 24.9-99.5 80.6-20.1-24.9zM623.9-32c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0zM896 208c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec1b;" glyph-name="one-finger-click2" d="M416 928v-128h32v128h-32zM620.9 845.5l-99.5-80.5 20.1-24.9 99.5 80.6c0.1 0-20.1 24.8-20.1 24.8zM685.1 630l-124.7 28.8-7.2-31.2 124.7-28.8 7.2 31.2zM186.2 598.8l124.7 28.8-7.2 31.2-124.7-28.8 7.2-31.2zM223 820.7l99.5-80.6 20.1 24.9-99.5 80.6-20.1-24.9zM608 528.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec1c;" glyph-name="three-fingers-swipe-left" d="M352 736v-235.7c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.4-131.9 177.5-178.4 277.1-178.4 150.2 0 272 121.8 272 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-6-48-16v256.4c0 44.2-35.5 80.1-80 80.1-20.3 0-38.9-7.6-53-20.1-11.3 30.4-40.4 52.1-75 52.1-34.3 0-63.6-21.6-75-52-14.1 12.5-32.6 20-53 20-44.2 0-80-36-80-80.1v-15.9h-241.6l104 104-24 24-144-144 144-144 24 24-104 104h241.6zM624 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v303.9c0 26.8 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-335.9h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xec1d;" glyph-name="three-fingers-swipe-left2" d="M192 704h225.6v-313.547c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v304.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-272.28h-32v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-20.873 0-38.635-13.221-45.244-32v0h-228.356l104 104-24 24-144-144 144-144 24 24-104 104z" />
<glyph unicode="&#xec1e;" glyph-name="three-fingers-swipe-right" d="M672 768v15.9c0 44.2-35.5 80.1-80 80.1-20.3 0-38.9-7.6-53-20.1-11.3 30.4-40.4 52.1-75 52.1-34.3 0-63.6-21.6-75-52-14.1 12.5-32.6 20-53 20-44.2 0-80-36-80-80.1v-283.6c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.9 177.5-178.4 277.1-178.4 150.2 0 272 121.8 272 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-6-48-16v208.5h225.6l-104-104 24-24 144 144-144 144-24-24 104-104h-225.6zM528 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v303.9c0 26.8 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-335.9h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xec1f;" glyph-name="three-fingers-swipe-right2" d="M865.3 736h-196.3c-6.5 18.6-24.2 32-45.4 32-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.2-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v288h193.6l-104-104 24-24 144 144-144 144-24-24 104-104z" />
<glyph unicode="&#xec20;" glyph-name="three-fingers-swipe-up" d="M608 32.4v289.2l-104-104-24 24 144 144 144-144-24-24-104 104v-289.1c125.1 8.2 224 112.3 224 239.5v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v335.9c0 26.6-21.3 48.1-48 48.1-26.5 0-48-21.3-48-48.1v-303.9h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 53.9-90.6 121.4-154.5 232.1-160.1zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.7c0 44.1 35.8 80.1 80 80.1 20.4 0 39-7.6 53-20 11.4 30.4 40.6 52 75 52 34.6 0 63.7-21.7 75-52.1 14.1 12.5 32.7 20.1 53 20.1 44.5 0 80-35.9 80-80.1v-256.4c13.4 10.1 30 16 48 16 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec21;" glyph-name="three-fingers-swipe-up2" d="M640 321.6v-289.3c126.8 6.4 223.7 111.3 223.7 239.7v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 53.3-89.6 123.9-153.1 232.4-159.9v0 289l-104-104-24 24 144 144 144-144-24-24-104 104z" />
<glyph unicode="&#xec22;" glyph-name="three-fingers-swipe-down" d="M608 480v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.379c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v335.896c0 26.567-21.306 48.104-48 48.104-26.51 0-48-21.294-48-48.104v-593.496l104 104 24-24-144-144-144 144 24 24 104-104v289.6zM896 272c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.647c0 44.059 35.817 80.090 80 80.090 20.43 0 38.966-7.561 53.040-20.022 11.352 30.432 40.631 52.022 74.96 52.022 34.57 0 63.718-21.655 74.998-52.068 14.113 12.496 32.672 20.068 53.002 20.068 44.491 0 80-35.867 80-80.111v-256.354c13.371 10.052 29.99 16.010 48 16.010 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec23;" glyph-name="three-fingers-swipe-down2" d="M607.7 190.4v625.9c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-561.9l104 104 24-24-144-144-144 144 24 24 104-104z" />
<glyph unicode="&#xec24;" glyph-name="three-fingers" d="M624 32v0c132.548 0 240 107.452 240 240v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v335.896c0 26.567-21.306 48.104-48 48.104-26.51 0-48-21.294-48-48.104v-303.896h-32v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.379c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541zM896 272c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.647c0 44.059 35.817 80.090 80 80.090 20.43 0 38.966-7.561 53.040-20.022 11.352 30.432 40.631 52.022 74.96 52.022 34.57 0 63.718-21.655 74.998-52.068 14.113 12.496 32.672 20.068 53.002 20.068 44.491 0 80-35.867 80-80.111v-256.354c13.371 10.052 29.99 16.010 48 16.010 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec25;" glyph-name="three-fingers2" d="M607.7 816.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3z" />
<glyph unicode="&#xec26;" glyph-name="three-fingers-double-tap3" d="M613.966 823.845c12.979 5.259 27.168 8.155 42.034 8.155 61.856 0 112-50.144 112-112 0-5.394-0.381-10.699-1.118-15.89v0c0.737-5.172 1.118-10.457 1.118-15.832v-58.796c20.013 24.732 32 56.225 32 90.517 0 79.529-64.471 144-144 144-11.349 0-22.391-1.313-32.983-3.795-25.356 22.283-58.608 35.795-95.017 35.795s-69.661-13.512-95.017-35.795c-10.592 2.482-21.634 3.795-32.983 3.795-79.529 0-144-64.471-144-144 0-34.293 11.987-65.786 32-90.517v90.305c0 31.031 12.565 59.113 32.873 79.422l-0.069-0.015c20.268 20.268 48.268 32.804 79.196 32.804 14.848 0 29.021-2.889 41.988-8.136 20.545 24.539 51.45 40.136 86.012 40.136 34.489 0 65.4-15.614 85.966-40.155v0 0zM768 584.229c39.088 32.281 64 81.117 64 135.771 0 97.202-78.798 176-176 176-8.291 0-16.448-0.573-24.433-1.682-29.059 21.183-64.853 33.682-103.567 33.682s-74.507-12.499-103.567-33.682c-7.986 1.109-16.143 1.682-24.433 1.682-97.202 0-176-78.798-176-176 0-54.654 24.912-103.489 64-135.771v0-39.531c-57.733 36.962-96 101.663-96 175.302 0 114.875 93.125 208 208 208 5.427 0 10.806-0.208 16.128-0.616 32.303 20.648 70.69 32.616 111.872 32.616s79.569-11.968 111.872-32.616v0c5.323 0.408 10.701 0.616 16.128 0.616 114.875 0 208-93.125 208-208 0-73.639-38.267-138.34-96-175.302v39.531zM592-32v0c132.548 0 240 107.452 240 240v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v335.896c0 26.567-21.306 48.104-48 48.104-26.51 0-48-21.294-48-48.104v-303.896h-32v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.379c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541zM864 208c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.647c0 44.059 35.817 80.090 80 80.090 20.43 0 38.966-7.561 53.040-20.022 11.352 30.432 40.631 52.022 74.96 52.022 34.57 0 63.718-21.655 74.998-52.068 14.113 12.496 32.672 20.068 53.002 20.068 44.491 0 80-35.867 80-80.111v-256.354c13.371 10.052 29.99 16.010 48 16.010 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec27;" glyph-name="three-fingers-double-tap4" d="M767.7 609.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112-8.8 0-17.3-1-25.4-2.9v0c-17.4 39.4-56.8 66.9-102.6 66.9s-85.2-27.5-102.6-66.9c-8.2 1.9-16.7 2.9-25.4 2.9-61.9 0-112-50.1-112-112 0-30.5 12.2-58.2 32-78.4v0 78.4c0 43.9 35.8 80 80 80 18.1 0 34.7-5.9 48-15.9v0.2c0 43.6 35.8 79.7 80 79.7 44.5 0 80-35.7 80-79.7v-0.3c13.4 10.1 30 16.1 48 16.1 44.5 0 80-35.7 80-79.7v-78.8zM767.7 568.2c38.6 25.8 64 69.8 64 119.8 0 79.5-64.5 144-144 144-2.7 0-5.4-0.1-8.1-0.2v0c-25.8 38.7-69.9 64.2-119.9 64.2s-94.1-25.5-119.9-64.2c-2.7 0.1-5.4 0.2-8.1 0.2-79.5 0-144-64.5-144-144 0-49.9 25.4-93.9 64-119.8v0-37.1c-57 29.1-96 88.4-96 156.8 0 94.6 74.6 171.7 168.1 175.8 32.3 39.3 81.2 64.3 135.9 64.3s103.6-25 135.9-64.2c93.5-4.1 168.1-81.3 168.1-175.8 0-68.4-39-127.7-96-156.8v37zM607.7 752.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3z" />
<glyph unicode="&#xec28;" glyph-name="two-fingers-swipe-up3" d="M320 543.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.481c71.874-7.965 128-68.941 128-142.982v-432.137h-288v432.137c0 74.062 56.001 135.035 128 142.985zM672 639.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM336 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160z" />
<glyph unicode="&#xec29;" glyph-name="two-fingers-swipe-up4" d="M672 637.522v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM320 541.522v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.481c71.874-7.965 128-68.941 128-142.982v-432.137h-288v432.137c0 74.062 56.001 135.035 128 142.985zM336 478.4c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 190.4v-32h160v32h-160zM256 126.4v-32h160v32h-160zM688 574.4c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 286.4v-32h160v32h-160zM608 222.4v-32h160v32h-160z" />
<glyph unicode="&#xec2a;" glyph-name="one-finger-double-tap3" d="M704 232.104c77.96 61.531 128 156.87 128 263.896 0 185.568-150.432 336-336 336s-336-150.432-336-336c0-107.026 50.040-202.365 128-263.896v42.193c-59.089 55.459-96 134.271-96 221.704 0 167.895 136.105 304 304 304s304-136.105 304-304c0-87.433-36.911-166.245-96-221.704v-42.193zM704 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240s-240-107.452-240-240c0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 114.641 0 208-93.076 208-207.891v-119.923zM496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM496 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM496 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec2b;" glyph-name="one-finger-double-tap4" d="M496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160zM704 232.104c77.96 61.531 128 156.87 128 263.896 0 185.568-150.432 336-336 336s-336-150.432-336-336c0-107.026 50.040-202.365 128-263.896v42.193c-59.089 55.459-96 134.271-96 221.704 0 167.895 136.105 304 304 304s304-136.105 304-304c0-87.433-36.911-166.245-96-221.704v-42.193zM704 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240s-240-107.452-240-240c0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 114.641 0 208-93.076 208-207.891v-119.923z" />
<glyph unicode="&#xec2c;" glyph-name="two-fingers-swipe-down3" d="M320 224h-128v432.137c0 79.465 64.471 143.863 144 143.863 79.367 0 144-64.41 144-143.863v-432.137h-128v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6zM672 224h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6zM336 768c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 736v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 704c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 448v-32h160v32h-160zM256 384v-32h160v32h-160zM688 864c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 832v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 800c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 544v-32h160v32h-160zM608 480v-32h160v32h-160z" />
<glyph unicode="&#xec2d;" glyph-name="two-fingers-swipe-down4" d="M320 192h-128v432.137c0 79.465 64.471 143.863 144 143.863 79.367 0 144-64.41 144-143.863v-432.137h-128v-161.6l104 104 24-24-144-144-144 144 24 24 104-104v161.6zM672 192h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128v-161.6l104 104 24-24-144-144-144 144 24 24 104-104v161.6zM336 704c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 416v-32h160v32h-160zM256 352v-32h160v32h-160zM688 800c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 512v-32h160v32h-160zM608 448v-32h160v32h-160z" />
<glyph unicode="&#xec2e;" glyph-name="two-fingers-swipe-right3" d="M704 384v-416h-288v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-79.839h193.6l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6zM208 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM208 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM208 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM208 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM128 192v-32h160v32h-160zM128 128v-32h160v32h-160zM560 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM560 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM560 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM480 288v-32h160v32h-160zM480 224v-32h160v32h-160z" />
<glyph unicode="&#xec2f;" glyph-name="two-fingers-swipe-right4" d="M704 384v-416h-288v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-79.839h193.6l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6zM208 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM208 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM128 192v-32h160v32h-160zM128 128v-32h160v32h-160zM560 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM480 288v-32h160v32h-160zM480 224v-32h160v32h-160z" />
<glyph unicode="&#xec30;" glyph-name="two-fingers-swipe-left3" d="M320.865 416c7.903 71.999 68.971 128 143.135 128 79.367 0 144-64.41 144-143.863v-432.137h-288v416h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.465zM464 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM464 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM464 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM384 192v-32h160v32h-160zM384 128v-32h160v32h-160zM816 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM816 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM816 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM816 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM736 288v-32h160v32h-160zM736 224v-32h160v32h-160z" />
<glyph unicode="&#xec31;" glyph-name="two-fingers-swipe-left4" d="M322.465 416c7.903 71.999 68.971 128 143.135 128 79.367 0 144-64.41 144-143.863v-432.137h-288v416h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.465zM465.6 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM385.6 192v-32h160v32h-160zM385.6 128v-32h160v32h-160zM817.6 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM817.6 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM737.6 288v-32h160v32h-160zM737.6 224v-32h160v32h-160z" />
<glyph unicode="&#xec32;" glyph-name="one-finger-tap3" d="M672 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221zM496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM496 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM496 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec33;" glyph-name="one-finger-tap4" d="M496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160zM672 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221z" />
<glyph unicode="&#xec34;" glyph-name="one-finger-tap-hold3" d="M800 768h64v32h-64v94.866c54.277-7.764 96-54.442 96-110.866 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 56.424 41.723 103.102 96 110.866v-126.866h32zM368 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM368 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM368 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM368 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM288 288v-32h160v32h-160zM288 224v-32h160v32h-160zM784 640c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM544 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221z" />
<glyph unicode="&#xec35;" glyph-name="one-finger-tap-hold4" d="M800 894.866c54.277-7.764 96-54.442 96-110.866 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 56.424 41.723 103.102 96 110.866v-126.866h32v126.866zM368 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM368 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM288 288v-32h160v32h-160zM288 224v-32h160v32h-160zM784 640c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM800 800v-32h64v32h-64zM544 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221z" />
<glyph unicode="&#xec36;" glyph-name="one-finger-click3" d="M528 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160zM512 864v-160h32v160h-32zM799.347 758.232l-113.137-113.137 22.627-22.627 113.137 113.137-22.627 22.627zM927.742 480.258h-160v-32h160v32zM128.258 448.258h160v32h-160v-32zM234.026 735.605l113.137-113.137 22.627 22.627-113.137 113.137-22.627-22.627z" />
<glyph unicode="&#xec37;" glyph-name="one-finger-click4" d="M528 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160zM512 864v-160h32v160h-32zM799.347 758.232l-113.137-113.137 22.627-22.627 113.137 113.137-22.627 22.627zM927.742 480.258h-160v-32h160v32zM128.258 448.258h160v32h-160v-32zM234.026 735.605l113.137-113.137 22.627 22.627-113.137 113.137-22.627-22.627z" />
<glyph unicode="&#xec38;" glyph-name="one-finger-swipe-horizontally" d="M671.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493c8.015 72.095 69.029 128 143.107 128 73.921 0 135.061-55.989 143.103-128zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec39;" glyph-name="one-finger-swipe-horizontally2" d="M671.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493c8.015 72.095 69.029 128 143.107 128 73.921 0 135.061-55.989 143.103-128zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec3a;" glyph-name="one-finger-swipe" d="M671.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493c7.43 66.832 60.403 119.751 127.107 127.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c66.581-7.393 119.649-60.373 127.103-127.117v0 0zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec3b;" glyph-name="one-finger-swipe2" d="M384.893 512c7.43 66.832 60.403 119.751 127.107 127.122v0 194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c66.581-7.393 119.649-60.373 127.103-127.117h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec3c;" glyph-name="two-fingers-double-tap" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM896 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 58.68 0 111.784-24.386 149.646-63.591 21.792 91.495 104.121 159.591 202.354 159.591 114.641 0 208-93.076 208-207.891v-119.923zM896 274.296c59.089 55.459 96 134.271 96 221.704 0 167.895-136.105 304-304 304-97.522 0-184.318-45.92-239.946-117.318-34.675 13.757-72.481 21.318-112.054 21.318-167.895 0-304-136.105-304-304 0-87.433 36.911-166.245 96-221.704v-42.193c-77.96 61.531-128 156.87-128 263.896 0 185.568 150.432 336 336 336 35.495 0 69.704-5.504 101.821-15.705 61.516 68.568 150.81 111.705 250.179 111.705 185.568 0 336-150.432 336-336 0-107.026-50.040-202.365-128-263.896v42.193z" />
<glyph unicode="&#xec3d;" glyph-name="two-fingers-double-tap2" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM896 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 58.68 0 111.784-24.386 149.646-63.591 21.792 91.495 104.121 159.591 202.354 159.591 114.641 0 208-93.076 208-207.891v-119.923zM896 274.296c59.089 55.459 96 134.271 96 221.704 0 167.895-136.105 304-304 304-97.522 0-184.318-45.92-239.946-117.318-34.675 13.757-72.481 21.318-112.054 21.318-167.895 0-304-136.105-304-304 0-87.433 36.911-166.245 96-221.704v-42.193c-77.96 61.531-128 156.87-128 263.896 0 185.568 150.432 336 336 336 35.495 0 69.704-5.504 101.821-15.705 61.516 68.568 150.81 111.705 250.179 111.705 185.568 0 336-150.432 336-336 0-107.026-50.040-202.365-128-263.896v42.193z" />
<glyph unicode="&#xec3e;" glyph-name="two-fingers-tap" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM864 332.83c39.718 42.82 64 100.16 64 163.17 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-63.011 24.282-120.35 64-163.17v-44.221c-58.733 49.892-96 124.29-96 207.391 0 150.221 121.779 272 272 272 44.233 0 85.999-10.558 122.917-29.292 48.361 75.359 132.891 125.292 229.083 125.292 150.221 0 272-121.779 272-272 0-83.101-37.267-157.499-96-207.391v44.221z" />
<glyph unicode="&#xec3f;" glyph-name="two-fingers-tap2" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM864 332.83c39.718 42.82 64 100.16 64 163.17 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-63.011 24.282-120.35 64-163.17v-44.221c-58.733 49.892-96 124.29-96 207.391 0 150.221 121.779 272 272 272 44.233 0 85.999-10.558 122.917-29.292 48.361 75.359 132.891 125.292 229.083 125.292 150.221 0 272-121.779 272-272 0-83.101-37.267-157.499-96-207.391v44.221z" />
<glyph unicode="&#xec40;" glyph-name="one-finger-swipe-left3" d="M384.893 512c8.015 72.095 69.029 128 143.107 128 79.367 0 144-64.543 144-144.161v-527.839h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec41;" glyph-name="one-finger-swipe-left4" d="M384.893 512v0 0c8.015 72.095 69.029 128 143.107 128 79.367 0 144-64.543 144-144.161v-527.839h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec42;" glyph-name="one-finger-swipe-right3" d="M640 480v-512h-288v527.839c0 79.727 64.471 144.161 144 144.161 73.921 0 135.061-55.989 143.103-128h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6zM496 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM496 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM496 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec43;" glyph-name="one-finger-swipe-right4" d="M639.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v527.839c0 79.727 64.471 144.161 144 144.161 73.921 0 135.061-55.989 143.103-128v0 0zM496 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec44;" glyph-name="one-finger-swipe-up3" d="M512 639.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec45;" glyph-name="one-finger-swipe-up4" d="M512 639.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec46;" glyph-name="one-finger-swipe-down3" d="M544 224v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128zM528 864c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 832v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 800c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 544v-32h160v32h-160zM448 480v-32h160v32h-160z" />
<glyph unicode="&#xec47;" glyph-name="one-finger-swipe-down4" d="M512 224h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6zM528 832c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 544v-32h160v32h-160zM448 480v-32h160v32h-160z" />
<glyph unicode="&#xec48;" glyph-name="file-numbers" d="M288 480v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM576 544h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM720 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348z" />
<glyph unicode="&#xec49;" glyph-name="file-numbers2" d="M288 480v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM576 544h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM720 448l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562z" />
<glyph unicode="&#xec4a;" glyph-name="file-pages" d="M576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 512h64.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-64.033v64zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec4b;" glyph-name="file-pages2" d="M576 416h-64v32h96v-128h-95.844c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h95.844v-32h-96.006c-17.67 0-31.994-14.199-31.994-31.994v-96.012c0-17.67 14.199-31.994 31.994-31.994h64.006v64zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64z" />
<glyph unicode="&#xec4c;" glyph-name="file-app" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec4d;" glyph-name="file-app2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM384 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec4e;" glyph-name="file-png" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM480 480v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec4f;" glyph-name="file-png2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM480 480l96-160h32v224h-32v-160l-96 160h-32v-224h32v160zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec50;" glyph-name="file-pdf2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM672 448v64h128v32h-160v-224h32v96h96v32h-96zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec51;" glyph-name="file-pdf3" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM672 448v64h128v32h-160v-224h32v96h96v32h-96zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec52;" glyph-name="file-mp3" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec53;" glyph-name="file-mp32" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec54;" glyph-name="file-mp4" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM736 416h-57.6l57.6 80v-80zM736 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec55;" glyph-name="file-mp42" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM736 416v80l-57.6-80h57.6zM736 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec56;" glyph-name="file-mov" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM512.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xec57;" glyph-name="file-mov2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM512.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM720 376l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xec58;" glyph-name="file-jpg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 416v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec59;" glyph-name="file-jpg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 416v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec5a;" glyph-name="file-key" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM480 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM288 406.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM736 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xec5b;" glyph-name="file-key2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM480 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM288 406.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM736 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xec5c;" glyph-name="file-html" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM896 352v-32h-160v224h32v-192h128zM416 512v-192h32v192h64v32h-160v-32h64zM288 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM624 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xec5d;" glyph-name="file-html2" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM896 352h-128v192h-32v-224h160v32zM416 512v-192h32v192h64v32h-160v-32h64zM288 448h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM624 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xec5e;" glyph-name="file-css" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec5f;" glyph-name="file-css2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM416 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec60;" glyph-name="file-java" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM624 376l48 168h32l-64-224h-32l-64 224h32l48-168zM160 416v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM864 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM799.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec61;" glyph-name="file-java2" d="M159.817 640c-52.918 0-95.817-42.952-95.817-95.961v-224.078c0-52.998 42.898-95.961 95.817-95.961h736.366c52.918 0 95.817 42.952 95.817 95.961v224.078c0 52.998-42.898 95.961-95.817 95.961h-736.366zM624 376l48 168h32l-64-224h-32l-64 224h32l48-168zM160 416h32v-32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.431 31.967 31.705v160.295h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v31.811zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM864 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM799.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec62;" glyph-name="file-psd" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM672 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec63;" glyph-name="file-psd2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM672 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec64;" glyph-name="file-ai" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec65;" glyph-name="file-ai2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM608 512h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec66;" glyph-name="file-bmp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 424v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM288 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec67;" glyph-name="file-bmp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 424v-104h95.844c35.432 0 64.156 28.407 64.156 64 0 19.107-8.366 36.258-21.641 47.985 13.273 11.687 21.641 28.805 21.641 48.015 0 35.346-28.605 64-64.156 64h-95.844v-120zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM288 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec68;" glyph-name="file-dwg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM592 320h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec69;" glyph-name="file-dwg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM592 320h16v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96 48-96h16zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec6a;" glyph-name="file-eps" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec6b;" glyph-name="file-eps2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM288 416h96v32h-96v64h128v32h-160v-224h160v32h-128v64zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec6c;" glyph-name="file-tiff" d="M223.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM224.115 608c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM288 512v-192h32v192h64v32h-160v-32h64zM448 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 448v64h128v32h-160v-224h32v96h96v32h-96zM768 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec6d;" glyph-name="file-tiff2" d="M223.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM288 512v-192h32v192h64v32h-160v-32h64zM448 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 448v64h128v32h-160v-224h32v96h96v32h-96zM768 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec6e;" glyph-name="file-ots" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec6f;" glyph-name="file-ots2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec70;" glyph-name="file-php" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec71;" glyph-name="file-php2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec72;" glyph-name="file-py" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM352 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xec73;" glyph-name="file-py2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM352 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416l64 96v32h-32v-32l-48-72-48 72v32h-32v-32l64-96v-96h32v96z" />
<glyph unicode="&#xec74;" glyph-name="file-c" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xec75;" glyph-name="file-c2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM608 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xec76;" glyph-name="file-sql" d="M565.621 323.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM537.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec77;" glyph-name="file-sql2" d="M565.621 323.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM537.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM320.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec78;" glyph-name="file-rb" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM409.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM544 424v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM576 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec79;" glyph-name="file-rb2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM409.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM544 424v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM576 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec7a;" glyph-name="file-cpp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec7b;" glyph-name="file-cpp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM416 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec7c;" glyph-name="file-tga" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM703.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec7d;" glyph-name="file-tga2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM703.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec7e;" glyph-name="file-dxf" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec7f;" glyph-name="file-dxf2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM512 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec80;" glyph-name="file-doc" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM800 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xec81;" glyph-name="file-doc2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM800 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64z" />
<glyph unicode="&#xec82;" glyph-name="file-odt" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec83;" glyph-name="file-odt2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec84;" glyph-name="file-xls" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM608 352v-32h-160v224h32v-192h128zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec85;" glyph-name="file-xls2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM608 352v-32h-160v224h32v-192h128zM704.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64z" />
<glyph unicode="&#xec86;" glyph-name="file-docx" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM160 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xec87;" glyph-name="file-docx2" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM800 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xec88;" glyph-name="file-ppt" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec89;" glyph-name="file-ppt2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec8a;" glyph-name="file-asp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec8b;" glyph-name="file-asp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM384 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec8c;" glyph-name="file-ics" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM672.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec8d;" glyph-name="file-ics2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM672.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec8e;" glyph-name="file-dat" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec8f;" glyph-name="file-dat2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM576 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec90;" glyph-name="file-xml" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec91;" glyph-name="file-xml2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM528 448l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec92;" glyph-name="file-yml" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM352 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec93;" glyph-name="file-yml2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM352 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM528 448l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec94;" glyph-name="file-h" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM576 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xec95;" glyph-name="file-h2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM576 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xec96;" glyph-name="file-exe" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM672 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xec97;" glyph-name="file-exe2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM288 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM672 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xec98;" glyph-name="file-avi" d="M224.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM223.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM528 376l48 168h32l-64-224h-32l-64 224h32l48-168zM672 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32z" />
<glyph unicode="&#xec99;" glyph-name="file-avi2" d="M224.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM528 376l48 168h32l-64-224h-32l-64 224h32l48-168zM672 512h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160z" />
<glyph unicode="&#xec9a;" glyph-name="file-odp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xec9b;" glyph-name="file-odp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xec9c;" glyph-name="file-dotx" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM160 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM608 512v-192h32v192h64v32h-160v-32h64zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xec9d;" glyph-name="file-dotx2" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM608 512v-192h32v192h64v32h-160v-32h64zM800 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xec9e;" glyph-name="file-xlsx" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM224 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM512 352v-32h-160v224h32v-192h128zM608.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xec9f;" glyph-name="file-xlsx2" d="M159.817 640c-52.918 0-95.817-42.952-95.817-95.961v-224.078c0-52.998 42.898-95.961 95.817-95.961h736.366c52.918 0 95.817 42.952 95.817 95.961v224.078c0 52.998-42.898 95.961-95.817 95.961h-736.366zM224 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM512 352v-32h-160v224h32v-192h128zM608.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xeca0;" glyph-name="file-ods" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca1;" glyph-name="file-ods2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca2;" glyph-name="file-pps" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca3;" glyph-name="file-pps2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca4;" glyph-name="file-dot" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca5;" glyph-name="file-dot2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca6;" glyph-name="file-txt" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-192h32v192h64v32h-160v-32h64zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca7;" glyph-name="file-txt2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-192h32v192h64v32h-160v-32h64zM512 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca8;" glyph-name="file-rtf" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM313.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512 512v-192h32v192h64v32h-160v-32h64zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xeca9;" glyph-name="file-rtf2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM313.6 416l64-96h38.4l-64 96c35.361 0.083 64 28.459 64 64 0 35.346-28.605 64-64.156 64h-95.844v-224h32v96h25.6zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512 512v-192h32v192h64v32h-160v-32h64zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecaa;" glyph-name="file-m4v" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM544 416h-57.6l57.6 80v-80zM544 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecab;" glyph-name="file-m4v2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM544 416v80l-57.6-80h57.6zM544 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM720 376l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xecac;" glyph-name="file-flv" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 448v64h128v32h-160v-224h32v96h96v32h-96zM608 352v-32h-160v224h32v-192h128zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecad;" glyph-name="file-flv2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM288 448h96v-32h-96v-96h-32v224h160v-32h-128v-64zM608 352v-32h-160v224h32v-192h128zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecae;" glyph-name="file-mpg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecaf;" glyph-name="file-mpg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecb0;" glyph-name="file-quicktime" d="M469.621 323.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM441.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xecb1;" glyph-name="file-quicktime2" d="M469.621 323.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM441.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM608 512h-64v32h160v-32h-64v-192h-32v192z" />
<glyph unicode="&#xecb2;" glyph-name="file-mid" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM368 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM640 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecb3;" glyph-name="file-mid2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM368 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM640 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecb4;" glyph-name="file-3gp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecb5;" glyph-name="file-3gp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecb6;" glyph-name="file-aiff" d="M191.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM192.115 608c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM320 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM255.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM416 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM544 448v64h128v32h-160v-224h32v96h96v32h-96zM736 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecb7;" glyph-name="file-aiff2" d="M191.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM320 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM255.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM416 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM544 448v64h128v32h-160v-224h32v96h96v32h-96zM736 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecb8;" glyph-name="file-aac" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM800 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecb9;" glyph-name="file-aac2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM800 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecba;" glyph-name="file-wav" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM400 320h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecbb;" glyph-name="file-wav2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM400 320h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecbc;" glyph-name="file-zip2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM640 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecbd;" glyph-name="file-zip3" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM640 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecbe;" glyph-name="file-ott" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xecbf;" glyph-name="file-ott2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xecc0;" glyph-name="file-tgz" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM672 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xecc1;" glyph-name="file-tgz2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM672 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xecc2;" glyph-name="file-dmg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecc3;" glyph-name="file-dmg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecc4;" glyph-name="file-iso" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM480.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM672.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM671.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xecc5;" glyph-name="file-iso2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM480.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM672.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM671.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xecc6;" glyph-name="file-rar" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM313.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM697.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecc7;" glyph-name="file-rar2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM313.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM697.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecc8;" glyph-name="file-gif" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM640 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecc9;" glyph-name="file-gif2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM416 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM640 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecca;" glyph-name="document-file-numbers" d="M416 384v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM704 448h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM848 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745z" />
<glyph unicode="&#xeccb;" glyph-name="document-file-numbers2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 384v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM704 448h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM848 352l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96z" />
<glyph unicode="&#xeccc;" glyph-name="document-file-pages" d="M384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM320 448.255c0 34.939 28.576 63.745 63.826 63.745h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511zM416 416h64.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-64.033v64zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xeccd;" glyph-name="document-file-pages2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecce;" glyph-name="document-file-app" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xeccf;" glyph-name="document-file-app2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd0;" glyph-name="document-file-png" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM608 384v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecd1;" glyph-name="document-file-png2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM608 384l96-160h32v224h-32v-160l-96 160h-32v-224h32v160zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecd2;" glyph-name="document-file-pdf" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM800 352v64h128v32h-160v-224h32v96h96v32h-96zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecd3;" glyph-name="document-file-pdf2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM800 352v64h128v32h-160v-224h32v96h96v32h-96zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecd4;" glyph-name="document-file-mp3" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd5;" glyph-name="document-file-mp32" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd6;" glyph-name="document-file-mp4" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM864 320h-57.6l57.6 80v-80zM864 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd7;" glyph-name="document-file-mp42" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM864 320v80l-57.6-80h57.6zM864 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd8;" glyph-name="document-file-mov" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecd9;" glyph-name="document-file-mov2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM848 280l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xecda;" glyph-name="document-file-jpg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 320v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecdb;" glyph-name="document-file-jpg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 320v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecdc;" glyph-name="document-file-key" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM608 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM416 310.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM864 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xecdd;" glyph-name="document-file-key2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM416 310.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM864 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xecde;" glyph-name="document-file-html" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM928 256v-32h-160v224h32v-192h128zM448 416v-192h32v192h64v32h-160v-32h64zM320 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xecdf;" glyph-name="document-file-html2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512h735.531c35.488 0 64.235-28.539 64.235-63.745v-224.511c0-34.939-28.759-63.745-64.235-63.745h-735.531c-35.488 0-64.235 28.539-64.235 63.745v224.511c0 34.939 28.759 63.745 64.235 63.745zM928 256h-128v192h-32v-224h160v32zM448 416v-192h32v192h64v32h-160v-32h64zM320 352h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xece0;" glyph-name="document-file-css" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xece1;" glyph-name="document-file-css2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xece2;" glyph-name="document-file-java" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM656 280l48 168h32l-64-224h-32l-64 224h32l48-168zM192 320v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM896 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece3;" glyph-name="document-file-java2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM656 280l48 168h32l-64-224h-32l-64 224h32l48-168zM192 320h32v-32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.431 31.967 31.705v160.295h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v31.811zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM896 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece4;" glyph-name="document-file-psd" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM800 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xece5;" glyph-name="document-file-psd2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM800 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xece6;" glyph-name="document-file-ai" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM736 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM543.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece7;" glyph-name="document-file-ai2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM736 416h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160zM608 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM543.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece8;" glyph-name="document-file-bmp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 328v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM416 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xece9;" glyph-name="document-file-bmp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 328v-104h95.844c35.432 0 64.156 28.407 64.156 64 0 19.107-8.366 36.258-21.641 47.985 13.273 11.687 21.641 28.805 21.641 48.015 0 35.346-28.605 64-64.156 64h-95.844v-120zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM416 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecea;" glyph-name="document-file-dwg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM720 224h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xeceb;" glyph-name="document-file-dwg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM720 224h16v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96 48-96h16zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecec;" glyph-name="document-file-eps" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeced;" glyph-name="document-file-eps2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 320h96v32h-96v64h128v32h-160v-224h160v32h-128v64zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecee;" glyph-name="document-file-tiff" d="M608 544h320.236c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-320.236v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-320.236c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961h320.236v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM256.115 512c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM320 416v-192h32v192h64v32h-160v-32h64zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecef;" glyph-name="document-file-tiff2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-351.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h351.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM256.115 512h671.77c35.643 0 64.115-28.539 64.115-63.745v-224.511c0-34.939-28.705-63.745-64.115-63.745h-671.77c-35.643 0-64.115 28.539-64.115 63.745v224.511c0 34.939 28.705 63.745 64.115 63.745zM320 416v-192h32v192h64v32h-160v-32h64zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecf0;" glyph-name="document-file-ots" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecf1;" glyph-name="document-file-ots2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecf2;" glyph-name="document-file-php" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecf3;" glyph-name="document-file-php2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 352h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecf4;" glyph-name="document-file-py" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h159.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-159.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-351.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h351.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM287.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xecf5;" glyph-name="document-file-py2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-383.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h383.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM287.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320l64 96v32h-32v-32l-48-72-48 72v32h-32v-32l64-96v-96h32v96z" />
<glyph unicode="&#xecf6;" glyph-name="document-file-c" d="M672 544h223.781c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-223.781v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM640 128h-287.781c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961h287.781v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM480 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM704 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecf7;" glyph-name="document-file-c2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-319.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h319.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM704 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecf8;" glyph-name="document-file-sql" d="M661.621 227.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM633.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h223.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-223.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM351.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM896 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xecf9;" glyph-name="document-file-sql2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-319.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h319.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM661.621 227.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM633.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM416.156 448h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM896 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xecfa;" glyph-name="document-file-rb" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h223.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-223.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM351.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM505.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM480 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 328v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM672 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfb;" glyph-name="document-file-rb2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-319.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h319.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM505.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM480 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 328v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM672 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfc;" glyph-name="document-file-cpp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfd;" glyph-name="document-file-cpp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfe;" glyph-name="document-file-tga" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM896 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xecff;" glyph-name="document-file-tga2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM896 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xed00;" glyph-name="document-file-dxf" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed01;" glyph-name="document-file-dxf2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed02;" glyph-name="document-file-doc" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM928 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xed03;" glyph-name="document-file-doc2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM928 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64z" />
<glyph unicode="&#xed04;" glyph-name="document-file-odt" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed05;" glyph-name="document-file-odt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed06;" glyph-name="document-file-xls" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM736 256v-32h-160v224h32v-192h128zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed07;" glyph-name="document-file-xls2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM736 256v-32h-160v224h32v-192h128zM832.156 448h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64z" />
<glyph unicode="&#xed08;" glyph-name="document-file-docx" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM192 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM736 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed09;" glyph-name="document-file-docx2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512h735.531c35.488 0 64.235-28.539 64.235-63.745v-224.511c0-34.939-28.759-63.745-64.235-63.745h-735.531c-35.488 0-64.235 28.539-64.235 63.745v224.511c0 34.939 28.759 63.745 64.235 63.745zM192 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM736 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM832 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xed0a;" glyph-name="document-file-ppt" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed0b;" glyph-name="document-file-ppt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed0c;" glyph-name="document-file-asp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed0d;" glyph-name="document-file-asp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed0e;" glyph-name="document-file-ics" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM704 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM800.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed0f;" glyph-name="document-file-ics2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM704 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM800.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed10;" glyph-name="document-file-dat" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed11;" glyph-name="document-file-dat2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed12;" glyph-name="document-file-xml" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed13;" glyph-name="document-file-xml2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM656 352l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed14;" glyph-name="document-file-yml" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM480 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed15;" glyph-name="document-file-yml2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM480 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM656 352l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed16;" glyph-name="document-file-h" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xed17;" glyph-name="document-file-h2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM704 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xed18;" glyph-name="document-file-exe" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM800 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xed19;" glyph-name="document-file-exe2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM800 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xed1a;" glyph-name="document-file-avi" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM479.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM688 280l48 168h32l-64-224h-32l-64 224h32l48-168zM832 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32z" />
<glyph unicode="&#xed1b;" glyph-name="document-file-avi2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM544 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM479.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM688 280l48 168h32l-64-224h-32l-64 224h32l48-168zM832 416h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160z" />
<glyph unicode="&#xed1c;" glyph-name="document-file-odp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed1d;" glyph-name="document-file-odp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed1e;" glyph-name="document-file-dotx" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM192 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed1f;" glyph-name="document-file-dotx2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512h735.531c35.488 0 64.235-28.539 64.235-63.745v-224.511c0-34.939-28.759-63.745-64.235-63.745h-735.531c-35.488 0-64.235 28.539-64.235 63.745v224.511c0 34.939 28.759 63.745 64.235 63.745zM192 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xed20;" glyph-name="document-file-xlsx" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM256 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM544 256v-32h-160v224h32v-192h128zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed21;" glyph-name="document-file-xlsx2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM256 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM544 256v-32h-160v224h32v-192h128zM640.156 448h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed22;" glyph-name="document-file-ods" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed23;" glyph-name="document-file-ods2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed24;" glyph-name="document-file-pps" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed25;" glyph-name="document-file-pps2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed26;" glyph-name="document-file-dot" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed27;" glyph-name="document-file-dot2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed28;" glyph-name="document-file-txt" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed29;" glyph-name="document-file-txt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM640 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed2a;" glyph-name="document-file-rtf" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM441.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416v-192h32v192h64v32h-160v-32h64zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed2b;" glyph-name="document-file-rtf2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM441.6 320l64-96h38.4l-64 96c35.361 0.083 64 28.459 64 64 0 35.346-28.605 64-64.156 64h-95.844v-224h32v96h25.6zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416v-192h32v192h64v32h-160v-32h64zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed2c;" glyph-name="document-file-m4v" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM672 320h-57.6l57.6 80v-80zM672 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed2d;" glyph-name="document-file-m4v2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM672 320v80l-57.6-80h57.6zM672 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM848 280l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xed2e;" glyph-name="document-file-flv" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 352v64h128v32h-160v-224h32v96h96v32h-96zM736 256v-32h-160v224h32v-192h128zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed2f;" glyph-name="document-file-flv2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 352h96v-32h-96v-96h-32v224h160v-32h-128v-64zM736 256v-32h-160v224h32v-192h128zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed30;" glyph-name="document-file-mpg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed31;" glyph-name="document-file-mpg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed32;" glyph-name="document-file-qt" d="M597.621 227.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM569.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM736 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed33;" glyph-name="document-file-qt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM597.621 227.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM569.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM736 416h-64v32h160v-32h-64v-192h-32v192z" />
<glyph unicode="&#xed34;" glyph-name="document-file-mid" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM496 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM768 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xed35;" glyph-name="document-file-mid2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM496 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM768 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xed36;" glyph-name="document-file-3gp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed37;" glyph-name="document-file-3gp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed38;" glyph-name="document-file-aiff" d="M608 544h320.236c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-320.236v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-320.236c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961h320.236v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM256.115 512c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM384 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed39;" glyph-name="document-file-aiff2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-351.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h351.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM256.115 512h671.77c35.643 0 64.115-28.539 64.115-63.745v-224.511c0-34.939-28.705-63.745-64.115-63.745h-671.77c-35.643 0-64.115 28.539-64.115 63.745v224.511c0 34.939 28.705 63.745 64.115 63.745zM384 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM319.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed3a;" glyph-name="document-file-aac" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM928 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xed3b;" glyph-name="document-file-aac2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM928 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xed3c;" glyph-name="document-file-wav" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM528 224h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed3d;" glyph-name="document-file-wav2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM528 224h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed3e;" glyph-name="document-file-zip" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM768 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed3f;" glyph-name="document-file-zip2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM768 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed40;" glyph-name="document-file-ott" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed41;" glyph-name="document-file-ott2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed42;" glyph-name="document-file-tgz" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM800 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xed43;" glyph-name="document-file-tgz2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM800 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xed44;" glyph-name="document-file-dmg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed45;" glyph-name="document-file-dmg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed46;" glyph-name="document-file-iso" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM799.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed47;" glyph-name="document-file-iso2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM799.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed48;" glyph-name="document-file-rar" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM441.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM825.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed49;" glyph-name="document-file-rar2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM441.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM825.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed4a;" glyph-name="document-file-gif" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM768 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed4b;" glyph-name="document-file-gif2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM768 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed4c;" glyph-name="home" d="M1024 369.556l-512 397.426-512-397.428v162.038l512 397.426 512-397.428zM896 384v-384h-256v256h-256v-256h-256v384l384 288z" />
<glyph unicode="&#xed4d;" glyph-name="home2" d="M512 928l-512-512 96-96 96 96v-416h256v192h128v-192h256v416l96-96 96 96-512 512zM512 512c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64z" />
<glyph unicode="&#xed4e;" glyph-name="home3" d="M1024 352l-192 192v288h-128v-160l-192 192-512-512v-32h128v-320h320v192h128v-192h320v320h128z" />
<glyph unicode="&#xed4f;" glyph-name="office" d="M0-64h512v1024h-512v-1024zM320 832h128v-128h-128v128zM320 576h128v-128h-128v128zM320 320h128v-128h-128v128zM64 832h128v-128h-128v128zM64 576h128v-128h-128v128zM64 320h128v-128h-128v128zM576 640h448v-64h-448zM576-64h128v256h192v-256h128v576h-448z" />
<glyph unicode="&#xed50;" glyph-name="newspaper" d="M896 704v128h-896v-704c0-35.346 28.654-64 64-64h864c53.022 0 96 42.978 96 96v544h-128zM832 128h-768v640h768v-640zM128 640h640v-64h-640zM512 512h256v-64h-256zM512 384h256v-64h-256zM512 256h192v-64h-192zM128 512h320v-320h-320z" />
<glyph unicode="&#xed51;" glyph-name="pencil" d="M864 960c88.364 0 160-71.634 160-160 0-36.020-11.91-69.258-32-96l-64-64-224 224 64 64c26.742 20.090 59.978 32 96 32zM64 224l-64-288 288 64 592 592-224 224-592-592zM715.578 596.422l-448-448-55.156 55.156 448 448 55.156-55.156z" />
<glyph unicode="&#xed52;" glyph-name="pencil2" d="M384 320l128 64 448 448-64 64-448-448-64-128zM289.3 92.902c-31.632 66.728-65.666 100.762-132.396 132.394l99.096 272.792 128 77.912 384 384h-192l-384-384-192-640 640 192 384 384v192l-384-384-77.912-128z" />
<glyph unicode="&#xed53;" glyph-name="quill" d="M0-64c128 384 463 1024 1024 1024-263-211-384-704-576-704s-192 0-192 0l-192-320h-64z" />
<glyph unicode="&#xed54;" glyph-name="pen" d="M1018.17 668.11l-286.058 286.058c-9.334 9.334-21.644 7.234-27.356-4.666l-38.354-79.904 267.198-267.198 79.904 38.354c11.9 5.712 14 18.022 4.666 27.356zM615.384 824.616l-263.384-21.95c-17.5-2.166-32.080-5.898-37.090-28.752-0.006-0.024-0.012-0.042-0.018-0.066-71.422-343.070-314.892-677.848-314.892-677.848l57.374-57.374 271.986 271.99c-5.996 12.53-9.36 26.564-9.36 41.384 0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96c-14.82 0-28.852 3.364-41.384 9.36l-271.988-271.986 57.372-57.374c0 0 334.778 243.47 677.848 314.892 0.024 0.006 0.042 0.012 0.066 0.018 22.854 5.010 26.586 19.59 28.752 37.090l21.95 263.384-273.232 273.232z" />
<glyph unicode="&#xed55;" glyph-name="blog" d="M384 960v-96c73.482 0 144.712-14.37 211.716-42.71 64.768-27.394 122.958-66.632 172.948-116.624s89.228-108.18 116.624-172.948c28.342-67.004 42.712-138.238 42.712-211.718h96c0 353.46-286.54 640-640 640zM384 768v-96c94.022 0 182.418-36.614 248.9-103.098 66.486-66.484 103.1-154.878 103.1-248.902h96c0 247.422-200.576 448-448 448zM480 576l-64-64-224-64-192-416 25.374-25.374 232.804 232.804c-1.412 5.286-2.178 10.84-2.178 16.57 0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64c-5.732 0-11.282 0.764-16.568 2.178l-232.804-232.804 25.372-25.374 416 192 64 224 64 64-160 160z" />
<glyph unicode="&#xed56;" glyph-name="eyedropper" d="M986.51 922.51c-49.988 49.986-131.032 49.986-181.020 0l-172.118-172.118-121.372 121.372-135.764-135.764 106.426-106.426-472.118-472.118c-8.048-8.048-11.468-18.958-10.3-29.456h-0.244v-160c0-17.674 14.328-32 32-32h160c0 0 2.664 0 4 0 9.212 0 18.426 3.516 25.456 10.544l472.118 472.118 106.426-106.426 135.764 135.764-121.372 121.372 172.118 172.118c49.986 49.988 49.986 131.032 0 181.020zM173.090 0h-109.090v109.090l469.574 469.572 109.088-109.088-469.572-469.574z" />
<glyph unicode="&#xed57;" glyph-name="droplet" d="M864.626 486.838c-65.754 183.44-205.11 348.15-352.626 473.162-147.516-125.012-286.87-289.722-352.626-473.162-40.664-113.436-44.682-236.562 12.584-345.4 65.846-125.14 198.632-205.438 340.042-205.438s274.196 80.298 340.040 205.44c57.27 108.838 53.25 231.962 12.586 345.398zM738.764 201.044c-43.802-83.252-132.812-137.044-226.764-137.044-55.12 0-108.524 18.536-152.112 50.652 13.242-1.724 26.632-2.652 40.112-2.652 117.426 0 228.668 67.214 283.402 171.242 44.878 85.292 40.978 173.848 23.882 244.338 14.558-28.15 26.906-56.198 36.848-83.932 22.606-63.062 40.024-156.34-5.368-242.604z" />
<glyph unicode="&#xed58;" glyph-name="paint-format" d="M1024 384v384h-192v64c0 35.2-28.8 64-64 64h-704c-35.2 0-64-28.8-64-64v-192c0-35.2 28.8-64 64-64h704c35.2 0 64 28.8 64 64v64h128v-256h-576v-128h-32c-17.674 0-32-14.326-32-32v-320c0-17.674 14.326-32 32-32h128c17.674 0 32 14.326 32 32v320c0 17.674-14.326 32-32 32h-32v64h576zM768 768h-704v64h704v-64z" />
<glyph unicode="&#xed59;" glyph-name="image" d="M959.884 832c0.040-0.034 0.082-0.076 0.116-0.116v-767.77c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.772c0.034 0.040 0.076 0.082 0.114 0.114h895.77zM960 896h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64v0zM832 672c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM896 128h-768v128l224 384 256-320h64l224 192z" />
<glyph unicode="&#xed5a;" glyph-name="images" horiz-adv-x="1152" d="M1088 832h-64v64c0 35.2-28.8 64-64 64h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h64v-64c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64zM128 768v-640h-63.886c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-63.884h-768c-35.2 0-64-28.8-64-64v0zM1088 0.116c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-767.768zM960 608c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM1024 64h-768v128l224 384 256-320h64l224 192z" />
<glyph unicode="&#xed5b;" glyph-name="camera" d="M304 352c0-114.876 93.124-208 208-208s208 93.124 208 208-93.124 208-208 208-208-93.124-208-208zM960 704h-224c-16 64-32 128-96 128h-256c-64 0-80-64-96-128h-224c-35.2 0-64-28.8-64-64v-576c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v576c0 35.2-28.8 64-64 64zM512 68c-156.85 0-284 127.148-284 284 0 156.85 127.15 284 284 284 156.852 0 284-127.15 284-284 0-156.852-127.146-284-284-284zM960 512h-128v64h128v-64z" />
<glyph unicode="&#xed5c;" glyph-name="headphones" d="M288 384h-64v-448h64c17.6 0 32 14.4 32 32v384c0 17.6-14.4 32-32 32zM736 384c-17.602 0-32-14.4-32-32v-384c0-17.6 14.398-32 32-32h64v448h-64zM1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-61.412 10.83-120.29 30.656-174.848-19.478-33.206-30.656-71.87-30.656-113.152 0-112.846 83.448-206.188 192-221.716v443.418c-31.914-4.566-61.664-15.842-87.754-32.378-5.392 26.718-8.246 54.364-8.246 82.676 0 229.75 186.25 416 416 416s416-186.25 416-416c0-28.314-2.83-55.968-8.22-82.696-26.1 16.546-55.854 27.848-87.78 32.418v-443.44c108.548 15.532 192 108.874 192 221.714 0 41.274-11.178 79.934-30.648 113.138 19.828 54.566 30.648 113.452 30.648 174.866z" />
<glyph unicode="&#xed5d;" glyph-name="music" d="M960 960h64v-736c0-88.366-100.29-160-224-160s-224 71.634-224 160c0 88.368 100.29 160 224 160 62.684 0 119.342-18.4 160-48.040v368.040l-512-113.778v-494.222c0-88.366-100.288-160-224-160s-224 71.634-224 160c0 88.368 100.288 160 224 160 62.684 0 119.342-18.4 160-48.040v624.040l576 128z" />
<glyph unicode="&#xed5e;" glyph-name="play" d="M981.188 799.892c-143.632 20.65-302.332 32.108-469.186 32.108-166.86 0-325.556-11.458-469.194-32.108-27.53-107.726-42.808-226.75-42.808-351.892 0-125.14 15.278-244.166 42.808-351.89 143.638-20.652 302.336-32.11 469.194-32.11 166.854 0 325.552 11.458 469.186 32.11 27.532 107.724 42.812 226.75 42.812 351.89 0 125.142-15.28 244.166-42.812 351.892zM384.002 256v384l320-192-320-192z" />
<glyph unicode="&#xed5f;" glyph-name="film" d="M0 832v-768h1024v768h-1024zM192 128h-128v128h128v-128zM192 384h-128v128h128v-128zM192 640h-128v128h128v-128zM768 128h-512v640h512v-640zM960 128h-128v128h128v-128zM960 384h-128v128h128v-128zM960 640h-128v128h128v-128zM384 640v-384l256 192z" />
<glyph unicode="&#xed60;" glyph-name="video-camera" d="M384 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160s-160 71.634-160 160zM0 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160s-160 71.634-160 160zM768 352v96c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-320c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v96l256-160v448l-256-160zM640 192h-512v192h512v-192z" />
<glyph unicode="&#xed61;" glyph-name="dice" d="M864 768h-512c-88 0-160-72-160-160v-512c0-88 72-160 160-160h512c88 0 160 72 160 160v512c0 88-72 160-160 160zM416 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM416 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM608 256c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM828.76 832c-14.93 72.804-79.71 128-156.76 128h-512c-88 0-160-72-160-160v-512c0-77.046 55.196-141.83 128-156.76v636.76c0 35.2 28.8 64 64 64h636.76z" />
<glyph unicode="&#xed62;" glyph-name="pacman" d="M964.73 781.196c-93.902 109.45-233.21 178.804-388.73 178.804-282.77 0-512-229.23-512-512s229.23-512 512-512c155.52 0 294.828 69.356 388.728 178.804l-324.728 333.196 324.73 333.196zM704 839.398c39.432 0 71.398-31.964 71.398-71.398 0-39.432-31.966-71.398-71.398-71.398s-71.398 31.966-71.398 71.398c0 39.432 31.966 71.398 71.398 71.398z" />
<glyph unicode="&#xed63;" glyph-name="spades" d="M817.57 611.85c-193.566 143.858-260.266 259.018-305.566 348.148v0c-0.004 0-0.004 0.002-0.004 0.002v-0.002c-45.296-89.13-112-204.292-305.566-348.148-330.036-245.286-19.376-587.668 253.758-399.224-17.796-116.93-78.53-202.172-140.208-238.882v-37.744h384.032v37.74c-61.682 36.708-122.41 121.954-140.212 238.884 273.136-188.446 583.8 153.94 253.766 399.226z" />
<glyph unicode="&#xed64;" glyph-name="clubs" d="M786.832 567.228c-59.032 0-112.086-24.596-149.852-64.694-15.996-16.984-43.762-37.112-73.8-54.81 14.11 53.868 58.676 121.7 89.628 151.456 39.64 38.17 63.984 91.83 63.984 151.5 0.006 114.894-91.476 208.096-204.788 209.32-113.32-1.222-204.796-94.426-204.796-209.318 0-59.672 24.344-113.33 63.986-151.5 30.954-29.756 75.52-97.588 89.628-151.456-30.042 17.7-57.806 37.826-73.8 54.81-37.768 40.098-90.82 64.694-149.85 64.694-114.386 0-207.080-93.664-207.080-209.328 0-115.638 92.692-209.338 207.080-209.338 59.042 0 112.082 25.356 149.85 65.452 16.804 17.872 46.444 40.138 78.292 58.632-3.002-147.692-73.532-256.168-145.318-298.906v-37.742h384.014v37.74c-71.792 42.736-142.32 151.216-145.32 298.906 31.852-18.494 61.488-40.768 78.292-58.632 37.766-40.094 90.808-65.452 149.852-65.452 114.386 0 207.078 93.7 207.078 209.338-0.002 115.664-92.692 209.328-207.080 209.328z" />
<glyph unicode="&#xed65;" glyph-name="diamonds" d="M512 960l-320-512 320-512 320 512z" />
<glyph unicode="&#xed66;" glyph-name="bullhorn" d="M1024 530.744c0 200.926-58.792 363.938-131.482 365.226 0.292 0.006 0.578 0.030 0.872 0.030h-82.942c0 0-194.8-146.336-475.23-203.754-8.56-45.292-14.030-99.274-14.030-161.502s5.466-116.208 14.030-161.5c280.428-57.418 475.23-203.756 475.23-203.756h82.942c-0.292 0-0.578 0.024-0.872 0.032 72.696 1.288 131.482 164.298 131.482 365.224zM864.824 220.748c-9.382 0-19.532 9.742-24.746 15.548-12.63 14.064-24.792 35.96-35.188 63.328-23.256 61.232-36.066 143.31-36.066 231.124 0 87.81 12.81 169.89 36.066 231.122 10.394 27.368 22.562 49.266 35.188 63.328 5.214 5.812 15.364 15.552 24.746 15.552 9.38 0 19.536-9.744 24.744-15.552 12.634-14.064 24.796-35.958 35.188-63.328 23.258-61.23 36.068-143.312 36.068-231.122 0-87.804-12.81-169.888-36.068-231.124-10.39-27.368-22.562-49.264-35.188-63.328-5.208-5.806-15.36-15.548-24.744-15.548zM251.812 530.744c0 51.95 3.81 102.43 11.052 149.094-47.372-6.554-88.942-10.324-140.34-10.324-67.058 0-67.058 0-67.058 0l-55.466-94.686v-88.17l55.46-94.686c0 0 0 0 67.060 0 51.398 0 92.968-3.774 140.34-10.324-7.236 46.664-11.048 97.146-11.048 149.096zM368.15 317.828l-127.998 24.51 81.842-321.544c4.236-16.634 20.744-25.038 36.686-18.654l118.556 47.452c15.944 6.376 22.328 23.964 14.196 39.084l-123.282 229.152zM864.824 411.27c-3.618 0-7.528 3.754-9.538 5.992-4.87 5.42-9.556 13.86-13.562 24.408-8.962 23.6-13.9 55.234-13.9 89.078s4.938 65.478 13.9 89.078c4.006 10.548 8.696 18.988 13.562 24.408 2.010 2.24 5.92 5.994 9.538 5.994 3.616 0 7.53-3.756 9.538-5.994 4.87-5.42 9.556-13.858 13.56-24.408 8.964-23.598 13.902-55.234 13.902-89.078 0-33.842-4.938-65.478-13.902-89.078-4.004-10.548-8.696-18.988-13.56-24.408-2.008-2.238-5.92-5.992-9.538-5.992z" />
<glyph unicode="&#xed67;" glyph-name="connection" horiz-adv-x="1280" d="M640 384c105.87 0 201.87-43.066 271.402-112.598l-90.468-90.468c-46.354 46.356-110.356 75.066-180.934 75.066s-134.578-28.71-180.934-75.066l-90.468 90.468c69.532 69.532 165.532 112.598 271.402 112.598zM187.452 452.548c120.88 120.88 281.598 187.452 452.548 187.452s331.668-66.572 452.55-187.452l-90.51-90.508c-96.706 96.704-225.28 149.96-362.040 149.96-136.762 0-265.334-53.256-362.038-149.962l-90.51 90.51zM988.784 825.562c106.702-45.132 202.516-109.728 284.782-191.996v0l-90.508-90.508c-145.056 145.056-337.92 224.942-543.058 224.942-205.14 0-398-79.886-543.058-224.942l-90.51 90.51c82.268 82.266 178.082 146.862 284.784 191.994 110.504 46.738 227.852 70.438 348.784 70.438s238.278-23.7 348.784-70.438zM576 64c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64z" />
<glyph unicode="&#xed68;" glyph-name="podcast" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-220.054 138.836-407.664 333.686-480.068l-13.686-31.932h384l-13.686 31.932c194.85 72.404 333.686 260.014 333.686 480.068zM486.79 325.174c-22.808 9.788-38.79 32.436-38.79 58.826 0 35.346 28.654 64 64 64s64-28.654 64-64c0-26.39-15.978-49.044-38.786-58.834l-25.214 58.834-25.21-58.826zM538.268 322.708c58.092 12.118 101.732 63.602 101.732 125.292 0 70.694-57.306 128-128 128-70.692 0-128-57.306-128-128 0-61.692 43.662-113.122 101.76-125.228l-74.624-174.122c-91.23 39.15-155.136 129.784-155.136 235.35 0 141.384 114.616 268 256 268s256-126.616 256-268c0-105.566-63.906-196.2-155.136-235.35l-74.596 174.058zM688.448-27.708l-73.924 172.486c126.446 42.738 217.476 162.346 217.476 303.222 0 176.73-143.268 320-320 320-176.73 0-320-143.27-320-320 0-140.876 91.030-260.484 217.476-303.222l-73.924-172.486c-159.594 68.488-271.386 227.034-271.386 411.708 0 247.332 200.502 459.834 447.834 459.834s447.834-212.502 447.834-459.834c0-184.674-111.792-343.22-271.386-411.708z" />
<glyph unicode="&#xed69;" glyph-name="feed" d="M384 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM664.348 729.474c99.852-54.158 167.652-159.898 167.652-281.474s-67.8-227.316-167.652-281.474c44.066 70.126 71.652 170.27 71.652 281.474s-27.586 211.348-71.652 281.474zM288 448c0-111.204 27.584-211.348 71.652-281.474-99.852 54.16-167.652 159.898-167.652 281.474s67.8 227.314 167.652 281.474c-44.068-70.126-71.652-170.27-71.652-281.474zM96 448c0-171.9 54.404-326.184 140.652-431.722-142.302 90.948-236.652 250.314-236.652 431.722s94.35 340.774 236.652 431.722c-86.248-105.538-140.652-259.822-140.652-431.722zM787.352 879.72c142.298-90.946 236.648-250.312 236.648-431.72s-94.35-340.774-236.648-431.72c86.244 105.536 140.648 259.82 140.648 431.72s-54.404 326.184-140.648 431.72z" />
<glyph unicode="&#xed6a;" glyph-name="mic" d="M480 256c88.366 0 160 71.634 160 160v384c0 88.366-71.634 160-160 160s-160-71.634-160-160v-384c0-88.366 71.636-160 160-160zM704 512v-96c0-123.71-100.29-224-224-224-123.712 0-224 100.29-224 224v96h-64v-96c0-148.238 112.004-270.3 256-286.22v-129.78h-128v-64h320v64h-128v129.78c143.994 15.92 256 137.982 256 286.22v96h-64z" />
<glyph unicode="&#xed6b;" glyph-name="book" d="M896 832v-832h-672c-53.026 0-96 42.98-96 96s42.974 96 96 96h608v768h-640c-70.398 0-128-57.6-128-128v-768c0-70.4 57.602-128 128-128h768v896h-64zM224.056 128v0c-0.018-0.002-0.038 0-0.056 0-17.672 0-32-14.326-32-32s14.328-32 32-32c0.018 0 0.038 0.002 0.056 0.002v-0.002h607.89v64h-607.89z" />
<glyph unicode="&#xed6c;" glyph-name="books" horiz-adv-x="1152" d="M224 832h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM192 640h-128v64h128v-64zM544 832h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM512 640h-128v64h128v-64zM765.088 782.52l-171.464-86.394c-15.716-7.918-22.096-27.258-14.178-42.976l287.978-571.548c7.918-15.718 27.258-22.098 42.976-14.178l171.464 86.392c15.716 7.92 22.096 27.26 14.178 42.974l-287.978 571.55c-7.92 15.718-27.26 22.1-42.976 14.18z" />
<glyph unicode="&#xed6d;" glyph-name="library" horiz-adv-x="1088" d="M1024 0v64h-64v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-64v-64h-64v-64h1088v64h-64zM512 960h64l512-320v-64h-1088v64l512 320z" />
<glyph unicode="&#xed6e;" glyph-name="file-text" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 512h448v-64h-448zM256 384h448v-64h-448zM256 256h448v-64h-448zM256 640h448v-64h-448z" />
<glyph unicode="&#xed6f;" glyph-name="profile" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 384h448v-64h-448zM256 256h448v-64h-448zM320 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM480 576h-128c-52.8 0-96-28.8-96-64v-64h320v64c0 35.2-43.2 64-96 64z" />
<glyph unicode="&#xed70;" glyph-name="file-empty" d="M917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
<glyph unicode="&#xed71;" glyph-name="files-empty" d="M917.806 602.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-368c-44.114 0-80-35.888-80-80v-736c0-44.112 35.886-80 80-80h608c44.112 0 80 35.888 80 80v496c0 14.332-4.372 39.35-42.194 90.924zM785.374 657.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-608c-8.672 0-16 7.328-16 16v736c0 8.672 7.328 16 16 16 0 0 367.956 0.002 368 0v-224c0-17.672 14.324-32 32-32h224v-496zM602.924 917.804c-51.574 37.822-76.592 42.196-90.924 42.196h-368c-44.112 0-80-35.888-80-80v-736c0-38.632 27.528-70.958 64-78.39v814.39c0 8.672 7.328 16 16 16h486.876c-9.646 7.92-19.028 15.26-27.952 21.804z" />
<glyph unicode="&#xed72;" glyph-name="file-text2" d="M917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624zM736 128h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32zM736 256h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32zM736 384h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xed73;" glyph-name="file-picture" d="M832 64h-640v128l192 320 263-320 185 128v-256zM832 480c0-53.020-42.98-96-96-96-53.022 0-96 42.98-96 96s42.978 96 96 96c53.020 0 96-42.98 96-96zM917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
<glyph unicode="&#xed74;" glyph-name="file-music" d="M917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624zM756.288 568.748c-7.414 6.080-17.164 8.514-26.562 6.632l-320-64c-14.958-2.994-25.726-16.126-25.726-31.38v-236.876c-18.832 8.174-40.678 12.876-64 12.876-70.692 0-128-42.98-128-96s57.308-96 128-96 128 42.98 128 96v229.766l256 51.202v-133.842c-18.832 8.174-40.678 12.876-64 12.876-70.692 0-128-42.98-128-96s57.308-96 128-96 128 42.98 128 96v319.998c0 9.586-4.298 18.668-11.712 24.748z" />
<glyph unicode="&#xed75;" glyph-name="file-play" d="M384 576l320-224-320-224v448zM917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
<glyph unicode="&#xed76;" glyph-name="file-video" d="M917.806 730.924c-22.208 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.594 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.882-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0 0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.98-17.78 50.678-41.878 81.374-72.572v0 0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.32-32 32-32h224v-624zM256 448h320v-320h-320v320zM576 320l192 128v-320l-192 128z" />
<glyph unicode="&#xed77;" glyph-name="file-zip" d="M917.806 730.924c-22.208 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.884-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0 0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.98-17.78 50.678-41.878 81.374-72.572v0 0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.322-32 32-32h224v-624zM256 896h128v-64h-128v64zM384 832h128v-64h-128v64zM256 768h128v-64h-128v64zM384 704h128v-64h-128v64zM256 640h128v-64h-128v64zM384 576h128v-64h-128v64zM256 512h128v-64h-128v64zM384 448h128v-64h-128v64zM256 112c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-80v64h-128v-272zM448 192v-64h-128v64h128z" />
<glyph unicode="&#xed78;" glyph-name="copy" d="M640 704v256h-448l-192-192v-576h384v-256h640v768h-384zM192 869.49v-101.49h-101.49l101.49 101.49zM64 256v448h192v192h320v-192l-192-192v-256h-320zM576 613.49v-101.49h-101.49l101.49 101.49zM960 0h-512v448h192v192h320v-640z" />
<glyph unicode="&#xed79;" glyph-name="paste" d="M704 832h-128v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-128v-128h512v128zM512 832h-128v63.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886zM832 640v160c0 17.6-14.4 32-32 32h-64v-64h32v-128h-192l-192-192v-256h-256v576h32v64h-64c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h640v704h-192zM576 549.49v-101.49h-101.49l101.49 101.49zM960 0h-512v384h192v192h320v-576z" />
<glyph unicode="&#xed7a;" glyph-name="stack" d="M1024 640l-512 256-512-256 512-256 512 256zM512 811.030l342.058-171.030-342.058-171.030-342.058 171.030 342.058 171.030zM921.444 499.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722zM921.444 307.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722z" />
<glyph unicode="&#xed7b;" glyph-name="folder" d="M448 832l128-128h448v-704h-1024v832z" />
<glyph unicode="&#xed7c;" glyph-name="folder-open" d="M832 0l192 512h-832l-192-512zM128 576l-128-576v832h288l128-128h416v-128z" />
<glyph unicode="&#xed7d;" glyph-name="folder-plus" d="M576 704l-128 128h-448v-832h1024v704h-448zM704 256h-128v-128h-128v128h-128v128h128v128h128v-128h128v-128z" />
<glyph unicode="&#xed7e;" glyph-name="folder-minus" d="M576 704l-128 128h-448v-832h1024v704h-448zM704 256h-384v128h384v-128z" />
<glyph unicode="&#xed7f;" glyph-name="folder-download" d="M576 704l-128 128h-448v-832h1024v704h-448zM512 96l-224 224h160v256h128v-256h160l-224-224z" />
<glyph unicode="&#xed80;" glyph-name="folder-upload" d="M576 704l-128 128h-448v-832h1024v704h-448zM512 480l224-224h-160v-256h-128v256h-160l224 224z" />
<glyph unicode="&#xed81;" glyph-name="price-tag" d="M976 960h-384c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l476.118 476.118c18.666 18.666 33.94 55.54 33.94 81.94v384c0 26.4-21.6 48-48 48zM736 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
<glyph unicode="&#xed82;" glyph-name="price-tags" horiz-adv-x="1280" d="M1232 960h-384c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l476.118 476.118c18.666 18.666 33.94 55.54 33.94 81.94v384c0 26.4-21.6 48-48 48zM992 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM128 416l544 544h-80c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l30.058 30.058-416 416z" />
<glyph unicode="&#xed83;" glyph-name="barcode" d="M0 832h128v-640h-128zM192 832h64v-640h-64zM320 832h64v-640h-64zM512 832h64v-640h-64zM768 832h64v-640h-64zM960 832h64v-640h-64zM640 832h32v-640h-32zM448 832h32v-640h-32zM864 832h32v-640h-32zM0 128h64v-64h-64zM192 128h64v-64h-64zM320 128h64v-64h-64zM640 128h64v-64h-64zM960 128h64v-64h-64zM768 128h128v-64h-128zM448 128h128v-64h-128z" />
<glyph unicode="&#xed84;" glyph-name="qrcode" d="M320 896h-256v-256h256v256zM384 960v0-384h-384v384h384zM128 832h128v-128h-128zM960 896h-256v-256h256v256zM1024 960v0-384h-384v384h384zM768 832h128v-128h-128zM320 256h-256v-256h256v256zM384 320v0-384h-384v384h384zM128 192h128v-128h-128zM448 960h64v-64h-64zM512 896h64v-64h-64zM448 832h64v-64h-64zM512 768h64v-64h-64zM448 704h64v-64h-64zM512 640h64v-64h-64zM448 576h64v-64h-64zM448 448h64v-64h-64zM512 384h64v-64h-64zM448 320h64v-64h-64zM512 256h64v-64h-64zM448 192h64v-64h-64zM512 128h64v-64h-64zM448 64h64v-64h-64zM512 0h64v-64h-64zM960 448h64v-64h-64zM64 448h64v-64h-64zM128 512h64v-64h-64zM0 512h64v-64h-64zM256 512h64v-64h-64zM320 448h64v-64h-64zM384 512h64v-64h-64zM576 448h64v-64h-64zM640 512h64v-64h-64zM704 448h64v-64h-64zM768 512h64v-64h-64zM832 448h64v-64h-64zM896 512h64v-64h-64zM960 320h64v-64h-64zM576 320h64v-64h-64zM640 384h64v-64h-64zM704 320h64v-64h-64zM832 320h64v-64h-64zM896 384h64v-64h-64zM960 192h64v-64h-64zM576 192h64v-64h-64zM640 256h64v-64h-64zM768 256h64v-64h-64zM832 192h64v-64h-64zM896 256h64v-64h-64zM960 64h64v-64h-64zM640 128h64v-64h-64zM704 64h64v-64h-64zM768 128h64v-64h-64zM832 64h64v-64h-64zM640 0h64v-64h-64zM768 0h64v-64h-64zM896 0h64v-64h-64z" />
<glyph unicode="&#xed85;" glyph-name="ticket" d="M575.996 640l127.998-127.998-255.994-255.994-127.998 127.998zM1001.526 662.496l-73.516 73.516-32.008-32.008c-16.378-16.38-39.010-26.51-64-26.51-49.988 0-90.514 40.522-90.514 90.51 0 25.002 10.14 47.638 26.534 64.018l31.988 31.986-73.518 73.516c-29.968 29.968-79.008 29.968-108.976 0l-595.040-595.038c-29.966-29.968-29.966-79.010 0-108.976l73.52-73.518 31.962 31.964c16.382 16.406 39.030 26.552 64.044 26.552 49.988 0 90.51-40.524 90.51-90.51 0-25.006-10.14-47.64-26.534-64.022l-31.984-31.986 73.516-73.518c29.966-29.966 79.008-29.966 108.976 0l595.040 595.040c29.964 29.976 29.964 79.016 0 108.984zM448.002 128.004l-256 256 384 384 256-256-384-384z" />
<glyph unicode="&#xed86;" glyph-name="cart" d="M384 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 448v384h-768c0 35.346-28.654 64-64 64h-192v-64h128l48.074-412.054c-29.294-23.458-48.074-59.5-48.074-99.946 0-70.696 57.308-128 128-128h768v64h-768c-35.346 0-64 28.654-64 64 0 0.218 0.014 0.436 0.016 0.656l831.984 127.344z" />
<glyph unicode="&#xed87;" glyph-name="coin-dollar" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384zM512 448v128h128v64h-128v64h-64v-64h-128v-256h128v-128h-128v-64h128v-64h64v64h128.002l-0.002 256h-128zM448 448h-64v128h64v-128zM576.002 256h-64.002v128h64.002v-128z" />
<glyph unicode="&#xed88;" glyph-name="coin-euro" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.076 0 384-171.922 384-384s-171.924-384-384-384zM670.824 315.66c-15.27 8.884-34.862 3.708-43.75-11.57-17.256-29.662-49.088-48.090-83.074-48.090h-128c-41.716 0-77.286 26.754-90.496 64h154.496c17.672 0 32 14.326 32 32s-14.328 32-32 32h-160v64h160c17.672 0 32 14.328 32 32s-14.328 32-32 32h-154.496c13.21 37.246 48.78 64 90.496 64h128c33.986 0 65.818-18.426 83.074-48.090 8.888-15.276 28.478-20.456 43.752-11.568 15.276 8.888 20.456 28.476 11.568 43.752-28.672 49.288-81.702 79.906-138.394 79.906h-128c-77.268 0-141.914-55.056-156.78-128h-35.22c-17.672 0-32-14.328-32-32s14.328-32 32-32h32v-64h-32c-17.672 0-32-14.326-32-32s14.328-32 32-32h35.22c14.866-72.944 79.512-128 156.78-128h128c56.692 0 109.72 30.62 138.394 79.91 8.888 15.276 3.708 34.864-11.57 43.75z" />
<glyph unicode="&#xed89;" glyph-name="coin-pound" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.074 0 384-171.922 384-384s-171.926-384-384-384zM608 256h-224v128h96c17.672 0 32 14.326 32 32s-14.328 32-32 32h-96v32c0 52.934 43.066 96 96 96 34.17 0 66.042-18.404 83.18-48.030 8.85-15.298 28.426-20.526 43.722-11.676 15.296 8.848 20.526 28.424 11.676 43.722-28.538 49.336-81.638 79.984-138.578 79.984-88.224 0-160-71.776-160-160v-32h-32c-17.672 0-32-14.326-32-32s14.328-32 32-32h32v-192h288c17.674 0 32 14.326 32 32s-14.326 32-32 32z" />
<glyph unicode="&#xed8a;" glyph-name="coin-yen" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.076 0 384-171.922 384-384s-171.924-384-384-384zM608 384c17.674 0 32 14.326 32 32s-14.326 32-32 32h-68.208l94.832 142.25c9.804 14.704 5.83 34.572-8.876 44.376-14.704 9.802-34.572 5.83-44.376-8.876l-101.372-152.062-101.374 152.062c-9.804 14.706-29.672 18.68-44.376 8.876-14.706-9.804-18.678-29.672-8.876-44.376l94.834-142.25h-68.208c-17.672 0-32-14.326-32-32s14.328-32 32-32h96v-64h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h96v-96c0-17.674 14.328-32 32-32s32 14.326 32 32v96h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v64h96z" />
<glyph unicode="&#xed8b;" glyph-name="credit-card" d="M928 832h-832c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96zM96 768h832c17.346 0 32-14.654 32-32v-96h-896v96c0 17.346 14.654 32 32 32zM928 128h-832c-17.346 0-32 14.654-32 32v288h896v-288c0-17.346-14.654-32-32-32zM128 320h64v-128h-64zM256 320h64v-128h-64zM384 320h64v-128h-64z" />
<glyph unicode="&#xed8c;" glyph-name="calculator" d="M384 896h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 640h-320v64h320v-64zM896 896h-320c-35.204 0-64-28.8-64-64v-832c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v832c0 35.2-28.8 64-64 64zM896 320h-320v64h320v-64zM896 512h-320v64h320v-64zM384 384h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 128h-128v-128h-64v128h-128v64h128v128h64v-128h128v-64z" />
<glyph unicode="&#xed8d;" glyph-name="lifebuoy" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 448c0 106.040 85.96 192 192 192s192-85.96 192-192-85.96-192-192-192-192 85.96-192 192zM925.98 276.524v0l-177.42 73.49c12.518 30.184 19.44 63.276 19.44 97.986s-6.922 67.802-19.44 97.986l177.42 73.49c21.908-52.822 34.020-110.73 34.020-171.476s-12.114-118.654-34.020-171.476v0zM683.478 861.98v0 0l-73.49-177.42c-30.184 12.518-63.276 19.44-97.988 19.44s-67.802-6.922-97.986-19.44l-73.49 177.422c52.822 21.904 110.732 34.018 171.476 34.018 60.746 0 118.654-12.114 171.478-34.020zM98.020 619.476l177.422-73.49c-12.518-30.184-19.442-63.276-19.442-97.986s6.922-67.802 19.44-97.986l-177.42-73.49c-21.906 52.822-34.020 110.73-34.020 171.476s12.114 118.654 34.020 171.476zM340.524 34.020l73.49 177.42c30.184-12.518 63.276-19.44 97.986-19.44s67.802 6.922 97.986 19.44l73.49-177.42c-52.822-21.904-110.73-34.020-171.476-34.020-60.744 0-118.654 12.114-171.476 34.020z" />
<glyph unicode="&#xed8e;" glyph-name="phone" d="M704 320c-64-64-64-128-128-128s-128 64-192 128-128 128-128 192 64 64 128 128-128 256-192 256-192-192-192-192c0-128 131.5-387.5 256-512s384-256 512-256c0 0 192 128 192 192s-192 256-256 192z" />
<glyph unicode="&#xed8f;" glyph-name="phone-hang-up" d="M1017.378 384.006c8.004-55.482 13.216-131.392-11.664-160.446-41.142-48.044-301.712-48.044-301.712 48.042 0 48.398 42.856 80.134 1.712 128.178-40.472 47.262-113.026 48.030-193.714 48.042-80.686-0.012-153.242-0.78-193.714-48.042-41.142-48.046 1.714-79.78 1.714-128.178 0-96.086-260.57-96.086-301.714-48.044-24.878 29.054-19.668 104.964-11.662 160.446 6.16 37.038 21.724 76.996 71.548 127.994 0 0.002 0.002 0.002 0.002 0.004 74.738 69.742 187.846 126.738 429.826 127.968v0.030c1.344 0 2.664-0.010 4-0.014 1.338 0.004 2.656 0.014 4 0.014v-0.028c241.98-1.23 355.088-58.226 429.826-127.968 0.002-0.002 0.002-0.004 0.002-0.004 49.824-50.996 65.39-90.954 71.55-127.994z" />
<glyph unicode="&#xed90;" glyph-name="address-book" d="M192 960v-1024h768v1024h-768zM576 703.67c70.51 0 127.67-57.16 127.67-127.67s-57.16-127.67-127.67-127.67-127.67 57.16-127.67 127.67 57.16 127.67 127.67 127.67v0zM768 192h-384v64c0 70.696 57.306 128 128 128v0h128c70.696 0 128-57.304 128-128v-64zM64 896h96v-192h-96v192zM64 640h96v-192h-96v192zM64 384h96v-192h-96v192zM64 128h96v-192h-96v192z" />
<glyph unicode="&#xed91;" glyph-name="envelop" d="M928 832h-832c-52.8 0-96-43.2-96-96v-640c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v640c0 52.8-43.2 96-96 96zM398.74 409.628l-270.74-210.892v501.642l270.74-290.75zM176.38 704h671.24l-335.62-252-335.62 252zM409.288 398.302l102.712-110.302 102.71 110.302 210.554-270.302h-626.528l210.552 270.302zM625.26 409.628l270.74 290.75v-501.642l-270.74 210.892z" />
<glyph unicode="&#xed92;" glyph-name="pushpin" d="M544 960l-96-96 96-96-224-256h-224l176-176-272-360.616v-39.384h39.384l360.616 272 176-176v224l256 224 96-96 96 96-480 480zM448 416l-64 64 224 224 64-64-224-224z" />
<glyph unicode="&#xed93;" glyph-name="location" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
<glyph unicode="&#xed94;" glyph-name="location2" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 444c-108.248 0-196 87.752-196 196s87.752 196 196 196 196-87.752 196-196-87.752-196-196-196zM388 640c0 68.483 55.517 124 124 124s124-55.517 124-124c0-68.483-55.517-124-124-124s-124 55.517-124 124z" />
<glyph unicode="&#xed95;" glyph-name="compass" d="M544.010-64.004c-2.296 0-4.622 0.25-6.94 0.764-14.648 3.25-25.070 16.238-25.070 31.24v480h-480c-15.002 0-27.992 10.422-31.24 25.070-3.25 14.646 4.114 29.584 17.708 35.928l960 448c12.196 5.688 26.644 3.144 36.16-6.372 9.516-9.514 12.060-23.966 6.372-36.16l-448-960c-5.342-11.44-16.772-18.47-28.99-18.47zM176.242 512h367.758c17.674 0 32-14.328 32-32v-367.758l349.79 749.546-749.548-349.788z" />
<glyph unicode="&#xed96;" glyph-name="compass2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM96 448c0 229.75 186.25 416 416 416 109.574 0 209.232-42.386 283.534-111.628l-411.534-176.372-176.372-411.534c-69.242 74.302-111.628 173.96-111.628 283.534zM585.166 374.834l-256.082-109.75 109.75 256.082 146.332-146.332zM512 32c-109.574 0-209.234 42.386-283.532 111.628l411.532 176.372 176.372 411.532c69.242-74.298 111.628-173.958 111.628-283.532 0-229.75-186.25-416-416-416z" />
<glyph unicode="&#xed97;" glyph-name="map" d="M0 768l320 128v-768l-320-128zM384 928l320-192v-736l-320 160zM768 736l256 192v-768l-256-192z" />
<glyph unicode="&#xed98;" glyph-name="map2" d="M672 768l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 814.27l256-102.4v-630.138l-256 102.398v630.14zM64 723.172l256 93.090v-631.8l-256-93.088v631.798zM960 172.828l-256-93.092v631.8l256 93.090v-631.798z" />
<glyph unicode="&#xed99;" glyph-name="history" horiz-adv-x="1088" d="M640 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM832 512v-128h-256v320h128v-192z" />
<glyph unicode="&#xed9a;" glyph-name="clock" d="M658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" />
<glyph unicode="&#xed9b;" glyph-name="clock2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254-90.512-90.512z" />
<glyph unicode="&#xed9c;" glyph-name="alarm" d="M512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448zM512 24c-198.824 0-360 161.178-360 360 0 198.824 161.176 360 360 360 198.822 0 360-161.176 360-360 0-198.822-161.178-360-360-360zM934.784 672.826c16.042 28.052 25.216 60.542 25.216 95.174 0 106.040-85.96 192-192 192-61.818 0-116.802-29.222-151.92-74.596 131.884-27.236 245.206-105.198 318.704-212.578v0zM407.92 885.404c-35.116 45.374-90.102 74.596-151.92 74.596-106.040 0-192-85.96-192-192 0-34.632 9.174-67.122 25.216-95.174 73.5 107.38 186.822 185.342 318.704 212.578zM512 384v256h-64v-320h256v64z" />
<glyph unicode="&#xed9d;" glyph-name="bell" d="M1025.5 160c0 288-256 224-256 448 0 18.56-1.788 34.42-5.048 47.928-16.83 113.018-92.156 203.72-189.772 231.36 0.866 3.948 1.32 8.032 1.32 12.21 0 33.278-28.8 60.502-64 60.502s-64-27.224-64-60.5c0-4.18 0.456-8.264 1.32-12.21-109.47-30.998-190.914-141.298-193.254-273.442-0.040-1.92-0.066-3.864-0.066-5.846 0-224.002-256-160.002-256-448.002 0-76.226 170.59-139.996 398.97-156.080 21.524-40.404 64.056-67.92 113.030-67.92s91.508 27.516 113.030 67.92c228.38 16.084 398.97 79.854 398.97 156.080 0 0.228-0.026 0.456-0.028 0.682l1.528-0.682zM826.246 105.904c-54.23-14.47-118.158-24.876-186.768-30.648-5.704 65.418-60.582 116.744-127.478 116.744s-121.774-51.326-127.478-116.744c-68.608 5.772-132.538 16.178-186.768 30.648-74.63 19.914-110.31 42.19-123.368 54.096 13.058 11.906 48.738 34.182 123.368 54.096 86.772 23.152 198.372 35.904 314.246 35.904s227.474-12.752 314.246-35.904c74.63-19.914 110.31-42.19 123.368-54.096-13.058-11.906-48.738-34.182-123.368-54.096z" />
<glyph unicode="&#xed9e;" glyph-name="stopwatch" d="M512.002 766.788v65.212h128v64c0 35.346-28.654 64-64.002 64h-191.998c-35.346 0-64-28.654-64-64v-64h128v-65.212c-214.798-16.338-384-195.802-384-414.788 0-229.75 186.25-416 416-416s416 186.25 416 416c0 218.984-169.202 398.448-384 414.788zM706.276 125.726c-60.442-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c58.040 58.038 134.448 91.018 216.114 93.548l-21.678-314.020c-1.86-26.29 12.464-37.802 31.836-37.802s33.698 11.512 31.836 37.802l-21.676 314.022c81.666-2.532 158.076-35.512 216.116-93.55 60.44-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274z" />
<glyph unicode="&#xed9f;" glyph-name="calendar" d="M320 576h128v-128h-128zM512 576h128v-128h-128zM704 576h128v-128h-128zM128 192h128v-128h-128zM320 192h128v-128h-128zM512 192h128v-128h-128zM320 384h128v-128h-128zM512 384h128v-128h-128zM704 384h128v-128h-128zM128 384h128v-128h-128zM832 960v-64h-128v64h-448v-64h-128v64h-128v-1024h960v1024h-128zM896 0h-832v704h832v-704z" />
<glyph unicode="&#xeda0;" glyph-name="printer" d="M256 896h512v-128h-512v128zM960 704h-896c-35.2 0-64-28.8-64-64v-320c0-35.2 28.794-64 64-64h192v-256h512v256h192c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM128 512c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.652-64-64-64zM704 64h-384v320h384v-320z" />
<glyph unicode="&#xeda1;" glyph-name="keyboard" horiz-adv-x="1152" d="M1088 832h-1024c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h1024c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM640 704h128v-128h-128v128zM832 512v-128h-128v128h128zM448 704h128v-128h-128v128zM640 512v-128h-128v128h128zM256 704h128v-128h-128v128zM448 512v-128h-128v128h128zM128 704h64v-128h-64v128zM128 512h128v-128h-128v128zM192 192h-64v128h64v-128zM768 192h-512v128h512v-128zM1024 192h-192v128h192v-128zM1024 384h-128v128h128v-128zM1024 576h-192v128h192v-128z" />
<glyph unicode="&#xeda2;" glyph-name="display" d="M0 896v-640h1024v640h-1024zM960 320h-896v512h896v-512zM672 192h-320l-32-128-64-64h512l-64 64z" />
<glyph unicode="&#xeda3;" glyph-name="laptop" d="M896 256v512c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-512h-128v-192h1024v192h-128zM640 128h-256v64h256v-64zM832 256h-640v511.886c0.034 0.040 0.076 0.082 0.114 0.114h639.77c0.040-0.034 0.082-0.076 0.116-0.116v-511.884z" />
<glyph unicode="&#xeda4;" glyph-name="mobile" d="M736 960h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h448c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 912h256v-32h-256v32zM512 0c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM768 192h-512v640h512v-640z" />
<glyph unicode="&#xeda5;" glyph-name="mobile2" d="M768 960h-576c-35.2 0-64-28.798-64-64v-896c0-35.2 28.798-64 64-64h576c35.2 0 64 28.8 64 64v896c0 35.202-28.8 64-64 64zM480-17.782c-27.492 0-49.782 22.29-49.782 49.782s22.29 49.782 49.782 49.782 49.782-22.29 49.782-49.782-22.29-49.782-49.782-49.782zM768 128h-576v704h576v-704z" />
<glyph unicode="&#xeda6;" glyph-name="tablet" d="M800 960h-640c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h640c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM480-32c-17.672 0-32 14.326-32 32s14.328 32 32 32 32-14.326 32-32-14.328-32-32-32zM768 64h-576v768h576v-768z" />
<glyph unicode="&#xeda7;" glyph-name="tv" d="M981.188 671.892c-88.808 12.768-183.382 22.016-282.076 27.22l164.888 164.888-64 64-224.558-224.556c-21.006 0.368-42.156 0.556-63.442 0.556v0l-256 256-64-64 194.196-194.196c-120.922-4.242-236.338-14.524-343.386-29.912-27.532-107.726-42.81-226.752-42.81-351.892s15.278-244.166 42.804-351.89c143.642-20.652 302.34-32.11 469.196-32.11s325.55 11.458 469.188 32.11c27.534 107.724 42.812 226.75 42.812 351.89s-15.278 244.166-42.812 351.892zM863.892 85.406c-107.73-13.766-226.75-21.406-351.892-21.406s-244.166 7.64-351.892 21.406c-20.648 71.816-32.108 151.166-32.108 234.594 0 83.43 11.458 162.78 32.108 234.596 107.726 13.766 226.75 21.404 351.892 21.404 125.136 0 244.162-7.638 351.886-21.404 20.656-71.816 32.114-151.166 32.114-234.596 0-83.428-11.458-162.778-32.108-234.594z" />
<glyph unicode="&#xeda8;" glyph-name="drawer" d="M1016.988 307.99l-256 320c-6.074 7.592-15.266 12.010-24.988 12.010h-448c-9.72 0-18.916-4.418-24.988-12.010l-256-320c-4.538-5.674-7.012-12.724-7.012-19.99v-288c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v288c0 7.266-2.472 14.316-7.012 19.99zM960 256h-224l-128-128h-192l-128 128h-224v20.776l239.38 299.224h417.24l239.38-299.224v-20.776zM736 448h-448c-17.672 0-32 14.328-32 32s14.328 32 32 32h448c17.674 0 32-14.328 32-32s-14.326-32-32-32zM800 320h-576c-17.672 0-32 14.326-32 32s14.328 32 32 32h576c17.674 0 32-14.326 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xeda9;" glyph-name="drawer2" d="M1016.988 307.99l-256 320c-6.074 7.592-15.266 12.010-24.988 12.010h-448c-9.72 0-18.916-4.418-24.988-12.010l-256-320c-4.538-5.674-7.012-12.724-7.012-19.99v-288c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v288c0 7.266-2.472 14.316-7.012 19.99zM960 256h-224l-128-128h-192l-128 128h-224v20.776l239.38 299.224h417.24l239.38-299.224v-20.776z" />
<glyph unicode="&#xedaa;" glyph-name="box-add" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
<glyph unicode="&#xedab;" glyph-name="box-remove" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM640 320v-192h-256v192h-192l320 256 320-256h-192zM154.51 768l64 64h586.976l64-64h-714.976z" />
<glyph unicode="&#xedac;" glyph-name="download" d="M512 384l256 256h-192v256h-128v-256h-192zM744.726 488.728l-71.74-71.742 260.080-96.986-421.066-157.018-421.066 157.018 260.080 96.986-71.742 71.742-279.272-104.728v-256l512-192 512 192v256z" />
<glyph unicode="&#xedad;" glyph-name="upload" d="M448 384h128v256h192l-256 256-256-256h192zM640 528v-98.712l293.066-109.288-421.066-157.018-421.066 157.018 293.066 109.288v98.712l-384-144v-256l512-192 512 192v256z" />
<glyph unicode="&#xedae;" glyph-name="floppy-disk" d="M896 960h-896v-1024h1024v896l-128 128zM512 832h128v-256h-128v256zM896 64h-768v768h64v-320h576v320h74.978l53.022-53.018v-714.982z" />
<glyph unicode="&#xedaf;" glyph-name="drive" d="M192 64h640c106.038 0 192 85.96 192 192h-1024c0-106.040 85.962-192 192-192zM832 192h64v-64h-64v64zM960 832h-896l-64-512h1024z" />
<glyph unicode="&#xedb0;" glyph-name="database" d="M512 960c-282.77 0-512-71.634-512-160v-128c0-88.366 229.23-160 512-160s512 71.634 512 160v128c0 88.366-229.23 160-512 160zM512 416c-282.77 0-512 71.634-512 160v-192c0-88.366 229.23-160 512-160s512 71.634 512 160v192c0-88.366-229.23-160-512-160zM512 128c-282.77 0-512 71.634-512 160v-192c0-88.366 229.23-160 512-160s512 71.634 512 160v192c0-88.366-229.23-160-512-160z" />
<glyph unicode="&#xedb1;" glyph-name="undo" d="M512 896c-141.384 0-269.376-57.32-362.032-149.978l-149.968 149.978v-384h384l-143.532 143.522c69.496 69.492 165.492 112.478 271.532 112.478 212.068 0 384-171.924 384-384 0-114.696-50.292-217.636-130.018-288l84.666-96c106.302 93.816 173.352 231.076 173.352 384 0 282.77-229.23 512-512 512z" />
<glyph unicode="&#xedb2;" glyph-name="redo" d="M0 384c0-152.924 67.048-290.184 173.35-384l84.666 96c-79.726 70.364-130.016 173.304-130.016 288 0 212.076 171.93 384 384 384 106.042 0 202.038-42.986 271.53-112.478l-143.53-143.522h384v384l-149.97-149.978c-92.654 92.658-220.644 149.978-362.030 149.978-282.77 0-512-229.23-512-512z" />
<glyph unicode="&#xedb3;" glyph-name="undo2" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
<glyph unicode="&#xedb4;" glyph-name="redo2" d="M576 711.628v248.372l384-384-384-384v253.824c-446.75 10.482-427.588-303.792-313.86-509.824-280.712 303.414-221.1 789.57 313.86 775.628z" />
<glyph unicode="&#xedb5;" glyph-name="forward" d="M262.14 960c-113.728-206.032-132.89-520.304 313.86-509.824v253.824l384-384-384-384v248.372c-534.96-13.942-594.572 472.214-313.86 775.628z" />
<glyph unicode="&#xedb6;" glyph-name="reply" d="M448 184.372v-248.372l-384 384 384 384v-253.824c446.75-10.48 427.588 303.792 313.862 509.824 280.71-303.414 221.1-789.57-313.862-775.628z" />
<glyph unicode="&#xedb7;" glyph-name="bubble" d="M512 896c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
<glyph unicode="&#xedb8;" glyph-name="bubbles" horiz-adv-x="1152" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256s128.942 256 288 256c159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM512 960c278.458 0 504.992-180.614 511.836-405.52-49.182 21.92-103.586 33.52-159.836 33.52-95.56 0-185.816-33.446-254.138-94.178-70.846-62.972-109.862-147.434-109.862-237.822 0-44.672 9.544-87.888 27.736-127.788-5.228-0.126-10.468-0.212-15.736-0.212-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
<glyph unicode="&#xedb9;" glyph-name="bubbles2" horiz-adv-x="1152" d="M480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" />
<glyph unicode="&#xedba;" glyph-name="bubble2" d="M512 768c-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.152 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.974-2.666 42.398-4.020 63.676-4.020 54.934 0 107.988 8.66 157.694 25.742 46.712 16.054 88.306 38.744 123.628 67.444 66.214 53.796 102.678 122.984 102.678 194.814s-36.464 141.016-102.678 194.814c-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742zM512 896v0c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
<glyph unicode="&#xedbb;" glyph-name="bubbles3" horiz-adv-x="1152" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256s128.942 256 288 256c159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM230.678 738.814c-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.15 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.948-2.662 42.344-4.016 63.594-4.020v-128c-27.128 0.002-53.754 1.738-79.742 5.042-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416 278.458 0 504.992-180.614 511.836-405.52-41.096 18.316-85.84 29.422-132.262 32.578-11.53 56.068-45.402 108.816-98.252 151.756-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444z" />
<glyph unicode="&#xedbc;" glyph-name="bubbles4" horiz-adv-x="1152" d="M480 832c-50.666 0-99.582-7.95-145.386-23.628-42.924-14.694-81.114-35.436-113.502-61.646-60.044-48.59-93.112-110.802-93.112-175.174 0-35.99 10.066-70.948 29.92-103.898 20.686-34.34 51.898-65.794 90.26-90.958 30.44-19.968 50.936-51.952 56.362-87.95 0.902-5.99 1.63-12.006 2.18-18.032 2.722 2.52 5.424 5.114 8.114 7.794 24.138 24.040 56.688 37.312 90.322 37.312 5.348 0 10.718-0.336 16.094-1.018 19.36-2.452 39.124-3.696 58.748-3.696 50.666 0 99.58 7.948 145.384 23.628 42.926 14.692 81.116 35.434 113.504 61.644 60.046 48.59 93.112 110.802 93.112 175.174s-33.066 126.582-93.112 175.174c-32.388 26.212-70.578 46.952-113.504 61.646-45.804 15.678-94.718 23.628-145.384 23.628zM480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" />
<glyph unicode="&#xedbd;" glyph-name="user" d="M576 253.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388z" />
<glyph unicode="&#xedbe;" glyph-name="users" horiz-adv-x="1152" d="M768 189.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388zM327.196 164.672c55.31 36.15 124.080 63.636 199.788 80.414-15.054 17.784-28.708 37.622-40.492 59.020-30.414 55.234-46.492 116.058-46.492 175.894 0 86.042 0 167.31 30.6 233.762 29.706 64.504 83.128 104.496 159.222 119.488-16.914 76.48-61.94 126.75-181.822 126.75-192 0-192-128.942-192-288 0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h279.006c14.518 12.91 30.596 25.172 48.19 36.672z" />
<glyph unicode="&#xedbf;" glyph-name="user-plus" d="M384 224c0 151.234 95.874 280.486 230.032 330.2 16.28 36.538 25.968 77.164 25.968 117.8 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h397.306c-8.664 30.53-13.306 62.732-13.306 96zM736 512c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.056 0 288 128.942 288 288s-128.942 288-288 288zM896 192h-128v-128h-64v128h-128v64h128v128h64v-128h128v-64z" />
<glyph unicode="&#xedc0;" glyph-name="user-minus" d="M384 224c0 151.234 95.874 280.486 230.032 330.2 16.28 36.538 25.968 77.164 25.968 117.8 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h397.306c-8.664 30.53-13.306 62.732-13.306 96zM736 512c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.056 0 288 128.942 288 288s-128.942 288-288 288zM896 192h-320v64h320v-64z" />
<glyph unicode="&#xedc1;" glyph-name="user-check" d="M960 352l-288-288-96 96-64-64 160-160 352 352zM448 192h320v115.128c-67.22 39.2-156.308 66.11-256 74.26v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h448v64z" />
<glyph unicode="&#xedc2;" glyph-name="user-tie" d="M320 768c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192s-192 85.961-192 192zM768.078 512h-35.424l-199.104-404.244 74.45 372.244-96 96-96-96 74.45-372.244-199.102 404.244h-35.424c-127.924 0-127.924-85.986-127.924-192v-320h768v320c0 106.014 0 192-127.922 192z" />
<glyph unicode="&#xedc3;" glyph-name="quotes-left" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
<glyph unicode="&#xedc4;" glyph-name="quotes-right" d="M800 320c-123.712 0-224 100.29-224 224 0 123.712 100.288 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.634 11.636 22.252 24.016 31.83 37.020-11.438-1.8-23.16-2.746-35.104-2.746zM224 320c-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.636 11.636 22.254 24.016 31.832 37.020-11.44-1.8-23.16-2.746-35.106-2.746z" />
<glyph unicode="&#xedc5;" glyph-name="hour-glass" d="M728.992 448c137.754 87.334 231.008 255.208 231.008 448 0 21.676-1.192 43.034-3.478 64h-889.042c-2.29-20.968-3.48-42.326-3.48-64 0-192.792 93.254-360.666 231.006-448-137.752-87.334-231.006-255.208-231.006-448 0-21.676 1.19-43.034 3.478-64h889.042c2.288 20.966 3.478 42.324 3.478 64 0.002 192.792-93.252 360.666-231.006 448zM160 0c0 186.912 80.162 345.414 224 397.708v100.586c-143.838 52.29-224 210.792-224 397.706v0h704c0-186.914-80.162-345.416-224-397.706v-100.586c143.838-52.294 224-210.796 224-397.708h-704zM619.626 290.406c-71.654 40.644-75.608 93.368-75.626 125.366v64.228c0 31.994 3.804 84.914 75.744 125.664 38.504 22.364 71.808 56.348 97.048 98.336h-409.582c25.266-42.032 58.612-76.042 97.166-98.406 71.654-40.644 75.606-93.366 75.626-125.366v-64.228c0-31.992-3.804-84.914-75.744-125.664-72.622-42.18-126.738-125.684-143.090-226.336h501.67c-16.364 100.708-70.53 184.248-143.212 226.406z" />
<glyph unicode="&#xedc6;" glyph-name="spinner" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM655.53 719.53c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM832 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM719.53 176.47c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM448.002 64c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM176.472 176.47c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM144.472 719.53c0 0 0 0 0 0 0 53.019 42.981 96 96 96s96-42.981 96-96c0 0 0 0 0 0 0-53.019-42.981-96-96-96s-96 42.981-96 96zM56 448c0 39.765 32.235 72 72 72s72-32.235 72-72c0-39.765-32.235-72-72-72s-72 32.235-72 72z" />
<glyph unicode="&#xedc7;" glyph-name="spinner2" d="M1024 448c-1.278 66.862-15.784 133.516-42.576 194.462-26.704 61-65.462 116.258-113.042 161.92-47.552 45.696-103.944 81.82-164.984 105.652-61.004 23.924-126.596 35.352-191.398 33.966-64.81-1.282-129.332-15.374-188.334-41.356-59.048-25.896-112.542-63.47-156.734-109.576-44.224-46.082-79.16-100.708-102.186-159.798-23.114-59.062-34.128-122.52-32.746-185.27 1.286-62.76 14.964-125.148 40.134-182.206 25.088-57.1 61.476-108.828 106.11-151.548 44.61-42.754 97.472-76.504 154.614-98.72 57.118-22.304 118.446-32.902 179.142-31.526 60.708 1.29 120.962 14.554 176.076 38.914 55.15 24.282 105.116 59.48 146.366 102.644 41.282 43.14 73.844 94.236 95.254 149.43 13.034 33.458 21.88 68.4 26.542 103.798 1.246-0.072 2.498-0.12 3.762-0.12 35.346 0 64 28.652 64 64 0 1.796-0.094 3.572-0.238 5.332h0.238zM922.306 278.052c-23.472-53.202-57.484-101.4-99.178-141.18-41.67-39.81-91-71.186-144.244-91.79-53.228-20.678-110.29-30.452-166.884-29.082-56.604 1.298-112.596 13.736-163.82 36.474-51.25 22.666-97.684 55.49-135.994 95.712-38.338 40.198-68.528 87.764-88.322 139.058-19.87 51.284-29.228 106.214-27.864 160.756 1.302 54.552 13.328 108.412 35.254 157.69 21.858 49.3 53.498 93.97 92.246 130.81 38.73 36.868 84.53 65.87 133.874 84.856 49.338 19.060 102.136 28.006 154.626 26.644 52.5-1.306 104.228-12.918 151.562-34.034 47.352-21.050 90.256-51.502 125.624-88.782 35.396-37.258 63.21-81.294 81.39-128.688 18.248-47.392 26.782-98.058 25.424-148.496h0.238c-0.144-1.76-0.238-3.536-0.238-5.332 0-33.012 24.992-60.174 57.086-63.624-6.224-34.822-16.53-68.818-30.78-100.992z" />
<glyph unicode="&#xedc8;" glyph-name="spinner3" d="M512 656.904c-32.964 0-59.686 26.724-59.686 59.686v179.060c0 32.964 26.722 59.686 59.686 59.686 32.962 0 59.688-26.722 59.688-59.686v-179.060c0-32.964-26.726-59.686-59.688-59.686zM512-36.956c-20.602 0-37.304 16.702-37.304 37.304v179.060c0 20.602 16.702 37.304 37.304 37.304 20.604 0 37.304-16.704 37.304-37.304v-179.060c0-20.602-16.7-37.304-37.304-37.304zM377.756 624.64c-19.34 0-38.146 10.034-48.512 27.988l-89.53 155.070c-15.452 26.764-6.282 60.986 20.482 76.438 26.762 15.45 60.986 6.284 76.438-20.482l89.53-155.072c15.452-26.764 6.282-60.986-20.482-76.438-8.81-5.084-18.432-7.504-27.926-7.504zM735.856 26.744c-11.602 0-22.886 6.022-29.108 16.792l-89.53 155.070c-9.27 16.056-3.77 36.592 12.29 45.864 16.056 9.264 36.59 3.77 45.864-12.292l89.532-155.068c9.27-16.058 3.768-36.592-12.292-45.864-5.286-3.048-11.060-4.502-16.756-4.502zM279.344 530.060c-8.86 0-17.838 2.256-26.064 7.006l-155.072 89.53c-24.978 14.422-33.538 46.362-19.116 71.342 14.42 24.978 46.364 33.538 71.342 19.116l155.070-89.53c24.98-14.422 33.538-46.362 19.116-71.34-9.668-16.756-27.226-26.124-45.276-26.124zM899.648 194.326c-5.064 0-10.196 1.29-14.894 4.004l-155.068 89.53c-14.274 8.24-19.164 26.494-10.924 40.768 8.242 14.276 26.496 19.166 40.766 10.924l155.070-89.532c14.274-8.24 19.164-26.492 10.924-40.766-5.53-9.574-15.562-14.928-25.874-14.928zM243.41 399.504h-179.060c-26.784 0-48.496 21.712-48.496 48.496s21.712 48.496 48.496 48.496h179.060c26.784 0 48.496-21.712 48.496-48.496s-21.712-48.496-48.496-48.496zM959.65 418.156c-0.002 0 0 0 0 0h-179.060c-16.482 0.002-29.844 13.364-29.844 29.844s13.364 29.844 29.844 29.844c0.002 0 0 0 0 0h179.060c16.482 0 29.844-13.362 29.844-29.844 0-16.48-13.364-29.844-29.844-29.844zM124.366 179.402c-15.472 0-30.518 8.028-38.81 22.39-12.362 21.41-5.026 48.79 16.384 61.148l155.072 89.532c21.41 12.368 48.79 5.028 61.15-16.384 12.362-21.412 5.026-48.79-16.384-61.15l-155.072-89.53c-7.050-4.070-14.748-6.006-22.34-6.006zM744.632 552.448c-10.314 0-20.346 5.352-25.874 14.926-8.24 14.274-3.35 32.526 10.924 40.768l155.070 89.528c14.272 8.236 32.526 3.352 40.768-10.922 8.24-14.274 3.35-32.526-10.924-40.768l-155.070-89.528c-4.7-2.714-9.83-4.004-14.894-4.004zM288.136 19.284c-6.962 0-14.016 1.774-20.48 5.504-19.626 11.332-26.35 36.428-15.020 56.054l89.53 155.070c11.33 19.628 36.426 26.352 56.054 15.022 19.626-11.332 26.35-36.43 15.020-56.054l-89.53-155.072c-7.598-13.166-21.392-20.524-35.574-20.524zM646.266 650.758c-5.062 0-10.196 1.29-14.894 4.002-14.274 8.242-19.164 26.494-10.924 40.766l89.534 155.070c8.24 14.274 26.492 19.166 40.766 10.922 14.274-8.242 19.164-26.494 10.924-40.766l-89.532-155.070c-5.53-9.57-15.56-14.924-25.874-14.924z" />
<glyph unicode="&#xedc9;" glyph-name="spinner4" d="M192 448c0 12.18 0.704 24.196 2.030 36.022l-184.98 60.104c-5.916-31.14-9.050-63.264-9.050-96.126 0-147.23 62.166-279.922 161.654-373.324l114.284 157.296c-52.124 56.926-83.938 132.758-83.938 216.028zM832 448c0-83.268-31.812-159.102-83.938-216.028l114.284-157.296c99.488 93.402 161.654 226.094 161.654 373.324 0 32.862-3.132 64.986-9.048 96.126l-184.98-60.104c1.324-11.828 2.028-23.842 2.028-36.022zM576 761.592c91.934-18.662 169.544-76.742 214.45-155.826l184.978 60.102c-73.196 155.42-222.24 268.060-399.428 290.156v-194.432zM233.55 605.768c44.906 79.084 122.516 137.164 214.45 155.826v194.43c-177.188-22.096-326.23-134.736-399.426-290.154l184.976-60.102zM644.556 156.672c-40.39-18.408-85.272-28.672-132.556-28.672s-92.166 10.264-132.554 28.67l-114.292-157.31c73.206-40.366 157.336-63.36 246.846-63.36s173.64 22.994 246.848 63.36l-114.292 157.312z" />
<glyph unicode="&#xedca;" glyph-name="spinner5" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 704c141.384 0 256-114.616 256-256s-114.616-256-256-256-256 114.616-256 256 114.616 256 256 256zM817.47 142.53c-81.594-81.594-190.080-126.53-305.47-126.53-115.392 0-223.876 44.936-305.47 126.53s-126.53 190.078-126.53 305.47c0 115.39 44.936 223.876 126.53 305.47l67.882-67.882c0 0 0 0 0 0-131.006-131.006-131.006-344.17 0-475.176 63.462-63.462 147.838-98.412 237.588-98.412 89.748 0 174.124 34.95 237.588 98.412 131.006 131.006 131.006 344.168 0 475.176l67.882 67.882c81.594-81.594 126.53-190.080 126.53-305.47 0-115.392-44.936-223.876-126.53-305.47z" />
<glyph unicode="&#xedcb;" glyph-name="spinner6" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM790.994 448c0 0 0 0 0 0 0 57.993 47.013 105.006 105.006 105.006s105.006-47.013 105.006-105.006c0 0 0 0 0 0 0-57.993-47.013-105.006-105.006-105.006s-105.006 47.013-105.006 105.006zM688.424 176.47c0 52.526 42.58 95.106 95.106 95.106s95.106-42.58 95.106-95.106c0-52.526-42.58-95.106-95.106-95.106s-95.106 42.58-95.106 95.106zM425.862 64c0 47.573 38.565 86.138 86.138 86.138s86.138-38.565 86.138-86.138c0-47.573-38.565-86.138-86.138-86.138s-86.138 38.565-86.138 86.138zM162.454 176.47c0 43.088 34.93 78.018 78.018 78.018s78.018-34.93 78.018-78.018c0-43.088-34.93-78.018-78.018-78.018s-78.018 34.93-78.018 78.018zM57.338 448c0 39.026 31.636 70.662 70.662 70.662s70.662-31.636 70.662-70.662c0-39.026-31.636-70.662-70.662-70.662s-70.662 31.636-70.662 70.662zM176.472 719.528c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM899.464 719.528c0-64.024-51.906-115.934-115.936-115.934-64.024 0-115.936 51.91-115.936 115.934 0 64.032 51.912 115.934 115.936 115.934 64.030 0 115.936-51.902 115.936-115.934z" />
<glyph unicode="&#xedcc;" glyph-name="spinner7" d="M416 32c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM0 448c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM832 448c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM121.844 742.156c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM710.156 153.844c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM121.844 153.844c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM710.156 742.156c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96z" />
<glyph unicode="&#xedcd;" glyph-name="spinner8" d="M512-64c-136.76 0-265.334 53.258-362.040 149.96-96.702 96.706-149.96 225.28-149.96 362.040 0 96.838 27.182 191.134 78.606 272.692 50 79.296 120.664 143.372 204.356 185.3l43-85.832c-68.038-34.084-125.492-86.186-166.15-150.67-41.746-66.208-63.812-142.798-63.812-221.49 0-229.382 186.618-416 416-416s416 186.618 416 416c0 78.692-22.066 155.282-63.81 221.49-40.66 64.484-98.114 116.584-166.15 150.67l43 85.832c83.692-41.928 154.358-106.004 204.356-185.3 51.422-81.558 78.604-175.854 78.604-272.692 0-136.76-53.258-265.334-149.96-362.040-96.706-96.702-225.28-149.96-362.040-149.96z" />
<glyph unicode="&#xedce;" glyph-name="spinner9" d="M512 960c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96s96 42.98 96 96c0 282.77-229.23 512-512 512zM512-64c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-282.77 229.23-512 512-512z" />
<glyph unicode="&#xedcf;" glyph-name="spinner10" d="M0.042 446.382l-0.022-0.004c0 0 0.012-0.090 0.028-0.222 0.11-3.878 0.55-7.676 1.322-11.352 0.204-1.746 0.428-3.66 0.674-5.774 0.222-1.886 0.46-3.914 0.718-6.078 0.374-2.566 0.77-5.292 1.19-8.176 0.856-5.746 1.8-12.124 2.908-18.958 1.348-6.446 2.804-13.414 4.364-20.864 0.71-3.718 1.776-7.504 2.786-11.406 1.024-3.89 2.078-7.894 3.16-12.004 0.566-2.042 1.040-4.132 1.708-6.208 0.656-2.074 1.32-4.176 1.988-6.3 1.348-4.234 2.726-8.566 4.136-12.988 0.352-1.106 0.708-2.21 1.064-3.324 0.408-1.102 0.814-2.208 1.226-3.316 0.826-2.218 1.658-4.458 2.502-6.714 1.696-4.496 3.422-9.078 5.18-13.742 1.968-4.566 3.97-9.214 6.004-13.934 1.018-2.348 2.044-4.714 3.078-7.098 1.048-2.376 2.27-4.704 3.408-7.074 2.322-4.714 4.678-9.496 7.062-14.332 2.47-4.786 5.208-9.512 7.846-14.328 1.336-2.398 2.68-4.808 4.028-7.23 1.368-2.41 2.902-4.75 4.356-7.14 2.95-4.738 5.93-9.524 8.934-14.348 12.64-18.894 26.676-37.566 42.21-55.278 15.712-17.578 32.726-34.25 50.692-49.602 18.18-15.136 37.264-28.902 56.726-41.114 19.604-12.036 39.644-22.312 59.376-31.144 5.004-2.040 9.964-4.062 14.878-6.066 2.462-0.972 4.868-2.032 7.336-2.918 2.47-0.868 4.93-1.734 7.376-2.594 4.898-1.684 9.678-3.468 14.484-4.992 4.832-1.43 9.604-2.844 14.312-4.242 2.356-0.672 4.66-1.426 7.004-2.012 2.346-0.574 4.676-1.14 6.986-1.704 4.606-1.118 9.142-2.214 13.604-3.296 4.5-0.868 8.926-1.722 13.27-2.558 2.166-0.41 4.31-0.82 6.434-1.222 1.062-0.2 2.118-0.398 3.166-0.598 1.060-0.148 2.118-0.292 3.166-0.442 4.192-0.582 8.292-1.152 12.3-1.71 1.998-0.274 3.972-0.546 5.922-0.816 1.946-0.286 3.904-0.378 5.814-0.57 3.822-0.336 7.544-0.664 11.164-0.98 3.616-0.304 7.104-0.688 10.526-0.738 0.23-0.008 0.452-0.016 0.682-0.026 0.614-34.812 29.008-62.846 63.968-62.846 0.542 0 1.080 0.028 1.62 0.042v-0.022c0 0 0.090 0.012 0.224 0.028 3.878 0.11 7.674 0.55 11.35 1.322 1.748 0.204 3.662 0.426 5.776 0.672 1.884 0.222 3.912 0.462 6.076 0.718 2.566 0.376 5.292 0.772 8.176 1.192 5.746 0.856 12.124 1.8 18.958 2.908 6.446 1.348 13.414 2.804 20.864 4.362 3.718 0.712 7.504 1.778 11.406 2.786 3.892 1.026 7.894 2.080 12.004 3.162 2.044 0.566 4.132 1.040 6.208 1.708 2.074 0.656 4.174 1.318 6.3 1.988 4.232 1.348 8.564 2.726 12.988 4.134 1.104 0.354 2.21 0.708 3.324 1.066 1.1 0.406 2.206 0.814 3.316 1.226 2.216 0.824 4.456 1.658 6.714 2.5 4.496 1.698 9.078 3.424 13.74 5.182 4.568 1.968 9.216 3.97 13.936 6.004 2.348 1.018 4.714 2.044 7.098 3.078 2.376 1.048 4.702 2.27 7.074 3.408 4.714 2.322 9.494 4.678 14.33 7.062 4.786 2.47 9.512 5.208 14.328 7.846 2.398 1.336 4.808 2.678 7.23 4.028 2.41 1.366 4.75 2.9 7.14 4.354 4.738 2.952 9.524 5.93 14.35 8.936 18.89 12.64 37.564 26.674 55.278 42.21 17.574 15.712 34.248 32.726 49.602 50.69 15.136 18.182 28.902 37.264 41.112 56.728 12.036 19.602 22.314 39.644 31.142 59.376 2.042 5.002 4.062 9.964 6.068 14.878 0.974 2.462 2.032 4.868 2.918 7.334 0.87 2.472 1.732 4.932 2.592 7.376 1.686 4.898 3.468 9.678 4.994 14.484 1.432 4.832 2.846 9.604 4.24 14.31 0.674 2.358 1.43 4.66 2.016 7.004 0.57 2.348 1.138 4.676 1.702 6.988 1.118 4.606 2.216 9.14 3.296 13.602 0.868 4.502 1.72 8.928 2.558 13.272 0.41 2.164 0.818 4.308 1.222 6.434 0.2 1.060 0.398 2.116 0.596 3.164 0.148 1.062 0.296 2.118 0.444 3.168 0.582 4.19 1.152 8.292 1.708 12.3 0.278 1.996 0.55 3.97 0.82 5.922 0.284 1.946 0.376 3.902 0.568 5.812 0.336 3.822 0.664 7.546 0.98 11.164 0.304 3.616 0.686 7.106 0.738 10.528 0.020 0.534 0.040 1.044 0.058 1.574 35.224 0.146 63.732 28.738 63.732 63.992 0 0.542-0.028 1.080-0.042 1.62h0.022c0 0-0.012 0.090-0.028 0.224-0.11 3.878-0.55 7.674-1.322 11.35-0.204 1.748-0.428 3.662-0.674 5.776-0.222 1.886-0.46 3.914-0.718 6.076-0.374 2.566-0.77 5.294-1.19 8.176-0.856 5.746-1.8 12.124-2.908 18.958-1.348 6.444-2.804 13.414-4.364 20.862-0.71 3.72-1.776 7.506-2.786 11.408-1.024 3.892-2.078 7.894-3.16 12.002-0.566 2.044-1.040 4.134-1.708 6.208-0.656 2.076-1.32 4.174-1.988 6.3-1.348 4.234-2.726 8.566-4.136 12.99-0.352 1.102-0.708 2.21-1.064 3.324-0.408 1.1-0.814 2.206-1.226 3.316-0.826 2.216-1.658 4.454-2.502 6.714-1.696 4.498-3.422 9.080-5.18 13.74-1.968 4.57-3.97 9.216-6.004 13.936-1.020 2.348-2.044 4.714-3.078 7.098-1.048 2.376-2.27 4.702-3.408 7.076-2.322 4.714-4.678 9.494-7.062 14.33-2.47 4.786-5.208 9.512-7.846 14.328-1.336 2.398-2.68 4.808-4.028 7.23-1.368 2.41-2.902 4.75-4.356 7.14-2.95 4.74-5.93 9.524-8.934 14.35-12.64 18.892-26.676 37.564-42.21 55.278-15.712 17.576-32.726 34.25-50.692 49.602-18.18 15.136-37.264 28.902-56.726 41.112-19.604 12.036-39.644 22.314-59.376 31.142-5.004 2.040-9.964 4.062-14.878 6.068-2.462 0.974-4.868 2.032-7.336 2.918-2.47 0.87-4.93 1.734-7.376 2.592-4.898 1.684-9.678 3.468-14.484 4.994-4.832 1.432-9.604 2.846-14.312 4.242-2.356 0.672-4.66 1.428-7.004 2.014-2.346 0.572-4.676 1.138-6.986 1.702-4.606 1.118-9.142 2.216-13.604 3.298-4.5 0.868-8.926 1.72-13.27 2.558-2.166 0.412-4.31 0.82-6.434 1.222-1.062 0.2-2.118 0.398-3.166 0.596-1.060 0.148-2.118 0.296-3.166 0.442-4.192 0.584-8.292 1.154-12.3 1.71-1.998 0.276-3.972 0.55-5.922 0.82-1.946 0.284-3.904 0.376-5.814 0.57-3.822 0.336-7.544 0.664-11.164 0.98-3.616 0.304-7.104 0.686-10.526 0.738-0.852 0.032-1.674 0.062-2.512 0.092-0.65 34.78-29.028 62.778-63.966 62.778-0.542 0-1.080-0.028-1.62-0.042l-0.002 0.022c0 0-0.090-0.012-0.222-0.028-3.878-0.11-7.676-0.55-11.352-1.322-1.748-0.204-3.662-0.426-5.776-0.672-1.884-0.222-3.912-0.462-6.076-0.718-2.566-0.376-5.292-0.772-8.176-1.192-5.746-0.856-12.124-1.8-18.958-2.908-6.446-1.348-13.414-2.804-20.864-4.362-3.718-0.712-7.504-1.778-11.406-2.786-3.892-1.026-7.894-2.080-12.004-3.162-2.044-0.566-4.132-1.040-6.208-1.708-2.074-0.656-4.174-1.318-6.3-1.988-4.232-1.348-8.564-2.726-12.988-4.134-1.104-0.354-2.21-0.708-3.324-1.066-1.1-0.406-2.206-0.814-3.316-1.226-2.216-0.824-4.456-1.658-6.714-2.5-4.496-1.698-9.078-3.424-13.74-5.182-4.568-1.968-9.216-3.97-13.936-6.004-2.348-1.018-4.714-2.044-7.098-3.078-2.376-1.048-4.702-2.27-7.074-3.408-4.714-2.322-9.494-4.678-14.33-7.062-4.786-2.47-9.512-5.208-14.328-7.846-2.398-1.336-4.808-2.678-7.23-4.028-2.41-1.366-4.75-2.9-7.14-4.354-4.738-2.952-9.524-5.93-14.35-8.936-18.89-12.64-37.564-26.674-55.278-42.21-17.574-15.712-34.248-32.726-49.602-50.69-15.136-18.182-28.902-37.264-41.112-56.728-12.036-19.602-22.314-39.644-31.142-59.376-2.042-5.002-4.062-9.964-6.068-14.878-0.974-2.462-2.032-4.868-2.918-7.334-0.87-2.472-1.732-4.932-2.592-7.376-1.686-4.898-3.468-9.678-4.994-14.484-1.432-4.832-2.846-9.604-4.24-14.31-0.674-2.358-1.43-4.66-2.016-7.004-0.57-2.348-1.138-4.676-1.702-6.988-1.118-4.606-2.216-9.14-3.296-13.602-0.868-4.502-1.72-8.928-2.558-13.272-0.41-2.164-0.818-4.308-1.222-6.434-0.2-1.060-0.398-2.116-0.596-3.164-0.148-1.062-0.296-2.118-0.444-3.168-0.582-4.19-1.152-8.292-1.708-12.3-0.278-1.996-0.55-3.97-0.82-5.922-0.284-1.946-0.376-3.902-0.568-5.812-0.336-3.822-0.664-7.546-0.98-11.164-0.304-3.616-0.686-7.106-0.738-10.528-0.020-0.548-0.040-1.076-0.058-1.62-34.376-1.112-61.902-29.304-61.902-63.946 0-0.542 0.028-1.078 0.042-1.618zM73.518 511.294c0.042 0.196 0.086 0.384 0.128 0.58 0.644 3.248 1.632 6.542 2.556 9.942 0.934 3.388 1.894 6.876 2.88 10.454 0.516 1.78 0.934 3.602 1.546 5.406 0.596 1.802 1.202 3.628 1.81 5.476 1.218 3.682 2.464 7.45 3.736 11.294 0.316 0.958 0.634 1.924 0.956 2.892 0.37 0.954 0.74 1.914 1.114 2.876 0.746 1.924 1.5 3.868 2.26 5.83 1.52 3.904 3.070 7.882 4.646 11.93 1.768 3.96 3.566 7.99 5.392 12.080 0.908 2.038 1.824 4.090 2.746 6.156 0.932 2.060 2.036 4.072 3.052 6.126 2.070 4.084 4.17 8.222 6.294 12.412 2.202 4.142 4.654 8.224 6.998 12.392 1.184 2.074 2.374 4.16 3.57 6.256 1.21 2.086 2.586 4.102 3.876 6.166 2.616 4.098 5.256 8.232 7.918 12.402 11.234 16.298 23.632 32.398 37.33 47.638 13.874 15.104 28.842 29.404 44.598 42.548 15.974 12.928 32.686 24.65 49.676 35.022 17.13 10.194 34.6 18.838 51.734 26.258 4.35 1.7 8.662 3.382 12.934 5.050 2.136 0.812 4.216 1.71 6.36 2.444 2.146 0.714 4.28 1.428 6.404 2.136 4.25 1.386 8.382 2.888 12.548 4.142 4.184 1.174 8.314 2.332 12.392 3.474 2.038 0.55 4.026 1.19 6.054 1.662 2.030 0.458 4.044 0.914 6.044 1.368 3.978 0.91 7.896 1.806 11.748 2.688 3.888 0.686 7.71 1.36 11.462 2.022 1.868 0.33 3.716 0.658 5.546 0.98 0.914 0.162 1.824 0.324 2.728 0.484 0.916 0.112 1.828 0.222 2.734 0.332 3.612 0.448 7.148 0.882 10.604 1.31 1.72 0.216 3.422 0.432 5.102 0.644 1.674 0.226 3.364 0.266 5.010 0.408 3.292 0.238 6.498 0.472 9.616 0.7 3.11 0.218 6.11 0.524 9.058 0.508 5.848 0.132 11.32 0.256 16.38 0.372 4.664-0.168 8.948-0.324 12.818-0.462 1.914-0.054 3.726-0.108 5.432-0.156 2.122-0.134 4.108-0.26 5.958-0.378 2.13-0.138 4.060-0.266 5.82-0.38 3.256-0.51 6.592-0.782 9.99-0.782 0.466 0 0.93 0.026 1.396 0.036 0.132-0.008 0.224-0.014 0.224-0.014v0.020c31.14 0.778 56.75 23.784 61.556 53.754 0.542-0.12 1.064-0.236 1.612-0.356 3.246-0.644 6.542-1.632 9.942-2.556 3.386-0.934 6.876-1.894 10.454-2.88 1.778-0.516 3.602-0.934 5.404-1.546 1.802-0.596 3.63-1.202 5.478-1.812 3.68-1.218 7.448-2.464 11.292-3.736 0.96-0.316 1.924-0.634 2.892-0.956 0.956-0.37 1.914-0.74 2.876-1.112 1.926-0.746 3.868-1.5 5.83-2.26 3.904-1.52 7.884-3.070 11.932-4.646 3.96-1.768 7.988-3.566 12.080-5.392 2.038-0.908 4.088-1.824 6.156-2.746 2.060-0.932 4.072-2.036 6.126-3.054 4.082-2.070 8.222-4.17 12.41-6.294 4.144-2.202 8.226-4.654 12.394-6.998 2.074-1.184 4.16-2.374 6.256-3.572 2.086-1.21 4.102-2.586 6.166-3.876 4.098-2.616 8.23-5.256 12.402-7.918 16.296-11.234 32.398-23.632 47.636-37.33 15.104-13.874 29.406-28.842 42.55-44.598 12.928-15.974 24.648-32.686 35.020-49.676 10.196-17.13 18.84-34.6 26.26-51.736 1.698-4.348 3.382-8.662 5.050-12.932 0.812-2.136 1.71-4.216 2.444-6.36 0.714-2.146 1.428-4.28 2.136-6.404 1.386-4.25 2.888-8.384 4.142-12.548 1.174-4.184 2.33-8.316 3.474-12.392 0.55-2.038 1.19-4.026 1.66-6.054 0.46-2.030 0.916-4.046 1.368-6.046 0.91-3.978 1.808-7.896 2.688-11.748 0.688-3.888 1.362-7.71 2.024-11.462 0.33-1.868 0.656-3.716 0.98-5.548 0.162-0.914 0.324-1.824 0.484-2.728 0.11-0.916 0.222-1.828 0.332-2.734 0.446-3.612 0.882-7.148 1.31-10.604 0.216-1.72 0.432-3.42 0.642-5.1 0.226-1.674 0.268-3.364 0.41-5.010 0.238-3.292 0.472-6.498 0.7-9.616 0.218-3.11 0.524-6.11 0.508-9.058 0.132-5.848 0.256-11.32 0.372-16.38-0.168-4.664-0.324-8.948-0.462-12.818-0.054-1.914-0.108-3.726-0.156-5.432-0.134-2.122-0.26-4.108-0.378-5.958-0.138-2.13-0.266-4.060-0.38-5.82-0.498-3.256-0.768-6.592-0.768-9.99 0-0.468 0.026-0.93 0.036-1.396-0.008-0.132-0.016-0.224-0.016-0.224h0.022c0.768-30.766 23.236-56.128 52.682-61.37-0.066-0.296-0.13-0.584-0.198-0.884-0.644-3.248-1.632-6.542-2.556-9.942-0.934-3.388-1.894-6.876-2.88-10.454-0.516-1.78-0.934-3.602-1.546-5.406-0.596-1.802-1.202-3.628-1.81-5.476-1.218-3.682-2.464-7.45-3.736-11.294-0.316-0.958-0.634-1.924-0.956-2.892-0.37-0.954-0.74-1.914-1.114-2.876-0.746-1.924-1.5-3.868-2.26-5.83-1.52-3.904-3.070-7.882-4.646-11.93-1.768-3.96-3.566-7.99-5.392-12.080-0.908-2.038-1.824-4.090-2.746-6.156-0.932-2.060-2.036-4.072-3.052-6.126-2.070-4.084-4.17-8.222-6.294-12.412-2.202-4.142-4.654-8.224-6.998-12.392-1.184-2.074-2.374-4.16-3.57-6.256-1.21-2.086-2.586-4.102-3.876-6.166-2.616-4.098-5.256-8.232-7.918-12.402-11.234-16.298-23.632-32.398-37.33-47.638-13.874-15.104-28.842-29.404-44.598-42.548-15.974-12.928-32.686-24.65-49.676-35.022-17.13-10.194-34.6-18.838-51.734-26.258-4.35-1.7-8.662-3.382-12.934-5.050-2.136-0.812-4.216-1.71-6.36-2.444-2.146-0.714-4.28-1.428-6.404-2.136-4.25-1.386-8.382-2.888-12.548-4.142-4.184-1.174-8.314-2.332-12.392-3.474-2.038-0.55-4.026-1.19-6.054-1.662-2.030-0.458-4.044-0.914-6.044-1.368-3.978-0.91-7.896-1.806-11.748-2.688-3.888-0.686-7.71-1.36-11.462-2.022-1.868-0.33-3.716-0.658-5.546-0.98-0.914-0.162-1.824-0.324-2.728-0.484-0.916-0.112-1.828-0.222-2.734-0.332-3.612-0.448-7.148-0.882-10.604-1.31-1.72-0.216-3.422-0.432-5.102-0.644-1.674-0.226-3.364-0.266-5.010-0.408-3.292-0.238-6.498-0.472-9.616-0.7-3.11-0.218-6.11-0.524-9.058-0.508-5.848-0.132-11.32-0.256-16.38-0.372-4.664 0.168-8.948 0.324-12.818 0.462-1.914 0.054-3.726 0.108-5.432 0.156-2.122 0.134-4.108 0.26-5.958 0.378-2.13 0.138-4.060 0.266-5.82 0.38-3.256 0.51-6.592 0.782-9.99 0.782-0.466 0-0.93-0.026-1.396-0.036-0.132 0.008-0.224 0.014-0.224 0.014v-0.020c-31.004-0.774-56.524-23.586-61.488-53.364-3.2 0.64-6.446 1.61-9.792 2.522-3.386 0.934-6.876 1.894-10.454 2.878-1.778 0.516-3.602 0.938-5.404 1.546-1.802 0.598-3.63 1.204-5.478 1.812-3.68 1.218-7.448 2.464-11.292 3.738-0.96 0.316-1.924 0.632-2.892 0.954-0.956 0.372-1.914 0.742-2.876 1.114-1.926 0.746-3.868 1.5-5.83 2.258-3.904 1.524-7.884 3.070-11.932 4.648-3.96 1.77-7.988 3.566-12.080 5.39-2.038 0.91-4.088 1.824-6.156 2.746-2.060 0.934-4.072 2.036-6.126 3.054-4.082 2.070-8.222 4.172-12.41 6.296-4.144 2.2-8.226 4.652-12.394 6.996-2.074 1.184-4.16 2.376-6.256 3.57-2.086 1.21-4.102 2.586-6.166 3.878-4.098 2.614-8.23 5.254-12.402 7.918-16.296 11.23-32.398 23.632-47.636 37.328-15.104 13.876-29.406 28.84-42.55 44.598-12.928 15.972-24.648 32.684-35.020 49.676-10.196 17.128-18.84 34.602-26.26 51.734-1.698 4.352-3.382 8.664-5.050 12.934-0.812 2.136-1.71 4.218-2.444 6.36-0.714 2.148-1.428 4.282-2.136 6.406-1.386 4.25-2.888 8.382-4.142 12.546-1.174 4.184-2.33 8.316-3.474 12.394-0.55 2.036-1.19 4.024-1.66 6.054-0.46 2.028-0.916 4.042-1.368 6.042-0.91 3.98-1.808 7.898-2.688 11.75-0.688 3.886-1.362 7.71-2.024 11.46-0.33 1.868-0.656 3.718-0.98 5.546-0.162 0.914-0.324 1.824-0.484 2.73-0.11 0.914-0.222 1.828-0.332 2.734-0.446 3.61-0.882 7.148-1.31 10.602-0.216 1.722-0.432 3.422-0.642 5.102-0.226 1.676-0.268 3.364-0.41 5.012-0.238 3.29-0.472 6.496-0.7 9.614-0.218 3.11-0.524 6.11-0.508 9.058-0.132 5.848-0.256 11.32-0.372 16.382 0.168 4.664 0.324 8.946 0.462 12.816 0.054 1.914 0.108 3.726 0.156 5.434 0.134 2.122 0.26 4.106 0.378 5.958 0.138 2.128 0.266 4.058 0.38 5.82 0.496 3.26 0.766 6.596 0.766 9.994 0 0.466-0.026 0.93-0.036 1.396 0.008 0.132 0.016 0.224 0.016 0.224h-0.022c-0.78 31.38-24.134 57.154-54.44 61.674z" />
<glyph unicode="&#xedd0;" glyph-name="spinner11" d="M1024 576h-384l143.53 143.53c-72.53 72.526-168.96 112.47-271.53 112.47s-199-39.944-271.53-112.47c-72.526-72.53-112.47-168.96-112.47-271.53s39.944-199 112.47-271.53c72.53-72.526 168.96-112.47 271.53-112.47s199 39.944 271.528 112.472c6.056 6.054 11.86 12.292 17.456 18.668l96.32-84.282c-93.846-107.166-231.664-174.858-385.304-174.858-282.77 0-512 229.23-512 512s229.23 512 512 512c141.386 0 269.368-57.326 362.016-149.984l149.984 149.984v-384z" />
<glyph unicode="&#xedd1;" glyph-name="binoculars" d="M64 960h384v-64h-384zM576 960h384v-64h-384zM952 640h-56v256h-256v-256h-256v256h-256v-256h-56c-39.6 0-72-32.4-72-72v-560c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v376h128v-376c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v560c0 39.6-32.4 72-72 72zM348 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM924 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
<glyph unicode="&#xedd2;" glyph-name="search" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256z" />
<glyph unicode="&#xedd3;" glyph-name="zoom-in" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
<glyph unicode="&#xedd4;" glyph-name="zoom-out" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
<glyph unicode="&#xedd5;" glyph-name="enlarge" d="M1024 960h-416l160-160-192-192 96-96 192 192 160-160zM1024-64v416l-160-160-192 192-96-96 192-192-160-160zM0-64h416l-160 160 192 192-96 96-192-192-160 160zM0 960v-416l160 160 192-192 96 96-192 192 160 160z" />
<glyph unicode="&#xedd6;" glyph-name="shrink" d="M576 512h416l-160 160 192 192-96 96-192-192-160 160zM576 384v-416l160 160 192-192 96 96-192 192 160 160zM448 384.004h-416l160-160-192-192 96-96 192 192 160-160zM448 512v416l-160-160-192 192-96-96 192-192-160-160z" />
<glyph unicode="&#xedd7;" glyph-name="enlarge2" d="M1024 960v-416l-160 160-192-192-96 96 192 192-160 160zM448 288l-192-192 160-160h-416v416l160-160 192 192z" />
<glyph unicode="&#xedd8;" glyph-name="shrink2" d="M448 384v-416l-160 160-192-192-96 96 192 192-160 160zM1024 864l-192-192 160-160h-416v416l160-160 192 192z" />
<glyph unicode="&#xedd9;" glyph-name="key" d="M704 960c-176.73 0-320-143.268-320-320 0-20.026 1.858-39.616 5.376-58.624l-389.376-389.376v-192c0-35.346 28.654-64 64-64h64v64h128v128h128v128h128l83.042 83.042c34.010-12.316 70.696-19.042 108.958-19.042 176.73 0 320 143.268 320 320s-143.27 320-320 320zM799.874 639.874c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
<glyph unicode="&#xedda;" glyph-name="key2" d="M1002.132 645.758l-101.106 101.104c-24.792 24.794-65.37 65.368-90.162 90.164l-101.106 101.104c-24.792 24.794-68.954 29.166-98.13 9.716l-276.438-184.292c-29.176-19.452-40.218-61.028-24.536-92.39l70.486-140.974c2.154-4.306 4.646-8.896 7.39-13.66l-356.53-356.53-32-224h192v64h128v128h128v128h128v71.186c6.396-3.812 12.534-7.216 18.192-10.044l140.97-70.488c31.366-15.682 72.94-4.638 92.39 24.538l184.294 276.44c19.454 29.172 15.078 73.33-9.714 98.126zM150.628 105.374l-45.254 45.254 311.572 311.57 45.254-45.254-311.572-311.57zM917.020 536.236l-45.256-45.256c-12.446-12.444-32.808-12.444-45.254 0l-271.53 271.53c-12.446 12.444-12.446 32.81 0 45.254l45.256 45.256c12.446 12.444 32.808 12.444 45.254 0l271.53-271.53c12.446-12.444 12.446-32.81 0-45.254z" />
<glyph unicode="&#xeddb;" glyph-name="lock" d="M592 512h-16v192c0 105.87-86.13 192-192 192h-128c-105.87 0-192-86.13-192-192v-192h-16c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h544c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48zM192 704c0 35.29 28.71 64 64 64h128c35.29 0 64-28.71 64-64v-192h-256v192z" />
<glyph unicode="&#xeddc;" glyph-name="unlocked" d="M768 896c105.87 0 192-86.13 192-192v-192h-128v192c0 35.29-28.71 64-64 64h-128c-35.29 0-64-28.71-64-64v-192h16c26.4 0 48-21.6 48-48v-480c0-26.4-21.6-48-48-48h-544c-26.4 0-48 21.6-48 48v480c0 26.4 21.6 48 48 48h400v192c0 105.87 86.13 192 192 192h128z" />
<glyph unicode="&#xeddd;" glyph-name="wrench" d="M1002.934 142.124l-460.552 394.76c21.448 40.298 33.618 86.282 33.618 135.116 0 159.058-128.942 288-288 288-29.094 0-57.172-4.332-83.646-12.354l166.39-166.39c24.89-24.89 24.89-65.62 0-90.51l-101.49-101.49c-24.89-24.89-65.62-24.89-90.51 0l-166.39 166.39c-8.022-26.474-12.354-54.552-12.354-83.646 0-159.058 128.942-288 288-288 48.834 0 94.818 12.17 135.116 33.62l394.76-460.552c22.908-26.724 62.016-28.226 86.904-3.338l101.492 101.492c24.888 24.888 23.386 63.994-3.338 86.902z" />
<glyph unicode="&#xedde;" glyph-name="equalizer" d="M448 832v16c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576zM256 704v128h128v-128h-128zM832 528c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-576v-128h576v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h192v128h-192v16zM640 384v128h128v-128h-128zM448 208c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576v16zM256 64v128h128v-128h-128z" />
<glyph unicode="&#xeddf;" glyph-name="equalizer2" d="M896 512h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576zM768 704h128v-128h-128v128zM592 128c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v576h-128v-576h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-192h128v192h16zM448 320h128v-128h-128v128zM272 512c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576h16zM128 704h128v-128h-128v128z" />
<glyph unicode="&#xede0;" glyph-name="cog" d="M933.79 349.75c-53.726 93.054-21.416 212.304 72.152 266.488l-100.626 174.292c-28.75-16.854-62.176-26.518-97.846-26.518-107.536 0-194.708 87.746-194.708 195.99h-201.258c0.266-33.41-8.074-67.282-25.958-98.252-53.724-93.056-173.156-124.702-266.862-70.758l-100.624-174.292c28.97-16.472 54.050-40.588 71.886-71.478 53.638-92.908 21.512-211.92-71.708-266.224l100.626-174.292c28.65 16.696 61.916 26.254 97.4 26.254 107.196 0 194.144-87.192 194.7-194.958h201.254c-0.086 33.074 8.272 66.57 25.966 97.218 53.636 92.906 172.776 124.594 266.414 71.012l100.626 174.29c-28.78 16.466-53.692 40.498-71.434 71.228zM512 240.668c-114.508 0-207.336 92.824-207.336 207.334 0 114.508 92.826 207.334 207.336 207.334 114.508 0 207.332-92.826 207.332-207.334-0.002-114.51-92.824-207.334-207.332-207.334z" />
<glyph unicode="&#xede1;" glyph-name="cogs" d="M363.722 237.948l41.298 57.816-45.254 45.256-57.818-41.296c-10.722 5.994-22.204 10.774-34.266 14.192l-11.682 70.084h-64l-11.68-70.086c-12.062-3.418-23.544-8.198-34.266-14.192l-57.818 41.298-45.256-45.256 41.298-57.816c-5.994-10.72-10.774-22.206-14.192-34.266l-70.086-11.682v-64l70.086-11.682c3.418-12.060 8.198-23.544 14.192-34.266l-41.298-57.816 45.254-45.256 57.818 41.296c10.722-5.994 22.204-10.774 34.266-14.192l11.682-70.084h64l11.68 70.086c12.062 3.418 23.544 8.198 34.266 14.192l57.818-41.296 45.254 45.256-41.298 57.816c5.994 10.72 10.774 22.206 14.192 34.266l70.088 11.68v64l-70.086 11.682c-3.418 12.060-8.198 23.544-14.192 34.266zM224 96c-35.348 0-64 28.654-64 64s28.652 64 64 64 64-28.654 64-64-28.652-64-64-64zM1024 576v64l-67.382 12.25c-1.242 8.046-2.832 15.978-4.724 23.79l57.558 37.1-24.492 59.128-66.944-14.468c-4.214 6.91-8.726 13.62-13.492 20.13l39.006 56.342-45.256 45.254-56.342-39.006c-6.512 4.766-13.22 9.276-20.13 13.494l14.468 66.944-59.128 24.494-37.1-57.558c-7.812 1.892-15.744 3.482-23.79 4.724l-12.252 67.382h-64l-12.252-67.382c-8.046-1.242-15.976-2.832-23.79-4.724l-37.098 57.558-59.128-24.492 14.468-66.944c-6.91-4.216-13.62-8.728-20.13-13.494l-56.342 39.006-45.254-45.254 39.006-56.342c-4.766-6.51-9.278-13.22-13.494-20.13l-66.944 14.468-24.492-59.128 57.558-37.1c-1.892-7.812-3.482-15.742-4.724-23.79l-67.384-12.252v-64l67.382-12.25c1.242-8.046 2.832-15.978 4.724-23.79l-57.558-37.1 24.492-59.128 66.944 14.468c4.216-6.91 8.728-13.618 13.494-20.13l-39.006-56.342 45.254-45.256 56.342 39.006c6.51-4.766 13.22-9.276 20.13-13.492l-14.468-66.944 59.128-24.492 37.102 57.558c7.81-1.892 15.742-3.482 23.788-4.724l12.252-67.384h64l12.252 67.382c8.044 1.242 15.976 2.832 23.79 4.724l37.1-57.558 59.128 24.492-14.468 66.944c6.91 4.216 13.62 8.726 20.13 13.492l56.342-39.006 45.256 45.256-39.006 56.342c4.766 6.512 9.276 13.22 13.492 20.13l66.944-14.468 24.492 59.13-57.558 37.1c1.892 7.812 3.482 15.742 4.724 23.79l67.382 12.25zM672 468.8c-76.878 0-139.2 62.322-139.2 139.2s62.32 139.2 139.2 139.2 139.2-62.322 139.2-139.2c0-76.878-62.32-139.2-139.2-139.2z" />
<glyph unicode="&#xede2;" glyph-name="hammer" d="M1009.996 131.024l-301.544 301.544c-18.668 18.668-49.214 18.668-67.882 0l-22.626-22.626-184 184 302.056 302.058h-320l-142.058-142.058-14.060 14.058h-67.882v-67.882l14.058-14.058-206.058-206.060 160-160 206.058 206.058 184-184-22.626-22.626c-18.668-18.668-18.668-49.214 0-67.882l301.544-301.544c18.668-18.668 49.214-18.668 67.882 0l113.136 113.136c18.67 18.666 18.67 49.214 0.002 67.882z" />
<glyph unicode="&#xede3;" glyph-name="magic-wand" d="M256 768l-128 128h-64v-64l128-128zM320 960h64v-128h-64zM576 640h128v-64h-128zM640 832v64h-64l-128-128 64-64zM0 640h128v-64h-128zM320 384h64v-128h-64zM64 384v-64h64l128 128-64 64zM1010 78l-636.118 636.118c-18.668 18.668-49.214 18.668-67.882 0l-60.118-60.118c-18.668-18.668-18.668-49.214 0-67.882l636.118-636.118c18.668-18.668 49.214-18.668 67.882 0l60.118 60.118c18.668 18.668 18.668 49.214 0 67.882zM480 416l-192 192 64 64 192-192-64-64z" />
<glyph unicode="&#xede4;" glyph-name="aid-kit" d="M896 704h-192v128c0 35.2-28.8 64-64 64h-256c-35.2 0-64-28.8-64-64v-128h-192c-70.4 0-128-57.6-128-128v-512c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM384 832h256v-128h-256v128zM768 256h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128z" />
<glyph unicode="&#xede5;" glyph-name="bug" d="M1024 384v64h-193.29c-5.862 72.686-31.786 139.026-71.67 192.25h161.944l70.060 280.24-62.090 15.522-57.94-231.76h-174.68c-0.892 0.694-1.796 1.374-2.698 2.056 6.71 19.502 10.362 40.422 10.362 62.194 0.002 105.76-85.958 191.498-191.998 191.498s-192-85.738-192-191.5c0-21.772 3.65-42.692 10.362-62.194-0.9-0.684-1.804-1.362-2.698-2.056h-174.68l-57.94 231.76-62.090-15.522 70.060-280.24h161.944c-39.884-53.222-65.806-119.562-71.668-192.248h-193.29v-64h193.37c3.802-45.664 15.508-88.812 33.638-127.75h-123.992l-70.060-280.238 62.090-15.524 57.94 231.762h112.354c58.692-78.032 147.396-127.75 246.66-127.75s187.966 49.718 246.662 127.75h112.354l57.94-231.762 62.090 15.524-70.060 280.238h-123.992c18.13 38.938 29.836 82.086 33.636 127.75h193.37z" />
<glyph unicode="&#xede6;" glyph-name="pie-chart" d="M448 384v448c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448c0 72.034-17.028 140.084-47.236 200.382l-400.764-200.382zM912.764 712.382c-73.552 146.816-225.374 247.618-400.764 247.618v-448l400.764 200.382z" />
<glyph unicode="&#xede7;" glyph-name="stats-dots" d="M128 64h896v-128h-1024v1024h128zM288 128c-53.020 0-96 42.98-96 96s42.98 96 96 96c2.828 0 5.622-0.148 8.388-0.386l103.192 171.986c-9.84 15.070-15.58 33.062-15.58 52.402 0 53.020 42.98 96 96 96s96-42.98 96-96c0-19.342-5.74-37.332-15.58-52.402l103.192-171.986c2.766 0.238 5.56 0.386 8.388 0.386 2.136 0 4.248-0.094 6.35-0.23l170.356 298.122c-10.536 15.408-16.706 34.036-16.706 54.11 0 53.020 42.98 96 96 96s96-42.98 96-96c0-53.020-42.98-96-96-96-2.14 0-4.248 0.094-6.35 0.232l-170.356-298.124c10.536-15.406 16.706-34.036 16.706-54.11 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 19.34 5.74 37.332 15.578 52.402l-103.19 171.984c-2.766-0.238-5.56-0.386-8.388-0.386s-5.622 0.146-8.388 0.386l-103.192-171.986c9.84-15.068 15.58-33.060 15.58-52.4 0-53.020-42.98-96-96-96z" />
<glyph unicode="&#xede8;" glyph-name="stats-bars" d="M0 128h1024v-128h-1024zM128 384h128v-192h-128zM320 640h128v-448h-128zM512 448h128v-256h-128zM704 832h128v-640h-128z" />
<glyph unicode="&#xede9;" glyph-name="stats-bars2" d="M288 576h-192c-17.6 0-32-14.4-32-32v-576c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v576c0 17.6-14.4 32-32 32zM288 0h-192v256h192v-256zM608 704h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM608 0h-192v320h192v-320zM928 832h-192c-17.6 0-32-14.4-32-32v-832c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v832c0 17.6-14.4 32-32 32zM928 0h-192v384h192v-384z" />
<glyph unicode="&#xedea;" glyph-name="trophy" d="M832 768v128h-640v-128h-192v-128c0-106.038 85.958-192 192-192 20.076 0 39.43 3.086 57.62 8.802 46.174-66.008 116.608-113.796 198.38-130.396v-198.406h-64c-70.694 0-128-57.306-128-128h512c0 70.694-57.306 128-128 128h-64v198.406c81.772 16.6 152.206 64.386 198.38 130.396 18.19-5.716 37.544-8.802 57.62-8.802 106.042 0 192 85.962 192 192v128h-192zM192 524c-63.962 0-116 52.038-116 116v64h116v-64c0-40.186 7.43-78.632 20.954-114.068-6.802-1.246-13.798-1.932-20.954-1.932zM948 640c0-63.962-52.038-116-116-116-7.156 0-14.152 0.686-20.954 1.932 13.524 35.436 20.954 73.882 20.954 114.068v64h116v-64z" />
<glyph unicode="&#xedeb;" glyph-name="gift" d="M771.516 640c18.126 12.88 35.512 27.216 51.444 43.148 33.402 33.402 55.746 74.5 62.912 115.722 7.858 45.186-3.672 87.14-31.63 115.1-22.3 22.298-52.51 34.086-87.364 34.086-49.632 0-101.922-23.824-143.46-65.362-66.476-66.476-105.226-158.238-126.076-223.722-15.44 65.802-46.206 154.644-106.018 214.458-32.094 32.092-73.114 48.57-111.846 48.57-31.654 0-61.78-11.004-84.26-33.486-49.986-49.988-43.232-137.786 15.086-196.104 20.792-20.792 45.098-38.062 70.72-52.412h-217.024v-256h64v-448h768v448.002h64v256h-188.484zM674.326 831.782c27.724 27.724 62.322 44.274 92.55 44.274 10.7 0 25.708-2.254 36.45-12.998 26.030-26.028 11.412-86.308-31.28-128.998-43.946-43.946-103.060-74.168-154.432-94.060h-50.672c18.568 57.548 52.058 136.456 107.384 191.782zM233.934 799.11c-0.702 9.12-0.050 26.248 12.196 38.494 10.244 10.244 23.788 12.396 33.348 12.396v0c21.258 0 43.468-10.016 60.932-27.48 33.872-33.872 61.766-87.772 80.668-155.876 0.51-1.84 1.008-3.67 1.496-5.486-1.816 0.486-3.646 0.984-5.486 1.496-68.104 18.904-122.002 46.798-155.874 80.67-15.828 15.826-25.77 36.16-27.28 55.786zM448 0h-256v416h256v-416zM448 448h-320v128h320v-128zM832 0h-256v416h256v-416zM896 448h-320v128h320v-128z" />
<glyph unicode="&#xedec;" glyph-name="glass" d="M777.784 943.144c-5.576 10.38-16.406 16.856-28.19 16.856h-475.188c-11.784 0-22.614-6.476-28.19-16.856-35.468-66.020-54.216-143.184-54.216-223.144 0-105.412 32.372-204.828 91.154-279.938 45.428-58.046 102.48-96.54 164.846-112.172v-327.89h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v327.89c62.368 15.632 119.418 54.124 164.846 112.172 58.782 75.11 91.154 174.526 91.154 279.938 0 79.96-18.748 157.122-54.216 223.144zM294.1 896h435.8c24.974-52.902 38.1-113.338 38.1-176 0-5.364-0.108-10.696-0.296-16h-511.406c-0.19 5.304-0.296 10.636-0.296 16-0.002 62.664 13.126 123.098 38.098 176z" />
<glyph unicode="&#xeded;" glyph-name="glass2" d="M889.162 780.23c7.568 9.632 8.972 22.742 3.62 33.758-5.356 11.018-16.532 18.012-28.782 18.012h-704c-12.25 0-23.426-6.994-28.78-18.012-5.356-11.018-3.95-24.126 3.618-33.758l313.162-398.57v-381.66h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v381.66l313.162 398.57zM798.162 768l-100.572-128h-371.18l-100.57 128h572.322z" />
<glyph unicode="&#xedee;" glyph-name="mug" d="M960 640h-192v96c0 88.366-171.922 160-384 160s-384-71.634-384-160v-640c0-88.366 171.922-160 384-160s384 71.634 384 160v96h192c35.346 0 64 28.654 64 64v320c0 35.346-28.654 64-64 64zM176.056 701.602c-36.994 12.19-59.408 25.246-71.41 34.398 12.004 9.152 34.416 22.208 71.41 34.398 57.942 19.090 131.79 29.602 207.944 29.602s150.004-10.512 207.944-29.602c36.994-12.188 59.408-25.246 71.41-34.398-12.002-9.152-34.416-22.208-71.41-34.398-57.94-19.090-131.79-29.602-207.944-29.602s-150.002 10.512-207.944 29.602zM896 320h-128v192h128v-192z" />
<glyph unicode="&#xedef;" glyph-name="spoon-knife" d="M224 960c-106.040 0-192-100.288-192-224 0-105.924 63.022-194.666 147.706-217.998l-31.788-518.124c-2.154-35.132 24.882-63.878 60.082-63.878h32c35.2 0 62.236 28.746 60.082 63.878l-31.788 518.124c84.684 23.332 147.706 112.074 147.706 217.998 0 123.712-85.96 224-192 224zM869.334 960l-53.334-320h-40l-26.666 320h-26.668l-26.666-320h-40l-53.334 320h-26.666v-416c0-17.672 14.326-32 32-32h83.338l-31.42-512.122c-2.154-35.132 24.882-63.878 60.082-63.878h32c35.2 0 62.236 28.746 60.082 63.878l-31.42 512.122h83.338c17.674 0 32 14.328 32 32v416h-26.666z" />
<glyph unicode="&#xedf0;" glyph-name="leaf" d="M1011.328 825.504c-110.752 83.928-281.184 134.034-455.91 134.034-216.12 0-392.226-75.456-483.16-207.020-42.708-61.79-66.33-134.958-70.208-217.474-3.454-73.474 8.884-154.726 36.684-242.146 94.874 284.384 359.82 507.102 665.266 507.102 0 0-285.826-75.232-465.524-308.192-0.112-0.138-2.494-3.090-6.614-8.698-36.080-48.278-67.538-103.162-91.078-165.328-39.87-94.83-76.784-224.948-76.784-381.782h128c0 0-19.43 122.222 14.36 262.79 55.89-7.556 105.858-11.306 150.852-11.306 117.678 0 201.37 25.46 263.388 80.124 55.568 48.978 86.198 114.786 118.624 184.456 49.524 106.408 105.654 227.010 268.654 320.152 9.33 5.332 15.362 14.992 16.056 25.716s-4.040 21.080-12.606 27.572z" />
<glyph unicode="&#xedf1;" glyph-name="rocket" d="M704 896l-320-320h-192l-192-256c0 0 203.416 56.652 322.066 30.084l-322.066-414.084 421.902 328.144c58.838-134.654-37.902-328.144-37.902-328.144l256 192v192l320 320 64 320-320-64z" />
<glyph unicode="&#xedf2;" glyph-name="meter" d="M512 896c282.77 0 512-229.23 512-512 0-192.792-106.576-360.666-264.008-448h-495.984c-157.432 87.334-264.008 255.208-264.008 448 0 282.77 229.23 512 512 512zM801.914 94.086c77.438 77.44 120.086 180.398 120.086 289.914h-90v64h85.038c-7.014 44.998-21.39 88.146-42.564 128h-106.474v64h64.284c-9.438 11.762-19.552 23.096-30.37 33.914-46.222 46.22-101.54 80.038-161.914 99.798v-69.712h-64v85.040c-20.982 3.268-42.36 4.96-64 4.96s-43.018-1.69-64-4.96v-85.040h-64v69.712c-60.372-19.76-115.692-53.576-161.914-99.798-10.818-10.818-20.932-22.152-30.37-33.914h64.284v-64h-106.476c-21.174-39.854-35.552-83.002-42.564-128h85.040v-64h-90c0-109.516 42.648-212.474 120.086-289.914 10.71-10.71 21.924-20.728 33.56-30.086h192.354l36.572 512h54.856l36.572-512h192.354c11.636 9.358 22.852 19.378 33.56 30.086z" />
<glyph unicode="&#xedf3;" glyph-name="meter2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM302.836 125.848c11.106 30.632 17.164 63.688 17.164 98.152 0 124.35-78.81 230.292-189.208 270.606 10.21 84.924 48.254 163.498 109.678 224.924 72.53 72.526 168.96 112.47 271.53 112.47s199-39.944 271.53-112.47c61.428-61.426 99.468-140 109.682-224.924-110.402-40.314-189.212-146.256-189.212-270.606 0-34.468 6.060-67.52 17.166-98.15-61.706-40.242-133.77-61.85-209.166-61.85-75.394 0-147.458 21.608-209.164 61.848zM551.754 319.004c13.878-3.494 24.246-16.080 24.246-31.004v-64c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v64c0 14.924 10.368 27.51 24.246 31.004l23.754 448.996h32l23.754-448.996z" />
<glyph unicode="&#xedf4;" glyph-name="hammer2" d="M1010.174 44.25l-548.634 499.458 25.534 25.598c20.894 20.954 32.188 48.030 33.918 75.61 1.002 0.45 2.002 0.912 2.958 1.442l102.99 64.402c13.934 16.392 12.916 42.268-2.284 57.502l-179.12 179.608c-15.19 15.234-40.998 16.262-57.344 2.284l-64.236-103.268c-0.526-0.966-0.99-1.966-1.44-2.974-27.502-1.736-54.5-13.056-75.398-34.006l-97.428-97.702c-20.898-20.956-32.184-48.026-33.918-75.604-1.004-0.45-2.004-0.916-2.964-1.446l-102.986-64.406c-13.942-16.39-12.916-42.264 2.276-57.496l179.12-179.604c15.194-15.238 40.996-16.262 57.35-2.286l64.228 103.27c0.528 0.958 0.988 1.96 1.442 2.966 27.502 1.738 54.504 13.050 75.398 34.004l28.292 28.372 498.122-550.114c14.436-15.944 36.7-18.518 49.474-5.712l50.356 50.488c12.764 12.808 10.196 35.132-5.706 49.614z" />
<glyph unicode="&#xedf5;" glyph-name="fire" d="M321.008-64c-68.246 142.008-31.902 223.378 20.55 300.044 57.44 83.956 72.244 167.066 72.244 167.066s45.154-58.7 27.092-150.508c79.772 88.8 94.824 230.28 82.782 284.464 180.314-126.012 257.376-398.856 153.522-601.066 552.372 312.532 137.398 780.172 65.154 832.85 24.082-52.676 28.648-141.85-20-185.126-82.352 312.276-285.972 376.276-285.972 376.276 24.082-161.044-87.296-337.144-194.696-468.73-3.774 64.216-7.782 108.528-41.55 169.98-7.58-116.656-96.732-211.748-120.874-328.628-32.702-158.286 24.496-274.18 241.748-396.622z" />
<glyph unicode="&#xedf6;" glyph-name="lab" d="M956.29 155.518l-316.29 527.024v213.458h32c17.6 0 32 14.4 32 32s-14.4 32-32 32h-320c-17.6 0-32-14.4-32-32s14.4-32 32-32h32v-213.458l-316.288-527.024c-72.442-120.734-16.512-219.518 124.288-219.518h640c140.8 0 196.73 98.784 124.29 219.518zM241.038 320l206.962 344.938v231.062h128v-231.062l206.964-344.938h-541.926z" />
<glyph unicode="&#xedf7;" glyph-name="magnet" d="M896 960h-256l64-576c0-106.040-85.96-192-192-192s-192 85.96-192 192l64 576h-256l-64-576c0-247.424 200.576-448 448-448s448 200.576 448 448l-64 576zM777.874 118.126c-71.018-71.014-165.44-110.126-265.874-110.126s-194.856 39.112-265.872 110.126c-70.116 70.118-109.13 163.048-110.11 262.054l36.092 324.82h111.114l-35.224-317.010v-3.99c0-70.518 27.46-136.814 77.324-186.676 49.862-49.864 116.158-77.324 186.676-77.324s136.814 27.46 186.676 77.324c49.864 49.862 77.324 116.158 77.324 186.676v3.988l-0.44 3.962-34.782 313.050h111.114l36.090-324.818c-0.98-99.006-39.994-191.938-110.108-262.056z" />
<glyph unicode="&#xedf8;" glyph-name="bin" d="M128 640v-640c0-35.2 28.8-64 64-64h576c35.2 0 64 28.8 64 64v640h-704zM320 64h-64v448h64v-448zM448 64h-64v448h64v-448zM576 64h-64v448h64v-448zM704 64h-64v448h64v-448zM848 832h-208v80c0 26.4-21.6 48-48 48h-224c-26.4 0-48-21.6-48-48v-80h-208c-26.4 0-48-21.6-48-48v-80h832v80c0 26.4-21.6 48-48 48zM576 832h-192v63.198h192v-63.198z" />
<glyph unicode="&#xedf9;" glyph-name="bin2" d="M192-64h640l64 704h-768zM640 832v128h-256v-128h-320v-192l64 64h768l64-64v192h-320zM576 832h-128v64h128v-64z" />
<glyph unicode="&#xedfa;" glyph-name="briefcase" d="M960 704h-256v64c0 35.2-28.8 64-64 64h-256c-35.204 0-64-28.8-64-64v-64h-256c-35.2 0-64-28.8-64-64v-576c0-35.202 28.796-64 64-64h896c35.2 0 64 28.798 64 64v576c0 35.2-28.8 64-64 64zM384 767.884c0.034 0.040 0.074 0.082 0.114 0.116h255.772c0.042-0.034 0.082-0.076 0.118-0.116v-63.884h-256.004v63.884zM960 448h-128v-96c0-17.602-14.4-32-32-32h-64c-17.604 0-32 14.398-32 32v96h-384v-96c0-17.602-14.4-32-32-32h-64c-17.602 0-32 14.398-32 32v96h-128v64h896v-64z" />
<glyph unicode="&#xedfb;" glyph-name="airplane" d="M768 320.032l-182.82 182.822 438.82 329.15-128.010 127.996-548.52-219.442-172.7 172.706c-49.78 49.778-119.302 61.706-154.502 26.508-35.198-35.198-23.268-104.726 26.51-154.5l172.686-172.684-219.464-548.582 127.99-128.006 329.19 438.868 182.826-182.828v-255.98h127.994l63.992 191.988 191.988 63.996v127.992l-255.98-0.004z" />
<glyph unicode="&#xedfc;" glyph-name="truck" d="M1024 384l-128 256h-192v128c0 35.2-28.8 64-64 64h-576c-35.2 0-64-28.8-64-64v-512l64-64h81.166c-10.898-18.832-17.166-40.678-17.166-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.268 45.168-17.166 64h354.334c-10.898-18.832-17.168-40.678-17.168-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.27 45.168-17.168 64h81.168v192zM704 384v192h132.668l96-192h-228.668z" />
<glyph unicode="&#xedfd;" glyph-name="road" d="M704-64h320l-256 1024h-192l32-256h-192l32 256h-192l-256-1024h320l32 256h320l32-256zM368 320l32 256h224l32-256h-288z" />
<glyph unicode="&#xedfe;" glyph-name="accessibility" d="M416 864c0 53.018 42.98 96 96 96s96-42.982 96-96c0-53.020-42.98-96-96-96s-96 42.98-96 96zM640 640l329.596 142.172-23.77 59.424-401.826-137.596h-64l-401.826 137.596-23.77-59.424 329.596-142.172v-256l-131.27-424.57 59.84-22.7 185.716 415.27h27.428l185.716-415.27 59.84 22.7-131.27 424.57z" />
<glyph unicode="&#xedff;" glyph-name="target" d="M1024 512h-100.924c-27.64 178.24-168.836 319.436-347.076 347.076v100.924h-128v-100.924c-178.24-27.64-319.436-168.836-347.076-347.076h-100.924v-128h100.924c27.64-178.24 168.836-319.436 347.076-347.076v-100.924h128v100.924c178.24 27.64 319.436 168.836 347.076 347.076h100.924v128zM792.822 512h-99.762c-19.284 54.55-62.51 97.778-117.060 117.060v99.762c107.514-24.49 192.332-109.31 216.822-216.822zM512 384c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM448 728.822v-99.762c-54.55-19.282-97.778-62.51-117.060-117.060h-99.762c24.49 107.512 109.31 192.332 216.822 216.822zM231.178 384h99.762c19.282-54.55 62.51-97.778 117.060-117.060v-99.762c-107.512 24.49-192.332 109.308-216.822 216.822zM576 167.178v99.762c54.55 19.284 97.778 62.51 117.060 117.060h99.762c-24.49-107.514-109.308-192.332-216.822-216.822z" />
<glyph unicode="&#xee00;" glyph-name="shield" d="M960 960l-448-128-448 128c0 0-4.5-51.698 0-128l448-140.090 448 140.090c4.498 76.302 0 128 0 128zM72.19 764.894c23.986-250.696 113.49-672.234 439.81-828.894 326.32 156.66 415.824 578.198 439.81 828.894l-439.81-165.358-439.81 165.358z" />
<glyph unicode="&#xee01;" glyph-name="power" d="M384 960l-384-512h384l-256-512 896 640h-512l384 384z" />
<glyph unicode="&#xee02;" glyph-name="switch" d="M640 813.412v-135.958c36.206-15.804 69.5-38.408 98.274-67.18 60.442-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274c-60.44-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c28.774 28.774 62.068 51.378 98.274 67.182v135.956c-185.048-55.080-320-226.472-320-429.412 0-247.424 200.578-448 448-448 247.424 0 448 200.576 448 448 0 202.94-134.95 374.332-320 429.412zM448 960h128v-512h-128z" />
<glyph unicode="&#xee03;" glyph-name="power-cord" d="M1024 677.5l-90.506 90.5-178.746-178.752-101.5 101.502 178.75 178.75-90.5 90.5-178.75-178.75-114.748 114.75-86.626-86.624 512.002-512 86.624 86.622-114.752 114.752 178.752 178.75zM794.040 286.21l-443.824 443.824c-95.818-114.904-204.52-292.454-129.396-445.216l-132.248-132.248c-31.112-31.114-31.112-82.024 0-113.136l14.858-14.858c31.114-31.114 82.026-31.114 113.138 0l132.246 132.244c152.764-75.132 330.318 33.566 445.226 129.39z" />
<glyph unicode="&#xee04;" glyph-name="clipboard" d="M928 832h-288c0 70.692-57.306 128-128 128-70.692 0-128-57.308-128-128h-288c-17.672 0-32-14.328-32-32v-832c0-17.674 14.328-32 32-32h832c17.674 0 32 14.326 32 32v832c0 17.672-14.326 32-32 32zM512 896c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64zM896 0h-768v768h128v-96c0-17.672 14.328-32 32-32h448c17.674 0 32 14.328 32 32v96h128v-768zM448 101.49l-205.254 237.254 58.508 58.51 146.746-114.744 274.742 242.744 58.514-58.508z" />
<glyph unicode="&#xee05;" glyph-name="list-numbered" d="M384 128h640v-128h-640zM384 512h640v-128h-640zM384 896h640v-128h-640zM192 960v-256h-64v192h-64v64zM128 434v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM256 256v-320h-192v64h128v64h-128v64h128v64h-128v64z" />
<glyph unicode="&#xee06;" glyph-name="list" d="M0 960h256v-256h-256zM384 896h640v-128h-640zM0 576h256v-256h-256zM384 512h640v-128h-640zM0 192h256v-256h-256zM384 128h640v-128h-640z" />
<glyph unicode="&#xee07;" glyph-name="list2" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128z" />
<glyph unicode="&#xee08;" glyph-name="tree" d="M976 192h-16v208c0 61.756-50.242 112-112 112h-272v128h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-128h-272c-61.756 0-112-50.244-112-112v-208h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48zM192 0h-128v128h128v-128zM576 0h-128v128h128v-128zM448 704v128h128v-128h-128zM960 0h-128v128h128v-128z" />
<glyph unicode="&#xee09;" glyph-name="menu" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
<glyph unicode="&#xee0a;" glyph-name="menu2" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 384l192-192 192 192zM1376 448l-192 192-192-192z" />
<glyph unicode="&#xee0b;" glyph-name="menu3" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 512l192-192 192 192z" />
<glyph unicode="&#xee0c;" glyph-name="menu4" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 320l192 192 192-192z" />
<glyph unicode="&#xee0d;" glyph-name="cloud" d="M1024 302.458c0 82.090-56.678 150.9-132.996 169.48-3.242 128.7-108.458 232.062-237.862 232.062-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.874-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848l656.262 0.012c96.138 0.184 174.008 78.212 174.008 174.446z" />
<glyph unicode="&#xee0e;" glyph-name="cloud-download" d="M891.004 599.94c-3.242 128.698-108.458 232.060-237.862 232.060-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.876-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848h91.76l226.51-234.51 226.51 234.51 111.482 0.012c96.138 0.184 174.008 78.21 174.008 174.446 0 82.090-56.678 150.9-132.996 169.482zM512 128l-192 192h128v192h128v-192h128l-192-192z" />
<glyph unicode="&#xee0f;" glyph-name="cloud-upload" d="M892.268 573.51c2.444 11.11 3.732 22.648 3.732 34.49 0 88.366-71.634 160-160 160-14.222 0-28.014-1.868-41.132-5.352-24.798 77.352-97.29 133.352-182.868 133.352-87.348 0-161.054-58.336-184.326-138.17-22.742 6.622-46.792 10.17-71.674 10.17-141.384 0-256-114.616-256-256 0-141.388 114.616-256 256-256h128v-192h256v192h224c88.366 0 160 71.632 160 160 0 78.72-56.854 144.162-131.732 157.51zM576 320v-192h-128v192h-160l224 224 224-224h-160z" />
<glyph unicode="&#xee10;" glyph-name="cloud-check" d="M892.268 445.51c2.442 11.108 3.732 22.646 3.732 34.49 0 88.366-71.634 160-160 160-14.224 0-28.014-1.868-41.134-5.352-24.796 77.352-97.288 133.352-182.866 133.352-87.348 0-161.054-58.336-184.326-138.17-22.742 6.62-46.792 10.17-71.674 10.17-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256h608c88.366 0 160 71.632 160 160 0 78.718-56.854 144.16-131.732 157.51zM416 192l-160 160 64 64 96-96 224 224 64-64-288-288z" />
<glyph unicode="&#xee11;" glyph-name="download2" d="M896 448h-160l-224-224-224 224h-160l-128-256v-64h1024v64l-128 256zM0 64h1024v-64h-1024v64zM576 640v256h-128v-256h-224l288-288 288 288h-224z" />
<glyph unicode="&#xee12;" glyph-name="upload2" d="M0 64h1024v-64h-1024zM1024 192v-64h-1024v64l128 256h256v-128h256v128h256zM224 640l288 288 288-288h-224v-256h-128v256z" />
<glyph unicode="&#xee13;" glyph-name="download3" d="M736 512l-256-256-256 256h160v384h192v-384zM480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64z" />
<glyph unicode="&#xee14;" glyph-name="upload3" d="M480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64zM224 640l256 256 256-256h-160v-320h-192v320z" />
<glyph unicode="&#xee15;" glyph-name="sphere" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM751.59 256c8.58 40.454 13.996 83.392 15.758 128h127.446c-3.336-44.196-13.624-87.114-30.68-128h-112.524zM208.41 576c-8.58-40.454-13.996-83.392-15.758-128h-127.444c3.336 44.194 13.622 87.114 30.678 128h112.524zM686.036 576c9.614-40.962 15.398-83.854 17.28-128h-191.316v128h174.036zM512 640v187.338c14.59-4.246 29.044-11.37 43.228-21.37 26.582-18.74 52.012-47.608 73.54-83.486 14.882-24.802 27.752-52.416 38.496-82.484h-155.264zM331.232 722.484c21.528 35.878 46.956 64.748 73.54 83.486 14.182 10 28.638 17.124 43.228 21.37v-187.34h-155.264c10.746 30.066 23.616 57.68 38.496 82.484zM448 576v-128h-191.314c1.88 44.146 7.666 87.038 17.278 128h174.036zM95.888 256c-17.056 40.886-27.342 83.804-30.678 128h127.444c1.762-44.608 7.178-87.546 15.758-128h-112.524zM256.686 384h191.314v-128h-174.036c-9.612 40.96-15.398 83.854-17.278 128zM448 192v-187.34c-14.588 4.246-29.044 11.372-43.228 21.37-26.584 18.74-52.014 47.61-73.54 83.486-14.882 24.804-27.75 52.418-38.498 82.484h155.266zM628.768 109.516c-21.528-35.876-46.958-64.746-73.54-83.486-14.184-9.998-28.638-17.124-43.228-21.37v187.34h155.266c-10.746-30.066-23.616-57.68-38.498-82.484zM512 256v128h191.314c-1.88-44.146-7.666-87.040-17.28-128h-174.034zM767.348 448c-1.762 44.608-7.178 87.546-15.758 128h112.524c17.056-40.886 27.344-83.806 30.68-128h-127.446zM830.658 640h-95.9c-18.638 58.762-44.376 110.294-75.316 151.428 42.536-20.34 81.058-47.616 114.714-81.272 21.48-21.478 40.362-44.938 56.502-70.156zM185.844 710.156c33.658 33.658 72.18 60.932 114.714 81.272-30.942-41.134-56.676-92.666-75.316-151.428h-95.898c16.138 25.218 35.022 48.678 56.5 70.156zM129.344 192h95.898c18.64-58.762 44.376-110.294 75.318-151.43-42.536 20.34-81.058 47.616-114.714 81.274-21.48 21.478-40.364 44.938-56.502 70.156zM774.156 121.844c-33.656-33.658-72.18-60.934-114.714-81.274 30.942 41.134 56.678 92.668 75.316 151.43h95.9c-16.14-25.218-35.022-48.678-56.502-70.156z" />
<glyph unicode="&#xee16;" glyph-name="earth" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512-0.002c-62.958 0-122.872 13.012-177.23 36.452l233.148 262.29c5.206 5.858 8.082 13.422 8.082 21.26v96c0 17.674-14.326 32-32 32-112.99 0-232.204 117.462-233.374 118.626-6 6.002-14.14 9.374-22.626 9.374h-128c-17.672 0-32-14.328-32-32v-192c0-12.122 6.848-23.202 17.69-28.622l110.31-55.156v-187.886c-116.052 80.956-192 215.432-192 367.664 0 68.714 15.49 133.806 43.138 192h116.862c8.488 0 16.626 3.372 22.628 9.372l128 128c6 6.002 9.372 14.14 9.372 22.628v77.412c40.562 12.074 83.518 18.588 128 18.588 70.406 0 137.004-16.26 196.282-45.2-4.144-3.502-8.176-7.164-12.046-11.036-36.266-36.264-56.236-84.478-56.236-135.764s19.97-99.5 56.236-135.764c36.434-36.432 85.218-56.264 135.634-56.26 3.166 0 6.342 0.080 9.518 0.236 13.814-51.802 38.752-186.656-8.404-372.334-0.444-1.744-0.696-3.488-0.842-5.224-81.324-83.080-194.7-134.656-320.142-134.656z" />
<glyph unicode="&#xee17;" glyph-name="link" d="M440.236 324.234c-13.31 0-26.616 5.076-36.77 15.23-95.134 95.136-95.134 249.934 0 345.070l192 192c46.088 46.086 107.36 71.466 172.534 71.466s126.448-25.38 172.536-71.464c95.132-95.136 95.132-249.934 0-345.070l-87.766-87.766c-20.308-20.308-53.23-20.308-73.54 0-20.306 20.306-20.306 53.232 0 73.54l87.766 87.766c54.584 54.586 54.584 143.404 0 197.99-26.442 26.442-61.6 41.004-98.996 41.004s-72.552-14.562-98.996-41.006l-192-191.998c-54.586-54.586-54.586-143.406 0-197.992 20.308-20.306 20.306-53.232 0-73.54-10.15-10.152-23.462-15.23-36.768-15.23zM256-52c-65.176 0-126.45 25.38-172.534 71.464-95.134 95.136-95.134 249.934 0 345.070l87.764 87.764c20.308 20.306 53.234 20.306 73.54 0 20.308-20.306 20.308-53.232 0-73.54l-87.764-87.764c-54.586-54.586-54.586-143.406 0-197.992 26.44-26.44 61.598-41.002 98.994-41.002s72.552 14.562 98.998 41.006l192 191.998c54.584 54.586 54.584 143.406 0 197.992-20.308 20.308-20.306 53.232 0 73.54 20.306 20.306 53.232 20.306 73.54-0.002 95.132-95.134 95.132-249.932 0.002-345.068l-192.002-192c-46.090-46.088-107.364-71.466-172.538-71.466z" />
<glyph unicode="&#xee18;" glyph-name="flag" d="M0 960h128v-1024h-128v1024zM832 316.998c82.624 0 154.57 19.984 192 49.5v512c-37.43-29.518-109.376-49.502-192-49.502s-154.57 19.984-192 49.502v-512c37.43-29.516 109.376-49.5 192-49.5zM608 927.472c-46.906 19.94-115.52 32.528-192 32.528-96.396 0-180.334-19.984-224-49.502v-512c43.666 29.518 127.604 49.502 224 49.502 76.48 0 145.094-12.588 192-32.528v512z" />
<glyph unicode="&#xee19;" glyph-name="attachment" d="M665.832 632.952l-64.952 64.922-324.81-324.742c-53.814-53.792-53.814-141.048 0-194.844 53.804-53.792 141.060-53.792 194.874 0l389.772 389.708c89.714 89.662 89.714 235.062 0 324.726-89.666 89.704-235.112 89.704-324.782 0l-409.23-409.178c-0.29-0.304-0.612-0.576-0.876-0.846-125.102-125.096-125.102-327.856 0-452.906 125.054-125.056 327.868-125.056 452.988 0 0.274 0.274 0.516 0.568 0.82 0.876l0.032-0.034 279.332 279.292-64.986 64.92-279.33-279.262c-0.296-0.268-0.564-0.57-0.846-0.844-89.074-89.058-233.98-89.058-323.076 0-89.062 89.042-89.062 233.922 0 322.978 0.304 0.304 0.604 0.582 0.888 0.846l-0.046 0.060 409.28 409.166c53.712 53.738 141.144 53.738 194.886 0 53.712-53.734 53.712-141.148 0-194.84l-389.772-389.7c-17.936-17.922-47.054-17.922-64.972 0-17.894 17.886-17.894 47.032 0 64.92l324.806 324.782z" />
<glyph unicode="&#xee1a;" glyph-name="eye" d="M512 768c-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.312 0 416.876 130.042 512 320-95.116 189.958-288.688 320-512 320zM764.45 598.296c60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.858 25.486-252.452 73.704-60.158 38.372-111.138 89.772-149.432 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.86 7.3-9.96-27.328-15.41-56.822-15.41-87.596 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 30.774-5.452 60.268-15.408 87.598 3.978-2.378 7.938-4.802 11.858-7.302v0zM512 544c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.982 96-96z" />
<glyph unicode="&#xee1b;" glyph-name="eye-plus" d="M1024 832h-128v128h-128v-128h-128v-128h128v-128h128v128h128zM863.862 513.972c18.436-20.478 35.192-42.53 50.022-65.972-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.86 25.486-252.454 73.704-60.156 38.372-111.136 89.772-149.43 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-141.382 114.616-256 256-256 141.38 0 256 114.618 256 256 0 0.692-0.018 1.38-0.024 2.072-109.284 28.138-190.298 126.63-191.932 244.31-21.026 2.38-42.394 3.618-64.044 3.618-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.31 0 416.876 130.042 512 320-17.64 35.23-38.676 68.394-62.65 99.054-29.28-17.178-62.272-28.71-97.488-33.082zM416 640c53.020 0 96-42.982 96-96 0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96z" />
<glyph unicode="&#xee1c;" glyph-name="eye-minus" d="M640 832h384v-128h-384v128zM870.32 640h-294.32v124.388c-21.014 2.376-42.364 3.612-64 3.612-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.31 0 416.876 130.042 512 320-37.396 74.686-90.020 140.1-153.68 192zM416 640c53.020 0 96-42.982 96-96 0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96zM764.448 297.704c-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.86 25.486-252.454 73.704-60.156 38.372-111.136 89.772-149.43 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-141.382 114.616-256 256-256 141.38 0 256 114.618 256 256 0 30.774-5.454 60.268-15.408 87.598 3.976-2.378 7.938-4.802 11.858-7.302 60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296z" />
<glyph unicode="&#xee1d;" glyph-name="eye-blocked" d="M945.942 945.942c-18.746 18.744-49.136 18.744-67.882 0l-202.164-202.164c-51.938 15.754-106.948 24.222-163.896 24.222-223.318 0-416.882-130.042-512-320 41.122-82.124 100.648-153.040 173.022-207.096l-158.962-158.962c-18.746-18.746-18.746-49.136 0-67.882 9.372-9.374 21.656-14.060 33.94-14.060s24.568 4.686 33.942 14.058l864 864c18.744 18.746 18.744 49.138 0 67.884zM416 640c42.24 0 78.082-27.294 90.92-65.196l-121.724-121.724c-37.902 12.838-65.196 48.68-65.196 90.92 0 53.020 42.98 96 96 96zM110.116 448c38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-54.89 17.286-105.738 46.7-147.418l-60.924-60.924c-52.446 36.842-97.202 83.882-131.66 138.342zM768 518c0 27.166-4.256 53.334-12.102 77.898l-321.808-321.808c24.568-7.842 50.742-12.090 77.91-12.090 141.382 0 256 114.618 256 256zM830.026 670.026l-69.362-69.362c1.264-0.786 2.53-1.568 3.786-2.368 60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-38.664 0-76.902 4.76-113.962 14.040l-76.894-76.894c59.718-21.462 123.95-33.146 190.856-33.146 223.31 0 416.876 130.042 512 320-45.022 89.916-112.118 166.396-193.974 222.026z" />
<glyph unicode="&#xee1e;" glyph-name="bookmark" d="M192 960v-1024l320 320 320-320v1024z" />
<glyph unicode="&#xee1f;" glyph-name="bookmarks" d="M256 832v-896l320 320 320-320v896zM768 960h-640v-896l64 64v768h576z" />
<glyph unicode="&#xee20;" glyph-name="sun" d="M512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.348 0-64 28.654-64 64s28.652 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.258c24.992-24.99 24.992-65.516 0-90.508-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.99-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.518 24.992 90.508 0 24.994-24.994 24.994-65.52 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0s-24.994 65.518 0 90.508l45.256 45.258zM512 704c-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 141.384-114.616 256-256 256zM512 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
<glyph unicode="&#xee21;" glyph-name="contrast" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM128 448c0 212.078 171.922 384 384 384v-768c-212.078 0-384 171.922-384 384z" />
<glyph unicode="&#xee22;" glyph-name="brightness-contrast" d="M512 704c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.616 256-256 256zM512 288v320c88.224 0 160-71.776 160-160s-71.776-160-160-160zM512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.256c24.992-24.992 24.992-65.516 0-90.51-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.992-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.516 24.992 90.508 0 24.994-24.994 24.994-65.518 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0-24.994 24.994-24.994 65.518 0 90.51l45.256 45.256z" />
<glyph unicode="&#xee23;" glyph-name="star-empty" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-223.462-117.48 42.676 248.83-180.786 176.222 249.84 36.304 111.732 226.396 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
<glyph unicode="&#xee24;" glyph-name="star-half" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-0.942-0.496 0.942 570.768 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
<glyph unicode="&#xee25;" glyph-name="star-full" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538z" />
<glyph unicode="&#xee26;" glyph-name="heart" d="M755.188 896c-107.63 0-200.258-87.554-243.164-179-42.938 91.444-135.578 179-243.216 179-148.382 0-268.808-120.44-268.808-268.832 0-301.846 304.5-380.994 512.022-679.418 196.154 296.576 511.978 387.206 511.978 679.418 0 148.392-120.43 268.832-268.812 268.832z" />
<glyph unicode="&#xee27;" glyph-name="heart-broken" d="M755.188 896c148.382 0 268.812-120.44 268.812-268.832 0-292.21-315.824-382.842-511.978-679.418-207.522 298.424-512.022 377.572-512.022 679.418 0 148.392 120.426 268.832 268.808 268.832 60.354 0 115.99-27.53 160.796-67.834l-77.604-124.166 224-128-128-320 352 384-224 128 61.896 92.846c35.42 21.768 75.21 35.154 117.292 35.154z" />
<glyph unicode="&#xee28;" glyph-name="man" d="M576 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM576 704h-192c-35.346 0-64-28.654-64-64v-320h64v-384h80v384h32v-384h80v384h64v320c0 35.346-28.652 64-64 64z" />
<glyph unicode="&#xee29;" glyph-name="woman" d="M576 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM719 448l49 35.5-133.286 206.116c-5.92 8.98-15.958 14.384-26.714 14.384h-256c-10.756 0-20.792-5.404-26.714-14.384l-133.286-206.116 49-35.5 110.644 143.596 38.458-89.74-134.102-245.856h122.666l21.334-320h64v320h32v-320h64l21.334 320h122.666l-134.104 245.858 38.458 89.74 110.646-143.598z" />
<glyph unicode="&#xee2a;" glyph-name="man-woman" d="M256 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM832 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM256 704h-192c-35.346 0-64-28.654-64-64v-320h64v-384h80v384h32v-384h80v384h64v320c0 35.346-28.652 64-64 64zM975 448l49 35.5-133.286 206.116c-5.92 8.98-15.958 14.384-26.714 14.384h-256c-10.756 0-20.792-5.404-26.714-14.384l-133.286-206.116 49-35.5 110.644 143.596 38.458-89.74-134.102-245.856h122.666l21.334-320h64v320h32v-320h64l21.334 320h122.666l-134.104 245.858 38.458 89.74 110.646-143.598z" />
<glyph unicode="&#xee2b;" glyph-name="happy" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM512 361.24c115.95 0 226.23 30.806 320 84.92-14.574-178.438-153.128-318.16-320-318.16-166.868 0-305.422 139.872-320 318.304 93.77-54.112 204.050-85.064 320-85.064zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96z" />
<glyph unicode="&#xee2c;" glyph-name="happy2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.348 0 64-42.98 64-96s-28.652-96-64-96-64 42.98-64 96 28.652 96 64 96zM320 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM512 64c-166.868 0-305.422 139.872-320 318.304 93.77-54.114 204.050-85.064 320-85.064s226.23 30.806 320 84.92c-14.574-178.438-153.128-318.16-320-318.16z" />
<glyph unicode="&#xee2d;" glyph-name="smile" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM704.098 332.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74z" />
<glyph unicode="&#xee2e;" glyph-name="smile2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
<glyph unicode="&#xee2f;" glyph-name="tongue" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM768 384v-64h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512z" />
<glyph unicode="&#xee30;" glyph-name="tongue2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM768 320h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512v-64zM704 576c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" />
<glyph unicode="&#xee31;" glyph-name="sad" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM319.902 179.26l-82.328 49.396c55.962 93.070 157.916 155.344 274.426 155.344 116.508 0 218.462-62.274 274.426-155.344l-82.328-49.396c-39.174 65.148-110.542 108.74-192.098 108.74-81.558 0-152.924-43.592-192.098-108.74z" />
<glyph unicode="&#xee32;" glyph-name="sad2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
<glyph unicode="&#xee33;" glyph-name="wink" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM542.74 248.972c140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.956-161.518-297.566-330.85-297.566-119.242 0-223.858 64.282-282.892 160.948 70.41-55.058 194.534-65.808 325.288-39.976zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM352 588.5c-41.796 0-77.334-15.656-90.516-37.5-3.54 5.866-5.484 32.174-5.484 38.75 0 31.066 42.98 56.25 96 56.25s96-25.184 96-56.25c0-6.576-1.944-32.884-5.484-38.75-13.182 21.844-48.72 37.5-90.516 37.5z" />
<glyph unicode="&#xee34;" glyph-name="wink2" d="M512 960c-282.77 0-512-229.228-512-512 0-282.77 229.228-512 512-512 282.77 0 512 229.23 512 512 0 282.772-229.23 512-512 512zM704 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM352 647.938c59.646 0 102-22.332 102-57.282 0-7.398 3.812-42.994-0.17-49.594-14.828 24.576-54.81 42.188-101.83 42.188s-87.002-17.612-101.83-42.188c-3.982 6.6-0.17 42.196-0.17 49.594 0 34.95 42.354 57.282 102 57.282zM500.344 128c-119.242 0-223.858 64.28-282.892 160.952 70.41-55.060 194.534-65.81 325.288-39.978 140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.96-161.518-297.568-330.85-297.568z" />
<glyph unicode="&#xee35;" glyph-name="grin" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM192 448v-64c0-140.8 115.2-256 256-256h128c140.8 0 256 115.2 256 256v64h-640zM384 203.012c-26.538 9.458-50.924 24.822-71.544 45.446-36.406 36.402-56.456 84.54-56.456 135.542h128v-180.988zM576 192h-128v192h128v-192zM711.544 248.458c-20.624-20.624-45.010-35.988-71.544-45.446v180.988h128c0-51.002-20.048-99.14-56.456-135.542zM225.352 576c0.002 0 0 0 0 0 9.768 0 18.108 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.956-16.69 19.722-16.69 9.768 0 18.108 7.056 19.724 16.688 1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.548-12.876 1.628-19.312 1.62-9.632 9.96-16.688 19.726-16.688zM609.352 576c0.002 0 0 0 0 0 9.77 0 18.112 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.958-16.69 19.722-16.69s18.108 7.056 19.722 16.688c1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.544-12.876 1.626-19.312 1.624-9.632 9.964-16.688 19.73-16.688z" />
<glyph unicode="&#xee36;" glyph-name="grin2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 724c63.962 0 116-52.038 116-116 0-6.378-0.546-12.876-1.628-19.312-1.618-9.632-9.958-16.688-19.724-16.688s-18.108 7.056-19.722 16.69c-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69-0.002 0 0 0-0.002 0-9.766 0-18.106 7.056-19.722 16.688-1.084 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM320 724c63.962 0 116-52.038 116-116 0-6.378-0.548-12.876-1.628-19.312-1.618-9.632-9.956-16.688-19.724-16.688s-18.106 7.056-19.722 16.69c-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69 0 0 0 0 0 0-9.766 0-18.106 7.056-19.724 16.688-1.082 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM192 384h192v-247.846c-110.094 28.606-192 129.124-192 247.846zM448 128v256h128v-256h-128zM640 136.154v247.846h192c0-118.722-81.904-219.24-192-247.846z" />
<glyph unicode="&#xee37;" glyph-name="cool" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM800 704c17.6 0 32-14.4 32-32v-96c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192zM512 192c93.208 0 174.772 49.818 219.546 124.278l54.88-32.934c-55.966-93.070-157.916-155.344-274.426-155.344-48.458 0-94.384 10.796-135.54 30.082l33.162 55.278c31.354-13.714 65.964-21.36 102.378-21.36z" />
<glyph unicode="&#xee38;" glyph-name="cool2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 128c-48.458 0-94.384 10.796-135.542 30.082l33.162 55.276c31.356-13.712 65.966-21.358 102.38-21.358 93.208 0 174.772 49.818 219.542 124.278l54.882-32.934c-55.964-93.070-157.914-155.344-274.424-155.344zM832 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-96z" />
<glyph unicode="&#xee39;" glyph-name="angry" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396zM767.042 679.76c4.284-17.144-6.14-34.518-23.282-38.804-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804z" />
<glyph unicode="&#xee3a;" glyph-name="angry2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284s-6.138-34.518-23.284-38.806c-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
<glyph unicode="&#xee3b;" glyph-name="evil" d="M639.996 512c-35.346 0-64 28.654-63.998 64.002 0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284 4.284-17.146-6.14-34.518-23.284-38.806-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64zM280.242 640.956c-17.144 4.286-27.568 21.66-23.282 38.804 4.286 17.146 21.66 27.572 38.806 23.284 1.444-0.362 35.806-9.050 70.548-26.422 36.382-18.19 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.316 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.312 16.9-56.936 21.35zM512 224c81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74zM1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
<glyph unicode="&#xee3c;" glyph-name="evil2" d="M1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284s-6.138-34.518-23.284-38.806c-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74 81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
<glyph unicode="&#xee3d;" glyph-name="shocked" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM384 256c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96z" />
<glyph unicode="&#xee3e;" glyph-name="shocked2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96zM512 128c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM704 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96z" />
<glyph unicode="&#xee3f;" glyph-name="baffled" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM384 544c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32zM352 640c53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM352 704c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160-71.776 160-160 160v0zM704 544c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32zM672 640c53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM672 704c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160-71.776 160-160 160v0zM384 256h256v-64h-256v64z" />
<glyph unicode="&#xee40;" glyph-name="baffled2" d="M384 544c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM704 544c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM256 544c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96zM640 192h-256v64h256v-64zM672 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
<glyph unicode="&#xee41;" glyph-name="confused" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM726.106 320h64.864c9.246-72.506-32.452-144.53-103.958-170.56-82.904-30.176-174.9 12.716-205.080 95.616-18.108 49.744-73.306 75.482-123.048 57.372-45.562-16.588-70.956-64.298-60.988-110.424h-64.86c-9.242 72.508 32.45 144.528 103.956 170.56 82.904 30.178 174.902-12.716 205.082-95.614 18.104-49.748 73.306-75.482 123.044-57.372 45.562 16.584 70.956 64.298 60.988 110.422z" />
<glyph unicode="&#xee42;" glyph-name="confused2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM687.010 149.44c-82.902-30.18-174.9 12.712-205.080 95.614-18.108 49.742-73.306 75.478-123.048 57.372-45.562-16.588-70.958-64.296-60.988-110.424h-64.86c-9.244 72.508 32.45 144.532 103.956 170.56 82.904 30.18 174.902-12.712 205.082-95.614 18.108-49.742 73.306-75.476 123.046-57.37 45.562 16.584 70.958 64.294 60.988 110.422h64.864c9.24-72.506-32.454-144.532-103.96-170.56z" />
<glyph unicode="&#xee43;" glyph-name="neutral" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM640 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM384 256h256v-64h-256v64z" />
<glyph unicode="&#xee44;" glyph-name="neutral2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM640 192h-256v64h256v-64zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64z" />
<glyph unicode="&#xee45;" glyph-name="hipster" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM675.882 419.882c-37.49 37.49-98.276 37.49-135.766 0s-37.49-98.276 0-135.766c1.204-1.204 2.434-2.368 3.684-3.492 86.528-78.512 288.2 1.842 288.2 103.376-62-40-110.45-9.786-156.118 35.882zM348.118 419.882c37.49 37.49 98.276 37.49 135.766 0s37.49-98.276 0-135.766c-1.204-1.204-2.434-2.368-3.684-3.492-86.528-78.512-288.2 1.842-288.2 103.376 62-40 110.45-9.786 156.118 35.882z" />
<glyph unicode="&#xee46;" glyph-name="hipster2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM543.8 280.624c-1.25 1.124-2.48 2.29-3.684 3.492-18.74 18.74-28.112 43.3-28.118 67.864-0.004-24.562-9.376-49.124-28.118-67.864-1.204-1.204-2.434-2.368-3.684-3.492-86.524-78.512-288.196 1.842-288.196 103.376 62-40 110.45-9.786 156.118 35.882 37.49 37.49 98.276 37.49 135.766 0 18.74-18.74 28.112-43.3 28.118-67.864 0.004 24.562 9.376 49.124 28.118 67.864 37.49 37.49 98.276 37.49 135.766 0 45.664-45.668 94.114-75.882 156.114-35.882 0-101.534-201.672-181.888-288.2-103.376z" />
<glyph unicode="&#xee47;" glyph-name="wondering" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM745.74 358.38l22.488-76.776-437.008-128.002-22.488 76.776zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64z" />
<glyph unicode="&#xee48;" glyph-name="wondering2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM331.244 153.614l-22.488 76.774 437 128 22.488-76.774-437-128z" />
<glyph unicode="&#xee49;" glyph-name="sleepy" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM640 288c0-88.366-57.308-160-128.002-160s-128.002 71.634-128.002 160c0 88.366 57.308 160 128.002 160s128.002-71.634 128.002-160zM416 620c-8.19 0-16.378 3.124-22.626 9.374-19.334 19.332-63.412 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374zM736 620c-8.19 0-16.378 3.124-22.626 9.374-19.332 19.332-63.414 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374z" />
<glyph unicode="&#xee4a;" glyph-name="sleepy2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM310.628 629.374c-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374s-16.378 3.124-22.626 9.374c-19.334 19.332-63.412 19.332-82.746 0zM511.998 128c-70.694 0-128.002 71.634-128.002 160s57.308 160 128.002 160 128.002-71.634 128.002-160-57.308-160-128.002-160zM758.628 629.374c-6.248-6.25-14.438-9.374-22.628-9.374s-16.378 3.124-22.626 9.374c-19.332 19.332-63.414 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.498 12.498-32.758 0-45.254z" />
<glyph unicode="&#xee4b;" glyph-name="frustrated" d="M366.312 676.622c-34.742 17.37-69.102 26.060-70.548 26.422-17.146 4.288-34.518-6.138-38.806-23.284-4.284-17.144 6.14-34.518 23.282-38.804 17.626-4.45 38.522-12.12 56.936-21.35-10.648-11.43-17.174-26.752-17.174-43.606 0-35.346 28.654-64 64-64s64 28.654 64 64c0 1.17-0.036 2.33-0.098 3.484-2.032 47.454-45.212 78.946-81.592 97.138zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM236.498 136.336c10.706-5.324 22.756-8.336 35.502-8.336h480c12.746 0 24.796 3.012 35.502 8.338-73.378-64.914-169.828-104.338-275.502-104.338-105.672 0-202.124 39.424-275.502 104.336zM256 208v96c0 8.674 7.328 16 16 16h112v-128h-112c-8.672 0-16 7.326-16 16zM448 192v128h128v-128h-128zM640 192v128h112c8.674 0 16-7.326 16-16v-96c0-8.674-7.326-16-16-16h-112zM823.662 172.498c5.326 10.706 8.338 22.756 8.338 35.502v96c0 44.112-35.888 80-80 80h-480c-44.112 0-80-35.888-80-80v-96c0-12.746 3.012-24.796 8.336-35.502-64.912 73.378-104.336 169.828-104.336 275.502 0 229.75 186.25 416 416 416s416-186.25 416-416c0-105.674-39.424-202.124-104.338-275.502zM728.236 703.044c-1.448-0.362-35.806-9.052-70.548-26.422-36.378-18.192-79.558-49.684-81.592-97.138-0.060-1.154-0.098-2.314-0.098-3.484 0-35.346 28.654-64 64-64s64 28.654 64 64c0 16.854-6.526 32.176-17.174 43.606 18.414 9.23 39.31 16.9 56.936 21.35 17.142 4.286 27.566 21.66 23.284 38.804-4.29 17.146-21.662 27.572-38.808 23.284z" />
<glyph unicode="&#xee4c;" glyph-name="frustrated2" d="M256 304v-96c0-8.674 7.328-16 16-16h112v128h-112c-8.672 0-16-7.326-16-16zM448 320h128v-128h-128v128zM752 320h-112v-128h112c8.674 0 16 7.326 16 16v96c0 8.674-7.326 16-16 16zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576.096 579.484c2.034 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284 4.284-17.144-6.14-34.518-23.284-38.804-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.040 2.33 0.1 3.484zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM832 208c0-44.112-35.888-80-80-80h-480c-44.112 0-80 35.888-80 80v96c0 44.112 35.888 80 80 80h480c44.112 0 80-35.888 80-80v-96z" />
<glyph unicode="&#xee4d;" glyph-name="crying" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM800 576h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32zM352 576h-128c-17.672 0-32 14.328-32 32s14.328 32 32 32h128c17.672 0 32-14.328 32-32s-14.328-32-32-32zM608 104c-8.19 0-16.378 3.124-22.626 9.374-4.582 4.582-29.42 14.626-73.374 14.626s-68.79-10.044-73.374-14.626c-12.496-12.496-32.758-12.496-45.254 0-12.498 12.496-12.498 32.758 0 45.254 30.122 30.12 92.994 33.372 118.628 33.372 25.632 0 88.506-3.252 118.626-33.374 12.498-12.496 12.498-32.758 0-45.254-6.248-6.248-14.436-9.372-22.626-9.372zM736 384c-17.674 0-32 14.326-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64c0-17.674-14.326-32-32-32zM736 192c-17.674 0-32 14.326-32 32v64c0 17.674 14.326 32 32 32s32-14.326 32-32v-64c0-17.674-14.326-32-32-32zM288 384c-17.672 0-32 14.326-32 32v64c0 17.672 14.328 32 32 32s32-14.328 32-32v-64c0-17.674-14.328-32-32-32zM288 192c-17.672 0-32 14.326-32 32v64c0 17.674 14.328 32 32 32s32-14.326 32-32v-64c0-17.674-14.328-32-32-32z" />
<glyph unicode="&#xee4e;" glyph-name="crying2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 224c0-17.674-14.328-32-32-32s-32 14.326-32 32v64c0 17.674 14.328 32 32 32s32-14.326 32-32v-64zM320 416c0-17.674-14.328-32-32-32s-32 14.326-32 32v64c0 17.672 14.328 32 32 32s32-14.328 32-32v-64zM352 576h-128c-17.672 0-32 14.328-32 32s14.328 32 32 32h128c17.672 0 32-14.328 32-32s-14.328-32-32-32zM630.626 113.374c-6.248-6.25-14.436-9.374-22.626-9.374s-16.378 3.124-22.626 9.374c-4.582 4.582-29.42 14.626-73.374 14.626s-68.79-10.044-73.374-14.626c-12.496-12.496-32.758-12.496-45.254 0-12.498 12.496-12.498 32.758 0 45.254 30.122 30.12 92.994 33.372 118.628 33.372 25.632 0 88.506-3.252 118.626-33.374 12.498-12.496 12.498-32.756 0-45.252zM768 224c0-17.674-14.326-32-32-32s-32 14.326-32 32v64c0 17.674 14.326 32 32 32s32-14.326 32-32v-64zM768 416c0-17.674-14.326-32-32-32s-32 14.326-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64zM800 576h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xee4f;" glyph-name="point-up" d="M960 352v160c0 52.934-43.066 96-96 96-17.104 0-33.176-4.494-47.098-12.368-17.076 26.664-46.958 44.368-80.902 44.368-24.564 0-47.004-9.274-64-24.504-16.996 15.23-39.436 24.504-64 24.504-11.214 0-21.986-1.934-32-5.484v229.484c0 52.934-43.066 96-96 96s-96-43.066-96-96v-394.676l-176.018 93.836c-14.536 8.4-31.126 12.84-47.982 12.84-52.934 0-96-43.066-96-96 0-26.368 10.472-50.954 29.49-69.226 0.248-0.238 0.496-0.47 0.75-0.7l239.17-218.074h-45.41c-17.672 0-32-14.326-32-32v-192c0-17.674 14.328-32 32-32h640c17.674 0 32 14.326 32 32v192c0 17.674-14.326 32-32 32h-44.222l72.844 145.69c2.222 4.442 3.378 9.342 3.378 14.31zM896 96c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM896 359.554l-83.776-167.554h-383.826l-290.818 265.166c-6.18 6.070-9.58 14.164-9.58 22.834 0 17.644 14.356 32 32 32 5.46 0 10.612-1.31 15.324-3.894 0.53-0.324 1.070-0.632 1.622-0.926l224-119.416c9.92-5.288 21.884-4.986 31.52 0.8 9.638 5.782 15.534 16.196 15.534 27.436v448c0 17.644 14.356 32 32 32s32-14.356 32-32v-320c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-32c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-152.446z" />
<glyph unicode="&#xee50;" glyph-name="point-right" d="M416 0h160c52.934 0 96 43.066 96 96 0 17.104-4.494 33.176-12.368 47.098 26.664 17.076 44.368 46.958 44.368 80.902 0 24.564-9.276 47.004-24.504 64 15.228 16.996 24.504 39.436 24.504 64 0 11.214-1.934 21.986-5.484 32h229.484c52.934 0 96 43.066 96 96s-43.066 96-96 96h-394.676l93.836 176.018c8.4 14.536 12.84 31.126 12.84 47.982 0 52.934-43.066 96-96 96-26.368 0-50.954-10.472-69.226-29.49-0.238-0.248-0.47-0.496-0.7-0.75l-218.074-239.17v45.41c0 17.672-14.326 32-32 32h-192c-17.674 0-32-14.328-32-32v-640c0-17.674 14.326-32 32-32h192c17.674 0 32 14.326 32 32v44.222l145.69-72.844c4.444-2.222 9.342-3.378 14.31-3.378zM160 64c-17.674 0-32 14.326-32 32s14.326 32 32 32 32-14.326 32-32-14.326-32-32-32zM423.556 64l-167.556 83.778v383.824l265.168 290.818c6.066 6.18 14.162 9.58 22.832 9.58 17.644 0 32-14.356 32-32 0-5.46-1.308-10.612-3.894-15.324-0.324-0.53-0.632-1.070-0.926-1.622l-119.418-224c-5.288-9.92-4.986-21.884 0.8-31.52 5.784-9.638 16.198-15.534 27.438-15.534h448c17.644 0 32-14.356 32-32s-14.356-32-32-32h-320c-17.672 0-32-14.326-32-32s14.328-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32h-32c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32h-152.444z" />
<glyph unicode="&#xee51;" glyph-name="point-down" d="M960 544v-160c0-52.934-43.066-96-96-96-17.104 0-33.176 4.494-47.098 12.368-17.076-26.662-46.96-44.368-80.902-44.368-24.564 0-47.004 9.276-64 24.504-16.996-15.228-39.436-24.504-64-24.504-11.214 0-21.986 1.934-32 5.484v-229.484c0-52.934-43.066-96-96-96-52.936 0-96 43.066-96 96v394.676l-176.018-93.836c-14.538-8.398-31.126-12.84-47.982-12.84-52.936 0-96 43.066-96 96 0 26.368 10.472 50.952 29.488 69.226 0.248 0.238 0.496 0.47 0.75 0.7l239.17 218.074h-45.408c-17.674 0-32 14.326-32 32v192c0 17.674 14.326 32 32 32h640c17.674 0 32-14.326 32-32v-192c0-17.674-14.326-32-32-32h-44.222l72.842-145.69c2.224-4.442 3.38-9.342 3.38-14.31zM896 800c0 17.674-14.326 32-32 32s-32-14.326-32-32 14.326-32 32-32 32 14.326 32 32zM896 536.446l-83.778 167.554h-383.824l-290.82-265.168c-6.18-6.066-9.578-14.162-9.578-22.832 0-17.644 14.356-32 32-32 5.458 0 10.612 1.308 15.324 3.894 0.53 0.324 1.070 0.632 1.622 0.926l224 119.416c9.92 5.288 21.884 4.986 31.52-0.8 9.638-5.782 15.534-16.196 15.534-27.436v-448c0-17.644 14.356-32 32-32s32 14.356 32 32v320c0 17.672 14.326 32 32 32s32-14.328 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32c0 17.674 14.326 32 32 32s32-14.326 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v32c0 17.674 14.326 32 32 32s32-14.326 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v152.446z" />
<glyph unicode="&#xee52;" glyph-name="point-left" d="M608 0h-160c-52.934 0-96 43.066-96 96 0 17.104 4.494 33.176 12.368 47.098-26.662 17.076-44.368 46.958-44.368 80.902 0 24.564 9.276 47.004 24.504 64-15.228 16.996-24.504 39.436-24.504 64 0 11.214 1.934 21.986 5.484 32h-229.484c-52.934 0-96 43.066-96 96 0 52.936 43.066 96 96 96h394.676l-93.836 176.018c-8.398 14.536-12.84 31.126-12.84 47.982 0 52.936 43.066 96 96 96 26.368 0 50.952-10.472 69.224-29.488 0.238-0.248 0.472-0.496 0.7-0.75l218.076-239.17v45.408c0 17.674 14.326 32 32 32h192c17.674 0 32-14.326 32-32v-640c0-17.674-14.326-32-32-32h-192c-17.674 0-32 14.326-32 32v44.222l-145.69-72.844c-4.442-2.222-9.34-3.378-14.31-3.378zM864 64c17.674 0 32 14.326 32 32s-14.326 32-32 32-32-14.326-32-32 14.326-32 32-32zM600.446 64l167.554 83.778v383.824l-265.168 290.82c-6.066 6.18-14.162 9.578-22.832 9.578-17.644 0-32-14.356-32-32 0-5.458 1.308-10.612 3.894-15.324 0.324-0.53 0.632-1.070 0.926-1.622l119.416-224c5.29-9.92 4.988-21.884-0.798-31.52-5.784-9.638-16.198-15.534-27.438-15.534h-448c-17.644 0-32-14.356-32-32s14.356-32 32-32h320c17.672 0 32-14.326 32-32s-14.328-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32h152.446z" />
<glyph unicode="&#xee53;" glyph-name="warning" d="M512 867.226l429.102-855.226h-858.206l429.104 855.226zM512 960c-22.070 0-44.14-14.882-60.884-44.648l-437.074-871.112c-33.486-59.532-5-108.24 63.304-108.24h869.308c68.3 0 96.792 48.708 63.3 108.24h0.002l-437.074 871.112c-16.742 29.766-38.812 44.648-60.882 44.648v0zM576 128c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM512 256c-35.346 0-64 28.654-64 64v192c0 35.346 28.654 64 64 64s64-28.654 64-64v-192c0-35.346-28.654-64-64-64z" />
<glyph unicode="&#xee54;" glyph-name="notification" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
<glyph unicode="&#xee55;" glyph-name="question" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512z" />
<glyph unicode="&#xee56;" glyph-name="plus" d="M992 576h-352v352c0 17.672-14.328 32-32 32h-192c-17.672 0-32-14.328-32-32v-352h-352c-17.672 0-32-14.328-32-32v-192c0-17.672 14.328-32 32-32h352v-352c0-17.672 14.328-32 32-32h192c17.672 0 32 14.328 32 32v352h352c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32z" />
<glyph unicode="&#xee57;" glyph-name="minus" d="M0 544v-192c0-17.672 14.328-32 32-32h960c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32h-960c-17.672 0-32-14.328-32-32z" />
<glyph unicode="&#xee58;" glyph-name="info" d="M448 656c0 26.4 21.6 48 48 48h32c26.4 0 48-21.6 48-48v-32c0-26.4-21.6-48-48-48h-32c-26.4 0-48 21.6-48 48v32zM640 192h-256v64h64v192h-64v64h192v-256h64zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
<glyph unicode="&#xee59;" glyph-name="cancel-circle" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM672 704l-160-160-160 160-96-96 160-160-160-160 96-96 160 160 160-160 96 96-160 160 160 160z" />
<glyph unicode="&#xee5a;" glyph-name="blocked" d="M874.040 810.040c-96.706 96.702-225.28 149.96-362.040 149.96s-265.334-53.258-362.040-149.96c-96.702-96.706-149.96-225.28-149.96-362.040s53.258-265.334 149.96-362.040c96.706-96.702 225.28-149.96 362.040-149.96s265.334 53.258 362.040 149.96c96.702 96.706 149.96 225.28 149.96 362.040s-53.258 265.334-149.96 362.040zM896 448c0-82.814-26.354-159.588-71.112-222.38l-535.266 535.268c62.792 44.758 139.564 71.112 222.378 71.112 211.738 0 384-172.262 384-384zM128 448c0 82.814 26.354 159.586 71.112 222.378l535.27-535.268c-62.794-44.756-139.568-71.11-222.382-71.11-211.738 0-384 172.262-384 384z" />
<glyph unicode="&#xee5b;" glyph-name="cross" d="M1014.662 137.34c-0.004 0.004-0.008 0.008-0.012 0.010l-310.644 310.65 310.644 310.65c0.004 0.004 0.008 0.006 0.012 0.010 3.344 3.346 5.762 7.254 7.312 11.416 4.246 11.376 1.824 24.682-7.324 33.83l-146.746 146.746c-9.148 9.146-22.45 11.566-33.828 7.32-4.16-1.55-8.070-3.968-11.418-7.31 0-0.004-0.004-0.006-0.008-0.010l-310.648-310.652-310.648 310.65c-0.004 0.004-0.006 0.006-0.010 0.010-3.346 3.342-7.254 5.76-11.414 7.31-11.38 4.248-24.682 1.826-33.83-7.32l-146.748-146.748c-9.148-9.148-11.568-22.452-7.322-33.828 1.552-4.16 3.97-8.072 7.312-11.416 0.004-0.002 0.006-0.006 0.010-0.010l310.65-310.648-310.65-310.652c-0.002-0.004-0.006-0.006-0.008-0.010-3.342-3.346-5.76-7.254-7.314-11.414-4.248-11.376-1.826-24.682 7.322-33.83l146.748-146.746c9.15-9.148 22.452-11.568 33.83-7.322 4.16 1.552 8.070 3.97 11.416 7.312 0.002 0.004 0.006 0.006 0.010 0.010l310.648 310.65 310.648-310.65c0.004-0.002 0.008-0.006 0.012-0.008 3.348-3.344 7.254-5.762 11.414-7.314 11.378-4.246 24.684-1.826 33.828 7.322l146.746 146.748c9.148 9.148 11.57 22.454 7.324 33.83-1.552 4.16-3.97 8.068-7.314 11.414z" />
<glyph unicode="&#xee5c;" glyph-name="checkmark" d="M864 832l-480-480-224 224-160-160 384-384 640 640z" />
<glyph unicode="&#xee5d;" glyph-name="checkmark2" d="M397.434 42.304l-397.868 391.6 197.378 194.27 200.49-197.332 429.62 422.852 197.378-194.27-626.998-617.12zM107.912 433.904l289.524-284.962 518.656 510.482-89.036 87.632-429.62-422.852-200.49 197.334-89.034-87.634z" />
<glyph unicode="&#xee5e;" glyph-name="spell-check" d="M128 704h128v-192h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192zM128 896h128v-128h-128v128zM960 896v64h-192c-35.202 0-64-28.8-64-64v-320c0-35.2 28.798-64 64-64h192v64h-192v320h192zM640 800v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64zM576 576h-128v128h128v-128zM576 768h-128v128h128v-128zM832 384l-416-448-224 288 82 70 142-148 352 302z" />
<glyph unicode="&#xee5f;" glyph-name="enter" d="M384 448h-320v128h320v128l192-192-192-192zM1024 960v-832l-384-192v192h-384v256h64v-192h320v576l256 128h-576v-256h-64v320z" />
<glyph unicode="&#xee60;" glyph-name="exit" d="M768 320v128h-320v128h320v128l192-192zM704 384v-256h-320v-192l-384 192v832h704v-320h-64v256h-512l256-128v-576h256v192z" />
<glyph unicode="&#xee61;" glyph-name="play2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM384 672l384-224-384-224z" />
<glyph unicode="&#xee62;" glyph-name="pause" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h128v-384h-128zM576 640h128v-384h-128z" />
<glyph unicode="&#xee63;" glyph-name="stop" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h384v-384h-384z" />
<glyph unicode="&#xee64;" glyph-name="previous" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM448 448l256 192v-384zM320 640h128v-384h-128v384z" />
<glyph unicode="&#xee65;" glyph-name="next" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM576 448l-256 192v-384zM704 640h-128v-384h128v384z" />
<glyph unicode="&#xee66;" glyph-name="backward" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704 288l-224 160 224 160zM448 288l-224 160 224 160z" />
<glyph unicode="&#xee67;" glyph-name="forward2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 608l224-160-224-160zM576 608l224-160-224-160z" />
<glyph unicode="&#xee68;" glyph-name="play3" d="M192 832l640-384-640-384z" />
<glyph unicode="&#xee69;" glyph-name="pause2" d="M128 832h320v-768h-320zM576 832h320v-768h-320z" />
<glyph unicode="&#xee6a;" glyph-name="stop2" d="M128 832h768v-768h-768z" />
<glyph unicode="&#xee6b;" glyph-name="backward2" d="M576 800v-320l320 320v-704l-320 320v-320l-352 352z" />
<glyph unicode="&#xee6c;" glyph-name="forward3" d="M512 96v320l-320-320v704l320-320v320l352-352z" />
<glyph unicode="&#xee6d;" glyph-name="first" d="M128 64v768h128v-352l320 320v-320l320 320v-704l-320 320v-320l-320 320v-352z" />
<glyph unicode="&#xee6e;" glyph-name="last" d="M896 832v-768h-128v352l-320-320v320l-320-320v704l320-320v320l320-320v352z" />
<glyph unicode="&#xee6f;" glyph-name="previous2" d="M256 64v768h128v-352l320 320v-704l-320 320v-352z" />
<glyph unicode="&#xee70;" glyph-name="next2" d="M768 832v-768h-128v352l-320-320v704l320-320v352z" />
<glyph unicode="&#xee71;" glyph-name="eject" d="M0 192h1024v-128h-1024zM512 832l512-512h-1024z" />
<glyph unicode="&#xee72;" glyph-name="volume-high" horiz-adv-x="1088" d="M890.040 37.96c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.746-18.744 49.136 0 67.882 87.638 87.642 135.904 204.16 135.904 328.1 0 123.938-48.266 240.458-135.904 328.098-18.744 18.746-18.744 49.138 0 67.882s49.138 18.744 67.882 0c105.77-105.772 164.022-246.4 164.022-395.98s-58.252-290.208-164.022-395.98c-9.372-9.372-21.656-14.058-33.94-14.058zM719.53 128.47c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.59 126.53-190.074 126.53-305.466 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060v0zM549.020 218.98c-12.286 0-24.568 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee73;" glyph-name="volume-medium" d="M719.53 128.47c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.59 126.53-190.074 126.53-305.466 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060v0zM549.020 218.98c-12.286 0-24.566 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee74;" glyph-name="volume-low" d="M549.020 218.98c-12.286 0-24.566 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee75;" glyph-name="volume-mute" d="M416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee76;" glyph-name="volume-mute2" d="M960 340.852v-84.852h-84.852l-107.148 107.148-107.148-107.148h-84.852v84.852l107.148 107.148-107.148 107.148v84.852h84.852l107.148-107.148 107.148 107.148h84.852v-84.852l-107.148-107.148 107.148-107.148zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee77;" glyph-name="volume-increase" d="M1024 384h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee78;" glyph-name="volume-decrease" d="M512 512h512v-128h-512v128zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee79;" glyph-name="loop" d="M128 640h640v-192l256 256-256 256v-192h-768v-384h128zM896 256h-640v192l-256-256 256-256v192h768v384h-128z" />
<glyph unicode="&#xee7a;" glyph-name="loop2" d="M889.68 793.68c-93.608 102.216-228.154 166.32-377.68 166.32-282.77 0-512-229.23-512-512h96c0 229.75 186.25 416 416 416 123.020 0 233.542-53.418 309.696-138.306l-149.696-149.694h352v352l-134.32-134.32zM928 448c0-229.75-186.25-416-416-416-123.020 0-233.542 53.418-309.694 138.306l149.694 149.694h-352v-352l134.32 134.32c93.608-102.216 228.154-166.32 377.68-166.32 282.77 0 512 229.23 512 512h-96z" />
<glyph unicode="&#xee7b;" glyph-name="infinite" d="M783.988 207.988c-64.104 0-124.372 24.96-169.7 70.288l-102.288 102.282-102.276-102.27c-45.332-45.336-105.6-70.3-169.706-70.3-64.118 0-124.39 24.964-169.722 70.3-45.332 45.334-70.296 105.604-70.296 169.712s24.964 124.38 70.296 169.714c45.334 45.332 105.608 70.296 169.714 70.296 64.108 0 124.38-24.964 169.712-70.296l102.278-102.276 102.276 102.276c45.332 45.332 105.604 70.298 169.712 70.298 64.112 0 124.384-24.966 169.71-70.298 45.338-45.334 70.302-105.606 70.302-169.714 0-64.112-24.964-124.382-70.3-169.71-45.326-45.336-105.598-70.302-169.712-70.302zM681.72 345.712c27.322-27.31 63.64-42.354 102.268-42.352 38.634 0 74.958 15.044 102.276 42.362 27.316 27.322 42.364 63.644 42.364 102.278s-15.046 74.956-42.364 102.274c-27.32 27.318-63.64 42.364-102.276 42.364-38.632 0-74.956-15.044-102.278-42.364l-102.268-102.274 102.278-102.288zM240.012 592.638c-38.634 0-74.956-15.044-102.274-42.364-27.32-27.318-42.364-63.64-42.364-102.274 0-38.632 15.044-74.954 42.364-102.276 27.32-27.316 63.642-42.364 102.274-42.364 38.634 0 74.956 15.044 102.272 42.362l102.276 102.278-102.276 102.274c-27.318 27.32-63.64 42.366-102.272 42.364v0z" />
<glyph unicode="&#xee7c;" glyph-name="shuffle" d="M768 256h-101.49l-160 160 160 160h101.49v-160l224 224-224 224v-160h-128c-16.974 0-33.252-6.744-45.254-18.746l-178.746-178.744-178.746 178.746c-12 12-28.28 18.744-45.254 18.744h-192v-128h165.49l160-160-160-160h-165.49v-128h192c16.974 0 33.252 6.742 45.254 18.746l178.746 178.744 178.746-178.744c12.002-12.004 28.28-18.746 45.254-18.746h128v-160l224 224-224 224v-160z" />
<glyph unicode="&#xee7d;" glyph-name="arrow-up-left" d="M0 224l256 256 544-544 224 224-544 544 255.998 256h-735.998v-736z" />
<glyph unicode="&#xee7e;" glyph-name="arrow-up" d="M512 928l-480-480h288v-512h384v512h288z" />
<glyph unicode="&#xee7f;" glyph-name="arrow-up-right" d="M288 960l256-256-544-544 224-224 544 544 256-255.998v735.998h-736z" />
<glyph unicode="&#xee80;" glyph-name="arrow-right" d="M992 448l-480 480v-288h-512v-384h512v-288z" />
<glyph unicode="&#xee81;" glyph-name="arrow-down-right" d="M1024 672l-256-256-544 544-224-224 544-544-255.998-256h735.998v736z" />
<glyph unicode="&#xee82;" glyph-name="arrow-down" d="M512-32l480 480h-288v512h-384v-512h-288z" />
<glyph unicode="&#xee83;" glyph-name="arrow-down-left" d="M736-64l-256 256 544 544-224 224-544-544-256 255.998v-735.998h736z" />
<glyph unicode="&#xee84;" glyph-name="arrow-left" d="M32 448l480-480v288h512v384h-512v288z" />
<glyph unicode="&#xee85;" glyph-name="arrow-up-left2" d="M877.254 173.254l-530.744 530.746h229.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-384c-25.886 0-49.222-15.592-59.128-39.508-3.282-7.924-4.84-16.242-4.838-24.492h-0.034v-384c0-35.346 28.654-64 64-64s64 28.654 64 64v229.49l530.746-530.744c12.496-12.498 28.876-18.746 45.254-18.746s32.758 6.248 45.254 18.746c24.994 24.992 24.994 65.516 0 90.508z" />
<glyph unicode="&#xee86;" glyph-name="arrow-up2" d="M877.254 557.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z" />
<glyph unicode="&#xee87;" glyph-name="arrow-up-right2" d="M237.254 82.746l530.746 530.744v-229.49c0-35.346 28.654-64 64-64s64 28.654 64 64v384c0 25.884-15.594 49.222-39.508 59.126-7.924 3.284-16.242 4.84-24.492 4.838v0.036h-384c-35.346 0-64-28.654-64-64 0-35.348 28.654-64 64-64h229.49l-530.744-530.746c-12.498-12.496-18.746-28.876-18.746-45.254s6.248-32.758 18.746-45.254c24.992-24.994 65.516-24.994 90.508 0z" />
<glyph unicode="&#xee88;" glyph-name="arrow-right2" d="M621.254 82.746l320 320c24.994 24.992 24.994 65.516 0 90.51l-320 320c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.516 0-90.51l210.746-210.746h-613.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h613.49l-210.746-210.746c-12.496-12.496-18.744-28.876-18.744-45.254s6.248-32.758 18.744-45.254c24.994-24.994 65.516-24.994 90.51 0z" />
<glyph unicode="&#xee89;" glyph-name="arrow-down-right2" d="M146.746 722.746l530.742-530.746h-229.488c-35.346 0-64-28.654-64-64s28.654-64 64-64h384c25.884 0 49.222 15.594 59.126 39.508 3.284 7.924 4.84 16.242 4.838 24.492h0.036v384c0 35.346-28.654 64-64 64-35.348 0-64-28.654-64-64v-229.49l-530.746 530.744c-12.496 12.498-28.874 18.746-45.254 18.746s-32.758-6.248-45.254-18.746c-24.994-24.992-24.994-65.516 0-90.508z" />
<glyph unicode="&#xee8a;" glyph-name="arrow-down2" d="M877.254 338.746l-320-320c-24.992-24.994-65.514-24.994-90.508 0l-320 320c-24.994 24.994-24.994 65.516 0 90.51 24.994 24.996 65.516 24.996 90.51 0l210.744-210.746v613.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-613.49l210.746 210.746c12.496 12.496 28.876 18.744 45.254 18.744s32.758-6.248 45.254-18.746c24.994-24.994 24.994-65.514 0-90.508z" />
<glyph unicode="&#xee8b;" glyph-name="arrow-down-left2" d="M786.744 813.256l-530.744-530.744v229.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-384.002c0-25.886 15.592-49.222 39.508-59.128 7.924-3.282 16.242-4.84 24.492-4.836v-0.036l384 0.002c35.344 0 64 28.654 64 63.998 0 35.348-28.656 64-64 64h-229.49l530.744 530.746c12.496 12.496 18.746 28.876 18.746 45.256 0 16.376-6.25 32.758-18.746 45.254-24.992 24.992-65.518 24.992-90.51 0v0z" />
<glyph unicode="&#xee8c;" glyph-name="arrow-left2" d="M402.746 82.746l-320 320c-24.994 24.992-24.994 65.516 0 90.51l320 320c24.994 24.992 65.516 24.992 90.51 0 24.994-24.994 24.994-65.516 0-90.51l-210.746-210.746h613.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-613.49l210.746-210.746c12.496-12.496 18.744-28.876 18.744-45.254s-6.248-32.758-18.744-45.254c-24.994-24.994-65.516-24.994-90.51 0z" />
<glyph unicode="&#xee8d;" glyph-name="circle-up" d="M0 448c0-282.77 229.23-512 512-512s512 229.23 512 512-229.23 512-512 512-512-229.23-512-512zM928 448c0-229.75-186.25-416-416-416s-416 186.25-416 416 186.25 416 416 416 416-186.25 416-416zM706.744 290.744l90.512 90.512-285.256 285.254-285.254-285.256 90.508-90.508 194.746 194.744z" />
<glyph unicode="&#xee8e;" glyph-name="circle-right" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM354.744 253.256l90.512-90.512 285.254 285.256-285.256 285.254-90.508-90.508 194.744-194.746z" />
<glyph unicode="&#xee8f;" glyph-name="circle-down" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512 229.23-512 512-512 512 229.23 512 512zM96 448c0 229.75 186.25 416 416 416s416-186.25 416-416-186.25-416-416-416-416 186.25-416 416zM317.256 605.256l-90.512-90.512 285.256-285.254 285.254 285.256-90.508 90.508-194.746-194.744z" />
<glyph unicode="&#xee90;" glyph-name="circle-left" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM669.256 642.744l-90.512 90.512-285.254-285.256 285.256-285.254 90.508 90.508-194.744 194.746z" />
<glyph unicode="&#xee91;" glyph-name="tab" d="M960 960h64v-512h-64v512zM0 448h64v-512h-64v512zM320 256h704v-128h-704v-160l-224 224 224 224v-160zM704 640h-704v128h704v160l224-224-224-224z" />
<glyph unicode="&#xee92;" glyph-name="move-up" d="M704 448v-384h64v384h160l-192 192-192-192zM64 768h96v-64h-96v64zM192 768h96v-64h-96v64zM320 768h64v-96h-64v96zM64 544h64v-96h-64v96zM160 512h96v-64h-96v64zM288 512h96v-64h-96v64zM64 672h64v-96h-64v96zM320 640h64v-96h-64v96zM320 256v-192h-192v192h192zM384 320h-320v-320h320v320z" />
<glyph unicode="&#xee93;" glyph-name="move-down" d="M768 256v384h-64v-384h-160l192-192 192 192zM320 704v-192h-192v192h192zM384 768h-320v-320h320v320zM64 320h96v-64h-96v64zM192 320h96v-64h-96v64zM320 320h64v-96h-64v96zM64 96h64v-96h-64v96zM160 64h96v-64h-96v64zM288 64h96v-64h-96v64zM64 224h64v-96h-64v96zM320 192h64v-96h-64v96z" />
<glyph unicode="&#xee94;" glyph-name="sort-alpha-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM928-64h-256c-11.8 0-22.644 6.496-28.214 16.9-5.566 10.404-4.958 23.030 1.59 32.85l222.832 334.25h-196.208c-17.672 0-32 14.328-32 32s14.328 32 32 32h256c11.8 0 22.644-6.496 28.214-16.9 5.566-10.404 4.958-23.030-1.59-32.85l-222.83-334.25h196.206c17.672 0 32-14.328 32-32s-14.328-32-32-32zM1020.622 558.314l-192.002 384c-5.42 10.842-16.502 17.69-28.622 17.69-12.122 0-23.202-6.848-28.624-17.69l-191.996-384c-7.904-15.806-1.496-35.030 14.31-42.932 4.594-2.296 9.476-3.386 14.288-3.386 11.736 0 23.040 6.484 28.644 17.698l55.156 110.31h216.446l55.156-110.31c7.902-15.806 27.124-22.21 42.932-14.31 15.808 7.902 22.216 27.124 14.312 42.93zM723.778 704.004l76.22 152.446 76.224-152.446h-152.444z" />
<glyph unicode="&#xee95;" glyph-name="sort-alpha-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM928 512h-256c-11.8 0-22.644 6.496-28.214 16.9-5.566 10.406-4.958 23.030 1.59 32.85l222.832 334.25h-196.208c-17.672 0-32 14.328-32 32s14.328 32 32 32h256c11.8 0 22.644-6.496 28.214-16.9 5.566-10.406 4.958-23.030-1.59-32.85l-222.83-334.25h196.206c17.672 0 32-14.328 32-32s-14.328-32-32-32zM1020.622-17.69l-192.002 384c-5.42 10.842-16.502 17.69-28.622 17.69-12.122 0-23.202-6.848-28.624-17.69l-191.996-384c-7.904-15.806-1.496-35.030 14.31-42.932 4.594-2.296 9.476-3.386 14.288-3.386 11.736 0 23.040 6.484 28.644 17.698l55.158 110.31h216.446l55.156-110.31c7.902-15.806 27.124-22.21 42.932-14.31 15.806 7.902 22.214 27.124 14.31 42.93zM723.778 128l76.22 152.446 76.226-152.446h-152.446z" />
<glyph unicode="&#xee96;" glyph-name="sort-numeric-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM864 512c-17.674 0-32 14.328-32 32v352h-32c-17.674 0-32 14.328-32 32s14.326 32 32 32h64c17.674 0 32-14.328 32-32v-384c0-17.672-14.326-32-32-32zM928 384h-192c-17.674 0-32-14.326-32-32v-192c0-17.674 14.326-32 32-32h160v-128h-160c-17.674 0-32-14.326-32-32s14.326-32 32-32h192c17.674 0 32 14.326 32 32v384c0 17.674-14.326 32-32 32zM768 320h128v-128h-128v128z" />
<glyph unicode="&#xee97;" glyph-name="sort-numberic-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM864-64c-17.674 0-32 14.328-32 32v352h-32c-17.674 0-32 14.328-32 32s14.326 32 32 32h64c17.674 0 32-14.328 32-32v-384c0-17.672-14.326-32-32-32zM928 960h-192c-17.674 0-32-14.326-32-32v-192c0-17.674 14.326-32 32-32h160v-128h-160c-17.674 0-32-14.326-32-32s14.326-32 32-32h192c17.674 0 32 14.326 32 32v384c0 17.674-14.326 32-32 32zM768 896h128v-128h-128v128z" />
<glyph unicode="&#xee98;" glyph-name="sort-amount-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM448 384h576v-128h-576v128zM448 576h448v-128h-448v128zM448 768h320v-128h-320v128zM448 960h192v-128h-192v128z" />
<glyph unicode="&#xee99;" glyph-name="sort-amount-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM448 960h576v-128h-576v128zM448 768h448v-128h-448v128zM448 576h320v-128h-320v128zM448 384h192v-128h-192v128z" />
<glyph unicode="&#xee9a;" glyph-name="command" d="M736 64c-88.224 0-160 71.776-160 160v96h-128v-96c0-88.224-71.776-160-160-160s-160 71.776-160 160 71.776 160 160 160h96v128h-96c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160v-96h128v96c0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160h-96v-128h96c88.224 0 160-71.776 160-160s-71.774-160-160-160zM640 320v-96c0-52.934 43.066-96 96-96s96 43.066 96 96-43.066 96-96 96h-96zM288 320c-52.934 0-96-43.066-96-96s43.066-96 96-96 96 43.066 96 96v96h-96zM448 384h128v128h-128v-128zM640 576h96c52.934 0 96 43.066 96 96s-43.066 96-96 96-96-43.066-96-96v-96zM288 768c-52.934 0-96-43.066-96-96s43.066-96 96-96h96v96c0 52.934-43.064 96-96 96z" />
<glyph unicode="&#xee9b;" glyph-name="shift" d="M672 64h-320c-17.672 0-32 14.326-32 32v352h-128c-12.942 0-24.612 7.796-29.564 19.754-4.954 11.958-2.214 25.722 6.936 34.874l320 320c12.498 12.496 32.758 12.496 45.254 0l320-320c9.152-9.152 11.89-22.916 6.938-34.874s-16.62-19.754-29.564-19.754h-128v-352c0-17.674-14.326-32-32-32zM384 128h256v352c0 17.672 14.326 32 32 32h82.744l-242.744 242.746-242.744-242.746h82.744c17.672 0 32-14.328 32-32v-352z" />
<glyph unicode="&#xee9c;" glyph-name="ctrl" d="M736.014 512c-8.908 0-17.77 3.698-24.096 10.928l-199.918 228.478-199.918-228.478c-11.636-13.3-31.856-14.65-45.154-3.010-13.3 11.638-14.648 31.854-3.010 45.154l224 256c6.076 6.944 14.854 10.928 24.082 10.928s18.006-3.984 24.082-10.928l224-256c11.638-13.3 10.292-33.516-3.010-45.154-6.070-5.312-13.582-7.918-21.058-7.918z" />
<glyph unicode="&#xee9d;" glyph-name="opt" d="M928 128h-256c-12.646 0-24.106 7.448-29.242 19.004l-247.554 556.996h-299.204c-17.672 0-32 14.328-32 32s14.328 32 32 32h320c12.646 0 24.106-7.448 29.242-19.004l247.556-556.996h235.202c17.674 0 32-14.326 32-32s-14.326-32-32-32zM928 704h-320c-17.674 0-32 14.328-32 32s14.326 32 32 32h320c17.674 0 32-14.328 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xee9e;" glyph-name="checkbox-checked" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM448 165.49l-237.254 237.256 90.51 90.508 146.744-146.744 306.746 306.746 90.508-90.51-397.254-397.256z" />
<glyph unicode="&#xee9f;" glyph-name="checkbox-unchecked" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM896 64h-768v768h768v-768z" />
<glyph unicode="&#xeea0;" glyph-name="radio-checked" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384zM320 448c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192s-192 85.961-192 192z" />
<glyph unicode="&#xeea1;" glyph-name="radio-checked2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 320c-70.692 0-128 57.306-128 128 0 70.692 57.308 128 128 128 70.694 0 128-57.308 128-128 0-70.694-57.306-128-128-128z" />
<glyph unicode="&#xeea2;" glyph-name="radio-unchecked" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" />
<glyph unicode="&#xeea3;" glyph-name="crop" d="M832 704l192 192-64 64-192-192h-448v192h-128v-192h-192v-128h192v-512h512v-192h128v192h192v128h-192v448zM320 640h320l-320-320v320zM384 256l320 320v-320h-320z" />
<glyph unicode="&#xeea4;" glyph-name="make-group" d="M320 832h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM704 576h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64zM704 768h128v-128h-128v128zM320 320h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM320 128h-128v128h128v-128zM832 320h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM896 448h-64c-85.476 0-165.834 33.286-226.274 93.724-60.44 60.442-93.726 140.802-93.726 226.276v64c0 70.4-57.6 128-128 128h-256c-70.4 0-128-57.6-128-128v-256c0-70.4 57.6-128 128-128h64c85.476 0 165.834-33.286 226.274-93.724 60.44-60.442 93.726-140.802 93.726-226.276v-64c0-70.4 57.6-128 128-128h256c70.4 0 128 57.6 128 128v256c0 70.4-57.6 128-128 128zM960 64c0-16.954-6.696-32.986-18.856-45.144-12.158-12.16-28.19-18.856-45.144-18.856h-256c-16.954 0-32.986 6.696-45.144 18.856-12.16 12.158-18.856 28.19-18.856 45.144v64c0 212.078-171.922 384-384 384h-64c-16.954 0-32.986 6.696-45.146 18.854-12.158 12.16-18.854 28.192-18.854 45.146v256c0 16.954 6.696 32.986 18.854 45.146 12.16 12.158 28.192 18.854 45.146 18.854h256c16.954 0 32.986-6.696 45.146-18.854 12.158-12.16 18.854-28.192 18.854-45.146v-64c0-212.078 171.922-384 384-384h64c16.954 0 32.986-6.696 45.144-18.856 12.16-12.158 18.856-28.19 18.856-45.144v-256z" />
<glyph unicode="&#xeea5;" glyph-name="ungroup" d="M384 496c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM704 496c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM384 176c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM704 176c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM912.082 800l111.918 111.916v48.084h-48.082l-111.918-111.916-111.918 111.916h-48.082v-48.084l111.918-111.916-111.918-111.916v-48.084h48.082l111.918 111.916 111.918-111.916h48.082v48.084zM0 192h64v-128h-64v128zM0 384h64v-128h-64v128zM832 512h64v-128h-64v128zM832 128h64v-128h-64v128zM832 320h64v-128h-64v128zM0 576h64v-128h-64v128zM0 768h64v-128h-64v128zM512 832h128v-64h-128v64zM320 832h128v-64h-128v64zM128 832h128v-64h-128v64zM448 0h128v-64h-128v64zM640 0h128v-64h-128v64zM256 0h128v-64h-128v64zM64 0h128v-64h-128v64z" />
<glyph unicode="&#xeea6;" glyph-name="scissors" d="M913.826 280.306c-66.684 104.204-181.078 150.064-255.51 102.434-6.428-4.116-12.334-8.804-17.744-13.982l-79.452 124.262 183.462 287.972c15.016 27.73 20.558 60.758 13.266 93.974-6.972 31.75-24.516 58.438-48.102 77.226l-12.278 7.808-217.468-340.114-217.47 340.114-12.276-7.806c-23.586-18.79-41.13-45.476-48.1-77.226-7.292-33.216-1.75-66.244 13.264-93.974l183.464-287.972-79.454-124.262c-5.41 5.178-11.316 9.868-17.744 13.982-74.432 47.63-188.826 1.77-255.51-102.434-66.68-104.2-60.398-227.286 14.032-274.914 74.43-47.632 188.824-1.77 255.508 102.432l164.286 257.87 164.288-257.872c66.684-104.202 181.078-150.064 255.508-102.432 74.428 47.63 80.71 170.716 14.030 274.914zM234.852 159.57c-30.018-46.904-68.534-69.726-94.572-75.446-0.004 0-0.004 0-0.004 0-8.49-1.868-20.294-3.010-28.324 2.128-8.898 5.694-14.804 20.748-15.8 40.276-1.616 31.644 9.642 68.836 30.888 102.034 30.014 46.906 68.53 69.726 94.562 75.444 8.496 1.866 20.308 3.010 28.336-2.126 8.898-5.694 14.802-20.75 15.798-40.272 1.618-31.65-9.64-68.84-30.884-102.038zM480 448c-17.672 0-32 14.328-32 32s14.328 32 32 32 32-14.328 32-32-14.328-32-32-32zM863.85 126.53c-0.996-19.528-6.902-34.582-15.8-40.276-8.030-5.138-19.834-3.996-28.324-2.128 0 0 0 0-0.004 0-26.040 5.718-64.554 28.542-94.572 75.446-21.244 33.198-32.502 70.388-30.884 102.038 0.996 19.522 6.9 34.578 15.798 40.272 8.028 5.136 19.84 3.992 28.336 2.126 26.034-5.716 64.548-28.538 94.562-75.444 21.246-33.198 32.502-70.39 30.888-102.034z" />
<glyph unicode="&#xeea7;" glyph-name="filter" d="M512 960c-282.77 0-512-71.634-512-160v-96l384-384v-320c0-35.346 57.306-64 128-64 70.692 0 128 28.654 128 64v320l384 384v96c0 88.366-229.23 160-512 160zM94.384 821.176c23.944 13.658 57.582 26.62 97.278 37.488 87.944 24.076 201.708 37.336 320.338 37.336 118.628 0 232.394-13.26 320.338-37.336 39.696-10.868 73.334-23.83 97.28-37.488 15.792-9.006 24.324-16.624 28.296-21.176-3.972-4.552-12.506-12.168-28.296-21.176-23.946-13.658-57.584-26.62-97.28-37.488-87.942-24.076-201.708-37.336-320.338-37.336s-232.394 13.26-320.338 37.336c-39.696 10.868-73.334 23.83-97.278 37.488-15.792 9.008-24.324 16.624-28.298 21.176 3.974 4.552 12.506 12.168 28.298 21.176z" />
<glyph unicode="&#xeea8;" glyph-name="font" d="M799.596 943.792c-90.526 0-148.62 16.208-241.848 16.208-301.284 0-441.792-171.584-441.792-345.872 0-102.678 48.64-136.458 144.564-136.458-6.758 14.864-18.914 31.080-18.914 104.034 0 204.010 77.006 263.458 175.636 267.51 0 0-80.918-793.374-315.778-888.542v-24.672h316.594l108.026 512h197.844l44.072 128h-214.908l51.944 246.19c59.446-12.156 117.542-24.316 167.532-24.316 62.148 0 118.894 18.914 149.968 162.126-37.826-12.16-78.362-16.208-122.94-16.208z" />
<glyph unicode="&#xeea9;" glyph-name="ligature" d="M768 88.178c0 0.040 0.002 0.076 0.002 0.116l-0.344 436.562-127.492-6.19h-251.93v21.494c0 81.542 5.8 162.976 17.24 194.716 7.896 21.948 22.598 41.744 43.698 58.836 20.618 16.702 41.178 25.17 61.11 25.17 16.772 0 30.702-2.878 41.402-8.554 15.026-8.562 29.716-22.964 43.67-42.818 36.95-52.504 51.99-66.454 60.094-72.376 13.804-10.094 30.512-15.212 49.658-15.212 18.668 0 34.962 6.97 48.436 20.714 13.372 13.636 20.15 30.682 20.15 50.666 0 21.452-8.916 44.204-26.502 67.622-17.184 22.888-43.708 41.742-78.834 56.032-34.322 13.964-72.94 21.044-114.778 21.044-60.716 0-116.012-14.596-164.356-43.384-48.424-28.834-85.558-68.952-110.37-119.24-22.994-46.604-21.334-134.706-22.732-214.712h-125.732v-71.402h125.598v-324.668c0-71.666-21.906-91.008-30.216-101.324-11.436-14.202-32.552-29.104-60.444-29.104h-38.654v-56.166h385.326v56.168h-6.708c-91.144 0-117.020 9.832-117.020 120.842 0 0.018 0 0.034 0 0.048l-0.038 334.206h140.204c74.404 0 91.496-3.444 95.392-4.924 4.706-1.79 10.798-4.832 13.084-9.144 0.868-1.684 5.194-25.008 5.194-82.972v-250.67c0-58.454-7.124-77.896-11.45-84.402-9.248-14.194-20.41-22.066-54.66-22.904v-56.248h293.61v55.846c-91.608 0-101.608 9.82-101.608 96.332z" />
<glyph unicode="&#xeeaa;" glyph-name="ligature2" d="M855.328 42.546c-11.734 0-83.62 13.2-88.020 29.338-10.274 39.612-11.738 82.152-11.738 130.568v540.974c0 80.686 16.138 127.632 16.138 127.632-1.468 7.334-8.804 23.472-17.604 23.472h-4.404c-4.4 0-55.746-32.276-102.692-32.276-38.14 0.002-61.89 33.746-105.902 33.746-185.106 0-271.942-150.31-271.942-363.032v-11.072c0-4.402-2.934-8.804-7.336-8.804h-60.148c-7.336 0-22.006-41.078-22.006-60.148 0-5.87 1.466-8.8 4.4-8.8h77.754c4.402 0 7.336-5.872 7.336-10.27 0-130.566-1.466-259.298-1.466-259.298 0-20.54-1.466-66.016-10.27-102.692-4.4-16.138-71.884-29.338-89.488-29.338-7.334 0-7.334-35.212 0-42.546 60.148 2.934 99.758 7.334 159.908 7.334 55.75 0 98.292-4.4 156.974-7.334 2.934 8.802 2.934 42.546-4.4 42.546-11.736 0-83.624 13.2-88.022 29.338-10.27 39.612-10.27 82.152-11.738 130.568v232.888c0 4.402 4.402 8.804 8.802 8.804h151.104c10.27 20.538 17.606 45.476 17.606 58.68 0 8.802 0 10.27-7.336 10.27h-162.84c-2.934 0-7.336 4.402-7.336 7.334v52.82c0 130.568 53.482 245.538 142.97 245.538 63.372 0 118.666-41.060 118.666-197.922 0-0.006 0-0.012 0-0.018 0.208-4.036 0.314-7.294 0.314-9.452v-436.816c0-20.54-1.47-66.016-10.27-102.692-4.404-16.138-71.884-29.338-89.492-29.338-7.336 0-7.336-35.212 0-42.546 60.15 2.934 99.762 7.334 159.912 7.334 55.746 0 98.288-4.4 156.972-7.334 2.928 8.8 2.928 42.544-4.406 42.544z" />
<glyph unicode="&#xeeab;" glyph-name="text-height" d="M896 192h128l-160-192-160 192h128v512h-128l160 192 160-192h-128zM640 896v-256l-64 128h-192v-704h128v-64h-384v64h128v704h-192l-64-128v256z" />
<glyph unicode="&#xeeac;" glyph-name="text-width" d="M256 64v-128l-192 160 192 160v-128h512v128l192-160-192-160v128zM832 896v-256l-64 128h-192v-448h128v-64h-384v64h128v448h-192l-64-128v256z" />
<glyph unicode="&#xeead;" glyph-name="font-size" d="M64 448h384v-128h-128v-384h-128v384h-128zM960 704h-251.75v-768h-136.5v768h-251.75v128h640z" />
<glyph unicode="&#xeeae;" glyph-name="bold" d="M707.88 475.348c37.498 44.542 60.12 102.008 60.12 164.652 0 141.16-114.842 256-256 256h-320v-896h384c141.158 0 256 114.842 256 256 0 92.956-49.798 174.496-124.12 219.348zM384 768h101.5c55.968 0 101.5-57.42 101.5-128s-45.532-128-101.5-128h-101.5v256zM543 128h-159v256h159c58.45 0 106-57.42 106-128s-47.55-128-106-128z" />
<glyph unicode="&#xeeaf;" glyph-name="underline" d="M704 896h128v-416c0-159.058-143.268-288-320-288-176.73 0-320 128.942-320 288v416h128v-416c0-40.166 18.238-78.704 51.354-108.506 36.896-33.204 86.846-51.494 140.646-51.494s103.75 18.29 140.646 51.494c33.116 29.802 51.354 68.34 51.354 108.506v416zM192 128h640v-128h-640z" />
<glyph unicode="&#xeeb0;" glyph-name="italic" d="M896 896v-64h-128l-320-768h128v-64h-448v64h128l320 768h-128v64z" />
<glyph unicode="&#xeeb1;" glyph-name="strikethrough" d="M1024 448v-64h-234.506c27.504-38.51 42.506-82.692 42.506-128 0-70.878-36.66-139.026-100.58-186.964-59.358-44.518-137.284-69.036-219.42-69.036-82.138 0-160.062 24.518-219.42 69.036-63.92 47.938-100.58 116.086-100.58 186.964h128c0-69.382 87.926-128 192-128s192 58.618 192 128c0 69.382-87.926 128-192 128h-512v64h299.518c-2.338 1.654-4.656 3.324-6.938 5.036-63.92 47.94-100.58 116.086-100.58 186.964s36.66 139.024 100.58 186.964c59.358 44.518 137.282 69.036 219.42 69.036 82.136 0 160.062-24.518 219.42-69.036 63.92-47.94 100.58-116.086 100.58-186.964h-128c0 69.382-87.926 128-192 128s-192-58.618-192-128c0-69.382 87.926-128 192-128 78.978 0 154.054-22.678 212.482-64h299.518z" />
<glyph unicode="&#xeeb2;" glyph-name="omega" d="M704 64h256l64 128v-256h-384v214.214c131.112 56.484 224 197.162 224 361.786 0 214.432-157.598 382.266-352 382.266-194.406 0-352-167.832-352-382.266 0-164.624 92.886-305.302 224-361.786v-214.214h-384v256l64-128h256v32.59c-187.63 66.46-320 227.402-320 415.41 0 247.424 229.23 448 512 448s512-200.576 512-448c0-188.008-132.37-348.95-320-415.41v-32.59z" />
<glyph unicode="&#xeeb3;" glyph-name="sigma" d="M941.606 225.292l44.394 94.708h38l-64-384h-960v74.242l331.546 391.212-331.546 331.546v227h980l44-256h-34.376l-18.72 38.88c-35.318 73.364-61.904 89.12-138.904 89.12h-662l353.056-353.056-297.42-350.944h542.364c116.008 0 146.648 41.578 173.606 97.292z" />
<glyph unicode="&#xeeb4;" glyph-name="page-break" d="M0 448h128v-64h-128zM192 448h192v-64h-192zM448 448h128v-64h-128zM640 448h192v-64h-192zM896 448h128v-64h-128zM880 960l16-448h-768l16 448h32l16-384h640l16 384zM144-64l-16 384h768l-16-384h-32l-16 320h-640l-16-320z" />
<glyph unicode="&#xeeb5;" glyph-name="superscript" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xeeb6;" glyph-name="subscript" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xeeb7;" glyph-name="superscript2" d="M194.018 128l57.6 192h264.764l57.6-192h113.632l-192 640h-223.232l-192-640h113.636zM347.618 640h72.764l57.6-192h-187.964l57.6 192zM704 128l160 256 160-256h-320zM864 832h-64c-17.644 0-32 14.356-32 32s14.356 32 32 32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32h-128c-52.936 0-96-43.066-96-96 0-24.568 9.288-47.002 24.524-64 17.588-19.624 43.11-32 71.476-32h64c17.644 0 32-14.356 32-32s-14.356-32-32-32h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c52.936 0 96 43.066 96 96 0 24.568-9.288 47.002-24.524 64-17.588 19.624-43.108 32-71.476 32z" />
<glyph unicode="&#xeeb8;" glyph-name="subscript2" d="M194.018 128l57.6 192h264.764l57.6-192h113.632l-192 640h-223.232l-192-640h113.636zM347.618 640h72.764l57.6-192h-187.964l57.6 192zM1024 768l-160-256-160 256h320zM864 128h-64c-17.644 0-32 14.356-32 32s14.356 32 32 32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32h-128c-52.936 0-96-43.066-96-96 0-24.568 9.29-47.002 24.524-64 17.588-19.624 43.112-32 71.476-32h64c17.644 0 32-14.356 32-32s-14.356-32-32-32h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c52.936 0 96 43.066 96 96 0 24.568-9.29 47.002-24.524 64-17.588 19.624-43.108 32-71.476 32z" />
<glyph unicode="&#xeeb9;" glyph-name="text-color" d="M322.018 128l57.6 192h264.764l57.6-192h113.632l-191.996 640h-223.236l-192-640h113.636zM475.618 640h72.764l57.6-192h-187.964l57.6 192z" />
<glyph unicode="&#xeeba;" glyph-name="pagebreak" d="M256 576v384h768v-384h-64v320h-640v-320zM1024 384v-448h-768v448h64v-384h640v384zM512 512h128v-64h-128zM320 512h128v-64h-128zM704 512h128v-64h-128zM896 512h128v-64h-128zM0 672l192-192-192-192z" />
<glyph unicode="&#xeebb;" glyph-name="clear-formatting" d="M0 64h576v-128h-576zM896 832h-302.56l-183.764-704h-132.288l183.762 704h-269.15v128h704zM929.774-64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774z" />
<glyph unicode="&#xeebc;" glyph-name="table" d="M0 768v-704h1024v704h-1024zM384 320v128h256v-128h-256zM640 256v-128h-256v128h256zM640 640v-128h-256v128h256zM320 640v-128h-256v128h256zM64 448h256v-128h-256v128zM704 448h256v-128h-256v128zM704 512v128h256v-128h-256zM64 256h256v-128h-256v128zM704 128v128h256v-128h-256z" />
<glyph unicode="&#xeebd;" glyph-name="table2" d="M0 896v-896h1024v896h-1024zM384 320v192h256v-192h-256zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
<glyph unicode="&#xeebe;" glyph-name="insert-template" d="M384 768h128v-64h-128zM576 768h128v-64h-128zM896 768v-256h-192v64h128v128h-64v64zM320 576h128v-64h-128zM512 576h128v-64h-128zM192 704v-128h64v-64h-128v256h192v-64zM384 384h128v-64h-128zM576 384h128v-64h-128zM896 384v-256h-192v64h128v128h-64v64zM320 192h128v-64h-128zM512 192h128v-64h-128zM192 320v-128h64v-64h-128v256h192v-64zM960 896h-896v-896h896v896zM1024 960v0-1024h-1024v1024h1024z" />
<glyph unicode="&#xeebf;" glyph-name="pilcrow" d="M384 960h512v-128h-128v-896h-128v896h-128v-896h-128v512c-141.384 0-256 114.616-256 256s114.616 256 256 256z" />
<glyph unicode="&#xeec0;" glyph-name="ltr" d="M512 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM0 256l256 256-256 256z" />
<glyph unicode="&#xeec1;" glyph-name="rtl" d="M256 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM1024 768l-256-256 256-256z" />
<glyph unicode="&#xeec2;" glyph-name="section" d="M495.964-64c-49.36 0-91.116 14.406-124.104 42.82-33.224 28.614-50.068 62.038-50.068 99.344 0 18.128 6.6 33.756 19.622 46.458 13.232 12.914 29.782 19.744 47.85 19.744 18.002 0 34.194-6.41 46.826-18.542 12.472-11.972 18.796-27.824 18.796-47.104 0-11.318-1.85-23.818-5.494-37.146-3.616-13.178-4.376-19.938-4.376-23.292 0-3.682 0.924-8.076 7.774-12.756 12.76-8.824 28.066-13.084 46.876-13.084 22.576 0 42.718 7.858 61.574 24.022 18.578 15.942 27.612 32.318 27.612 50.056 0 19.736-5.27 36.826-16.12 52.242-18.336 25.758-52.878 55.954-102.612 89.668-79.858 53.454-133.070 99.766-162.58 141.52-22.89 32.684-34.476 67.89-34.476 104.704 0 37.062 12.142 73.948 36.092 109.63 20.508 30.554 50.8 58.12 90.228 82.138-21.096 22.7-36.896 44.064-47.094 63.688-12.872 24.76-19.398 50.372-19.398 76.122 0 47.814 18.91 89.16 56.206 122.89 37.32 33.76 83.86 50.878 138.322 50.878 50.086 0 92.206-14.082 125.182-41.852 33.328-28.082 50.222-60.898 50.222-97.54 0-18.656-6.986-35.364-20.766-49.66l-0.276-0.282c-7.976-7.924-22.618-17.37-47.046-17.37-19.148 0-35.934 6.272-48.54 18.136-12.558 11.794-18.93 25.918-18.93 41.966 0 6.934 1.702 17.416 5.352 32.98 1.778 7.364 2.668 14.142 2.668 20.25 0 10.338-3.726 18.272-11.724 24.966-8.282 6.93-20.108 10.302-36.142 10.302-24.868 0-45.282-7.562-62.41-23.118-17.19-15.606-25.544-34.088-25.544-56.508 0-20.156 4.568-36.762 13.58-49.362 17.112-23.938 46.796-49.79 88.22-76.836 84.17-54.588 142.902-104.672 174.518-148.826 23.35-33.12 35.152-68.34 35.152-104.792 0-36.598-11.882-73.496-35.318-109.676-20.208-31.18-50.722-59.276-90.884-83.71 22.178-23.466 37.812-44.042 47.554-62.538 12.082-22.97 18.208-48.048 18.208-74.542 0-49.664-18.926-91.862-56.244-125.422-37.34-33.554-83.866-50.566-138.288-50.566zM446.416 603.654c-48.222-28.952-71.712-62.19-71.712-101.314 0-22.756 6.498-43.13 19.86-62.278 19.936-27.926 59.27-62.054 116.804-101.288 24.358-16.586 46.36-32.712 65.592-48.060 49.060 29.504 72.956 62.366 72.956 100.178 0 20.598-8.142 42.774-24.204 65.916-16.808 24.196-52.85 55.796-107.128 93.914-28.328 19.562-52.558 37.334-72.168 52.932z" />
<glyph unicode="&#xeec3;" glyph-name="paragraph-left" d="M0 896h1024v-128h-1024zM0 704h640v-128h-640zM0 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec4;" glyph-name="paragraph-center" d="M0 896h1024v-128h-1024zM192 704h640v-128h-640zM192 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec5;" glyph-name="paragraph-right" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec6;" glyph-name="paragraph-justify" d="M0 896h1024v-128h-1024zM0 704h1024v-128h-1024zM0 512h1024v-128h-1024zM0 320h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec7;" glyph-name="indent-increase" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM0 256v384l256-192z" />
<glyph unicode="&#xeec8;" glyph-name="indent-decrease" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM256 640v-384l-256 192z" />
<glyph unicode="&#xeec9;" glyph-name="share" d="M256 320c0 0 58.824 192 384 192v-192l384 256-384 256v-192c-256 0-384-159.672-384-320zM704 192h-576v384h125.876c10.094 11.918 20.912 23.334 32.488 34.18 43.964 41.19 96.562 72.652 156.114 93.82h-442.478v-640h832v268.624l-128-85.334v-55.29z" />
<glyph unicode="&#xeeca;" glyph-name="new-tab" d="M192 896v-768h768v768h-768zM896 192h-640v640h640v-640zM128 64v672l-64 64v-800h800l-64 64h-672zM352 704l160-160-192-192 96-96 192 192 160-160v416z" />
<glyph unicode="&#xeecb;" glyph-name="embed" d="M576 224l96-96 320 320-320 320-96-96 224-224zM448 672l-96 96-320-320 320-320 96 96-224 224z" />
<glyph unicode="&#xeecc;" glyph-name="embed2" horiz-adv-x="1280" d="M832 224l96-96 320 320-320 320-96-96 224-224zM448 672l-96 96-320-320 320-320 96 96-224 224zM701.298 809.481l69.468-18.944-191.987-704.026-69.468 18.944 191.987 704.026z" />
<glyph unicode="&#xeecd;" glyph-name="terminal" d="M0 896v-896h1024v896h-1024zM960 64h-896v768h896v-768zM896 768h-768v-640h768v640zM448 448h-64v-64h-64v-64h-64v64h64v64h64v64h-64v64h-64v64h64v-64h64v-64h64v-64zM704 320h-192v64h192v-64z" />
<glyph unicode="&#xeece;" glyph-name="share2" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
<glyph unicode="&#xeecf;" glyph-name="mail" d="M853.31 960h-682.62c-93.88 0-170.69-76.784-170.69-170.658v-682.656c0-93.876 76.81-170.686 170.69-170.686h682.622c93.938 0 170.688 76.81 170.688 170.686v682.656c0 93.874-76.75 170.658-170.69 170.658zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.94-185.598-185.6c-1.444 5.338-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.206l182.118 182.118 90.422-105.496 90.424 105.494 182.116-182.118c-5.34-1.442-10.886-2.204-16.54-2.204zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.598 185.598 187.664 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
<glyph unicode="&#xeed0;" glyph-name="mail2" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM853.342 832c7.988 0 15.546-2.334 22.020-6.342l-363.362-300.404-363.354 300.4c6.478 4.010 14.044 6.346 22.040 6.346h682.656zM170.686 64c-1.924 0-3.82 0.146-5.684 0.408l225.626 312.966-29.256 29.254-233.372-233.37v611.138l384-464.396 384 464.394v-611.136l-233.372 233.37-29.254-29.254 225.628-312.968c-1.858-0.26-3.746-0.406-5.662-0.406h-682.654z" />
<glyph unicode="&#xeed1;" glyph-name="mail3" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM182.628 73.374l-77.256 77.254 256 256 29.256-29.254-208-304zM153.372 761.372l29.256 29.256 329.372-265.374 329.374 265.374 29.254-29.256-358.628-422.626-358.628 422.626zM841.374 73.374l-208 304 29.254 29.254 256-256-77.254-77.254z" />
<glyph unicode="&#xeed2;" glyph-name="mail4" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.942-185.598-185.598c-1.444 5.336-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.208l182.118 182.118 90.422-105.498 90.424 105.494 182.116-182.12c-5.34-1.44-10.886-2.202-16.54-2.202zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.6 185.598 187.666 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
<glyph unicode="&#xeed3;" glyph-name="amazon" d="M925.6 74.8c-112.2-82.8-274.6-126.8-414.6-126.8-196.2 0-372.8 72.4-506.4 193.2-10.4 9.4-1.2 22.4 11.4 15 144.2-84 322.6-134.4 506.8-134.4 124.2 0 260.8 25.8 386.6 79.2 18.8 8 34.8-12.6 16.2-26.2zM972.2 128c-14.4 18.4-94.8 8.8-131 4.4-11-1.2-12.6 8.2-2.8 15.2 64.2 45 169.4 32 181.6 17 12.4-15.2-3.2-120.6-63.4-171-9.2-7.8-18-3.6-14 6.6 13.8 33.8 44 109.4 29.6 127.8zM707.4 202.4l0.2-0.2c24.8 21.8 69.4 60.8 94.6 81.8 10 8 8.2 21.4 0.4 32.6-22.6 31.2-46.6 56.6-46.6 114.2v192c0 81.4 5.6 156-54.2 212-47.2 45.2-125.6 61.2-185.6 61.2-117.2 0-248-43.8-275.4-188.6-3-15.4 8.4-23.6 18.4-25.8l119.4-13c11.2 0.6 19.2 11.6 21.4 22.8 10.2 49.8 52 74 99 74 25.4 0 54.2-9.2 69.2-32 17.2-25.4 15-60 15-89.4v-16c-71.4-8-164.8-13.2-231.6-42.6-77.2-33.4-131.4-101.4-131.4-201.4 0-128 80.6-192 184.4-192 87.6 0 135.4 20.6 203 89.8 22.4-32.4 29.6-48.2 70.6-82.2 9.4-5 21-4.6 29.2 2.8zM583.2 502.8c0-48 1.2-88-23-130.6-19.6-34.8-50.6-56-85.2-56-47.2 0-74.8 36-74.8 89.2 0 105 94.2 124 183.2 124v-26.6z" />
<glyph unicode="&#xeed4;" glyph-name="google" d="M522.2 521.2v-175.6h290.4c-11.8-75.4-87.8-220.8-290.4-220.8-174.8 0-317.4 144.8-317.4 323.2s142.6 323.2 317.4 323.2c99.4 0 166-42.4 204-79l139 133.8c-89.2 83.6-204.8 134-343 134-283 0-512-229-512-512s229-512 512-512c295.4 0 491.6 207.8 491.6 500.2 0 33.6-3.6 59.2-8 84.8l-483.6 0.2z" />
<glyph unicode="&#xeed5;" glyph-name="google2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM519.6 64c-212.2 0-384 171.8-384 384s171.8 384 384 384c103.6 0 190.4-37.8 257.2-100.4l-104.2-100.4c-28.6 27.4-78.4 59.2-153 59.2-131.2 0-238-108.6-238-242.4s107-242.4 238-242.4c152 0 209 109.2 217.8 165.6h-217.8v131.6h362.6c3.2-19.2 6-38.4 6-63.6 0.2-219.4-146.8-375.2-368.6-375.2z" />
<glyph unicode="&#xeed6;" glyph-name="google3" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM519.6 64c-212.2 0-384 171.8-384 384s171.8 384 384 384c103.6 0 190.4-37.8 257.2-100.4l-104.2-100.4c-28.6 27.4-78.4 59.2-153 59.2-131.2 0-238-108.6-238-242.4s107-242.4 238-242.4c152 0 209 109.2 217.8 165.6h-217.8v131.6h362.6c3.2-19.2 6-38.4 6-63.6 0.2-219.4-146.8-375.2-368.6-375.2z" />
<glyph unicode="&#xeed7;" glyph-name="google-plus" d="M325.8 502.6v-111.8h184.8c-7.4-48-55.8-140.6-184.8-140.6-111.2 0-202 92.2-202 205.8s90.8 205.8 202 205.8c63.4 0 105.6-27 129.8-50.2l88.4 85.2c-56.8 53-130.4 85.2-218.2 85.2-180.2-0.2-325.8-145.8-325.8-326s145.6-325.8 325.8-325.8c188 0 312.8 132.2 312.8 318.4 0 21.4-2.4 37.8-5.2 54h-307.6zM1024 512h-96v96h-96v-96h-96v-96h96v-96h96v96h96z" />
<glyph unicode="&#xeed8;" glyph-name="google-plus2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 192c-141.6 0-256 114.4-256 256s114.4 256 256 256c69.2 0 127-25.2 171.6-67l-69.6-66.8c-19 18.2-52.2 39.4-102 39.4-87.4 0-158.8-72.4-158.8-161.6s71.4-161.6 158.8-161.6c101.4 0 139.4 72.8 145.2 110.4h-145.2v87.8h241.8c2.2-12.8 4-25.6 4-42.4 0-146.4-98-250.2-245.8-250.2zM896 448h-64v-64h-64v64h-64v64h64v64h64v-64h64v-64z" />
<glyph unicode="&#xeed9;" glyph-name="google-plus3" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM384 192c-141.6 0-256 114.4-256 256s114.4 256 256 256c69.2 0 127-25.2 171.6-67l-69.6-66.8c-19 18.2-52.2 39.4-102 39.4-87.4 0-158.8-72.4-158.8-161.6s71.4-161.6 158.8-161.6c101.4 0 139.4 72.8 145.2 110.4h-145.2v87.8h241.8c2.2-12.8 4-25.6 4-42.4 0-146.4-98-250.2-245.8-250.2zM832 448v-64h-64v64h-64v64h64v64h64v-64h64v-64h-64z" />
<glyph unicode="&#xeeda;" glyph-name="hangouts" d="M511.8 960c-244.2 0-442.2-198-442.2-442.2 0-231.4 210.8-419 442.2-419v-162.8c268.6 136.2 442.6 355.6 442.6 581.8 0 244.2-198.4 442.2-442.6 442.2zM448 448c0-53-28.6-96-64-96v96h-128v192h192v-192zM768 448c0-53-28.6-96-64-96v96h-128v192h192v-192z" />
<glyph unicode="&#xeedb;" glyph-name="google-drive" d="M438 320l-184.6-320h580.6l184.6 320zM992.4 384l-295.6 512h-369.6l295.6-512zM290.2 832l-290.2-502.8 184.8-320 290.2 502.8z" />
<glyph unicode="&#xeedc;" glyph-name="facebook" d="M608 768h160v192h-160c-123.514 0-224-100.486-224-224v-96h-128v-192h128v-512h192v512h160l32 192h-192v96c0 17.346 14.654 32 32 32z" />
<glyph unicode="&#xeedd;" glyph-name="facebook2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h416v448h-128v128h128v64c0 105.8 86.2 192 192 192h128v-128h-128c-35.2 0-64-28.8-64-64v-64h192l-32-128h-160v-448h288c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96z" />
<glyph unicode="&#xeede;" glyph-name="instagram" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM704 800c0 17.6 14.4 32 32 32h128c17.6 0 32-14.4 32-32v-128c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32v128zM512 640c106 0 192-86 192-192s-86-192-192-192c-106 0-192 86-192 192s86 192 192 192zM896 96v0c0-17.6-14.4-32-32-32h-704c-17.6 0-32 14.4-32 32v0 416h70.4c-4.2-20.6-6.4-42-6.4-64 0-176.8 143.2-320 320-320s320 143.2 320 320c0 22-2.2 43.4-6.4 64h70.4v-416z" />
<glyph unicode="&#xeedf;" glyph-name="whatsapp" d="M873 811.2c-95.8 96-223.2 148.8-359 148.8-279.6 0-507.2-227.6-507.2-507.4 0-89.4 23.4-176.8 67.8-253.6l-72-263 269 70.6c74.2-40.4 157.6-61.8 242.4-61.8h0.2c0 0 0 0 0 0 279.6 0 507.4 227.6 507.4 507.4 0 135.6-52.8 263-148.6 359zM514.2 30.4v0c-75.8 0-150 20.4-214.8 58.8l-15.4 9.2-159.6-41.8 42.6 155.6-10 16c-42.4 67-64.6 144.6-64.6 224.4 0 232.6 189.2 421.8 422 421.8 112.6 0 218.6-44 298.2-123.6 79.6-79.8 123.4-185.6 123.4-298.4-0.2-232.8-189.4-422-421.8-422zM745.4 346.4c-12.6 6.4-75 37-86.6 41.2s-20 6.4-28.6-6.4c-8.4-12.6-32.8-41.2-40.2-49.8-7.4-8.4-14.8-9.6-27.4-3.2s-53.6 19.8-102 63c-37.6 33.6-63.2 75.2-70.6 87.8s-0.8 19.6 5.6 25.8c5.8 5.6 12.6 14.8 19 22.2s8.4 12.6 12.6 21.2c4.2 8.4 2.2 15.8-1 22.2s-28.6 68.8-39 94.2c-10.2 24.8-20.8 21.4-28.6 21.8-7.4 0.4-15.8 0.4-24.2 0.4s-22.2-3.2-33.8-15.8c-11.6-12.6-44.4-43.4-44.4-105.8s45.4-122.6 51.8-131.2c6.4-8.4 89.4-136.6 216.6-191.4 30.2-13 53.8-20.8 72.2-26.8 30.4-9.6 58-8.2 79.8-5 24.4 3.6 75 30.6 85.6 60.2s10.6 55 7.4 60.2c-3 5.6-11.4 8.8-24.2 15.2z" />
<glyph unicode="&#xeee0;" glyph-name="spotify" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-227.8 512-512 512zM747.6 220.2c-10.2-15.4-28.2-20.4-43.6-10.2-120.4 74.2-271.4 89.6-450.6 48.6-18-5.2-33.2 7.6-38.4 23-5.2 18 7.6 33.2 23 38.4 194.6 43.6 363.6 25.6 496.6-56.4 18-7.6 20.6-28 13-43.4zM809 361c-12.8-18-35.8-25.6-53.8-12.8-138.2 84.4-348.2 110-509.4 58.8-20.4-5.2-43.6 5.2-48.6 25.6-5.2 20.4 5.2 43.6 25.6 48.6 186.8 56.4 417.2 28.2 576-69.2 15.2-7.6 23-33.2 10.2-51zM814 504.4c-163.8 97.2-437.8 107.6-594 58.8-25.6-7.6-51.2 7.6-58.8 30.8-7.6 25.6 7.6 51.2 30.8 58.8 181.8 53.8 481.2 43.6 670.8-69.2 23-12.8 30.8-43.6 18-66.6-13-17.8-43.6-25.4-66.8-12.6z" />
<glyph unicode="&#xeee1;" glyph-name="telegram" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM763.6 609l-84-395.8c-5.8-28.2-22.8-34.8-46.4-21.8l-128 94.6-61.4-59.8c-7.2-7-12.8-12.8-25.6-12.8-16.6 0-13.8 6.2-19.4 22l-43.6 143.2-126.6 39.4c-27.4 8.4-27.6 27.2 6.2 40.6l493.2 190.4c22.4 10.2 44.2-5.4 35.6-40z" />
<glyph unicode="&#xeee2;" glyph-name="twitter" d="M1024 733.6c-37.6-16.8-78.2-28-120.6-33 43.4 26 76.6 67.2 92.4 116.2-40.6-24-85.6-41.6-133.4-51-38.4 40.8-93 66.2-153.4 66.2-116 0-210-94-210-210 0-16.4 1.8-32.4 5.4-47.8-174.6 8.8-329.4 92.4-433 219.6-18-31-28.4-67.2-28.4-105.6 0-72.8 37-137.2 93.4-174.8-34.4 1-66.8 10.6-95.2 26.2 0-0.8 0-1.8 0-2.6 0-101.8 72.4-186.8 168.6-206-17.6-4.8-36.2-7.4-55.4-7.4-13.6 0-26.6 1.4-39.6 3.8 26.8-83.4 104.4-144.2 196.2-146-72-56.4-162.4-90-261-90-17 0-33.6 1-50.2 3 93.2-59.8 203.6-94.4 322.2-94.4 386.4 0 597.8 320.2 597.8 597.8 0 9.2-0.2 18.2-0.6 27.2 41 29.4 76.6 66.4 104.8 108.6z" />
<glyph unicode="&#xeee3;" glyph-name="vine" d="M960.8 451c-26.4-6-51.8-8.8-74.8-8.8-129.2 0-228.6 90.2-228.6 247.2 0 77 29.8 116.8 71.8 116.8 40 0 66.6-35.8 66.6-108.6 0-41.4-11-86.8-19.2-113.6 0 0 39.8-69.4 148.6-48.2 23.2 51.4 35.6 117.8 35.6 176 0 156.8-80 248.2-226.6 248.2-150.8 0-239-115.8-239-268.6 0-151.4 70.8-281.2 187.4-340.4-49-98.2-111.4-184.6-176.6-249.8-118 142.8-224.8 333.2-268.6 705h-174.2c80.6-619.2 320.4-816.4 384-854.2 35.8-21.6 66.8-20.6 99.6-2 51.6 29.2 206.2 184 292 365 36 0 79.2 4.2 122.2 14v122z" />
<glyph unicode="&#xeee4;" glyph-name="vk" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM829.4 243.2l-93.6-1.4c0 0-20.2-4-46.6 14.2-35 24-68 86.6-93.8 78.4-26-8.2-25.2-64.4-25.2-64.4s0.2-12-5.8-18.4c-6.4-7-19.2-8.4-19.2-8.4h-41.8c0 0-92.4-5.6-173.8 79.2-88.8 92.4-167.2 275.8-167.2 275.8s-4.6 12 0.4 17.8c5.6 6.6 20.6 7 20.6 7l100.2 0.6c0 0 9.4-1.6 16.2-6.6 5.6-4 8.6-11.8 8.6-11.8s16.2-41 37.6-78c41.8-72.2 61.4-88 75.6-80.4 20.6 11.2 14.4 102.2 14.4 102.2s0.4 33-10.4 47.6c-8.4 11.4-24.2 14.8-31 15.6-5.6 0.8 3.6 13.8 15.6 19.8 18 8.8 49.8 9.4 87.4 9 29.2-0.2 37.8-2.2 49.2-4.8 34.6-8.4 22.8-40.6 22.8-117.8 0-24.8-4.4-59.6 13.4-71 7.6-5 26.4-0.8 73.4 79 22.2 37.8 39 82.2 39 82.2s3.6 8 9.2 11.4c5.8 3.4 13.6 2.4 13.6 2.4l105.4 0.6c0 0 31.6 3.8 36.8-10.6 5.4-15-11.8-50-54.8-107.4-70.6-94.2-78.6-85.4-19.8-139.8 56-52 67.6-77.4 69.6-80.6 22.8-38.4-26-41.4-26-41.4z" />
<glyph unicode="&#xeee5;" glyph-name="renren" d="M425.2 949.4c-241.2-40.6-425.2-250.4-425.2-503.2 0-125.6 45.6-240.6 120.8-329.6 178.6 86.4 303.6 282 304.4 509.8v323zM598.8 949.4c241.2-40.6 425.2-250.4 425.2-503.2 0-125.6-45.6-240.6-120.8-329.6-178.6 86.4-303.6 282-304.4 509.8v323zM510.2 317.4c-31.8-131.6-126.8-244-245-318.8 72.8-39.8 156.2-62.6 245-62.6s172.2 22.8 245 62.6c-118.2 74.8-213.2 187.2-245 318.8z" />
<glyph unicode="&#xeee6;" glyph-name="sina-weibo" d="M430.2 62c-169.6-16.8-316 60-327 171.2-11 111.4 117.6 215 287 231.8 169.6 16.8 316-60 326.8-171.2 11.2-111.4-117.4-215.2-286.8-231.8zM769.2 431.4c-14.4 4.4-24.4 7.2-16.8 26.2 16.4 41.2 18 76.6 0.2 102-33.2 47.4-124.2 45-228.4 1.2 0 0-32.8-14.2-24.4 11.6 16 51.6 13.6 94.6-11.4 119.6-56.6 56.6-207-2.2-336-131.2-96.4-96.2-152.4-198.8-152.4-287.4 0-169.2 217.2-272.2 429.6-272.2 278.4 0 463.8 161.8 463.8 290.2 0 77.8-65.4 121.8-124.2 140zM954.2 741.4c-67.2 74.6-166.4 103-258 83.6v0c-21.2-4.6-34.6-25.4-30-46.4 4.6-21.2 25.2-34.6 46.4-30 65.2 13.8 135.6-6.4 183.4-59.4s60.8-125.2 40.2-188.4v0c-6.6-20.6 4.6-42.6 25.2-49.4 20.6-6.6 42.6 4.6 49.4 25.2v0.2c28.8 88.4 10.6 190-56.6 264.6zM850.8 648c-32.8 36.4-81.2 50.2-125.6 40.6-18.2-3.8-29.8-22-26-40.2 4-18.2 22-29.8 40-25.8v0c21.8 4.6 45.4-2.2 61.4-19.8 16-17.8 20.4-42 13.4-63.2v0c-5.6-17.6 4-36.8 21.8-42.6 17.8-5.6 36.8 4 42.6 21.8 14 43.4 5.2 93-27.6 129.2zM439.6 263.4c-6-10.2-19-15-29.2-10.8-10.2 4-13.2 15.6-7.4 25.4 6 9.8 18.6 14.6 28.6 10.8 10-3.6 13.6-15 8-25.4zM385.4 194.2c-16.4-26.2-51.6-37.6-78-25.6-26 11.8-33.8 42.2-17.4 67.8 16.2 25.4 50.2 36.8 76.4 25.8 26.6-11.4 35.2-41.6 19-68zM447 379.4c-80.6 21-171.8-19.2-206.8-90.2-35.8-72.4-1.2-153 80.2-179.4 84.4-27.2 184 14.6 218.6 92.6 34.2 76.6-8.4 155.2-92 177z" />
<glyph unicode="&#xeee7;" glyph-name="rss" d="M136.294 209.070c-75.196 0-136.292-61.334-136.292-136.076 0-75.154 61.1-135.802 136.292-135.802 75.466 0 136.494 60.648 136.494 135.802-0.002 74.742-61.024 136.076-136.494 136.076zM0.156 612.070v-196.258c127.784 0 247.958-49.972 338.458-140.512 90.384-90.318 140.282-211.036 140.282-339.3h197.122c-0.002 372.82-303.282 676.070-675.862 676.070zM0.388 960v-196.356c455.782 0 826.756-371.334 826.756-827.644h196.856c0 564.47-459.254 1024-1023.612 1024z" />
<glyph unicode="&#xeee8;" glyph-name="rss2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM279 128.8c-48 0-87 38.6-87 86.6 0 47.6 39 86.8 87 86.8 48.2 0 87-39.2 87-86.8 0-48-39-86.6-87-86.6zM497.4 128c0 81.8-31.8 158.8-89.4 216.4-57.8 57.8-134.4 89.6-216 89.6v125.2c237.6 0 431.2-193.4 431.2-431.2h-125.8zM719.6 128c0 291-236.6 528-527.4 528v125.2c360 0 653-293.2 653-653.2h-125.6z" />
<glyph unicode="&#xeee9;" glyph-name="youtube" d="M1013.8 652.8c0 0-10 70.6-40.8 101.6-39 40.8-82.6 41-102.6 43.4-143.2 10.4-358.2 10.4-358.2 10.4h-0.4c0 0-215 0-358.2-10.4-20-2.4-63.6-2.6-102.6-43.4-30.8-31-40.6-101.6-40.6-101.6s-10.2-82.8-10.2-165.8v-77.6c0-82.8 10.2-165.8 10.2-165.8s10-70.6 40.6-101.6c39-40.8 90.2-39.4 113-43.8 82-7.8 348.2-10.2 348.2-10.2s215.2 0.4 358.4 10.6c20 2.4 63.6 2.6 102.6 43.4 30.8 31 40.8 101.6 40.8 101.6s10.2 82.8 10.2 165.8v77.6c-0.2 82.8-10.4 165.8-10.4 165.8zM406.2 315.2v287.8l276.6-144.4-276.6-143.4z" />
<glyph unicode="&#xeeea;" glyph-name="youtube2" horiz-adv-x="2569" d="M344.012 790.601c0.209 0.865 0.344 1.479 0.388 1.8l1.042 7.559-47.349 0.267c-42.779 0.242-55.87-0.007-57.047-1.084-0.565-0.516-15.333-56.633-41.655-158.273-12.556-48.484-23.124-87.206-23.487-86.051s-15.391 56.498-33.397 122.98c-18.006 66.482-33.104 121.243-33.55 121.692-0.623 0.623-57.98 0.9-104.417 0.502-6.735-0.056-10.477 13.11 60.021-211.133 9.759-31.041 24.371-74.997 32.469-97.679 9.333-26.141 15.989-46.323 20.534-63.173 8.038-32.067 8.319-52.163 6.565-75.625-2.026-27.101-2.321-218.438-0.342-221.638 1.512-2.449 91.223-3.589 99.712-1.268 1.358 0.372 2.265 1.691 2.87 8.928 2.119 6.219 2.286 30.969 2.286 133.744v131.281l5.742 18.112c3.756 11.849 13.201 42.995 20.989 69.22 7.789 26.222 17.21 57.619 20.938 69.771 33.834 110.319 66.14 218.831 66.994 225.011l0.693 5.056zM846.122 631.349l-0.021-6.838-1.065-0.014-0.595-188.993-0.577-183.227-14.666-14.929c-16.424-16.719-29.585-23.101-41.488-20.113-12.963 3.254-12.64-1.8-13.722 214.768l-0.998 199.347h-94.316v-6.851h-1.086v-216.289c0-231.737-0.007-231.599 11.752-254.875 9.366-18.536 23.010-27.559 46.391-30.671h0.002c30.79-4.1 64.001 9.849 94.77 39.809l13.373 13.022v-22.445c0-19.396 0.554-22.601 4.070-23.58 5.756-1.605 77.173-1.707 84.89-0.126l6.396 1.314v6.628l1.086 0.223v495.098l-94.195-1.258zM606.892 533.67c-8.935 38.341-25.68 64.115-53.233 81.939-43.281 27.999-92.718 30.957-138.586 8.291-33.425-16.515-54.951-43.914-66.071-84.083-1.326-4.786-2.298-8.812-3.033-14.815-2.83-14.184-3.163-35.351-3.889-133.951-1.121-151.928 0.616-170.003 19.643-204.51 18.664-33.848 57.403-58.661 99.572-63.782 12.696-1.54 38.43 0.858 53.23 4.961 33.632 9.326 65.864 35.906 80.118 66.078 6.158 13.033 9.875 22.096 12.115 38.651 4.175 22.617 4.47 59.175 4.47 152.375-0.002 118.875-0.379 131.862-4.337 148.847zM499.34 223.997c-7.907-6.028-21.734-8.649-32.983-6.249-8.656 1.847-20.338 15.419-23.934 27.801-4.479 15.436-4.823 229.985-0.954 272.059 6.379 21.054 24.19 32.050 43.635 26.813 15.157-4.082 22.915-13.575 27.336-33.457 3.282-14.754 3.67-33.129 2.972-141.26-0.46-71.701-0.716-106.742-3.058-125.553-2.382-11.87-6.319-15.047-13.015-20.154zM2300.389 425.863h45.57l-0.726 41.281c-0.705 37.869-1.263 42.2-6.324 52.472-7.982 16.21-19.759 23.401-38.446 23.401-22.448 0-36.678-10.849-43.388-33.141-2.858-9.486-5.863-74.685-3.707-80.308 1.205-3.144 7.724-3.705 47.021-3.705zM1995.795 519.763c-6.077 12.247-17.385 18.278-30.525 17.806-10.221-0.365-21.561-4.677-32.488-13.010l-8.14-6.177v-296.598l8.14-6.177c18.429-14.052 38.674-17.031 52.619-7.703 5.519 3.691 9.117 8.779 11.919 16.861 3.647 10.524 3.965 24.003 3.489 148.772-0.495 130.043-0.781 137.702-5.014 146.226zM2560.878 653.367c-9.080 108.842-16.303 144.165-38.751 189.544-29.729 60.101-72.692 91.788-133.876 98.747-47.309 5.379-225.315 12.97-390.044 16.631-285.188 6.338-754.057-5.858-813.939-21.173-27.673-7.077-48.426-19.11-70.022-40.604-37.844-37.662-60.391-91.679-69.452-166.396-20.692-170.606-21.134-376.727-1.188-553.515 8.577-76.041 26.243-125.443 59.41-166.159 20.694-25.406 56.352-46.998 88.26-53.442 22.385-4.523 134.42-10.798 297.605-16.668 24.306-0.874 88.667-2.379 143.030-3.344 113.301-2.012 321.627-0.821 440.719 2.519 80.127 2.249 226.201 8.172 253.5 10.282 7.677 0.593 25.469 1.728 39.537 2.523 47.277 2.67 77.353 12.568 105.596 34.76 36.553 28.718 64.857 81.795 76.815 144.037 11.314 58.894 18.887 163.773 20.422 282.851 1.284 99.491-0.426 153.175-7.621 239.409zM1425.273 692.808l-52.982-0.654-2.326-565.143-45.932-0.581c-35.525-0.488-46.307 0.044-47.167 2.326-0.616 1.626-1.356 129.020-1.672 283.153l-0.581 280.246-103.493 1.307v88.304l305.829-1.235 1.307-87.069-52.982-0.654zM1750.216 368.883v-243.035h-83.725v25.583c0 19.247-0.735 25.583-2.979 25.583-1.64 0-9.226-6.344-16.861-14.098-16.557-16.817-36.171-30.367-52.91-36.63-34.662-12.968-67.589-5.4-81.618 18.75-12.838 22.11-13.082 27.052-13.082 256.335v210.547h83.653l0.654-198.265c0.623-194.821 0.714-198.393 5.377-206.333 6.182-10.521 15.608-13.347 30.597-9.231 8.817 2.423 14.836 6.707 29.143 20.931l18.024 17.952v374.946h83.725v-243.035zM2076.757 160.59c-7.372-16.424-23.806-32.509-37.283-36.485-35.167-10.382-63.375-1.923-95.935 28.708-10.103 9.505-19.51 17.224-20.931 17.224-1.712 0-2.616-7.449-2.616-22.094v-22.094h-83.725v655.845h83.725v-106.982c0-58.84 0.786-106.982 1.744-106.982s9.789 7.807 19.624 17.298c22.629 21.841 41.548 31.399 65.557 33.213 42.811 3.24 68.327-18.794 80.018-69.117 3.647-15.696 3.998-33.625 3.998-179.078-0.002-177.178-0.021-177.918-14.175-209.457zM2430.99 257.832c-0.744-18.226-2.954-39.137-4.942-46.514-11.642-43.167-42.635-73.731-87.432-86.269-60.315-16.878-126.704 10.777-153.205 63.812-14.875 29.769-15.408 35.706-15.408 181.185 0 118.617 0.419 133.171 4.214 149.354 10.747 45.788 37.392 75.422 82.49 91.865 13.068 4.765 26.708 7.207 40.337 7.486 48.672 0.998 96.984-25.18 117.229-67.808 13.659-28.76 15.35-41.060 16.717-122.099l1.235-72.678-178.497-1.235-0.654-48.84c-0.93-68.901 3.716-90.088 22.313-102.621 15.645-10.54 39.679-9.745 52.765 1.744 12.263 10.768 15.726 22.336 16.933 56.107l1.091 29.653h86.195l-1.381-33.143z" />
<glyph unicode="&#xeeeb;" glyph-name="twitch" d="M96 960l-96-160v-736h256v-128h128l128 128h160l288 288v608h-864zM832 416l-160-160h-160l-128-128v128h-192v576h640v-416zM608 704h96v-256h-96v256zM416 704h96v-256h-96v256z" />
<glyph unicode="&#xeeec;" glyph-name="vimeo" d="M1023.6 686c-4.6-99.6-74.2-236.2-208.8-409.4-139.2-180.8-257-271.4-353.4-271.4-59.6 0-110.2 55-151.4 165.2-27.6 101-55 202-82.6 303-30.6 110.2-63.4 165.2-98.6 165.2-7.6 0-34.4-16.2-80.4-48.2l-48.2 62c50.6 44.4 100.4 88.8 149.4 133.2 67.4 58.2 118 88.8 151.8 92 79.6 7.6 128.8-46.8 147.2-163.4 19.8-125.8 33.6-204 41.4-234.6 23-104.4 48.2-156.6 75.8-156.6 21.4 0 53.6 33.8 96.6 101.6 42.8 67.6 65.8 119.2 69 154.6 6.2 58.4-16.8 87.8-69 87.8-24.6 0-49.8-5.6-75.8-16.8 50.4 164.8 146.4 244.8 288.4 240.2 105-2.8 154.6-71 148.6-204.4z" />
<glyph unicode="&#xeeed;" glyph-name="vimeo2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM861.6 620c-3.2-72-53.6-170.6-151-295.8-100.6-130.8-185.8-196.2-255.4-196.2-43.2 0-79.6 39.8-109.4 119.4-20 73-39.8 146-59.8 219-22 79.6-45.8 119.4-71.2 119.4-5.6 0-25-11.6-58-34.8l-34.8 44.8c36.6 32 72.6 64.2 108 96.2 48.8 42 85.2 64.2 109.6 66.4 57.6 5.6 93-33.8 106.4-118 14.4-91 24.4-147.4 30-169.6 16.6-75.4 34.8-113 54.8-113 15.4 0 38.8 24.4 69.8 73.4s47.6 86.2 49.8 111.8c4.4 42.2-12.2 63.4-49.8 63.4-17.8 0-36-4-54.8-12.2 36.4 119 105.8 177 208.4 173.6 76-2.2 111.8-51.4 107.4-147.8z" />
<glyph unicode="&#xeeee;" glyph-name="lanyrd" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM822.4 191.2l-348.4-114c-79.6-26-87.6-21.8-123.6 89.6l-88 272.6c-21 64.6-85 238.6-95.8 272-20 62-20 65.4 97 103.4 91.6 30 95.4 29 128.6-74.4 26.8-83.2 44-150.4 71.6-235.4l75-232 239.6 78.4c47.2 15.6 63 14.8 76.4-43.4l9.6-44c11.2-51-14.6-64-42-72.8z" />
<glyph unicode="&#xeeef;" glyph-name="flickr" d="M0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224zM576 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224z" />
<glyph unicode="&#xeef0;" glyph-name="flickr2" d="M800 544c-70.58 0-128-57.42-128-128s57.42-128 128-128c70.58 0 128 57.42 128 128s-57.42 128-128 128zM800 640v0c123.71 0 224-100.288 224-224 0-123.71-100.29-224-224-224s-224 100.29-224 224c0 123.712 100.29 224 224 224zM0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224z" />
<glyph unicode="&#xeef1;" glyph-name="flickr3" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM288 288c-88.4 0-160 71.6-160 160s71.6 160 160 160 160-71.6 160-160-71.6-160-160-160zM736 288c-88.4 0-160 71.6-160 160s71.6 160 160 160c88.4 0 160-71.6 160-160s-71.6-160-160-160z" />
<glyph unicode="&#xeef2;" glyph-name="flickr4" d="M512 960c-282.77 0-512-230.796-512-515.5s229.23-515.5 512-515.5 512 230.796 512 515.5-229.23 515.5-512 515.5zM288 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160c0-88.366-71.634-160-160-160zM736 288c-88.368 0-160 71.634-160 160s71.632 160 160 160 160-71.634 160-160c0-88.366-71.632-160-160-160z" />
<glyph unicode="&#xeef3;" glyph-name="dribbble" d="M512-64c-282.4 0-512 229.6-512 512s229.6 512 512 512c282.4 0 512-229.6 512-512s-229.6-512-512-512v0zM943.8 378c-15 4.8-135.4 40.6-272.4 18.6 57.2-157.2 80.4-285.2 85-311.8 98 66.4 168 171.4 187.4 293.2v0zM682.8 44.8c-6.6 38.4-31.8 172-93.2 331.6-1-0.4-2-0.6-2.8-1-246.8-86-335.4-257-343.2-273 74.2-57.8 167.4-92.4 268.4-92.4 60.6 0 118.4 12.4 170.8 34.8v0zM187 155c10 17 130 215.6 355.4 288.6 5.6 1.8 11.4 3.6 17.2 5.2-11 24.8-23 49.8-35.4 74.2-218.2-65.4-430.2-62.6-449.4-62.4-0.2-4.4-0.2-8.8-0.2-13.4 0-112.2 42.6-214.8 112.4-292.2v0zM84 537c19.6-0.2 199.8-1 404.4 53.2-72.4 128.8-150.6 237.2-162.2 253-122.4-57.8-214-170.6-242.2-306.2v0zM409.6 872.6c12-16.2 91.6-124.4 163.2-256 155.6 58.2 221.4 146.8 229.2 158-77.2 68.6-178.8 110.2-290 110.2-35.2-0.2-69.6-4.4-102.4-12.2v0zM850.6 723.8c-9.2-12.4-82.6-106.4-244.2-172.4 10.2-20.8 20-42 29-63.4 3.2-7.6 6.4-15 9.4-22.6 145.6 18.2 290.2-11 304.6-14-1 103.2-38 198-98.8 272.4v0z" />
<glyph unicode="&#xeef4;" glyph-name="behance" d="M297 754.8c30.2 0 57.4-2.6 82.2-8 24.8-5.2 45.8-14 63.6-26 17.6-12 31.2-28 41.2-48 9.6-19.8 14.4-44.6 14.4-74 0-31.8-7.2-58.2-21.6-79.4-14.6-21.2-35.8-38.4-64.2-52 38.8-11.2 67.4-30.8 86.6-58.6 19.2-28 28.4-61.6 28.4-101.2 0-32-6.2-59.4-18.4-82.6-12.4-23.4-29.2-42.4-49.8-57-20.8-14.8-44.8-25.6-71.6-32.6-26.6-7-54-10.6-82.4-10.6h-305.4v630h297zM279 500.4c24.6 0 45 5.8 61 17.6 16 11.6 23.6 30.8 23.6 57.2 0 14.6-2.6 26.8-7.8 36.2-5.4 9.4-12.4 16.8-21.4 22-8.8 5.4-18.8 9-30.6 11-11.4 2.2-23.4 3.2-35.6 3.2h-129.6v-147.2h140.4zM286.6 232.2c13.6 0 26.6 1.2 38.8 4 12.4 2.8 23.4 7 32.6 13.4 9.2 6.2 17 14.4 22.6 25.2 5.6 10.6 8.2 24.2 8.2 40.8 0 32.4-9.2 55.6-27.4 69.6-18.2 13.8-42.4 20.6-72.4 20.6h-150.4v-173.4h148zM725.2 234.4c18.8-18.4 45.8-27.6 81-27.6 25.2 0 47.2 6.4 65.4 19.2s29.2 26.4 33.4 40.4h110.4c-17.8-55-44.6-94-81.4-117.6-36.2-23.6-80.6-35.6-132-35.6-36 0-68.2 5.8-97.2 17.2-29 11.6-53.2 27.8-73.6 49-19.8 21.2-35.4 46.4-46.4 76-10.8 29.4-16.4 62-16.4 97.2 0 34.2 5.6 66 16.8 95.4 11.4 29.6 27 55 47.8 76.4s45.2 38.4 74 50.8c28.6 12.4 60.2 18.6 95.2 18.6 38.6 0 72.4-7.4 101.4-22.6 28.8-15 52.6-35.2 71.2-60.4s31.8-54.2 40-86.6c8.2-32.4 11-66.2 8.8-101.6h-329.4c0-35.8 12-70 31-88.2zM869 474c-14.8 16.4-40.2 25.4-70.8 25.4-20 0-36.6-3.4-49.8-10.2-13-6.8-23.6-15.2-31.8-25.2-8-10-13.6-20.8-16.8-32.2-3.2-11-5.2-21.2-5.8-30h204c-3 32-14 55.6-29 72.2zM668.4 704h255.4v-62.2h-255.4v62.2z" />
<glyph unicode="&#xeef5;" glyph-name="behance2" d="M404.2 511.4c13 9.4 19.2 25 19.2 46.6 0 12-2 21.8-6.2 29.4-4.4 7.6-10 13.6-17.4 17.8-7.2 4.4-15.4 7.4-24.8 9-9.2 1.8-19 2.6-29 2.6h-105.4v-119.6h114c20-0.2 36.6 4.6 49.6 14.2zM422 403.4c-14.8 11.2-34.4 16.8-58.8 16.8h-122.6v-141h120.2c11.2 0 21.6 1 31.6 3.2s19 5.6 26.6 10.8c7.6 5 13.8 11.8 18.4 20.4s6.8 19.8 6.8 33.2c0 26.4-7.4 45.2-22.2 56.6zM928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM671.2 690.6h207.4v-50.6h-207.4v50.6zM541.6 273.6c-10-19-23.6-34.4-40.4-46.4-17-12-36.4-20.8-58.2-26.6-21.6-5.8-44-8.6-66.8-8.6h-248.2v511.8h241.2c24.4 0 46.6-2.2 66.8-6.4 20-4.2 37.2-11.4 51.6-21.2 14.2-9.8 25.4-22.8 33.4-39 7.8-16 11.8-36.2 11.8-60 0-25.8-5.8-47.2-17.6-64.4s-29-31.2-52.2-42.2c31.6-9 54.8-25 70.2-47.6 15.6-22.8 23.2-50.2 23.2-82.2 0.2-26.2-4.8-48.6-14.8-67.2zM959.4 352.8h-267.4c0-29.2 10-57 25.2-72 15.2-14.8 37.2-22.4 65.8-22.4 20.6 0 38.2 5.2 53.2 15.6 14.8 10.4 23.8 21.4 27.2 32.8h89.6c-14.4-44.6-36.2-76.4-66-95.6-29.4-19.2-65.4-28.8-107.2-28.8-29.2 0-55.4 4.8-79 14-23.6 9.4-43.2 22.6-59.8 39.8-16.2 17.2-28.6 37.8-37.6 61.8-8.8 23.8-13.4 50.4-13.4 79 0 27.8 4.6 53.6 13.6 77.6 9.2 24 22 44.8 38.8 62 16.8 17.4 36.8 31.2 60 41.4 23.2 10 48.8 15 77.2 15 31.4 0 58.8-6 82.4-18.4 23.4-12.2 42.6-28.6 57.8-49.2s25.8-44 32.6-70.4c6.6-26 8.8-53.4 7-82.2zM776.6 496.2c-16.2 0-29.8-2.8-40.4-8.4s-19.2-12.4-25.8-20.4c-6.6-8.2-11-16.8-13.6-26.2-2.6-9-4.2-17.2-4.6-24.4h165.6c-2.4 26-11.4 45.2-23.4 58.6-12.4 13.6-32.8 20.8-57.8 20.8z" />
<glyph unicode="&#xeef6;" glyph-name="deviantart" d="M829 773.8v186.2h-186.2l-18.6-18.8-88-167.4-27.6-18.6h-313.6v-255.6h172.4l15.4-18.6-187.8-358.8v-186.2h186.2l18.6 18.8 88 167.4 27.6 18.6h313.6v255.6h-172.4l-15.4 18.8z" />
<glyph unicode="&#xeef7;" glyph-name="500px" d="M253 287.2c0.2-0.6 5.6-15.2 8.6-22.6 16.8-39.8 41-75.8 71.8-106.6s66.6-55 106.6-71.8c41.4-17.4 85.2-26.4 130.4-26.4s89.2 8.8 130.4 26.4c40 16.8 75.8 41 106.6 71.8s55 66.6 71.8 106.6c17.4 41.4 26.4 85.2 26.4 130.4s-8.8 89.2-26.4 130.4c-16.8 40-41 75.8-71.8 106.6s-66.6 55-106.6 71.8c-41.4 17.4-85.2 26.4-130.4 26.4-45.8 0-91.6-9.2-132.2-26.4-32.6-13.8-87.8-49.2-120-82.6l-0.2-0.2v276h463.4c16.8 0.2 16.8 23.8 16.8 31.4 0 7.8 0 31.2-17 31.4h-501c-13.6 0-22-11.4-22-21.8v-388.2c0-12.6 15.6-21.6 30.2-24.6 28.4-6 34.8 3 41.8 12.6l1 1.2c10.6 15.8 43.6 49 44 49.4 51.6 51.6 120.6 80 194.4 80 73.4 0 142.2-28.4 193.8-80 51.8-51.8 80.4-120.4 80.4-193.2 0-73-28.4-141.8-80-193.2-50.8-50.8-122-80-195-80-49.4 0-97.2 13.2-138.2 38.2l0.2 236c0 31.4 13.6 65.8 36.6 91.6 26.2 29.6 62.2 45.8 101.6 45.8 38 0 73.6-14.4 100.2-40.6 26.2-26 40.8-60.8 40.8-97.8 0-78.8-62-140.6-141.2-140.6-15.2 0-43 6.8-44.2 7-16 4.8-22.8-17.4-25-24.8-8.6-28.2 4.4-33.8 7-34.6 25.4-8 42.2-9.4 64.2-9.4 111.8 0 202.8 91 202.8 202.8 0 111-91 201.2-202.6 201.2-54.8 0-106.2-21-144.8-58.8-36.8-36.2-57.8-84.4-57.8-132.4v-1.2c-0.2-6-0.2-147.6-0.4-194l-0.2 0.2c-21 23.2-41.8 58.8-55.6 95.2-5.4 14.2-17.6 11.8-34.2 6.6-8-2.2-30-9-25-25.2v0zM491.2 342.6c0-6.8 6.2-12.8 10-16.2l1.2-1.2c6.4-6.2 12.4-9.4 18-9.4 4.6 0 7.4 2.2 8.4 3.2 2.8 2.6 34.4 34.8 37.6 37.8l35.4-35.2c3.2-3.6 6.8-5.6 11-5.6 5.6 0 11.8 3.4 18.2 10 15.2 15.6 7.6 24 4 28l-35.8 35.8 37.4 37.6c8.2 8.8 1 18.2-6.2 25.4-10.4 10.4-20.6 13.2-27 7.2l-37.2-37.2-37.6 37.6c-2 2-4.6 3-7.2 3-5 0-11-3.4-17.6-10-11.6-11.6-14-19.6-8-26l37.6-37.4-37.4-37.4c-3.4-3.2-5-6.6-4.8-10zM573 850.2c-60 0-124-12.2-170.8-32.4-5-2-8-6-8.6-11.6-0.6-5.4 0.8-12.4 4.4-21.6 3-7.4 10.6-27.2 25.6-21.4 48 18.4 101.2 28.4 149.4 28.4 54.8 0 108-10.8 158-31.8 39.8-16.8 77.2-41.2 118-76.4 3-2.6 6.2-3.8 9.4-3.8 8 0 15.6 7.8 22.2 15.2 10.8 12.2 18.4 22.4 7.6 32.6-39 36.8-81.6 64.4-134.4 86.8-57.2 23.8-118.2 36-180.8 36zM896.4 108.8v0c-7.2 7.2-13.4 11.4-18.8 13s-10.4 0.4-14.2-3.4l-3.6-3.6c-37.2-37.2-80.6-66.4-128.8-86.8-50-21.2-103-31.8-157.6-31.8-54.8 0-107.8 10.8-157.6 31.8-48.2 20.4-91.6 49.6-128.8 86.8-38.8 38.8-68 82.2-86.8 128.8-18.4 45.6-24.4 79.8-26.4 91-0.2 1-0.4 1.8-0.4 2.4-2.6 13.2-14.8 14.2-32.2 11.4-7.2-1.2-29.4-4.6-27.4-20.4v-0.4c5.8-37 16.2-73.2 30.8-107.6 23.4-55.4 57-105.2 99.8-148s92.6-76.2 148-99.8c57.4-24.2 118.4-36.6 181.2-36.6s123.8 12.4 181.2 36.6c55.4 23.4 105.2 57 148 99.8 0 0 2.4 2.4 3.8 3.8 4.4 5.4 8.6 14.4-10.2 33z" />
<glyph unicode="&#xeef8;" glyph-name="steam" d="M704 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM958.392 830.392c-87.478 87.476-229.306 87.476-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.228c-27.506-1.41-54.776-8.416-79.966-21.016l-157.892 123.424c-36.55 28.574-89.342 22.102-117.912-14.448-28.572-36.55-22.102-89.342 14.448-117.912l155.934-121.892c-16.96-66.782 0.672-140.538 52.93-192.794 78.906-78.904 206.832-78.904 285.736 0 48.466 48.466 67.15 115.428 56.076 178.166l249.054 222.986c46.248 6.638 90.816 27.744 126.394 63.322 87.478 87.476 87.478 229.306 0 316.784zM384 57.302c-74.39 0-134.698 60.304-134.698 134.698 0 0.712 0.042 1.414 0.054 2.124l66.912-52.304c15.36-12.006 33.582-17.824 51.674-17.824 24.962 0 49.672 11.080 66.238 32.272 28.572 36.55 22.102 89.342-14.448 117.912l-63.5 49.636c8.962 1.878 18.248 2.88 27.768 2.88 74.392 0 134.698-60.304 134.698-134.698s-60.306-134.696-134.698-134.696zM800 512c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
<glyph unicode="&#xeef9;" glyph-name="steam2" d="M303.922 123.99c27.144 0 53.786 13.136 69.972 37.416 25.734 38.602 15.302 90.754-23.298 116.488l-66.074 44.048c11.308 3.080 23.194 4.756 35.478 4.756 74.392 0 134.696-60.304 134.696-134.698s-60.306-134.698-134.698-134.698c-72.404 0-131.444 57.132-134.548 128.774l71.954-47.968c14.322-9.548 30.506-14.118 46.518-14.118zM853.34 960c93.876 0 170.66-76.812 170.66-170.688v-682.628c0-93.936-76.784-170.684-170.66-170.684h-682.652c-93.876 0-170.688 76.75-170.688 170.682v203.028l121.334-80.888c-11.652-63.174 6.938-130.83 55.798-179.69 78.904-78.904 206.83-78.904 285.736 0 48.468 48.466 67.15 115.43 56.076 178.166l249.056 222.988c46.248 6.638 90.816 27.744 126.394 63.322 87.476 87.476 87.476 229.306 0 316.784-87.48 87.478-229.308 87.478-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.23c-31.848-1.632-63.378-10.764-91.726-27.392l-217.866 145.244v277.69c0 93.876 76.81 170.688 170.686 170.688h682.654zM896 672c0 88.366-71.634 160-160 160s-160-71.634-160-160 71.634-160 160-160 160 71.634 160 160zM640 672c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96z" />
<glyph unicode="&#xeefa;" glyph-name="dropbox" d="M736 928l-224-192 288-192 224 192zM512 736l-224 192-288-192 224-192zM800 544l224-192-288-160-224 192zM512 384l-288 160-224-192 288-160zM728.156 114.43l-216.156 185.278-216.158-185.278-135.842 75.468v-93.898l352-160 352 160v93.898z" />
<glyph unicode="&#xeefb;" glyph-name="onedrive" d="M350.868 131.612c-60.274 15.060-93.856 62.97-93.962 134.064-0.032 22.726 1.612 33.62 7.286 48.236 13.908 35.834 50.728 62.872 99.176 72.822 24.11 4.95 31.536 10.266 31.536 22.572 0 3.862 2.872 15.36 6.378 25.552 15.932 46.306 45.43 84.91 76.948 100.702 32.99 16.526 49.642 20.254 89.548 20.040 56.674-0.304 84.952-12.598 124.496-54.128l21.75-22.842 19.484 6.742c94.3 32.636 188.306-22.916 195.888-115.756l2.072-25.398 18.57-6.65c53.032-19.004 77.96-58.904 73.442-117.556-2.958-38.358-20.89-68.98-49.3-84.184l-13.356-7.146-296.822-0.57c-228.094-0.44-300.6 0.368-313.134 3.5v0zM103.218 174.034c-36.176 9.086-74.506 42.854-92.48 81.47-10.196 21.906-10.738 25.128-10.738 63.88 0 36.864 0.87 42.778 8.988 61.080 17.11 38.582 49.894 66.46 91.030 77.408 8.684 2.312 16.842 6 18.128 8.196 1.29 2.198 2.722 14.164 3.182 26.592 2.866 77.196 50.79 145.214 117.708 167.056 36.154 11.8 83.572 12.898 122.896-3.726 12.47-5.274 11.068-6.404 37.438 30.14 15.594 21.612 45.108 44.49 70.9 58.18 27.838 14.776 56.792 21.584 91.412 21.494 96.768-0.252 180.166-64.22 211.004-161.848 9.854-31.192 9.362-39.926-2.26-40.184-5.072-0.112-19.604-3.064-32.292-6.558l-23.072-6.358-21.052 22.25c-59.362 62.734-156.238 76.294-238.592 33.396-32.9-17.138-59.34-41.746-79.31-73.81-14.236-22.858-32.39-65.504-32.39-76.094 0-7.51-5.754-11.264-30.332-19.782-76.094-26.376-120.508-87.282-120.476-165.218 0.010-28.368 6.922-63.074 16.52-82.956 3.618-7.494 5.634-14.622 4.484-15.836-2.946-3.106-97.608-2.060-110.696 1.228v0z" />
<glyph unicode="&#xeefc;" glyph-name="github" d="M512.008 947.358c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" />
<glyph unicode="&#xeefd;" glyph-name="npm" d="M0 960v-1024h1024v1024h-1024zM832 128h-128v512h-192v-512h-320v640h640v-640z" />
<glyph unicode="&#xeefe;" glyph-name="basecamp" d="M512 853.4c-186.8 0-330.8-156.4-412.4-309.6-46-86.2-78.2-180.6-93-277.2-1.6-11-3.2-22-4.4-33.2-0.6-6-1.2-12-1.6-18-0.6-7.6-0.2-10 3.8-16.4 12-19.4 26.2-37.4 42.2-53.6 32.8-33.6 72.6-59.4 114.8-79.4 96.2-45.4 204.8-61.8 310.4-65.4 109-3.6 221 5.4 325.2 39.4 89 29 174.8 79.6 224.2 161.4 5.4 8.8 1.6 21.8 0.6 32-1.2 12.2-2.8 24.2-4.8 36.2-3.6 23.6-8.4 46.8-14.2 70-11.6 47.2-27.4 93.6-46.6 138.2-69.6 161.6-198.4 334-381.6 369.6-20.6 4-41.6 6-62.6 6zM518.4 69.8c-114.2 0-238.6 10.2-341.4 65.2-40 21.4-80.8 52.4-100 95-5.6 12.4-3.6 17.2-1 31.8 1.8 9.4 2.6 18.6 6.8 27.4 5.8 12.2 11.8 24.2 18 36.2 21 40.6 43.6 80.8 69.8 118.6 13 18.6 26.8 37 42.8 53 11.2 11.2 24.8 23.2 40.6 27 48.4 11.6 85.4-44.4 114.8-72.6 14.2-13.6 33.2-29 54.4-26.4 14.6 1.8 27.6 13.2 38 22.6 35.4 31.8 63.8 71.2 93.2 108.2 14.6 18.2 29 36.6 44.8 54 10.6 11.8 22.2 25.2 36.4 32.8 25.4 13.8 57.8-14.6 75.4-29.2 30-25 56.6-54.2 82-83.8 24.2-28.2 47.6-56.8 68.2-87.8 31.8-48 59.4-99.2 84.6-151 5.4-11.2 7.2-18.8 9.2-31.2 1.2-6.8 3.8-14.6 2.8-21.6-1.4-9.8-8.2-20.4-13.2-28.4-12-19-28.2-35.4-46-49.2-74.6-57.8-175.6-77-267.4-85.6-37.6-3.6-75.2-5-112.8-5z" />
<glyph unicode="&#xeeff;" glyph-name="trello" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM448 192c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v512c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-512zM832 384c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v320c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-320z" />
<glyph unicode="&#xef00;" glyph-name="wordpress" d="M128 448.008c0-148.026 88.322-275.968 216.43-336.578l-183.178 488.784c-21.308-46.508-33.252-97.982-33.252-152.206zM771.228 466.872c0 46.234-17.054 78.236-31.654 103.142-19.458 30.82-37.72 56.894-37.72 87.716 0 34.374 26.766 66.376 64.486 66.376 1.704 0 3.32-0.204 4.976-0.302-68.316 60.97-159.34 98.196-259.308 98.196-134.16 0-252.186-67.046-320.844-168.568 9.010-0.282 17.506-0.454 24.712-0.454 40.154 0 102.34 4.752 102.34 4.752 20.69 1.182 23.132-28.434 2.458-30.822 0 0-20.81-2.368-43.952-3.55l139.834-405.106 84.044 245.456-59.822 159.65c-20.688 1.184-40.278 3.55-40.278 3.55-20.702 1.192-18.272 32.002 2.438 30.822 0 0 63.4-4.752 101.134-4.752 40.146 0 102.35 4.752 102.35 4.752 20.702 1.182 23.14-28.434 2.446-30.822 0 0-20.834-2.372-43.948-3.55l138.78-402.018 38.312 124.632c16.58 51.75 29.216 88.9 29.216 120.9zM518.742 415.296l-115.226-326.058c34.416-9.858 70.794-15.238 108.488-15.238 44.716 0 87.604 7.518 127.518 21.2-1.018 1.602-1.974 3.304-2.75 5.154l-118.030 314.942zM848.962 627.428c1.652-11.91 2.588-24.686 2.588-38.458 0-37.93-7.292-80.596-29.202-133.95l-117.286-330.272c114.162 64.828 190.938 185.288 190.938 323.258 0 65.030-17.060 126.16-47.038 179.422zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448z" />
<glyph unicode="&#xef01;" glyph-name="joomla" d="M266.004 683.322c32.832 32.844 86.002 32.844 118.804 0.032l7.826-7.868 101.104 101.156-7.874 7.88c-57.624 57.7-138.514 77.878-212.42 60.522-10.594 65.182-67.088 114.924-135.174 114.956-75.65 0-136.954-61.442-136.97-137.158 0-65.336 45.59-120 106.662-133.83-23.138-77.45-4.242-164.834 56.846-225.984l227.826-227.9 100.996 101.214-227.81 227.886c-32.682 32.722-32.742 86.126 0.184 119.094zM1022.712 822.842c0.016 75.762-61.318 137.158-136.984 137.158-69.234 0-126.478-51.444-135.682-118.238-77.074 22.664-163.784 3.496-224.64-57.408l-227.84-227.9 101.102-101.172 227.766 227.856c32.94 32.966 85.988 32.906 118.684 0.184 32.8-32.83 32.8-86.114-0.032-118.956l-7.794-7.836 101.010-101.248 7.858 7.928c60.458 60.566 79.678 146.756 57.612 223.638 67.15 8.834 118.94 66.364 118.94 135.994zM906.266 208.936c18.102 74.458-1.976 156.324-60.108 214.5l-227.49 227.992-101.102-101.122 227.52-228.012c32.94-32.996 32.864-86.096 0.184-118.848-32.802-32.814-86.004-32.814-118.836 0.030l-7.766 7.79-100.994-101.246 7.732-7.728c61.516-61.594 149.618-80.438 227.368-56.488 12.632-62.682 67.934-109.804 134.258-109.804 75.604 0 136.968 61.35 136.968 137.126 0 69.2-51.18 126.456-117.734 135.81zM612.344 431.316l-227.536-227.992c-32.71-32.768-86.034-32.828-118.944 0.124-32.818 32.904-32.832 86.098-0.044 118.97l7.808 7.774-101.086 101.124-7.734-7.712c-58.76-58.802-78.56-141.834-59.45-216.982-60.398-14.26-105.358-68.634-105.358-133.496-0.016-75.746 61.332-137.126 136.982-137.126 65.1 0.032 119.588 45.418 133.54 106.382 74.702-18.552 156.998 1.304 215.344 59.756l227.49 227.96-101.012 101.218z" />
<glyph unicode="&#xef02;" glyph-name="ello" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM824.636 370.402c-36.798-142.716-165.358-242.402-312.63-242.402-147.282 0-275.85 99.686-312.654 242.42-6.232 24.158 8.352 48.886 32.512 55.124 3.71 0.958 7.528 1.446 11.338 1.446 20.624 0 38.628-13.972 43.788-33.976 26.512-102.748 119.042-174.51 225.014-174.51 105.978 0 198.502 71.76 225 174.51 5.152 20.006 23.15 33.982 43.766 33.982 3.822 0 7.65-0.49 11.376-1.456 11.692-3.016 21.526-10.418 27.668-20.842 6.142-10.416 7.854-22.596 4.822-34.296z" />
<glyph unicode="&#xef03;" glyph-name="blogger" d="M957.796 576h-57.406c-35.166 0-65.988 29.742-68.39 64v0c0.004 182.668-147.258 320-331.19 320h-167.824c-183.812 0-332.856-148-332.986-330.666v-362.798c0-182.654 149.174-330.536 332.984-330.536h358.42c183.948 0 332.596 147.882 332.596 330.536v234.382c0 36.502-29.44 75.082-66.204 75.082zM320 704h192c35.2 0 64-28.8 64-64s-28.8-64-64-64h-192c-35.2 0-64 28.8-64 64s28.8 64 64 64zM704 192h-384c-35.2 0-64 28.8-64 64s28.8 64 64 64h384c35.2 0 64-28.8 64-64s-28.8-64-64-64z" />
<glyph unicode="&#xef04;" glyph-name="blogger2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM896 312c0-137-111.4-248-249.4-248h-268.8c-138 0-249.8 111-249.8 248v272c0 137 111.8 248 249.8 248h125.8c138 0 248.4-103 248.4-240 1.8-25.6 25-48 51.2-48h43c27.6 0 49.6-29 49.6-56.4v-175.6zM704 320c0-35.2-28.8-64-64-64h-256c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h256c35.2 0 64-28.8 64-64v0zM576 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v0z" />
<glyph unicode="&#xef05;" glyph-name="tumblr" d="M576.032 512l-0.002-234.184c0-59.418-0.77-93.656 5.53-110.5 6.25-16.754 21.918-34.146 38.99-44.202 22.684-13.588 48.542-20.376 77.708-20.376 51.854 0 82.478 6.848 133.742 40.54v-153.944c-43.7-20.552-81.866-32.594-117.324-40.922-35.5-8.242-73.86-12.406-115.064-12.406-46.828 0-74.456 5.886-110.41 17.656-35.958 11.868-66.66 28.806-92.020 50.54-25.45 21.922-43.022 45.208-52.848 69.832-9.826 24.636-14.716 60.414-14.716 107.244v359.1h-137.426v145.006c40.208 13.042 85.164 31.788 113.78 56.152 28.754 24.45 51.766 53.706 69.106 87.944 17.392 34.146 29.348 77.712 35.872 130.516h165.084l-0.002-255.996h255.968v-192h-255.968z" />
<glyph unicode="&#xef06;" glyph-name="tumblr2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM731.8 135.4c-30.2-14.2-57.6-24.2-82-30-24.4-5.6-51-8.6-79.4-8.6-32.4 0-51.4 4-76.2 12.2s-46 19.8-63.6 34.8c-17.6 15.2-29.6 31.2-36.4 48.2s-10.2 41.6-10.2 74v247.8h-96v100c27.8 9 60 22 79.6 38.8 19.8 16.8 35.8 37 47.6 60.6 12 23.6 20.2 53.6 24.8 90h100.4v-163.2h163.6v-126.2h-163.4v-181.2c0-41-0.6-64.6 3.8-76.2s15.2-23.6 27-30.4c15.6-9.4 33.6-14 53.6-14 35.8 0 71.4 11.6 106.8 34.8v-111.4z" />
<glyph unicode="&#xef07;" glyph-name="yahoo" d="M568.2 371v0c112.6 197.6 298.6 520 349.6 589-22.4-15-56.8-22.6-88.4-29.8l-47.8 29.8c-38.4-71.6-180-303-270.2-451.2-91.4 151.4-199.6 326.2-270.2 451.2-56-12-79.2-12.6-135 0v0 0c0 0 0 0 0 0v0c110.8-166.8 288.2-484.6 348.6-589v0l-8.2-435 64.8 29.8v0.8l64.8-30.6-8 435z" />
<glyph unicode="&#xef08;" glyph-name="yahoo2" d="M513.2 890.4c-181 0-352 23.8-513.2 69.6 0-361.8 0-933.2 0-1024 161.4 45.8 332.4 69.6 513.2 69.6 178.8 0 349.4-23.2 510.8-69.6 0 348.4 0 649.8 0 1024-161.4-46.4-331.8-69.6-510.8-69.6zM796.8 803l-6.2-9.8c-5.8-9.2-11-17-18.2-28-9.6-14.4-27.6-43-49.2-79.8-6-10.2-13.4-22.4-21-35.6-14.6-24.6-31-52.4-44-74.4-5.4-9.4-10.8-19-16.4-28.6-14.4-25-29.2-50.8-43.4-75.6-14.6-25.8-29-51.2-43.4-76.4v-25.4c0-35.2 0.8-73.6 2-107.8 0.6-15.6 1.2-43.4 2-72.8 0.8-35 1.6-71.2 2.6-89.6l0.2-5.6v-0.6l-6 1.6c-2.4 0.6-4.6 1.2-7 1.8-7.2 1.6-15 2.8-22.6 3.6-4.6 0.4-9.4 0.6-14.2 0.6 0 0 0 0 0 0s0 0 0 0c-4.8 0-9.6-0.2-14.2-0.6-7.6-0.8-15.4-2-22.6-3.6-2.4-0.6-4.8-1.2-7-1.8l-6-1.6v0.6l0.2 5.6c0.8 18.2 1.8 54.6 2.6 89.6 0.6 29.4 1.4 57.2 2 72.8 1.4 34.4 2 72.6 2 107.8v25.4c-14.4 25.4-28.8 50.6-43.4 76.4-14.2 25-29 50.6-43.2 75.6-5.6 9.6-11 19.2-16.4 28.6-12.8 22.2-29.4 50-44 74.4-7.8 13-15.2 25.4-21 35.6-21.6 36.8-39.6 65.2-49.2 79.8-7.2 11-12.4 18.8-18.2 28l-6.2 9.8 11.2-3.2c14.2-4 28.8-6 44.4-6s30.6 2 44.6 6l3.4 1 1.8-3c27.6-49.8 101.8-171.8 146.2-244.8 15.2-25.2 27.4-45 33.4-55.2 0 0 0 0 0 0.2 0 0 0 0 0-0.2 6 10 18.2 30 33.4 55.2 44.4 72.8 118.6 194.8 146.2 244.8l1.8 3 3.4-1c14-4 29-6 44.6-6s30.2 2 44.4 6l10.6 3.2z" />
<glyph unicode="&#xef09;" glyph-name="tux" d="M567.656 223.084c-81.944-38.118-158.158-37.716-209.34-34.020-61.052 4.41-110.158 21.124-131.742 35.732-13.3 9.006-31.384 5.522-40.39-7.782-9.004-13.302-5.52-31.386 7.782-40.39 34.698-23.486 96.068-40.954 160.162-45.58 10.866-0.784 22.798-1.278 35.646-1.278 55.782 0 126.626 5.316 202.42 40.57 14.564 6.778 20.878 24.074 14.104 38.64-6.776 14.566-24.076 20.872-38.642 14.108zM890.948 266.184c2.786 252.688 28.762 730.206-454.97 691.612-477.6-38.442-350.964-542.968-358.082-711.95-6.308-89.386-35.978-198.648-77.896-309.846h129.1c13.266 47.122 23.024 93.72 27.232 138.15 7.782-5.428 16.108-10.674 24.994-15.7 14.458-8.518 26.884-19.844 40.040-31.834 30.744-28.018 65.59-59.774 133.712-63.752 4.572-0.262 9.174-0.394 13.676-0.394 68.896 0 116.014 30.154 153.878 54.382 18.14 11.612 33.818 21.64 48.564 26.452 41.91 13.12 78.532 34.296 105.904 61.252 4.276 4.208 8.242 8.538 11.962 12.948 15.246-55.878 36.118-118.758 59.288-181.504h275.65c-66.174 102.224-134.436 202.374-133.052 330.184zM124.11 403.648c0 0.016 0 0.030-0.002 0.046-4.746 82.462 34.71 151.832 88.126 154.936 53.412 3.106 100.56-61.228 105.304-143.692 0-0.014 0.004-0.030 0.004-0.044 0.256-4.446 0.368-8.846 0.37-13.206-16.924-4.256-32.192-10.436-45.872-17.63-0.052 0.612-0.092 1.216-0.152 1.83 0 0.008 0 0.018 0 0.026-4.57 46.81-29.572 82.16-55.852 78.958-26.28-3.204-43.88-43.75-39.312-90.558 0-0.010 0.004-0.018 0.004-0.026 1.992-20.408 7.868-38.636 16.042-52.444-2.034-1.604-7.784-5.812-14.406-10.656-4.97-3.634-11.020-8.058-18.314-13.43-19.882 26.094-33.506 63.58-35.94 105.89zM665.26 199.822c-1.9-43.586-58.908-84.592-111.582-101.044l-0.296-0.096c-21.9-7.102-41.428-19.6-62.104-32.83-34.732-22.224-70.646-45.208-122.522-45.208-3.404 0-6.894 0.104-10.326 0.296-47.516 2.778-69.742 23.032-97.88 48.676-14.842 13.526-30.19 27.514-49.976 39.124l-0.424 0.244c-42.706 24.104-69.212 54.082-70.908 80.194-0.842 12.98 4.938 24.218 17.182 33.4 26.636 19.972 44.478 33.022 56.284 41.658 13.11 9.588 17.068 12.48 20 15.264 2.096 1.986 4.364 4.188 6.804 6.562 24.446 23.774 65.36 63.562 128.15 63.562 38.404 0 80.898-14.8 126.17-43.902 21.324-13.878 39.882-20.286 63.38-28.4 16.156-5.578 34.468-11.902 58.992-22.404l0.396-0.164c22.88-9.404 49.896-26.564 48.66-54.932zM652.646 302.194c-4.4 2.214-8.974 4.32-13.744 6.286-22.106 9.456-39.832 15.874-54.534 20.998 8.116 15.894 13.16 35.72 13.624 57.242 0 0.010 0 0.022 0 0.030 1.126 52.374-25.288 94.896-58.996 94.976-33.71 0.078-61.95-42.314-63.076-94.686 0-0.010 0-0.018 0-0.028-0.038-1.714-0.042-3.416-0.020-5.11-20.762 9.552-41.18 16.49-61.166 20.76-0.092 1.968-0.204 3.932-0.244 5.92 0 0.016 0 0.036 0 0.050-1.938 95.412 56.602 174.39 130.754 176.402 74.15 2.014 135.828-73.7 137.772-169.11 0-0.018 0-0.038 0-0.052 0.874-43.146-10.66-82.866-30.37-113.678z" />
<glyph unicode="&#xef0a;" glyph-name="appleinc" d="M791.498 415.908c-1.294 129.682 105.758 191.876 110.542 194.966-60.152 88.020-153.85 100.078-187.242 101.472-79.742 8.074-155.596-46.948-196.066-46.948-40.368 0-102.818 45.754-168.952 44.552-86.916-1.292-167.058-50.538-211.812-128.38-90.304-156.698-23.126-388.84 64.89-515.926 43.008-62.204 94.292-132.076 161.626-129.58 64.842 2.588 89.362 41.958 167.756 41.958s100.428-41.958 169.050-40.67c69.774 1.296 113.982 63.398 156.692 125.796 49.39 72.168 69.726 142.038 70.924 145.626-1.548 0.706-136.060 52.236-137.408 207.134zM662.562 796.478c35.738 43.358 59.86 103.512 53.28 163.522-51.478-2.096-113.878-34.29-150.81-77.55-33.142-38.376-62.148-99.626-54.374-158.436 57.466-4.484 116.128 29.204 151.904 72.464z" />
<glyph unicode="&#xef0b;" glyph-name="finder" d="M569.226 181.744c-0.002 0.044-0.002 0.088-0.004 0.132 0.002-0.044 0.002-0.088 0.004-0.132zM570.596 145.462c-0.012 0.234-0.022 0.466-0.032 0.702 0.010-0.234 0.020-0.466 0.032-0.702zM569.814 163.688c-0.006 0.178-0.012 0.356-0.020 0.536 0.010-0.182 0.016-0.358 0.020-0.536zM960 960h-896c-35.2 0-64-28.8-64-64v-896c0-35.2 28.8-64 64-64h493.832c0.044 0 0.088-0.006 0.132-0.006 0.042 0 0.084 0.006 0.126 0.006h401.91c35.2 0 64 28.8 64 64v896c0 35.2-28.8 64-64 64zM192 736c0 17.672 14.328 32 32 32s32-14.328 32-32v-64c0-17.672-14.328-32-32-32s-32 14.328-32 32v64zM960 0h-375.058c-6.7 42.082-10.906 85.476-13.388 127.604 0.006-0.116 0.010-0.228 0.018-0.344-19.696-2.146-39.578-3.26-59.572-3.26-133.65 0-262.382 48.656-362.484 137.006-14.906 13.156-16.326 35.906-3.168 50.812 13.158 14.904 35.906 16.326 50.814 3.168 86.936-76.728 198.748-118.986 314.838-118.986 19.086 0 38.052 1.166 56.816 3.416-2.192 118.194 6.876 211.914 7.026 213.404 0.898 8.996-2.050 17.952-8.118 24.654-6.066 6.702-14.682 10.526-23.724 10.526h-95.174c1.384 34.614 5.082 93.814 14.958 160.188 18.864 126.76 51.994 225.77 96.152 287.812h400.064v-896zM800 640c-17.674 0-32 14.328-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64c0-17.672-14.326-32-32-32zM540.496 124.768c-3.646-0.192-7.298-0.336-10.956-0.454 3.658 0.116 7.31 0.264 10.956 0.454zM512 124c4.692 0 9.374 0.074 14.050 0.196-4.676-0.122-9.358-0.196-14.050-0.196zM539.074 196.798c0.784 0.044 1.568 0.084 2.352 0.132-0.782-0.048-1.568-0.088-2.352-0.132zM525.084 196.2c1.074 0.030 2.146 0.072 3.218 0.11-1.072-0.038-2.144-0.082-3.218-0.11zM877.65 311.818c-13.156 14.91-35.908 16.322-50.812 3.168-72.642-64.114-162.658-104.136-258.022-115.57 0.43-23.278 1.294-47.496 2.754-72.156 111.954 12.21 217.786 58.614 302.912 133.746 14.908 13.156 16.326 35.906 3.168 50.812zM571.498 127.252c-4.606-0.5-9.222-0.936-13.848-1.322 4.626 0.384 9.244 0.822 13.848 1.322zM555.488 125.758c-3.906-0.312-7.822-0.576-11.742-0.806 3.92 0.226 7.834 0.496 11.742 0.806z" />
<glyph unicode="&#xef0c;" glyph-name="android" d="M896 576c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.8 64-64 64zM128 576c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.802 64-64 64zM224 224c0-53.020 42.98-96 96-96v0-128c0-35.2 28.8-64 64-64s64 28.8 64 64v128h128v-128c0-35.2 28.8-64 64-64s64 28.8 64 64v128c53.020 0 96 42.98 96 96v352h-576v-352zM798.216 639.998c-9.716 87.884-59.004 163.792-129.62 209.646l32.024 64.046c7.904 15.806 1.496 35.028-14.31 42.932s-35.030 1.496-42.932-14.312l-32.142-64.286-8.35 3.316c-28.568 9.502-59.122 14.66-90.886 14.66-31.762 0-62.316-5.158-90.888-14.656l-8.348-3.316-32.142 64.282c-7.904 15.808-27.128 22.212-42.932 14.312-15.808-7.904-22.214-27.126-14.312-42.932l32.022-64.046c-70.616-45.852-119.904-121.762-129.622-209.644v-32h574.222v31.998h-1.784zM416 704c-17.674 0-32 14.328-32 32 0 17.648 14.288 31.958 31.93 31.996 0.032 0 0.062-0.002 0.094-0.002 0.018 0 0.036 0.002 0.052 0.002 17.638-0.042 31.924-14.35 31.924-31.996 0-17.672-14.326-32-32-32zM608 704c-17.674 0-32 14.328-32 32 0 17.646 14.286 31.954 31.924 31.996 0.016 0 0.034-0.002 0.050-0.002 0.032 0 0.064 0.002 0.096 0.002 17.64-0.038 31.93-14.348 31.93-31.996 0-17.672-14.326-32-32-32z" />
<glyph unicode="&#xef0d;" glyph-name="windows" d="M412.23 448.086c-47.708 24.518-94.086 36.958-137.88 36.958-5.956 0-11.952-0.18-17.948-0.708-55.88-4.624-106.922-19.368-139.75-30.828-8.708-3.198-17.634-6.576-26.83-10.306l-89.822-311.394c61.702 22.832 116.292 33.938 166.27 33.938 80.846 0 139.528-30.208 187.992-61.304 22.962 77.918 78.044 266.090 94.482 322.324-11.95 7.284-24.076 14.57-36.514 21.32zM528.348 368.93l-90.446-314.148c26.832-15.372 117.098-64.050 186.212-64.050 55.792 0 118.252 14.296 190.834 43.792l86.356 301.976c-58.632-18.922-114.876-28.52-167.464-28.52-95.95 0-163.114 31.098-205.492 60.95zM292.822 591.21c77.118-0.798 134.152-30.208 181.416-60.502l92.752 317.344c-19.546 11.196-70.806 39.094-107.858 48.6-24.386 5.684-50.020 8.616-77.204 8.616-51.796-0.976-108.388-13.946-172.888-39.8l-88.44-310.596c64.808 24.436 120.644 36.34 172.086 36.34 0.046-0.002 0.136-0.002 0.136-0.002zM1024 761.876c-58.814-22.832-116.208-34.466-171.028-34.466-91.686 0-159.292 31.802-203.094 62.366l-91.95-318.236c61.746-39.708 128.29-59.878 198.122-59.878 56.948 0 115.94 13.68 175.462 40.688l-0.182 2.222 3.734 0.886 88.936 306.418z" />
<glyph unicode="&#xef0e;" glyph-name="windows8" d="M0.35 448l-0.35 312.074 384 52.144v-364.218zM448 821.518l511.872 74.482v-448h-511.872zM959.998 384l-0.126-448-511.872 72.016v375.984zM384 16.164l-383.688 52.594-0.020 315.242h383.708z" />
<glyph unicode="&#xef0f;" glyph-name="soundcloud" d="M891.96 445.796c-18.086 0-35.348-3.52-51.064-9.856-10.506 114.358-110.29 204.060-232 204.060-29.786 0-58.682-5.63-84.318-15.164-9.96-3.702-12.578-7.52-12.578-14.916v-402.714c0-7.766 6.24-14.234 14.124-14.996 0.336-0.034 363.536-0.21 365.89-0.21 72.904 0 131.986 56.816 131.986 126.894s-59.134 126.902-132.040 126.902zM400 192h32l16 224.22-16 223.78h-32l-16-223.78zM304 192h-32l-16 162.75 16 157.25h32l16-160zM144 192h32l16 128-16 128h-32l-16-128zM16 256h32l16 64-16 64h-32l-16-64z" />
<glyph unicode="&#xef10;" glyph-name="soundcloud2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM176 256h-32l-16 96 16 96h32l16-96-16-96zM304 256h-32l-16 128 16 128h32l16-128-16-128zM432 256h-32l-16 192 16 192h32l16-192-16-192zM825.2 256c-2 0-301.2 0.2-301.4 0.2-6.4 0.6-11.6 6.2-11.8 12.8v345.2c0 6.4 2.2 9.6 10.4 12.8 21.2 8.2 45 13 69.6 13 100.2 0 182.4-76.8 191.2-175 13 5.4 27.2 8.4 42 8.4 60 0 108.8-48.8 108.8-108.8s-48.8-108.6-108.8-108.6z" />
<glyph unicode="&#xef11;" glyph-name="skype" d="M425.6 922.6c-1.6 1-3.4 1.8-5 2.6-1.8-0.4-3.4-0.6-5.2-1l10.2-1.6zM36.8 539c-0.4-1.8-0.6-3.6-0.8-5.2 1-1.6 1.6-3.2 2.6-4.8l-1.8 10zM986.8 357.4c0.4 1.8 0.6 3.6 1 5.4-1 1.6-1.6 3.2-2.6 4.8l1.6-10.2zM592-23c1.6-1 3.4-1.8 5-2.6 1.8 0.4 3.6 0.6 5.4 0.8l-10.4 1.8zM987.8 362.8c-0.4-1.8-0.6-3.6-1-5.4l-1.8 10.4c1-1.8 1.8-3.4 2.8-5 5.2 28.8 8 58.2 8 87.6 0 65.2-12.8 128.6-38 188.2-24.4 57.6-59.2 109.4-103.6 153.8s-96.2 79.2-153.6 103.6c-59.6 25.2-123 38-188.2 38-30.8 0-61.6-2.8-91.6-8.6 0 0-0.2 0-0.2 0 1.6-0.8 3.4-1.6 5-2.6l-10.2 1.6c1.8 0.4 3.4 0.6 5.2 1-41.2 21.8-87.4 33.6-134.2 33.6-76.4 0-148.4-29.8-202.4-83.8s-83.8-126-83.8-202.4c0-48.6 12.6-96.6 36-138.8 0.4 1.8 0.6 3.6 0.8 5.2l1.8-10.2c-1 1.6-1.8 3.2-2.6 4.8-4.8-27.4-7.2-55.4-7.2-83.4 0-65.2 12.8-128.6 38-188.2 24.4-57.6 59.2-109.2 103.6-153.6s96.2-79.2 153.8-103.6c59.6-25.2 123-38 188.2-38 28.4 0 56.8 2.6 84.6 7.6-1.6 1-3.2 1.8-5 2.6l10.4-1.8c-1.8-0.4-3.6-0.6-5.4-0.8 42.8-24.2 91.4-37.2 140.8-37.2 76.4 0 148.4 29.8 202.4 83.8s83.8 126 83.8 202.4c-0.2 48.6-12.8 96.6-36.4 139.2zM514.2 154.2c-171.8 0-248.6 84.4-248.6 147.8 0 32.4 24 55.2 57 55.2 73.6 0 54.4-105.6 191.6-105.6 70.2 0 109 38.2 109 77.2 0 23.4-11.6 49.4-57.8 60.8l-152.8 38.2c-123 30.8-145.4 97.4-145.4 160 0 129.8 122.2 178.6 237 178.6 105.8 0 230.4-58.4 230.4-136.4 0-33.4-29-52.8-62-52.8-62.8 0-51.2 86.8-177.6 86.8-62.8 0-97.4-28.4-97.4-69s49.6-53.6 92.6-63.4l113.2-25.2c123.8-27.6 155.2-100 155.2-168 0-105.4-81-184.2-244.4-184.2z" />
<glyph unicode="&#xef12;" glyph-name="reddit" d="M256 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM643.112 183.222c16.482 12.986 40.376 10.154 53.364-6.332s10.152-40.378-6.334-53.366c-45.896-36.158-115.822-59.524-178.142-59.524-62.322 0-132.248 23.366-178.144 59.522-16.486 12.99-19.32 36.882-6.332 53.368 12.99 16.482 36.882 19.318 53.366 6.332 26.422-20.818 78.722-43.222 131.11-43.222s104.688 22.404 131.112 43.222zM1024 448c0 70.692-57.308 128-128 128-48.116 0-89.992-26.57-111.852-65.82-65.792 35.994-145.952 59.246-233.28 64.608l76.382 171.526 146.194-42.2c13.152-37.342 48.718-64.114 90.556-64.114 53.020 0 96 42.98 96 96s-42.98 96-96 96c-36.56 0-68.342-20.442-84.554-50.514l-162.906 47.024c-18.224 5.258-37.538-3.722-45.252-21.052l-103.77-233.026c-85.138-5.996-163.262-29.022-227.636-64.236-21.864 39.25-63.766 65.804-111.882 65.804-70.692 0-128-57.308-128-128 0-52.312 31.402-97.254 76.372-117.102-8.070-24.028-12.372-49.104-12.372-74.898 0-176.73 200.576-320 448-320 247.422 0 448 143.27 448 320 0 25.792-4.3 50.862-12.368 74.886 44.97 19.85 76.368 64.802 76.368 117.114zM864 772c19.882 0 36-16.118 36-36s-16.118-36-36-36-36 16.118-36 36 16.118 36 36 36zM64 448c0 35.29 28.71 64 64 64 25.508 0 47.572-15.004 57.846-36.646-33.448-25.366-61.166-54.626-81.666-86.738-23.524 9.47-40.18 32.512-40.18 59.384zM512 12c-205.45 0-372 109.242-372 244s166.55 244 372 244c205.45 0 372-109.242 372-244s-166.55-244-372-244zM919.82 388.616c-20.5 32.112-48.218 61.372-81.666 86.738 10.276 21.642 32.338 36.646 57.846 36.646 35.29 0 64-28.71 64-64 0-26.872-16.656-49.914-40.18-59.384z" />
<glyph unicode="&#xef13;" glyph-name="hackernews" d="M0 960v-1024h1024v1024h-1024zM544 376v-216h-64v216l-175 328h72.6l134.4-252 134.4 252h72.6l-175-328z" />
<glyph unicode="&#xef14;" glyph-name="wikipedia" d="M966.8 726.4c0-3.2-1-6.2-3-9-2-2.6-4.2-4-6.8-4-20-2-36.4-8.4-49-19.2-12.8-10.8-25.8-31.8-39.2-62.4l-206.4-465.4c-1.4-4.4-5.2-6.4-11.4-6.4-4.8 0-8.6 2.2-11.4 6.4l-115.8 242-133.2-242c-2.8-4.4-6.4-6.4-11.4-6.4-6 0-9.8 2.2-11.8 6.4l-202.6 465.2c-12.6 28.8-26 49-40 60.4s-33.6 18.6-58.6 21.2c-2.2 0-4.2 1.2-6 3.4-2 2.2-2.8 4.8-2.8 7.8 0 7.6 2.2 11.4 6.4 11.4 18 0 37-0.8 56.8-2.4 18.4-1.6 35.6-2.4 51.8-2.4 16.4 0 36 0.8 58.4 2.4 23.4 1.6 44.2 2.4 62.4 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.4-11.2-4-11.2c-18-1.4-32.4-6-42.8-13.8s-15.6-18-15.6-30.8c0-6.4 2.2-14.6 6.4-24.2l167.4-378.4 95.2 179.6-88.6 185.8c-16 33.2-29 54.6-39.2 64.2s-25.8 15.4-46.6 17.6c-2 0-3.6 1.2-5.4 3.4s-2.6 4.8-2.6 7.8c0 7.6 1.8 11.4 5.6 11.4 18 0 34.6-0.8 49.8-2.4 14.6-1.6 30-2.4 46.6-2.4 16.2 0 33.2 0.8 51.4 2.4 18.6 1.6 37 2.4 55 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.2-11.2-4-11.2c-36.2-2.4-54.2-12.8-54.2-30.8 0-8 4.2-20.6 12.6-37.6l58.6-119 58.4 108.8c8 15.4 12.2 28.4 12.2 38.8 0 24.8-18 38-54.2 39.6-3.2 0-4.8 3.8-4.8 11.2 0 2.8 0.8 5.2 2.4 7.6s3.2 3.6 4.8 3.6c13 0 28.8-0.8 47.8-2.4 18-1.6 33-2.4 44.6-2.4 8.4 0 20.6 0.8 36.8 2 20.4 1.8 37.6 2.8 51.4 2.8 3.2 0 4.8-3.2 4.8-9.6 0-8.6-3-13-8.8-13-21-2.2-38-8-50.8-17.4s-28.8-30.8-48-64.4l-78.2-143.2 105.2-214.4 155.4 361.4c5.4 13.2 8 25.4 8 36.4 0 26.4-18 40.4-54.2 42.2-3.2 0-4.8 3.8-4.8 11.2 0 7.6 2.4 11.4 7.2 11.4 13.2 0 28.8-0.8 47-2.4 16.8-1.6 30.8-2.4 42-2.4 12 0 25.6 0.8 41.2 2.4 16.2 1.6 30.8 2.4 43.8 2.4 4 0 6-3.2 6-9.6z" />
<glyph unicode="&#xef15;" glyph-name="linkedin" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 128h-128v448h128v-448zM320 640c-35.4 0-64 28.6-64 64s28.6 64 64 64c35.4 0 64-28.6 64-64s-28.6-64-64-64zM832 128h-128v256c0 35.4-28.6 64-64 64s-64-28.6-64-64v-256h-128v448h128v-79.4c26.4 36.2 66.8 79.4 112 79.4 79.6 0 144-71.6 144-160v-288z" />
<glyph unicode="&#xef16;" glyph-name="linkedin2" d="M384 576h177.106v-90.782h2.532c24.64 44.194 84.958 90.782 174.842 90.782 186.946 0 221.52-116.376 221.52-267.734v-308.266h-184.61v273.278c0 65.184-1.334 149.026-96.028 149.026-96.148 0-110.82-70.986-110.82-144.292v-278.012h-184.542v576zM64 576h192v-576h-192v576zM256 736c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96z" />
<glyph unicode="&#xef17;" glyph-name="lastfm" d="M451.6 193.8l-37.6 102c0 0-61-68-152.4-68-81 0-138.4 70.4-138.4 183 0 144.2 72.8 195.8 144.2 195.8 103.2 0 136-66.8 164.2-152.4l37.6-117.2c37.6-113.8 108-205.2 310.8-205.2 145.4 0 244 44.6 244 161.8 0 95-54 144.2-154.8 167.8l-75 16.4c-51.6 11.8-66.8 32.8-66.8 68 0 39.8 31.6 63.4 83.2 63.4 56.4 0 86.8-21.2 91.4-71.6l117.2 14c-9.4 105.6-82.2 149-201.8 149-105.6 0-208.8-39.8-208.8-167.8 0-79.8 38.8-130.2 136-153.6l79.8-18.8c59.8-14 79.8-38.8 79.8-72.8 0-43.4-42.2-61-122-61-118.4 0-167.8 62.2-195.8 147.8l-38.8 117.2c-49 152.6-127.6 208.8-283.6 208.8-172.4 0-264-109-264-294.4 0-178.2 91.4-274.4 255.8-274.4 132.4 0 195.8 62.2 195.8 62.2v0z" />
<glyph unicode="&#xef18;" glyph-name="lastfm2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM746.6 199.2c-177.6 0-239.2 80-272 179.6l-32.8 102.6c-24.6 75-53.4 133.4-143.6 133.4-62.6 0-126.2-45.2-126.2-171.4 0-98.6 50.2-160.2 121.2-160.2 80 0 133.4 59.6 133.4 59.6l32.8-89.2c0 0-55.4-54.4-171.4-54.4-144 0-224 84-224 240 0 162.2 80 257.6 231 257.6 136.6 0 205.2-49.2 248.4-182.6l33.8-102.6c24.6-75 67.8-129.4 171.4-129.4 69.8 0 106.8 15.4 106.8 53.4 0 29.8-17.4 51.4-69.8 63.6l-69.8 16.4c-85.2 20.6-119 64.6-119 134.4 0 111.8 90.4 146.8 182.6 146.8 104.6 0 168.4-38 176.6-130.4l-102.6-12.4c-4.2 44.2-30.8 62.6-80 62.6-45.2 0-72.8-20.6-72.8-55.4 0-30.8 13.4-49.2 58.4-59.6l65.6-14.4c88.2-20.6 135.4-63.6 135.4-146.8 0-102.2-86.2-141.2-213.4-141.2z" />
<glyph unicode="&#xef19;" glyph-name="delicious" d="M0 960v-1024h1024v1024h-1024zM512 0v448h-448v448h448v-448h448v-448h-448z" />
<glyph unicode="&#xef1a;" glyph-name="stumbleupon" d="M512 640c-35.2 0-64-28.8-64-64v-256c0-105.8-86.2-192-192-192s-192 86.2-192 192v128h128v-128c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 105.8 86.2 192 192 192s192-86.2 192-178v-62l-82-24-46 24v62c0 21.2-28.8 50-64 50zM960 320c0-105.8-86.2-192-192-192s-192 86.2-192 206v124l46-24 82 24v-124c0-49.2 28.8-78 64-78s64 28.8 64 64v128h128v-128z" />
<glyph unicode="&#xef1b;" glyph-name="stumbleupon2" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM512 640c-35.29 0-64-28.71-64-64v-256c0-105.872-86.13-192-192-192s-192 86.128-192 192v128h128v-128c0-35.29 28.71-64 64-64s64 28.71 64 64v256c0 105.87 86.13 192 192 192s192-86.13 192-178v-62l-82-24-46 24v62c0 21.29-28.71 50-64 50zM960 320c0-105.872-86.13-192-192-192s-192 86.128-192 206v124l46-24 82 24v-124c0-49.29 28.71-78 64-78s64 28.71 64 64v128h128v-128z" />
<glyph unicode="&#xef1c;" glyph-name="stackoverflow" d="M1024 320v-384h-1024v384h128v-256h768v256zM192 256h640v-128h-640zM207.152 394.534l27.698 124.964 624.832-138.496-27.698-124.964zM279.658 651.442l54.092 116.006 580.032-270.464-54.092-116.006zM991.722 598.524l-77.922-101.55-507.746 389.608 56.336 73.418h58.244z" />
<glyph unicode="&#xef1d;" glyph-name="pinterest" d="M512 891.6c-245 0-443.6-198.6-443.6-443.6 0-188 117-348.4 282-413-3.8 35-7.4 89 1.6 127.2 8 34.6 52 220.4 52 220.4s-13.2 26.6-13.2 65.8c0 61.6 35.8 107.8 80.2 107.8 37.8 0 56.2-28.4 56.2-62.4 0-38-24.2-95-36.8-147.6-10.6-44.2 22-80.2 65.6-80.2 78.8 0 139.4 83.2 139.4 203.2 0 106.2-76.4 180.4-185.2 180.4-126.2 0-200.2-94.6-200.2-192.6 0-38.2 14.6-79 33-101.2 3.6-4.4 4.2-8.2 3-12.8-3.4-14-10.8-44.2-12.4-50.4-2-8.2-6.4-9.8-14.8-6-55.4 25.8-90 106.8-90 171.8 0 140 101.6 268.4 293 268.4 153.8 0 273.4-109.6 273.4-256.2 0-152.8-96.4-276-230.2-276-45 0-87.2 23.4-101.6 51 0 0-22.2-84.6-27.6-105.4-10-38.6-37-86.8-55.2-116.2 41.6-12.8 85.6-19.8 131.4-19.8 245 0 443.6 198.6 443.6 443.6 0 245.2-198.6 443.8-443.6 443.8z" />
<glyph unicode="&#xef1e;" glyph-name="pinterest2" d="M512 960c-282.4 0-512-229.6-512-512s229.6-512 512-512 512 229.6 512 512-229.6 512-512 512zM512 4.4c-45.8 0-89.8 7-131.4 19.8 18 29.4 45.2 77.8 55.2 116.2 5.4 20.8 27.6 105.4 27.6 105.4 14.4-27.6 56.8-51 101.6-51 133.8 0 230.2 123 230.2 276 0 146.6-119.6 256.2-273.4 256.2-191.4 0-293-128.6-293-268.4 0-65 34.6-146 90-171.8 8.4-4 12.8-2.2 14.8 6 1.4 6.2 9 36.2 12.4 50.4 1 4.4 0.6 8.4-3 12.8-18.4 22.2-33 63.2-33 101.2 0 97.8 74 192.6 200.2 192.6 109 0 185.2-74.2 185.2-180.4 0-120-60.6-203.2-139.4-203.2-43.6 0-76.2 36-65.6 80.2 12.6 52.8 36.8 109.6 36.8 147.6 0 34-18.2 62.4-56.2 62.4-44.6 0-80.2-46-80.2-107.8 0-39.2 13.2-65.8 13.2-65.8s-44-185.8-52-220.4c-9-38.4-5.4-92.2-1.6-127.2-165 64.4-282 224.8-282 412.8 0 245 198.6 443.6 443.6 443.6s443.6-198.6 443.6-443.6c0-245-198.6-443.6-443.6-443.6z" />
<glyph unicode="&#xef1f;" glyph-name="xing" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM312.6 294h-110.6c-6.6 0-11.6 3-14.4 7.6-3 4.8-3 10.8 0 17l117.6 207.6c0.2 0.2 0.2 0.4 0 0.6l-74.8 129.6c-3 6.2-3.6 12.2-0.6 17 2.8 4.6 8.4 7 15.2 7h110.8c17 0 25.4-11 30.8-20.8 0 0 75.6-132 76.2-132.8-4.4-8-119.6-211.4-119.6-211.4-6-10.4-14-21.4-30.6-21.4zM836.4 807.8l-245.2-433.6c-0.2-0.2-0.2-0.6 0-0.8l156.2-285.2c3-6.2 3.2-12.4 0.2-17.2-2.8-4.6-8-7-14.8-7h-110.6c-17 0-25.4 11.2-31 21 0 0-157 288-157.4 288.8 7.8 13.8 246.4 437 246.4 437 6 10.6 13.2 21 29.6 21h112.2c6.6 0 12-2.6 14.8-7 2.8-4.6 2.8-10.8-0.4-17z" />
<glyph unicode="&#xef20;" glyph-name="xing2" d="M155.6 757.8c-8.8 0-16.4-3.2-20.2-9.2-3.8-6.4-3.2-14.4 0.8-22.6l99.8-172.8c0.2-0.4 0.2-0.6 0-0.8l-156.8-277.2c-4-8.2-3.8-16.4 0-22.6 3.8-6 10.4-10 19.2-10h147.6c22 0 32.8 15 40.2 28.6 0 0 153.4 271.4 159.4 282-0.6 1-101.6 177-101.6 177-7.4 13-18.4 27.6-41.2 27.6h-147.2zM776 960c-22 0-31.6-13.8-39.6-28.2 0 0-318.2-564.2-328.6-582.8 0.6-1 209.8-385 209.8-385 7.4-13 18.6-28.2 41.2-28.2h147.6c8.8 0 15.8 3.4 19.6 9.4 4 6.4 3.8 14.6-0.4 22.8l-208 380.6c-0.2 0.4-0.2 0.6 0 1l327 578.2c4 8.2 4.2 16.4 0.4 22.8-3.8 6-10.8 9.4-19.6 9.4h-149.4z" />
<glyph unicode="&#xef21;" glyph-name="flattr" d="M367.562 960c-243.358 0-367.562-140.162-367.562-401.856v0-549.034l238.39 238.628v278.896c0 108.416 28.73 177.406 125.118 192.894v0c33.672 6.584 103.75 4.278 148.306 4.278v0-165.596c0-1.51 0.208-4.206 0.594-5.586v0c1.87-6.704 7.93-11.616 15.116-11.63v0c4.062-0.008 7.868 2.104 11.79 5.97v0l413.122 412.974-584.874 0.062zM785.61 648.254v-278.89c0-108.414-28.736-177.414-125.116-192.894v0c-33.672-6.582-103.756-4.278-148.312-4.278v0 165.594c0 1.5-0.206 4.204-0.594 5.582v0c-1.864 6.712-7.922 11.622-15.112 11.63v0c-4.064 0.008-7.866-2.112-11.79-5.966v0l-413.124-412.966 584.874-0.066c243.354 0 367.564 140.168 367.564 401.852v0 549.028l-238.39-238.626z" />
<glyph unicode="&#xef22;" glyph-name="foursquare" d="M851.564 869.91c-12.060 16.404-31.204 26.090-51.564 26.090h-608c-35.346 0-64-28.654-64-64v-768c0-25.884 15.592-49.222 39.508-59.128 7.918-3.28 16.234-4.874 24.478-4.874 16.656 0 33.026 6.504 45.268 18.748l237.256 237.254h165.49c27.992 0 52.736 18.192 61.086 44.91l160 512c6.074 19.432 2.538 40.596-9.522 57zM672.948 640h-224.948c-35.346 0-64-28.654-64-64s28.654-64 64-64h184.948l-40-128h-144.948c-16.974 0-33.252-6.742-45.254-18.746l-146.746-146.744v549.49h456.948l-40-128z" />
<glyph unicode="&#xef23;" glyph-name="yelp" d="M608.876 306.532c-17.282-17.426-2.668-49.128-2.668-49.128l130.090-217.218c0 0 21.36-28.64 39.864-28.64 18.59 0 36.954 15.27 36.954 15.27l102.844 147.008c0 0 10.36 18.546 10.598 34.792 0.372 23.106-34.454 29.434-34.454 29.434l-243.488 78.192c-0.002-0.004-23.858 6.328-39.74-9.71zM596.532 416.016c12.46-21.128 46.828-14.972 46.828-14.972l242.938 71.006c0 0 33.106 13.466 37.832 31.418 4.64 17.954-5.46 39.622-5.46 39.622l-116.098 136.752c0 0-10.062 17.292-30.938 19.032-23.016 1.958-37.18-25.898-37.18-25.898l-137.27-216.010c0-0.004-12.134-21.516-0.652-40.95zM481.754 500.232c28.608 7.044 33.148 48.604 33.148 48.604l-1.944 345.87c0 0-4.314 42.666-23.486 54.232-30.070 18.242-38.982 8.718-47.596 7.444l-201.696-74.944c0 0-19.754-6.536-30.042-23.018-14.69-23.352 14.928-57.544 14.928-57.544l209.644-285.756c0 0 20.69-21.396 47.044-14.888zM431.944 360.262c0.722 26.676-32.030 42.7-32.030 42.7l-216.796 109.524c0 0-32.126 13.246-47.722 4.016-11.95-7.060-22.536-19.84-23.572-31.134l-14.12-173.812c0 0-2.116-30.114 5.69-43.82 11.054-19.442 47.428-5.902 47.428-5.902l253.096 55.942c9.832 6.61 27.074 7.204 28.026 42.486zM494.88 266.458c-21.726 11.156-47.724-11.95-47.724-11.95l-169.468-186.566c0 0-21.144-28.528-15.768-46.050 5.066-16.418 13.454-24.578 25.318-30.328l170.192-53.726c0 0 20.634-4.286 36.258 0.242 22.18 6.43 18.094 41.152 18.094 41.152l3.848 252.602c-0.002-0.002-0.868 24.334-20.75 34.624z" />
<glyph unicode="&#xef24;" glyph-name="paypal" d="M930 651.4c-47.8-212.2-195.4-324.2-428-324.2h-77.4l-53.8-341.6h-64.8l-3.4-22c-2.2-14.6 9-27.6 23.6-27.6h165.6c19.6 0 36.2 14.2 39.4 33.6l1.6 8.4 31.2 197.8 2 10.8c3 19.4 19.8 33.6 39.4 33.6h24.6c160.4 0 286 65.2 322.8 253.6 13.8 71.6 8.6 132.4-22.8 177.6zM831 882.8c-47.4 54-133.2 77.2-242.8 77.2h-318.2c-22.4 0-41.6-16.2-45-38.4l-132.6-840.4c-2.6-16.6 10.2-31.6 27-31.6h196.6l49.4 313-1.6-9.8c3.4 22.2 22.4 38.4 44.8 38.4h93.4c183.4 0 327 74.4 369 290 1.2 6.4 2.4 12.6 3.2 18.6 12.4 79.6 0 134-43.2 183z" />
<glyph unicode="&#xef25;" glyph-name="chrome" d="M258.278 513.458l-146.532 253.802c93.818 117.464 238.234 192.74 400.254 192.74 187.432 0 351.31-100.736 440.532-251h-417.77c-7.504 0.65-15.092 1-22.762 1-121.874 0-224.578-83.644-253.722-196.542zM695.306 635h293.46c22.74-57.93 35.234-121.004 35.234-187 0-280.826-226.1-508.804-506.186-511.926l209.394 362.678c29.48 42.378 46.792 93.826 46.792 149.248 0 73.17-30.164 139.42-78.694 187zM326 448c0 102.56 83.44 186 186 186s186-83.44 186-186c0-102.56-83.44-186-186-186s-186 83.44-186 186zM582.182 195.558l-146.578-253.878c-246.532 36.884-435.604 249.516-435.604 506.32 0 91.218 23.884 176.846 65.696 251.024l209.030-362.054c41.868-89.112 132.476-150.97 237.274-150.97 24.3 0 47.836 3.34 70.182 9.558z" />
<glyph unicode="&#xef26;" glyph-name="firefox" d="M1022.526 625.86l-11.86-76.080c0 0-16.954 140.856-37.732 193.514-31.846 80.688-46.014 80.040-46.108 79.922 21.33-54.204 17.462-83.324 17.462-83.324s-37.792 102.998-137.712 135.768c-110.686 36.282-170.57 26.364-177.488 24.486-1.050 0.008-2.064 0.010-3.030 0.010 0.818-0.062 1.612-0.146 2.426-0.212-0.034-0.020-0.090-0.042-0.082-0.052 0.45-0.548 122.306-21.302 143.916-50.996 0 0-51.76 0-103.272-14.842-2.328-0.666 189.524-23.964 228.746-215.674 0 0-21.030 43.876-47.040 51.328 17.106-52.036 12.714-150.776-3.576-199.85-2.096-6.312-4.24 27.282-36.328 41.75 10.28-73.646-0.616-190.456-51.708-222.632-3.982-2.504 32.030 115.31 7.242 69.762-142.708-218.802-311.404-100.972-387.248-49.11 38.866-8.462 112.654 1.318 145.314 25.612 0.042 0.030 0.078 0.056 0.118 0.086 35.468 24.252 56.472 41.964 75.334 37.772 18.874-4.214 31.438 14.726 16.78 31.53-14.676 16.838-50.314 39.978-98.524 27.366-34-8.904-76.134-46.522-140.448-8.432-49.364 29.25-54.012 53.546-54.45 70.376 1.218 5.966 2.754 11.536 4.576 16.624 5.682 15.87 22.912 20.658 32.494 24.438 16.256-2.792 30.262-7.862 44.968-15.406 0.19 4.894 0.252 11.39-0.018 18.76 1.41 2.802 0.538 11.252-1.722 21.58-1.302 10.308-3.42 20.974-6.752 30.692 0.012 0.002 0.020 0.010 0.030 0.014 0.056 0.018 0.108 0.040 0.156 0.070 0.078 0.044 0.146 0.112 0.208 0.19 0.012 0.020 0.030 0.034 0.044 0.052 0.082 0.124 0.154 0.272 0.198 0.466 1.020 4.618 12.022 13.524 25.718 23.1 12.272 8.58 26.702 17.696 38.068 24.752 10.060 6.248 17.72 10.882 19.346 12.098 0.618 0.466 1.358 1.012 2.164 1.636 0.15 0.116 0.3 0.232 0.454 0.354 0.094 0.074 0.19 0.148 0.286 0.226 5.41 4.308 13.484 12.448 15.178 29.578 0.004 0.042 0.010 0.080 0.012 0.122 0.050 0.504 0.092 1.014 0.13 1.534 0.028 0.362 0.050 0.726 0.072 1.096 0.014 0.284 0.032 0.566 0.044 0.856 0.030 0.674 0.050 1.364 0.060 2.064 0 0.040 0.002 0.076 0.004 0.116 0.022 1.658-0.006 3.386-0.104 5.202-0.054 1.014-0.126 1.93-0.298 2.762-0.008 0.044-0.018 0.092-0.028 0.136-0.018 0.082-0.036 0.164-0.058 0.244-0.036 0.146-0.076 0.292-0.122 0.43-0.006 0.018-0.010 0.032-0.016 0.046-0.052 0.16-0.112 0.314-0.174 0.464-0.004 0.006-0.004 0.010-0.006 0.016-1.754 4.108-8.32 5.658-35.442 6.118-0.026 0.002-0.050 0.002-0.076 0.002v0c-11.066 0.188-25.538 0.194-44.502 0.118-33.25-0.134-51.628 32.504-57.494 45.132 8.040 44.46 31.276 76.142 69.45 97.626 0.722 0.406 0.58 0.742-0.274 0.978 7.464 4.514-90.246 0.124-135.186-57.036-39.888 9.914-74.654 9.246-104.616 2.214-5.754 0.162-12.924 0.88-21.434 2.652-19.924 18.056-48.448 51.402-49.976 91.208 0 0-0.092-0.072-0.252-0.204-0.020 0.382-0.056 0.76-0.072 1.142 0 0-60.716-46.664-51.628-173.882-0.022-2.036-0.064-3.986-0.12-5.874-16.432-22.288-24.586-41.020-25.192-45.156-14.56-29.644-29.334-74.254-41.356-141.98 0 0 8.408 26.666 25.284 56.866-12.412-38.022-22.164-97.156-16.436-185.856 0 0 1.514 19.666 6.874 47.994 4.186-55.010 22.518-122.924 68.858-202.788 88.948-153.32 225.67-230.74 376.792-242.616 26.836-2.212 54.050-2.264 81.424-0.186 2.516 0.178 5.032 0.364 7.55 0.574 30.964 2.174 62.134 6.852 93.238 14.366 425.172 102.798 378.942 616.198 378.942 616.198z" />
<glyph unicode="&#xef27;" glyph-name="IE" d="M734.202 331.17h236.050c1.82 16.37 2.548 33.098 2.548 50.196 0 80.224-21.534 155.468-59.124 220.266 38.88 103.308 37.492 190.988-14.556 243.39-49.496 49.28-182.29 41.28-332.412-25.198-11.104 0.84-22.318 1.272-33.638 1.272-206.048 0-378.926-141.794-426.708-332.85 64.638 82.754 132.638 142.754 223.478 186.448-8.26-7.74-56.454-55.652-64.56-63.764-239.548-239.478-315.090-552.306-233.806-633.604 61.786-61.774 173.758-51.342 302.376 11.648 59.806-30.458 127.5-47.63 199.218-47.63 193.134 0 356.804 124.316 416.090 297.448h-237.868c-32.734-60.382-96.748-101.48-170.218-101.48-73.468 0-137.484 41.098-170.216 101.48-14.55 27.274-22.914 58.554-22.914 91.656v0.722h386.26zM348.302 447.196c5.456 97.11 86.2 174.584 184.766 174.584s179.312-77.472 184.766-174.584h-369.532zM896.966 796.192c33.526-33.88 32.688-96.214 4.012-174.022-49.136 74.908-120.518 133.936-204.792 167.64 90.106 38.638 163.406 43.756 200.78 6.382zM93.482-7.256c-42.782 42.796-29.884 132.618 25.23 240.832 34.308-96.27 101.156-177.090 187.336-229.154-95.43-43.318-173.536-50.674-212.566-11.678z" />
<glyph unicode="&#xef28;" glyph-name="edge" d="M15.4 505.4c30 236.8 191.6 451.6 481.2 454.6 174.8-3.4 318.6-82.6 404.2-233.6 43-78.8 56.4-161.6 59.2-253v-107.4h-642.6c3-265 390-256 556.6-139.2v-215.8c-97.6-58.6-319-111-490.4-43.6-146 54.8-250 207.6-249.4 354.6-4.8 190.6 94.8 316.8 249.4 388.6-32.8-40.6-57.8-85.4-70.8-163h362.8c0 0 21.2 216.8-205.4 216.8-213.6-7.4-367.6-131.6-454.8-259v0z" />
<glyph unicode="&#xef29;" glyph-name="safari" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM958.4 487.2l-1 10.6c0.2-3.6 0.6-7 1-10.6zM888.4 691.2l-7.2 10.8c2.4-3.6 4.8-7.2 7.2-10.8zM860.6 729.4l-4.4 5.4c1.6-1.8 3-3.6 4.4-5.4zM798.6 792.4l-5.4 4.4c2-1.6 3.6-3 5.4-4.4zM766 817.2l-10.8 7.2c3.6-2.4 7.2-4.8 10.8-7.2zM561.8 893.2l-10.8 1c3.6-0.2 7.2-0.6 10.8-1zM472.8 894.4l-10.8-1c3.6 0.2 7.2 0.6 10.8 1zM268.8 824.4l-10.8-7.2c3.6 2.4 7.2 4.8 10.8 7.2zM230.6 796.6l-5.2-4.2c1.8 1.4 3.4 2.8 5.2 4.2zM167.6 734.6l-4.4-5.4c1.6 1.8 3 3.6 4.4 5.4zM142.8 702l-7.2-10.8c2.4 3.6 4.8 7.2 7.2 10.8zM66.8 497.8l-1-10.8c0.2 3.6 0.6 7.2 1 10.8zM65.6 408.8l1-10.8c-0.2 3.6-0.6 7.2-1 10.8zM135.6 205l7.2-10.8c-2.4 3.4-4.8 7-7.2 10.8zM144 192.4l79.8 53.4-8.8 13.4-79.8-53.4c-36.2 56.2-60 120.8-68 190.4l47.8 4.8-1.6 16-47.8-4.8c-0.8 9.2-1.2 18.6-1.4 28h96v16h-96c0.2 9.4 0.6 18.6 1.4 28l47.8-4.6 1.6 16-47.8 4.6c8 69.6 32 134.2 68.2 190.4l79.8-53.4 8.8 13.4-80 53c5.4 7.6 10.8 15.2 16.6 22.4l37-30.4 10.2 12.4-37 30.4c6 7.2 12.4 14 18.8 20.8l67.8-67.8 11.4 11.4-67.8 67.8c6.8 6.4 13.6 12.8 20.6 18.8l30.4-37.2 12.4 10.2-30.4 37c7.4 5.8 14.8 11.4 22.4 16.8l53.4-79.8 13.4 8.8-53.4 79.8c56.2 36.2 120.8 60 190.4 68l4.8-47.8 16 1.6-4.8 47.8c9.2 0.8 18.6 1.2 28 1.4v-96h16v96c9.4-0.2 18.6-0.6 28-1.4l-4.6-47.8 16-1.6 4.6 47.8c69.6-8 134.2-32 190.4-68.2l-53.4-79.8 13.4-8.8 53.4 79.8c7.6-5.4 15.2-10.8 22.4-16.6l-30.4-37 12.4-10.2 30.4 37c7.2-6 14-12.4 20.8-18.8l-25.6-25-350-233.4-233.4-350-25-25c-6.4 6.8-12.8 13.6-18.8 20.6l37 30.4-10.2 12.4-37-30.4c-5.8 7.2-11.2 14.8-16.6 22.4zM167.6 161.4c-1.4 1.8-2.8 3.4-4.2 5.2l4.2-5.2zM225.4 103.6l5.2-4.2c-1.8 1.4-3.4 2.8-5.2 4.2zM258 79l10.8-7.2c-3.6 2.2-7.2 4.6-10.8 7.2zM462.2 2.8l10.8-1c-3.6 0.2-7.2 0.6-10.8 1zM551.2 1.6l10.6 1c-3.6-0.2-7-0.6-10.6-1zM755.2 71.6l10.8 7.2c-3.6-2.4-7.2-4.8-10.8-7.2zM793.4 99.4l5.4 4.4c-1.8-1.6-3.6-3-5.4-4.4zM828.4 130.8l0.8 0.8c-0.2-0.2-0.6-0.6-0.8-0.8zM856.4 161.4l4.4 5.4c-1.6-1.8-3-3.6-4.4-5.4zM863.4 170l-37 30.4-10.2-12.4 37-30.4c-6-7.2-12.4-14-18.8-20.8l-67.8 67.8-11.4-11.4 67.8-67.8c-6.8-6.4-13.6-12.8-20.6-18.8l-30.4 37.2-12.4-10.2 30.4-37c-7.4-5.8-14.8-11.4-22.4-16.8l-53.4 79.8-13.4-8.8 53.4-79.8c-56.2-36.2-120.8-60-190.4-68l-4.8 47.8-16-1.6 4.8-47.8c-9.2-0.8-18.6-1.2-28-1.4v96h-16v-96c-9.4 0.2-18.6 0.6-28 1.4l4.6 47.8-16 1.6-4.6-47.8c-69.6 8-134.2 32-190.4 68.2l53.4 79.8-13.4 8.8-53-79.8c-7.6 5.4-15.2 10.8-22.4 16.6l30.4 37-12.4 10.2-30.4-37c-7.2 6-14 12.4-20.8 18.8l25.2 25 350 233.4 233.4 350 25 25c6.4-6.8 12.8-13.6 18.8-20.6l-37-30.4 10.2-12.4 37 30.4c5.8-7.4 11.4-14.8 16.8-22.4l-79.8-53.4 8.8-13.4 79.8 53.4c36.2-56.2 60-120.8 68-190.4l-47.8-4.8 1.6-16 47.8 4.8c0.8-9.2 1.2-18.6 1.4-28h-96v-16h96c-0.2-9.4-0.6-18.6-1.4-28l-47.8 4.6-1.6-16 47.8-4.6c-8-69.6-32-134.2-68.2-190.4l-79.8 53.4-8.8-13.4 79.8-53.4c-5.2-7.2-10.8-14.6-16.6-22zM958.4 409c-0.4-3.6-0.6-7.2-1-10.8l1 10.8zM888.4 204.8c-2.4-3.6-4.8-7.2-7.2-10.8l7.2 10.8zM432.535 888.925l18.73-94.157-15.693-3.122-18.73 94.157 15.693 3.122zM591.656 7.050l-18.73 94.157 15.693 3.122 18.73-94.157-15.693-3.122zM389.628 879.11l13.939-45.931-15.31-4.646-13.939 45.931 15.31 4.646zM634.434 17.113l-13.939 45.931 15.31 4.646 13.939-45.931-15.31-4.646zM348.014 864.901l36.739-88.694-14.782-6.123-36.739 88.694 14.782 6.123zM676.123 31.035l-36.739 88.694 14.782 6.123 36.739-88.694-14.782-6.123zM293.62 839.341l14.11 7.544 22.632-42.331-14.11-7.544-22.632 42.331zM730.101 56.711l-14.11-7.544-22.632 42.331 14.11 7.544 22.632-42.331zM120.601 666.174l42.336-22.622-7.541-14.112-42.336 22.622 7.541 14.112zM903.244 229.805l-42.336 22.622 7.541 14.112 42.336-22.622-7.541-14.112zM183.811 575.377l-88.694 36.739 6.123 14.782 88.694-36.739-6.123-14.782zM840.32 320.699l88.694-36.739-6.123-14.782-88.694 36.739 6.123 14.782zM85.543 585.613l45.936-13.93-4.643-15.312-45.936 13.93 4.643 15.312zM938.308 310.333l-45.936 13.93 4.643 15.312 45.936-13.93-4.643-15.312zM74.069 543.218l94.157-18.73-3.122-15.693-94.157 18.73 3.122 15.693zM949.741 352.757l-94.157 18.73 3.122 15.693 94.157-18.73-3.122-15.693zM70.965 368.452l94.157 18.73 3.122-15.693-94.157-18.73-3.122 15.693zM952.842 527.573l-94.157-18.73-3.122 15.693 94.157 18.73 3.122-15.693zM80.974 325.486l45.931 13.939 4.646-15.31-45.931-13.939-4.646 15.31zM942.969 570.293l-45.931-13.939-4.646 15.31 45.931 13.939 4.646-15.31zM101.142 269.088l-6.123 14.782 88.694 36.739 6.123-14.782-88.694-36.739zM922.794 626.769l6.122-14.782-88.694-36.73-6.122 14.782 88.694 36.73zM120.824 229.733l-7.544 14.11 42.331 22.632 7.544-14.11-42.331-22.632zM903.455 666.215l7.544-14.11-42.331-22.632-7.544 14.11 42.331 22.632zM307.878 49.154l-14.11 7.542 22.627 42.331 14.11-7.542-22.627-42.331zM716.073 846.926l14.112-7.541-22.622-42.336-14.112 7.541 22.622 42.336zM333.267 37.201l36.739 88.694 14.782-6.123-36.739-88.694-14.782 6.123zM690.884 858.89l-36.739-88.694-14.782 6.123 36.739 88.694 14.782-6.123zM389.634 16.972l-15.31 4.645 13.934 45.931 15.31-4.645-13.934-45.931zM634.349 879.118l15.312-4.642-13.925-45.936-15.312 4.642 13.925 45.936zM432.472 7.161l-15.693 3.122 18.73 94.157 15.693-3.122-18.73-94.157zM591.536 889.031l15.693-3.122-18.73-94.157-15.693 3.122 18.73 94.157z" />
<glyph unicode="&#xef2a;" glyph-name="opera" d="M1024 448v0 0c0-151.6-66-288-170.8-381.6-131.4-64-253.8-19.2-294.2 8.8 129 28.2 226.4 184.2 226.4 372.8s-97.4 344.6-226.4 373c40.6 28 163 72.8 294.2 8.8 104.8-93.8 170.8-230.2 170.8-381.8v0 0zM343.4 736.6c-56.6-66.8-93.2-165.6-95.6-276.6 0-0.2 0-23.8 0-24.2 2.4-110.8 39.2-209.6 95.8-276.4 73.4-95.4 182.6-155.8 304.6-155.8 75 0 145.2 22.8 205.2 62.6-90.8-81-210.4-130.2-341.4-130.2-8.2 0-16.4 0.2-24.4 0.6-271.4 12.8-487.6 236.8-487.6 511.4 0 282.8 229.2 512 512 512 0.6 0 1.2 0 2 0 130.4-0.4 249.2-49.6 339.4-130.4-60 39.8-130.2 62.8-205.2 62.8-122 0-231.2-60.4-304.8-155.8z" />
<glyph unicode="&#xef2b;" glyph-name="file-pdf" d="M842.012 370.52c-13.648 13.446-43.914 20.566-89.972 21.172-31.178 0.344-68.702-2.402-108.17-7.928-17.674 10.198-35.892 21.294-50.188 34.658-38.462 35.916-70.568 85.772-90.576 140.594 1.304 5.12 2.414 9.62 3.448 14.212 0 0 21.666 123.060 15.932 164.666-0.792 5.706-1.276 7.362-2.808 11.796l-1.882 4.834c-5.894 13.592-17.448 27.994-35.564 27.208l-10.916 0.344c-20.202 0-36.664-10.332-40.986-25.774-13.138-48.434 0.418-120.892 24.98-214.738l-6.288-15.286c-17.588-42.876-39.63-86.060-59.078-124.158l-2.528-4.954c-20.46-40.040-39.026-74.028-55.856-102.822l-17.376-9.188c-1.264-0.668-31.044-16.418-38.028-20.644-59.256-35.38-98.524-75.542-105.038-107.416-2.072-10.17-0.53-23.186 10.014-29.212l16.806-8.458c7.292-3.652 14.978-5.502 22.854-5.502 42.206 0 91.202 52.572 158.698 170.366 77.93 25.37 166.652 46.458 244.412 58.090 59.258-33.368 132.142-56.544 178.142-56.544 8.168 0 15.212 0.78 20.932 2.294 8.822 2.336 16.258 7.368 20.792 14.194 8.926 13.432 10.734 31.932 8.312 50.876-0.72 5.622-5.21 12.574-10.068 17.32zM211.646 145.952c7.698 21.042 38.16 62.644 83.206 99.556 2.832 2.296 9.808 8.832 16.194 14.902-47.104-75.124-78.648-105.066-99.4-114.458zM478.434 760.314c13.566 0 21.284-34.194 21.924-66.254s-6.858-54.56-16.158-71.208c-7.702 24.648-11.426 63.5-11.426 88.904 0 0-0.566 48.558 5.66 48.558v0zM398.852 322.506c9.45 16.916 19.282 34.756 29.33 53.678 24.492 46.316 39.958 82.556 51.478 112.346 22.91-41.684 51.444-77.12 84.984-105.512 4.186-3.542 8.62-7.102 13.276-10.65-68.21-13.496-127.164-29.91-179.068-49.862v0zM828.902 326.348c-4.152-2.598-16.052-4.1-23.708-4.1-24.708 0-55.272 11.294-98.126 29.666 16.468 1.218 31.562 1.838 45.102 1.838 24.782 0 32.12 0.108 56.35-6.072 24.228-6.18 24.538-18.734 20.382-21.332v0zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2c;" glyph-name="file-openoffice" d="M690.22 488.318c-60.668 28.652-137.97 34.42-194.834-6.048 69.14 6.604 144.958-4.838 195.106-57.124 48 55.080 124.116 65.406 192.958 59.732-57.488 38.144-133.22 33.024-193.23 3.44v0zM665.646 354.25c-68.376 1.578-134.434-23.172-191.1-60.104-107.176 45.588-242.736 37.124-334.002-38.982 26.33 0.934 52.006 7.446 78.056 10.792 95.182 9.488 196.588-14.142 268.512-79.824 29.772 43.542 71.644 78.242 119.652 99.922 63.074 30.52 134.16 33.684 202.82 34.52-41.688 28.648-94.614 33.954-143.938 33.676zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2d;" glyph-name="file-word" d="M639.778 484.108h44.21l-51.012-226.178-66.324 318.010h-106.55l-77.114-318.010-57.816 318.010h-111.394l113.092-511.88h108.838l76.294 302.708 68.256-302.708h100.336l129.628 511.88h-170.446v-91.832zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2e;" glyph-name="file-excel" d="M743.028 576h-135.292l-95.732-141.032-95.742 141.032h-135.29l162.162-242.464-182.972-269.536h251.838v91.576h-50.156l50.156 74.994 111.396-166.57h140.444l-182.976 269.536 162.164 242.464zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2f;" glyph-name="libreoffice" d="M534.626 937.372c-12.444 12.444-37.026 22.628-54.626 22.628h-384c-17.6 0-32-14.4-32-32v-960c0-17.6 14.4-32 32-32h768c17.6 0 32 14.4 32 32v576c0 17.6-10.182 42.182-22.626 54.626l-338.748 338.746zM832 0h-704v896h351.158c2.916-0.48 8.408-2.754 10.81-4.478l337.556-337.554c1.722-2.402 3.996-7.894 4.476-10.81v-543.158zM864 960h-192c-17.6 0-21.818-10.182-9.374-22.626l210.746-210.746c12.446-12.446 22.628-8.228 22.628 9.372v192c0 17.6-14.4 32-32 32z" />
<glyph unicode="&#xef30;" glyph-name="html-five" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM784.63 658.572h-432.54l10.302-115.75h411.968l-31.042-347.010-231.844-64.254-231.572 64.254-15.83 177.512h113.494l8.048-90.232 125.862-33.916 0.278 0.078 125.934 33.992 13.070 146.55h-391.74l-30.494 341.8h566.214l-10.108-113.024z" />
<glyph unicode="&#xef31;" glyph-name="html-five2" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM810.762 97.176l-297.226-82.376v-0.466l-0.776 0.234-0.782-0.234v0.466l-297.222 82.376-70.242 787.486h736.496l-70.248-787.486zM650.754 429.796l-13.070-146.552-126.21-34.070-125.862 33.916-8.050 90.234h-113.49l15.83-177.512 232.076-64.176 231.342 64.176 31.040 347.012h-411.966l-10.302 115.748h432.534l10.112 113.026h-566.218l30.498-341.802z" />
<glyph unicode="&#xef32;" glyph-name="css3" d="M152.388 911.478l-34.36-171.926h699.748l-21.884-111.054h-700.188l-33.892-171.898h699.684l-39.018-196.064-282.012-93.422-244.4 93.422 16.728 85.042h-171.898l-40.896-206.352 404.226-154.704 466.006 154.704 153.768 772.252z" />
<glyph unicode="&#xef33;" glyph-name="git" d="M1004.692 493.606l-447.096 447.080c-25.738 25.754-67.496 25.754-93.268 0l-103.882-103.876 78.17-78.17c12.532 5.996 26.564 9.36 41.384 9.36 53.020 0 96-42.98 96-96 0-14.82-3.364-28.854-9.362-41.386l127.976-127.974c12.532 5.996 26.566 9.36 41.386 9.36 53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96c0 14.82 3.364 28.854 9.362 41.386l-127.976 127.974c-3.042-1.456-6.176-2.742-9.384-3.876v-266.968c37.282-13.182 64-48.718 64-90.516 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 41.796 26.718 77.334 64 90.516v266.968c-37.282 13.18-64 48.72-64 90.516 0 14.82 3.364 28.852 9.36 41.384l-78.17 78.17-295.892-295.876c-25.75-25.776-25.75-67.534 0-93.288l447.12-447.080c25.738-25.75 67.484-25.75 93.268 0l445.006 445.006c25.758 25.762 25.758 67.54-0.002 93.29z" />
<glyph unicode="&#xef34;" glyph-name="codepen" d="M945.75 591.958l-448 298.666c-10.748 7.166-24.752 7.166-35.5 0l-448-298.666c-8.902-5.934-14.25-15.926-14.25-26.624v-298.666c0-10.7 5.348-20.692 14.25-26.624l448-298.666c5.374-3.584 11.562-5.376 17.75-5.376s12.376 1.792 17.75 5.376l448 298.666c8.902 5.934 14.25 15.926 14.25 26.624v298.666c0 10.698-5.348 20.69-14.25 26.624zM480 305.124l-166.312 110.876 166.312 110.874 166.312-110.874-166.312-110.876zM512 582.458v221.75l358.31-238.876-166.31-110.874-192 128zM448 582.458l-192-128-166.312 110.874 358.312 238.876v-221.75zM198.312 416l-134.312-89.542v179.082l134.312-89.54zM256 377.542l192-128v-221.748l-358.312 238.872 166.312 110.876zM512 249.542l192 128 166.312-110.876-358.312-238.874v221.75zM761.688 416l134.312 89.54v-179.084l-134.312 89.544z" />
<glyph unicode="&#xef35;" glyph-name="svg" d="M928 544c-28.428 0-53.958-12.366-71.536-32h-189.956l134.318 134.318c26.312-1.456 53.11 7.854 73.21 27.956 37.49 37.49 37.49 98.274 0 135.764s-98.274 37.49-135.766 0c-20.102-20.102-29.41-46.898-27.956-73.21l-134.314-134.318v189.954c19.634 17.578 32 43.108 32 71.536 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-28.428 12.366-53.958 32-71.536v-189.954l-134.318 134.318c1.454 26.312-7.856 53.11-27.958 73.21-37.49 37.49-98.274 37.49-135.764 0-37.49-37.492-37.49-98.274 0-135.764 20.102-20.102 46.898-29.412 73.212-27.956l134.32-134.318h-189.956c-17.578 19.634-43.108 32-71.536 32-53.020 0-96-42.98-96-96s42.98-96 96-96c28.428 0 53.958 12.366 71.536 32h189.956l-134.318-134.318c-26.314 1.456-53.11-7.854-73.212-27.956-37.49-37.492-37.49-98.276 0-135.766 37.492-37.49 98.274-37.49 135.764 0 20.102 20.102 29.412 46.898 27.958 73.21l134.316 134.32v-189.956c-19.634-17.576-32-43.108-32-71.536 0-53.020 42.98-96 96-96s96 42.98 96 96c0 28.428-12.366 53.958-32 71.536v189.956l134.318-134.318c-1.456-26.312 7.854-53.11 27.956-73.21 37.492-37.49 98.276-37.49 135.766 0s37.49 98.274 0 135.766c-20.102 20.102-46.898 29.41-73.21 27.956l-134.32 134.316h189.956c17.576-19.634 43.108-32 71.536-32 53.020 0 96 42.98 96 96s-42.982 96-96.002 96z" />
<glyph unicode="&#xef36;" glyph-name="IcoMoon" d="M259.544 448.002c0 65.416 53.030 118.446 118.446 118.446s118.446-53.030 118.446-118.446c0-65.416-53.030-118.446-118.446-118.446s-118.446 53.030-118.446 118.446zM512.004 960c-282.774 0-512.004-229.232-512.004-512s229.226-512 512.004-512c282.764 0 511.996 229.23 511.996 512 0 282.768-229.23 512-511.996 512zM379.396 0.718c-153.956 89.574-257.468 256.324-257.468 447.282s103.512 357.708 257.462 447.282c154.010-89.562 257.59-256.288 257.59-447.282 0-190.988-103.58-357.718-257.584-447.282z" />
</font></defs></svg>PK!�DB�v�vfonts/icomoon.eotnu&1i��vv�LP߁q�icomoonRegularVersion 1.0icomoon�0OS/2e�`cmap�r�x\gaspxglyf_.��=|head�|�>�6hhea
�)?4$hmtx�{t�?X|locaP��Y��maxp��tT name�J	�tt�postu� �������3	@�6���@�@ @ �c�6���� �������� h��797979���%5EQ]!2654&#!"&5463!2326=4&#!"3!2654&#!"#!"&5463!232654&#"32654&#"0�		�@		�			�`$`���	��		`	��



�



@			�		�		��`������		�		��






��@�-1AK7265463!232654&#!""3!2654&#!!!"3!26=4&#!"&=!p			%�$	g		�		�����	6�5	"�`!�	��		�'$�	�	�@		�	�@��	&.5 	0"
����(8<LV7!326=!2654&#!"463!2#!"&57!2654&#!"!!"3!26=4&#!5463!200		0��	�		��	P		�		� @%	�	% �``�0		0��@�		�@		0	@		��	@���%0		.&B �� �/3?!2654&#!"463!2#!"&57!2654&#!"!!32654&#"0��@	�		�@	P@		��		 ��



@��`�		�`		p	�		� 	�@`


��`�/3?M!2654&#!"463!2#!"&57!2654&#!"!!32654&#"32654&+"0�			�	0�		�@		��`�



0�		�		@��`�		�`		p	�		�`	���`


				���&,>LZhv�!2650450&54&'8581.'*1&"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"0���@�̼� 	��	�`	��		�`		�		�`		�		�		�		�`		�		�`		@� �`���	�%�p						�								��				�				��@� &9GUcq������7!265<14&14&/.#0&#0"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"3;#!"&=4&#"3!265<14&14&/.#"4#0"+"3"&=32654&+"32654&+"32654&+"32654&+"0@������	�`	p�	��
p�		��		�		��		�		�		�		��		�		��		'��	��
		@��		�	���		�		�		�		�		�		�		�		@`���I�	�	���		 ��				�								��				�				`���		 		 `�		�	���				�				�				�				���AMS���!26=041>7326764/>54&'04150450&54&'8581.'*1&"#!"3#"&54632#"&5%463!;.#"!"3!!"3!!"3!2033267#!"&532654&+"!2654&#!"0��$5+��@gIIggIIg��̼� 	��),M��		1��		��		HN,)	�`	��		�		�		�`		@���N-7\P �`�IggIIgg���	�%0"		1		1		#�		�				�				����-O_iw���!2654&+";2#!"&546;2654&+"2654&+"3!2654&+";!!26=4&#!"'!#!"&5!2654&#!"7!2654&#!"!2654&#!"!2654&#!"0 �		����		��		@		�		@		0���@#	�`	#���`		��		`		��		`		��		`		��		@�		���		��`			�					� �@#�		�#����				�				�				�				��>�+/?CQ_m{������%2654&#"#"&54&#"!2654&#!"!!!26=4&#!"7!!!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!2654&#!"!"3!2654&!2654&#!"!021812654&#"#"&54&#!"!0!"&5�#					(�@		��		 ��		�		� �		@		��		@		��		@		��		@		��		@		��@		��		��		@		��@		��		A\L66L�]A�		�[6L #P		��	P		��  	 		��	 ��	�		�	�`�				`				`				`				`				 				@				 				�]AP��6LL6P��A]�

L6B	��`�'1?M[iw��2654&#!"326=46;#"&=4&#"3!2#!%4&#"32632654&+"732654&+"32654&+"32654&+"732654&+"32654&+"���		��		���0@				���		�		�		�		�		�		�		�		�		�		�		�		@�%		%�`		���0@		��		W				�				�				�				�				�				�� �-=KYgu���������!".#!"3!2673!2654&!"&5463!2%#!"&5463!2"32654&2654&#"!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&��

�

���H�P				��				'��		�		��		�		��		�		��		�		��		�		��		�		9��		�		��		�		��		�		��		�		��		�		��		�		�����@����	��		@	��	@		��	�				�								��				�				�								�								��				�				�				��@�-7GKYgu���"#!"&54&#"3!2654&!"3!26=4&!5463!22654&#!"3!!!2654&#!"!2654&#!"!2654&#!"32654&#"32654&#"32654&#"0		� 			�	'� 	 	�	�	�		�`		���0�		� 		�		� 		�		� 		��



�



�



�	��		�		���	@�		��		��			�	� �				�				�				�










	��@���������4&#"#!"&54&#"3!26";326=3326=3326=3326=32654&+532654&+54&#"#54&#"#54&#"#54&#"#";%#5##5#3#32!546;2654&+"3!26=4&+"#2654&#!"354&#"32626=4&#"@			� 			��P		0		�		�		�		0		00		0		�		�		�		0		0�� �����	�		�	 	�		�		��		P								`		��		`		��		p		pp		pp		pp		p		�		�		��		��		��		�		����������			�		�						0�		�				�		�	���� �+Y{"3!2654&#"#!"&54&%!"3!2654&&"?326?326=4&5.'"&+";?32676&/>=4&#"	�			��		���		@		�d�
���		�		y��
���		�`	�� 		��		 	`				���
���y		�		��qq
tS		St
���+7Gdx!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>3281!'.#81"'&!0��`	�		�`	p&&&&


�
�		� 		��|Z�@�Cp�-��@��`�		�`		@&&&&`



�	�		��	 ���ub}`�LI		j���� �+7Gat�7!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>32!'.#81"'&""3!2654&+";2#!"&=4&0@��	@		��	 &&&&


�=�		�@		��|:�`�#p�-�	@				��		@ ��P		��		�&&&&`



� 	`		��	 ���uB}@�m(		k����	@			��			����(ADR`n|���������#"3!2654&#46;#"&!+32&"3267%>54&'%#";2654&'32654&+"#";2654&#";2654&#";2654&#";2654&#";2654&32654&+"732654&+"32654&+"32654&+"32654&+"32654&+"#";2654&�@����������Y	 ����@		@		G@		@		G@		@		@		@		@		@		@		@		@		@		Y@		@		@		@		@		@		@		@		@		@		@		@		G@		@		��`��0��@��@��`���������D�				`				�				�				�				�				�				`				�				�				�				�				�				`				��@�H\����#"&=4&#!"+";2654&+"&5!32>54&'!+";2654&".54>32".#".#!546;26=463!2;226=4&+"326=46;2"32>54.".54>32��.A?��F:0�!//!�		�Aq�VV�qA�		�!//��O�i<<i�OO�i<<i�)L`o<<o`L���9(+5?2.'9��	�			�		w<hO--Oh<<hO--Oh<5]F((F]55]F((F]; BC >/!��!/		�%P+V�qAAq�V+P%�p		/!@!/��<i�OO�i<<i�OO�i<@3S;!!;S3�G -0 G�	  		 		 	�-Oh<<hO--Oh<<hO-��(F]55]F((F]55]F(��@�SWay��#54&+";2#4&#!"#546;2654&+"#";2654&+"&=!+";2654&!!463!2"!54&#"3!2654&732654&#"32654&#"P@		@	�	� 	�	@		@P�		�		�		����@��	�	��	�@			�		�



�



�p			p0		��p			p�@			pp			� ��0		��@	��		�			�






��@�7AKi"#!"&54&#"3!2654&!"3!3!26=!26=4&#!"&=!%!5463!2"326=463!2326=4&#0		� 			�	'� 	�`�	�<	��	���	�	��			`			�	�`		�		�`�	@�	pp	���		p �		�		�		�		�����;Nav"#!"&54&#"3!2654&26=4&#!"326=463!2!"32>=4&#".=463!2267265.#"'&�		��			`	�y	��			`		g��h��ts٩g^��qsѡ_	`	��.	1\1
	3�	��		�		���	�	``		`		`	@�!I>((>I!��<8''8<�		�0
	
����&��26=4&+'.3:7%7>/32"32#!"&=46;26=4&#!"&546;3:7%>'.0"#!"3!26=4&#"#!"&53!2#"3!26=4&32654&#"	V�/�+K
�		��	�0""�`	C�}�+55+�		�0"!���



�	5:��4	5	�		��	�"" �5+�@+5�		�"v
����


��@�+AW���"3!2654&#!"&54&!"#!"3!2654&3!232654&#!"%"3265463!2654&#!>764'&"4&#".'.7>7>'.!"3!3267>732653267>76&'.'!2654&#%>32>"'&47>70	@		��		�		�`		�	�)	�			�`	�			@		��s
$$#j#
		)r

$		S'�n		+	$$--
		)q
$		R'�		��
""
r&bNr&�	��			�		��			�	�		��

		��

			�a	%f%##				�Y=* 
*76	

%f%	��		
>* 
*75
	�

L-l��L-l����/@P`#>54&+"#>54&+"3!2654&+"#"&546;2#3"&546;2#+"&546;2@f�f� ��`p		�		�		�		�	�		�	p����``����\	`		��		�		�`	���		�		����CGWg2654&+54&#"!54&#"#";#";3265!326532654&+!!4&#!"3!26%463!2#!"&�		�		��		�		��		�		 		�		� �� `����@	�		��	`		�		��		�		��		��		��				 �� ����`�		�`		���%GT4&#!"3265463!2#!"3!26"3!265732654&#!";#!"&5463!�`			�		��		 �0�			�		��		�		���		 		�`			D���					��			��@�+AWgk#"326=46;2654&!#";2326=4&"+";26=4&!";2654&+"&=4&%26=4&+"373#�			�		��		�					�		�	��	�		�		�		�		����		�						�		��	�			�		�			�	�	�		�	�����BFLQ[e!2654&#!"463!2#!"&57:3%267>5764/&"013'#5%';62'0��`	�		�`	`@Cu�)x��e�"��7KN��I���$�@	T��W��l�@��`�		�`		A`Fu*�x����v!��
&M��K���@%�V	FQ��l��� �+7CO[gu���!"3!2654&#!"&5463!2"32654&"&54632"32654&"&54632"32654&"&54632'2654&#""326=4&"32654&2654&#"�`,,�,,�`��&&&&


�&&&&


��&&&&



								�				�				�,��,,�,�@�p&&&&`



�`&&&&`



&&&&`



�	 		��	�	`		`	`	�@		�	��	�		�@	����EU_"3267>767>54&#"'.'.#"&'.54&#%54&#!"3!26'!5463!20		#hhXVef#
		
%smORpu%
	P��	`	 ��	 	�	�bO_YY_O	�		�b_jUUj_�	P��		�			������47o�����4&#!"3!26554&#!"3!26=4.'>!#0&1'54&#"01#54>7>54&'.=!7!"3267>7>764'.#.'3!2654&#!"3"326=4&'"326=4&�
�~

�
!	��	(;CE:&	@	)<CE:&����D@.I�		�I*=ED@. *=EZ��P,'L�$?�<���

�~

A								�				�t		t;dP;<Pa:t		s;dP;<Pa����6Ld;c�		�d9`L85Lc<dd9`L8�1B	>+	�3!.��				�	 		 	`	 		 	
����2;?CGKPZd"#"3!2654&+54.4>32#54&#"#)54632#7!#7!#73#7#53!"&=!!5463!2�BuW20!//!�!//!02Wu��-Oh<<hO-`qOOq`���^BB^נ��R���R����ɠ��	��� @����2WuB`/!�@!//!�!/`BuW2��<hO--Oh<``OqqO``B^^B��������������PP����
Yd|�"32654&&"#!";32654&#"&'.'332654&#"&'.'323267>54&'46;#"&5.+"&#81"+!2>72654&#"�				@	$b��z�D#11#m/$`=		6U(`3 		(�z��c$��ll@&g��{�k0{��f%�p				�	� 		�	'F=*2$��#1n/$$		(a4		'
*>F
��{V�@�G=)�)=G��	V		��	��`�I"676&'.5>73267>54&'.'&4&#�k�j6Rrz(
0vhG8`�X	��u-Y�Y
KuR1`�� 	�3>5��f�zSQs�\;	13*�0		H��|@-84		
*0+��k�yK�	��/�
iv��2654&#!"3!"32676&'.'&67>;326=4&5>5323267>76&'.#.5!"3!26=4&#!5463!20		��		 ��OQ
+4631)
M60DXU		_cM06M)3476+QOPI^YOS@�@%	�	% �``�				 -K) C?52;?";��Q[7P		P	7[Q0;">?6:BB)K-��IuU44TuI0��%0		.&B ��n�o}!"3!23265..#!!2!0&'.54&#"30:1267>'.'>76&'.#!"3!23"#4&#"326���		`*		!
��P"k�E		&���	%-)

),&	��

.1''2-��				�	� 	"		�;��-��
			AB9
AKH			SR=
4HK���		� 		���Xr���833:7%23267201%>'.'&"?.%54&#"6&'&%676&/&"3267>54.#"2.54>4&#"326"&54632(\\ ��
���==��		��=
=���
�� ]R`O*Id99dI*O`R3X@%=QPOQ>%@X�T<<TT<<T�.BB..BB>^^�
0Y
O���
�VX

XV�
��O
Y��
�S��Y9dI**Id9W��T�%@X3I�yWYx�H3X@%�<TT<<TT4B..BB..B��`�z�4&#"#"3267>32#"&'.#";>54&'.54632326=>3232654&#"#"&'40154&+8#.5467>5:;23267>32#"&'.#"+.5467>54&#"#"&=>3232654&#"#"&'546;029>54&'.54632�MTJZ	
�8U)GH'V7�
G<;G
~4A

" 5XP0 (	
B3~	5~*+!	,4E(	!),~
	NTIZ	�)D	
' 4[\4 &	F'�
I;;F
C/NE8!"
M3w
	B>?P	�6S	*33*	I9�OMSM
s:L
"!8
@&t 	F:@<
�$>	
"!.OE8!"
	A(�
aNNR	
w*6
	*33*	��@� .?M_p����!"3!2674&'.#!"&'!%2654&#"#023>'.!2654&#"3:12676&'&267>'&"&32676&#";2654&!2654&#!"!32654&+"�`�`����{w{��				�	 
	 	�				�	 	
 	���
0��
�� �		�		�y		�		�g�		�		�	#$���L	 		��	
 	
��	 		��	 
	��

`
��|��
`
��				 								����?ES&"3!2654&'>7>323267%&"32676&'%!62%!2654&#!"�(��Z��'�q���
*����q'3���a 		��		�

����^;�����i
	��9�
�L�Hc�				����
3BYe4&#"32654&#"3263!26=4&#!"01!"&/7>3.#!"3!26?>54&'%!2#!5�				��rp
�

�E
��Eqr��
�E

�
r���qr�D00	��		�"		"		6ZX	�	�WZ�Q	�	ZHWZ���_�38FPb��.'&"3:?3:373:7%>764''7%'81'81'7%'041/%.3263>'#"326?3326=33267>/54&##546;2o����0������$�.�:�L�Xa��5����`%��I		I��% �`v�yosVC����WioQ;�o�?(3��vB� �j%*�
��		��
�(&` ��@��2>J����?>03261>?>?6326?>/.?>?>70654&1././&6?6&/././.'0&#"1&/&01'46146?>?6&/&4?>?>?>30632126?601#"&#'.#0#"&1"&/./.#"&/.?>/./.50&52654&#"2#"&546+"012?201:326?46?2?>/46?>3267067>16&/"&/46?>/."&/.754&'0&'.1*#""&/.7>/<1732637>?>30301?:121001#"1/.#"##10&'.#0&156&/.#"*3'0617>/4&/.5067>506132672654&#"72#"&546v
-	&
I
	


	I	&	-
S

S
-	&
I
	

	I
&	-
S

SVT-%	I	I	$-
TT-%I	I	$-
T�IggIIggI<TT<<TT<

4*
:

	
) 	<

4*
:

	
) 	
*	
		9*
	4<

*	
	9*
	4<
�(88((88(&&&&		I
&	-
S

S
-&I
	


	
I
&	-
S

S
-	&I
	

WI	$-
TT-%	I
I	$-
TT-%	I
�gIIggIIg@T<<TT<<T&

	)
 	;
	4*
9

	)
 	;
	4*9
8*	4<

*	
	

8*	4<

*	
	
�8((88((8�&&&&���Ew��267'32>54&'7>=3023>75323:7>5<=4&+".#"3267>;2#"#"#".54>2654&#"72#"&546�k���JtQ+�``
|	�Z*CwY33YwC'�|	p	p	�&IiB=kP..Pk.BB..BB.!//!!//�=��
��5Vm8 BI�
����3YwCCwY3lw	�	�	�LB&2bM/.Pk==kP.�4B..BB..B�/!!//!!/-��>�X267>54&'&67>'.7>7>3201227>54&'.#0"1"3�0b$*z+�b�!\!��+�5jJ**I�#� U11V��!!8<-%%55*+�O�! ))��+05<! ?sI+*J��V11V !�� LMI������:r�2326?>54&'.#"01"7>'&6?>32'&>'.#"&'.546?>656&'&302126?&"326764`6�45��)(�0	|	�)(�0	!@�56���P���65�F$6�()�	�I&8�()�	�65���P�
��@�1=Iav��!"2?>3!2"/&"3267>54&#4&#"326'4632#"&%"3267>54&#!"'&47>3!2"32654&"&54632��%*
*
@	�=U
U	
�/%&&%`



��%�@
N

���Q�>���
@�&&&&


�++	��	�AU
U�&B�&&&&


-�<(���&B0��	�AM�	0&&&&`



����q��"0232676&'%.75045.'.'.54>32"&"1'&27>75<54015467241>54.#2676&'%&:&:32676&/`?~e>?>-��0999[r:;sZ8J'1��
	-@?=d~A�	���	��1[�RP�31%	98
/40zHJwS,,RwK_r!5/ 
%15�RS�[0�P::/.���2d�%&"3267%>54&"'%.5467%>32&"'%.5467>'.3267%>54&'&"'%.5467>'.3267%>54&'��&o&��q00q&��^��r((r
��[��
q00q
��[��
q00q���! �

� !T��	�				�	{
		��		
! �� !�	��	 !��! ���?DINWe3!:7>781401>7<14654&5405.'0&#'&"3!"7	777326=7%46?>'.5	�e��w)�u#��	����%�N��!7XT
@W��U�l�l/	6$x�

u��@
��@$�%�N�Kd�!��
�	V��Q��l�l����E�������0326764'.'764'&".'764'&".#.?>02764'.#&&".'&"33126?>/&"#81"&'0&'764'&".'764'3:3%267>57>54&/&"01'#5	';62'7 7M-23%st�
5L.
.K61��3

-J5
����tt%3�J@#u�*x��e�!�7K�M�	J|����H@	T��W��k�l26K.

33%tt�
!:N/
.N:!���3

,L8 		�,���ut%3�`&u

�x����R!�
&�N�Kl��@�zV	FQ��l�l����M����>5.'&.#"26?>3267>'3267>'.'""/&4?2?#"&'&'764/&&67>3267>'&67>"'&"38126?64'&"'&"326?326764/764''7�7x+(�� )L*p1o*&E(q )L*p0p�0*]@#
��$ V)^1*]@#
�# V)^���A
-��@-�`@`��KI)I�+)u6��+v7p2p
	)u6q,u7p0p�0_*T ��
.j$ 
_)3_*T �
.j$ 
_(��@��0(@��0p`@`��4I)I	���=Vbn���%2654&#"72#"&54632>54.#"&'4&'.	32#"&'.54&'.'32654&#"#"&546323267>54&'&67>'.#"3267>5467>764'&"#"&5463267>7732654&#"0.BB..BB.!//!!//�\D,N:" 9O.jR�
Ej}9<S�.�aqOgkK:L	ZB3tcF%B..BB..B�/!!//!!/t*WF,	��
@-AN��2.O9 ":N,D\

	 L:KkgO$:
� B..BB..B�/!!//!!/#N<<":N,,H5Lt��m,0M$�
S^IKk23G$/X3)b~�d�
.BB..BB.!//!!// 
'az�^��
VO�kU�	5H,,N:"<;_ 2J31kKI^
>

����6;E|3267.#!";21'"32654&'4&'.'.5463!!5!2!>830#"&54674016417>54&#81#"&'5!+"�$$��$$�	:
6,,7#*�3���!>��d%%G���<1 $&$$��$#?@

4??4		
6G"~~b��%��55GD0!CC9M=���3J^r�"326733267>54&'.'4&'>54.	"'.5467>32%".54>32"32>54.".54>32PE{[55[{EAt-E			

		

	��,E)/5[{2		����?oR00Ro??oR00Ro?2WA&&AW22WA&&AW2+L8!!8L++L8!!8L�5[{EE{[5/)E		��	

		

	E-tAE{[5�f��		0Ro??oR00Ro??oR0 &AW22WA&&AW22WA&�@!8L++L8!!8L++L8!����_��26=326=4&+";'3#326732673267>'>764'&"'>54&#".'&"2326762#".'&47>374632#"&53267#"&'p			@		

  ���/e56e.��,D
LK54KL
D,�c
-u@At.
)DKP*)QJD	�8'(88('8,
K@"!@	0	`		`	0	�@�f��
!B	�35JJ53�	B!��
�-11-(..(�(77('88't���@�HT`lx".#"%>54&#".#"32654&'326732654&'32654&##"&54632"&54632"&54632"&54632�(8��	
$
��8((8�	
(88((8�	$
"8((8	
(88(��&&&&&&&&�&&&&f&&&&�8(%
�?�	
(88(%
��8((88(%
`�
(88($
�8((8�`&&&&�&&&&��&&&&`&&&&����7AO]7#"3!26=4&+5>=4&#"#".=4&#"!546;2"326'6&#"&54632�_%	@	%a0R=#

!8K++K8!

#<R/�����<UU<<UU3A..CC..A��%0		.&�)AU0<

<+L9!!9L+<

<0UA)� �V=��=VV=|=V��/BB/|/BB/����
��4&#!"3!2667>772013!2654&#!.5467>54&5>7>'.&'&""'.'&67>764'4&'3223267>54.#"&5.%.#"32:3267>54.�	��		@	�i
.7
))A;A�		�F=5F/



	!
C!
$
	SSQ-_X?Lgg<e	
OC'[>		9R#:/	!3>0				�'1%	(B=6�A+H		:"9|1AQ6@ 
*
/(H{)!Al7[wABz]:z�G=?l:�		9RoG#k^bn$MvY>
��V�
1Ng2654&#!"33!2676&''.=4&+"##!"&'&6713267>3253.#"#"&'#74>0		��		�,2�2,�	�	�&��&
�4--4-&�
��8-4-&', �				��%0

0$>3FS'�		�*ZK1��T

"

��"���D�%3O`��M�.<HT.#"3!832676&'#!"&'&67>322654&#""32654&"&54632�F''F�xN3
2N�xw@*��*@�88��				&&&&


a.11.�\/\&$(($%].���L'�&))&�['K$	@		��	P&&&&`



����A��6?>32'&:3267021061263461647<124176&'&.#"4&+"&'&673263>/4&1&4#.#"4181.#0"1*#?;265%6&/.#764'&"01326764/%267�b
c11�~� �@$$@E	�%9�4@�~�G.�	�@B9%��E`_DI.Hk�
�"$$"�� �v-)-,)��	D#4�� ��+U"!%
6"T)��#CF`^D$!��]�my732>=326764/.#"#"2?!2654&#!5>54&#"!"3!.=326764/.#"272#"&546FM��[[��MG`aGDs�R		��)7B..B7)��		R�sDGcb
!//!!//cF[��MM��[G
`a
GS�vJ_		�>*.BB.*>�		��Jv�SG
ba
=/!!//!!/��{��67>7>7>74&'.'4&'.5467>5>30213:7>'.'.'.'>7>54&'.'#":GLD7#;
,G^66^G*B)7DJG9	ANQ-6
)C

0Oi<:hO2:$	7-ROA?.=&V#Z57
=jO./Pm>.=g!	#U%;-5D);'#j>7
CuW31UsBA5[!';,E5��{��"3:7>'.'.'.'67>5.'.54.'0"#81"767>7>7>74&'.&'>54>3021'�7DJG9	ANQ)5sk!$+Lg;<iO.$!�Z4(
ROA:GLD7An ")F_65[C&" dS)#U%;-5D)5#	;MWRDxY44XuCRWMF!2,E5.=&U#$QWR<jO/.Pl?RWQ

���vy����"!#"3267>5.#!"!'32654&#!";1.#"32>7!#"3267>5.+32>54.%#.'!7".54>327!#!".54673267>'>32#�.V%�3-		&:	��Z�c�		��		Jmb"K)E{[55[{ECwZ6c.		':	~�w4%5[{EE{[55[{�^���)9"}��>L��?oR00Ro?$D�22Rk<`?oR0E9��!M)?oR00Ro?`N$		 E	��				��5[{EE{[52VuC#		 B��<EO*E{[55[{EE{[5��N��T+OF:���'��v0Ro??oR0��=iN,0Ro?L�*��
0Ro??oR0����*3Kb4&'.#!"#&3!26=4&#>5!5463!2!.#"#"&/.54673267>32#".'�!��  6^�K�$	�
%}K\4��� �9.,LY%$PFEP$,!R@LY%$PF,7XuC<jT<
�6�..�6G�uL��$		&Lu�G��)v/$!!

/|*��$!@f?3Tl9����&7GWhx��4.#"02183326720183>5!.54632!.54674&'>%467.5>54&'";26=4&#+"&=3�7p�qq�p7��������),

,)W))W�� %!RG1^a @ a^1GR!% ��ad32"6B!.dS6%!B6"23da6Sd��	`		`	��LqK%%KqLW��``��WC�~ff~�C�XX�9wpb%"bqy9q�"�``�"�q9yqb"%bpw9_z$zV2hc\&%[eh2��&\ch2Vz$z_2he[�	``	p		P���'7A�2>54.#"2#".54>"3!26=4&#!5463!2'01326=041>72764/&"#"&'.546764/&"�E{[55[{EFz[55[zF?nS00Sn??oR00RoQ$	�
% �� 
�	
M�9&0
9�PP�99<<91%+ /CJP)5[{EE{[55[{EE{[5�0Ro??oR00Ro??oR0��%0		.&B �3		3;4%19<<99�PP�9
1&EJP)+TMG- ����6Bfr~���������	738126732673812676&'>'.#".#".#""&'>7467>7>7.'.'..'>77>77>7.'.>54&'.'>7>7.'#"&'>7>72.'.'>%2.'>>32.7#81"&'&672654&#"72#"&546S=<]88]<=S-JJ-S=<]88]<=S-JJ-�,M$K%%K$M�-00--00-22(<$"�<"$�22'<$"��$<"5F37	%?=3�3F3=?%	7��,M$K%%K$M�zF37	%?=3[?%	73F3=W!//!!//!�!"]nn]"!*�OO�*!"]nn]"!*�OO�*�aR		Ra�66668**))� <	
F< 
�**))� <	
+
	< 9"L)4@s�%s@4)L"�aR		Ra�"L)4@s%��4)L"%s@8/!!//!!/����.:F"3267>54.#.54>32"32654&"&54632�O�i<p�vv�q<i�Oty]7`�II�`7]ytOqqOOqqOB^^BB^^�=h�Pw�nm��yP�h=�%t��fI�_88_�IhȤrqOOqqOOq��^BB^^BB^���*6BNZfr~��"0212676&''.7>3#%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"54&+"021812>'"&'.54>313B]]BB]^C5KK55KK4�



�



� 







��



�







�@



�	�4]F(&$$]34]F(�-R!$>R.�$=Q`]AC^]AC^��K55JK55J�






�


�3


3


�3


�


�3


Q�	(E\44^$%'(E\�#  R-.Q<#�.Q<#	��@�@d�������&.'.##"&'&3267>7:3267>=>54&'4.#"3267>732>"&'"54&'.54>32#"32654&"&546327"32654&"&54632%"32654&"&54632u^WW"7>\-
1fC
-T>Bc�O��oqS#7E!�FCq��I� D1g A6"N��jh��KD}�j&&&&


�&&&&


�3&&&&


�]F>]z !
$/�,g5Qm2\�tBCt�[7]N?�LM	:i���
8F�:IW3T�l>=k�VS�a5�&&&&`



`&&&&`



]&%%&`



����0Z".'.#"3267>7>54.#.'.54>3227>7>32`;o--o;BuW2/!/��mm��/!/2WuB�*��qq��*=7-Oh<5d(!!(d5<hO-7=�+(##(+2WuB-QLJ&8�rNNr�8&JLQ-BuW2��1tkSSkt1H�S<hO-'$++$'-Oh<S�H��@�S.#"3!2>54.!".54>;2654&+">32326=81?<m�e]�wG3N5/Oh::iO..J\L�3]F* @`@0		0;i�`g�b0		$OB+)F] P�uFAs�\BQZ'=nT19Xl3>lQ2��,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3��@�y.#";2654&+".54>;2654&+">32326=81+"&5326764/&"2?;2>54.?<m�e]�wG3N5/Oh:�		�3]F* @`@0		0;i�`g�b0		$OB+)F]4�NB���
�U[�:iO..J\ P�uFAs�\BQZ'=nT1		,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3BN������I[U9Xl3>lQ2��@�}.#"7>32326=85#!".54>;2654&+54632'&"326?64'&"4.#"3!2>54.'?;m�e0-g�b0		%OB*(E]6�0\H,?`B0		0gYQo�
�

�
�#<R/3S: ?`@!%IlF=iM-1L[)!O�tFJv�K0		0#CdC9dI*#DfC1aN0		@YhpQ�`|
��
|�/S<# :T3B8Sh57mV6/Ro@LpK'��;�Y����&"&#76&'&#76&'&#4.#"32>733267>/33267>/3633267>/76&'".54>32#4.#"32>734.#"32>73#".54>32##.#"32673#".54>32#3#"&54632#&9L-9K39KQ��jj��QQ��jf��UK93K9-LGG��c��LL��cc��L`=h�OO�i<<i�OK�fA`P���)E]55]F((F]51WC,`<]zEI�`77`�II�_8`�J55KK5,Db';K*.R=##=R..R<$`pJ
1(88('8P

[E[E[j��PQ��jj��QK��d[E[E[UU��L��cc��LK��cP�h<<i�OO�i<6_�J^�yF�5]F((F]55]F("=R/CuW17`�II�`77`�I5KK55K6*)F4#=R..R=##=Q/ $8((88(

�����'U[ch2>54.#"2#".54>32673267>54&!6&'."!&!>2.'j��QQ��jj��QQ��jc��KK��cc��KK��]��/H1
���,bdb,���
1H/RJ�@���&QTQ&��JRAQ��jj��QQ��jj��Q�K��cc��KK��cc��K����DQ[2
6��
2[QD-Q�/X��%����/�Q���+;B4&#!4&#"32>%4>73!#".5%!2654.#"!�	�P	`�~IG|�d\��K��Aq�W	�Hv�T]�tB�	I~�`		U�pC�`�	�	I~�_d�|GK��^W�tG�O	T�rCBt�]O	`�~I	�?	�Dp�U
�����(6DRcu������"32>54.#".54>3226=4&#"#";2654&;2654&+"%26764/&"&"326764/64'&"326?326?64'&"#&736=4&#.54673'267>'764'&"&3'>32"'&47j��QQ��jj��QQ��jc��LL��cc��LL��S��@@�@@��22�00 33��00W����UU=		

$

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K@@���33��00�22�J00RP�
<UUF
s$$���%/:JTboy�������������32>7465<'4654.#".'>7373.'>7>32#"..'>73267!467.#".'>774&'>7'.'#"&'>32.'>7#467.'.'3>7.'>74&'>7.'%.'>#46T��gg��TQ��jj��QD#�3,%'�-::	""(Bl!@!(4<<��<<!@!lB(
#D�(Bl!@@::	""�!@!lB(�D#D'%,,$D*=h(*D$(h=�').j$D*=h�	*D$(h�'�.�g��MM��gj��QQ��j�#H$1]�C{5
,c5�@gI''Ig�vT
T�(~'T..T'�%D 'D�
Tv(�T�,X+1m:�T�(vT

@gI''Ig:
Tv(�t+X,:m1�$H#
*]1�
5{C5ct
<a"L2�"a<
2L�>s3
;�M,
<a"Lc"a<
2L�
3s>M����';p����32>54.#"2#".54>2>54.#"326=2#";#54&#".532654&+>726?32654&'76&'..#"374632#"&7.'7Q��jj��QQ��jj��Qc��LL��cc��LL��cV�qAAq�VV�qAAq�6		K�g@0		2<i�O		J�_72		0;^zF��(8��	(8��&&&&�@
Y�V�j��QQ��jj��QQ��vL��cc��LL��cc��L��Aq�VV�qAAq�VV�qA0		27_�J		O�i<2		0@g�K		Fz^;���8(��8(	��&&%%�Y@�
=C���}!3D���+@Tbv����326?64'&"326?64'&"&"326764/326764/&"326781>7>7>7>781>4&'.'.'.'.'."8181>762818181818181"'"&'.'.'.'&47>78181>7>7'>7645.'&47.'.'7.'.'7:7>7"%'>7>7.'.'7'.'&"'62>7'>7>7>"&'&3267>'.3267>'.4676&'&>4&'.3267>232676&'."7�_^�^_
@
XX�XX-"5&P))P&
	2%	'.
&PRP&

2%2	
������T 
�

J0�J		J?�U.	J


�!$
�

J
*yJ
		J?��	J

�!.�7x|x7
:�BB�:
�P!""!  
z!""!
  �V7x|x7:���:
g_^
�#^
^�XX�"
X
X�	
&PRP&
.'%2	
&PRP&5"%11
		


?�@J		ZJ?�@J		
�*
J

�#Y��p!�

J	. 0J

�
 G��-�

J	.!�  
"!!"
�:���:
7x|x7
�:���:
7x|x7
�  
"!!"
���'=IUamy���2>54.#"2#".54>326764/54&#"%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"j��QQ��jj��QQ��jc��LL��cc��LL����		�{







��







�







 



��



@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�g
��

�






s


��


s


��


�


��


����2>54.#"3267>'.'.'.'&67>7>323267>7>7>7>7263.'.'.30216>'.'.'.'.#"&'>7>7>7>76&'&"#.'3:3>5.&'.'.'.'>7j��QQ��jj��QQ���


2o<9l0;p2%C(&@"6v@/N9#&[4&R+'N&		$J%)N$7_( 8L/



2o<9l0;p2%C(
&@"6v@/N9#&[4&R+"C!	$J%)N$7_( 8L/@Q��jj��QQ��jj��Q�9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L					R5;naR9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L				R5;naR���'c�2>54.#"2#".54>67>'.'.'.7>763267>54&'.!67>'.'.'.7>763267>54&'.j��QQ��jj��QQ��jc��LL��cc��LL��F


	#=:#4"7



	#=:#4"7
@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�k
			9.D�=KP$5G


			9.D�=KP$5G

���Th4&#"!"3!3265!2654&#!!#.'54&#""#";3326=>532654&#".54>32 		��		0		/		���T@f�L		R�pEP		NAq�V		P�g<R		�O�i<<i�OO�i<<i��		��		��		/		L�f@R		P<g�P		V�qAP		REp�R		�`<i�OO�i<<i�OO�i<����'A[q��"32>54.".54>32"326=4>;2654&#!#";2326=4.54&#"326764'76&'&3267%.3267>'�]�yGGy�]]�yGGy�]V�qAAq�VV�qAAq���2WA&		!8L+		�		+L8!		&AW��		���`
`
`�Gy�]]�yGGy�]]�yG��Aq�VV�qAAq�VV�qA�&AW2"		"+L8!				!8L+"		"2WA&���

��
���
�
�
�
�����;{32654&+"326=&'&32>7>54.'"'.54>7>676&'.#";26781>=4&#T�		�			"4$$4"3{��B.]/2b]T%$8&&8$�f	"4$$4"2y��BF���4%8&&8%�		�	@			�		�"NV]00]VN"3B&8%$T\c33c\T$��	�"NW\00]VO"1B	
F5$T\b43c\S%		�	�����(4@LXq"32>54.#".54>322654&#"72#"&5462654&#"72#"&546#"&'.326764'&"j��QQ��jj��QQ��jc��LL��cc��LL����&&&&


m&&&&


7(o;=p(.}DB|-�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�&&&&`



`&&&&`



��,12-3761�����(DP\ht"32>54.#".54>32"67>32326764'.#'2654&#"72#"&5462654&#"72#"&546j��QQ��jj��QQ��jc��LL��cc��LL��^C{.)n<=o).}D�&&&&


m&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��Ke71,01-38j&&&&`



`&&&&`



�����(X"32>54.#".54>32#&#&73736'536'56&#5>3627>'56&'";#"#54&+53267>=46;j��QQ��jj��QQ��jc��LL��cc��LL��
UR)0

0
b	P

P9
(&NN
A	00!:D�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�U75
`
�

�
`
0`
^"=>
��
>E64=�����(|�"32>54.#".54>32>76&'..#".'.#"""1'&32>5<5>764'.#"&'>7>'.#"&'267>54&'.'>76&'.5467267>'.546327>77263j��QQ��jj��QQ��jc��LL��cc��LL���
+2H5`"		%8
&W-JuR+

7'HiB.1	$#

*m;4$!
�Q��jj��QQ��jj��Q� K��cc��KK��cc��K~
H24+
	0	'

	7Yr:94eP1

	!'+1
$4
�����'fs�"32>54.".54>324&+*#*#"3267.#"32654&'.'.'&65>5>54&'3265"&54632#"&54632%#54&#"#&73326=3654&j��QQ��jj��QQ��jc��KK��cc��KK��"
�5LL5	
B]]BB^
3
�4II44JJ4'88''88cK
	N

N
K

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�
@..@	E11EE1,/'
�11##11##1&----[L
	P

L

L

�����'@Wdp"32>54.".54>32"3232654&'.#5"3232654.#"32654&#"&54632j��QQ��jj��QQ��jc��KK��cc��KK����

6Y !

&$%e=

V�l=

Bu�]0&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��K!

   Y6

=e%%&�

<k�U

\�tA��&&&&`

�����'w�"32>54.".54>32#56&+"7&3267>7>'56&'&"#"&'.'.5&4=36'56&#&3267#"&'.'./.'56&+5>7>7>7373j��QQ��jj��QQ��jc��KK��cc��KK��-p
S
	
0
o

o




/	3
o�Q��jj��QQ��jj��Q� K��cc��KK��cc��K_p
	W
 �,
		MN
`
a
^%

�
:

o
@�����(GS_os��".#&;26=067>32;26'56&##54&#"#36?>32"32654&"&54632#";2654&#3"32>54.".54>32p
	`		`

	
d
`3qB"	
A>		]�&&&&


!_

_

@@�j��QQ��jj��QQ��jc��KK��cc��KK��B
��		�
�		�SD���!
	�?
	
#Q�&&&&`



?��		`
��?�Q��jj��QQ��jj��Q� K��cc��KK��cc��K	�����'I��q��"32>54.".54>32.#"3267>781>54&'.'.'"&'"&#*#*"#".'.'.'>7>7>7>7>7>7>7>7>7>7>7263>7'2""#4&5.'"4'.'.'.'.'.'"4#>010"#'"&#"&'>7<5233232381263263>7>3>7>3.5461>7>7>7>7>7>7>7>7467>7>7>7>7>3&7.'<#.'267263623:3223j��QQ��jj��QQ��jc��KK��cc��KK��X%`61BU2-"T,64J$" 	
		
	
�+O	


	 P		
8	@1~
	

			

"$a



	4n�	
		



2"�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�'*
	rG:i%W7"1[$�F%
�

		
		5U�
	 T.�!%=k=�c`�"32654&"&54632%'764/&"'.+"'&"2?;26?2?64/7>=4&''.#'4&'&'7>'./572676&/77>5736?3�B^^BB^^B6MM66MMP]:�J�J�9\\9�J�J�:]jBwT
�
TwAiiAwT�
TwAjp^BB^^BB^��M66MM66M�J�9\\9�J�J�:]]:�J��
TwAiiAwT
�TwAiiAwT�	�Im!^n�������64'&.#"6&'&"32673267>'32673267>76&'.'>54&'3267%624&'&47'.'&67>32%&'&67>32#".54>32'.'>762%"32>54.#".54>32'54&#"326764/`(()s) D%$E(t())
$3

D#$C	 2$�v!\!5S!!�

x


l3WtCBuW22WuBCtW3S5!]!  ��6_G**G_66`G))G`60V@%%@V01U@%%@U#NJP(s))((()s( D$+OG<	





	<GO+$E�!!T5 ]!�q
	
	

8CuW22WuCBuW22Wu[5T!!!] f)G`66_G**G_66`G)�%@V01U@%%@U10V@%��OJ�8o|���.#!'.'.'./.'#.'#"&+";1!'>?>'##81'!"&/#'0&/#"&546;2322!21"32654&#"&54632%"32654&"&54632��t�$%X$X�j5e
�{
f
.o�*�
�#$33$$33$!!  $33$$33$  !!�
E%%M�#�Sj�		�dZ
5��3$$33$$3�!!!!�3$$33$$3�!!!!��42'+0=FZht}2654&#"352"5463%!"3!2654&#!5!!2654&#"352"546&"326?'#";2654&2654&#"72"546�


4����i��3

�
JGX[�PP/



�

%U��������8


'�
HG
XY�


'lA��,CGKVafj|���%!"&5463!2#!"3!2654&#"&54632#5!32+!#"&546;%#33#7627764'&"3#53#"&/&4762#"&/&4762#"&/&4762#"&'&4?62#��3**f

���

**���

�$

G�{��kHH/B<���NJ<

���llll�LLfLL�LL�$$A**

��

*��*H
�.�
��$�R���C;��/�J<


��A$$�$�LLeLL�LMG$$��{16;@��������"0010;26?0&5061463>7>54.##'37#'37#'37#54632654&#""&#.#81"381812#.'.'.54>3226=4&#"3326764/&"4&+";26326?64'&"&"326764/7#";2654&#'26?64'&"3/1U@%/+'q'+0%@V0-Z`	ms
�
�
;C				
C'+ 8K+*K8 +'v				�FF>	c		c	>GF�FF�c		c		�FG�%@V07`"��"`70V@%�{,,;;�"�							
�"U1*K8  8K*1U�	c		c	SFF�				�FFFG�				�FF	U,��'+0<FR\2654&#"352"5463%!"3!2654&#!5!!2654&#"72"54632654&#"72"5463���		>		�������1n	��		>	����O���333 } ;t��"32654&'>54.#2.'.54>3#"&54670317067467>7>7>7>7>74&#"3265!4632#"&53ZC'1<DR�ba�RD<1&CZ3,N;"%6==6%";N-�nVWnH@
@H*[?@[[@?[��H32II23H}'CZ3$bmr46"-==-#54rna$3ZC' ":N-%jtp+!!+ptj%-N:"�-00)		
		)�@ZZ@@ZZ@3HH33HH3 E�&
)Zf��%26=4&#"#26=4&#"#26=4&#"#'.#"#76&'.#"#"3!267>=4&##!"&5!#!"&=46;7>!'&6763226=4&#"�qpʙN,�-O�+#7++7&,Q��6�6w���YPfOY�����������~
,FG,+*/��*+</*+�:���*�||�*�����k|�%Khv����!546;267>'.=4632;2%!54&+"&'.7>=4&#"+"!"&'.=+"&5463!2#%!5!37>"&=4632#"&=4632#"&=4632#"&54632|�`'�;)*;�'��]�
((�L�\#T

;

�m���9>
P



J



J

	
9x�(	+*;;*+(�"d
%''$
d��?G

		��
"��}
u"
�

�

�

�

T

T
���wUjt~26?>54&/.+54&#"#";#";32654&'532676&/7>'.+53#"&5467326=!'7!%764/!!�__�		�TT�__�@XaFGaX@�TT�L=<MD6	7COEE��PPo�QDDoOO��|_^			TT	 _
_�3$'55'$3�	TT	 ��''%<<%E
EPO\EDOP:Y\�)BO.'>54&'.#"3267326764/'#"&'.5467>32%34>35"_(,/,-r?>r-,//,-r><m,��$(h98h((++((h89h((++(�K!8L*0VA%o+m<?r,-//-,r??r,,0,)��)++)(g99h((++((h99g(�+K9 %@V1
��#�&7;JZjv�%"32654&"&5463232654&+"3!"3!2654&#!!'32654&+"3%!"3!2654&#!"&5463!22654&#"72#"&546

1//�e

���w�~~	"�:%%�&&�:��}uN



&P
��

Q
��-G		�%��&&R%�nRX&P�_
)Ll!"3!2654&'!"3!2654&'!"3!2654&7!":1!3:7>=3021>54&##*1#"'.#!0"#"&5463!2�b		�		�b		�		�b		�		��*'&��X&'$f	��c��				h				g	

	�(��'��'(��	����S���@DQim4&'<'4"1.'"&#0"1!"01"#8813!267201647465
0"1/0"1%!22320120126162?!%7%%���=��&���GC���֘GG!�!�&����� ����75�� 77���9�&h�E
!HSXj!"3!2654&!"3!2654&!!#4&#!"#"833!26?>7>54&#463!2!!'!7!"&'.5463!2#���Rt��

;

���6�Q:CI
����:�!F(D��xH�	��

h	��H�K��
SI
�

���v((IZ�! ;S..1270>7>4&"'.467>7>2#1"1#"&514638�+mro--orm+----
qePm�o---Z��

��$##$"UZX$++$XZU####��		+=		P8+,((((,+-ptp-q}dl�n-ptp����		^#Y\X#"#!''!#"#X\Y		=+		8P@ &O.#".#"31!2>54.1!"&5467>'.5463067>32#=0Mc8+PC6
<T.:!8L+@2WA&4GW��<T&"!	
/!
nA+M<%$>QgI7_G(,=%T<^:+L8!&AW2,N?*�mT<&B"!/;G6J,"b?Ig����.K.'%'.#"326?3267>'7>''.#"6&/%>?� ��t	$$	t�� 
�-
		��		
-�
��-�				�-�
tt
�.'��''��&}}&�'�!��}}!�(��(�
% �@"6i}������.#"3267>7>4&'.'"&'.467>2.'.#"32654&'>7>7>4&'"&'.467>22654&#"72#"&5462+"&546372+"&546372+"&5463%6#"&57>?�A�AA�A		A�AA�A	

	@�@@�@5iii54iji42e3�]]�3e3>g���hh���g_		

&		`

�		`

`		`

��		x
	
��

5jji5

5jij5�N



2eed3



3ded�		M���M	

	M���M��

J���J

J���]@				��				`				`				�		
=		Y
���=T_s�4.#1"&5463021281#"&51.#"326?!2676&'#"&/.546?4210#7">5!%+5467>32"&5463021281#"&514.#1`-Oi;		BtW2		��#		 d�$$d�1�@�c

�d
.�����

�*	���

\�zF

=h�O;iO-		3VuB		�1�HdP�d 9���d�
c����W	�

�@	�

Gy�]

O�h=` !19#"54&#!"3!26=;2654&"&5463!2#%#'5'573�
	W8(��(88(`(8W	
&&��

`

 � � 
V((88(�(88('U	
&%��


�
� ��
@����%/9DTYin~�.+54&#!"#"#313!26526=#%463!2!#!"&5!7!5463!232654&+"3#32654&+"3#32654&+"3#�7&`8(��(8`&7&K55K&��
@
��&�&�@�
�
��@

@

@@�@

@

@@�@

@

@@�%5 (88( 4&F%��5KK5 %Fz

 �%% ` @

�`
�

�`
��`��@
�

�`
��`��@
�

�`
��`�����-FY%.'>7>.'.#"3!2676&'%"/.7>32>?3267�,NkA0=
	*$*tEEt*$*	
=0AkN,"�"��9�9
"1	$>X::X>$	1��(Hd=O..O<dG*5$(<�6&isr.6785.rsi&6�<($((�
BB
+ahl53eO11Oe35mga�!%

$"���-Zx�";26?326=326=732>54.#"&'#"#"#5817.54>32#.'.7>7>54&.'>7�BuW2�{
&`
.K%@%L:BuW22WuB#Ba	
@&K
	-[u/(F]55]F((F]5�A&!.A&!.c#>	##>	#�2WuB:�{
`&
.&@&KL2WuBBuW2��a	
K%@
	-[u/B#5]F((F]55]F(8&A-!
%A.!	T=##	>##	���!1EY"13267132>54.#"&54675%".54>322#"#"&54>�P�i<��B/)([1P�i<<i���"
(���BuW22WuBBuW22WuB		Pp		#=R�=h�O1Z)��*/B<h�PO�h=�J
!(���2WuBBuW22WuBBuW2 
	qO		.R=#���l��
'.'76&/.#"./.+"'.#"326?;26?>7326?>/>?>=4&''.#"#'.'.'.#"'7>'.'./57>7>76&/73267>7>?3326?"32>54.".54>32"32654&"&54632�c	8
>		T
$W$
S			>8	cc	8>			S
$X$
T		>
8	co	8>S
	X	
S>8	bb	8>S
	W	
S>8	bb��.R=##=R..R=##=R.)G55G))G55G)5KK55KK5(88((88*
S.>	
8	bb	8
	>.S

$W$
T->	
8	cc	8
	>-T
$W$�	"S>8bb8>S"	W	!S>8bb8>S!	W#=R..R=##=R..R=#�\5G))G55G))G5DK55KK55K�8((88((8`3Mg"32>54.'.7>'2#"1#"&5146%/.#!"3!2654&#!"&546?>3!25]F((F]55]F((F]]4�<<34�<<
�		(8		K�,0��0,�#-8(@(8-
��
�9
@
9��(F]55]F((F]55]F(��<
44�<<34��		8(		5K�n!!n6#� (88(�#6��

��		�@�@'3?.#!"3!26764#!"&5463!2'"32654&"&54632�:!��5KK5`!:�J�	��&&`	�
�(88((88(%%&& K5�5K JG�%&�%s8((88((8�%&&%�����4=Xk54.#"";2>=4&%4>32#54&#"#%!54632+".=463:3!:322#"&'.5463 -Ni<<iN-(8-Ni<�<iN-8��#=R..R=#@^BB^@`�K55K�#=R.�.R=#
 � 
��&

& �<iN--Ni<�8(�<iN--Ni<�(8�.R=##=R.��B^^B����5KK���.R=##=R.�

`%11%���`�'/6M_"3267>54..'0417'.'3"&'7!.'.54>322#"#"&546I�`7&560*ef)074&7`�
�	��
�q
�z��6-Oh<<hO-6�		B^		q�7`�I0cb`-����-`bc0I�`7��@	�
( 48p1<hO--Oh<0q83�		^B		Oq����&6EM_t�.#"01"93261%>7>.'.'81<''.'.''.#7>#"&5465767.'.'7>7646'.'.#7>32�(c4+M���KB.	�")&�S
/�'	
!1"
�Ή.�M)�"9w�>! 0�46*vz6*#'c456'L!m(+�����.BG�!V\Z&�Z*.,V�q
1
��v	
�
�(z9( @s#37�/6.W#'+6!E$";@@#(,/258;>BEIMQ'.#!"3267>54&#7?#'73;7'3'3'3#33!37'7%#�	
��
	�
	�		�
�Q�GWAQ�QAWG�PP� ��WOArp=�G���=p1O��N���qfq���WJ��JW���	

	�		�#�	!;IACCAI;5�q��w�AA�3	<33_A �w���P��P V=��=V���5E!"3!2654&!!7!"3!3!2654&/5!2654&#!"&5463!2`�@

�

�@�@��(88(@�

@

�@(88
��

@
 
�@

�
� ��8(��(8'

'8(�(8� 

�

�����4O2654&#"2#"&5467"3021265>54.#0&'.54>32OqqOOqqOB^^BB^^BO�i<@cu45tc@<i�K,m`B2WuBBuW2B`n,�qOPppPOq`^BB^^BB^�<h�PT���<<���TP�h<�D2���NBuW22WuBN���3�CXn��<'40'045.#""1"00132>7<16056454654&".'>32#2#1"#"&54638'"32>54."&54632�#l��PP��k##k��PP��l#�D�ta !`t�DC�t`!!`t�C

(8
	K5.R=##=R..R=##=R.OqqOOqq�CpQ--QpCBpQ..QoC��%C_9:^C%%C^::^C%�		8(

5K`#=R..R=##=R..R=#�`qOOqqOOq�Dm2#"#"&54>7"081326>732>54.#"&'*#">7<54&'.54>32		@tX4		8aHj��P ;S20&F;)2j��PP��j-	
6#	
,F1Gy�]]�yGGy��		5F&		.Q=$�<i�P2\QE+T$*(
<i�PP�i<�@
00:CK&BuW22WuBBuW2�#DS.#!"3!26=4&#!"&=!!";;26?3267>'.##"#'.+!��#��#�K55K?&�&����n�.	�	.�n5/�/�]�]q��	�5KK5�	�&&�� �
��]]�
��]]`��@����'+/48<'.#!";3!2674&5326=4&%!!'!7!!!'!7!5!�'!��!'#&!@%�%@!&#�C@ ��`��$$$$'��@`�uu%`&��!!@&`$b`��``�@��``@`���`�'7G!"3!2654&#!"&=!5!!5!5463!2+"&5146;2+"&5146;2�(88((88
�
@��@��

�	`		`	 	 		 	�8(��(88(@(8�`

@ � @

				��

		���0>LZhv��������!"#"3!2654&#!"&546;3265463!2"&5463!2#%"&5463!2#%"&5463!2#2#!"&5463%2#!"&5463%2#!"&54632#!"&5463%2#!"&5463%2#!"&5463%2#!"&5463!2#!"&54637326=4&+"73#��@(8 (8K55K8&�&
 


�
��				�				�				��		�				�				�		`		�				�				�				��		`		��		�

�
-���8(@8(��5KK5 (8��&&�
��



��	

	`	

	`	

	��
		
`
		
`
		
�
		
`
		
`
		
�
		
`
		
�
�

�
�� $'7!"3!2654&#!"&57326?'7#"&'463!2��5KK55KK�����&�&��

����f

�f&&�f K5�`5KK5�5K���P��&&�i	

	i�����3&&�����Sc���.'>54.#".+";267:13021;267267>'>76&'>76&'>?<54&'+"&546;2#*1"30232#*1"30232#*1"302321+"&#.'0&5467>7>546322"32654&"&54632��g-8'8.Q
!`(88(`-;9pC�(9			

,/�;
`

`
�*$		$$)($		,)3#		
�Bnd*7I,E
�U��				q/$+N<#8'1�*8(�(8
0++ '%B��



1#		-3		/&		$	



�FQX)Y?94;"��@				 ����/CIO[g!"3!2654&#!"&5463!2#!"3!2654&'.#".#"!7!'7#2654&#"72#"&546`�@5KK5�5KK&�@&&�&`��

�

hS�h����X�nV�hX(88((88(&&&&�K5�5KK55K��&&&&
��

@
 �Dq^x�͓��f
��a�T@8((88((8�&&&&���&.<JXft����'.#!"3!2654&#!"&5463!1;'#"&515%"&546;2#"&546;2#463!2#!"&2#!"&54632#!"&54632#!"&54632#!"&54637326=4&+"73#�	
�`(88(@(8
6
��

�8(�` %��0		�		�		�		�	�		��	�		� 		�		� 		�		� 		�		� 		�

�
-���	
8(�(88(`
�|


�(8 &�� 				`				P				�				`				`				 				@
�

�
�������#/;GS~����4632#"&4632#"&'4632#"&%4632#"&4632#"&4632#"&4632#"&7"#./.#!"3!26?>7232654&#!.#"!'3267'".54>32#"&'.546?62�







�



�



��









�	&.$�#,)/-'-$$.(	&&�C #Q,,P$� #Q,,Q#�5]F((F]55]F((F]iN;��


��


�






{



��
�*J��+o@>m+�� L+&%���,�(F]55]F((F]55]F(�aG����'.4;.#"38126?3267>76&'	./81	%.'�	�@�v	C6��s����^�����
�����		d�	n|�	�l�Mi���m�����)7����/KYg�54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>328181%54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281814&#"326=>54&4632.#"#"&=326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281818((8##8((8##�

@

<


	


	�8((8##8((8##�

@

<


		

	��8((8##8((8##�

@

<


	


	�a(88(aB''B�(88(�B''Bw

C�

��





�a(88(aB''B�(88(�B''Bw

C�

��





��(88(�B''Ba(88(aB''B�

�=��

C�





����1F��3V	.7>7>7>7>7>7>76&.'>7.'.".'>3267>74&'.'&".'.#"7>7"'.'.'.#"267>73267>5.'.'>7>76&'.'&'.'.7467>7#.'>7>7:620"1"'.717>7>71>?4676211&'&47467>7� 	&%^36m.'6
@ 	&%^36m.'6��(PPP("���"(PPP("���"�	



	!
			�
	�




u



m@		#>%<E.(X2#��		#>%<E.(X2#��(PPP(n}j}n(PPP(n}j}n�	
			


	 					
A�



�


@����+Ig{���"32>54.#".=32>75101#".5049532>75101#".5049532>7".54>324632#"&54632#"&54632#"&Q��OO��QQ��OO��/<i�PP�i<Qfu;;ufQ<i�PP�i<Qfu;;ufQ<i�PP�i<Wen77neW��P�i<<i�PP�i<<i��











�3N6��6N33N6`6N3��4''4x'

'H4''4x'

'H4''4n##'44''44'� 


�


�


	���GS_c.#*.#"3267>7>53:7%.#"3267>7>534&'&'&676%&'&6765%�	��>#(.F`>(.F>#(.F
_>).F�
9h;:9h;%:g;:9h;1�� �`$��:&>1:;&"^�|:&>1:;&"�	�Y +*W!**WM +*W!**W�```���DR`t��"'#!"32;26=4&=405>7063>78181>7332>54.#46732+.%46;#"&#4&'313#1"&546;267.#"&'32654&+>32 1N(tB��6JJ6&%�& =i&M17T88T7�[&&[��&��&@�	`'&&-U%%U-y0NQ6JJ6QN0!:,,:�?4O_]CC]&��%% 
�\J4>M�SS�M�@08((80(8228�( !�
�8((8"'Q))Q'"��}c]CC]c}<i�PP�i<�!1M[g4&'%.#"32>57>#"&53267%%"#*'%.5467%623:4632#"&52#"&546* �_�` ** V&U�``�U&V *���
���`��



 &&%%�"4``4""4�� :,,: 4��EE>>```�

��

@f&&f���/Gbnz������.#"3021267>7326?>54&'"#"&'.7>?"/7.'.'%'&4?622654&#"72#"&546"32654&"&5463232654&#"72#"&5464632#"&4632#"&�.�M�!
%	�
-���h
�2eed2�K.
9.H�B)7-
���!//!!//!�!//!!//!�<&&&&@


M







I.	�
%-�m
�
-���P	.6���-9s
H'm6
-�
�/!!//!!/� /!!//!!/��`&&&&



�


�



���-2HVdu���#.'7>'..#"#"3!26=7>54&+7%2.#"#>.#"#>32'"#>32#.'"#>32.##!"&='463!2405&67>'8140181&45463201#"&'81"0%04#&67>'8181041&45463281#"&'1041'&05&67>'81401814&5463201#"&'818�V�	�ASa5As\?V!/p/!`!/p/���0YK<5DP,3]J4!9Sh�O11O#b?;_�%
';##;'
%Lv!/AP-N}nE@	��	�	`	�?


		
�
	

	
�

	
		 LJ.K6,Mj=/!	}!//!}	!/�2E)%>-"<R07]E'�*66*8HA3##�[E)G3UB;K��0		0�		y:-	;.	:.
;.	�:-	;.	��+2C'.#!"32673!2653267>?6&%#"&''!'7332673�	��	�@&@&@��
A**A
�`��`@��
U88U
����
&��w&&��&[$$��@�@��)77)����T�$J�14.10.132>76.'#".5467>'10>7067'#"&#.7>''.''.'#"&546?>?>?�A(/'/VS>$%.SvIk�P''E0V_�<_B#%3 '&

e0"
H
G@	
 		"1	@=�@^<hM-wGS�Y/����`8iQ1%=Q-=���<�=r(@R)An8G�`4p]=*<@<O^0`O-[ZV(�"7z.#\,86$).J %bW		qo.1,"Q3#L7.A : A!�,D"'&47>4&'."2764'&""'&4762"&'.467>2�****��

		[!  !!SVR!�2///�/�P��		

_/�///�-!RVS! !! �+jnj+,+jnj+��		

Z!RVS!!  !�7/�///�P��

		_///�/�2 !! !SVS �****
���(,048<JN\j'.'54&#!"313!26526=4&!5#73;#73#73#%546?>;#"&#3#4&+"#!7+'32�`&��%`	
8(&�&(8
������F!I��I@�jF����`
[�;
@���
�
��`
;�[
`Z��&&��
 (8�`&&�8( 3���`������  
���
@��@

���`
��
���+VZ^bfjnrvz#54&#"#54&#"#54&#"#"3!2654&##!"&546;326=3326=3326=323#3#3#73#3#3#3#3#3#��

�

�

�#22#V#22#
��

�

�

�

�
� ����������������`@

@@

@@

@2#�
#22#�#2��

�
@

@@

@@

@
�`@`@`````�```����(AEIPi�4632#"&%81=4&#!"3!26=81>4&!2.#154&#!".5463!5!!5!"&'5#!"&53!2!"3!7!"&5463!267>7461%%%%�8(�pIggI@Ig000���

�`
B.p�`��`���
�B.��.B9 �
��B^^B )��(88( 	@%%%%��`(8gI��IggI0$flfd
��

~(.B` @  @ ��.BB.�
@^BB^@8((87%B%����(5BNZr�����&>76..7>'&676&'.7>'7&676&.7>71"01&'&67>71>0#&'&67>7>'0"1&'&67#>7>1'.73>7816''.7>706161'.7>76016�b˵�'(M�cb˵�'(M��9V~C"#~��VV}D""��V�0

1
	$

SI�?JJ�?�2)b11*a�G-(?nkD>c
6Z83Q��(?H-
2>dlC3QY8
�(M�cb˵�'(M�cb˵���"��VV~C"#~��VV}D"�
1
	0
Y

�?JJ�?IJ���a12)b11*,1H?+Ik
bD=Y
P8E
?+1GucCIkOQ7
=Y
 `DT`l�.+";26=4&'#537'.+54&#!"31;326733267326=4&"&5463!2#"&54632!"&546327+.#"#.#"#"&=!26=32 

�
� `��*�8(� (88(8(%
D--D
�D--D
%(8�h

�

�&&%%�%%&&�
%
D--D
�
D--D
%
�(8��R
�

0	B��%�@(88(��(8`(8)77))77)8(�I
`

��
��&&&&&&&&�
)77))77)
`8(��	����(2;ENV_it~�����"32>54.#.'>7.'>70"#502.'.'>7:.'>7#>.'3.'>75*17>7'.'53'5>7##>3.'.'>73�g��NN��gg��NN��H� <19�B(BC"$-I#H&6Bu.7=|&H#I-�7.uB%=%O)��&I"�7;k+36 W"CB(�3+k; 6"I&��)O%���< �9<�8-!�8�!-�N��gg��NN��gg��N� 5e/
$7���!U2
�^&c;
�<-!4[*�
;c&�!-<%[\
�2`��1n:�f
2&
+M �
2U!�
&2
 M+)�:n1��
,`2$
/e5N��=s4BIQ*��4s=*QIB���� $(,04!2#!"&546"3!2654&#!3#735!5%35!5��%&�`%&

�

�` ``  ������%��%%�% 
��

�
@`@  �  �  ��  ����#!2#!"&54635!3535!5!5��%&�`%&:��`@ ����%��%%�%`  ``   �  @  ��`-148<ENRVZ!#37#7?4&#!"!732#!"&57546;3'375!'9>5!7%9!5!5!5���HH6lG$h
� 
fR��mm�%`&�`%`%��>>|�0�p00�������4�����`��`�@?? ]

��Z�``%lT�@%%�Tl%66�U++U*+���������`W  `  `  ��`+.26:'463!2!37!'''7/53!265''!5!5!5ii
�
k��&9�9�7F�����Fz`%�&`zImmc��`��`�`Z

��Z 11<����<g�T�@%%�T�g�``�  `  `  ����!$	#!"&54677"3!2654&#	!�ff
�`
&%�&%��������7��

�)%��%%�%������7%"3!2654&#����&%�&%b����`%��%%�%��`		3!265#!"&5	��``����
�
 &�`%��6���0��D�\

��\%%�`����`	'%%#!"&5	�..����&�`%�������C�@%%�`����`(,/37@I#37#74&#!"732#!"&57546;3'375!'9>5!7%96l�
� 
�Hwmm�%`&�`%`%��>>|�0�p00�������4���

���``%lT�@%%�Tl%66�U++U*+���������`��`)'''7/53!265'7"374&#!�F�����Fz`%�&`z��mm��
Ȏ�
� <<����<g�T�@%%�T�g�`` 
����
����	),.5467!'7!77"3!2654&#	!����������VV�Z&%�&%����������������KK%��%%�%������
'''7'7%"3!2654&#>�TT�����@&%�&%�HH������%��%%�%��`
%	3!2653!	#'%9!9.5�p%�&���@`�����4�`���@%%������)��`�����`
	3!2651'''7'7%�p%�&b�TT����`���@%%��^�HH������@���	 +.1594&'17''!7!"&5463!2!17'	!!'3535@��G0��VV��-@�%&�%��`�*��f@����0�   ��xxQCKK�Ll%�%%���7��������``�  @��� $('7'%77!"&5463!2'7!73535�q�������TTzK�-%&�%P__�`�   a������HHi%�%%����a���``�  @���4?BPW54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31/77@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<K4d{��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T8L4d|@���(5<'7'%77!"&5463!2.#"92654&#"3/77�D�������TTN		�%&�%5[�IggIIggIK4d{�;������HHC+)%�%%�2)��gIIggIIgXL4d|@���)@KN\'7'7754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"310DDDDDDD4�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<DDDDDDD
��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A'7'77/7'%77!"&5463!2.#"92654&#"30DDDDDDD�D�������TTN		�%&�%5[�IggIIggIDDDDDDD�;������HHC+)%�%%�2)��gIIggIIg@���	#1HSV32654&'.#"54&'1>3:9''!.54679!"&5463!2#"&'17'	!��-<T%-<T��^N/�gVV����%&�%7IgI3T����f@����T<.*T<.	��Q$-mYKK�!�%�%%�^<Ig5+������@���	<#"&'.#"/7'%77!"&5463!2.#"9�gI :�: Ig%D�������TTN		�%&�%5[�: IggI :�;������HHC+)%�%%�2)@���)@KN\533##5#5754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31  `` `��^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<@`` `` ���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A#53533##/7'%77!"&5463!2.#"92654&#"3 `` `` �D�������TTN		�%&�%5[�IggIIggI  `` `�;������HHC+)%�%%�2)��gIIggIIg@���4?BPT54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31'35@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<p���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T�  @���(59'7'%77!"&5463!2.#"91"&54632'35�D�������TTN		�%&�%5[�IggIIgg���;������HHC+)%�%%�2)��gIIggIIg�   @!506610'&#&106610'9�yy��yOs �cn�e_v�kp�6666��44#�0+!��.+ / @3>610'&1 sOy��yy�p���#44`5566 `5!!#!'7���   ��������  �� `3!'7! ర���pర  �`5
#% ��`  P����2��  �`3-  ��@���� �`
5!!#!��   ������  �� � �`3!!� ���p�`@@�@
32'46"74&+��(8��8(%��%�@8(�`���(8 &����S%@@�@
"74&#�(8��8(@8(�`���(8@ @ 5C533##5#59>54&'54&+"7#'46;2979"&54632` `` `�C]]C8(�(8�� ��%�%C]]C<TT<<TT `` `` �dEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T@ @)6533##5#5'46;2&"#"3:71'2654&#"3` `` `���8(�(8+L8!!8L+IggIIggI `` `` �����(88(!8L++L8!gIIggIIg@ @)7;9>54&'54&+"7#'46;2979"&54632'35�C]]C8(�(8�� ��%�%C]]C<TT<<TT��adEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T�  @ @*.'46;2&"#"3:71'1"&54632'35���8(�(8+L8!!8L+IggIIgg��A�����(88(!8L++L8!gIIggIIg�  `���1CTX.10>32.#"1032>10&'10#"&'7#"&'7267>57'.#"7467>3%SP1f�l:,`�^.JK�:l�f1PSKJ.^�`,�K5$`5K$��  #2kFTF<H<[*6FTFk2*[<H<�5K$`K5$���  `���,4;?.10>32.#"32>10&'#"&'7#7'"	SP1f�l:V5K��:l�f1PS�K5}$``$`��  #2kFTFVK5�6FTFk2�5K}$``$ ��  `���+9GU9210#".10>"1032>10.#19"&54632'2654&#"3152654&#"31l�f11f�ll�f11f�l`�^..^�``�^..^�`5KK55KK5(88((88(



�FTFFTFFTFFTF <H<<H<<H<<H<��K55KK55K 8((88((8@



`���!.;1210#".10>2654&#"351"&54632'2654&#"3l�f11f�ll�f11f�l5KK55KK5(88((88(



�FTFFTFFTFFTF��K55KK55K 8((88((8@



@ �`	%%!!%7'33' � ������ � �g��jj��g��@�@���������@ �`	%%!!���@��@���@�@�����`�`,BP^###5.54>32#"&'1'353537.'9%4.#"32>51'9#"&546324&#"32651Q�``�Q	+Jc88cJ++Jc80���``p�$9�&AW22WA&&AW22WA&@8((88((8 %%%%Q�``�Q08cJ++Jc88cJ+	��p``�9$�2WA&&AW22WA&&AW2P(88((88(%%%%`�`+###5.54>32#"&'14&#"3265Q�``�Q	+Jc88cJ++Jc808((88((8Q�``�Q08cJ++Jc88cJ+	O(88((88(s �` GUc	2?7'77'732654&#"'"'&47.54>32#"&'19"&54632'2654&#"31!�i



UO0O`?0?�7PppPPp�0P`P<9�
#=R..R=##=R.4Y@`�5KK55KK5(88((88(�i


UO0O`?0?�pPPppP7��0P`P<9�4.R=##=R..R=#
Y@`@K55KK55K 8((88((8s �`&3'"'&47.54>32#"&'12654&#"3�0P`P<9�
#=R./Q=##=Q/4Y@`�5KK55KK50P`P<9�4.R=##=R..R=#
Y@`@K55KK55K `$(,0;3!53546;2!#!"&53!265!33333'"354&+����%�%�` 8(��(8 %`%� ` ` ` �
�
�   %% @��(88(` ��%%@@����
  
 `!%03!53546;2!#!"&533333'"354&+����%�%�` 8(��(8� ` ` �
�
�   %% @��(88(``����
  
�``$(,0;3##!"&5#53546;233!265!33333'"354&+�@8(��(8@�%�%@�@%`%� ` ` ` �
�
�� ��(88(` @%&@ ��%&`@�� �� �� �
@@
�``!%03##!"&5#53546;2333333'"354&+�@8(��(8@�%�%@�� ` ` �
�
�� ��(88(` @%&@`�� �� �� �
@@
��@�	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�P?oR00Ro??oR00Ro?8cJ++Jc88cJ++Jc8 � �  �0Ro??oR00Ro??oR0 +Jc88cJ++Jc88cJ+`��@�+%1".54>32'5#3#35'2654&#"3?oR00Ro??oR00Ro/`@@�P�0Ro??oR00Ro??oR0�� �  �� �@	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�PS�l??l�SS�l??l�SL�d::d�LL�d::d�L� �  �?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�� �@+%1".54>32'5#3#352654&#"3S�l??l�SS�l??l�C`@@�P ?l�SS�l??l�SS�l?�� �   � @@"0#!!"&5463!#";#"&';"3!0&5461 �� ��(8/!0�0
% 0����`��8(p!/ ��`��%�� @@%%"&5463!#";!!0&5461!";# (8/!0� �� 0  8(p!/ �`��`� @@%38%#"&546;5!"3!37#"&5;'!01!"&5463'@��!/8(�@�``�� %
00�� �@@ � /!��(8���`��```��%0����@@� @@).#!#"&546;5!";#"&5463!01#'7����!/8( 0�P`` @@��`� /!��(8���``���@@3`����?]x�'?64/&"7'%#!"&546;46;46;232132762'54&+#!"&5#"3!2657%#"3!26=4&+54&+"32654&#"31NS��Si7		&		7S�ePC%� %% & 8( (8 & %s4&� 
 &��& 

�
�� @��@

 

@% &P				S��Si7

%

7S��cOt��%&�%%(88(%&`s&5��
%%
�`

 � �@�
 

 
 %& 				`����=Xe	''762754&+81#!"&=81#"3!2657>/&"%546;232#!"&=46;32654&#"3N��SijS7		&		7�PeC% &��% %%�%�&4s��& %@

��

@P				��Si<S7

%

7��Oct`& %& %�`&%@�5&s� &% 
 

 
				���`�5Vq~�%533##5#5!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3� `` `��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<�`` `` �&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T���`�5P]j%#53533##4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"32654&#"3�`` `` `% &��% %%!!8L+)��& %@

��

@P				�IggIIggI` `` `0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg���`�)Jer�%!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3'35(��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<p�&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T�  ���`�)DQ^b4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"31"&54632'35% &��% %%!!8L+)��& %@

��

@P				�IggIIgg��0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg�  ��� �=Xe546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �=J546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�& %@

��

@  %%� %% % &�				  &% 
 

 
 &�`%&�% &%  				��� �#Fan%'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				�h��hb &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �#FS%'7'#546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�h��h @& %@

��

@  %%� %% % &�				�h��hb &% 
 

 
 &�`%&�% &%  				��� �#Fan'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				@h��h��  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �&I546;232#!"&=46332654&#"3##!"&=#";'7'32654&�& %@

��

�				� &��% %%�h��h�%%  &% 
 

 
				  && %�`&`h��h��%�&��� �=Xel546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"37''�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				(��x�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				����x���� �=JQ546;232#!"&=46;32#!"&546;813!26=89'2654&#"37''�& %@

��

@  %%� %% % &�				(��x�  &% 
 

 
 &�`%&�% &%  				����x�	��� �=Xeimquy546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5!5!5!5!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				���`��`��`��`�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�  `  `  `  `  ��� �=JNRVZ^546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5!5!5!5!5�& %@

��

@  %%� %% % &�				���`��`��`��`�  &% 
 

 
 &�`%&�% &%  				�  `  `  `  `  
��� �=Xeimquy}���546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5%3#7353#7353!53#7353!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				0�```  @``  `�```  `  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��   `@  �`@    �`@    ��� �=JNRVZ^bfjn546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5%353535353!535353!5�& %@

��

@  %%� %% % &�				0�``@ @`@ `�``@ `  &% 
 

 
 &�`%&�% &%  				��   ``   �``     �``     �@� &-3!546;%!54&#!"!"&5463!2#?#"�
�%��`�
��
�0%&`&��v
`� 
�%  `

`��&`&%�@�0�
��@� 3!546;%5463!2!546;�%�&�� &`&�  
�`� &�%  `&%`���
�� 4?M%#53533##'!"&5!.#"74&#!"3!32654&'15463!2!9"&54632 `` `` ��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT� `` ` 
�gI(��&&��&#gI3T3`

`��T<<TT<<T��  +8%#53533###!"&5!.#"95463!2!2654&#"3 `` `` ��_&�)+L8!�&`&� �IggIIggI� `` `&��!8L+9@`&&`��gIIggIIg�� (3AE%!"&5!.#"74&#!"3!32654&'15463!2!9"&54632'35��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT��`
�gI(��&&��&#gI3T3`

`��T<<TT<<T�  �� ,0%!"&5!.#"95463!2!1"&54632'35��_&�)+L8!�&`&� �IggIIgg��@&��!8L+9@`&&`��gIIggIIg�  �@� &-159=3!546;%!54&#!"!"&5463!2#?#"!5!5!5!5�
�%��`�
��
�0%&`&��v
�@ �� ��`��``� 
�%  `

`��&`&%�@�0�
��  `  `  `  �@�  $(,!#"!"&55463!2!546;%!5!5!5!5��&�@%&`&�  
��� �� ��`��``��%�&`&%`���
�  `  `  `  
�@� &-159=AEIMQ%!"&5463!2#3!546;%!54&#!"7#"35%3#7357!5%3#73535%3#735��0%&`&��
�%��`�
��
�v
���``  `���``  `���``  @&`&%�@� � 
�%  `

`��
�   `@  �   `@  �   `@  �@�  $(,048<@!#"!"&55463!2!546;%35%35357!5%353535%3535��&�@%&`&�  
�� �`@ `���`@ `���`@ `��%�&`&%`���
`   ``   �   ``   �   ``   �@� &-43!546;%!54&#!"!"&5463!2#?#"'7''�
�%��`�
��
�0%&`&��v
���w�`� 
�%  `

`��&`&%�@�0�
�}��w��@� #!#"!"&55463!2!546;7''��&�@%&`&�  
��K��w�`��%�&`&%`���
3��w��@� &-159=3!546;%!54&#!"!"&5463!2#?#"3#7353#735�
�%��`�
��
�0%&`&��v
�``  @``  `� 
�%  `

`��&`&%�@�0�
�����`@  �@�  $!#"!"&55463!2!546;%3535��&�@%&`&�  
���   `��%�&`&%`���
���  �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!5!5�        %�%%� %         
�

� 
        ``�� ` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `  �  	�@`@DH3#53#3#3#3#53#%!"3#3#3#3#3#3#3!2654&#!5!7!5!�@@@@@@@@@@@@`� %@@@@@@@@@@@@%�%%`��  ��`� � � `   � �&  ` ` ` ` `  &&�&�� ` �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!!735�        %�%%� %         
�

� 
        � �� �` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `��``	�@`DH3#3#53#3#53#53#3#!"3#3#3#3#3#3#3!2654&#!5!�@@@@@@@@@@@@��`� %@@@@@@@@@@@@%�%%`�� � � �   � � @` &  ` ` ` ` `  &&�&����@`-V[32#!"&=35#535#535#535#535#535#546;7#3#33!2654&#!"#3#3#3#33'�@

� 
            
�``�     %�%%� %        @�@@@
� 

  ` ` ` ` `  
��``�� ` `  &&�&&  ` ` ` ��@@�@`!%)-159=AEJ32#!"&546;73535353535353535353535357�@%%� %%�``��@@@@@@@@@@@@@@@@@@@@@@@@`&� &&�&�```��  �    �  �      �    �  �    �@@S�  ` A5332#!"&546;533533533##5##5##5#"3!2654&+#5�  %%� %%  ` ` `` ` `  

�

  @  &�`%&�%             
�`

�
  �  �33#73#73#%3#!0"##5##5##5##5*1"3!2654&�  �  �  ��  � ` ` ` %%�%%�@@@@@@@@@@@@@@@%�`&%�&�  ` AEIMQUY5332#!"&546;533533533##5##5##5#"3!2654&+#5!5!5!5!5!5!5�  %%� %%  ` ` `` ` `  

�

  ����`��`��`��`��`�@  &�`%&�%             
�`

�
  �  `  `  `  `  `  �  �#'+/37;?CGK0"##5##5##5##5*1"3!2654&!5!5!5!5!5!5!5!5!5!5!5!%3#73#73#73#� ` ` ` %%�%%;�`��`��`��`��`��`��`  �  �  �  @@@@@@@@@%�`&%�&�` @ @ @ @ @ �@@@@@@@�  ` AEIMQUY]ae5332#!"&546;533533533##5##5##5#"3!2654&+#5!5%3#7353#7353!53#7353!5�  %%� %%  ` ` `` ` `  

�

  ��```  @``  `�```  `@  &�`%&�%             
�`

�
  �   `@  �`@    �`@    �  �?CGKOSW3#73#73#73#3#53#53#0"##5##5##5##5*1"3!2654&#535#535#53!5!5!5!5!5!   �  �  �  ��      � ` ` ` %%�%%��``````@����@@@@@@@�� � �  @@@@@@@@%�`&%�&��`@`@`�� � � �@`")3#!"&5463!!"3!265#"&=;'p�%� %&P��

�
�% 
v�`�%&�& 
� 

 %��
��@`!"3!265#"&=3;`��&%�%�& 
�`&� &% %��

�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`��`��`��`�`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@` $(,04;#!"&5463!3;!35'35!5!5!5!5!5`&�%� %&@ 
��������`��`��`��`�`�%��%&�&�
  `  �  `  `  `  `  
�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`@����` ���`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@`"&*.4;#!"&5463!35'35!5!5!5!5!5;`&�%� %&@�ࠠ����`@����` ���`
�`�%��%&�&�  `  �  `  `  `  `  ��
�@`+2%'7'#3#!"&5463!!"3!265#"&=;'h��h p�%� %&P��

�
�% 
v��h��hb`�%&�& 
� 

 %��
��@`!%37'7!"3!265#"&=3; h����&%�%�& 
��b��h��Z&� &% %��
�@`+2%#"&5463!;+7'7!"3!265'##"&=�

@%�
�h��hp��&%�%��v
 
�
�%��
@h��h��@&� &%@�0�
��@`!%#"&5463!;+7'7;�%&@&�%�h��h�
�&�&�%��%`h��h��`�
�@`'.33;#!"&546;77!"3!265'##"&=%3'`%�
� 

 ``p��&%�%��v
��@@@�%��

�
��``` &� &%@�0�
���@@�@`"3;#!"&546;7#73;`&�%� %& ``�@@�
�`�%��%&�&��``���@@3�
�@`*159=5##!3#!"&5463!!"3!265#"&=;'3#3#73#`���p�%� %&P��

�
�% 
v���``�``�``�`����%&�& 
� 

 %��
��� ���@` $;#!"&5463!3;357335`&�%� %&@ 
�� ` ` ``�%��%&�&�
������� `���@`")CRb3#!"&5463!!"3!265#"&=;'53326=33#535.5714632#"&57"326=4&#1p�%� %&P��

�
�% 
v�� /!!/ 7)@�@)7@0	
	
`�%&�& 
� 

 %��
��00!//!00*?A  A?*���	�		�	�@`,2AQ!"3!265#"&=53326=33#535.5;14632#"&57"326=4&#1`��&%�%�&� /!!/ 7)@�@)7�
���0	
	
`&� &% %���00!//!00*?A  A?*0�
���	�		�	�@`/BIM#5;##5353#5;#'#5;#3#!"&5463!!"3!265#"&=;'!���� �� ������ ����P�%� %&P��

�
�% 
v���` @@@`@@@@@@@�@@@��%&�& 
� 

 %��
���@��@`28<#373##5335#'#373#'#373#;#!"&5463!3;!�� �� �� �� �� �� �� ��@&�%� %&@ 
�� ` @@@`@@@�@@@�@@@��%��%&�&�
`�@��@`-@GTa.#"3265.#"326=3#!"&5463!!"3!265#"&=;'1"&5463271"&54632�
!//!!/��
!//!!/��%� %&P��

�
�% 
v�����/!!//!0@�/!!//!���%&�& 
� 

 %��
��P �@`06CP#"&546325%#"&54632!"3!265#"&=3;2654&#"3%2654&#"3��/!!//!
 /!!//!
`��&%�%�& 
��P�2�!//!!/�@��!//!!/P&� &% %��
� �@`")-159=AEIMQUY]3#!"&5463!!"3!265#"&=;'!!3535%35353535353535353535p�%� %&P��

�
�% 
v�����``����                   `�%&�& 
� 

 %��
�����@������  @  @  @  @    @  @  @  @  �@` $(,048<@DHL;#!"&5463!3;!3535%35353535353535353535`&�%� %&@ 
���������                   `�%��%&�&�
���` ������  @  @  @  @    @  @  @  @  �@`"),03#!"&5463!!"3!265#"&=;'
77'p�%� %&P��

�
�% 
v�� �� ��`�%&�& 
� 

 %��
��p���]]�@`;#!"&5463!3;%%7'`&�%� %&@ 
��@ ���`�%��%&�&�
��]�]]�@`#6=!!377#53#5'3#!"&5463!!"3!265#"&=;'�_@�� ]Fg*` {F��%� %&P��

�
�% 
v�e �dBn `)�AZ�%&�& 
� 

 %��
��@`,!"3!265#"&=3;!!377#53#5'`��&%�%�& 
���_@�� ]Fg*` {F`&� &% %��
��e �dBn `)�A�@`29F#5#"&54673#!"&5463!!"3!265#"&=;'2654&#"3�2HQ8<TJ6p�%� %&P��

�
�% 
v�pIggIIggI HR6JT<8Q�`�%&�& 
� 

 %��
��0gIIggIIg�@`"(#5#"&5467!"3!265#"&=3;��?[dEIg]C`��&%�%�& 
� �[_C]gIEd�`&� &% %��
	�@`")59=AEI3#!"&5463!!"3!265#"&=;'35335335!5%!5!5!5!5p�%� %&P��

�
�% 
v���     ���`��`��`��`�`�%&�& 
� 

 %��
�0@ �� @��  `  �  `  `  �@`$(,048;#!"&5463!353353357;!5%!5!5!5!5`&�%� %&@��     �
����`��`��`��`�`�%��%&�&`@ �� @`�
�  `  �  `  `  �@`")-393#!"&5463!!"3!265#"&=;'3'77'p�%� %&P��

�
�% 
v�`@ @�``II�``II`�%&�& 
� 

 %��
��P��``JJ``JJ�@`$(;#!"&5463!3;7'7'7''3`&�%� %&@ 
��`ii�`��iiJ@ @`�%��%&�&�
�jj����jj���`Adk#"3!2654&+.#".#"179:32+#!"&5463!'5#"&=!"3!26=#"&5467>329;'&&@&&,
7#.B�"7
 *8(`%� %&`� �%��

�
�(8$S9)�
v� %%%%%&B.k%4"(8@%&�&��%�
� 

@8(2
8M
��
���`<B:321#!"&5467>321#!"&5463!;.#";;�"7
 *8(��(8$S9&?%� %&@&�9 Aa%K5�
��%4"(88(2
8M#�� %&�&�%�R=<$5K�
�����"7J]d18181463463!###!"&54631"3!265!"&5897"3!2651!"&51%!"3!265#"&=;'�&&`�%%%� %%

�
�@%@

�
�@%���

�
�% 
v� %%�%%%&�& 
� 

&�@
� 

&�@
� 

 %��
������0BH463!;###!"&54634631"3!265!"&53!265!"&5"1%; &@&�%&&� %%%@

�
�@% 
�
�@%
�
�`%�%��%%%&�&&���
� 

&� 

&�
��
�����+2EL3265#"&=!"3%5463!+#!"&546;%;'!"3!265#"&=;'�
�%��
���`&`�%�%� %&��
v��

�
�% 
v�0�P
 %�
`��`&�%`%&�&p�
��
� 

 %��
������&,2%3265#"&=!"3##"&=!"3!26=;%;�%�&��&�� �&��&%�%
���
�`% %�&@��%�&� &%``�
@�
�@`!4;H%#"&546323#!"&5463!!"3!265#"&=;'2654&#"3*-<TT<<T�e�%� %&P��

�
�% 
v��.BB..BB.�T<<TT<.��%&�& 
� 

 %��
���B..BB..B�@`$*7%#"&54632!"3!265#"&=3;2654&#"3*-<TT<<T�u��&%�%�& 
���.BB..BB.�T<<TT<.�&� &% %��
��B..BB..B�@`")33#!"&5463!!"3!265#"&=;'7'373p�%� %&P��

�
�% 
v�p�0��00��0`�%&�& 
� 

 %��
���`�`��`��@`"!"3!265#"&=3;7'373`��&%�%�& 
��Ѐ0��00��0`&� &% %��
�``�`��`����`�'BIZ'!"3!;26=4&+54632354&'9!"&5463!;"&#""#"&=32+"&=463���&%`
�

�/!!/ $���

@%�.B
�v
0�
	�
	u+�&� & 

�
P!//!!7
��
�
�%��B.P
`�
��P	�		�	���`� C#"&=!"3!5467546325';'32+"&=46354632#54&#"3�&��&%@T<
�
���

�

B..B /!!/��%�&� &�	8<T�@
�@
�

�
P/AB.!//!P���`�8AHY%;26=4&#154&''!"3!5!"&5463!;"&#"1"754632#"&=32+"&=463@
�

$���&%`��

@%�.B
@/!!/�v
0�
	�
	  

�
0!7
K�&� & 
�
�%��B.0
`�0!//!0��
��P	�		�	���`� 8A#"&=!"3!546754632';'";26=4&#54&#"34632#�&��&%@T<
�
�� 

�

B..B /!!/��%�&� &�;U@
�p0
�

�
0.BB.!//!0���`� '*.2%'!"3!!'!"&5463!;'#"&=!73535���&%&�`����

@%�P�G�v
P��Ј   ��&� &@�B
�
�%�9���
�����``�  ���`�"%#"&5463!;';!73535��%&@&�pЀ
�p�`�    &�&�%�B���`�
�����``�  ���`�"=DQ%'7'77932654&''!"3!'!"&5463!;.#"9#"&=1"&54632�DDDDDDD�G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTyDDDDDDD#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%'7'77!"&5463!;.#"9;2654&#"3�DDDDDDD��%&@&�)+L8!?
�PIggIIggIyDDDDDDD&�&�%��!8L+9`�
�@gIIggIIg���`�18EL%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632/77(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTLK4d{ #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T8L4d|���`�"/6%!"&5463!;.#"9;2654&#"3/77��%&@&�)+L8!?
�PIggIIggIK4d{ &�&�%��!8L+9`�
�@gIIggIIgXL4d|���`�"=DQ%533##5#5932654&''!"3!'!"&5463!;.#"9#"&=1"&54632� `` `G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�`` `` �#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%533##5#5!"&5463!;.#"9;2654&#"3� `` `?��%&@&�)+L8!?
�PIggIIggI�`` `` �&�&�%��!8L+9`�
�@gIIggIIg���`�18EI%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�� #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�  ���`�"/3%!"&5463!;.#"9;1"&54632'35��%&@&�)+L8!?
�PIggIIgg�� &�&�%��!8L+9`�
�@gIIggIIg�  ���`�	*EL%#"&'7.54632932654&''!"3!'!"&5463!;.#"9#"&=!T<.��T<.�G)Ig5+���&%H��

@%�Ig
	-�v
�-<T��-<T�#gI3Ts�&� & 
�
�%��gI(�
����`�
28%#"&'7'.#"7!"&5463!;.#"9;9gI 8�:!Ig����%&@&�)+L8!?
��8 Ig�gI!:��&�&�%��!8L+9`�
���`�18EOS%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'3#35#5'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTl  `    #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�    @@  ���`�"/9=%!"&5463!;.#"9;1"&54632'3#35#5'35��%&@&�)+L8!?
�PIggIIggy  `    &�&�%��!8L+9`�
�@gIIggIIg�    @@  @@*7DHR%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'353#35#5�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT< @  ` �(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�  @    @@@ -7;%!"&5463!!2.#"9!51"&54632'3#35#5'35���&&`@�&)+L8!�_�PIggIIggy  `   �%@%�%�!8L+9�  �gIIggIIg�    @@  �@`")-159=AEIM3#!"&5463!!"3!265#"&=;'!5%3#7353#7353!53#7353!5p�%� %&P��

�
�% 
v���```  @``  `�```  ``�%&�& 
� 

 %��
���   `@  �`@    �`@    �@` $(,048<;#!"&5463!3;!5%353535353!535353!5`&�%� %&@ 
����``@ @`@ `�``@ ``�%��%&�&�
�   ``   �``     �``     �@`-@GT%#"&5463253#'##3#'/33#!"&5463!!"3!265#"&=;'2654&#"3�
!//!
  �\" ` ` """D��%� %&P��

�
�% 
v��/!!/�``�` ```�%&�& 
� 

 %��
��p�@`06C%#"&5463253#'##3#'/3!"3!265#"&=3;2654&#"3�
!//!
  �\" ` ` """D���&%�%�& 
���/!!/�``�` ```&� &% %��
� ����#3'!3;26=+"&=#!5%5!!�ٌ�F��%�% /!�!/��������@%&@ 0!//!0���������;26=3'!3!!!�%�%ٌ�F������@&%@�����` �@#.<3'!3;26=+"&=#!5!!;26=!!+"&=#!5�ٌ�F��%�% /!�!/�� ����%�%��@/!�!/��@��@%&@ 0!//!0���� ��� %& 0!//!0��` �@#!!!!+"&=#7!#+"&=��� �� �%�%ٌ���%�%@�� �0!//!0 ��@%&@`@�@$147>35#"&=!"3;26=+"&=#!5%57463!!5!3';'���%��
�%�% /!�!/��`&`�`��`9�99�
v�`�%�
�`@%&@ 0!//!0���&�f��� [[[U�
�`@�@#&)0+"&=#463!;#5'5'!"!#7#5#"&=�%�%�
@%��`���&` �@99�9��v
`@&%@�
�%�00�f�&����� [[[U�
�
`@�@
!-4?CGK3!53;265%!'5'!"7#75!463!;#"&=!+"&='!53535��� �/!�!/�� `���&``99`9��
@%���v
� �@��`���@��0!//!@�� �f�&���[[[[�
�%���
��000�    �  	`@�@%)-1<5'5'!"!#7#5463!;#"&=!535355!+"&5�`���&` �@99�9��
@%���v
����`��� %�%00�f�&����� [[[[�
�%���
���    �  ��  %%``� !/'7'#3#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/�h��h`��@&%@� ���  ���0!//!``� !'7'#3'#53!3#3;26=�h��h �ٌ��������%�%�h��h`�`� ���  �@%%@``�`!/'7'#73#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/ h��h����@&%@� ���  ���0!//!``�`!'7'#3'#53!3#3;26=�h��h �ٌ��������%�% h��h��@� ���  �@%%@ `� $!2#!"&5463!'!"3!2654&#!�&%��&&`,?��

 

�l�%�@%%@%��
��

�
 `� '!"3!2654&#!@��&& %&����%��%%�% `� )5463!!2!#!"&5%'!"3!2654&#!@
M?�
��`
��
�@��&& %&�� �
�
@ ��

`��%��%%�% `� 5463!!23!265! &`@�&�`& %�` �%�%@ ��%%` `7J5463!!2!#!"&55463!!2#1512654&#!'!"#'!"3!2654&#! 
M?�
��`
��
@&`@�&%

�l?��
 �@��&& %&���
�
@ ��

`@ %�%�@% 
�
�
 ��%��%%�% `,5463!!23!265!5463!!2#14&#!'&`@�&�`& %�``&`@�&%8(��@�%�%@ ��%%`@ %�%�@%�(8� `� 2!#!"&5!'7'%5463!!2%'!"3!2654&#!�
��
�h��h�@
M?�
�`@��&& %&����

`��h��h" �
�
@��%��%%�% `� !#!"&5!'7'%5463!!2�%��&�h��h� &`@�&��%%`��h��h" �%�%@ `� 1%!"&5!#!7'7%5463!!2%'!"3!2654&#!�
`
��h��h�`
M?�
�`@��&& %&���
`��
 h��h��
�
@��%��%%�% `� %!"&5!#!7'75463!!2�&�%��h��h�@&`@�&`%`��% h��h����%�%@@@=IZ%!"&5!"&#""754&#!'!"3!;26=4&+54632354&'9%5463!!232+"&=463�`
`.B
�&��@��&&�
�

�/!!/ $��
M?�
p�
	�
	�
`AA/P
ի%�%��% 

�
P!//!"6
k�
�
@��	�		�	@@A5463!!23!5467546325!32+"&=46354632#54&#"3&`@�&�`%�T<
�`� 

�

B..B /!!/�@�%�%@ ��%�9<T(�
�

�
P/AB.!//!P@@3<IZ%546315463235!3!"&5463!!212+"&=7354&#"%!54&#!'!"";26=4&+�
B.��
��`&&`@�&$

�
@�/!!/�`
�l?��
�	
�	
��`
0.Ba��
 %@%�%�
7!0
�

 �0!//!�@
�
���	�		�	@@6?5463!!23!5467546325!";26=4&#54&#"34632#&`@�&�`%�T<
�`

�

B..B /!!/�@�%�%@ ��%�9<T(�P
�

�
P.BB.!//!P `� #6C#"&54632!2#!"&5463!'!"3!2654&#!2654&#"3
-<TT<<T���&%��&&`,?��

 

�l<.BB..BB.?T<<TT<.�%�@%%@%��
��

�
��B..BB..B `� $1#"&54632'!"3!2654&#!2654&#"3
-<TT<<T��@��&& %&��P.BB..BB.?T<<TT<.��%��%%�%��B..BB..B  (+/3%!3!"&5463!!2!7!54&#!'!"!'3535��P��
F��&&`@�&`�`&��`
�l?��
�0�   ����
 %@%�%�b�@�@
�
���``�    %!"&5!'%5463!!2!73535`��&�p��&`@�&p�`�   `%`��`�%�%@����``�    6CP%'7'77'1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3PDDDDDDD�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�DDDDDDD(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +7%!"&5!.#"15463!!22654&#"7'7'77���&�)+L8!�_&`@�&PIggIIggIDDDDDDD`%`p!8L+9��%�%@�gIIggIIg�DDDDDDD  *7DK%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3/77�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<K4d{�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T8L4d|  ,3%!"&5!.#"15463!!22654&#"3/77���&�)+L8!�_&`@�&PIggIIggIK4d{`%`p!8L+9��%�%@�gIIggIIgXL4d|  6CP%533##5#51.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3@ `` `-	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�`` `` `(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +8%#53533###!"&5!.#"15463!!22654&#"3@`` `` ���&�)+L8!�_&`@�&PIggIIggI� `` `%`p!8L+9��%�%@�gIIggIIg  *7DH%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'35�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<p�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�    ,0%!"&5!.#"15463!!21"&54632'35���&�)+L8!�_&`@�&PIggIIgg��`%`p!8L+9��%�%@�gIIggIIg�    	$>K32654&'.#"'1.546325!3!"&5463!!2#"&'1!54&#!'!"��-<T%-<T,	
gI��
��x&&`@�&+5gI)G�X`
�l?��
*�T<.*T<.
(Ig���
 %@%�%�T3Ig#�@
�
�  
)5#"&'7'.#"7!"&5!.#"15463!!2�gI 8�:!Ig����&�)+L8!�_&`@�&?8 Ig�gI!:��%`p!8L+9��%�%@@`� -33#!"&5!75463!!2%'!"3!2654&#!3'5�
��
�``�`
M?�
�`@��&& %&��@�@@��

`��``@�
�
@��%��%%�%��@@�@`� !3#!"&5!7%5463!!275#�%��&``�@&`@�&��@@���%%`��``  �%�%@ �@@��@`Udkx5#535#535#535#535#535#535#5#"3!265#"&=#3#3#3#3#3#3##"&54679#!"&5463!';'"32654&#�             `

�
�%�            $/!!/%�%� %&`��
v��~"             
� 

 %�            B,!//!,��%&�&ఐ
��0�@`Y_l5#535#535#535#535#535#535#535#"3!265#"&=##3#3#3#3#3#3##"&54679;"32654&#�              �&%�%�&�             $/!!/%�
��p~"              &� &% %�             B,!//!,�
���@`Rcp32654&'535#535#535#535#535#535#532#!"&546;3#3#3#3#3#3#3"3!2654&#!12#"&546%/!!/$            �(88(��(88(�             �5KK5`5KK5����,!//!,B            8(��(88(`(8             �K5��5KK5`5K��@`Wd5#535#535#535#535#535#535#535#"3!2654&+#3#3#3#3#3#3##"&54679"32654&#              �5KK5`5KK5�             $/!!/%~"              K5��5KK5`5K             B,!//!,�pP 1#".54>32"'%2>54.#"3n"P,8cJ++Jc88cJ++%���2WA&&AW22WA&&AW22+Jc88cJ++Jc88c%��&AW22WA&&AW22WA&��` 3#".54>321"/'2>54.#"3n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp +@533##5#5#".54>327"/72>54.#"3� �� �E$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2 �� �� � %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&��` *?533##5#5#".54>321"/'2>54.#"3� �� �."P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+ �� �� �+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp 48#".54>327"/72>54.#"3!5�$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2� E %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&  ��` 37#".54>321"/'2>54.#"3'!5n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+� 2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�  �@`+I_hy9.54632#"&5'326=>54&#"154>322#!"&54639;54632354.#"!54&#""3!2654&#!�	
 /!!/�&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T`%%�%%� S		@@@!!//!!p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�&��&&@&�@`2;1.54632#"&59"3!2654&#54.#"354632�	
�(88(�(88(&AW22WA&`T<<TS		P8(��(88(@(8p2WA&&AW2pp<TT<p ����+Vr�%9.54632#"&5'326=>54&#"1!2#!"&546354&#"#"&=4>32'4.#"3126=46323"3!2654&#!�	
 /!!/`�(88(� (88(T<<T&AW22WA& !8L++L8!
	gIIg @%%�%%� �S		@@@!!//!!8(��(88(@(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &��&&@& ����@%326=>54&#"14&#"#"&=4>32!2#!"&54635�
	�T<<T&AW22WA&�(88(� (88(�S		S�<TT<��2WA&&AW2�8(��(88(@(8����`�.Ndz�#"&=4&#"!2#!"&546354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'"3!2654&#!T<<T(88(� (88(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%%�%%� �`�<TT<�8(��(88(@(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&��&&@&���`�D%9.54632#"&554.#""3!2654&#!&4=4632326=	
&AW22WA&(88(�(88(��T<<T�S		  2WA&&AW2�8(��(88(@(8�<TT<t##T�``
9=AEIMcl7!54&#!"373!265!%5#54>322#!"&5463937#37#37#37#37#354632354.#"!54&#"�`%� %0H%�%��`0�(&AW22WA&(88(� (88(@0@0@0@0@0@0@0@0@0@�x gIIg !8L++L8!@ T<<T�&&� @@`%% @@�p2WA&&AW2p8(��(88(@(8��@@@@@@@@@@pIggIpp+L8!!8L+pp<TT<
�`` $9B%5##!"&5!%53373373373373373754&#54.#""54632`80h8(� (8��`h0 0@0 0@0 0@0 0@0 0@0�8(&AW22WA&(8�T<<T�@@ (88( @@@@@@@@@@@@`�(8p2WA&&AW2p8(� p<TT<p�``*Lbk�1.54632#"&5'326=>54&#"154>322+".=4639;54632354.#"!54&#"";2>=4&#!	
 /!!/�&AW22WA&(8(F]5�5]F(8(  gIIg !8L++L8!@ T<<T`%#=R.�/Q=#%� S		@@@!!//!!p2WA&&AW2p8(�5]F((F]5�(8pIggIpp+L8!!8L+pp<TT<�&�.R=##=R.�&�``6?1.54632#"&59";2>=4&#54.#"354632	
�(8(F]5�5]F(8(&AW22WA&`T<<TS		P8(�5]F((F]5�(8p2WA&&AW2pp<TT<p@���+Zv�%9.54632#"&5'326=>54&#"1!2+".=46354&#"#"&=4>32'4.#"3126=46323";2>=4&#!�	
 /!!/`�(8(F]5�5]F(8(T<<T&AW22WA& !8L++L8!
	gIIg @%#=R.�/Q=#%� �S		@@@!!//!!8(�5]F((F]5�(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &�.R=##=R.�&@���D%326=>54&#"14&#"#"&=4>32!2+".=4635�
	�T<<T&AW22WA&�(8(F]5�5]F(8(�S		S�<TT<��2WA&&AW2�8(�5]F((F]5�(8����`�2Rh~�#"&=4&#"!2+".=46354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'";2>=4&#!T<<T(8(F]5�5]F(8(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%#=R.�/Q=#%� �`�<TT<�8(�5]F((F]5�(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&�.R=##=R.�&���`�H%9.54632#"&554.#"";2>=4&#!&4=4632326=	
&AW22WA&(8(F]5�5]F(8(��T<<T�S		  2WA&&AW2�8(�5]F((F]5�(8�<TT<t##T�``<R[%5!5!5!5!5!5!4&#!"3!265!5!54>322#!"&54639;54632354.#"!54&#"@�� �� �� %� %%�%�� ��&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T�@ @ @ %&��&% �p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�``)2%!5!5!5!5!5!5!5!4&#54.#""3!26554632`��@��@��@��@8(&AW22WA&(88(�(8� T<<T` @ @ @ (8p2WA&&AW2p8(��(88(�p<TT<p �`#8CN[%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3 %� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



 �`
)65463!2!#"&5463!2+!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



`�%%��8( (88(��(8 �%%`



 ����#8CN[%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



 ����
)65463!2!#"&5463!2+5!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



��%%��8( (88(��(8� �%%�



@�`#8CN[_c%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3!5!5@%� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



�� �` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



�  `  @�`
)6:>5463!2!#"&5463!2+!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� �`�%%��8( (88(��(8 �%%`



�  `   ����#8CN[_c%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3!5!5 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�� �8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



�  `   ����
)6:>5463!2!#"&5463!2+5!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� ���%%��8( (88(��(8� �%%�



�  `  
��`&*.26:>BFJN!#53!53#'#5#"&=!"#463!';'3#3#35#3#3#3#35#3#3#3`�`  �    �%��
 &`��
v�� ` ` ` ` ` ` ` ` ` @@�@@���%�
�`�&ఐ
���� ���� ��� ��� ��� 
��`!%)-159=AE!#53!53#%463!;;3#3#35#3#3#3#35#3#3#3`�`  �  ��&@&��
�  ` ` ` ` ` ` ` ` ` @@�@@���&�%��
���� ���� ��� ��� ���   �`1<IMQUY]aeimq%326=4&+54&#!"#";5!%"&=463!2#5!!2!54632654&#"33335333353353353333533#35@ (88(@%� %@(88( ��@%&�&%� ��
��




��             `   � �8(�(8�%%�8(�(8`` %�%%�&``@
��
�`



�������������
  �`
+/37;?CGKOS5463!2!#"&=463!2+5!%2654&#"33335333353353353333533#35�%�%��  (88(�(88( �``



��             `   � `�%%���8(�(88(�(8``



�������������
� ��'+/37CW^%#53326=#+#53#53#53#"&=3;%5#!53%5#!53%53#5!#53%#5#"&=!"#463!';'�@@  % 
 �@@`@@`@@` % 
  �� @ �� `  �`  � �%��
 &`��
v�   %  
       &  
`@@@@`@@@@�@�@@�@ �%�
�`�&ఐ
�
� ��#'+7COU%#5335##5335##"&=3;%5##5%5335%53#5!#53%5#"&=!"+5326=;`@@ @@�@@ @@� % 
    ��   `  �`  ��&��&`%  
�
�         &  
�@@ @@ @@ @@�@�@@�@ �%�&�`�� % 
 �
@�K%'7'##"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B�Xh��hh�K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @�)-%!2654&'1.#".#"13!'7'5'35B^8,`@'g?.R=#*6^Bh��h  �^B2P<P		3?#=R.O1B^�h��h����@`� K'7'#'#"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B��h��h���K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @`� )-!2654&'1.#".#"13!5'7'#35B^8,`@'g?.R=#*6^Bh��h  ^B2P<P		3?#=R.O1B^�h��h���@�� !EHLP#"&54671.54632>321+'32654&'1.#".#"1;!!73535l�5K9*pP?b.9R)7K5���yB^8,`@'g?.R=#*6^By9�И�Ј    K5-F
	PpH8M7
E-5K�� ^B2P<P		3?#=R.O1B^` ��``�  @�� "%)-32654&'1.#".#"1;!73535�QB^8,`@'g?.R=#*6^BQ��`�   ^B2P<P		3?#=R.O1B^@@���``�  @���@3!2654&'1.#".#"1%#!"&54671<54>32>329�*9K5 5K7)R9.b?Ppy,8^B��B^6*#=R.?g'@`�
F-5KK5-E
7M8HpP	P2B^^B1O.R=#?3		P<@���#!"&54671<54>32>32<,8^B��B^6*#=R.?g'@`�P2B^^B1O.R=#?3		P<`���#(-23'!3;26=+"&=#!5%5!!!'!!'!!'!�ٌ�F��%�% /!�!/���������*��L&&����@&%@ 0!//!0������  @  @  `���#;26=3'!3!!!!'!!'!!'!`%�%ٌ�F���������*��L&&��@&%@������  @  @  �``%#3'3#546;274&+"@��99r�
@
@`&@%���JJ@`

���&&�`�``%#'54&+"`��``�&@%�� ��@`&&`��3�	''7627'7>/&"��SijS7		&		7�Pe ��&4�-;��Si<S7

%

7��Oc� �5&�-��3�
764/.?'�7&47��� �jj���;75&8���� �j���`�`+BI	''76271'!"3!2657>/&"#!"&5463!;?#"&=N��SijS7		&		7�PeC���&%�%�&4s 
� 

@%��� ����v
;��Si<S7

%

7��Oct�&� &%@�5&s���

�
�%��� �а
�`�`/5'?64/&"7'%#!"&5463!;762;NS��Si7		&		7S�ePC%� %&@&��4&�
�;S��Si7

%

7S��cOt��%&�&�%�&5��

��� �#/CJNRVZ^k%9>54&#"!"&5463!;+593267'73265'!"3!75#"&=35'35!5!5!51"&54632�B..B�

@%�
@�

00�@%���&%PP@�v
��������`��`�p!//!!//�(.BB.("
�
�%��
"~00S%@�&� &�PP�0�
��  `  �  `  `  ��/!!//!!/	��� �#/59=AEIV%9>54&#"!"&5463!;+575#"&'1;!35'35!5!5!52654&#"3�B..B�%&@&�%@�00

@
��������`��`�p!//!!//!�(.BB.(B&�&�%��%B�00�5�
  `  �  `  `  ��/!!//!!/�`�!-CGKO\!2654&#!";5.54632975#"&'1#"&5463!2#!'5!5!5352654&#"3��

��

@B..B�00

 @&&�&&�`PP @�� ���0!//!!//!BB
�

�`
B(.BB.(~00~K%�%%�`%�PP��  `  `  `/!!//!!/���!-159F9>54&#"#"&5463!2#!575#"&'1!5!5352654&#"3�B..B@&&�&&�`�00

@@�� ���0!//!!//!B(.BB.(b%�%%�`%b�00�5  `  `  `/!!//!!/	�@�@"&*#5!!#!7!'5!!3'353535'35`����`��� ������� ` @`������ ��@��������������  �  @  �@�@#!35!!!3!#3#353535'35�@�@��@�����@��``   `������ �� �����  �  @  `@�@-5!!!'!!32+"&5463";2654&+`���'Ҍ�F��@�%%�%%

�

�0���� �@��%%%% 



`@�@	!!'!";2654&+`������F�%%�%%�@����%%%%`@�@	
+05:!!'!!32+"&5463";2654&+!'!!'!!'!`������F��@�%%�%%

�

�`���*��L&&�@���� �@��%%%% 



�  @  @  `@�@	"'!!'!";2654&+!'!!'!!'!`������F�%%�%%�`���*��L&&�@����%%%%�  @  @  `��-15!!!'!!32+"&5463";2654&+!5`���'Ҍ�F��@�%%�%%

�

����p������@��%%%% 



@```��!5!!!";2654&+��� �ࠠ ���%%�%%�```�� ����%%%%@@� -#!#!!%!532+"&5463";2654&+�@`@�  ��  � �%%�%%

�

� �� �@����%%%% 



@@� !%5!";2654&+`�  ��`%%�%%� � � ��%%%%@ �3!!7!3!7!!3'5�`�`�``���@��  ���@@�@���`` � ��� �@@�@ �!!775!75#`� �``���@@�� ��``  �� �@@�R�)'Nf3"'4672?64'#.'.'92012#"&546581:12654&'041.'9'.35"&7635"&'1X���5�T
�
	�

�[�!//!!/%1
<IG"5;%' �''�T5��"	�[
	�
	�
`/!!//!E4="8� o(4Sb= -XS�(+C3"'46781:12654&'401.'.'9.35"&7635"&'1X���5�T/,	
<IG#6:%' �''��T5��"bQ	5/
5<"8� o)3Sb= -X�Tl@*7	"'463!#"2?64'1"&54632'2654&#"3���5�T%�
�
	�

�[�!//!!//!@�T5��% 
�[
	�
	��/!!//!!/ �Tl@	"'463!2654&#"3���5�T%�@�T5��%�`4�@%4AN9>3!'"'46;#"2?%#"2?64'1"&54632'2654&#"3�	��*5�T%( 
�
	�]0�
�
	�

�[�!//!!//! �T5�	�% 
�[
	� 
�[
	�
	��/!!//!!/ `.�@*"789%"'463!2654&#"3�%�0�@`��5�T%� %��T�0 �T5��%��Tl@&AN[h533##5#57932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632  `` `(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT `` `` �P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B533##5#55'463!"/>54.#"972654&#"32654&#"3  `` `@%��5L!8L+8pIggIIggI `` `` �@%�T5�L8+L8!��gIIggIIg�Tl@5BO\`932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632'35�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT���P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�  �Tl@)6:'463!"/>54.#"972654&#"31"&54632'35�@%��5L!8L+8pIggIIgg���@%�T5�L8+L8!��gIIggIIg�  �Tl@5BO\c932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632/77�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TTLK4d{�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T8L4d|�Tl@)6='463!"/>54.#"972654&#"32654&#"3/77�@%��5L!8L+8pIggIIggIK4d{�@%�T5�L8+L8!��gIIggIIgXL4d|�Tl@&AN[h%'7'77'932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&546320DDDDDDD�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT�DDDDDDD�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B%'7'77'463!"/>54.#"972654&#"32654&#"30DDDDDDD�@%��5L!8L+8pIggIIggI�DDDDDDD@%�T5�L8+L8!��gIIggIIg����4	"'1&47621"'1&47'12764'1&"127'���&j%&&uB��
	

��5v!!!]!��///�/���&&%j&uB��	
		��5u!]!!!��.�///� �@C%1".54>32"'&4?62"'&4?'2?64'&"2?'S�l??l�SS�l??l�0�&j%&&�B�		
	��5�!!!]!�///�/� ?l�SS�l??l�SS�l?n�&&%j&�B�

		��5� ]!!!�/�///�	� �@	&1;DLa1###.'1>731#.'>731#>799.'3>71#3.'2>54.#"3 Cx..8� �8..xC �8..xC Cx..8� *3�3**3�3*��3**3��3**3pS�l??l�SS�l??l�S 4*3�J`��J�3*4� `J�3*44*3�J��h.wCCw.�.wCCw.Cw..wC Cw..wC��?l�SS�l??l�SS�l?�!�@	)3<FQ%#1%.'3&'>71#11311#>71'.'3>713.'17>71#.'1�D82�J��%+�?4c/7�?43�J�D9/7�?43�J�D9��.8�?42�J�D8!R�4/8�/u@K�02�IK�0/8R�443�JL�0/8��R�53�JL�0/8��R�5� �@Pz��%1>77'>77'>735#.'7'.'7'.'>32''#3771#"&''.546777#31''1!9.'7'.'7'.'35#>77'>77'>72>54.#"3

  

1�HH�1

  

1�HH�1-33-


  


 


  


-33-��S�l??l�SS�l??l�S�(

, ,

(-44-(

, ,

(-44-1HH1
$

' '

$

$

' '

$
1HH1�?l�SS�l??l�SS�l?� �@V��%#"&'9>77'>77'>735#.'7'.'7'.'1>321''#317797>54&'''3#77"671%.546777#3''2&'1 6�OO�6


  


6�OO�6


  


)).81



  



��(-81



  



�2992(

, ,

(2992(

, ,

(+4GN�6
$

' '

$
3}FN�6
$

' '

$
� �@'5J1#"&'>54&'1>32.5467!9.5462>54.#"3	18811�HH�118811�HH�1-33--33-��-33--33=S�l??l�SS�l??l�S�6�NN�6-44-6�NN�6-44-1HH11HH11HH11HH��?l�SS�l??l�SS�l?� �@"1>.#"13267.54>71.54679!>54&' 6�OO�6/!!/6�OO�6/!!/18817@@7��18817@@7�2992BKR++RKB2992BKR++RKB6�NN�63�PP�36�NN�63�PP�3� �@)6CP%1".54>32'2>54.#"32654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:��� �@!.;%1".54>322654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�S`� ?l�SS�l??l�SS�l?�� �@.CXer#"&5467.5463211".54>32'2>54.#"352>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�SL�d::d�LL�d::d�L+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�!8L++L8!!8L++L8!`�� �@.CP]#"&5467.5463211".54>32'2>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�S+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l?�!8L++L8!!8L++L8!`�� �@&/4:@EMbh.'77'>7'73#"&/%'?''57%>.'7!7''>322>54.#"3#'7r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0��*^�'CkkC'�^�\\..FS�l??l�SS�l??l�Sf)z)f�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~^l=.U�0ff0&U.=JJ�?l�SS�l??l�SS�l?�S��S� �@&/D.'77'>7'73#"&/%'?''572>54.#"3r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0�S�l??l�SS�l??l�S�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~�?l�SS�l??l�SS�l?@���*18IMQ3#5463!2#3#!"&=%#5.546753'>54&'#"3!2654&#!3#%3#`��
 
��
��
� 6JJ6 6JJ6)77) )77)��%& %&���``�``  `

`��`

`��Q88Q��Q88Q?**??**?�%� %%�%����@���+29=A3!5.54675!"3#!#!5>54&'5!2#3%>54&'#%35!35@&�6JJ6��%���%��6JJ6�&���@)77) )77)`��`� `%�Q88Q�%`��`%�Q88Q�%`��!?**??**?�����`���+:BJ_##5##5##5##5#53533533533533533##1"&'>32%.1067!510%032>10.#"1�        @@         @@ pKx..xKKx..x��><<> ><<>�@1i�rr�i21i�rr�i2�@@@@@@@@ @@@@@@@@@@ @�% %%��%T+QQ+��+QQ+|KZKKZKKZKKZK`���+:AH##5##5##5##5#53533533533533533##32671.#".1067>10&'�        @@         @@ ��/xIIx//xIIx/ SMMS SMMS�@@@@@@@@ @@@@@@@@@@ @f!!l!!��5nn5��5nn5`���+@U#5##5##5##5##33533533533533535#5#'1210#".10>"1032>10.#�        @@         @@ pr�i21i�rr�i21i�rf�a//`�ff�a//`�f�@@@@@@@@ @@@@@@@@@@ @�KZKKZKKZKKZK ANAANAANAANA`���+@##5##5##5##5#53533533533533533##"1032>10.#�        @@         @@ pr�i21i�rr�i21i�r�@@@@@@@@ @@@@@@@@@@ @@KZKKZKKZKKZK� �@';J[i�%1.5467.'13:77>71.'1.'1>7111>54&'9>7.'>54&'1.54>32#".'.'(=5 N.EVe6
B_wB 3[&-#.6(AXm<
0T")e86_'#/07�+4^PA4s>(.ZEy/:m1��?l�SS�l??l�SI�hGA(R�6,L/N:#>jM,* C}72�I&�7^E)'K" O/$0	.#6zC2�K&| 7I,(0yC�6-	'B#�P S�l??l�SS�l?1UvD� �@/>P`q.5467#*932631.5467.'#*#91>54&'17.'>54&'1.546797>54&'9�*%I�;DVd7
Gh�I=5 N.J]l;oP�3F�9!CycHBu/"T0
�&X16.(/0"?q,(3�Cz2)#.L7 DuV17R�6,L1R; �E7)!B#(-Mh>3)/O "K'(�/&5I�2?�OBKS,(0(>�Nn�C"'2E^k%14&>7.'79>7>79%'7>/&'&"6764/7''>"/&47>9%"32654&#|1G%62F#4\4$3$�4$3$�b�	<?a<���-
NT
!�c(-
G<TT<;UU;�G15&F20"�$4$3�$4$3���=@6=����
-
�!T��
.(
�T<;UU;<Tn�C'59DS%.'1#"&#&45463:3&45463:1'232654&51%%'>'"/&47>yH3U;H3T<G1A/�2F.B���IS8T
!��k�
(-

J�2H;U2I<T!1G/A�F2B.���I�b!T��l�{.(
K� �@Fe"32>54.#".54>32#"&'.#"3267>32#11.#"#"&546323267S�l??l�SS�l??l�SL�d::d�L3`RC8/1+L8!!8L+:78CR`3p?##G
.IggI$H##?@?l�SS�l??l�SS�l?�:d�LL�d:1E)!8L++L8!
)E1p)M# 
gIIg	
!#M� �@'b&.'.#"#"&546323267>7'&'.#"32>7.'.#"#".54>323267>71x?##G
.IggI$H##?GWa5S�l??l�S7eYI87:+L8!!8L+1/8_#M(/X( 
gIIg	
!
)C0?l�SS�l?4H,
!8L++L8!�``%,3%5"&51.1!09#3!5;265!+0%>1Oq*2	�3*pP��� ^B B^�� ]$�$��pP^cMLc_Pp�  `�B^^B6IJ��JH6�`` '%#!5#52651>1!013.1!30� �Pp*2	�`3*qO�$�]$�  �pP^cMLc_Pp��JI66HJ�``%,3<%5"&51.1!09#3!5;265!+0%>1#5#52653Oq*2	�3*pP��� ^B B^�� ]$�$�� @( ��pP^cMLc_Pp�  `�B^^B6IJ��JH6��� %�`` '0%#!5#52651>1!013.1!30#5#52653� �Pp*2	�`3*qO�$�]$� @( �  �pP^cMLc_Pp��JI66HJ�� %� ``(/6:>%3!53535"&51.1!01#3;265!+0%>135!5�`� `�Oq*2	�3*pP���^B B^�� ]$�$�d�����`�pP^cMLc_Pp�@�B^^B6IJ��JH6��@@`@@� ``$+%5#52651>1!013##!5.1!30��Pp*2	�`3*qO�`�@$�]$�`�pP^cMLc_Pp�`����JI66HJ ���-B#>327!#>7'!#".546712>54.#"3`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8! ���-#>323.'+>72>54.#"3`�(( �(-�(-p2WA&&AW22WA&&AW2��4�`x!�`x!�@&AW22WA&&AW22WA& ���-BL#>327!#>7'!#".546712>54.#"357'373`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+YPp  pP ��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8!�BoQ``Qo ���-7#>323.'+>72>54.#"357'373`�(( �(-�(-p2WA&&AW22WA&&AW2YPp  pP ��4�`x!�`x!�@&AW22WA&&AW22WA&�BoQ``Qo`�`ETcr�!#"&=#"&=#5354632154632!54632>323##"&'#"&=7"326=4&#!"326=4&#%"32654&#!"32654&#�`@@�@@p	
	
��	
	
@	
	
�	
	
�p0 0pp0 0p`	�		�		�		�	@	�
	
	�
	
`�`E!#"&=#"&=#5354632154632!54632>323##"&'#"&=�`@@�@@�p0 0pp0 0p*@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>7#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211"326=4&#1�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"�	
	
  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��	�		�	)@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>71#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��`	&/9CMW`lx����1'.''.'75.'1211&"#2372637*5162?1>??>71'.'1895"&#897"#979>717'1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3�	

	[	 	[	


	�!&D�D�D����`@@`$�``��� @+,@p<TT<<TT<5!	&$%" !      ! "$%&	!�
 

� ��>��`>"%%���f� g!"���` 1>1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3eD�D����`@@`$�``��� @+,@p<TT<<TT<~ ��>��`>"%%���f� g!"��`A =LYf!>/.+";267!+"&57.?>;2130&'"+*'4&#"3265#4632#"&5�	#8H((H8#	]9!9]�}`
	*H2)@T.!.T@)2G*l` 
�&%%&`

�0"'F44F'"0 +54,��

�
.BR.!/Q=##=Q/!.RB.	7jj7&&&&



�`A 0=.?>;2!;267!+"&?;2679%4&#"3265�)@T.!.T@)�qHHq�4,

`
 
&%%&�0!/Q=##=Q/!0 9GG9��

�
%%%%� �@-E`x��&'.5467>17167>7>#.7.&47"672632'11&7.'.'61&'.'.>7>76#"&'.314.#"32>5�
-"K(&"
#	: :" .>*[bf42\QC$QX_28mf_)��
	1-ULB/X*IZi:/7dVE%CDZk;8?l�SS�l??l�SS�l?�/`\X(&
&S,=p.$	)SSP''D*\`c2q':/A(8
,	/")U+0 �L)	/=K,;cP9=Qc9,4W?#	\S�l??l�SS�l??l�S� �@2Jbx�.67>54&'.1'.&67"63>32'1.'"32>7>1>7.'&#1'>7.74'1>7.47671�+gq{?7g`V%,fnv<

?s`J"Q-Ocs>$N*>r`K��@xgR*X/IU_2(�1[)#107h	0$":"?�)>'+U)(8#,
9#5 
%J$%B\7��"8?lU=$A[6�
8RkA0Q?.
&
�+-eim55�M4`+
7olh/D'+Y[\,���`�2Wj����>7.54632117'7'#".5467''7762#"&'"'&4?.546329>54&#"5#53#32654&+>7326=#";54&#".2>54.#"352>54.#"32654&#"3�%Z3B..B3Z%'D(-4:d�LL�d:4-(D'cd
#$
%/!!/% ` �O		O%<O-
	-O<%O		O%<O-
	-O<%�Fz[55[zFFz[55[zF8cJ++Jc88cJ++Jc8				_".
-.BB.-
."(D'1�HL�d::d�LH�1'D(�dc
$#
G,!//!,>  �@
	-O<%O		O%<O-		-O<%O		O%<O��5[zFFz[55[zFFz[5@+Jc88cJ++Jc88cJ+				���`�$Vi���762#"&'"'&4?.5463297#".5467''7>71.546327'7''>54&#"5#53#154632>7#"&546;.'1#"&=32#2>54.#"32654&#"3cd
#$
�-4:d�LL�d:4-(D'%Z3B..B3Z%'D(�%/!!/% ` �%<O-	
-O<%O		O%<O-	
-O<%O		�8cJ++Jc88cJ++Jc8				{dc
$#
�1�HL�d::d�LH�1'D(".
-.BB.-
."(D'y,!//!,>  �@-O<%O		O%<O-		-O<%O		O%<O-	
�+Jc88cJ++Jc88cJ+				� ``AVc54632#"&=.54671%7'7'#".54>75#53#2>54.#"32654&#"3�	
	
	'D(-4:d�LL�d:7_�I ` Cw/�Fz[55[zFFz[55[zF				��
	�3
	3�(D'1�HL�d::d�LJ�c=@  @3+��5[zFFz[55[zFFz[5@				� ``BO54632#"&=.54671%.'1535#332>54&'77'2654&#"3�	
	
	/wC ` I�_7:d�LL�d:4-(D'�				��
	�3
	3�+3@  @=c�JL�d::d�LH�1'D(��				��
#.?2654&#"31+"&=46;>74&#'*#0*1013267'p�
�

��

	��--�2<2�� �
 
�
	
���Z
Z�x ���&+"&=46;?6&/&2654&#"3��
�

��X/	

0��$�y
 q-`
	
`����`�-8NYk32+"&/7;0410*1#'7'''&6?6'4"#"7+"&=46;>74&#'*#0*1013267'HX�

�
BL�2<2VX!g	

--
�

��

	��--�	2<2�����
 
�#� �$�$,D$�
	
hZ
Z�8
 
�
	
���Z
Z�m �����_�.9+"&=46;?6&/&'7;26=4&+''&6?6t�
�

��X,	

-r-X7XA
�

�X7�,	

-X*�s
 
w-Y
	
Y�Z-n��
 
�p(Y
	
Z,���@�%.%3'''33'54.#"77754632�=d<no`?}^<=^}>`A!8L++L8!�`p��p`�gIIg[��TST@����@RP+L8!!8L+P��``````@0IggI0���@�#54.#"#7''33/3�!8L++L8!d>ss>�\`�~>&?_\=>�0+L8!!8L+0 ��VV��O` ��#1��`O#���=@M32>54.#"15->32#".546732654&'
2654&#"3�c}:d�LL�d::d�L9��@ 9Fz[55[zFFz[5kU%/!!/%P�����eG-4''44'����z)))"6
6����P



���)63->32#".546732654&'52654&#"3� ��@@(L�d::d�LL�d:jV/!!/���������'44''4)CXg�



�a.@$0<I%9#"&54675#53#%'7'77'7'77'7'772654&#"3?$/!!/%� �i	��8998988�8998988�8998988I�,!//!,ki� ��v898998989899898989989���a.@".:%535#3532654&'%'7'77'7'77'7'77?��i� %/!!/$��8998988�8998988�8998988�v �i�k,!//!,898998989899898989989��@�$0Kn���%9#"&54675#53#%'7'77'7'77546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"32654&#"3�%/!!/%� �j
�9889988�9889988��& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				��,!//!,Ki� ��V899889988998899_ &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�@��@�=Vbn{�546;232#!"&=46;32#!"&546;813!26=89535#3532654&'9%7'7''7'7''2654&#"32654&#"3�& %@

��

@  %%� %% % &@��j� %/!!/%�988998899889988)�				  &% 
 

 
 &�`%&�% &% ��V �i�K,!//!,899889988998899���				�� �"7DQ9.54>32'7#"&'12>54.#"351"&54632'2654&#"3@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5PppPPppPB^^BB^^B�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^�� � -:7#"&'11".54>32'2654&#"352654&#"3@��(b66b(�<iN--Ni<<iN--Ni<PppPPppPB^^BB^^B��`���"" -Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^�� �"7A9.54>32'7#"&'12>54.#"357'373@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5p0`p00p`0�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(�J�@��@��� � *7#"&'12>54.#"357'373@��(b66b(�<iN--Ni<<iN--Ni<p0`p00p`0��`���"" -Ni<<iN--Ni<<iN-�J�@��@����B� *4IVc'.54>32'810"9'9.'77972>54.#"351"&54632'2654&#"3�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5PppPOqqOB^^BB^^B@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^���B�'4A'17'>791".54>32'2654&#"352654&#"3�7|&\3΀|8�2\&�<iN--Ni<;iO--Oi;OqqOPppPB^^BB^^B ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^���B� *4IS'.54>32'810"9'9.'77972>54.#"357'373�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5p0`p00p`0@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(�J�@��@����B�'1'17'>792>54.#"357'373�7|&\3΀|8�2\&�;iO--Oi;<iN--Ni<p0`p00p`0 ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-�J�@��@����^�*?LY926323#".54677>772>54.#"351"&54632'2654&#"3���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5PppPOqqOB^^BB^^B-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(@pPOqqOPp ]CB^^BC]���^�%2?.'1791".54>32'2654&#"352654&#"3"���$Z2����3Y$�<iN--Ni<<hO--Oh<OqqOPppPB^^BB^^BLTH�� (NZH��( ��-Ni<;iN..Ni;<iN-`pPOqqOPp ]CB^^BC]���^�*@J926323#".54677>772>54.#"3157'373���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5p0`p00p`0-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(�I�@��@����^�&0.'1792>54.#"3157'373"���$Z2����3Y$�<hO--Oh<<iN--Ni<p0`p00p`0LTH�� (NZH��( ��-Ni<;iN..Ni;<iN-�I�@��@�` <T_c1233267>7>7#"&'.'.'"&#&!4&+"4&5461546;2#!"&=33!26=!35�
"
-2	$	]gc^B B^��qO Oq&��% 
 
�� �	.K,I@B^^B"��J6`H PppP�`%%@@

@   ` 3>B!4&+"33267>7>7#"&'"&'.'1!#!"&=35i�qO Oq%O!-2%S(?��&��%@��T93@PppP	'/�@%%@   ����!6CGKO9.#"326732654&'%5!#5#"%!#"&5467>3312#"&546357%'%%fBPp��` BfY��^BB^I7���


- �DD��DD�%%=PpP
	8`@@P=m&: B^^B:X@@



`��!llll���� -159>;35!#"&'#"&546321"32654&#357%'fB `@��pPBf%%'



  �DD��DD�=P@@`8	
PpP=%%



`��!llll	` �@8Lck�����?.54>32"67>7>7&'.041>7>7269716322>7.'>7>.'0"17>#1023:1#96'>7.77>7.72799&'.#"#36.67>54&'.9>27.'.5�!?l�SS�l?-(
	,]bf50`_^-
�/_02Q*X/$a9�.C%O2/Z+���
"&(K"-
#. ": :	>CQ\24fb[*)_fm82_XQ$�O+Y[[.T�G%PRU,+XVU*�/m<S�l??l�SF~3
*
" 
(0)j@=`"[D',@l*��.p=,S&
&(X\`/$2c`\*D''PSS)	q(A/:'8 0+U)"/	,
�^/$$$`?�@ 4Og��%>74'9'>7.'9'.74>79%.67>54&'.1'.&67"63>32'1%>7.47671>7>>7>7&'.85>27.'.5{"6-Q"<�F"#8*X/8>
�!-07/a24+gq{?7g`V%,fnv<

?s`J��	0$":"?�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�$T/8"&$T1&CK-bfh45�M,S&�)>'+U)(8#,
9#5 
%J$%B\7�7olh/D'+Y[\,��" 
*
" 
)'/$$$  @:P0'.35.'.'2&#&15065&1506561&410'32613>>10&'.1QC
*'>V]CIWWI))F[[E.4�� !}R<dH((Hd<<dH(�
	
�	��



����o	$�
  @ 7H617#0'.'.'5&150653>>10&'.19.'.'5`IW[E()IW]C')�� !}R<dH((Hd<<dH(�'*))��
	��
	
��o	$�
�
	


��@�@Fb�%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#7<54632#*#73>54&#".54>32#"&'732654&#"   )+Kk Kk�` � '7`�II�`77`�I5b)'a5BuW22WuBBuW2!$�8((88(	"%% \#=R..R=##=R.!=1PppPPp
� gG)+   � `�gGY)b5I�`77`�II�`7"!2WuBBuW22WuB5a(�(88((8 %%"
t=".R=##=R..R=#pPPppP2�@�@Flw%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#732654&#"17'7<54632#*#'7>54&#"7   )+Kk Kk�` � '7`�II�`77`�I5b)H=!.R=##=R..R=#G$�11PppPPp
138((88(5"%%`� gG)+   � `�gGY)b5I�`77`�II�`7"H#=R..R=##=R."=GK1pPPppP21(88((825%%"�`` )>KXe%1".54>32'2>54.#"351".54>32'2654&#"351"&54632'2654&#"3I�`77`�II�`77`�IBuW22WuBBuW22WuB.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7 2WuBBuW22WuBBuW2`#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%�`` )6CP%1".54>32'2>54.#"351"&54632'2654&#"352654&#"3I�`77`�II�`77`�I.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7�#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%��`�(773!267!%!#!"&5!3	7#5%1>101!067130&546101�
2�2
��;@K5�`5K@ @���Hx  ��U7�W/�$$ 5KK5�@ �� �@x8�llT�Ni]SMMzGZ��`�!#!"&5!3!1!0&54610 @K5�`5K@ @���H   xH5KK5�@ x�Tll�8x`_�@!$'5Dj%3265!#!>7.'1362!+977#5%1>101!067130&546101>7>>7>7&'.85>27.'.5�5K�� ��
	��
2}:����Hx  ��U7�W/�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &$� �� �@x8�llT�Ni]SMMzGZ�Z" 
*
" 
)'/$$$`?�@'Mb%3265!#!>297!1!0&54610>7>>7>7&'.85>27.'.5�5K�� ��
,[\^/$G"����H   xH�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &� x�Tll�8x�" 
*
" 
)'/$$$�@@  $3A]y37#130654&'#73>54&#"37#130654&'#73>54&#"1#0&546154&546320!1#0&546154&546320�>@$3Z3$[D''��>@$3Z3$[D''�@�@@ 0000 @�@�@@ 0000 @@`cCUllUCc�())(`@`cCUllUCc�())(��a��a`@0<$55$<0@`a��a`@0<$55$<0@`�@@ #1?53130654&''.54632#53130654&''.54632#��� @�@ �0000����� @�@ �0000�@@ c?a��a?c�!2552!`@@ c?a��a?c�!2552!@ ?CQ^kx�%9.5467.'#130671#0&546154&546320>32#"&'137#'3>54&#"2654&#"352654&#"32654&#"332654&#"3�
[$3Z
�@@ 0000 %/IggI#=x>@D''�<TT<<TT<				 				@				�4&B&9cCUl�a`@0<$55$<0@C7gIIg�@ ())(�T<<TT<<T�				@								@ )6CP]%1#0&546713953'.54632#1"&546322654&#"32654&#"332654&#"3��@ �/;("���0000�IggIIggI				 				@				Q	�a?ca:0R�@@`!2552!��gIIggIIg				@								� �@;?]z14132653#".505#53!#"&=35#330"32>5#535#;26?62;26=4&#!"1%2+"&/&"+"&=463!^BB^`(F]55]F(@� qOPp@�@#=R.EE.R=#   � ^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@ //B^^B ��5]F((F]5]]``PppP    .R=##=R.` ��B^RR^BIggI�T<5KQ##QK5<T� �@"@]z35#34132>5##"&50553;26?62;26=4&#!"1%2+"&/&"+"&=463!2+2&'&"63#"&=463!@�@(F]55]F(`^BB^` �^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@.B8( 9"n"9 (8B.@ ``]]5]F((F]5 ��B^^B//���PB^RR^BIggI�T<5KQ##QK5<T A/(8Q11Q8(/A��`3|���''"#*1"3!26506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>3�00(8K5`&7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>+8(5K&ZlZ??
^'
! l

		&
�

��`Gdw�1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=3!26506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#`&�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#&??
8)	���`K����''"#*1";35335335335335335326506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>31�00(8K5@ @ @ @ @ @  &7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>8(5K            &ZlZ??
F'
! l

		&
�

���`Gd��1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=;35335335335335335326506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#@ @ @ @ @ @  &�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#            &??
8)	`��`A�����''"#*1";#"&5#3!5#5326506.#"#"&#"''#"4&'.+"&'.532677'>74277'461>77'>77'>703267>79#!"&'3267>;.546;:3;2+%243267>7>300101#"&'.1'>39!!�00(8K5@�
 %��&7!HH$1��.21�

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>�`��8(5K@
% @&ZlZ??
F'
! l

		&
�

��@`��` $i��#"&5#3!5#5326506'#0#!;3!!1''1'"+;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=%>3232632#"&'0&'9@�
 &���&�n($D"��;#@ `��b!   �/a�		$P,F\  �(87�#	

$HH!7
	 H(;N@
& @&#@o31..-2
	"T#B0
21O8(	
v??
8)	`���!C3!2654&'14654&#".#"1%#!"&54671<54>32>329�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`��� #!"&54671<54>32>321`*6^B��B^6*#=R.7^/Hg�O1B^^B1O.R=#1)eH`���!I^m}��1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<3	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`���!Wu1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg`���4Q1#!"&5467<54>32.5467>73267'>7*#"&5<5>321)*6^B��B^6*#=R.3L9		T<
Ig*6

/1p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

`��"DSbq��3!2654&'14654&#".#"9%#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!0?N]l#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#`*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!I^m|�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�P	
	
`	
	
`	
	
`	
	
`	
	
`	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	 	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`��"Xv�����9.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�A	
	
`	
	
`	
	
`	
	
`	
	
�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��5Rap��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�A	
	
`	
	
`	
	
`	
	
`	
	
pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`����"DQ^kx�3!2654&'14654&#".#"9%#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��



`



`



`



`



`����!.;HUb#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#`*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�O1B^^B1O.R=#1)eH��



`



`



`



`



`����!I^kx�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"32654&#"32654&#7"32654&#"32654&#7"32654&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�@



`



�



`



`



p	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��



`



`



`



`



@	@		@	Y.-
�		

�
-
.`����'<K[jy�����9#!"&5467<54>321>32'<54&#">329"326=4&#.2?64'14&+";265%2764/&"32654&#"32654&#7"32654&#"32654&#7"32654&##*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
Y



`



�



`



`



yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.�



`



`



`



`



`����!Wu�����1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"32654&#"32654&#7"32654&#"32654&#7"32654&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�1



`



�



`



`



�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��



`



`



`



`



`����5R_ly��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"32654&#"32654&#7"32654&#"32654&#7"32654&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�1



`



�



`



`



pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��



`



`



`



`



`����.R37#737#7##"&54671.54632>321#32654&'1.#".#"1;7"Q�/RI}1>`p0�Tl5K9*pP8[4<T)8K5��B^6*gH/^7.R=#*6^B�Q� ��@`��K5-F
	Pp:/T<

E-5K ^B1OHe)1#=R.O1B^��`����+37#7332654&'1.#".#"1;7"Q�/RI}1�B^6*gH/^7.R=#*6^B�Q� ��`^B1OHe)1#=R.O1B^��`����.Xm|���7#37#32654&'14654&#".#"1;733#"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����1FUet�7#37##"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Qq�B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����`^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����.f�7#37#32654&'14654&#".#"1;733#"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����?]7#37##"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Qq�B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����`^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����"D[s�3!2654&'14654&#".#"9%#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!8Pl#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21`*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!CP]jw��3!2654&'14654&#".#"1%#!"&54671<54>32>329132654&104610#"&5132654&104610#"&57132654&104610#"&5�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��(()'PP 00�(()'PP 00�(()'PP 00�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�2*,"YY!::!*,"YY!::*,"YY!::`���� -:G#!"&54671<54>32>3214610#"&54610#"&574610#"&5`*6^B��B^6*#=R.7^/Hg��PP')((�PP')((�PP')((�O1B^^B1O.R=#1)eH�2"YY",* "YY",* "YY",*
`����!I^kx��������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32132654&104610#"&5132654&104610#"&57132654&104610#"&5"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T��(()'PP 00�(()'PP 00�(()'PP 00P	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��*,"YY!::!*,"YY!::*,"YY!::�	@		@	Y.-
�		

�
-
.	`����&:GTap���1#!"&5467<54>321>32'<54&#">3214610#"&54610#"&574610#"&5"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(��PP')((�PP')((�PP')((0	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��"YY",* "YY",* "YY",*�	@		@	Y.-
�		

�
-
.	`����!Wu������1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3132654&104610#"&5132654&104610#"&57132654&104610#"&5�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI��(()'PP 00�(()'PP 00�(()'PP 00�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg��*,"YY!::!*,"YY!::*,"YY!::`����4Q^kx1#!"&5467<54>32.5467>73267'>7*#"&5<5>3214610#"&54610#"&574610#"&5)*6^B��B^6*#=R.3L9		T<
Ig*6

/1��PP')((�PP')((�PP')((p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

��"YY",* "YY",* "YY",*`����!Cs��3!2654&'14654&#".#"1%#!"&54671<54>32>32954&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$
`���� P��#!"&54671<54>32>32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.`*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$

`����!I^����
+1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.	`����&:j�����1#!"&5467<54>321>32'<54&#">32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.`����!Wu��1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:354&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�Q
	


	

a
	


	

�
	


	

�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��$		$
$		$
$		$
$		$
2$		$
$		$
`����4P���1#!"&5467<54>32.5467>33267'>7*#"&5<5>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�Q
	


	

a
	


	

�
	


	

pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��$		$
$		$
$		$
$		$
2$		$
$		$
`@� X��%#"3!2654&+4&#".#"732654&'14654&#".#"11>7<14632>329.5467<54>32>71<14632>321++#!"&5467932654&+4&#".#"1#"1>329	%
!%�	�5K8)T<4[8Pp*9$	8('
 1
��")6*#=R.9	8('
 1
(/!	
*6^B�/!�!/�%
!%	/)G�%%	
K5-E

<T/:pP	
F-$;(8$'G+1O.R=#(8$-!/'O1B^!//!�%%			#`@� Ty%#!"&54671<14632>327132654&'1.#".#"1>71>32:329>54&'1.#".#"01>321�(/!�!/%8('
 1
*�B^6*gH/^7.R=#*6G/+%=\(
1 
'(8

*?f�-!//!,(8$
1 ^B1OHe)1#=R.O1"<-=&+)-$8(			D6`���Bd5463232+#"&=#"&5463'3!2654&'14654&#".#"9%#!"&54671<54>32>329	
P
	P	
P
	�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P
	P	
P
	P	
=
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`���A#";326=32654&+54&#"%#!"&54671<54>32>329P	
P
	P	
P
	`*6^B��B^6*#=R.7^/Hg�
	P	
P
	P	
O1B^^B1O.R=#1)eH`���"DS3!2654&'14654&#".#"9%#!"&54671<54>32>329";2654&+�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P	
�	
��
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eHS
	
	`���!0#!"&54671<54>32>329";2654&+`*6^B��B^6*#=R.7^/Hg�P	
�	
��O1B^^B1O.R=#1)eHS
	
	`���"DS`3!2654&'14654&#".#"9%#!"&54671<54>32>329%"326=4&#"&54632#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH-	�		�	�
	
	`���.=12654&#"%#!"&54671<54>32>329%"326=4&#
	
	W*6^B��B^6*#=R.7^/Hg��	
	
	
	
�O1B^^B1O.R=#1)eH-	�		�	
`���=EOX`ow���<54671<5<51045465>32>321#!"&'.5<517!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!`6*&<M,7^/Hg*6Z<��=Y  �����L��66KU��j�..��\�m
�
�@, ,�641O*J71)eHO1:OO:(		@		 _	`?		�	`���!(1:DMU>5!!1!.'>321!>7!'.#"1!>71!4671!>7!1!>7#!"&'���Z
	��	�/4��:*:  :
�|��a�	��	�3��1��1  		�
	 `	@@		@�`@�@CKU^fu}��������%1#!"&'.5<5<5467<5<50454651>321>321%!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!<54&#">329"326=4&#.2?64'14&+";265%2764/&�Z<��=Y6*&<M,
U5Ig#*6�� �����L��66KU��j�..��\�m
�
�@, ,�6UT<*D3/(�	
	
�
.
.Z	@		@
��.
.
�:OO:1O*J7-8gIF(O1(		@		 _	`?		��<T,#'
	3	@		@	Y.-
�		

�
-
.`@�@	AKU`ir����>71!!1!>5!1!6454&#"1.#"3.'>321.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!"326=4&#.2?64'14&+";265%2764/&cF��Z���7gI5U
 :�	D*<T(/��-�
����i"	 	�  	F	�1 1� �	
	
�
.
.Z	@		@
��.
.
 @	Ig8-	#,T<	

@	@@		�		 �	@		@	Y.-
�		

�
-
.`@� QYclt������%1#!"&'.5<5<5467<5<5<54651>32.5467>332671%!4&'!1!>7!1!.''3.#"1!.'!"&#9%3.#"!645<'1!.'"#!*'13!267!>7*#"&5<5>321�Z<��=Y6*&<M,3L9		T<
*6�� �����L��66KU��j�..��\�m
�
�@, ,�6dIg*6

/1�:OO:1P*J7

>_
;U		,A%O1(@		 _		`?		��gIJ/$

`@� 	U_it}�>71!!1!>5!1!>7>7#"&5467.#"3.54673:31.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!cF��Z���P
<T		9L3 :�6*gI1/��-�
����i"	 	�  	F	�1 1�  @	#		T<
^>


/JIg

@	@@		�		 �p��)<D/?'?1>7#"&5467"3267%4673:3#"&5/?G''II''I7''II''I��
<T		9LgI>^��6*gIJ/<T�4444Hhhhh�hhhhk		U;
_>IgL9+/JIg*6U;NNN�p��)1/?'?#"&5467>332671/?G''II''I7''II''I��^>IgL9		T<
�4444Hhhhh�hhhhk9LgI>_
;U		=NNN`�`,1>7#"&5467"3267%4673:3#"&5�
<T		9LgI>^��6*gIJ/<T�		U;
_>IgL9+/JIg*6U;`�`#"&5467>33267�^>IgL9		T<
�9LgI>_
;U		
�~B�(7FVeu��1"&54632'2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI<TT<<TT<			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg T<<TT<<T�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.	�~B�*9IXhx�2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.��B�/?O_p�";732654&+'#%6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1�		�]]�

�pp��gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-

	PP
	``@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��B�!1ARgw#&4546321#'"326=4&#1.2?64'14&+";2651!;2654&+"9";732654&+'#2764/&"1�RgIIgR]]]			
�
-
.Y	@		@	��	@		@			�]]�

�pp�G.-
@IggIPP@	@		@	Y.-
�			
	
		O
	PP
	``'
-.��B�*:J[k�6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		�]]�

�pp��IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��A�
.>O_t6454&#"!"326=4&#1.2?64'94&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg^�	
	
�
-.Y	@		@	��	@		@	Y.-
G		�]]�

�pp��IggI@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��B�)8GWfv6454&#"3&4546323"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	
	��B�
+:JYi6454&#"!"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg^�			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI@	@		@	Y.-
�			
	
		�
-.��
	
	�@`
,;L.#"3>32"326=4&#.2?64'1!2764/&""13!26514&#!�^<<^!J//J�	
	
�
-.�P.-
H

@

��`7II7*66*	@		@	Y.-

-.�
	
	�@`%4E.#""326=4&#.2?64'1!2764/&""13!26514&#!�^<<^�	
	
�
-.�P.-
H

@

��`7II7	@		@	Y.-

-.�
	
		 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">32>51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T	B'<T
�
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+'T<! @		@		I.-
�		
	�-.
	 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T.XQJ �
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+%1! @		@		I.-
�		
	�-.
 �MXbr���24.'54&#"463246324632#"&=4&#"3265463246324631%.#"1>75.#"'.#"1>79!9.'.#".#">79%.#".'1�!/K��d
	d��K/!!//!!//!!/


	%%/!!//!!//!�P)'U8 8U')�#sN!0�0!Ns#��
mI.BIIm
B.@%AsV40		04VsA%%%%%%�@

0		0&%�%%%%%
Wx��xW


Ehb;;bhE

2Q W3�Q23W  �O34&#"14&#"4&#"1#"&=463232654&#"4&#"4&#"4>754632`�/!!//!!//!!/%%	


/!!//!!//!!/K��d	
d��K%%%%%%�@%&0		0

�%%%%%%AsV40		04VsA ��&3@M132654&10132654&10132654&10%4610#"&5%4610#"&54610#"&5 (()'PP@(()'PP�(()'PP00 ��00 `00 P13(hh�13(hh��13(hh�EE�EE��EE ��&4610#"&54610#"&54610#"&5 PP')((@PP')((�PP')((P(hh(31�(hh(31�(hh(31���!132654.104>10#"&5�K55K(0((0( $$CCy2GG2YT;;TYEC00CE+..+���4>10#"&�(0((0(K55KyYT;;TY2GG	(#�4'4BJW�!!.77>7>721!.'!7!4&7!#"&'.'%!>7>2!.'!#"&'.''.10103267>106762103261067>10676&'."'1@`��+Qj���J��]7B,+*��iQ+��K	+,B�5ywk&	


.A,,;
@
;,,A.

	&kwy5.� 
`	 h	�

�	'	�9$7797 

 7977$9'#�4@.10103267>106762103261067>10676&'."'�5ywl&	


.A,,;
@
;+,B-


	&kwz4.!9$7797 

 7977$9�� /?7'?'?'?�((HH((H�''II''I�''II''I��??��??��llll�hhhh��hhhh��00��0�� '?'?'?�''II''I�''II''I��??��??��hhhh��hhhh��00��0@�/Uv9#!"&5467<54>32>32>32#'32654&+>54&#".#">3293!2654&'4654&#".#"1@^B��B^6*#=R.#M2"J-B^+9K5@@(88(	K5.F	+(=)/Hg	�K5 5K8)T<4[8Pp*9@1B^^B1O.R=#.=	$-^B	
E.5K 8((8!5K:+2%"eH	�5KK5-E

<T/:pP	
F-@�#C>54&'>54&#".#">329#!"&5467<54>32>321f3G9+^B-J")D6*Pv	$
^B��B^6*#=R.7^/Hg*6@J3.E
	B^-$	+"
#		kN
$`B^^B1O.R=#1)eHO1��@�,@>7>7#"&5467"7.54673:3";732654&+'r
<T		9L+$ (6*gI�~

�]]�

�ppJ.		U;
_>.MB(/JIg!J
	PP
	``��@�.>7>7#"&5467"7";732654&+'k
<T		9L0'y[��

�]]�

�ppR*		U;
_>0QhNR
	PP
	``��@�,@1>7#"&5467"3267%4673:3#"&5"&546;732+'�
<T		9LgI>^��6*gIJ/<T�

�]]�

�pp�		U;
_>IgL9+/JIg*6U;��
	PP
	``��@�-#"&5467>332671"&546;732+'�_>IgL9		T<
�F

�]]�

�pp�9LgI>_
;U		�
	PP
	```���.J4&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%5KK5(88((8 K5 (88(%%% 8(�%%


 %`��/L4&#"34632#!!265%4&#"134632#!!2651#1"&5133126514&#!5!29�K55K@%%%� �5K��K55K@%%&���5K�8((8@


�@�(85KK5%%%@K5�5KK5%%%@K5�`(88(


@8(@��2654&#"3PppPPppPpPPppPPp@��#"&54632�pPPppPPp�PppPPpp@��181"3"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��#"&546322654&#"3 5KK5)77) PppPPppPDK55KD--DDpPPppPPp@��1"&54632'"3PppPPppPB^^BpPPppPPp @^BB^@��2654&#"3'463"&5PppPPppP�K55KpPPppPPp�5K�K5@��12#"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��12#"&5462654&#"3%%5KK5PppPPppP@K55KK55K��pPPppPPp@��1"&54632'2654&#"3PppPPppPB^^BB^^BpPPppPPp ^BB^^BB^@��1"&54632'2654&#"3PppPPppP5KK55KK5pPPppPPp@K55KK55K@��1"32654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��2#"&54632654&#"35KK5%%PppPPppP@K55KK55K��pPPppPPp@��12654&#"72#PppPPppPB^^BpPPppPPp @^BB^@��1"&5463274&#265PppPPpp0K55KpPPppPPp�5K�K5@��1812#2654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��>32#"&'>54&'2654&#"3�5KK5)77) PppPPppP<K55KD--D��pPPppPPp
`��
/=M]n~���#"&546?>54.#"7.54>322654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=/!!/-�Du�YY�uD?l�SS�l?��	
	
�
9
9�\\\\�D\\\\�9
9

#!//!#
��!F%Y�uDDu�Y%F!	B"S�l??l�S"B- 	`		`	FN
O
����
O
N	`�� .>N_o���'!.54>32!>54&'2654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=--��
Du�YY�uD
��-	
	
�
9
9�\\\\�D\\\\�9
9
��
#"H&Y�uDDu�Y&H"#
r@	`		`	FN
O
����
O
N` �`)@M%1".54>32'2>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�H``(88(``H��%%%%` �`)>Ub%1".54>32'2>54.#"352>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�H``(88(``H��%%%%` �`):G132>54.#"4>32#".5!4&#"103265#4632#"&5`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\12#".54>"32>54.#"32>54.#2#".10>3"32654&#V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�8((8$$ %%%%` �`):G14.#"32>'#".54>32!32>10.#"3#"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<� 8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\%1".54>32'2>54.#"352>54.#"3"&5463210#52654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%` �`):G14.#"32>'#".54>32!4&#"10>5##"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<��8((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(88(``HH``%%%%` �`)>O\14>32#".732>54.#"332>54.#"!463210.5332654&#"`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%� `@"&55555'"32654&#3%5�@@ @�``�``�``�	
	
0`S����
��
�
�
�
-	�			��@�� `@	
 55%5%"32654&#3%5��`��@`��	
	
0`;��
��"�
��	�			��@�q����'Rg9#".'10&'.>7>'%>3210&'.'.>76.714.#"32>5Ag�L=o]G"b*D3%X�99$�7<~UHqK$��Bf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`75+ )e9=mZCM+5X=JYd4+ZSG(%$Nam70[N>+^M2k*J1Jbr;<AG'####q����*?>3210&'.'.>76.714.#"32>5qBf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`7]%$Nam70[N>+^M2k*J1Jbr;<AG'####��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5(88((88(`B^
	�	
�K5�		�K55KK55K 8((88((8�^B�0	
0
	�5K
	��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5%%%%`B^

�

�8(�

�K55KK55K@%%%%�^B�@



�(8

��`-:G326=4&+";26=4&#"+"&546;21"&54632'2654&#"3@
	^B@B^^B@B^
	K5@5KK5@5K��5KK55KK5(88((88(P	
B^^B��B^^B	
5KK5@5KK5`K55KK55K 8((88((8��`+9G"+"&546;232654&+";2654&#1%9"&54632'2654&#"31@
8(@(88(@(8

^B@B^^B@B^
��5KK55KK5%%%%@
(88(@(88(

B^^B��B^^B
�K55KK55K@%%%%t`��(5	3!26'&"62#!"&7"326=4&#2654&#"3��$5�5#��<		`�S`







���-@@-.""��  9�
�

�
��



t`��'%&"13!26%"&546327#"&=46312���<��#5�5#�Y






�.""��-@@ 



�

�

` �`)?L%1".54>32'2>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!Lcb66` �`)>Ta%1".54>32'2>54.#"352>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!Lcb66� �@)>KZix�%1".54>32'2>54.#"310>7>10'2764'&""326=4&#4&+";26526=4&#"3;2654&+"S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"07[(("	
	
Q	a
	a	��	
	
��	a
	a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z((r	`		`	��

		��	a		a	R		

	� �@)>S`o~��%1".54>32'2>54.#"352>54.#"310>7>10'2764'&"12#"&=461+"&546;21"&=4632146;2+"&S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"07[(("
	
	8	a	
a	��
	
	��	a	
a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Z((R	`		`	��		

��	a		a	2

		� �@)>M\kz�%1".54>32'2>54.#"310>7>10"326=4&#4&+";26526=4&#"3;2654&+"%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"079	
	
Q	a
	a	��	
	
��	a
	a	/
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z�	`		`	��

		��	a		a	R		

!
;</$%
D	� �@)>Sbq���%1".54>32'2>54.#"352>54.#"310>7>1012#"&=461+"&546;21"&=4632146;2+"&%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"079
	
	8	a	
a	��
	
	��	a	
a	
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Zi	`		`	��		

��	a		a	2

		(
;</$%
D` �`)?K%1".54>32'2>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!LcbqED4#([` �`)>T`%1".54>32'2>54.#"352>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!LcbqED4#([`����'%4&#"32654&7#"&54674632@%%#K55K##^BB^#8((8�Q&%��:$5KK5$:"C'B^^B'C@(88(@����0%4&#"32654&7#"&54674&546329@%%#K55K#"#pPPp#K55K�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����'4%4&#"32654&7#"&546746322654&#"3@%%#K55K##^BB^#8((8`(88((88(�Q&%��:$5KK5$:"C'B^^B'C@(88(��8((88((8@����0=%4&#"32654&7#"&54674&5463292654&#"3@%%#K55K#"#pPPp#K55K(88((88(�Q&%��:$5KK5$:2K+PppP+K 5KK5���8((88((8`����/C%#"&5467<=4632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

�Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<=4632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
@

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
@

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

� Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

� Q&%��:$5KK5$:2K+PppP+K 5KK5��`����.B%#"&5467<5463274&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
`

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����.K%#"&5467<5463274&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
`

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`���7#37##33"1}IR/�QqQ`�0p������`���`���#33�Q`�0p���������r�FWer10&'9'1067.'17.'10#"&1'&>7>7>32903261*#*97.10>3212654&#"3LbfgF
�WXzP
�^W;Mfk"$$"kgM;V_	

b

%%&&�+*P3
	.?E2$	
%ED8)/�  �/)8DE %tnNNnt% n�*

ּko�W�%%%%���r�+=J.'10#"&1'&>73265<'9'.#">3212654&#"3h^W;Mfk"$$"kgM;V_9'(8#

	
<%%&&.ED8)/�  �/)8DE(88(=%tnNNnt%

�%%%%��@�7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;231�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
�@� 7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;2312>54.#"3�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AqL�d::d�LL�d::d�LVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
��:d�LL�d::d�LL�d:	� �@)6CP]jw{%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"335S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







�  � �@+7CO[_%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"35S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


Ӡ ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







�  
� �@)6CP]jw��%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/ � �@+7CO[g%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"2654&#"S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


�!//!!// ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/	� �@?Tan{���'>32.#"#.#"3265133265<57#".54672>54.#"31"&54632!1"&54632%2654&#"3!2654&#"31"&54632'2654&#"3*OBO[00[OBO.2
j
2.
8((8`8((8U:d�LL�d:ES�l??l�SS�l??l�S�%%%%%%%%��



 



�!//!!//!J/%>,,>%/$$ (88((88(3'W/L�d::d�L/W'��?l�SS�l??l�SS�l?�%%%%%%%% 







��/!!//!!/ � �@@LXdp|>323>3217.#"813265133265817#".5467"&54632!"&54632%2654&#"!2654&#"2654&#"&02
j
20jIWd66dWIj8((8`8((8t?l�SS�l?�%%%%%%%%��


-


�!//!!//B#$$#@+F22F+@"(88((88(F)\1S�l??l�S1\)�%%%%%%%% 







��/!!//!!/� �@)6C%1".54>32'2>54.#"32654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@+%".54>322654&#"!2654&#"S�l??l�SS�l??l��


-


 ?l�SS�l??l�SS�l?�







� �@)6CG%1".54>32'2>54.#"32654&#"3!2654&#"3!5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��  ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�  � �@+/%".54>322654&#"!2654&#"!5S�l??l�SS�l??l��


-


��  ?l�SS�l??l�SS�l?�







�  � �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%".54>322654&#"!2654&#""&10326150S�l??l�SS�l??l��


-


�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%2>54.#""&54632!"&54632"15063210&S�l??l�SS�l??l�=





�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�!//!!// ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�<TT<<TT<.BB..BB. ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�<TT<<TT ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6:I%1".54>32'2>54.#"32654&#"3%35326=30+5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���_ (� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   ��( � �@".2%2>54.#"7326=30+5"&54632%3#S�l??l�SS�l??l�4_ (� 


���� ?l�SS�l??l�SS�l?�( 



  � �@)6CNU%1".54>32'2>54.#"32654&#"3!2654&#"3!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



���3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�<H<<H< ��� �@+6%".54>322654&#"!2654&#"032>1S�l??l�SS�l??l��


-


��3_NN^3 ?l�SS�l??l�SS�l?�







�<H<<H<� �@)4;?C%1".54>32'2>54.#"3!0#".0326135335S�l??l�SS�l??l�SL�d::d�LL�d::d�L��3_NN^3+PvuO�k��� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: <H<<H< ��    � �@"&%".54>32032>1%35335S�l??l�SS�l??l���3_NN^3�@��� ?l�SS�l??l�SS�l?@<H<<H<�    � �@,AP2#"&5#5!2#"&5#51".54>32'2>54.#"3'326=30+5�


@@


@0S�l??l�SS�l??l�SL�d::d�LL�d::d�L_ (�@


 


 ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�( � �@+:2#"&5#5!2#"&5#52>54.#"7326=30+5�


@@


@0S�l??l�SS�l??l�4_ (�@


 


 ��?l�SS�l??l�SS�l?�( � �@)-15%1".54>32'2>54.#"3'!5737'S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��j�j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  AHH� �@%".54>32!5737'S�l??l�SS�l??l�� ��j�j ?l�SS�l??l�SS�l?  AHH� �@)-15%1".54>32'2>54.#"3'!535335S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ����� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�       � �@%".54>32!535335S�l??l�SS�l??l�� ����� ?l�SS�l??l�SS�l?       � �@)-1@%1".54>32'2>54.#"335335"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%2>54.#"3#%3#"15063210&S�l??l�SS�l??l�}�� ��QS\\ST]] ?l�SS�l??l�SS�l?    �@ @@ @� �@)-1@%1".54>32'2>54.#"335335"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%".54>3235335"&10326150S�l??l�SS�l??l��݀���S\\ST]] ?l�SS�l??l�SS�l?     ��@ @@ @� �@)8<@MZ%1".54>32'2>54.#"3'"&10326150#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�HH�







� �@!%)5A%".54>32'"&103261507!7'2654&#"!2654&#"S�l??l�SS�l??l�TS\\ST]]1j�$j


-


 ?l�SS�l??l�SS�l?�@ @@ @�HH�







� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)8<@MZ%1".54>32'2>54.#"3'"15063210&#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @aHH�







� �@!%)5A%".54>322150&#"1067!7'2654&#"!2654&#"S�l??l�SS�l??l�TT]]TS\\�j�$j


-


 ?l�SS�l??l�SS�l?@ @@ @aHH�







� �@)-15BO%1".54>32'2>54.#"3'!57!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!57!7'2654&#"!2654&#"S�l??l�SS�l??l�� j�$j


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)-15BO%1".54>32'2>54.#"3'!5737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!5737'2654&#"!2654&#"S�l??l�SS�l??l�� ��jdj��


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)6CPTX%1".54>32'2>54.#"35"1063210&#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%2>54.#"7"1063210&'"&54632!"&54632'3#%3#S�l??l�SS�l??l�SHH<TT<H�





M���� ?l�SS�l??l�SS�l?� `` �







�   � �@)6:G%1".54>32'2>54.#"32654&#"3%35"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���0HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   � `` � �@#/%".54>322654&#"%35"&1032610S�l??l�SS�l??l�=


�̀0HH<TT<H ?l�SS�l??l�SS�l?�



   � `` � �@)6:>KX%1".54>32'2>54.#"35"1063210&#737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �HH�







� �@#'3?%".54>32'210&#"106737'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<HTjdj��


-


 ?l�SS�l??l�SS�l?� `` �HH�







� �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%".54>322654&#"!2654&#""&1032610S�l??l�SS�l??l��


-


�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%2>54.#""&54632!"&54632"1063210&S�l??l�SS�l??l�=





�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CPTX%1".54>32'2>54.#"35"&1032610#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%".54>32"&1032610'2654&#"!2654&#"'35!35S�l??l�SS�l??l�SHH<TT<H�


-


3��`� ?l�SS�l??l�SS�l? `` �







�    � �@)6:>KX%1".54>32'2>54.#"35"&1032610#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` aHH�







� �@#'3?%".54>32"&10326107!7'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<H<j�$j


-


 ?l�SS�l??l�SS�l? `` aHH�







� �@)6CPTX%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#7!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` �HH� �@+7;?%".54>322654&#"!2654&#"210&#"1067!7'S�l??l�SS�l??l��


-


�HH<TT<H�j�$j ?l�SS�l??l�SS�l?�







� `` �HH� �@!6CPY326=35!1".54>32'2>54.#"32654&#"3!2654&#"33#"&5�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�/!!/@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�P!//!� �@ ,8A#5!##"&52>54.#""&54632!"&54632326=�@`@B..BpS�l??l�SS�l??l�=





�/!!/@  P.BB.�?l�SS�l??l�SS�l?�







�P!//!P� �@!6CLP326=35!1".54>32'2>54.#"32654&#"33#"&535�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



�/!!/`�@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



�P!//!0  � �@ ,59#5!##"&52>54.#""&54632326=%3#�@`@B..BpS�l??l�SS�l??l��


�/!!/���@  P.BB.�?l�SS�l??l�SS�l?�



�P!//!P� � �@)6CV%1".54>32'2>54.#"32654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�0``0� �@+=%".54>322654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l��


-


C4$PGFS$4 ?l�SS�l??l�SS�l?�







�0``0� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!35!35`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�Ѐ�`�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/     
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632'3#%3#`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





M����@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�   � �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!'#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�jdj@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632''#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





jdj@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�HH� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!7!7'`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�j�$j@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@#/37=AEKW["32>54.7#"&'35#>;'"&54632#535#53;2##535#53#53"&546327'7S�l??l�SS�l??l���jjl== 


s@@@@�= @@@@0=


?jj@?l�SS�l??l�SS�l?��GH�� �



�   @   ` 



?GG
� �@
#*?Tan}#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/� �@
#*>JV#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





@   `   `  ` @ `�?l�SS�l??l�SS�l?�







� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"335!35S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!P��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �    � �@+7;?%".54>322654&#"!2654&#"2654&#"35!35S�l??l�SS�l??l��


-


�!//!!//q��`� ?l�SS�l??l�SS�l?�







��/!!//!!/�    � �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7!7'S�l??l�SS�l??l��


-


�!//!!//�j�$j ?l�SS�l??l�SS�l?�







��/!!//!!/�HH� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3'#'7S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�jdj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7'S�l??l�SS�l??l��


-


�!//!!//�jj�jj ?l�SS�l??l�SS�l?�







��/!!//!!/�HH.HH� �@)6=D%1".54>32'2>54.#"35"1063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �[ZCD�Z[DC� �@&-%2>54.#"7"1063210&7'7%'7'7S�l??l�SS�l??l�SHH<TT<HZ[[DD��[[DD ?l�SS�l??l�SS�l?� `` �[ZCD�Z[DC� �@)8?F%1".54>32'2>54.#"3'"15063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�[ZCD�Z[DC� �@!(/%2>54.#""15063210&7'7%'7'7S�l??l�SS�l??l�RS\\ST]]O[[DD��[[DD ?l�SS�l??l�SS�l?@ @@ @�[ZCD�Z[DC� �@)-1>K^%1".54>32'2>54.#"335!352654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LP��`�@



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:@    �







�0``0� �@'3E%".54>3235!352654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l���`�@


-


C4$PGFS$4 ?l�SS�l??l�SS�l?`    �







�0``0� �@)-1@%1".54>32'2>54.#"3737'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l�ijj jjeS\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)-1>%1".54>32'2>54.#"3737'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>32737'"&1032610S�l??l�SS�l??l���j�j�HH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>%1".54>32'2>54.#"37!7'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>327!7'"&1032610S�l??l�SS�l??l�j�djdHH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>K%1".54>32'2>54.#"3353351"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    ��/!!//!!/ � �@'%".54>32353352654&#"S�l??l�SS�l??l��݀���!//!!// ?l�SS�l??l�SS�l?    ��/!!//!!/� �@)6CGK%1".54>32'2>54.#"351"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!dj�dj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ �HH� �@#'%".54>32'2654&#"7!7'S�l??l�SS�l??l�S!//!!//�j�dj ?l�SS�l??l�SS�l?�/!!//!!/�HH� �@)-1>K%1".54>32'2>54.#"3737'1"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�_/!!//!!/ � �@'%".54>32737'2654&#"S�l??l�SS�l??l���j�j�!//!!// ?l�SS�l??l�SS�l?AHH�_/!!//!!/� �@)07BI%1".54>32'2>54.#"37''!7''!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�LE[[DD��[[DD�3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�ZZDDZZDD�<H<<H< ��� �@!,%".54>3277'!77'032>1S�l??l�SS�l??l�DD[[��DD[[3_NN^3 ?l�SS�l??l�SS�l?�DDZZDDZZ�<H<<H<� �@)8?F%1".54>32'2>54.#"3'"&10326150#7''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]TF[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @ZZDDZZDD� �@!(/%2>54.#"72610#"&1507''!7''S�l??l�SS�l??l�RT]]TS\\�[[DD��[[DD ?l�SS�l??l�SS�l?�@ @@ @ZZDDZZDD� �@)6=D%1".54>32'2>54.#"35"&1032610#?''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HHE[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �ZZDDZZDD� �@&-%2>54.#"2610#"&10?''!7''S�l??l�SS�l??l�SHH<TT<H�[[DD��[[DD ?l�SS�l??l�SS�l? `` �ZZDDZZDD� �@)-1>%1".54>32'2>54.#"3737'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l�ijj jjdHH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"37!7'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l��jj��jj�HH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"335335"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    �� `` � �@'%2>54.#"3#%3#"1063210&S�l??l�SS�l??l�}�� ��PHH<TT<H ?l�SS�l??l�SS�l?   � `` � �@)-1@%1".54>32'2>54.#"37!7'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l��jj��jj�S\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1@%1".54>32'2>54.#"37!7'"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%".54>327!7'"&10326150S�l??l�SS�l??l�j�djcS\\ST]] ?l�SS�l??l�SS�l?AHH��@ @@ @� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,8'77''/77''72>54.#"7"&54632�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S!//!!//0��?l�SS�l??l�SS�l?�/!!//!!/� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L<TT<<TT<.BB..BB.0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,877'7''77'7''".54>32'2654&#"�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S<TT<<TT0��?l�SS�l??l�SS�l?�/!!//!!/� �@$9N[hu�65'.'..'&&'7>71".54>32'2>54.#"31"&54632'2654&#"352654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%%



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 







� �@#7CO[g&57>7>>7667'.2>54.#""&54632'"&54632'2654&#"!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=(88((88(%%%%


-


(/W	8

8	W/�?l�SS�l??l�SS�l?�8((88((8 %%%% 







� �@$9N[h65'.'..'&&'7>71".54>32'2>54.#"32654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@#7CO&57>7>>7667'.2>54.#""&54632!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=





(/W	8

8	W/�?l�SS�l??l�SS�l?�







� �@f{�����9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#1>3#"&'.'.'.7!#"&'.'.7>7212654&#"3!2654&#"3DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]T��C4

*



*

4C�n



 



z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@G[i����1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150>3#"&'.'.'.7!#"&'.'.7>722654&#"!2654&#"'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\�C4

*



*

4C�n


-


i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@dy�1.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]Tz
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @� �@FZh623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @� �@f{�9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'326=30+5DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�S_ (�z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�( � �@G[j1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"7326=30+5'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�4_ (�i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�( ���.b54&#".#"4&#".#".32>5"&'.765463234632354632354632#�/!)
/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/		!//!�/!,/"G^vH1D*+Jc8�YHOtS2V5jPp��0�2WA&� d`=#81"&'.76546323>714632354632354632d&AX1[s*/N3
p2 2WA&YHOtS2V5�PL��0L0�� �`.b4&#".#".#"54&#".32>5"&'.764632354632354632354632#�/!!/
)
/!!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW20�!//!`		�!//!�,/"G^vH1D*+Jc8�YHOtS2V5J��P00���2WA&�@`@654&#"#4&#".32>54&#"#54&#"#` 0n
1L/
 j?2WA&  0P0��4V
3RuO"1<&AW2��0���-a4&#"54&#"4&#".#".32>5"&'.7646323463234632354632#�/!

/!

/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/ !/	!//!/!�,/"G^vH1D*+Jc8�YGOuR3
V5J��p�������2WA&� _`654632354632#81"&'.764632346323 &AW2Zt*/L1
m0  xx�����2WA&YHOtS2T4G��p��`��1<J�#"3!2654&'2654&'>54&'>54&+>.#"93#"&54632654&#"3132+32+32+32#!0<5261>7>3209`�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$* %�`%/!
/!	(	(!/<}fA3KW#H  � 
�
�`



�   ��� *$RF.6Ys> ` �`1<J%!2654&+532654&+532654&+532654&+>.#"1##3#"&54632654&#"31@�0pPpPp�	+&"&v���&% 



    B~c=.FR$G/� %`%�`



@��1<J�#"&5463!22+#".'.9'3#"32#"&5463132654&+532654&+532654&+532654&#!02132>&'0&9@�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$*`%�%/!
/!	(	(!/<}fA3KW#H  �
�`
�



�`   ��� *$RF.6Ys> ` �`1<J!2+32+32+32+#".'.1##3#"32#"&54631@�0pPpPp�	+&"&v���&% 



`   B~c=.FR$G/�%��%�



@��3n%32654&'2654&'1>54&'>54&+>.#"1#";3067>32132+32+32+32+'#"&5463h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

/!
/!	(	(!/<}fA3KW#H %��%@/G$RF.<cB   @
`
` �`:32+32+32+32+'#"&546;067>32��pPpPp0�

�v&"&+	   @
`
/G$RF.<cB@��3n3221+#".'.1#"&546;73032>&'132654&+532654&+532654&+532654&+#"3h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

�/!
/!	(	(!/<}fA3KW#H %`%@�/G$RF.<cB   @
��
` �`;32654&+532654&+532654&+532654&+#";032>&'1��pPpPp0�

�v&"&+	�   @
��
/G$RF.<cB>����6j.32>=4&#"14&#"54&#".#"#7'7'3"&'.76463234632354632354632#`/b":R'AHL%8cJ+/!
/!
/!(	,�h��h�Zt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�!/	!/	�!/	$h��h� YHOtS2V5j��p��0P�2WA&��`:>3234632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h���p��PpP�2WA&YHOtS2V5:h��h�����7k37'#54&#".#".32>=4&#"14&#"5"&'.76463234632354632354632#��h��h�/!(	!//b":R'AHL%8cJ+/!
/!
Zt*/N2
p1   &AW2�h��h!/	/!��,/"G^vH1D*+Jc8�!/	!/	�� YHOtS2V5j��p��0P�2WA&��`;354632354632#"&'.76463234632!'7'7@  &AX1[s*/N3
p2 h��h��PpP�2WA&YGOuR3
V5J��p0h��h���>m%:32>=4&#"#54&#"#4&#"#4&#".'7'%#".'.7614632>32>321>32`2WA&   1p
2N/$_Eh��h +Jc8%LHA'R:#b//!	(!/
!/
!/ &AW2�P0P��P��5V3RuN>Th��h���8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``;%.'.764632346323546323546327'7`Sm(/N3
p2   #=Q/h��h XCOuR3
V5J��p��PpP�0TA'!h��h�����8g%7'74&#"#4&#".32>=4&#"#54&#"%#".'.7614632>32>321>32�h��h 1p
2N/*tZ2WA& +Jc8%LHA'R:#b//!	(!/
!/
!/�h��hr��P��5V3RuNHY&AW2�P��R8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``954632354632#"&'.76463234632'7'� &AX1[s*/N3
p2 h��h�`pP�2WA&YGOuR3
V5J��p��h��h���.b54&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&� @`24&#"#4&#".32>54&#"#54&#"#@ 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2PpP�����(S��.#".#"1.54632>3254&'1>54&#".#"1.54>3:>3254&#"14&#"54&#".#".32>51"&'.76463234632354632354632#)-
)T<1<T!#gI5Ig#+5!8L+9+L8!5+�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2?)Z.<TT<.Z)�G)IggI)G']7+L8!!8L+7]���".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&��`� Cv>54&#".#"5463214632>54&#"*#".5467>32'4&#"#4&#".32>54&#"#54&#"#�B.#7

/A/!

/!!/#U;&?<T#+5bFG)Ig6*  2p
3N/*s[1XA&  �(.B%B.(N!/!//!x>&<T#T<%?%T3Gf#gI3T���0��5V3RuNHY&AW2PpP ����	Bw3#5377'7#53#554&#"14&#"54&#".#".32>5"&'.76463234632354632354632#1��g� �4�g� ��/!
/!
/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�� �k�� �k���!/	!/	�!/	/!��,/"G^vH1D*+Jc8�YHOtS2V5j��p��0P�2WA&@����	F73#53'7#53#54&#"#4&#".32>54&#"#54&#"#`��g� @��g� @ 1p
2N/*tZ2WA&  U�� �k�� �k{��0��5V2StOHY&AW2PpP$����Bx3#53'7#53#554&#"54&#"54&#".#".32>51"&'.76463234632354632354632#9��g� ��h� ��."

."

.")	
!//b":R'BGL%9cJ*��Zs+/M3
p1   %AX2�� �l��� �k��ʿ!/!/	�!/	/"��,/"G^wG1D+*Jc9�YGOuR3
V5j��p��/O�2WB%D����F3#53'7#53#5%4&#"#4&#".32>54&#"#54&#"#��g� ��h� �� 1p
3M/*tZ2WB%  �� �l��� �k����/��5V
3RuOGY&AW2PpPP ����+Z�.54>321'70"1'7.#"701#'754&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�!8L+Sq!ODIgEN!qSW."

."

."(	
!//b":R'BGL%8dI+��Zt*/N2
p1   &AW22+L8!Sq!NEgIDO!qS���".!/	�!/	/!��,/"G^vH1D*+Id8�YGOuR3
V5j��p��0P�2WA&@����+^.54>321'70"1'7.#"701#'7%4&#"#4&#".32>54&#"#54&#"#�!8L+Sq!ODIgEN!qS7 1p
2N/*tZ2WA&  2+L8!Sq!NEgIDO!qS���0��5V
3RuOGY&AW2PpP~����7n#'73>32>32>321>32#".'.7612>50=4&#"#54&#"#54&#"#4&#".3��h��h�,!/
)!/
!/+Jc8%LHA'R:"b/2WA&   1p
2N/*tZ�h��h$/!�	/!	/!�8cJ+*D1Hv^G"/,� (BW/88�P0PpP��5V2StOHY��`:>32354632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h��АpPpP�2WA&YHOtS2V5:h��h�����6n3'7'7#>32>321>32#".'.7646322>50=4&#"#54&#"#54&#"#4&#".31��g��g�
)!/
!/+Jc8%LHA'R:#b//!,r2WA&   2p
2N/*tZh��h�	/!	/!�8cJ+*D1Hv^G"/,!/%�(BW/77�P0PpP��5V3RuNHY�``;354632354632354632#"&'.764632!'7'7#�   &AX1[s*/N3
p2h��h����pPpP�2WA&YGOuR3
V5Jh��h��`>m%>50=4&#"#54&#"#54&#"#4&#".'7'%#".'.7614632>32>321>32�/R<#   1p
2N/(mSh��h+Jc8%LHA'R:#b//!!/
)!/
!/!*AT-77�P0PpP��5V3RuNDX"h��h���8cJ+*D1Hv^G"/,!//!�		/!.!�@`@;%.'.7646323546323546323546327'7`Sm(/N3
p2   #=Q/h��h@XCOuR3
V5J�АpPpP�0TA'!h��h����`.h54&#"14&#".#"54&#".32>54632354632#"&'.764632354632'7'1�/!

/!)

/!!//b":R'AHL%8cJ+� &AW2Zt*/N2
p1 h��h�".!/	�!//!��,/"G^vH1D*+Jc8P�/WB(YGOuR3
V5j��p��h��hR�@`@954632354632#"&'.764632354632'7'� &AX1[s*/N3
p2 h��hPpP�2WA&YGOuR3
V5J�А�nh��h"��`7g%2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32p2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/ (BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��@`@24&#"#4&#".32>54&#"#54&#"#` 2p
3N/*s[1XA&  p�0��5V3RuNHY&AW2PpP�����!5l�>54.#"5.546321'>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32Z!8L++L8!5+#gIIg	:T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/X="+L8!!8L+7]'G)IggI 9.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��`�"7j>54&#"5.54632:329'>54&#"546324&#"#4&#".32>54&#"#54&#"#J
gIIg5+#T<;U

JB./A/!!/` 2p
3N/*s[1XA&  |+IggI3T%?%<TT<)(.BB.(N!//!NR�0��5V3RuNHY&AW2PpP�����Kz>54&#"546322>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32 T<<TB..BP2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/�.<TT<.Z/AA/�(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!.!� ``F>54&#"546324&#"#4&#".32>54&#"#54&#"#B..B/!!/` 1p
2N/*tZ2WA&  �(.BB.(N!//!��0��5V2StOHY&AW2PpP�����Az�35#5#"&5467".'.764632>32>32>32#952>50=4&#"#54&#"#54&#"#4&#".392654&#"31�H@)7B..B7)p%LHA'R:#b//!!/
)!/
!/+Jc82WA&   2p
2N/*tZ�<TT<<TT< _?*.BB.*?��*D1Hv^G"/,!//!�		/!.!�8cJ+ (BW/77�P0PpP��5V3RuNHY�T<<TT<<T���`�%2e35#5#"&5467>54&#"546322654&#"34&#"#4&#".32>54&#"#54&#"#�H@(8B./A7)�B./A/!!/�;UU;<TT<� 2p
3N/*s[1XA&   _?*.BB.*?�(.BB.(N!//!0T<<TT<<Tp�0��5V3RuNHY&AW2PpP`����-d�.#".'.5463257>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32`:"<T<.
B."6�T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/KT<2L
3.B$3J.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!�� �`1d<54&#".'.5463297>54&#"546324&#"#4&#".32>54&#"#54&#"#�K55KF2%8(#5		�B..B/!!/` 1p
2N/*tZ2WA&  �5KK53J
	
1 (8-"�(.BB.(N!//!��0��5V2StOHY&AW2PpP�����	
O3570&'!7'77'2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32� �dd@}}�}}%cd�2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/���RQQ��QQ��(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!."����`�	
I3570&'!7'77'4&#"#4&#".32>54&#"#54&#"#� �dd@}}�}},cd� 1p
2N/*tZ2WA&  ���RQQ��QQ���0��5V3RuNHY&AW2PpP.��5i.32>=4&#"4&#".#".#"#7'7'"&'.7646323463234632354632#`/b":R'AHL%8cJ+/!

/!)(	!/�h��hZt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�".!/		/!h��h�@YGOuR3
V5j��p��0���2WA&��`;3.32>54&#"#4&#"#4&#"#4&#"1#7'7��2p
3N/*s[1XA&   �h�����5V2StOHY&AW2P0��P��0h��M��6j54&#".#".#".32>=4&#"537'#"&'.7646323463234632354632#�/!)(	!//b":R'AHL%8cJ+/!

�h��h�Zt*/N2
p1   &AW2!/		/!��,/"G^vH1D*+Jc8�".�h��h� YGOuR3
V5j��p��0���2WA&��`;#.#"#4&#"#4&#".32>54&#"#37'a�  2p3N.+s[1XA& �h��h���P��0��5V3RuNHY&AW2P h��h���;i%'7'>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32`h��h/R<#   1p
2N/(mS +Jc8%LHA'R:#b//!	()!/
!/ "h��h��'AT0�P��P��P��5V
3RuOCX�8cJ+*D1Hv^G"/,!/		/!�.!� ``;>54&#"#4&#"#4&#"#4&#".1'7�0Q<#   2p
3N/(oQh��B��'AU0P0��P��0��5V3RuNDW!h�����9h4&#"#4&#".32>=4&#"#4&#"7'7#".'.7614632>32>32>32` 1p
2N/*tZ2WA& h��h +Jc8%LHA'R:"b//!	()!/
!/�P��P��5V2StOHY&AW2�P��h��h"�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``8%4&#"#4&#".32>54&#"#4&#"7'7` 2p
3N/*s[1XA& h��h�r��0��5V3RuNHY&AW2P0��h��h���3b%12>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32p2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/ &AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``24&#"#4&#".32>54&#"#4&#"#` 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2P0�����`�9q��>321>54&#".#".#"54671>32>329>54&#".#".#"1.54>3:>321623212>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32f
.BT<	11	<T)
--�#gI55Ig#+5!8L+99+L8!5+�2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/8B.;.<TT<.[)�G)IggI)G']7+L8!!8L+7]��&AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!���`�0^�>54&#"1.#".#"154632146321>32>54&#*#1.#"*#"1.5467>32'4&#"#4&#".32>54&#"#4&#"#B.

7"#7

/A/!

/!!/
!/#U;?%&?<T#+5bFG))FFb6*� 2p
3N/*s[1XA&  b(.B%%B.(N!/!//!/!N*>&<T##T<%?%T3Gf##fG3T���0��5V3RuNHY&AW2P0�����@�#.8BFJT^hlp5'7'!467%5'7'!467"34&#112#546"354&#3535"34&#12#546"354&#3535@h��h6J��J6`h��h6J��J6��.B�B.!/�/!`P���.B�B.!/�/!`P����h��h�Q8�P�8Q`�h��h�R7��8QA/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@�#-15?CG5'7'!4675'7'!467"354&#3535"354&#3535�h��h6J��J6��h��h6J��J6!/�/!P���!/�/!P���~�h��h�R8��8R`�h��h�R7�O�7R@/!pp!/��  @  �/!pp!/��  @  ���@@!=GQ[eim%>54.#"5.54>325>54.#"54>32'12!46"34&#12#546"354&#3535�:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�<T��T<.B�B.!/�/!`P����.�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+�T<��<T B.��.B /!pp!/ PP�  @  ���@@	=Y12!46"354&#35357>54.#"5.54>325>54.#"54>32�<T��T<!/�/!P����:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�T<��<T@/!pp!/��  @  .�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+���@�#-7AEIS]gko%#4632#7'7%#4632#7'7"34&#12#546"354&#3535"34&#12#546"354&#3535@�T<<T�h��h`�T<<T�h��h��.B�B.!/�/!`P���.B�B.!/�/!`P�����<TT<�P�h��h�<TT<���h��h�A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@`#-15?CG%#4632#7'7%#4632#7'7"354&#3535"354&#3535@�T<<T�h��h`�T<<T�h��h��!/�/!P���!/�/!P�����<TT<�P�h��h�<TT<��h��h�/!pp!/��  @  �/!pp!/��  @  @����&0:>BLV`dh!46323'7'7%12!46"34&#112#546"354&#3535"34&#12#546"354&#3535���T<<T�h��h�N<T��T<.B�B.!/�/!`P���.B�B.!/�/!`P�����`<TT<Ph��h�T<�P�<T A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  @����%)-7;?!46323'7'7%12!46"354&#3535"354&#3535���T<<T�h��h�N<T��T<!/�/!P���!/�/!P�����`<TT<Ph��h�T<�P�<T@/!pp!/��  @  �/!pp!/��  @  >����%/37AKU_cg>32!#'7%"34&#112#546"354&#353512!46"34&#12#546"354&#3535AQ8<T���h��hR.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����6JT<�P�h��h`A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  @����#-7;?>32!#'737"354&#353512!46"354&#3535BR8;U���h��h".�/!P���;U��T<".�/!P����6JT<�P�h��h@/!pp!/��  @  T<��<T@/!pp!/��  @  ��!+5?IMQ>54.#"5.54>3212!46"34&#12#546"354&#3535�,4+Jc88cJ+4,"&AW22WA&"�<T��T<.B�B.!/�/!`P���!%l>8cJ++Jc8>l%, T/2WA&&AW2/T 3T<��<T B.��.B /!pp!/ PP�  @  ��	=12!46"354&#35357>54.#"5.54>32�<T��T<!/�/!P���`,4+Jc88cJ+4,"&AW22WA&"�T<��<T@/!pp!/��  @  A%l>8cJ++Jc8>l%, T/2WA&&AW2/T 	`����%/9=ANp35#5#"&546712!46"34&#12#546"354&#35352654&#"3>54.#"5.54>32 @@)7B..B7)�p<T��T<.B�B.!/�/!`P���P<TT<<TT<�,4+Jc88cJ+4,"&AW22WA&" _?*.BB.*?�T<��<T B.��.B /!pp!/ PP�  @  �T<<TT<<T��%l>8cJ++Jc8>l%, T/2WA&&AW2/T `����"&*7;]#"&5467312!46"354&#35352654&#"3735>54.#"5.54>32 )7B..B7) �P<T��T<!/�/!P���P<TT<<TT<@��,4+Jc88cJ+4,"&AW22WA&"?*.BB.*?�T<��<T@/!pp!/��  @  �T<<TT<<T�  �%l>8cJ++Jc8>l%, T/2WA&&AW2/T ����`	'+/37;@D12!46"34&#12#546"354&#3535357#3!35#7'<T��T<.B�B.!/�/!`P���` �qqj���ࠠjqq�T<��<T B.��.B /!pp!/ PP�  @  ���jqr�    rq	����`	#',012!46"354&#3535357#3!35#7'<T��T<!/�/!P���` �qqj���ࠠjqq�T<��<T@/!pp!/��  @  ���jqr�    rq~����#-7;?3'7'7#!#'73>32'"34&#12#546"354&#3535��h��h���h��h�Q87R�.B�B.!/�/!`P���h��h�h��h6JJ6`B.��.B /!pp!/ PP�  @  ~����#'+3'7'7#!#'73>32'"354&#3535��h��h���h��h�Q87R�!/�/!P���h��h�h��h6JJ6@/!pp!/��  @  ~����#-7AEI3'7'7#!#'73>75'7'9'"34&#12#546"354&#3535��h��h���h��h�H2h��h2H�.B�B.!/�/!`P���h��h�h��h2H�h��h�H2`B.��.B /!pp!/ PP�  @  ~����",04>715'7'3'7'7#!#'737"354&#3535�H2h��h2H�h��h���h��hÏ!/�/!P���2H�h��h�H2h��h�h��h@/!pp!/��  @  ��@	(,0:DNX\`��12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
��@	%/37_�12!46"354&#353512!46"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
@���	(,0:DNX\`�12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%	@���	%/37e12!46"354&#353512!46"354&#35357>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%~����$.26>32!#'7%"34&#12#546"354&#3535�Q8<T���h��hR.B�B.!/�/!`P���6JT<��h��h`B.��.B /!pp!/ PP�  @  ~���� $9>32!#'7%"354&#3535�Q8<T���h��hR!/�/!P���6JT<��h��h@/!pp!/��  @  `����%/37!46323'7'7#'"34&#12#546"354&#3535���T<7R�h��h.B�B.!/�/!`P����<TJ6h��h�B.��.B /!pp!/ PP�  @  `����!%3'7'7#!46329'"354&#3535�h��h��T<7R�!/�/!P���h��h�<TJ6@/!pp!/��  @  �����%/375'7'!467"34&#12#546"354&#3535h��h6J��J6.B�B.!/�/!`P����h��h�R7��8QB.��.B /!pp!/ PP�  @  �����#5'7'!467"354&#3535h��h6J��J6!/�/!P����h��h�R7��8Q?/!pp!/��  @  �����%/37%7'75#4632"34&#12#546"354&#3535 h��h�T<<T�.B�B.!/�/!`P�����h��h�<TT<���B.��.B /!pp!/ PP�  @  �����#%#4632#7'7"354&#3535�T<<T�h��h!/�/!P����<TT<���h��h"/!pp!/��  @  ����	+<M#5353#73+"&=3;26='#353735#%!2#!"&=463"3!26=4&#!   `  � & % 
 
�0       � (88(��(88(%& %&���ࠠ��%&��

�``�@@��`8(�(88(�(8 &�%&�%����	+<#5353#73+"&=3;26=73#5#'#53%"3!26=4&#!   `  � & % 
 
�0       �`(88( (88(���ࠠ��%&��

�``�@@��`8(�(88(�(8����$5FO~#"&=46;5#";5#3%3532654&+5!2#!"&=463"3!26=4&#!32+%";2+"&51#1;2654&+"&546;234&+@@

``&%``@�� @&%` (88(��(88(%& %&�� @

@�&% 

 
 % &% 

 
 % �@
`
 %`&� @�`%%`8(�(88(�(8 &�%&�%`

`%%


&%%


%����$5>l#53#"&=46;#";5%532+#"3!26=4&#!32654&#%32#4&+";2+"&5131;2654&+"&546@@``%&``

@��`%&@ (88( (88(�� @

` % 
 

 %& % 
 

 %&� �&`% 
`
@@@%%`@8(�(88(�(8�@

 %


%%&


%%����!/:GP\e!2#!"&=463"3!26=4&#!##546;2#'"354&+532+#5732654&#532+#732654&# (88(��(88(%& %&��` & % @
`
 �`%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 @%%`� @

 @%%`�@

����)6?KT!2#!"&=463354&+"357"354&+3532654&+732654&#3532654&+32654&# (88(��(88(� % &  
`
 � @&%` @

` @&%` @

�8(�(88(�(8�`�%%�``
  
 �`%%@ @

 �`%% @

����!-6@Y!2#!"&=463"3!26=4&#!532+#732654&##5353#7#"&=46;5#";5#3 (88(��(88(%& %&��`%&@  @

�  `  �@

``&%``@�8(�(88(�(8 &�%&�%�@%%`�@

 �ࠠ�`@
`
 %`&� ����%/H!2#!"&=4633532654&+32654&#35#'#3%#"&=46;5#";5#3 (88(��(88( @&%` @

�`  `   @

``&%``@�8(�(88(�(8��`%% @

 �ࠠ�`@
`
 %`&� ����!+7@KU!2#!"&=463"3!26=4&#!535#3535%532+#732654&#732+5326=4&# (88(��(88(%& %&����� `�`%&@  @

``%&` @

�8(�(88(�(8 &�%&�%�@ �`  @%%`�@

 &`%� �
`
����&/:D!2#!"&=463535#3535%3532654&+32654&#7326=4&+326=4&# (88(��(88(��� `� @&%` @

``&%` @

�8(�(88(�(8�@ �`  �`%% @

 �%`& �
`
����!.[hq!2#!"&=463"3!26=4&#!'#353735#46;2+"&53;2654&+532654&+"#532+#5732654&# (88(��(88(%& %&��P0       & %

& % 
 

  

 
�`%&@  @

�8(�(88(�(8 &�%&�%�`�@@��@%%		%%


 


@%%`� @

����KXa!2#!"&=463'#353735#346;2+32+"&5#;2654&'>54&+"#3532654&+732654&# (88(��(88(P0        
 

  

 
 % &

% &� @&%` @

�8(�(88(�(8�`�@@��@


 


%%		%%�`%%@ @

����!$/<IR!2#!"&=463"3!26=4&#!#73535#5#%'#353735#532+#5732654&# (88(��(88(%& %&���::    `��0       @`%&@  @

�8(�(88(�(8 &�%&�%�Pp@@ �� @`�@@��@@%%`� @

����+8A!2#!"&=46353535#5#%'#353735#3532654&+732654&# (88(��(88(�::    `��0       @ @&%` @

�8(�(88(�(8�PP @@ �� @`�@@��@�`%%@ @

����!2CPW!2#!"&=463"3!26=4&#!32+"&=463";26=4&+'#353735#73#'3 (88(��(88(%& %&�� %& %&

 

 �0       P0 @ @ �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
@`�@@�ਨ������!2?F!2#!"&=463";26=4&+";26=4&+'#353735#'#37# (88(��(88(&% &% 

 

 �0       P0 @ @ �8(�(88(�(8`%`&%`& 
`

`
@`�@@�ਨ������!6CLe!2#!"&=463"3!26=4&#!;26=#+"&=#7532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��% & 
 
 �`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%� &%��

 @@%%`� @

`@
`
 %`&� ����%2;T!2#!"&=463;26=#+"&=#73532654&+732654&##"&=46;5#";5#3 (88(��(88(% & 
 
 � @&%` @

�@

``&%``@�8(�(88(�(8� &%��

 @�`%%@ @

`@
`
 %`&� ����!-8E!2#!"&=463"3!26=4&#!3#53#3#5373#%#5'53753 (88(��(88(%& %&�����`��  V*pp*j @ 00 �8(�(88(�(8 &�%&�%�@ � @ 
V�VVpp````  HH  ����'4"3!26=4&#!3#53#3#5373#%#5'53753(88( (88(�����`��  V*pp*j @ 00 �8(�(88(�(8�@ � @ 
V�VVpp````  HH  @���%-9F!2#!"&=46"3!26=4&##53%3535#53#5##53!'#353735#��(88(� (88(&&�&&� �� @�@  `  �0       �8(�(88(�(8 &�%&�%� ���  @`�``�``�@@��@���)6!2#!"&=46#5#3%3535##5#35335#'#353735#��(88(� (88� ��  @�@`  `  P0       �8(�(88(�(8����  @`�``�``�@@������!Bq�!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�%&`%%

`

�%%


&%%


%%%


&%%


%����1`�!2#!"&=463#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8�

`

%%`&%�%%


&%%


%%%


&%%


%@���&;ITbm!2#!"&=46"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+��(88(� (88(&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
 �8(�(88(�(8 &�%&�%��� &%��

 `�%%��
  
``�%%��
  
@���+9DR]"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+�(88(�(88(��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �8(�(88(�(8����� 

��%& `�%%��
  
``�%%��
  
����!-6epz!2#!"&=463"3!26=4&#!532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&# (88(��(88(%& %&��`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

�8(�(88(�(8 &�%&�%�@%%`�@

 %%


&%%


%&`%� �
`
����%T_i!2#!"&=4633532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&# (88(��(88( @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

�8(�(88(�(8��`%% @

 %%


&%%


%�%`& �
`
����!-;F!2#!"&=463"3!26=4&#!#35#535###546;2#'"354&+ (88(��(88(%& %&��` `  ``` & % @
`
 �8(�(88(�(8 &�%&�%`�  �  ``�%%��
  
����*5"3!26=4&#!#53#3#53'##546;2#'"354&+(88( (88(��` `  ` �` & % @
`
 �8(�(88(�(8�  �  @`�%%��
  
����!1:CP\e!2#!"&=463"3!26=4&#!532+732654&#32654&#7'#353735#532+#732654&# (88(��(88(%& %&��`%

&` @

@@

�0       @`%&@  @

�8(�(88(�(8 &�%&�%�x%		%�@

`@

 `�@@��@@%%`�@

���� )2?KT!2#!"&=46332654&'>54&+32654&#32654&#7'#353735#3532654&+32654&# (88(��(88(`&

%` @

@@

�0       @ @&%` @

�8(�(88(�(8�h%		% @

`@

 `�@@��@�`%% @

����!/:D]!2#!"&=463"3!26=4&#!#'#537353%32+5326=4&##"&=46;5#";5#3 (88(��(88(%& %&��P00      ��`%&` @

�@

``&%``@�8(�(88(�(8 &�%&�%��``�@@���&`%� �
`
`@
`
 %`&� ����)3L!2#!"&=46335#'#5#37%326=4&+326=4&##"&=46;5#";5#3 (88(��(88(P      00��`&%` @

�@

``&%``@�8(�(88(�(8���@@��``��%`& �
`
`@
`
 %`&� ����!-:Cr!2#!"&=463"3!26=4&#!3#53#37532+#5732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&�� ����`@`%&@  @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@ � @ @@%%`� @

 %%


&%%


%����)2a!2#!"&=46335#535#35#73532654&+732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88( ``����� @&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8� @ � ��`%%@ @

 %%


&%%


%����'3=G!2#!"&=46"3!26=4&#3535#3#35#535#535#35353535#3535��(88(�`(88(&%�&%�� @�� `  `��� ``�� `�8(�(88(�(8 &�%&�%`��  �  �  @@ �` @ �` ����#-7!2#!"&=463535#3#35#535#535#35353535#3535��(88(�`(88h @�� `  `��� ``�� `�8(�(88(�(8���  �  �  @@ �` @ �` ����!1BJy!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��   %%


&%%


%���� 19h!2#!"&=463";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
��   %%


&%%


%����!-6BNW!2#!"&=463"3!26=4&#!532+#732654&#53#5##537532+#732654&# (88(��(88(%& %&��`%&@  @

�  `  �`%&@  @

�8(�(88(�(8 &�%&�%�@%%`�@

@`�``�` @%%`�@

����%1=F!2#!"&=4633532654&+32654&##5#35335#3532654&+32654&# (88(��(88( @&%` @

�`  `  @ @&%` @

�8(�(88(�(8��`%% @

@`�``�@�`%% @

����!-6C!2#!"&=463"3!26=4&#!532+#732654&##5'53753 (88(��(88(%& %&��``%&@  @

� @ 00 �8(�(88(�(8 &�%&�%�@%%`�@

````  HH  ����%2!2#!"&=4633532654&+32654&#75#'5#3 (88(��(88(` @&%` @

�@ 00 @ �8(�(88(�(8��`%% @

``  HH  ``����!B!2#!"&=463"3!26=4&#!+"&=46;2#4&+";2653 (88(��(88(%& %&��`& %& & 
 

 
 �8(�(88(�(8 &�%&�%�%&`%%

`

����1"3!26=4&#!+"&=46;2#4&+";2653(88( (88(��`& %& & 
 

 
 �8(�(88(�(8�%&`%%

`

����*;Lz�7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!";2+"&51#1;2654&+"&546;234&##536% &% 

 
,"�� (88(��(88(%& %&��@&% 

 
 % &% 

 
 %�� D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%@%%


&%%


%� �����*;io+"&=46;2''#"&=46;2'"3!26=4&#!32#4&+";2+"&5131;2654&+"&546#536 %& %

 
,"��(88( (88(��@ % 
 

 %& % 
 

 %&�� D&`%&`	
`

`
," 8(�(88(�(8`%


%%&


%%� �����!/8HQZ!2#!"&=463"3!26=4&#!##532##'32654&#532+732654&#32654&# (88(��(88(%& %&�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8 &�%&�%�`�%%`�@

Xx%		%�@

`@

����'7@I"3!26=4&#!##532##'32654&#532+732654&#32654&#(88( (88(�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8�`�%%`�@

Xx%		%�@

`@

����!BOXdm!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537532+#5732654&#532+#732654&# (88(��(88(%& %&��& %& & 
 

 
  `%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�%&`%%

`

`@%%`� @

 @%%`�@

����1>GS\!2#!"&=463#+"&=46;234&+";26573532654&+732654&#3532654&+32654&# (88(��(88(� 
 

 
 & &% &  @&%` @

` @&%` @

�8(�(88(�(8�

`

%%`&%`�`%%@ @

 �`%% @

����!)BP[!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#33##546;2#'"354&+ (88(��(88(%& %&��@ @�@@

``&%``@�` & % @
`
 �8(�(88(�(8 &�%&�%`��  `@
`
 %`&� `�%%��
  
����1?J!2#!"&=4633535##"&=46;5#";5#33354&+"357"354&+ (88(��(88(@ @�@@

``&%``@� % &  
`
 �8(�(88(�(8���  `@
`
 %`&� `�%%�``
  
����!-8BL!2#!"&=463"3!26=4&#!'373#'#'32+5326=4&#535#3535 (88(��(88(%& %&��@ 00 @@ 00 �`%&` @

@�� `�8(�(88(�(8 &�%&�%�pTTppTT�&`%� �
`
@@ �` ����'1;!2#!"&=463373'7#'##326=4&+326=4&#535#3535 (88(��(88(@ 00 @@ 00 �`&%` @

@�� `�8(�(88(�(8�pTTppTT�%`& �
`
@@ �` ����!,6GXy!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&++"&=46;2#4&+";2653 (88(��(88(%& %&��`%&` @

� %& %&

 

  & %& & 
 

 
 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

����%6Gh!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+#+"&=46;234&+";265 (88(��(88(`&%` @

�&% &% 

 

   
 

 
 & &% &�8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%����!1BMW_!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#33535# (88(��(88(%& %&��@ %& %&

 

 �`%&` @

� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
��  ���� 1<FN!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#33535# (88(��(88(@&% &% 

 

 �`&%` @

� @��8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
��  ����!-3b!2#!"&=463"3!26=4&#!'373#'#%#537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%����"P"3!26=4&#!'373#'#%#53732#4&+";2+"&5131;2654&+"&546(88( (88(��@@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�8(�(88(�(8�pTTppTT  �%


%%&


%%@���*4DUv�!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT@���$4Efr!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#��(88(� (88(`&%` @

�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT����!.7CLT!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#!3535# (88(��(88(%& %&��`%&@  @

��`%&@  @

` @��8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

��  ����&2;C!2#!"&=4633532654&+732654&#3532654&+32654&#!3535# (88(��(88(� @&%` @

�� @&%` @

` @��8(�(88(�(8��`%%@ @

 �`%% @

��  ����!/:iu~!2#!"&=463"3!26=4&#!##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&# (88(��(88(%& %&��` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 %%


&%%


%@@%%`�@

����)Xdm!2#!"&=463354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&# (88(��(88(� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�8(�(88(�(8�`�%%�``
  
 %%


&%%


%@�`%% @

����!-N}!2#!"&=463"3!26=4&#!#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%`�  �  �%&`%%

`

�%%


&%%


%����=l!2#!"&=463#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+ (88(��(88(@ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �8(�(88(�(8��  �  �

`

%%`&%�%%


&%%


%����!/:EOW!2#!"&=463"3!26=4&#!##546;2#'"354&+%32+5326=4&#!3535# (88(��(88(%& %&��@` & % @
`
 �`%&` @

` @��8(�(88(�(8 &�%&�%�`�%%��
  
 &`%� �
`
��  ����)4>F!2#!"&=463354&+"357"354&+%326=4&+326=4&#!3535# (88(��(88(@ % &  
`
 �`&%` @

` @��8(�(88(�(8�`�%%�``
  
 �%`& �
`
��  ����!-:@!2#!"&=463"3!26=4&#!'373#'#%'#353735##53 (88(��(88(%& %&��@@ 00 @@ 00 0       � �8(�(88(�(8 &�%&�%�pTTppTT�`�@@�� �����)/"3!26=4&#!'373#'#%73#5#'#53#53(88( (88(��@@ 00 @@ 00 0       @� �8(�(88(�(8�pTTppTT�`�@@�� �����!.;A!2#!"&=463"3!26=4&#!#5'53753'#353735##53 (88(��(88(%& %&��` @ 00 p0       � �8(�(88(�(8 &�%&�%�```  HH  @`�@@�� �����*0"3!26=4&#!#5'5375373#5#'#53#53(88( (88(��` @ 00 p0       @� �8(�(88(�(8�```  HH  @`�@@�� �����!-!2#!"&=463"3!26=4&#!53#5##53 (88(��(88(%& %&��@  `  �8(�(88(�(8 &�%&�%�`�``�`����"3!26=4&#!53#5##53(88( (88(��@  `  �8(�(88(�(8�`�``�`����!-9E!2#!"&=463"3!26=4&#!3#53#37'373#'#73#53#3 (88(��(88(%& %&�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8 &�%&�%�@ � @ pTTppTT`@ � @ ����(4"3!26=4&#!3#53#37'373#'#73#53#3(88( (88(�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8�@ � @ pTTppTT`@ � @ ��`�!/:AM!2#!"&=463"3!26=4&#!##546;2#'"354&+73#'3#35#535#� (88(��(88(%& %&��` & % @
`
 �0 @ @ � `  `�8(�(88(�(8 &�%&�%�`�%%��
  
���� �  �  ��`�)0<"3!26=4&#!##546;2#'"354&+73#'3#53#3#53�(88( (88(��` & % @
`
 �0 @ @ � `  ` �8(�(88(�(8�`�%%��
  
����   �  ����!,6BK[l!2#!"&=463"3!26=4&#!32+5326=4&#532+#732654&#%32+"&=46";26=4&+ (88(��(88(%& %&��`%&` @

``%&@  @

�` %& %&

 

 �8(�(88(�(8 &�%&�%@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
����%1:J[!2#!"&=463326=4&+326=4&#3532654&+32654&#%";26=4&#";26=4&+ (88(��(88(�`&%` @

` @&%` @

�`&% &% 

 

 �8(�(88(�(8`�%`& �
`
 �`%% @

 %`&%`& 
`

`
@���*4DU]i!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&+33535#'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

 � @�@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT@���$4EMY!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+33535#373'7#'#��(88(� (88(`&%` @

�&% &% 

 

 � @�@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT@���+1`l!2#!"&=46"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#��(88(� (88(&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00 �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%ppTTppTT@���!O["3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#�(88(�(88(�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �8(�(88(�(8�pTTppTT  �%


%%&


%%ppTTppTT����!1BMW�!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 �`%&` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%���� 1<Fu!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 �`&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%����!.7CL{!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

 %%


&%%


%����&2;j!2#!"&=4633532654&+732654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �8(�(88(�(8��`%%@ @

 �`%% @

 %%


&%%


%����!,6GX`!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&+33535# (88(��(88(%& %&��`%&` @

� %& %&

 

 � @��8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  ����%6GO!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+33535# (88(��(88(`&%` @

�&% &% 

 

 � @��8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  ����!)5=!2#!"&=463"3!26=4&#!3535#'373#'#%3535# (88(��(88(%& %&��@ @�@ 00 @@ 00  @��8(�(88(�(8 &�%&�%`��  PpTTppTT���  ����$,!2#!"&=4633535#373'7#'#3535# (88(��(88(@ @�@ 00 @@ 00  @��8(�(88(�(8���  PpTTppTT ��  ����!/8@J!2#!"&=463"3!26=4&#!##532##'32654&#33535#535#3535 (88(��(88(%& %&��: `%%@&Z@

� @�� `�8(�(88(�(8 &�%&�%�`�%%`�@

��  @@ �` ����'/9!2#!"&=4633'2654&+35532654&#33535#535#3535 (88(��(88(:@&@%%` @

� @�� `�8(�(88(�(8�``%%�``@

��  @@ �` ����!.1<C!2#!"&=463"3!26=4&#!'#353735##73535#5#73#'3 (88(��(88(%& %&��P0       �::    `0 @ @ �8(�(88(�(8 &�%&�%�`�@@��Pp@@ �� ������� +2!2#!"&=463'#353735#53535#5#'#37# (88(��(88(P0       �::    `0 @ @ �8(�(88(�(8�`�@@��PP @@ �� �������!+18!2#!"&=463"3!26=4&#!535#3535#53?3#'3 (88(��(88(%& %&�� �� `� �0 @ @ �8(�(88(�(8 &�%&�%�@ �` ` �������� '"3!26=4&#!3##53##53?3#'3(88( (88(�� `` ��@� �0 @ @ �8(�(88(�(8� `� � ��������!.;D]!2#!"&=463"3!26=4&#!'#353735#532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��P0       @`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%�`�@@��@@%%`� @

`@
`
 %`&� ����*3L!2#!"&=463'#353735#3532654&+732654&##"&=46;5#";5#3 (88(��(88(P0       @ @&%` @

�@

``&%``@�8(�(88(�(8�`�@@��@�`%%@ @

`@
`
 %`&� ����*;LT7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!3535#�% &% 

 
,"� (88(��(88(%& %&��` @�D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%`��  ����*;C+"&=46;2''#"&=46;2'"3!26=4&#!#53##� %& %

 
,"�(88( (88(��`@�@ D&`%&`	
`

`
," 8(�(88(�(8�  �����!.:EO!2#!"&=463"3!26=4&#!'#353735##35#535#732+5326=4&# (88(��(88(%& %&��p0       ` `  `�`%&` @

�8(�(88(�(8 &�%&�%�`�@@�� �  �   &`%� �
`
����)4>!2#!"&=463'#353735##35#535#7326=4&+326=4&# (88(��(88(p0       ` `  `�`&%` @

�8(�(88(�(8�`�@@�� �  �   �%`& �
`
����!Ngs|!2#!"&=463"3!26=4&#!46;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&# (88(��(88(%& %&��& %

& % 
 

  

 
 @

``&%``@@`%&@  @

�8(�(88(�(8 &�%&�%�%%		%%


 


@@
`
 %`&� @@%%`�@

����>Wcl!2#!"&=463346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&# (88(��(88( 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�8(�(88(�(8�


 


%%		%%@@
`
 %`&� @�`%% @

`���-8DNX!2#!"&=46"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535��(88(�`(88(&%�&%��` & % @
`
 � `  `��� ``�� `�8(�(88(�(8 &�%&�%�`�%%��
  
�  �  @@ �` @ �` `���(4>H!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535��(88(�`(88� % &  
`
 � `  `��� ``�� `�8(�(88(�(8�`�%%�``
  
�  �  @@ �` @ �` ����!/:HSt!2#!"&=463"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653 (88(��(88(%& %&��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8 &�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

����)7Bc"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653(88( (88(��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8�`�%%��
  
``�%%��
  
�%&`%%

`

����!/=HO!2#!"&=463"3!26=4&#!#'#5373537##546;2#'"354&+73#'3 (88(��(88(%& %&��00      �` & % @
`
 �0 @ @ �8(�(88(�(8 &�%&�%��``�@@��``�%%��
  
��������,7>"3!26=4&#!#'#5373537##546;2#'"354&+73#'3(88( (88(��00      �` & % @
`
 �0 @ @ �8(�(88(�(8��``�@@��``�%%��
  
��������!+7CL!2#!"&=463"3!26=4&#!75#3357#35#535#532+#732654&# (88(��(88(%& %&��@�����@ `  `�`%&@  @

�8(�(88(�(8 &�%&�%��  �  ��  �   @%%`�@

����&2;!2#!"&=46375#3357#35#535#3532654&+32654&# (88(��(88(@�����@ `  `� @&%` @

�8(�(88(�(8��  �  ��  �   �`%% @

����!1BJR!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#!3535# (88(��(88(%& %&��@ %& %&

 

 � @� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��  ��  ���� 19A!2#!"&=463";26=4&#";26=4&+33535#!3535# (88(��(88(@&% &% 

 

 � @� @��8(�(88(�(8`%`&%`& 
`

`
��  ��  ����!)BL!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#375#335 (88(��(88(%& %&��@ @�@@

``&%``@`������8(�(88(�(8 &�%&�%`��  `@
`
 %`&� @�  �  ����1;!2#!"&=4633535##"&=46;5#";5#375#335 (88(��(88(@ @�@@

``&%``@`������8(�(88(�(8���  `@
`
 %`&� @�  �  ����!,6C\!2#!"&=463"3!26=4&#!32+5326=4&#'#353735##"&=46;5#";5#3 (88(��(88(%& %&��`%&` @

�0       �@

``&%``@�8(�(88(�(8 &�%&�%@&`%� �
`
@`�@@��@
`
 %`&� ����%2K!2#!"&=463326=4&+326=4&#'#353735##"&=46;5#";5#3 (88(��(88(`&%` @

�0       �@

``&%``@�8(�(88(�(8`�%`& �
`
@`�@@��@
`
 %`&� ����!-[k|!2#!"&=463"3!26=4&#!#35#535#7";2+"&51#1;2654&+"&546;234&#;2+"&=46";26=4&+ (88(��(88(%& %&��@ `  `�&% 

 
 % &% 

 
 %� %& %&

 

 �8(�(88(�(8 &�%&�%`�  �   %%


&%%


%&`%&`% 
`

`
����J[l!2#!"&=463#35#535#7";2+"&51#1;2654&+"&546;234&#3";26=4&+";26=4&+ (88(��(88(@ `  `�&% 

 
 % &% 

 
 %�&% &% 

 

 �8(�(88(�(8��  �   %%


&%%


%%`&%`& 
`

`
����!/8FQ_h!2#!"&=463"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&# (88(��(88(%& %&��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8 &�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

����'5@NW"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&#(88( (88(��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8�`�%%`�@

``�%%��
  
``�%%`�@

����!:FP!2#!"&=463"3!26=4&#!#"&=46;5#";5#37#35#535#535#3535 (88(��(88(%& %&��@

``&%``@` `  `��� `�8(�(88(�(8 &�%&�%�@
`
 %`&� `�  �  @@ �` ����)5?!2#!"&=463#"&=46;5#";5#37#35#535#535#3535 (88(��(88(�@

``&%``@` `  `��� `�8(�(88(�(8�@
`
 %`&� `�  �  @@ �` @`	+Dahx#5353#73+"&=3;26='#353735#'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46�  `  � & % 
 
�0       ��&%�%(88(� 
� 

@%��(88(��v
` &%��&%��ࠠ��%&��

�``�@@��``�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@�`"2<Q^%#!"&5463!;!"3!;"3!26=4&##5353#73+"&=3;26=73#5#'#53�%� %&@&���(88( �
���%& %&�  `  � & % 
 
�0       �@%&�&�%@8(�(8�
�&�%&�%��ࠠ��%&��

�``�@@��@`$AHXa��3532654&+%5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=463!2#!"&5732+%";2+"&51#1;2654&+"&546;234&+#"&=46;5#";5#3� @&%` ���&%�%(88(� 
� 

@%��(88(��v
�% &%��&`@

@�&% 

 
 % &% 

 
 % �@

``&%``@��`%%``�&� &%@8(�(8�`@

�
�%@8(�(8��
���&%�&%�

`%%


&%%


%�@
`
 %`&� @�`"2KW`�%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#3%3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[@

``&%``@�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� @�`%% @

 %%


&%%


%
@`5<LZeqz��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �`%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 @%%`�@

 @%%`�@

	@�`"2@KW`lu%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 � @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �`%% @

 �`%% @

@`5<LXak�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5353#7#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 �ࠠ�`@
`
 %`&� @�`"2>GQj%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#35#'#3%#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `   @

``&%``@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �ࠠ�`@
`
 %`&� 	@`5<LVbkv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535%532+#732654&#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%��� `�`%&@  @

``%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �`  @%%`�@

 &`%� �
`
@�`"2<HQ\g%#!"&5463!;!"3!;!2#!"&=46535#3535%3532654&+32654&#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%��� `� @&%` @

``&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�@ �`  �`%% @

 �%`& �
`
@`5<LY���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#46;2+"&53;2654&+532654&+"#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       & %

& % 
 

  

 
�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@%%		%%


 


@%%`�@

@�`"2?lx�%#!"&5463!;!"3!;!2#!"&=46'#353735#346;2+32+"&5#;2654&'>54&+"3532654&+32654&#�%� %&@&���(88( �
��� &%��&%k0        
 

  

 
 % &

% &� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@


 


%%		%%�`%% @

	@`5<LOZgs|5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#73535#5#%'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�::    `��0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�Pp@@ �� @`�@@��@@%%`�@

@�`"25@MYb%#!"&5463!;!"3!;!2#!"&=4653535#5#%'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%�::    `��0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�PP @@ �� @`�@@��@�`%% @

@`5<L\mz�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+'#353735#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&% %& %&

 

 �0       P0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
@`�@@�ਨ��@�`"2CTah%#!"&5463!;!"3!;!2#!"&=46";26=4&+";26=4&+'#353735#'#37#�%� %&@&���(88( �
��� &%��&%&% &% 

 

 �0       P0 @ @ �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
@`�@@�ਨ��@`5<Lamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46;26=#+"&=#7532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%% & 
 
 �`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&� &%��

 @@%%`�@

`@
`
 %`&� @�`"2GS\u%#!"&5463!;!"3!;!2#!"&=46;26=#+"&=#73532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%% & 
 
 � @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&� &%��

 @�`%% @

`@
`
 %`&� @`5<LXcp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#3#5373#%#5'53753����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�����`��  V*pp*j @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ 
V�VVpp````  HH  @�`"2>IV%#!"&5463!;!"3!;"3!26=4&#3#53#3#5373#%#5'53753�%� %&@&���(88( �
���%& %&������`��  V*pp*j @ 00 �@%&�&�%@8(�(8�
�&�%&�%�@ � @ 
V�VVpp````  HH  `5<LRZfs!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&##53%3535#53#5##53!'#353735#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� �� @�@  `  �0        8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%� ���  @`�``�``�@@���`"28@LY%#!"&5463!;!"3!;!2#!"&=46#5#3%3535##5#35335#'#353735#`%� %&@&��`(88(��
��`�&&� &&�� ��  @�@`  `  P0       �@%&�&�%@8(�(8�
�%�&%�&����  @`�``�``�@@��@`5<Lm��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

�%%


&%%


%%%


&%%


%@�`"2S��%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%�%%


&%%


%%%


&%%


%
`5<LShv���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%��� &%��

 `�%%��
  
``�%%��
  
	�`"29N\gu�%#!"&5463!;!"3!;"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+`%� %&@&��`(88(��
��`&&�&&��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%��� 

��%& `�%%��
  
``�%%��
  
	@`5<LXa���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 %%


&%%


%&`%� �
`
@�`"2>Gv��%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&+�%� %&@&���(88( �
��� &%��&% @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 %%


&%%


%�%`& �
`
@`5<LXfq5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535###546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ `  ``` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  ``�%%��
  
@�`"2>LW%#!"&5463!;!"3!;"3!26=4&##53#3#53'##546;2#'"354&+�%� %&@&���(88( �
���%& %&� `  ` �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%`  �  @`�%%��
  

@`5<L\en{��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+732654&#32654&#7'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%

&` @

@@

�0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�x%		%�@

`@

 `�@@��@@%%`�@

	@�`"2BKTamv%#!"&5463!;!"3!;!2#!"&=4632654&'>54&+32654&#32654&#7'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%`&

%` @

@@

�0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�h%		% @

`@

 `�@@��@�`%% @

@`5<LZep�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#537353%32+5326=4&+#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k00      ��`%&` @

@�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@���&`%� �
`
`@
`
 %`&� @�`"2@KVo%#!"&5463!;!"3!;!2#!"&=4635#'#5#37%326=4&+326=4&+#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k      00��`&%` @

@�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&���@@��``��%`& �
`
`@
`
 %`&� @`5<LXdm�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37532+#732654&#7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`@`%&@  @

�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ @@%%`�@

 %%


&%%


%@�`"2>JS�%#!"&5463!;!"3!;!2#!"&=4635#535#35#73532654&+32654&#7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%;``����� @&%` @

�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&� @ � ��`%% @

 %%


&%%


%`5<LT`jt!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#3535#3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%�� @�� `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%`��  �  �  @@ �` @ �` �`"2:FPZ%#!"&5463!;!"3!;!2#!"&=463535#3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&Z @�� `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&`��  �  �  @@ �` @ �` @`5<L\mu�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��   %%


&%%


%@�`"2BS[�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��   %%


&%%


%	@`5<LXamy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#53#5##537532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

@`�``�` @%%`�@

@�`"2>GS_h%#!"&5463!;!"3!;!2#!"&=463532654&+32654&##5#35335#3532654&+32654&#�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `  @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��`%% @

@`�``�@�`%% @

@�`5<LXan5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5'53753����&%�%�(88(� 
� 

@%���(88(`��v
� &%��&%{`%&@  @

� @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

````  HH  @�`"2>GT%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#75#'5#3�%� %&@&���(88(��
��� &%��&%{ @&%` @

�@ 00 @ �@%&�&�%@8(�(8�
�%�&%�&��`%% @

``  HH  ``@�`5<Lm32+#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#+"&=46;2#4&+";2653��(88(�%� %&`� ��(88( �%��

�
�
v��%& %&�& %& & 
 

 
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�%&`%%

`

@�`"2S%#!"&5463!;!"3!;"3!26=4&#+"&=46;2#4&+";2653�%� %&@&���(88(@�
���%& %&�& %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�%&`%%

`

@�`*C`gw��%7'>=4&+";267'#"&=46;2'5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46";2+"&51#1;2654&+"&546;234&##53�% &% 

 
,"'���&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%[&% 

 
 % &% 

 
 %�� �	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@%%


&%%


%� �@�`"2I]��%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2''32#4&+";2+"&5131;2654&+"&546#53�%� %&@&���(88(@�
���%& %&� %& %

 
,"� % 
 

 %& % 
 

 %&�� �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�%


%%&


%%� �	@�`5<LZcs|�5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#532+732654&#32654&#����&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%� `%%@&Z@

``%

&` @

@@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

Xx%		%�@

`@

@�`"2@IYbk%#!"&5463!;!"3!;"3!26=4&###532##'32654&#532+732654&#32654&#�%� %&@&���(88(@�
���%& %&�z `%%@&Z@

``%

&` @

@@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

Xx%		%�@

`@

	@`5<Lmy���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
  `%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

`@%%`�@

 @%%`�@

@�`"2S_ht}%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";26573532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &  @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%`�`%% @

 �`%% @

@`5<LTm{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#33##546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@�` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� `�%%��
  
@�`"2:Sal%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#33354&+"357"354&+�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@� % &  
`
 �@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� `�%%�``
  
@`5<LXcnx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#'32+5326=4&+535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%@ 00 @@ 00 �`%&` @

@��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�&`%� �
`
@@ �` @�`"2>IT^%#!"&5463!;!"3!;!2#!"&=46373'7#'##326=4&+326=4&+535#3535�%� %&@&���(88( �
��� &%��&%@ 00 @@ 00 �`&%` @

@��� `�@%&�&�%@8(�(8�
�%�&%�&�pTTppTT�%`& �
`
@@ �` 	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

@�`"2=HYj�%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+#+"&=46;234&+";265�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

   
 

 
 & &% &�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
��  @�`"2BS^iq%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+33535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
��  @`5<LX^�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%#537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 `� �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT  �%%


&%%


%@�`"2>Dr%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%
`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT	�`"2=HXi��%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT	@`5<LXamv~5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

` @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

��  @�`"2>GS\d%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#!3535#�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

` @��@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

��  	@`5<LZe���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 %%


&%%


%@@%%`�@

@�`"2@Kz��%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 %%


&%%


%@�`%% @

@`5<LXy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  �%&`%%

`

�%%


&%%


%@�`"2>_�%#!"&5463!;!"3!;!2#!"&=46#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&`�  �  �

`

%%`&%�%%


&%%


%	@`5<LZep{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+%32+5326=4&+!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[` & % @
`
 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 &`%� �
`
��  @�`"2@KVai%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+%326=4&+326=4&+!3535#�%� %&@&���(88( �
��� &%��&%[ % &  
`
 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �%`& �
`
��  @`5<LXek5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�`�@@�� �@�`"2>KQ%#!"&5463!;!"3!;"3!26=4&#'373#'#%73#5#'#53#53�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 0       @� �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT�`�@@�� �@`5<LYfl5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#5'53753'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @ 00 p0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�```  HH  @`�@@�� �@�`"2?LR%#!"&5463!;!"3!;"3!26=4&##5'5375373#5#'#53#53�%� %&@&���(88( �
���%& %&�@ @ 00 p0       @� �@%&�&�%@8(�(8�
�&�%&�%�```  HH  @`�@@�� �@`5<LX5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4653#5##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[  `   `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�``�`@�`"2>%#!"&5463!;!"3!;"3!26=4&#53#5##53�%� %&@&���(88( �
���%& %&�  `  �@%&�&�%@8(�(8�
�&�%&�%�`�``�`@`5<LXdp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37'373#'#73#53#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`�@ 00 @@ 00 ���` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ pTTppTT`@ � @ @�`"2>JV%#!"&5463!;!"3!;"3!26=4&#3#53#37'373#'#73#53#3�%� %&@&���(88( �
���%& %&�����`�@ 00 @@ 00 ���`�@%&�&�%@8(�(8�
�&�%&�%�@ � @ pTTppTT`@ � @ @`5<LZelx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+73#'3#35#535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �0 @ @ � `  ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
���� �  �  @�`"2@KR^%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+73#'3#53#3#53�%� %&@&���(88( �
���%& %&��` & % @
`
 �0 @ @ � `  ` �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
����   �  
@`5<LWbnw��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+532+#732654&#%32+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&` @

@�`%&@  @

�` %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
	@�`"2=HT]m~%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+3532654&+32654&#%";26=4&#";26=4&+�%� %&@&���(88( �
��� &%��&%�`&%` @

@� @&%` @

�`&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 �`%% @

 %`&%`& 
`

`

`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&+33535#'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

 � @�@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT	�`"2=HXiq}%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+33535#373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

 � @�@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT`5<LX^��!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�pTTppTT  �%%


&%%


%ppTTppTT�`"2>Dr~%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#`%� %&@&��`(88(��
��`&&�&&�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%ppTTppTT	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%@�`"2BS^i�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%	@`5<LXamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

 %%


&%%


%@�`"2>GS\�%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

 %%


&%%


%	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

 � @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
��  @�`"2=HYjr%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+33535#�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

 � @��@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  @`5<LT`h5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#'373#'#%3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@ 00 @@ 00  @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  PpTTppTT���  @�`"2:FN%#!"&5463!;!"3!;!2#!"&=463535#373'7#'#3535#�%� %&@&���(88( �
��� &%��&%[ @�@ 00 @@ 00  @��@%&�&�%@8(�(8�
�%�&%�&`��  PpTTppTT ��  @`5<LZcku5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#33535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

� @�� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

��  @@ �` @�`"2@IQ[%#!"&5463!;!"3!;!2#!"&=463'2654&+35532654&#33535#535#3535�%� %&@&���(88( �
��� &%��&%U@&@%%` @

� @�� `�@%&�&�%@8(�(8�
�%�&%�&�``%%�``@

��  @@ �` @`5<LY\gn5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##73535#5#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       �::    `0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��Pp@@ �� ���@�`"2?BMT%#!"&5463!;!"3!;!2#!"&=46'#353735#53535#5#'#37#�%� %&@&���(88( �
��� &%��&%k0       �::    `0 @ @ �@%&�&�%@8(�(8�
�%�&%�&�`�@@��PP @@ �� ���@`5<LV\c5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535#53?3#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;�� `� �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �` ` ����@�`"2<BI%#!"&5463!;!"3!;"3!26=4&#3##53##53?3#'3�%� %&@&���(88( �
���%& %&�`` ��@� �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%� `� � ����@`5<LYen�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       @`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@@%%`�@

`@
`
 %`&� @�`"2?KTm%#!"&5463!;!"3!;!2#!"&=46'#353735#3532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k0       @ @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@�`%% @

`@
`
 %`&� @`*C`gw%7'>=4&+";267'#"&=46;2'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#V% &% 

 
,"g���&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @��	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  @�`"2I]e%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2'7#53##�%� %&@&���(88( �
���%& %&�� %& %

 
,"�@�@ �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�  �@`5<LYep{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##35#535#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�0       ` `  `�`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@�� �  �   &`%� �
`
@�`"2?KVa%#!"&5463!;!"3!;!2#!"&=46'#353735##35#535#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%�0       ` `  `�`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�`�@@�� �  �   �%`& �
`
@`5<Ly���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4646;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%& %

& % 
 

  

 
 @

``&%``@@`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%%		%%


 


@@
`
 %`&� @@%%`�@

@�`"2_x��%#!"&5463!;!"3!;!2#!"&=46346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&#�%� %&@&���(88( �
��� &%��&% 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�


 


%%		%%[@
`
 %`&� @�`%% @

	`5<LZeq{�!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%��` & % @
`
 � `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�`�%%��
  
�  �  @@ �` @ �` �`"2@KWak%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&� % &  
`
 � `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
�  �  @@ �` @ �` 	@`5<LZes~�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 ` & % @
`
  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
``�%%��
  
�%&`%%

`

@�`"2@KYd�%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653�%� %&@&���(88( �
���%& %&�`` & % @
`
 ` & % @
`
  & %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

@`5<LZhsz5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#5373537##546;2#'"354&+73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�00      �` & % @
`
 �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@��``�%%��
  
����@�`"2@NY`%#!"&5463!;!"3!;"3!26=4&##'#5373537##546;2#'"354&+73#'3�%� %&@&���(88( �
���%& %&�p00      �` & % @
`
 �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%��``�@@��``�%%��
  
����@`5<LVbnw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4675#3357#35#535#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[�����@ `  `�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��  �  ��  �   @%%`�@

@�`"2<HT]%#!"&5463!;!"3!;!2#!"&=4675#3357#35#535#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%[�����@ `  `� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��  �  ��  �   �`%% @

@`5<L\mu}5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��  ��  @�`"2BS[c%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#!3535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��  ��  @`5<LTmw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#375#335����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@`����� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� @�  �  @�`"2:S]%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#375#335�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@`������@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� @�  �  @`5<LWbo�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+'#353735##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@�0       �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
@`�@@��@
`
 %`&� @�`"2=HUn%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+'#353735##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%`&%` @

@�0       �@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
@`�@@��@
`
 %`&� @`5<LX���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+;2+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  `�&% 

 
 % &% 

 
 % � %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �   %%


&%%


%&`%&`% 
`

`
@�`"2>m~�%#!"&5463!;!"3!;!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+3";26=4&+";26=4&+�%� %&@&���(88( �
��� &%��&%[ `  `�&% 

 
 % &% 

 
 % �&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&`�  �   %%


&%%


%%`&%`& 
`

`

@`5<LZcq|��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&###546;2#'"354&+##532##'32654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

�` & % @
`
 � `%%@&Z@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

``�%%��
  
``�%%`�@

	@�`"2@IWbpy%#!"&5463!;!"3!;"3!26=4&###532##'32654&###546;2#'"354&+##532##'32654&#�%� %&@&���(88( �
���%& %&� `%%@&Z@

�` & % @
`
 � `%%@&Z@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

@`5<Leq{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#"&=46;5#";5#37#35#535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�@

``&%``@` `  `��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@
`
 %`&� `�  �  @@ �` @�`"2KWa%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#37#35#535#535#3535�%� %&@&���(88( �
��� &%��&%�@

``&%``@` `  `��� `�@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� `�  �  @@ �` �	5	!!!�������r��s���s����� �	7!53!7%"&54632�``�``�%%%%��``�`���```%%%%`'#'3!53!3�����@�@�`� ��� ����@	���'!!3#3#3#3#3#3#!!333!�@���������������@����@@�������������@���@@@#5!3!265!!!!!!!!3#!!���%`(8���@����������@�����@%8( ����@@@@@@@@�����2'7>%''`B^@�@1��@ P�<�@8��^B1@�@� ��@P��@8����7'.'7#%5���@�@�;2c����������N@@�@�@��2;N��������������6$3#*10��Q�c��|H�0�@�d8�O�������	6	&7>%811.54632#"&'0>781>7���'P�f��
iiN98((88(	��9s��
���P��'�
��s9	(88((8��9Nii
���9234.234.7.54632#"&'%?�7j30W&%;`e��G�225`Fz�@��%%%	��@@�`;%&W03j7��e�`522�G]�zF�@@�`�	%%%���@����%&"'1;0232677'764'#5�&j&�y�k�(
�
�j�z�%%��m�m�*�%%�z�j�'�
�k�y�&j&�em�m�*���a�6.'32>7>&'#"&'32>7>'aK\j77j\KHYe55eYH~!|F)N!

,TJ="
"�E�wl//lw�E+XXV).L66L.)VXX+��>K-?'@�5*0�A���)-#54&#!"3!26=3!#";2654&+5!5!�&�@&&�&��� 

�

 @�@���@&&�&&@��
��

@
@�@�!-48181!8181!5!"3!2654&##"&54632!537������&&�&&�8((88((8@��@�@�@&�&&&�(88((88�����������,<HO#54&#!";3!2654&#8181!81!"81!8181!81#"&54632!537@@&��&&@&�&&�&@��&�����8((88((8@��@�@@&&�&@&&&@��@&��(88((88�������@+?C32>54.#"#.#!"#"3!2654&".54>32#530!8L++L8!!8L++L8!��$0�0$�&&�&&�&;gM--Mg;;gM--Mg���`+L8!!8L++L8!!8L50PP0&��&&@&��-Mg;;gM--Mg;;gM-�@���	L#32654&!";74.#".54>32.'>54&'>5 @@
�

@�P��jj��P4F),Aq�VV�qA,)F4��@
�

��
�@j��PP��j.X)9*L;'�
*V�qAAq�V*
�D';L*9)X.���*3#".54>32#".54>32�@#=R..R=##=R./S�#=R..R=##=R./S�� !:,,:!!:,pr�!:,,:!!:,p@@(,.#"32>7>54.'
�6qvy??yvq66qvy??yvq6��@�� )TY[//[YT))TY[//[YT)�����	@@"!#535#535#53!!#535#535#53%��������@����������@��@�������������������@@+/4632#"&%4632#"&54&#!"3!26=!5!�^BB^^BB^��^BB^^BB^&��&&�&����B^^BB^^BB^^BB^^�`&&��&&`��������'3?K[!"3!2654&"&54632"&54632"&54632"&54632"&54632.#!"463`�B^^BB^^��(88((88((88((88�(88((88�(88((88((88((88X:�B^I7&^B�B^^BB^�@8((88((8�8((88((8�8((88((8�8((88((8�8((88((8�7I^B�:X}&@����".#"32>72#"&5463�#Wcn:j��PP��j:ncW#��@))))
)B/P��jj��P/B)M�))))��2�!.'1897!5.'>&2IeF--FeI{j�f
Q.�.Q
f�jd6aWM!!MWa6\ɋ&GX|&&|XG&������O">7>54.#".'.#"3267>7!5.'32>54.#,N'8" 8K**K8 "8'N,+K8!!8K+,N
))3�3))
N,+K8!!8K+7"

(YN-+L8""8L+-NY(

"!8M++M9 #
 8_L8&&8L_8 
# 9M++M8!���@�	��@@����"F[e�4.'81#0130412>5"&'.'.5467>7>32467#*10232.'?>'"&'.'.5467>7>32#0SE~�ii�~ES0#�				��$B&3773&B$t�Rv	vK�c90AE"Q./Q"EB0:c�L�� .wBBw.!

!.wBBw. 6'K#_X_#K���
0B
....
��$EQ2.#"'>3%>32.#"1.#"'>7>324632#"&�O�4Z#]55]#Z4�O�;.hs|@@|sh.[$T\c33c\T$�(LGC[6~��MM��~6[CGL(*UWZ--ZWU��%%%%�<5Z#((#Z5<E-F//F-[$8&&8$�)17[6T::T6[71)		��%%%%���%Do4.#"!'>.54632'>54&#".54>32''>54.#".54>32P��jj��P1Y{I�I{Y1��%%3,:K55K:,KDW(F]55]F(WDK�I/P: 2WuBBuW2 :P/I<dH(Gy�]]�yG(Hd<�j��PP��jS�}_  _}�(%%;;	F.5KK5.F	�O5aJ,,Ja5O����;O`5BuW22WuB5`O;�SkE]�~JJ~�]EkSp-AU4632#"&>54&'.54>7#.54>7>54.�K55KK55K&>,,>&!''!��'!&>,,>&!'�$4!6W>"">W6!4$�6W>"">W6!4$$4�5KK55KKN;HT..TH;4�SS�4��S�4;HT..TH;4�S@zn`("]o~DD~o]"(`nzp"]o~DD~o]"(`nz@@zn`����
.2654&#"#".=##!5#5>=�B^^BB^^"#=R..R=#@(E]6�@�6]E(^B�B^^B��B^`.R=##=R.``8bM1�@@�1Mb8`@����&!"&5463!!"3!181"389!5!��`(88(`��5KK5� 

`��@��8((8K5�5K��@

@@H@#'8#";2654&#53%#";2654&#537?>'.�

�
-��`�

�
-���� ���@
�@

�
�@�
�@

�
�@OW��	W;��@�'-%5#35#3#35#3#35#3#35#3##!53!5@@�@�@�@�@�@�@�@@@@��@��@�@@���@@���@@���@@��@@@���@@����#!"3!2654&!!!!!!!!!!`�(88((88H�@�����@��@��@��@�8(��(88(@(8����@@@@@�@����'1!"3!2654&!!!!!!4632#"&#"!54&`�(88((88H�@�����@��@@8((88((8��(8@8�8(��(88(@(8���@@@@�(88((888&@@&@����!7.'.'.#!"3!2654&''#5#!"&54630:1;�-3')�!//!�!/�%
�)�	� 		���
��3-/!��!//!p)'6)�
%��		`	�
@����"8K.'.'.#!"3!2654&''#5#!"&54630:1;.#!"463!.�-3')��!//!`!/�%
�)o	��		s�s
��')��!/%	�[3-/!� !//!�)'6)�
%�		�	�
�/!� ,.	@����!7ESa.'.'.#!"3!2654&''#5#!"&54630:1;!"&5463!2'!"&5463!2'!"&5463!2�-3')�!//!�!/�%
�)�	� 		���
�@

�

�@

�

�@

�
�3-/!��!//!p)'6)�
%��		`	�
�



�



�



@����+3I%!575#"&546327.'.'.#!"3!2654&''#5#!"&54630:1;@����8((88((8V-3')�!//!�!/�%
�)�	� 		���
�@�@����(88((88�3-/!��!//!p)'6)�
%��		`	�
@����#9a.'.'.#!"3!2654&'1'#5#!"&54630:1;..#"326=%.#"32654&'�-3')�!//!�!/�%
�)o	� 		���
���!5KK55K!5KK55K�3-/!��!//!p)'6)�
%��		`	�
G@�8((88(�3�8((88(@
@����$:
.'.'.#!"3!2654&''#5#!"&54630:1;�@��-3')�!//!�!/�%
�)�	� 		���
�@��[3-/!��!//!p)'6)�
%��		`	�
@����%;?C.'.'.#!"3!2654&'9'#51#!"&54630:1;!!%7'�-3')�!//!�!/�%
�)o	� 		���
�@��@���3-/!��!//!p)'6)�
%��		`	�
��������
@����%;?CGKOSW[jn.'.'.#!"3!2654&'9'#51#!"&54630:1;3#;##3#;##3#;##3#;#;26=4&+5##5�-3')�!//!�!/�%
�)o	� 		���
��������������������������P����3-/!��!//!p)'6)�
%��		`	�
@@@@@@@@���@�@@���!!!%#35!#!35!��@�����e�@��e��@������e������ee���@���
47=#54&+"#!'#58138154&+3#!35#"3!!#!35!��&�&����@
@ ��� @

 ��@e��@@@&&@��@@��
@���@@
��
��[e�@���
	
%	7%	7��V�����g��g��g��g���������3�3�3�3�@!!����@��@@@
%!!!@������ ���@��@��@'!!##5#53533@��@��������������@�����@	'!!!5!@��@�����������@�@'!!'333@��@�ࠀ����������@'!!###@��@�ࠀ��������"���!"27>54&"&54632��0�$�(���(88((88��$(�d�0���8((88((8"���.!"27>54&"&54632#"2?��0�$�(���(88((88�x P0�$�(��$(�d�0���8((88((8� �$(�d@@#'+/37;?3#3#3#3#3#3#3#3#3#3#73#73#%3#%3#'3#%3#���@@�@@�@@@@�@@��  �  �  ��@@�@@�@@@@@@@@�������@��������������������������@@@@@@@@@@@@@@9���"&*.26:>BFJNRVZ^bfjnrvz~��������������������������!!1!3#%!!1!3#!!1!3#3#;##3#;##3#;##3#3#;##3#;##3#;##3#;#3#%3#73#'3#%3#;#73#;#73#;#73#;#73#3#%3#73#;#73#73#3#%3#73#73#;#73#3#%3#;#73#;##3#73#73#@�@�����@�@������@�@�����@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@�@@��@@@@@�@@@@@@@@@@�@@@@@@@@@@@@@@@@@@@@��@@@@@@@@�@@@@@@@@��@@@@@�@@@@@@@@@@@��@@@@@@@@@@@�@@�@@�@@��@�������@������@�@������@@@@@@@@@@@@@@@@@@@�@@@@@@�@@�@@�@@�@�@@@�@@@@�@�@@@�@@@@�@�@�@@�@@@@@@@����,1''#"&546?'&"7>322764'	@����J !%6 J@��J !%6 J@T���������J 6%! J��@J 6%! JT@���������0%#"&54632#"&54632!4&+33!5!"&585�8((88((8�8((88((8�%��0K5�% (88((88((88((88x�%@�d45K@%����';?C"32>54.".54>32535#5##3#3353+53#53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0��@����@��@@�@@�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<��@@@��@@@��������'r"32>54.".54>32&+"&'32654&+532654&+>;27>'.+"#";#";;2676&'�c��KK��cc��KK��cP�i<<i�PP�i<<i�o
-�2	�

��

�	2�-
J+�:X#

  

#X:�+J�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<$

@

$%+I7

@

7I+%����'V"32>54.".54>327#532654&+546327>'.#"#";!2654&#�c��KK��cc��KK��cP�i<<i�PP�i<<i�0�`

`8(,
J+B^ 

  

�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<�

 (8%+^B 

�

����'b"32>54.".54>322654&+76&'&'.#";#";326=32654&+53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0

D_ee_D

``

`

`

``�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<`

����

@

`

`

@@@#'+/!"3!2654&!2!546!"&5!%3#73#73#���(88(@(88��@
��M��
���@@�@@�@@@8(��(88(@(8@
``
��
 ��
����������#'+;G!"3!2654&!5!%!"3!2654&!5!5!5!!"3!2654&##5#53533���&&@&&��@��&&@&&��@��@���&&@&&�@��@��&��&&@&�@�&��&&@&��@�@�&��&&@&���@�����/?N\"32>54.4632#"&1'>54&'79.#"'>32.546773267#"&j��PP��jj��PP����pPPppPPp^�	

	��I11I'V..V�ޱ	

	��I11I'V..V�P��jj��PP��jj��P�PppPPpp[I11I'V..V'I�	

	���I11I'V..V'���	

	�����)#"&'.54676.#"130>54.�0 00`00PP0$HTB<*-I[//���0<H<>TV@0PP00`00 0VT><H<0���//[I-*<BTH$���:.546'.#"&'&67>781>31:3:31281�biS!f==f!Sib%If�[[�fI%�*a	&$$8$#

#$8$$&	a*>&.##.&>@����#'+!2#"&5463!54631323#3#3#3#���5KK55KK5���K5�5K�@````````���K55KK55K�@5KK5��@�@�@�@!"3!2654&!7!	%���(88(@(88�������ggg�����@8(��(88(�(8�Z����&�6nn��"�����#35%7'7 ``���'i�``��@�@�``����'���``@@�@���@�"10>54."&54632BuW2dxddxd2WuBPppPPpp�2WuBx�̂��xBuW2�pPPppPPp���@�'3"10>54.".54>32'4632#"&BuW2dxddxd2WuB)G55G))G55G�I33II33I�2WuBx�̂��xBuW2��5G))G55G))G5�3II33II����!*'.5!"&'&676#!2	 � 

�
�@	��p
^�@��
�@
@
������!$2"32>54.4>32.5
"&'%#j��PP��jj��PP����Aq�VR�8�d�4<�nIR�8��4<Aq�V�P��jj��PP��jj��P�V�qA<4��d8�RIn�<4��8�RV�qA���%%%@���@���������� �@����%%%
%%%%�����`@`��������������Rf��f]��]R]x] @�%+2#5267>54&'.#"33>!3�]�zFFz�]G�225522�GG�2&2	���Nv����Fz�]]�zF`522�GG�22552&_4�Q�g;���@����-%'3"32>54.".54>32�Ӏ��j��PP��jj��PP��jP�i<<i�PP�i<<i�����P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���"32>54.'3j��PP��jj��PP��)Ӏ�Z�P��jj��PP��jj��P���Z@����'7EK"32>54.".54>32>54&#"1%.#">#!5]�zFFz�]]�zFFz�]K�a99a�KK�a99a�\
pP.P2[QE��P.Pp
EQ[�@@Fz�]]�zFFz�]]�zF��9a�KK�a99a�KK�a9�0Pp)"
'6E(�")pP0(E6'���@���:]%4.54&'.'4654&#"3267>5041.#".'.'>7>32O`P!2@$&&)F3P`P<k�V<%%<V�k<�(_4I22I4_(8:

:8 JPU++UPJ 8:

:8�lhHPT
*K=+
$$4GZ1TPHhl3)&&)361DD1			
		
			@���� A5354&+"332>54.#"&'.5467>7326'�%�%�Q�g<Aq�VV�qA<g�q-u@@u-.00.+p==p+.00.�A@%%@AFo�RV�qAAq�VR�oF��.00.-u@@u-,0��:0,-u@@u-����#'373#73#73#3#73#73#3#73#73#%3##5!#5#!!!@����������������������������������@���@��@@�����������@��������@@@@��@��#'!!!";!32654&"&54632!!����&&��&&��%%%%%�����@&��&�&@&�%%%%�@@@�@#'+/37;?C!"3!2654&3##5%3##5%3##5'3#3##53!5!#535#535#53@�&&&&�&���������������@@��@@@@�������@&��&&�&��@����@����@����@�������@�@��
!!!!!'@����� @@���������@@@@
4&#!"#!5!5!7!81!81�&��&��������&&����@@���@�#!"3!2654&!!"&546327!!�@(88(�(88�x��%%%%��8(��(88(@(80 ��%%%%�����@� !"3!2654&"&54632#%!!��&&@&&�� ��@�&��&&�&�.��@����!"3!2654&"&54632%!! ��(88(�(88��


��@�8(��(88(@(8� 



`���/O.'7'&"#132>7>54.#".'.5467>32�B�J�@� �@�-YVS(6qvy??yvq6�)TY[//[YT))TY[//[YT)�	�@�@�	)TY[//[YT))TY[//[YT��6v??v66v??v���!/=	.#!"3!2654&##'#5!'!"&5463!2!"&5463!2��
�@
�%�%<�������@

�
3��

@
4@����%% 0��+�ի



�



���!	.#!"3!2654&##'#5!��
�@
�%�%<������4@����%% 0��+���!3!265	35!37!@���
�
������[@J@���`

������@@�!3!265!5#	7!@���
�
����@@�[@J@���`

�������@@���	###
-'%����H�[�[H�����Ha��aHi������33	3
-5%�������%�[�[%����pcm��mc�������!!!3#!3!3��������@@K5�������@5@@7!265!%3#!!��Pp�p�@@���@@pPPp�@�����+A"32>=4.".532>=".532>=j��PP��jj��PP��jj��PP��jj��PP��jj��PP��jj��PP���,:!�!:,,:!�!:,��,:!�!:,,:!�!:,��,:!�!:,,:!�!:,�!"'!'>32>54.#5d\R#���5�PP�i<"0U(@-P��j�'7#����4<<i�P+QIA`#Vbl9j��P� 7.54>32!.#"-@(U0"<i�PP�5���#R\d5j��P�9lbV#`AIQ+P�i<<4���#7'P��@����
>.	6�+&8�������FO@M��e�����������5	5&&>@�����8&+iOF��������e��Mr�����75	5.7+&8�������FOi�M��e��������r@����%	>&''������8&+iOF�ɸ����e��Mr������"2#"&'5>54&'.54>j��PP��j()Z]`03M,F1P���Aq�VV�qA)3
W4HR\1V�qA����!N%#"&'#".54>322.#"*#"&'5>54&'.54>@$4Y )<iN--Ni<<iN-��h��R%Q*H�359()Z]`03M,F1P��;"8(#(F]55]F((F]5*Kx?n�U1-/{D"@)3
W4HR\1V�qA����$H12#"&'5>54&'.54>3.'#"&'2>7>7>54&5�c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.���3W">7>3:3267>7>54&'.'.#512#"&'5>54&'.54>)O&#>253/ )O&#>2552>#&O)j��PP��j()Z]`03M,F1P��

")d6;3.		


")d66d)"

�Aq�VV�qA)3
W4HR\1V�qA����!n%#"&'#".54>32>7>3:3"&'5>54&'.54>32.'.'.'.#"@$4Y )<iN--Ni<<iN-��253/ ()Z]`03M,F1P��jh��RC"	2(>#&O))O&#>;"8(#(F]55]F((F]5*K�)d6;3.		
�)3
W4HR\1V�qA?n�U*N "



"����3X|">7>3233267>7>54&'.'.#512#"&'5>54&'.54>3.'#"&'2>7>7>54&5�&I"!9-0./&I"!9-00-9!"I&c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF@%Z05..	%Z10Z%�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.@�@%5>54.#"!4.@5K$NHHN$K5Q�g;�;g��5�J<iN--Ni<J�5-CW00WC-����A%5>54.#"!4.>7.'.5467>7.#"!>75K$NHHN$K5Q�g;�;g���*e9	P9
OZHN$K5Q�g;
�5�J<iN--Ni<J�5-CW00WC-)
*Y-Aw20<:E-Ni<J�5-CW0
	���2>%4>7>54.#"!."32>54.##5#53533�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid�@��@��9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-����@�����26%4>7>54.#"!."32>54.!5!�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid��@�9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-��@���#	'!5.'5>54.#"!���`@�`��@2�K5K$NHHN$K5Q�g;�`��`@�``s&5�J<iN--Ni<J�5-CW0���4632#"&#'#"!4&@pPPppPPp�#�J``J�#`  PppPPpp��lt``���pP��@Pp@=2#".5'4>3">!2#".5'4>3">�.R=##=R..R=#Fz�]@u-	I.R=##=R..R=#Fz�]@u-	#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@=".54>32#5267>7!".54>32#5267>7 .R=##=R..R=#Fz�]@u-	��.R=##=R..R=#Fz�]@u-	@#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@����";W>54&'!!>54.'4>75.51!.=467>7!!.�4U=!��!=U44U=!z!=U4��9S66S9�9S66S9�661�f1666M�M�!^s�H  H�s^!!^s�H  H�s^!�@FhMdMhFFhMdMhF"G@G3 2G@GxKLw8��#/BUht4632#"&4632#"&4632#"&4632#"&81463281#"&5%81463281#"&581463281#"&54632#"&�K55KK55KK55KK55K�%%%%p%&&%��%%%%��&%%& 9'(88('9X****@5KK55KK;5KK55KK�%%%%�%%&&V%%%%p%%&& '99'(88(��**** ���:r.'.'.'.7>7>7>7>7:3265<51'.'.'.'.7>7>7>7>19$#T.-a11_,-O!!46!"N++Z..Y))K1	%f3I((U**S'&E,.C%%O''M$#@)

!�2c-.R"#57#"Q-,^//\++M  24! L)4%�(G.1G&'Q))P%%B+
-A$#K&$3����
-?Pbp�����"&=4632"&=4632"&/&676#"&/&676#"&/.7>"&/.7>#%#"&546;2%81#"&54638132#"&'&6?6#"&'&6?6#"&'.?>#"&'.?>#####�Y-Yf	Z
Z	�7�*�
_��
�o����

���

�$			�m�

��7
		Y	 		Yf
Z
Z�#�##�#�J����-�-��	���Z
*Y*��Z
Z��$	Y

$	ZuZ
Z��!�	 �
x�

����*4C467'7.%>54&'7.'>75#"&'3267'��*;&r'-�-'r&;*��Ep!�RgyB��!pEBygRTC##Cr7}CC}7r�		<07h_T#�+o>>o+�#T_h70<	1S;<:cL1œ;S�1Lc:��!!����'Z"32>54.2#".54>#".'.54>7813267>4&'7j��PP��jj��PP��j5]F((F]55]F((F]fGMT++TMG/  /C11110{CC{01111C/  /�P��jj��PP��jj��P�(F]55]F((F]55]F(��/  /GMT++TMGC2{�{2/33/2{�{2CGMT++TMG9����)6BObn4632#"&81463281#"&4632#"&4632#"&5%4632#"&4632#"&581463281#"&5!#"&54632�K55KK55K�>++>>++>g8('88'(8��2$$22$$2��. !--! .i****w&%%&�C00DD00C@5KK55KK��+>>++>>�(88('88I$22$$22$p!--! ..0****&&%%0DD00CC��F#/;GS%4632#"&4632#"&%4632#"&4632#"&4632#"&%4632#"&4632#"&�8((88((8�`8((88((8@8((88((8�:8((88((8L8((88((8��8((88((8L8((88((8 (88((88�(88((88((88((88N(88((88��(88((88((88((88t(88((88���8".'.5467>732>54&'.'7#3c\T$$8&('%h?+3U!Aq�VV�qA!U3+?h%'(&8$$T\c3@&8$$T\c3I�=;_VM11q;V�qAAq�V;q11MV_;=�I3c\T$$8&���3">3232654.2>7#".54&#"i��RCq�UV�qA8((8P��ji��RCq�UV�qA8((8P���N��h[�vDFz�](88(j��P�N��h[�vDFz�](88(j��P���D�1812233332323023323:323232013023181263623263263>7>7>7>7627267>7261263>7>7>7>7>3>7>7>7>7>7>7>7>7>7>7>7465>7>7467465>7465465645045>5465<5645645<12650451814&5&454&54&5.'.'.'.'&4'4&'.'4&54&5.'.'.'.'.5.'.'.'.'.'.'.'.'.'.'"&'"&#.'.'.#.#.#.'"&#"&#0"#.#"&#*#&"#&"#*#4&#0"#181"#"#"#"#"""#"##0107041465>7467465>7461465>7>7>7465>5>7>7>7>7>7>7>7>7>7>7>7263>7>7263627263>3623623021627:3:7:3263:3:3:323:323021209>720222321233322110109011"#"#""##"#"1*#"*#**#"#*#*#*#&"#*#&"#0"10"9"&'.'"&'"&#.'"&1"&#.#.'.'.#.'.'.'"&'.'.'.'.'.'.'.'.'4&5.'.'4&5&4'4&5.5&45"41<1&4'<5<'<54&5<5<5<5645<5645041049.'	
%	


	%	
&


		$J


#





"


�	



	%	
&	



	%	
%A





"





#���-!7.#"3267>7#".54>327���7�MM�76::67�MM�7	`#Vbl:j��PP��j5d\R#�@�6::67�MM�76::6	T(A-P��jj��P'7#����)7ES!!%!!#!!!#"3!26533!2654&#"&546;2#"&546;2#"&546;2@������x8���8**0*�*0**�����@

@
o���@@@���*��**x��**0*��



�



�@



����"6%'.>54.#"326776&".54>32��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����"6B%'.>54.#"326776&".54>32##33535#��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]������Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����������"6:%'.>54.#"326776&".54>32!!��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]����Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(@����
!7')'7''77'7�`��`����`�������`����`�����`�������`����`��`�`��`�����
!'7''77'7)7'@���`����`����`��`����`����`����`��`����`�� ���`�����
''7'!7��`������`����`��`���`��������
''7'!7���`����`����`��`���������!-";535353732>54."&54632�BuW2�{%@���S6BuW22Wu(88((88�2WuB�{�%@��S	
2WuBBuW2��8((88((8����$)9'./.35353535676&'"'&4?62�e5e9��F�� ����	�6���.8-���-
	��		-
		�e5e�6����@��GF9��.7-���-			
-		��	����##54&+"#"3!2654&%46;2!PqO�Oq �\&�&��OqqO�� ��&&�����#2#54&+"32#!"&5463!5463Oq�&�&���qO�qO��&&�� ��Oq����'%>54.#""/3267?6&�3-Ni<*�f6�-Ni<%D�3e��D%<iN-�6f�*<iN-�3e3�37OS54&+"#3;26=!5534&+"!!;26=35#534&+"#3;26=!5!53�����@������@�����������@����@�����������������@����37OS326=4&+5##";33#26=4&+##";35'3#26=4&+5##";3'3#��������������������������@�@�������@������@������6J.>7'#".5#&'>323467>7.'".54>32�	/#e2(G5�

>HM#e%
	.#e2(G5�

>IL$d%
�Z+K9  9K++K9  9K^#LI>�
5G)2#.	�
$#LH?�5G(1#.	�$m 9K++K9  9K++K9 ���0<��%7'./#'737>77'>?5'.'"&546325'.'7'.'7'.'7'./#'''77737>77'>77'>77'>?"&54632l)-:	@	:-)FF)-:	@	:-)FF�%%%%C9C'.8
;%@%;
8.'C9CC9C'.8
;%@%;
8.'C9C��:QQ::QQ�:-)FF)-:	@	:-)FF)-:	@	�%%%%�@%;
8.'C9CC9C'.8
;%@%;
8.'C9CC9C'.8
;%kQ::QQ::Q����%&"'!'#72?64'��'�.���DΠθ.(q�.�.�DΠθ'��q(	����/3'#3#3#5#3#3#%37'	&"2?64''7�@��@@��@@�@���@@@�@�@2��(<|(<��@��@���@@�@@@���@�@�N|<(��<(R�@����)#54&#!"#"3!2654&%!!##5#53533��&�&�5KK55KK������������&&�K5�5KK55K���@��������=5#.'3'#4&1>54&#"0#'3#3#73326737#>7�%�F>:�pPPp�:>F�%��|F>:p,�JJ�,p:>F|�@7a(�OppO���(a7@"A���:EE:�A"����"32>54&'7.#�]�zFFz�]]�zF@SgyB��Fz�]]�zFFz�]6e-�7\A$�@���N7!!3"&5463:37.54632:3:3.54632#*##"&5467'*#*##�����(88(h8((8h�	8((88(�	8((8hh8(@���8((8�(88(�*(88((8��(88(��(8@7!!3#3#3#3#�������������������@����@���@#'7;#";2654&#3#";2654&#3#";2654&#3 �

�

��@�

�

��@�

�

��@
��

@
���
�@

�
�@@
��

@
����$0<5!#3267#"!4&+5>7326=#"&=3%#"&'>=3@���pP"g=@5KK5@=g"Pp���0Dt
�D0
t���Pp2D
�K55K�
D2pP��D0@@9t0D9@@����*:TX\`d>7>76&'.#".'.#"#3!3#'>32#>%&67>312&"'.'.'!!5!5!!!7!5!
 -%K 1=2-:,%	+$�@@�b1 !S&34�q	 
)3O���@��@��@�
<"<"2}11y,&s,��@��N !.+k	

O3)��� ���� ����@�)8.#!"#"3!2654&+>7>54&%!!<5467
�$/,"T/`

@

`/T",/����		1r<O�8+9��



H9+8�O<r(Y//Y(���}@#>'.#!"#"3!2654&+!'y	�@	9`

@

`�d��d

�r��



~������7;#54.#"32>=32654&%.'>7>32#"&#53��<i�PP�i<<i�PP�i<�%%��"		",k99k,"		",k99k����`!:,,:!��!:,,:!`%@%>				��� ����5";26'>54.!####;;26'3265#�(F4T@ $ $ @T4F]5((5
S$ $S
�#=R.Oy��&&yO.R=#��@��@�`
�&&
����=.#">30030&73267>7>7>74&'�)hu�BQ�|c" ##���s_��D/
�*K"X�/)5+<V=:2"5M1/m>7zAk��NHvW$S.$T`k;�j()$`4(TRO#���	#0>	1%5�����Ccp,���@@����
�bH2taA��@@���S2!.54>>5#53.'#53.'.'#5.#"#53#3#333>j��P&Fa;�;aF&P���-ZUj@#R-@  @-R#@jUZ-	�%6%�	�P��jH�s^!!^s�Hj��P��CJO)@"@@	#2FUUF2#	@@"@)OJC����5G"32>54.>54.'>7>32#"&7+"&=4673j��PP��jj��PP����	2F)8.7�MM�7.8)F2	.j99j�

@

 �P��jj��PP��jj��P��1/UF5?s/6::6/s?5FU/1  �@

@�
����6%7>726376&/."?065>??6&'��g
�"@'ag�!
@'�
2	,�'A"�gb'@
!�
h��	3	O����2&67>10>'6.'.1.'A3 (+(
%C^,
'�]B�%a[C	9N((&	8jQ@k�9?hRD!RPE/���Lu�(q u�R<}yq20L.+QPQ+<h`[.D���� %532654&#!";3!26%53!��� 

��

 ��7Ij�jI���



��[���Y��@����7!#"&5!32>5#"&'.'33267>=3��@pPPp@�@Fz�]]�zF�5�KK�549$o#(%&`55`&%(#o$94���PppP@��]�zFFz�]��59955�JE��5`&%((%&`59��J�5@����	
-13!265#3#3#3#3#54&+"#"!54&!#53�&@&�@@�@@�@@�@@����@������&&�����@��@��@�@PPPP?@����
!!%5!!7!5!#53��@����@@����@�����@@�@@#;!54&#!"!"3!2654&%81!81!#+"&=!+"&=#5!��&�&�&&�&&���@�
@
��
@
���@&&@&��&&@&@@�`

``

`@���'''.3?5!����۬&Z&�ۀI��@��@�I�۬&Z&��ۀ����@�@'+#54&#!"332654&'!32654&'3%53��&��&@Q	K55K	b	K55K	Q���`��&&�@!5KK5!!5KK5!������!###!!%3�@�� � ��@ @�� � @����6����4632#"&%'#%37�8((88((8�J�n@�nJ�<��<�`(88((88��<��<���W��a����)5?JU#.'5##335>73'#.'5"&54632#>3.'5>73e
=\uC�Cu\=
ee
=\uC�Cu\=
e�d>)(G9(��%%%%[)>d	(9G�d>)(G9(	Y)>d	(9G(Cu\=
ee
=\uC�Cu\=
ee
=\uC�)>d	(9G�%%%%Yd>)(G9(��)>d	(9G(�d>)(G9(	@����	%0%6&>7%��@�@����	0c�zz�c0	�H�H���G9��9G�^���;;���^�����	!	!�������������@����-1#"&'.5467>7532>54.%3#�2.00.-u@@u-.00.2EvU0Fz�]]�zF0Uv����-�"-u@@u-.00.-u@@u-"�Sp�L]�zFFz�]L�pS��Y�''7''7'2?>[�f�[�sWWs3�D$F-�B�9yuk�[�f�[�sW�Ws��+kuy9�B�-F@����"06!4&#"!"3!2654&%2#"&546!33!26=3'7%���K55K��

@
�S%%%%���
�
��@�:�:@5KK5
��

@
@%%%%��`

`�e�:r�:@���)%!!!!!!'#5#53#575#53#535#535#5�����������@@@�����������������@��2@�<2@��@@@@@���!!%!!!!%!!!!%!!����������������������������������#/!!!!!!4632#"&4632#"&4632#"&������������K55KK55KK55KK55KK55KK55K������@5KK55KK��5KK55KK��5KK55KK���UY]ae%#54&#!5326=4&+";!"#";26=4&+5!#";26=4&+5!#";26=4&#53#5353#53�B.�����.B����܀�����������.B����B.���������������@���@�@@�!!!!!!@����������@�@�@`!!!!!!75'�������������@�@�@��@��@`!!!!!!7�����������@�@����@`!!!!!!7�����������@�@�����$4&'.#".#".#"3!26L9&AU19a!7 8N	(G55G(�Hf.>^0U?$1*N7
4G((G5f@(/.#".#".#";732654&''3533{&AU19a!7 8N	(G55G([��oHfL9������X0U?$1*N7
4G((G5��fH>^�(���@�&->54&#".#".#";!532654&#5#7|^B
d@Be$5]F((F]5��B^L������>	B^:KN<(F]55]F(��^B;X����"(>54&#".#".#"3!2654&'77|^B
d@Be$5]F((F]5`B^L��@`�@�	B^:KN<(F]55]F(^B;X�@`�@�#'#!5!!##	���ࠀ��@��  ���@@�@���� �
7!!%!5!!5!%	##����`  �@@�@@��� ����	33!!#53����`� �@���������@��!!#53	##� �@���`����@����@����%,8DKSYdou~����"32>54.>73##>73!#53'5#'>7>7#>7#>73.'373#..'.'.'53'537.'3#7#.'%>7#>3.'.>73�c��KK��cc��KK����
p���
p�	���
&��&
�u�	���
�1��	�
&P&
���	Qp
�@`& :�{: &`)`& :y: &`�K��cc��KK��cc��K��A!!@@A!!@@!�@�+)R+�)��!@��@!!A��@��+)R+�)��!@�!A@!�,M)#F)M,#�
,M)#3)M,#���c"32>54."&'>=4&#".5.+".5467326?>=>323:3j��PP��jj��PP��j/Y)�
*TB)�

n,F3u�A!5c,F&IQY�P��jj��PP��jj��P�@`
%,%
�	7�O_j94`,�M	
G&&GE_wF 1#S����/\"&'.46?>32"'&4?64'.#"#"&'.46?62326?64'&4762#�
#$$#�#Y11Y##$$#X,X))33�))
�1Y##$$#X,X))33�))+#$$#�#Y1D$Z^Z$�"%%"$Z^Z$W+X)t)�)t)+��%"$Z^Z$W+X)t)�)t)+$Z^Z$�"%��� 3#267#"&'.#">32��@>ff>>ff�#d9Hw!!wH9d#��}�b�~]}H'27>4&'."01267871'01"&'.46787162"'&47�A��(((s(�!""!"UXT"�g/////v{v/A��"TXT!"!!"�(r)((�z
'


EyA��(r)((�"TXU"!""!�g/v{v/////A��"!!"!TXT"�(()r(�z

&
E�=I"32>7.#"&'.'>7>732>54&'1#"&54632T��j$$j��TT��j$$j���.KK.8�CC�8.KK.(F]55]F(�8((88((8/TvGGvT//TvGGvT/�M--M$&&$M--M,5]F((F]5,6(88((88��NZ#5##3353#"&'.'>7>732>5<1.'.#"32>7.'%2#"&546�������K.8�CC�8.KK.(F]55]F()F3 T��j$$j��TT��j$
 1�@(88((88@������!-M$&&$M--M,5]F((F]5.@O,/TvGGvT//TvG2
~8((88((8�@'P!!!5.#"32>7.'!2#"&546#"&'.'>7>732>54&'������ T��j$$j��TT��j$N0�:(88((88�8�CC�8.KK.(F]55]F(.KK.@�@|/TvGGvT//TvG8a'8((88((8��$&&$M--M,5]F((F]5,M--M�&7C`&".#"3267642.546>7>7.'%4&'32>7#"&'32>7.'�(�'R+T��j$X6�		`�� 1
z%8��K.=(B���'5]F(>E.KK.8�C9M-`2T��j$"c=��/TvG>i(�(`(��%z
1 (8�-M,)K=F)F'��(F]�EM--M$&M/TvGCq*���@�	�@@��@�������
	'!7!@@���@@@��@������@
���
)7FTcr��%2#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?"32>54."&54632%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-=5]F((F]55]F((F]5B^^BB^^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.�(F]55]F((F]55]F(�`^BB^^BB^���"32>54.4>3".j��PP��jj��PP���<i�PP�i<�P��jj��PP��jj��P�P�i<�<i�
���(6DR`n}�"32>54.22#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?5]F((F]55]F((F]5B^^B%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-�(F]55]F((F]55]F(�`@^BB^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.���
%
%%7'?������<<<<��*��pp��*33A��3�����`���v��$��$�����
%
%%'������<<<<�p��*�33A��3�����`���;�$��v���
%
%%������<<<<33A��3�����`����".#">54.�(J?22?J(8bI*f��NJ��i*Ib�2A""A2*Ib8q���po���m8bI*��� 2.54>32'7>3�8bI*i��JN��f*Ib8-R"N�`�><�*Ib8m���op���q8bI*&|�����]@����#"&54632#"333334&@8((88((8�%@P P@%`(88((88�%��������@%����&#"&546327'.#!"733333'7@8((88((8�1���1o&�{@ @{�&o`(88((88�8#��$�Z���@��@�Z����)D#"&54632#"&54632#"333334&7'.#!"733333'78((88((8@8((88((8���%@P P@%�1���1o&�{@ @{�&o`(88((88((88((88�%��������@%�#��$�Z���@��@�Z����';GS2>54.#"2#".54>2>7#".''4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�V+UQL#7Vo??oV7#LQU�%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�	 CtV11VtC �(88((88((88((88���+?"32>54.2#"&546!2#"&546".'32>7j��PP��jj��PP��V%%%%��%%%%�?oV7#LQU++UQL#7Vo�P��jj��PP��jj��P�8((88((88((88((8��1VtC  CtV1���'3?Q2>54.#"2#".54>4632#"&%4632#"&#".'7326j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%@R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��2#9))9#21<<���+>"32>54.2#"&546!2#"&546".'73267#j��PP��jj��PP��V%%%%��%%%%�,QF:Rf==fR:FQ,�P��jj��PP��jj��P�%%%%%%%%��)9#21<<12#9)���'3?L2>54.#"2#".54>4632#"&%4632#"&##"&=!5j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%�@8((8�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�@`(88(`@���,8"32>54.2#"&546##"&=!5!'"&54632j��PP��jj��PP����%%%%�@8((8�@%%%%�P��jj��PP��jj��P�%%%%��`(88(`@�%%%%���'3?R2>54.#"2#".54>4632#"&%4632#"&'>32.#"j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�N2#9))9#21<<1���+="32>54.2#"&546!2#"&546.#"'>32j��PP��jj��PP��V%%%%��%%%%�f==fR:FQ,,QF:�P��jj��PP��jj��P�%%%%%%%%��1<<12#9))9#���';GY2>54.#"2#".54>>7#".'64632#"&%".54632.j��PP��jj��PP��jV�qAAq�VV�qAAq�u4]J6:Xq@,SI<GU^�%%%%��2
8((8
2@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��
"-8 ?mP.*<$	q(88((88!!���1F"32>54.2#"&5462.#"&6546".'67>7#j��PP��jj��PP��V%%%%��-98##89�,SI<GU^14]J6:Xq@�P��jj��PP��jj��P�8((88((88''��*<$	

"-8 ?mP.���'5=AIk�2>54.#"2#".54>;2>=.'.53#535381267>323267>54&#"3!81267>323267>54&#"j��PP��jj��PP��jV�qAAq�VV�qAAq��(F]5�5]F(�@$�����$���**D00D�**D00D@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�`@5]F((F]5@�F&����&F,	$$			0DD0			$$			0DD0		���4V]ah"32>54.2#"&'.#"#81"&'.546!2#"&'.#"#81"&'.54633.3753j��PP��jj��PP��V0D**D��0D**D0��)G3�@�3G�P��jj��PP��jj��P�D0						0DD0						0D���/AP���-PA/���'IY2>54.#"2#".54>2+"&5#+"&=46;235463267#"&'7j��PP��jj��PP��jV�qAAq�VV�qAAq�v
&�&�&�&
�
�
`Ft"6:FQ,$E"4@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�
`&&&&`

  
�D8!#9)7
���$F"32>54."&'73267#+"&5#+"&=46;23546;2j��PP��jj��PP��j$E"4Ft"6:FQ,@&�&�&�&
�
�
�
�P��jj��PP��jj��P��7
D8!#9)�&&&&`

  

���'9Up2>54.#"2#".54>.#"'>32#"&5<1>7>36!>20#"&5467.'.j��PP��jj��PP��jV�qAAq�VV�qAAq�f==fR:FQ,,QF:


	%%4+
�
+4%%	


@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�S1<<12#9))9#�
	
%%$0







0$%%
	���.I["32>54.>7>36#"&5<%>20#"&5467.'..#"'>32j��PP��jj��PP��*4+



	%%��
+4%%	


�f==fR:FQ,,QF:�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�1<<12#9))9#��7Jv�"&5<1>7>36#%.7>20#"&5467.'267#".'734&'.#".'32>54&'>".54>32�%4+



	%��


+4%%	
�=fR:FQ,,QF:Rf=
[: INT,,TNI :[
#  #P��jj��P#  #�V�qAAq�VV�qAAq�%$0




	
%�




0$%%
	�_<12#9))9#21<�"A:X''X:A"7d(8�Ej��PP��jE�8(d��Aq�VV�qAAq�VV�qA��+Fat4&'.#".'32>54&'>>7>36#"&5<%>20#"&5467.'.".'73267#
[: INT,,TNI :[
#  #P��jj��P#  #�@4+



	%%��
+4%%	


,QF:Rf==fR:FQ,�"A:X''X:A"7d(8�Ej��PP��jE�8(d��$0




	
%%e



0$%%
	��)9#21<<12#9)���'3?K2>54.#"2#".54>4632#"&4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�*K55KK55K%%%%��%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��5KK55KK�(88((88((88((88���+7"32>54."&54632"&54632"&54632j��PP��jj��PP����%%%%�5KK55KK�%%%%�P��jj��PP��jj��P�@8((88((8��K55KK55K�8((88((8	���'3?LXdqu2>54.#"2#".54>#"&54632'2#"&5467"32654&##"&54632'2#"&5467"32654&#!!j��PP��jj��PP��jV�qAAq�VV�qAAq�*



 (88((88(B^^BB^^B`



 (88((88(B^^BB^^B���@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��


S8((88((8@^BB^^BB^�


S8((88((8@^BB^^BB^�@@���+7;G#"&54632#"&54632"32>54.4632#"&!5!7"&54632�



@



�j��PP��jj��PP����8((88((8�� (88((88 






�P��jj��PP��jj��P�`(88((88��@�8((88((8���'3?Z2>54.#"2#".54>4632#"&%4632#"&3&'.#&6767>'j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%VA96>xH%"#A96>xH%"#@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��6a8>%"?#6a8>%"?#���+E"32>54.2#"&546!2#"&546&'.#&6767>'3j��PP��jj��PP��V%%%%��%%%%�>xH%"#A96>xH%"#A9�P��jj��PP��jj��P�%%%%%%%%��8>%"?#6a8>%"?#6a���'3?C2>54.#"2#".54>32654&#"32654&#"!!j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�e@���#/"32>54.!5!2#"&546!2#"&546j��PP��jj��PP���@%%%%��%%%%�P��jj��PP��jj��P�@�%%%%%%%%���'3?Qb2>54.#"2#".54>4632#"&%4632#"&&"3>5&'!62#.56j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%$P b\B.L"��P b\B.L@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�P"@& "P"@& ���+S"32>54.2#"&546!2#"&546"&'.5#.56762467627&j��PP��jj��PP��V%%%%��%%%%� b\B.L"PP"K/B\b�P��jj��PP��jj��P�%%%%%%%%�Y$$"@& "$$" &@"���'+7C2>54.#"2#".54>'4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�@�K5%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�L�L�%%%%%%%%���+0"32>54.2#"&5464632#"&'%j��PP��jj��PP��V%%%%�[%%%%K��K�P��jj��PP��jj��P�%%%%@%%%%�5L�L����'3I^2>54.#"2#".54>#"&54632"&'&""'&4762#!"&'&""'&4762j��PP��jj��PP��jV�qAAq�VV�qAAq��K55KK55K�6

		"j"		@6

		"j"		@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��B^^BB^^
		

!!

		

!!

���(4I"32>54."'&4762#"&'&""&54632#"&'&""'&4762j��PP��jj��PP����

		"j"		6�5KK55KK�6

		"j"	�P��jj��PP��jj��P��		

!!

��^BB^^BB^�		

!!
���/=GKUt�.#&3265<1.'"32>54.3!267#"&'7546;#"&533532#>=4&#!".54>32"032654&'>7>'.n+



	%%4�j��PP��jj��PP����	
�
	8�OO�8	pp	��@p		H/!� !/08Aq�VV�qA8�+4%%	



�




	
%%$0P��jj��PP��jj��P��0880H`	�		���	`		
`!//!`
	8�OV�qAAq�VO��

0$%%
	


���	
+Faq;5#"73#%#326=4&"32>54.>7>36#"&5<%>20#"&5467.'.#!"&=463!2	pp	���0pp		�j��PP��jj��PP��*4+



	%%��
+4%%	


B/!� !//!�!/0`	�		���	`	�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�5!//!`!//!	���'5C^lz��2>54.#"2#".54>#"&546;2!#"&546;2"&'.#""'&47>32"&=4632"&=4632%"&=4632"&=4632j��PP��jj��PP��jV�qAAq�VV�qAAq�v�

�
�3�

�
�%!!%

		MM		z






�3






@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��







�(		




@

@
�
@

@
�
@

@
�
@

@
���!/=Xft�"32>54.#"&=46325#"&=46327#"&546;2#"&'.#""'&47>327#"&=46325#"&=46327#"&546;2j��PP��jj��PP����







 �

�

%!!%

		MM	�







 �

�
�P��jj��PP��jj��P� 

@

�

@

`



�1		


e

@

�

@

`



@����>J�54&#".#".#"54&#"'.#"21#"3!26=4&+7>5#"&546325!.546322127>54632326546323265463232654632�8(


+!

!8((8�
(8�-

�

,I@



T����
�













`�(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�>J�%32654&'>54&'>54&'32654&#!7>54&#""154&+";26=3%"&546323'>3213!2#!"32#"32+"32+��(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�8(


+!

!8((8�
(8�-

��

,I@



T�"
�













@����>J�#"&'#"&'#"&'#"&5#"&54672417#"&=463!2+4&#"326'!32672617623265463232654632326=46323265�8(


+!

!8((8�
(8�-

�

,I@



T����
�













 �(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



�>J�%#"&5467.5467.5467#"&5463!'.5463221546;2+"&=#%2654&#"#7.#"1#!"3!2#"32#";2#"3`�(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



8(


+!

!8((8�
(8�-

��

,I@



T�"
�













����!/	!5"3!26'1.#1#"&54632'"&=4632����
�K%3f3%�K
@%%%%@%%%%c��W]��,@@,g��%%%%e%�%%�%���(=AE"32>7>54.'.#512#".54>3#3#*PKD--DKP**PKD--DKP*j��PP��jj��PP��*����`-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P�@�������8M3#2#575!57"32>7>54.'.#512#".54>���%������*PKD--DKP**PKD--DKP*j��PP��jj��PP���@%��@�@��-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P���#!4&+"!"3!;265!26=4&�
�
��

`
�
`
@`

��
�
��

`
�
@@3!26=4&#!"
�

�@
 �

�
���-A46;2+"&5!535#533"32>54.".54>32�  ��@@�@�j��PP��jj��PP��jV�qAAq�VV�qAAq�� �P@�@��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���'3"32>54.".54>32'77'7j��PP��jj��PP��jV�qAAq�VV�qAAq�J��`��`��`���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���`��`��`�����(4A.#"32>7>54.'>32467#".5j$T\c33c\T$$8&&8$$T\c33c\T$$8&&8$&!��/q>O�i<�&!/q>O�i<*$8&&8$$T\c33c\T$$8&&8$$T\c33c\T$��>q/!&<i�O>q/��!&<i�O����S%81	81>76&/.81	81.'&81	817>781	816?>'.���7�	���	�7���	77	��77	���7�	���	�7���	 @	'	`� ���@� ���*V
%7	''��s�������!Y�R�Y*����������X�Y�X@����
048>334&+"33#%5#";5#54&+326=4&#26#535#53	7��@&�&@��@�&&���&��&@�����`�R�`���&&�����@&��&@@``&�@&`&&ƀ@���@ F�.@���!5!55!3!%!#���@�������@@��@�����������@��@����5!5!5!%!#!!5��@�������@�@��������@���������'*"32>54.".54>32
j��PP��jj��PP��jV�qAAq�VV�qAAq������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA������'+/"32>54.".54>323#3#j��PP��jj��PP��jV�qAAq�VV�qAAq��ꀀ���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`��������'+"32>54.".54>32!!j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`�����'*."32>54.".54>32%3#j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*.2#".54>2>54.#"%#3j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*-2>54.#"2#".54>'7'7j��PP��jj��PP��jV�qAAq�VV�qAAq�����@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�����������'*-"32>54.".54>32j��PP��jj��PP��jV�qAAq�VV�qAAq��������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA@��@���@@@	����@�����@�@!!!!�@���@��@���@�@!!��@��`� @@���� ��@�@@��`�`` %��@``@�����@���@�@73��@@����@��@��@�@@��@���@�@#������@@@�`��@�����@��`@�@%3�@��@��@�@@��@@@#���@@�`�����`@@7!!	!�����@~#C\w%"&'&47>54.'&4762#'"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>z	!3""3!((=))=(	�
1111'/  /	�	(,--,��s

s�			&(!LSZ..ZSL!(([el88le[(Z'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
p~8S%"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>�
1111'/  /	�	(,--,��s

s�			�'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
G~3%"&'&47>4&'&4762"&/#"&546;7>%	(,--,��s

s�			�(MPM(,qtq,��
@
�
��
�~%"&/#"&546;7>��s

s�			�
@
�
��
�~*#'#57'5373"&/#"&546;7>�UkkUkkUkkUk�K�s

s�			UUkkUkkUkkUk�@�
@
�
��
~&##5#53533"&/#"&546;7>���������s

s�			��������
@
�
��
~!!"&/#"&546;7>�`�s

s�			����
@
�
��
���!	!3!5	5!#�����������������������2.#"34>32!#".'7!732>5z#U`j8j��P`Aq�V.WOE�`�&Aq�V.WOE����#U`j8j��P&>+P��jV�qA$3 �`���V�qA$3 ����&>+P��j��';P%"&/#"&'.5467>327>32'3267>54&'.#"%"326?'.#0X"ff"X00X""$$""X00X"ff"X00X""$$""X�5555g��555gg5�$"gg"$$""X00X""$$"gg"$$""X00X""$�55f�55ff���`%#'737'#"'.+3#326?;7'e��e��
	��	
������
	��	
��������
	��	
����
	��	
������7	7	! ��� ����  ����	!!!�  � �� ����		 ��� ����� ������	!!� ���������		!���� ���� �� ����!!!���� �����	'	� ��@ ���  ���!! ����  � �@m@!%32654&#!"1326=326764m���%%��!%%		�%%
��%%��
		
6�mm	&"2?3265326764'm��6��6�%%�		-@��6��%%e�
		
6�S�@"732654&'.#1!";27�%%
��%%��
		
6S�%%�!%%��		@S�-%64'&"!"3!2m@��6��%%e�
		
6S@6@6�%%�		�@�@"#"3!267>514&#".#"��%%�!%%��		��%%
�%%�
		
6�m�	"'&476246327>32m��6��6�%%�		S��@6�e%%���
		
6�@�-"	54&#"31!2654&+>54&'&"��%%
�%%�
		
6-���%%��!%%		SS�-%&4762!2#!"���@6�e%%���
		
6S@6@6�%%�		���'-32>54.#"#".54>327	7P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-"32>54.".54>32'	j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ����'-4.#"32>%4>32#".7	'P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-2>54.#"2#".54>'	7'j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z����3#!3#!!'7%!5!5�@@�@@@@��@����@������@�������@�
"&*.33'3#73#73#3#73#73#'3#%3##5%!!�@���� ``�``�@@�@@```�``�@@@@���@������@@@@@`�`@@@@�`@`��@��@�
"&*.##7#5%!!3#73#73#3#73#73#'3#%3#@��������@��``�``�@@�@@```�``�@@@@��������@���@@@@`�`@@@@�`@` ����%@D%##7!"&'&47#"&5463!232#.#"326?37>'%7#@������	��

	��

]�		�		7�7	��LL�����	N

	��

n�

��		nn	��� ����%@C%##7!"&'&47#"&5463!232#.#"326?37>'%7@������	��

	��

]�		�		7�7	��LL����@	N

	��

���

��		nn	��� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������@
`


��
�
�
�


�
@� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������
`


��

�
�


�
@� ���
%##7'!!!!!!3#@���� @����@@��������@�@�@� ���
%##7!!!!!!3#@���� @����@@���������@�@�@��@�@/:EIT_%"&=##"&546;5#"&54632354632+3232654&#!"326=735#732654&#"%";54&�B^�^BB^^B``B^^BB^�^BB^^B``B^^�8((88(�@(88((8@���`(88((8��(88(`8@^B``B^^BB^�^BB^^B``B^^BB^�^BB^`(88((88((88(`@�@8((88(`8((8`(8�@^7(%!"&5#"&'&6762+%!46;'32���
�
@

@
���
S��S
@
`		@		��		��
@`
��
�@"&/'.7>32���	

	�

�	
��
		
�
	@��&%!"&'!"&5463!232#!"&5463!2��	���

@	��

��

@
�
	-


	��

@



���!"3!2654&'7��5KK55KK��Z�3Z�K5�5KK55K���Z�2Z���!"3!2654&!!��5KK55KK5��K5�5KK55K�����'3"32>54.".54>324632#"&j��PP��jj��PP��jP�i<<i�PP�i<<i���pPPppPPp�P��jj��PP��jj��P��<i�PP�i<<i�PP�i<�PppPPpp���"32>54."&54632j��PP��jj��PP��j5KK55KK�P��jj��PP��jj��P��K55KK55K���'"32>54.".54>32j��PP��jj��PP��jP�i<<i�PP�i<<i��P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���7'!5##3!3535#!@�@��@�������@��@@��@�����������@@�����#37Gm�#";26=4&326=4&+"73##";26=4&#53%#";26=4&7#"&'.=4&#!";23!2654&#!"&'.=4.+"&'.5467>3!2;2@�&&�&&f�&&�&&�����&&�&&���&&�&&&@@u-.0K5�5KK5@@u-.0K55KK
		
�
		
<i�P@
		

		

		
<i�P@
		
@&�&&�&�&�&&�&����&�&&�&��@&�&&�&�0.-u@@5KK5�5K0.-u@@5KK55K��
		

		
@P�i<
		

		

		
@P�i<
		
���/?OSW[_cgkosw{��+"&=46;2+"&=46;2+"&=46;2+"&=46;275#'#37353#3#3#3#3#3#3#%3#'3#'3#3#73#%3#'3#�``@``��``@``�p0pp0pp0pp0�@@@@@@@@@@@��@@@@��������@�������������```�````p0pp0pp0pp0��@����@���@��@@@@@�@@@@@@@.��9Ua}.'>'./.'.>767>&81'.'&67>7>"&54632&'81.'.7>76�AFDP�
��
�PDFADFA��AFD�@44�


s44'8| 0'��T'0��|8''RK=7'��'7=KRQ$$6#$6 



��$$6$#6���B"326554.>7>32#".'.'.'>7j��P�K55K�P����2!KQW,,WQK!22!KQW,,WQK!2�,:!`����%%@�`!:,�
				

				
e����%"&#"3.54670
!37#73267 DhFq�m5IH
eJ KxY=l�,�4-U&.P=�;a}AM;&7�o����#��	7k	��f�a%81#5467>7>323267>54&'.'.#"#3+!5#"&58132!5"&5��	





':.S$$8~~	&�D1�8%&E!X�=n

(

"
<&#w<H��6(
88&SN&,�,$
88A�\�v%"&'.5461.+"#"&#"+";21#">326&#"&'.'546;>54&+"&=4>3281#">326&#WL
@#,!EgC!<NI
-F-*G,L�
�%5"/GI
-F-*G,+@$=C!"6`�P.1]I,<%$@$�!
51YD(Pv�L<%$�	%3'3#7#%'#3!53#����������@������@���������@@@��@����	%'7!55'#3!53#����@@������@@��������@���@@@��@���@!######5!@������������������@�$>54.#!!2>54&32+#32� (F]5���5]F(D��e*<<)f���,>>�"T/5]F(��(F]5FtFK55K��K55K�@�3#".533267>5!!��2WuBBuW2�I((I������`<iN--Ni<��`88������#3!53#5������@�@��@�@@@�=##"&'.5332654&#!5!.'.5467>32#4&#"32�50,q>>q,05�rNNrrN�,0550,q>>q,05�rNNrrN;n+�@A"5b$!$$!$b54LL44L@$b55b$!$$!$b54LL44L!���3%!7!5>54.#"!!5.54>32�@��1R<!7`�II�`7!<R1��@FvU/P��jj��P/UvF@���H_p>P�g;;g�P>p_H��!Sl�G]�zFFz�]G�lS���%73!5	5!#'.#!	!26�,&@�@L���,"6:�ja��WB�_��J�L�'7"����8���#3#73#%3#73#%3#!3!!#!������������� ��@ ���@@@@@@@@@@�@��������@�����3#575#53#'#	373�����܈����������2@�<2@�n����������%3#575#53#'#	373�����܈���������22@�<2@�R������P��
@?!3#33#7#"&546;2654&+";2+";2654&'.�::r��r�H:�:d���@

�

�(8

%@

�

�(8

%�����������



8(!




8(!
P��
@?!3#33#7%#"&546;2654&+";2+";2654&'.�::r��r�H:�:����@

�

�(8

%@

�

�(8

%������������



8(!




8(!
��0%7!3#33#B::r��r�H:�����������"!#!!3!%3#'3#%3#73#%@����@��@���������������@���@����@�����@@@@@@@�����7!!!#!5!''7'77@����ѷ�����"��>��>��>��@���@�����>��>��>��
@#'!5!!5!5#!5!!%!!=!!!!5!����@���������@��@��@������������������
�#'!5!!5!5#!5!!%!!5!!!!5!����@����������������@��������������������#'/37?CH3#73#%#535#53#73#%3#33#73#%#535#53#73#%3#3!!1!������@��@�@�������@��@�����@��@�@�������@������@�@@@@�@�@�@@@��@@��@@@@�@�@�@@@��@@@���������!####".54>�����5]F((F]�������(F]55]F(���"333335	5]F((F]5�������(F]55]F(�������@���"333335	5]F((F]5������(F]55]F(���������������"&'.5467>323267>54&'.'.'.5467>7.'.5467>321#"&'.5467>54&'.#"#>54&'.'.'�%>
	

		
	4%<P-	
F(&?

	




,?X-		E)2$#

:+!%$
6($@2
	
				

-)F58) &$>1
	

	')K!47*
%%?�23
2!/�!!!!!!!!!!�����������@���@����!!!!!!!!!!�������������@���@����!!!!!!!!!!��������������@���@����!!!!!!!!!!�������@�@�@�@��!!!!!!!!!!����������������@�@�@�@����!!!!!!!!!!%�����������������@�@�@�@�����@@
0>3	"!3>7>7!!S�z���`�`0���~!O,�F@�@<H<��7Zs��	/��
V@��
!!!'!'7�@����@ @�@��`�����@���@��@���`��� ��%	%'	7'@`@��`�`��@`��`@@`��`����`� W�)%	%'	7''@`@��`�`��@`��F�F�`@@`��`����`�i�@�#!!!!!###53535#5#5333#53@���@��@@@@@@@@@@@��������@��@@@@@@@@@@�@���3"%>54&'%32654&#".#"326732654&`";�Q�;"B^^BB^�Q;"B^^B";�^BB^^�

�^BB^^B
�^BB^�
B^^BB^���#/9!"3!2654&!2	>3<5.5!"&'77#7'7U�VGddG�Gdd�d
���
@��@�	�ZZ�	@���dG�VGddG�Gd���I�@�ۺ	@�ii�@	�������+!"3!2654&2	>3!*#'	'*#!U�VGddG�GddG������V�������V�dG�VGddG�Gd���-�9�c�0��������!"3!2654&'7	7U�VGddG�Gdd�N�II��I��dG�VGddG�Gd��N�����
�Z��0����'2<"32>54.!2	>3<5.5!"&'777'7j��PP��jj��PP����
���
@��@�	�ZZ�	<���P��jj��PP��jj��P���I�@�ۺ	@�ii�@	��������-gu%#".'&632>767&&76&7>'%3>76&'.=4&'.#"267>32326767#"&5463�*elo5J��s2
	6x��E.aca/.]1|		-

��9	-$i-,YL8

x8#'
5�2:JkNAW3|-#(uBK0 2H-2#

5!z%XJ1	0+�=m*",H7

&$0eK``&4!-$? 2'O-
����,!#".54>327.#"32>54&'
##DkLAtV22VtAKe�!MV_4j��QQ��jo��G	�LD03WvCCvW33�2#P��jj��PJ��m)���9!"3!2654&".54>32.#"3267#5!#���(88(@(88�@P�h<<h�PM�2hK82VA%%AV2ra�j5`�S�8(��(88(@(8��<i�PP�i<5/e&&BX22XB&{*�R�c8���="32>54.".54>32.#"3267#5!#j��PP��jj��PP��bP�h<<h�PM�2hK82VA%%AV2ra�j5`�S�P��jj��PP��jj��P��<i�PP�i<5/e&&BX22XB&{*�R�c8�)53#".54>327.#"32>54&'!%#5##3353F�Ra*I7  7I*/@X+mBDvY33YvDFtR-���``````�p$i!7K++K7!!U(-3YvDDvY3/UuF
	`````���5A!"3!2654&".54>32.#"3267#53###5#53533���(88(@(88��5]F((F]54V"F3%B]]BLA��#A[7@@@@@@�8(��(88(@(8�(F]55]F($C_CC_SX

7\B%@@@@@���9E"32>54.".54>32.#"3267#53##5#53533j��PP��jj��PP���5]F((F]54V"F3%B]]BLA��#A[7�@@@@@�P��jj��PP��jj��P�(F]55]F($C_CC_SX

7\B%@@@@@@F����%"3>54.##5#53#5#53\�xEIz�We�t>Ex�[@%��@%���Fx�[W�qB�3���U[�xF�(8`��(8`���!'!	��E����(���޹"@��@@���	������35#"#3337#546`��.R=#���� ��#=R.`���`
���#!"3!#53546;#"3#!2654&���(88(���qO��&� � (88�8(��(8��@Oq�&@��@8(@(8���+H!"3!2654&46;2+"&52#"&5461#!"&51332>54&'3���(88(@(88��
�

�
�OqpPOqp�
�@
F2WuBBuW2F�8(��(88(@(8�

�

 pPOqpPOq��

� BuW22WuB!����?�.#"%31812>54.1"&/7'.54>32#.'&"'.'.'&67>7>76&'.'.#&"#"7>7>'.'i$S[b3i��P""H
7{@i��P&7�u9m1�+
 !Cr�W+QLE. Cr�W�	D		
	
8$$
	$/!8N0$(;
+$8%P��iC�:��GP��i3b[S�	)�2s<W�sB.ELQ+W�rC<!
	" 6			G		2//N-<?

#"���)@V"32>54.'.&'&67>7'.&'&67>7.&'&67>j��QQ��jj��QP���-fq{D
I�}q2
8
4~��<F���<	
=���;"D���G
	
(�Q��jj��QQ��jj��Q�!


&�
		 )
.% 
�%)

"/*
(
	���)"32>54./#"&/&67%6j��PP��jj��PP���T�=

,~��P��jj��PP��jj��P���t
	_<�'
�@G>7.#".'.'#"&'#"&'32>54&5>7= !0C$P-+M9!A{n`'
3*1aH


kE6�J
#LQV,�ߘN5�
<%$!9L,"9N066\Lt>R*0#
m��h
7 ?����@#".5463207>54.#".'#27>72675�&0T>#)%
CQ9U78Y> 0F,%[1,SF7�nug0HTU ? �!@\::;66?@&^,;\@!)Hb:8hXFJ16��׋���aBa{Dz���o!"3!2654&0"'.101#0&'.10&7>1701076&10&'.#&67>3267>106761702���(88(@(88�]0*p="<.e"	-	
 #	j  5,*+�8(��(88(@(8�3C:?#_V<	26 ^%6:,	;65+G)''
���!2>53.53267.'�Z�rA-CoQ-�Z�rA-CoQ-Y.@N-7|BC|6,O@.�Z��_/ZSL! g��UCZ��_/ZSL! g��UC��1[QE!!EQ[1�9:Up}��%.'&>76.7>'&076&'.32>54&'.17616716&.7161676&''.7>'.7>7&676&�?sY8)Nm?@sY7)Nl

~NJ[e1$8'Ky�Ph�zBP,�2�E0c$$�D!

!
�e7.
-
><y.=@�7>/E)*N?+/D**N?+k5#!'>$E0$JIG"?eF&7Uf0;D
68+
((e/B�%


! F�E	((�556i7::g���*7"32654&234.#234$#�8PP89PP�0\VO""4#�j����-�š����P88PP88P��#5""NV]0���j\ă�ҫ�u����)5!"3!2654&"&546324&'.#52#34.#52���(88(@(88�O$33$$33�.++p=Y�uD~�S��m��g�8(��(88(@(8��2$$33$$2=p+,.}Du�Ym��S}g��X(;?0&'.'."90"1010102>7>7>106=4&1
�;5~kHHk~5;

CtsVHk~6:

�����NNh>N>gO
Og>N>h�� ����
	�=e���� Cg�0417#*054&'.1&"#"7>5>=7>7>7>57'./##16?2?57.'.67>7>7>54&''.'.467>%3'4&'.#"3%.#7>7>5.'%.'.'.'&22>72>7263>7>7>76&'%"&'0&4&5'5##54&#"&'.=37>?3&'.#"#33067>76%&'.5467>7>3267>?3X/ 	
E"
5
\

)�	
^0
K^�!H"!6
 ,l	
	.��

5B.Pk|>k���""0�{T)*szu-OK;
#1(		
��5.h25ET

-
T
TG-TT '	
b	-!.X)"

%A�	
	VRL$3H22G+�:
"
GM>4M�))
R����
2��خ?
	�a(*1JrA"$
BFY/
��
K[U1Q6:	�)E^		��/^a*�RJ"-0
R8@���B9O	K/,�YKd@(��.Mf:YX���
	
C��ƒ7w��

�k,?
"&:m�5a -	
%(2mY0#-$ '=I14)
!����	!373#5#!3#3#``��� �������``�``��� �� `�ࠀ�@���z:#"&'.'.#"'>7>763267>76&#">4M24aXP%,L)1(#0&K%2L<J&0  #"(&7HZ5OJ�%YftADfD"SRL�KSS>"B"+.QX^uON332N,,	>\<fd���H!"3!2654&#"&'.'.#"'>7>763267>76&#">���(88(@(88j%8$&F@: 7$#6%6+5
#hM96�8(��(88(@(8��@JT/1I1<;7n6<<-0";@DU98$%%8 YWJH���,!"3!2654&&'.'&67676���(88(@(88���<%XXD#K�$
		�8(��(88(@(8��rTQTF/N>m@�N,,&��'4>32#".%4>32#".#=R..R=##=R..R=#@#=R..R=##=R..R=#�.R=##=R..R=##=R..R=##=R..R=##=R�� 4"32654&'12#".54>4>32#". 5KK55KK5.R=##=R..R=##=R�#=R..R=##=R..R=# K55KK55K`#=R..R=##=R..R=#�.R=##=R..R=##=R���'!"3!2654&"&54632!"&54632���(88(@(88�XB^^BB^^~B^^BB^^�8(��(88(@(8�`^BB^^BB^^BB^^BB^���+"32>54."&54632!"&54632j��PP��jj��PP����B^^BB^^~B^^BB^^�Q��jk��QQ��jk��Q�`^BB^^BB^^BB^^BB^���$8Rbq�".54>32#.>7.'*3267%>7>7.'#12>7.'>7.#"64&'1j��QQ��jj��QQ��j�0I^4%>1!��!]�Q&7�L-V(�0Y�T	
R�|Q*gGn�L6-.O?+F .6tk:�S4� ;Y=6iT85-@Q��jj��QQ��jj��Q�
;iS7
?KT.��?Wl; YS?+1nH[\&*PJC~
0WD,?O\3P-DX1+j	3;�$29 	N�8q�'<R���2#!!267>54&'.'.'.+267>7>7>54&'.+3%3267>73#"&'.'.'.5467>7>7>32!7.#"3.''!!))

 +
		$)��)			��
	

$���)!
n
(B'0%			$03$���%
		����
		%(3*v�			���

#

�
	


);		&10&		
+30�
$�>���+;?g��>54&'.'.'.+3267.+3267>7>7>54&'!"3!2654&3#+32%!3267>73#"&'.'.'.5467>7>7>32'"3.'.#�
		ir
zx
	���(88(@(88���Ё

"��"
			#���!Z!6'
&)�

�
		�		xl	�

-8(��(88(@(8��3��		

 

)!O'	"/

('

		
#)�


��=�5#!33?!5#'=�X�Ƭ��X:���������r�������!03267>7>7>54&'.'.'.#"1!2654&#!"6?>1>32#"&'5467>32#"&'&32>54.#"5.'&"173267>732676&/76&'.'.#""7>323267>'.'.#1.'&#"&'.'.'.'0&1.13267>706764'�$5A""B5%

$5B""CH�

�
$'d87d&'**&&f7%G44R;*J7  7J*)K�	!$	$&%%		%%R-[#$M$)O&9B'+[/C	A$%P))O%$A,
2  K)+[0/[+)K 6$





$6A""A6$




/�|


%'))'&d77c'&*�03;Q
 7J*)J6 E$�#3
8	"#
$%
%%
%%�

%		*�,,A#"0	
6*J  22 1�@5P\4632#"&7."1'&267>'7>7>4&'"&5<132676&/>32#"&54632�8((88((8� SVS  �(�E	�
'JNJ$�#A!!!!��8OC#	@8OO8�B^^BB^^�(88((88�!!!!A#��	{	Ez2h'$_/�  SVS ��O84		E2O88O�^BB^^BB^���KWc%2676&/>32#"&'2#!"&=267>'7>7>4&'."1'463!4&#"326%4632#"&0&
B	8OO86NH1GddG�VGdy%JNJ$�#A!!!! SVS  �/�dG�+^BB^^BB^�8((88((8|E,O88OK60DdG�VGddG�Q0_%$_/�  SVS !!!!A#��
�Gd��B^^BB^^B(88((88���7!'!'1%''%5�� ����@����� ��؈``�������������N��L^��^���+q%.5467>7>5467>7>376"&'1'.'.5467>7>7>5>7667>7>32#"'.&'1_-14$*#*5Fx(%
�׫�	�4

/
B2B		(-Ht	
-�>(9?	c
�E6&
	#6 GE;,,*.
)
:\	 
YI/ 
%3W:.	���W"65<'&1.1&61167>7.5467.70>32>17>54.#j��P4]�LjB'#'&("]+TB)CJA!!AJC)CS+L�]4P��j�P��jT��^
	6 T,2;
"
8^I*E	I51		15I	E*J]80#4L
_�Tj��P���!##!!�������������U8�">7>76&'.'.'.'.'.#".'.'&67>7>7>7>7>767>7>7>7>76F{iT#/	;$MNP()RRQ'Cx%	J`uD*YWT'8	"		$9
,+
)#*		
8�E8U5Xo9A�H			
'	
N=
	##E"<yfI
��/ 			<	<
9

	
++$L'	
	+$���/!"3!2654&+"&546;2+"&546;2���(88(@(88��&�&&�&�&�&&�&�8(��(88(@(8�&&&&��&&@&&���	DO_s�%4&'.5463:3.#":3261607'.1&603261607>53267.5>54&'"32>54.".54>32� 9O0��$3�K2^REH�T<IH�&�s7"@�
u+F2��j��PP��jj��PP��j]�zFFz�]]�zFFz��8fWE�#L)#1*(.4,>'�k���n}':4��
	
B(��DT_41Z(MP��jj��PP��jj��P�@Fz�]]�zFFz�]]�zF���7So627'..#"7'&47%4&#"&7627>'>56&/"/732654&'%"'&4?'32676?'
Ee+r8L38Q=..�e��Q84M:y.�e�Fe.2Eu,�e�Fe/z;	K29PD2���Ee,-<P91J8s,�e�f+
1BP91K
:z.�e�F�9PD2.�e�Ff.x:N4��8s+�e�Fe./?P94M��Fe,u8J19P=-,�e���9"32>54.#".'&6726323267>323j��PP��jj��PP���<Se77eS<~OO~	�P��jj��PP��jj��P��5Y@$$@Y5 MaaM
	���-;#"&'14.+"3!2>=4&%32+"&546!"&5463!2�:(4YyE�Ey[44[yEfEzZ4'�g�&&�&&���&&�&&@&EuU14ZxE��ExZ44ZxE�0�&&&&�&&&&���/?O!"3!2654&#!".54>;2;2'#!"&51463!2+"&5146;2���(88(@(88H'D[3��4[D''D[4~3[C'+�&�&&&�&�&&�&�8(��(88(@(8�x3[C''C[33[C'$AX3$�&&&&&&&&���@�13267#"&'.'.'.5#5>7>7>73!!@
&'9&!:9$0.�?"

���-5


�			#5#g�
,A(�����A!"3!2654&#"&'.'.'.=#5>7>7>733#3267���(88(@(88�)(! 
`,		
d��5�8(��(88(@(8��


%�d
-�~�%	pj����(1>7'.'"'9891758*jdS0/>NR""IGA*3**fcS@AsJ���
j��79xun/		?���'�M�����".'>32<5'"&#.'"&#8181"#"#=>7465>=.'.'.'.'.'.'./326?8181>7>?3267D��}<=|��DC��|==|���



$)*+)$

z	������"		����	W

)
'&&8'22'8&&'
)

=DFFD=���P~��%'.'&23267>'.%6.3>723267>7>7>7!.7%81&6768140581.81.'##*#.'.'#.'467>7>7>7>323'.'.'>5816&#"81.'<'81&676818>m'-F

V0
*g9CP����+�


<33J
 60&�3((>

 		G'9'#) %		
?/@" #%M78Q�

+_�ۍ���?"JNR*#F!	(%	
*]/&MQV0�>ZT>	#.5#
7 �!8

	+
.
f
'88'
GhdG ;�����(5467.'&#"&7>327>7>7".'>'67k-u<jY1Aq""
6! O21<;;;35H %!*3+� 'T#+R�a`B"5.E:;���//U(*N/6Y1O:|!V-+!V,+ ���(6esy������%8184018'818!"3!8181!2654&4632#"&5!.'01#".'.7>3267&656&'.+>7>7!"&=4632"#26:3*#7:10":3*%.>7>"#26"#269���&&��&&��



��2b\U%

!JPT,	_1!��


��`
7�G*QLH��
�%&��&&�&�

@

�` @ #3!

,Y|T2_�/�
@

@
��It
0;	$!.
�@����
6Yk~"32654&!"32654&31326=3326=265!%.'76&'&'.#"'.!5#%"&5463818123"&546381812#�&&&&��&&&&F8(&&�&&(8��>E5 	 -- 	 5E>��


�



@&�&&&&�&&&��(8�&&��&&�8(`@Bm#@	@@	@#mB  @







���*?O.#*>32>7.'3267#"&''2.'.#">381%#"&'3267'3�$E!	*I
Z.S%=[$		
tZr4*_6V,T'Hf �:X#]A''V0X0U'�,V)Ee!\.d4+X-���&\`TO��4-'�&="���(������%%!%%!�@��@����84��vJ�@@�@Hx��5;��#)/5".#"0:32654&#37'##'7337'#37'#|'?P.+r�r7MM7�  P  �  p  �+J7 �mJ54K����ࣝ�����@@@@���!<!"3!2654&#'73#'73#'73*1.5467>32>32���(88(@(88��  p  p  y^p^$Kn
-@@�8(��(88(@(8�@````��������YeJ?--@���z�"&#*'<7.'623''>54&'.'.'.#"812'623.#"465.'3267"&#*#3267>54&'"&5463232654&/.54>32#"&#"#�����u
�5!!M+-_1.E#9i()+4"!M+-_1* H%9i()+�&�w 7!g58#�]5*CU+(RB+&/$_/2< q]?=\=��
����,1_-+M!"4+)(i9%F 
*1^-+M!"4,()h:$G �d0i0#	&Z/0D+%2W'a3'D1��@0kw���4632#"&%4632#"&6#"&'.7>32674&#".'732654&#"'&.#"32>54&'>2#"&5464632.".54>32.'>32%%%%�%%%% 	

"a//a"

	 H''H}K5$;1wAL�
2(88(-
�g@t0;$5K+!Fz�]]�zF!+���&)�M�e::e�MM�e::e�K)&@%%%%%%%%n
 	  	 
	5K$"�*$8((80
�!$K5'?&BuW22WuB&?k��&+ �`&CX33XC&&CX33XC&y+& ���!#5373� @�I��I������H��9����##"&/#"&'.'.'"&'.546323267>32#7'.'.'"&'.546323267>32#7>54&'"&5467>323267>32#>54&'"&546323267>32�	

�t��




 
�_X


;:
	


	Ni�
		
�
�.���		
	���� 	
wm	 ��j
���3!"3!2654&#3'"&54632#4&#"#3>32���(88(@(88����@%%%%�%%��:"<T�8(��(88(@(8���@%%%%�%%��O4^B@�@'33>32#4&#"#!3##"&54632��YCGV0�GH&������8((88((8@[!:)Hb9��1dY7��@���(88((88��K%'0#"&5463232654&/.546327.#"#"&/.#"3269�&TD=N[5NA%,GjLm�OLK&-'*.uiZO�?IO-#><YV&1DY;AbC""A_>ca�fDbUlXY@u+J8 JXGO	 !"%OFH`<L
%!S@v9O2'LmFCfF#>���U!"3!2654&"&/.#"32610#".54>3232654&/.54632.#"���(88(@(88݆r!9D/OD5<J TW6S9:V9fr "KN46'F@7qEO\g(%!'"BBEv�8(��(88(@(8�iKf9MM_JV<Y7=Z:=`B#Sdf9I 	C4T?=F!E?LA���!!!!��@�����@���@�@@�� 5"#"&=332654632'54&#".=7326=3&qOOq�&&qOOqR.&�qO(F4.R&&��&�OqqO��&&OqmE>>"��Oq6L-||%)&����0E!"3!2654&"#"&=332654632'54&#".=7326=3T�XGeeG�Gee�e&qOOq�&&qOOqR.&�qO(F4.R&&��eG�XGeeG�Ge��&�OqqO��&&OqmE>>"��Oq6L-||%)&����!3!!!77773���@���q��6D6�N�8;@����@�|�}�t��t�f�ID�|^".7>10&5463232654&#"'.54>32#"&'032>54.#\�yF*Kh=
/!
)!;PgR^j*0&JmH9dJ*"=U2"9"
B"\�yFFy�\|Fy�\F�lRI
HL<$/=%O(!/qZPewJ8
$h05aJ-'E]7:dK+ZA

Fx�\\�yF���r"32>54."&'>7>132>54.#"67>76&'.54632#"&7>54&#"10.54>32#j��QQ��jj��QQ��j"B
"9"2U="*Jd9HmJ&0*j^RgP;!)
!/
=hK*Fy�\\�yFFy�\�Q��jj��QQ��jj��Q�D	BZ+Kd:7^D'-Ja41h$
8JwePZq/!(O%=.$;MH
ISk�G\�yFFy�\\�yF���1U!"3!2654&#"&'&4?041'&47>;2031#8+"&'0.5>1>;2���(88(@(88�qouKo
K&,$��o
1;1M[K
p�8(��(88(@(8�f	��	
�CN@�N��	ZlZ���
	O����#F"8;2670>7.1.+%"001;26764'"0764'.#�d�
�0;2& �lczgBNB�
�G
����
UhY7B7
��׸y�x
}B��� @"17467162311312671!1"#15<51.#1"1!2>51p\�].�5IY"����5IY"�cH\�].�4f�b���Qd�����Qd��c4f�b%�]�*.#!"326?32676&#";#"!T	��%
	�"���%%�(�
	��f%�!
	��%%�
	�%b����)?Tj10326170674&1'0&'6170676&1'0&'&10'>10&'&01074&1'0&0617>&1007>170&'a
�g
#�	%�#	t�	j	��2 �$	
	'�@ �	�3$��
NaG
��E+Z-	K

(���m	�"
	8D	�!
6$�\����=+#;26?>;2>76&''.#!";>;2>7>56&'�Il�WM6A�<jT;
	c$}R����1]ExaC	 �OyR*���<aG5Z"�(%��9
EnQ	<V%���%1A'>32!"&#"%!>54&'4632#"&.5467326�#Xfr=F�r]"�^.RC0�&O��i�*%��mMMmmMMm�]�uC" �O#�,H2$B]84H+z+_1i��Rk K*7`$�MmmMMmm��Y��`D8��CT�����0&'.110&'&*#:1810"0&'&'6.'67021>6'.'.'>7>7<56&'.'8181818181>7>7>746381041>78140504104104581<5<5818#041818181.#89&""&'>76"16&".'.'0"1041006706727:3>7>&1�>KSZ@'<OL
&5qhX\#4$C0%

	
		"k!4":
	
	#!T`k8).��?rL�'=(+o-UH.'|%$8�j"R3
3
	$
	




$
!0+/N`E3#[C)f;:W<"&�Ԥ���M9AKT3>54&'6&'."&#">76732>7##"&'.=!%>32!.'>&67��'CWh8		M�qP1kD5Zv:/�a-d6H�mQ�[77[��~kJJk��%%i?Di�� *aAHoK=o1M'2YzH>\!4ZŲ�./-OmA-99-/tIffI]Z;8W�� RIv' 	����3>7!67&'.5&>7!0.#1Gy�mAwgU  �}��>%r��@7\B%"B^:$
k"VUP�rZ!�Y�}L;V9;}Ekcf*,�&	K_m7Gx`KJ:CRC.H[0<���#'+/37;?CGK����������37;?CGKPTX\aejnrv{����������������"32>54.'/////:#62>>>><&4.7'.'7'.535#4677'>77'>77'>77'>77'>77'>77'2633523777.'7'.'.'..*37"???0?7'''''"#5#"&#7'.'7'.'7'.'7%7777#3''7''7''7'7'77'7'7'7'7'''7%'7'7!7'%'77'%'7'7''7''7'7'7'7''7'7j��PP��jj��PP��TF=�V�#=JFP	P#0/``/0#P	P%
%
CD
6
5*`44`+65
���
%
%>�V�#!%
%
CD
6
5*`44`+65
^�
%
%P	P#00``00#P	P_E�@����%%H%%�s���***+�)YY�YY�-.Y..��^^l^^��^^r^^��..^..��YY6Y�7+�*�����%%W%%������P��jj��PP��jj��P�'�#=JF=�V�
6
5*`44`+65
DD
%
%P	P#00``00#P	P%
%
�
?JF
DD
%
%P	P#00``00#P	P%
%
�^
6
5*`44`+65���^^��^^e.-��..KYY��YY"*�*7�LK%%�%%���������%%f%�����*�*�YY<YY��.0-��^^^���!U9.'>54.'>1013267#*'.54>30232.#",?(1]N;0S=""=S0;N]1'@,�W*33+DMV.8h-"NV^1f��LP��j1]VN!-h8.VMD�9kaV#

Bc~GG~cB

#Vak9!2�SS�2#:) 0"T��gj��P"0!):#@����KUbs����.'".'.'>706'4&/.+""3267>73267>7>'4&'>7>72.5063>7>71%#"&'>32.'.'.#!"3!2654&'1'#5#!"&54630:1;J
-#8

/

 ,8M2;�:,d"
��,"	#1

O	*3Y'�0 
Y-3')�!//!�!/�%
�)o	� 		���
�s


I)�
$lF ?3	9	RX

�8	83f*#40�K#7 5
�3-/!��!//!p)'6)�
%��		`	�
@����
%@I_.6>&1&.>76>7>7.#.'.'.#!"3!2654&'1'#5#!"&54630:1;�-k+4j%$j3+i-4a*)XXS"'G�6>$/h4 K%�-3')�!//!�!/�%
�)o	� 		���
��')�!	 &1!3y3-/!��!//!p)'6)�
%��		`	�
@����*3I3##33#%.'.'.#!"3!2654&'1'#5#!"&54630:1;�,3BkM:oqmLDe��-3')�!//!�!/�%
�)o	� 		���
���>��>�/��\�3-/!��!//!p)'6)�
%��		`	�
@����)2H#'#35#7377.'.'.#!"3!2654&'1'#5#!"&54630:1;�``����22o����-3')�!//!�!/�%
�)o	� 		���
�@����\K��3-/!��!//!p)'6)�
%��		`	�
@����*.#!"3!2654&'!!2#"6=4&
 
��



)�@_R �

�

�


�@

@
 
������
�

�
=����%!!!/33?!!=RprR�z�O
���r}~
�x6
��ffg���t��@@�Z""�Vq=����%!'5%!/#7!'!7!=RprR�z����F��
}r���d
�
����ffg���RR�9�""Z�@@[tq�����!!!'7#%�"��D"�'����)�Қ��p��^^UϚ�����D	&">32>32#"&5467'#"&5467.5467'2764'�A6hO	(8�	(88((8�$8((8$$N���6���hN8(	�8((88(	���
2(88(2


2	O��6�A�6���{$),158	&"3267>54&''7'5'#'%5%777��@�@�		��.����f��@��f�������������P+������+*��ooo���o��o�ަZ�����o��o��Z����p"#76764'&"5>54&#"'6&'&"7#.#"32673&27>'732654&'52764'.'332654&#�%��&P�8((8�P&��%(88(%��&P�8((8�P&��%(88( �P&��%(88(%��&P�8((8�P&��%(88(%��&P�8((8��� 54632#"&5"32>54..54>7E11EE11E�j��PP��jj��PP���9_D%%D_9:_D%%D_:�1EE11EE1P��jj��PP��jj��P�A!_s�HH�s_!!_s�HH�s_!�q��_<���������
	���
	����
	�@� `@ �@`@@@� �@@@��@��@ �����`@� `@��`@@-��@
�����@��`
``���� �@�@@@@����C���������������������k��l�U ��:�PS &Z%@���@� �@	�A%��������������@@@@@@@@@@@@  ��@@````@@``ss����������``������������������������������������������������������������������������������������������������������������``````````          @@������������  ������@@����    @@  ��  ��@@@@@@@@``����``������``````@@@@RS��``����������������������@@````��nn��������    ``@@����������������������������������``������``��������``````````````````````````````````````````````````````��``����������    ��('������``@@@@@@@@@@@@@@@@``````````��qq����tt``����```@`@`@`@`@`@``��������������������������������������������������������������������������������������������������������������������������������������������``@`@`@`>����������� @$D @~���������������`���.�M���������������@@>@��``��~~~~@@~~``������������������������@@��@@������������������������������������@@��������������������@@@@����������������������``������������������@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@��@���@�@@@@@@@@@@""@��@ @@���@@@����@��@8 9@@@�� 
OD@@@6@@Y@@@���S~��@�@@@@�������@@   ���@���S@@      ��@.e�@@���PP��@  
F?
	�r�j�@9@@DO�b\@@@@@==(<D���
\�@��D�@ !�"�$%�(,)4*P+<,T-�/P0`2p3�55�7t8�:�=? @0ATCJ(K�L�NHO�Q�SLT�WY�[�]H^�`�a�b�d�fgijXk�mpo�p�r<s�v�w�y�{�|�}�~�������������4���������H������t���������d�p�\� ���8�<�����h����L�8à�����������L��΄����x�|֤��،٬���tݘ�d�@�������\��l������|��������t�����p��D	�L
��4�p�0�`���|��(,����x� <!4!�"H"�"�"�##8#l#�#�$$�%X%�&�'�(D))�**H+D+�,�-|.0.�/p00�101�2`2�3`44�67$8�9�:�;�<�=�>�?�@�A�B�CtD�E�G HDH�I0JJ�KpLL�MPNHOO�P(P�QXR8R�S�T�U�VpWW�X�YpZ|[t[�\D]]�^�_8_�`@`�a@a�bHcctd|eXf<f�hh�i�j�k�k�l�m$m�npoLo�p�q8rTstt�u�vDww�xTx�y�zl{\||�}(~~���8�����������|�(������T�H��|���x�����<� ���p���l���L����d�8���`���h�����x�l����t����t� �����x����x�T������0�4�H�8���\����h��D���<���P��8��H���P��x�8�,�����T�L�������Ì�t�Hƀ�l�t�h�4ʸ˄����t�$΄�(Ϩ��H����Ҽ������֨�D���Tذ�p�ڠ�ی���@܌ݤ�d��p�\�������l��8�\� ����������H� �������H�$������|�H���\�������H�p<��	d
�d ��Tx0������ !4!�"�##�$�%t&4'�)T*4*�+�, -0-�.�/|0|1822�3�4�5t6$8�:�;�<|=�?(@4AA�BC|D�E�F�G�H�J(KlM�OhQ�S�VHXX�Y$Z�\]H^0_�`�cddf\g�i\jdl�n�p�rr�slu8v�xyz�{�}}�� ������P�H�|�\�,�����������t�������T�h����0�����0�������d�����0�p���p�<�|���L����T�������h���DÄ�D�Ő�H��ǔ�XȈȸ��pɴ��Lʜ���<ˌ��� �d̸����ѰҰ�p�d�$������P���ڜ�<��ܜ�X��|�L�P��X��X�$�$��$��h� ����t�0������������X�����(�H��<�x@��H$��`\�	�
T<��

�� �(�<�d���<��dH���l�h\� �!`!�"�#�$�%D&8&�'�(�)|* ++�-(.4/�0�2,384�5�6�7P8h9$:<:�;�<H==�>�?d@@�ADA�BhB�C�DD�E\F0F�G�HH�I`J(J�KxLL�M0M�N`OO�P8P�QpQ�R�S�T�U`V�W�Y$Z\\^\_�`�b4cPdXd�ff�g�h<i�jXk�lxm�n4oTo�qq�r�s�t�uTvlwxx�z�{�}}���D�D�l��4��������h�x�����������(�����������������d���(�4�����l�������������������|�`��D�L����t�����t�\���d���(���@���X���p�����TäİŐ�x�8�������̐�|�<�@����h�$Ҽ�Dՠ�׸���ڴ�H�X�<�4��$����h����H���D����<�0�������8�p�|�x�H�H��p�����8�x������|4�t���(��	�
���
��D���\�X��D�XL���4 p!�"h#$$P%P&(&�'�(H) )�*�+<,,,�.,/<0P1822�3�4�6�89�:�<=(>�?�A(BxC�D�F0GHH�I�KLM<N0P(Q�SpT�VlW�YY�[h\�^_8`�bcDd0e�g4h�i�j�k�l�m�ohp�rDsdt�v8w�x�y�z�|�~|����D�������������$���������������H�x�`�����,�x��T���8����0����4�T�0�h�\���x���T�����0�D�����@����ô��X�\Ȝɘ�����(� τФ�PӸ�<�|׼ظ��X٘�ڜ��Tی�8���h�ޘ�(����������$��p����8�0�� ���P���l����������\��������(�`������D���T�,���l��������xP`�|��4�D�	,	�

�
���
�H���0��d ��H��8x0��8x��`@H��t  � �!�"T#T$x%�(8)*+,,,�-X99�:�;$;�<�==l=�=�>p?8?�@@�AhBDC E E�F@F�GpG�H�H�I�JLK�L0L�M\NN�OO�P�QpRRxS$S�TT�UU�U�V4W,W�W�XHX�YdY�ZDZ�[�\\\\�\�]L]�^`^�_4_�_�`bc0dDd�e�fhghhXi�i�i�k�k�m|m�n4npn�o8o�pp�q�r�slt$t�u�v�w<x<yz�{�|�}d~���<���h��P� �(�����L�d�X� �������0�t��l���X���@�����t������l�0��D���H�����t���� ���@������4�`������0�\�������l���H���(�t����p��������D�l�����(�����`���0���������8���(�����p������P�L���,�����@���<������H��Ę���Lǜ���(Ȝ��4���x���T˨�̼�xͰ�,Έ�ϨЈ��� �t�<ӌ���0�|���4՜��8ֈ�ט�T���l�0ۈ�ܰ�`�ް�p���(�l�����,���<�l����T����4��H�$��,���@���H�0�H��������X���d�p�p		�
�T�
���`����H0<<�PD� �!"#@$,$�%�&$'H((�+,,�2�3p5�6�7�8\8�9H9�::�;�<�=|��<�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK!��}��F�Ffonts/fontawesome-webfont.woffnu&1i�wOFFF�*�FFTMDjo)GDEF` �OS/2�?`�Yzcmap�w��mgasp8��glyf@*��,,�qhead.<16
�Uhhea.p$
[hmtx.��

�)*loca1L�i��Vmaxp6D �name6d��3F��post8r �7cAwebfF|�*VO�=���P���u>�x�c`d``�b	`b`d`dj�,`
$�x�c`fsg�������b��������ʢb��l��|6Fe ň�D���fsx�͒?k�q��g�I�]�5�
���5����C����W N�W ��"R:�%S��X!��c�{�M�6�o~�h�K�҃{�����{��@����^;�%��$�ȧ��&��=������d2�,<jT�֬浨e�j]��N���:Bq�!�,�(��*�h����F���-ky+Z٪V�$����=�~!��&4�9-hI+Zӆ�tW��SA�#�r(��
jh��]�у�X�2�����b�;�;r����6݆[�����W����SY�'�Y�G�$�� �2'a���xB�x�?x�7����W��+��/����ʟ��|Ƨ|����z|�[^��^(����+�5Y��|�`&��D�����T����xڼ�	|T��0~�9w�}�Ν-��d&�&�$��a'�Ĉ�.� ��P�
�V�ZQ��v�_��;ݴ�Զ�n~�b[۾U[߶?[!s�?�ܙ�$$�}���{Ͼ>��y��<����#6��q٠$rPF5�m'���I��C\տi��iN|R�su�qHH&\1l��2ɠ���TJ~$>�\��Ѩw$O�(W��9wyw<,�	At�����G8��9���jY�Pu4�GvXpCN��d�-c��Le�	����x��K7΂���V�z�~�3���B��PbQ��ټ�bx�pͻ����J}Ҁ8��ì
yh����6.@��C�G�͞	x��	��������HB�i �	�G���=�cW]u	ȏ�cW݈VF0$@��Xͧ�hō�)�:����/�G#tv��y�8��us9."�/Yp3��E#ј�p�Xg�.�B`D���r��N��!�L�eemr�2��| ����d�6�ڮ�%U�	(f�`V� �t'sf��7^;�-�-ن�od�ϯ�;��[��O(�.�?���mڴ��=��"gV>��zYg�3[?%L�F�w�����Ohn����1�[��qC�§��	?v��P:�䡔�x�!4�ժ��r��px�U���o����j]����ƿ����������*>���y��a�A�Q����	�U(�f#J&�V���
�t(N�W�	u��5��7�.�M�~;���UUM��Ygz�S�S�����Έ~>z��Q�>_O��ԭ�ЫG#L-��vL��j�PW;��F��h'�����8y��5����[{ԟ�k^y���L|H+i�a��@U	BR=�]Y~�����-��9t�����Э�[���>��O߽aN&��›�7�|���q�;��]|��xs���3/�x��G-�M�3�5%�z�Ps+�˝�]�]�������t*ڌ�:�pu"����2�/-4>�c�?[}��G�lg��sQo���n4F�ʩ�S��LX���$�B�U��C9�^�
V�
?5�$�Iԇ�R��'Y�[�<x�z>�n=f�jи;K<�R*�Ha�u��d1����@
�'�a�g䇓�pl����LX�SkU7�Z%����a�=����q���Q7�W�����>z�j7
0'}�_T��Q'�0�	�
�p.����>��0a������X�
8���,��8��̐ĆV���^���H��W�r�o�����G(��~��,�w�D�>��K|x��+O�E���DžV$6��Me�c�w9$=�d�W꯴�P\��P�T�� �Cc}�R4|F�/Bp6��f�Y{�i	is�	�2<�:*a^�d��)�a�h�0� ��1�Xz2|���:�P��=��$��OV�͵�������>^�Y{?rKK�H�[#�����&��g3.�K�,�z���kA�?�]v�gk;4ųwW�~W���h��>`mZ�yɾc�۷d�&k�~SӁNj�����)wG�O}�]�47]X�!9��x���55[W�/�E�Ac�A�?��#��\�.�Dd�O�7�����-��=P����5*s�<�VdnL������v�y��Fc\	�T�At��`}J0#���QQ���հ\c�h�����CP��8[M�*���zڝ�(�V[�A~��C':��L_W�y}�.�eߔV�Y���ʼn|��2X-ƛc��:�^k�_f����&>Ӡ���2��&�[o5�n	��^+$�.Z�!t�oL.��D�L^C�n��n�	�l��͹Yo�&c0���55�i��ifi[Z�/1���=��Չ
ۓ:���͇���(��tr3�K5<�z�����~J�� ��
��� �����k:��[Cv��-lN�&q�G�+!9b�Q�M2��2H�*�ep]��S�t�s���	��:�-v�#�$|ed`^����1�?�#ˮ߶�|��t$��<m�ֿ��p
[��k�����#W-�N��5J](��c��M�S5p.�Uq/�E��Gg&f]q�8`2�u=:l�?
�
��-�_0���RD
#�_�Q<c�KxF�?u�jux���oѾ��J���J�X��ùP��@�%9�����"(/�����L%���o�a0����E�  >��7?���"��q�,��:�n:i��lGC��A*k�{��Q�V�wJ`��ZP��l~�p6�)l��$�aX��'�_�<p�$��D�WSש�?�.DO�ɰZ�
ER(�T'=~��c�E�=��J�D��8E��q����A0�v$"�����@7���!:��ů� ��y�y������R̙����{�@vs1��E����B�r�X!	Z����^��;��o�ـ�T̈�̧�9?��;�b�M38O��S�#D�Z��
Ji/,��1��v%z��C.��1(���'
 �r0!h\%e�#IC?���Sw�����r���g�j�^���f�_\ӑ������(�wG;�a��N�)
*�5�P��M�*X�pa�8*��SN�vQ�d��U���o=F�`��\�p���9p����&��
��l����E��D�;t&h���i��Ɩ�� ����Zh@��l����C�z�Cb�ܠ�b2�^�^-���T�`��f��-(F���;������n�EN�.DЉb�	x��PF�'a����!�%9o���#��Sm؄O�~ƙ�mO7��44��]5FV��rH(�]Za�f�e���V�f��8�?����:%��Ů��|تG�6%+{Q,ڋ���-���}���W��d���P;�Bj�,��{e�k�����bܫG�+��nU;��ͷ����F�1���%o��ߧ�1칏�D��w|�Un�ET�τ��l`.��et����D9)/��J��Fv.��g�QNݨ���ͷ():]��s�r�m�clp4+5�
�+�bVf���r96�
���_��[��hJ��7��k��
QhvٷW0KȄBה(Eݤ���H�g�K�g�+�V�\(���C��FfL�D'��r���z�`���O�*��ã���Gh}��j&0[��c��k<Mw{g5��҂p�RJ�˙��$W&�H�� ] �N�¦C�6��E�_c�.|
��}��N�2W�#d.�ಲ�v�ѰA�U��P�ƛ���̀2'Cjϱ�7���ڟ?�}��;��d�7Z��x�뛟�9���:���y�S�q�o�y�mE��ֲuJj�}ԋ�p[�vtt*M��h���ё���V��s,�Z?X���;��8��feC�J���r|ݵw�(6:���YuϪ?W����ٺY
���[��uG�m�(�Pj�6���ӂ�6F���.���G�>��������Q�4�yYp�GD�Ww�|U��֯�a��ؾ�bv�q8����I��h!,U~�]�h!�P4s��)��<+k�ĥq�DRf6I�v���?w���z<��Z
s&�X���"��:gMˬ�x�F�Z���}�l.k�|n��i��PvO�6#�����h��%�+)>r�й��o6�Fc�˖-p�Ǣ^�y?���S3�iL��Z�7��wC��,�}��q��)D�1G�5��מ�X�1��ί�)u��	�y3_�]�l(�lk�5�u�!��Ĉ|
���;�¹�ĭ���9�V���� ��U� }�/�R8�n����diId��$�%;�p�y�+�|�F�y�.�~4�p4�B�P)��y��S>3b������gÙ��qͥ�tR�x2$'���������������{��#���w3�[��{l�:���Wȟ�E�o��hg���l����Q�0"� *�r�l�����"�3�JG��hz ���(�A�7��~5����H�0�O���@:Z��ʸ���R]��&h�@���H�Bɏ�
�g��?z=B����о��C&�?�֚M8�<�C��ss[b�&�P��s6k7��lG�s��D�ĺT�'�nv�s	"s��Lt�����]�ʵ3F6,���q��Dlr��):"`�#�&I<�V�0��D�lV��E���]�_�s�y��h4xv���2:4E��S��&4��Np�����a����r+7/��ŷXt���Qk�n��:c��Ҡo�!��-��u��	�j\H$�-F��>�j��S�%�v���
ڢ*N�>�A�tW�n���`zX�y��w;��XP�i�sչ�V��ty�����?�ͺzF]�~A~}y/ϋ�^d�����̈́�}�eP��%�������s	,��������o�޵�y�U���2lV�>�<���s�\�8��LJ��S���f���:�j�̊þ��i��l�F3�F��<���"PvU�m#�r��_��a�2����pRِ�\z��,^:�O&�GiR<�Ц����is�N��TU�Fy�.�f�$q�F�v>��ND	4;�O@�):��%@�=B:�[D��O��KI#Ő����+ѕ#��d��.��u���F�:�U�gQ��P��w#�Ω7=K�������;��C!�ɏ�G�;G2�X=ވOX$5�H��
��c��Z'F���,�9��6�t�ǿIp��n����ZLow�,%:��]N��/丈+�S���$�C�#�pG��a����{�.��A�VDI4H�'N��H<�
�����Ў���}���C�Ħ�Kw�Ov\��/�X�����a�(
�Ň�-I�_�~�۽�5�7�mN]ޓ~��9�{f�g�lR���9��M�
ʼ!}"�۾�|����ݺ|�e�>s���Mޖ�-�x���Z�	��ެ3�-�
�v,��?�rzG�z����d�Oti�)O��t�s�P/��[p,KIS�w�P��iQj��w�γ,>����M�ӽHQ�_���m�]>��'�3�z\{��]vB�3�ll6�m�훕�����=�'�6�j�F�\����DZ�!bUZ��o.ׯ_z����N���a�$����	f.�j7atC�z�[0�A��t]B=`��S�ñB�@�a���[n(/L�v��3r
Sb��8#r-���kA��fG��ŋ�=�8cz�,|OED��i�5����:b3#ѤHuX�(�(�G� �τ�0��~�"�ϻܣ���`p�C��M�|���"<Wv�p��Z�[���-Ë�,���E��NO0B<�$�����mW�:�mq�Ŋ�ÞD�ڀ�҄�݀�߰
׺}�䱘�_��v�Kc�xrp�R�0�v��t�
�z�v�%0�8���L�l�H"*6D/K`�@����ޜ�E�&�V_0��K����.D���z`-Y�߼��&=�7�Jz�:b���ش����l��z�\��d�
d�#��<>����.s�x��s�YĘ�d��/?1o�!�m���?G�:��`ޒ�`�5��odc~�tlJ�8۝$3%�ׇ0Շ�r�u?�ݬ�O��%.�I��%��SL�D`�ը�$�\)����Y4��,�G���I��n�ʒ:̇�/�[��������G��I���m�>��c�,��������w�)f��N�!�$�����&���=\)
];�s��'?a����=�c���GJ��E�CȠ\L�^��Q@o1+�?`=YSN�'��MC������������x9T:���A�A��@������������K��.j<F&O\��QP�>�	�:��I�bfS�]���bn�ѣ�qa�Qt�^k2�(��It�H9���E�+�����ϵБ��I&$U�@V����{K�m�2�o9�G�!���"������&�R,��K�0xl�x�8���|�$�8���fN
���p\0��I'J��=��nh���@�� ڼ��5y|�� +���)���ۑ#��p&};�6�ɐ��2�h�遲#4��ӑ#h�h�ϱ��kr�\���(czM@
���z�ZՃA4=����\wŜ���h4H�9W�@S�cdJ*1���\Ns��{&r���A>��>�>��P��sB��{J�Ģ
�wB�3zON�� p��œչ|t� �ѿ�s�	u�zb�x�yW��TR���%(��`�m����f����;�B�N�w���;y�����/�|R�K[�⿠�"��t�����f���\��H�T��J�/S`i��"l�%�p&�Fvl=�usY}B�hݒ��G��\o�J�i���v�00$b��5>��Au�_�V^�[�:�b�q�RN�G/i�l?Z#�d(F5!�u}7��~U.BQط���ŕ�gw�����r��:M���Q:��R���n
H��b��J�H�v�IA��|���i��]�n��{g�ym��]5�V��z���S�[�����u.�j�s��`��*���Z,�S1�
�������c���j������n#6[.��>m���e3:b.��@�T��`�[�Ԡ<Ѵ�.�9�t'S������ݭ̨�Lısj0���#?��yԥϕ�F�^Wz�:��c�Ҁ+S��T��������~Yi!%��ӰDa>g���f�����c+��|��͙��W�L>)H�����iNI�
�s� F��2��8vI@���> �h��>^zelmU<��a<(hvl���S�d�O�W)v�*Iy�p�b��yM
~Yo(�.�܀q�6��E�Ǘ?I5,Q&+Vj;�N���=��I��M�bk����f���*5/�j�	�(�6A7am0��ų��(��P�	=Y���x�5w0���¢���
���07F��Z:����xU �$��4F��>!7J�TS@�2��9�q�4��Ѽ�6v�J�ܥJ���4�~�>::r�aS#~�9`��a��
�J�e89�|�<���V5Q�:�JUC7y��82:@��A_ݘ1kbl[�7�R{u�ckW�o�AD�pR�q��)��@U3B뱌��=��i�S�C�-�A���zO�SχN?����.Mr��э�?X|+�r�΄���8��?-�[|�9� x�4Z����KJe�!�N]Eiy(���Z�p�ӻC�j������㔃�O2(k�<iN�1�;�e6�Y���aBa��;�R̙yP�rLU�D�v�[sf��&��D�6O X���ݛ�Zh�R5V�,�R��I��J&zoF|LnR�{NQV+�^��ւ���{\�У����O:6n&�E[h8����n�J*�X�>����yW7��k�v��V���#�e*|v�Y��P����!��[0�
ղ^����댥Z"��P�ɒ�S��������?+���UGV�=ou�L6}:ؐj돷�^�"����������`9�ªCK�_,�fy<�`����63L��n��ֺ�{<0����^�>ɣ��� $�<Fڏ�[�¬���2��:��h�r4j�����R����;
�L梨҂b��II�Q��+*"=H��@|%-䫔у������?]HW��-���@�F��D�~�y;r����rWДɳ���d��;�)�H���"�]I��+�\Gf2�^�޽�8`�o�8��&���7q�����E�ϔ��Wa��thL*@yP]M����xDt��D����?�<
���,�{�#�����3=�T��:��TPA�4�����XY����{V������B`����謹�O�%���W���o+Z�[y�/⿭90r��W}Y�-���TG]�̝NC�a�JzClv5�ZZc�1u,���bE��~*�P���;�}H4��R3p>��W�<<q���¾htAt$���P(է��ы*<*m�E("�m�T2�H1��1#�ꯡ�h*�wFp.���
P�?
��(����Υa���ՠG�U���/u�".�P�x�+�u��w����.�!m�m�p�����|Y��<��nUp���B���ix�HQ���������JǓ�x�#�W0�t.���(�Y��^��,�E�C�Q�=o�1}��r�^S)5���O^��'$��f�LV�+���0PY�#@����B��>s
�YbHou�z/��uG^�
����Ɯ��ZKܮQ켼���Z+*�]t{јn7�_�W�i��{�,�k���կP����-IϢw�,}E �����.��,C*Z��3��K��p�־��1Y����
���87aC�	�]�u!h����X��
������ �ݤ�%Ty�y�P��&
e�Kua��h4�8>1-�q����
��I�4Ӈ���yDMmg*���p���J{#�	&J��Zo�{i��>�t���K�_ۂ�Ԣ�A[�R��>�_	џT_ej��OB����C��d�ٯVb��J�Le���?^��(�
U�Bp��e��|�%��`v8�a�v����`���[a<r�/Y��%�CA��+L�N'��
Vk�nڕ�̜��K��A��,�}Iv��p�SyN&4��j}0��b�O���L�$\dH-�}_Xm����f�9���x���o�ѳ�G���tj����߽����|�f�B_�ؿҎN
���Z������W��E��0�i�~~�§�Z/��'c����^І�"���J�2�I�e9�����1�Q�TM�ޮc*���Sc 9�S��NX^g�:�^$}Ջ����_�>|�>��������䐱���=>�_��KWd���/=3�
1O�7`#�T�;=��<�7"���7���UX�ȹ�u�E4K�����eH����c��v+��"���֯ݳU��"P>��jB�oXlӍ��S�����.i��47��s�����{Wg5_�|C�u^Y��e��I�j\���ϭ/����R�%��T�<Ȍ�Dc��k�pQr�����L�����tB�n1��nM��ß@����s>�M_��};W8��j��75���؏~�-�q�m��:U�����������}_����9V�T2+��m�z+4+�r�~���IT[��p��L�\��lbM��og����]�T삶8�`��ǯ-�\<c?�pR���Xmܼh�z���x�h/���2u�i�i�m�=����$z��[�1�o�$�ȣ�"��9��m�Yp]v��O�^�ӿwWoa3��+G��W	�X4;�6����o#�|�ͤ�lP��|+�ޟ�gNCn��^�c�ˋ_�vK�Khsg���=OA
Q���I����'��|�]-�Jf�FsiW2.�;Nr
�r$D8�kN��1)�@{�L��(YԬ�l&Ϟ���54�Q��p�t&].\Nu�`��"�����|7#*�O���6�G��-�����d�UT�K-��ނ��c#F���7Qy�Ƽņ?94PS��Nj�ˠ�����oʖA=6��lfӅz�F�u6�1o�ѓ�vGq�tY��Z�s���#�ި�_aޔ��t�qq�q#%r/XeG��Gu
��ZP�ƻ�0s��p4Ds�C�j4���Xi��H�H�d��u}��uH{A�Vo Dz�r(0壂��P@&�J
�|�%�
U�O1c'<� �(�1���a�b���T�Oj���w����1���dPS#@�Jd�X–j	*���+��C]]�d��0Sm=)�z�@���W�}����R�]V��INsm���<���ƙ�+��1K+c\`9_�����y�u��0b��R`}!D$����;v�WX<�AT�A����z[z��[�c�d�e�%��퐢������â�t4�g����zU����ԋ�1��e��r-Od�&,�9=~�#����?ЧH��i�����L��숷�Vb�����e^�<$����m��X�?ɴx���O2��$�C*'�Y���QW穏G��h�Z��Բ��U�R�C�f��d�hԇ��/=���bL
D]<�_2��:[�?��s�G���F�j�"�;���5|7�է��ݧ����R�b��.��#��2���;� ���
ƿ�2hYi(T��O�B5�(gt�jXi6�ZH�Fc�^5�� ��/_ĥ��8�ZeF=�H}zW'pT�Ng�x���.�Qo�l�!	�j���P4�X�aT߮��8oeс���X2ʻ\j^�Pa3c��yd5�v#���8�E���M���wѤ-�қjJ�#��ch�4�:Ļ����A~�^?zN�c���̀И6[-��5F���b�%��M1K�)��'BvvlmT��kl��&�,��zgT�rct�g��1^G~��S��{��E��Ck���"�}�T�ĥ�P��5iԾv.�UݩTՒ@Rjl���z���N�h1��\CZ=:RXw�[��*�o^}Hݚ��ׇ�~x����[E^�Cy9.�L��c@4�*w��`������f�������*�����đ�VW��x�M��{�	��w�[��-�`ѕu�̀�:�eM+('��a�'p��5U���;#@q��Îwh�"G��N��8ʳh�r����!�n@7�+��Mq�+���b�e�����jf��^���ߞS��5}�:����<k�}^�_����m�tt��k"��Gɣ5��¨�u����D�5ݨ�o��ޥh5Y7w��G��S�ut�]h�ꦔ.��d6D��l:��!g�le#��/���u���k�x��-�C��H����v�#�Ё���y�.����C�*�]���(�*�=S��
���-m�u� ��T�>�]Z�
y��㖿1���C�'�/�y�j�A7G��+�(��'�tZ�'��Ͼ�����vK�fգ�7if�pݾ|�� �'��y�AF��-�?�if�6��`fi��$w���I���u�lY��ϓܖ�-Jc��-�7��zYkh&�o�5�}��=��/��Г��F
����z�l/?o:yvh˖�M�ʖ�[��8 s�i�?���'�P�W�<���� i�CN^o.]ݧ���V)/�3$ü��q��亴�A�䊫�Ə�C��||?U~�	b�ATK6Z���@T<��E՛ݰW@�Z	�*�����Cp$�o�מjޢ��lh�$�v�h�67�$��F;r74^'���{%C��m:l�T��vФ
��Iu&���eu!)�?`�'��X7`q8���'�0�I��i/E$E~���|��%3F�̧K�ޯ�	5��4L���Z1]��>ip�'�>Q�7X��D=H6V��&��:i��ry˘��W[����6km��5<��Ή�s�\ƒ��j��:7���5�ϡq�:+y���U�a�p��l"Æ�) ��`�=<c�{X��~�BUZ���]�a�JX��DЋ���b���Ĩ`@ڱ@D$�muNÍw��f���l�u��g�-, ��*B2�)~���+��^��q�z�m�[�;�?��׶*�ʓH��K��m8#qϼ�l��{�{w�x�'qFE��(J�bC�>�ʶ�_�|�{�-�z�fzs]���f�Me�|��#zJIL�W����`E:��`?��A�O颤��9�T4Z3G�Y�P�s�^O�ѕ�5S1[ `�Ե�ۄ� �C���h�O�G;��]��_�a�K��'��7tL�ͱ����=��f��;~й~���O4�g	�@:��d��x��^�m��@bvM��ֆ�[/��tmXx��S��i�O�{v��k�����o��*���,i7�]����\g���&�E�L�*~�M��h������1�Qj^�r���LrVF�2\��#m���+�*��[�"�@�kO���YWc���D��E���m�n[��5č��sCX���kk��˶�<�"Q�4^ӯT��Z$w��N̷���.��e�U�y{8�$�Y��O\�]�������f͞	�_�™X�ۣ�Z|ʔG�
7��3��4��$��q��ΰ�Kr�-�
�'�s����uI�^���¨t:�
G&�C��9�~��o�9�v�
�<��gކ��l~�Ƴ^̿U��>�me�%7�o�%��\������7.y��k���g��e�D��GeT���).q�,��p�J2��O*�e�d���c$X�*�Ф�J^�@�
�,x2���"�1�
��,0��^�&����g]_1׷�'R4$�l�-��5<�ڠ�1��C��[��
R2rp�C�9}��|��:�t�9��w��$䏒�k�Vt��܉��zj֬Tr�쑧��=�mC_q?����=����4ߛ�J1Ryz��2�%h����F�d�r���Ԟ;�0`w��T�%�lB�€z�7��E�����C��u0{d���3ɵ譨���`N��T�;ڋ���iv}���+�'���Ŭ�\E���E�B���jWx���&���BY�%,�2C�d)hd��
 �G�"GmK�)�N��J�RQ�rJ�
�`�����'At���T���,b=Q�K0[
,���A%��*��
ruXWh}*�n��ӻ�4P~�H:��dr:���K��<h�#lK�vDJL�tE����4w���in�]����z��t��{f�6�e�d[���h���W�Z�Ghes��'~<���D�3��s��z��ilX��,X3[�,3{͂LraCcF8g�s��v�ٮ�kU�,����ڛ�%��`�cQ*�sI"8b%���M_���N%��+.I�P6Z���GT,
�v�Aj�qq�T��Mǧ��Si���GY��E�-�Q�J�t&�^g2%�z�]�O:!�O4�%���pjغl�M��f#/�>l�]���5�h<'2շ)=���m�k�D�i�]�fz\�l��V:�M4��l0�{�ͤ,\������d�/m�D� �J� 	Dh�FA���D��6#611�<�/2R�z�Tѓ9g��ן��j}���z������@���31Xksc ���"�v�;�jF<���ܤB�m#������if�t��;t-�Z,+��&��Y�E݈�ȉ>ˌ�5QK*]y����P����B}t#}��海�xy9�-(���W�S�4��4�bz�2�c��^�v��*v2�
GY��b)��k�|��,��GӤ��L�`��]�ɠ3x�������Kg��1�kZ����\X3����]z�϶�<|�����opՄ��W,z�;��ء8�,0`��c��<��Z�o�׽��#}����L��_�%>��^9��U��s��)��S�)uuW��r�o��gǿ:��{Q�a�r�j�A�
.1��X����`4(��K��^��1���]�1�b��`���'�y,��TC�;��
���&s�����տ��"~�]J�'jV�Z${�
XI�e���ɉ��7Xj���D��R���L���	�׮�I�'%��OBm� 9�p�~q}.Y�v���ADH7��o��8��v}���rJ(�RG���1d���U�N,w64~pTd�oFUE���C�F#�3Z�S"j6e�u#�C
��G8��y硧M�Z.�NEѡs�U7	�?܆�(/m6�ե:Z��Q�%]���~��a�����~���;�����tZ���v���\�{��,J��
B<�Z��ؖn�%fɎ���O�m�ƚ�m�A'���(Zit;:�0��D3��sq���n�\>A��2-������5��6���+]�.�aVK�L��g�rA�8
�X`�5���Wk�n�r�;n�.�Т|ƌ�|�h���՟|N��7C�o>{ّ����i�Y��M��yYw��WF.;�߸~��w�Z����>~��B���6>J�ܽlU�_6D÷��9��^k����?Gb|n�	��)#kwj�?Yх"1U=~�;���
�P�5o�1�E=�'���WK<Ƨټ.�k�����?����(-��EN���jk��s�[�'��e�J�?�^�P����:��GX��;�cM�g�]Ad�U�(��X[7���:��ЉC����e�jH�,�O����U�N��T�k{EMɆ7ήN��f��d�O@7�l�� :�a�?hJ�fE�+f��<�GPQ�T6+�8Ō�Cf���k2%B��C�U�.�IH�g��@�j�]��`.<gb6�5�Z�+���k�إ��VM�){�!���۱;�{�d���;���ׄv/A"�?Ͽ�:Ҵl���`�[h��kn����ۯ�Z}�Z�#T�s��}Ɍ"5��a~����`IO�+�M�s�{���O���%X6]�&����Z�Z[�P+{=V��{*���c�����_�F�ym�X�k���Ѕ}Z6���6��E�5˲�xs����$�t__��D��-�¥4P�
~\�{���gA��d+��h��	2/�)/b �^�n����>�5Z���Z��J-1�;Y�������@^�N݇�'y�7M
�5Ae��XpF���ߑ�mr��u��3�}�@j$L�WҨ����mr�9��E~g�b�J�	P��S-p�b��̸?b��س�ELʇ��̈́�k�<7p��u�C}�m�'����6��Ss����Uݱ?��k_ܮ{�ϱ�UK�
��i�Ϳ��)ؑ�|}o�˓�w����RMk~�owF�Oq���P|��w��3ײ5�OS��}����'���̲�̓�g/cA�g6�=�!�t��'�
���}~�)�b�T_�|���$�;n����hh{���ޔ~1n2���K�Xw��u�c��l�E�G�5���h0��y��h���/������H&�G�O�����W͏,���C��	[>�{���ڭI��,J������>�9>o���@`�K�Yr�ąD��^v�2N�'�}��Ć�g�Ńg������MO��u��H�����wNq�,��^��r�Lȁ�e�{�k�ٝ+M��>��,�:���B���u���,��U��5\3F"��EO=�d_?��b4n�^2���Q
ߋ��
�O5��ʳ��"C{�Ќ�x&��x�bw9usσ+�R�_�N��\��Kh�F�����O����g�&A��eވ�s=yS���!n�K���6�@�?��DS�/ɹ�F��3����;&S��'p��\.Z�"V������{_v��Y;o�z�:������`�/�5wЂ�=�$k��23�}A��g�cv�U'_�P�
2�����fU��;2f�Sg@h��i/N<헎�j��]�09�Zg�z|R\�oS]/v��x(�׀'eF�e�O�`�Q�Xn��Idw&쮒�t��2	�*MLJ!�rE6�za�Io�>:��\���:י��>n��霍s��J���'ې���
mq��~��A��c�z�1��l���'��z���~2NǑ���c�����?��n_�6���T�r"��c��MI�C��>\���Kя'Q}BhTE�5ѕȢl�֞ ���ƨ�%�_j*ڴ��7mC�����hC!�:��c�]1M�iM�E�T�q��X��3z^�YƷ��Z�$})��]�l�*��2�ÍX���������F��v]<:��w��tɌ��3Nw����fj�(eQ�"1sH��+����j��@)I�h,ɢ$���.zB�(v;����_�?����U^��d���ueb.�BtG-���@�����D�D�NJ|E����HZ!����@���Ny*Y��a
m�+[�䆷Xb� �Pc��ǒ�h��~��ņ.��l�Q��jq��ue3i1(e��t�Dg���!Q��r��>�A,���A��ʦ�YW�U�mg�+���Mg,�m|=C�Bm�I�	Ʉh#���!�eJ�%qS&�����%~��Q���7^���Vm�h��݄x6���`�AD؊!����p%Fb�D=�du]
�2�x�%�$a$
<1*��w�B�&(���`�G&�������B�&�@LV��6�:��Z�V��`��
P� �0�Y�yDxiiE��t�E��C��M<p�$��"jV01#"���D6���r���M:�F� RC�E�R�� 1XX���.Q16�D��L�`�IaF	^:t�z�@0�XDȁ�@�0N�El4)���
�Y��&���0"�Y�J<�F �3���:I��?�d0 ��;E�G0�zI�I�z"a»�L��l�����꒏��(�."Io#�E�NFN�`�E�b�Uo���+�'�R�y�
���~��`B�Nu
v!���0��C#��*!W��G�M�:,�yQ��"H�Yg�uN�t���F���f��,V"���ZM�U�X���*����j�UgA&+���� �#�W�5�� K:Pn���GI��y"�&�X`$�-!d�.�O�a�,0�(�i*!q�F�(�Dѧ�͌��^p�j��6k]X�̢à���^�!��HD��:&u� ��Hv^�!zP���l�(Ī#�&�!(۰� j���E��B�����C\�Q��:bW�H��M5�
�:�$�FU�!#���XiDa���'�@L��:�f
i*�e�E��F��k�z�۠3Đ0��5V/�ꘆ��S���MN�MX��%�V*�0gb��c�rpH�ӭ}�AC��g�+���h�=��p��}��Pӱk�ͦ���7�r��<r9��G�?���f���X
��
ƣÛɚ������.D-���@��AT���[��<GQ5�s#�y�#YSdf��o$Wf}Q��C�o����z����8��˾��n��U�Y�;�)�B?�$pM�/�T��e��8ŋ��ޭk��ڒd3Ge[�>�� �,�m
9�̎��+JL-�s|��$�*�~\|�4����
jl<4طN��EN
h,�!ڵ!����[��^W-�9��6����u��*3�2T�F*H�;e���64#�����^�t��;������K��1�{�E�xM�8��bi�E��}���2+Z�w�����F�h.����RкE�M䘝p���M�fp˸5�SN	��M�R���ġ+
��_`2?L��R
��Ko[��F�G��>���hC����mq�����ͶYQ�0%�-Ko��%B����⍚!(\�]�����Y�L�i!����җ���-Zr���κ���	mb�e]�{�-�{\���]V�8���gd�b��Q2�l<��-��w�Ӵٵ}&Vң/)`Q>����g}���M~0*R{�Z�5Փ��xmc�w�W��;����|��6�OEv�{pَ�_�jՊ�;���|���Pz�ԛ�5�x��������{���_�_�֏MT|�e����e;nX�j�<�[��g��9
.8j䄚%��Ү9%?��o>v����[1�r�Q�:�n:�x�3(�؛���u�g=��<{wϡM����q-�93�QR��겚t|Ib��AK�!�)��}��S�M���?se�TQoN}G}W}ϑ_uޮ]�tOI���Y�2��G�:�m;�$�(q����&nw��f�����q9���:�ٓL���96�o���^�mSA�ҤSc���f�D2Az��(����(�YAG�!�Č�;Kk%�]�N���ϛm����J8�e{�c�j��~��f��;w����سt�$46����=��K�Rw%��E���~��N�mI,Y{�jY�h�-�x��B����/��'�|Î9����{�`���/b#�I�z�#�����ǣim�J/_��������������:/���<u�¶i��C�uR�
;�5�Iv��ؙ��f<�a;t�^b��W�r꒫u��m�W-���}���b�s��k�"\�~�a�]L�,k|8�LRBA=
*�)}�2��xġ�Pq�~Q�O*P�Y]y�g��Ȟ�F]*���\��Bs��|(}�2C���?S�?��L�4�z9�������k>���O�nnd��e������{I�1fS����^���m�_<�ϫ�x��k�n��P|�K6 �ޥ����
u���f2���^�tU7�}������c������d�6��t��?{���ٞh]�V��z��UK���֏���zγ�od0�8���Q�x9Yfy������X��G�y�A���ͪ���a�	���Ү�W��Ɇ�㋳���-����(+ǟ�4k����QFX�������7xv[v�W��ثg펎�mi6�?�u챶�&sWY���DNv�$j�@�c�qY�є�����q�s���i���j�{շm'�V�_c�н��ޡ�1b��!��U���Z�~�?9?��ص/�n�퀭���:�XΦ���G�3Ș�ڝI��]Sfn2}�1�`:��ئ(ŲI���p�K6�M�6���2�nZX�ͰmB/Hva������ZW�:�sA��g-��v	��n�J��f�uMs��$�SS=Z���[5�Ηӵf6�N^u�i�=�'�����kj;:�ӗ�M,k��t�����bW�u]�D�$Gv���7U"ƍ+��!Js�^:FH0�)�d4ê�G�B
;�*�$X�8[��ӔB(ޜ�j�@4*]%2e��4 ����v�'���w��hL�-���̚����;"�Fw[d��o�f��V�/���BhjsO�\�©�Kp~��u����<�ߥ����7t�k��|�}MgǪ�3g�8Z|��\,}Ն�PK����L:���6427,��G�NW���{��uU|ы譓mՌɲ>%���)j�r����j=nц̊�ܮ��2X4�Kq��\L���4�6`[DG̵]�=
+�n�����u)f�,��P���6�lon�òS�ͭ44_l��_�����|�Jt�i�F�o���۶wu�lr���n���x�%4�%���X�3�ķ�?ݸ�3��þ����:g���3�!��
1�Y�Q�z��QQo��-3:��-���?��X>ykyn�g��q�����fu����8?���_�ol��|W}��=6F�&���)�ݔ�e�7��DwW�ꨓX&
=k����/t�}����%�
�9l�V2��Ea&7�Z�qӝ��I�٬�7�O��g�/��H�'�~��?t㷿��?�RH�ђ����,C�B��k�>�_���|]�.�+�`�x�
�o�<�ª[vjO��x��a�!M(�=�?@dz5��LL$G�����f���&"�t�%h�J�RJ6Gb��E��x�b~Y��zy�d4�z�"�7���|a���-z����?����R�������
�4%�QfAŖ݈(iO�t��Buh�K��W$5��~�.]�u�Mm�������͝�~�cS��/m�ۻ/��5͋�u؄E9��ݻ�{�Eqg=+j.���j��Ƨ
�?�ዱ�{�;t�w�?��>���ޙm���5�I�+�;Փ��ݩ�,�E�l���M�!��
���Øf�ӱh��'&�$��P�!$����BK!��[�3�{E�6y����`����������W��ݍ��.��ӣ��8��匛޻����X��߶���}�i��K�=*[�ru�Γ�3�dr-�rd�=e�#bp����J��2y�3�}O�:�b���Ѱ�����o���f\9[��e�c��l~��E��B� �yw���л���{X���l[|���la�o��⚉��N��V��5̛�m�����5�ֈA	ɯ��q�MX�	D��(�q�kd��J��Iߣ]��V]y媥-}n������A�!_��۝�}����ꗯnZ�k_�ڎ��/!���5�.S�t-0�T�c牫���0:�zm+��H4be�xT��7J_��u�t#p���m��<�c�ѝs�8���C몧t�o=����gqFPL/nM�d���sAxҢ���6���Ѭ��B���	�'o��`�$�°�֢5�Y��q���[7fD����7�(�c�b���w�(�7�����$���O���ƁǠ��^���'`��>���fμ�Zy#�C
_ �_:���	*�Z�P�L�	�@�`(QJ`�˄H��3HZ)�.�����������e'z�1L�S8n?���(;���&�$�Q��,3��W��1����>�$L0ye����&H��g�0�L��sGƨQT�K�#�Oq��:{�I�=;���2�tv�c������=����<p�L12~�kt�
��idG5���Zb�6$ρ���݈)�ҔR�Ӽ;z�ss1�N���mv��M�ؾ1�E����b�U��dEye迴aʹ"�NixLm�X�%]�T3��%fG�s��b�f����3���t������Y����Ꚛ������H�|uQ� �U���׷��[N��h<�@��*��쮋=
�F_�x�����x�~��Iπ�yp��~���Fzv����V��,�A��O9���7�k���Am�ʕ]��<s����PX�}R�I��_M�p�gB}�Gb�ב9�4���8�>��nا��?J͏A��4�����H�>���5F�����Ϟ�����OM�<O3�w=���NJ/K���}��~5Ԭ�C��DWMiߟ���p����2���rc�q��#�_q����A��r��!!Ŭ]�BaG߳�����
6��c3x��'��7+NP�
�heL��.�]Z��ԗJ}�j�M��A�ɬ1sh0���e7��u7�*��j} �l��Yh�P&�&�.���j�)ӣ[i]�*ts+D�A���j���OP�.���S��O�ecz.>9+̉�0�����s�ʑ�&^���3�� IX��V�|��sՆ�5��M��[�[L�p%9�~�l��D��K��U
l�_]
ș�P�>v;�.�����<ciό��9�+d�MΗ�������=�or�W�S�qAƭ��B��}0�;��Kb� ���!�#��r��'�q�]���;+&��
V=
f��\�F�������p;����^�Vۻdvۆ ���3 |�����<�գ ���9��hđX�Zd�P�o�H��H��K�K�����L���2:s�-@s��;1���� �����j&���97��ϳ��C��>��埝���G*�y�Q4>�}ü�V6@�EV6N(�h��8�d��M�/b4f3��Ϩ����q��T��>�T1"�k�������5@kt�
����H5+a>���P��A��hr�q�í$E�z$>��/�C�z%�hd��뮃�>	�+����>?�/���g��;��Muץ�s�I
�fgQ��(���g̱ZYˈ�M\�����]2���1
��$�AOnG'o~��`]p���V�+굺�E���U�VFk�����~�v�+���y���jtZ���`������� M�W�c���G�n���0�3g��NmP/j��i͚�l�J4�����FԳ�Y`���?����B)����Њ؅W �W��x�(K��X薑�"D{O#��ݥ$f8Lm&L�:P�BzR9cK})�RV#��X��'���>域&�|PV�cӊވ�ެ\I�TLT)���&Ix��fBͯD6Xd��HL&#�`�,�^�)��2؟<J��NqC.W�郓6^��ҍ�:5e���#}m;�gU553�U����gy�%ܦ�*(�f����Z|ݳ?~���4Ѽ�k��<�uS/�UU5납kfi+��\w�-h3k�m�j����.W�����V��Uֆ��:|,VX���f�m��4q⦇�/�:I
QS�lC2#q�0�a;s�2$��ؠ��餟�� A�{1� Aj<6H�r{e$FЋj��iP>�Z��(�"�f�j9����#�>Qc[��elY�d�=�]�����&t�ń�+40cm��\lm��MSV�,�{?�5���y	�� ��
�������[�6�|��փ�ݭ�Gǖ1D�e���nDAV8i�cP+ܥ�+�)�8h�5A�u:� �6���I
I�s���"�7g�a��t}�$�_����8���� ���p4b?��>�n&��!�z��춡
4�u�'Li(�&�+�?��t�u��&����1��R���	{����߹��%ƺ�W,�[zzZV[^i-��+nM�_\T�?���w"�׹ݧ�X\W.�l9�����Б�ݖ�bFNҋ����xJ0�B�I�>�@���}�NH~{8�*�!�Dm6laJ��|�A'�17��ۻ��P)�ⴿ٬���Ň��֡e��D�J���Ї�g����]��8A:�h�h��
1�ֵ���#���lEM��e�vU��
ȾQlb��"YW(�<��	2"38L%e(H�[�@�$^۷�F��Hޒ=���SK���>Ԧ�8�Ȩ(��F'�g0�
��eÄ"�ț&�^�ӣ[1���K�$=�}�S��S��ć���b�H��9DO���z>�F}ʃ�a���x�.K|6�T�R���d��i6�ӟ�]:����7Lɇ)�Q,9���#����J'�g1�5�h-�P���K��G��#��޴g���+ǯ�h6�qd�V�h#;o�b^Q���f0�%eGYG[�#��A��'K{���4:�:���7P�7�b�P&�T00�
{K�'�]8b��.+ҁ�1���8p��{3F#�`κw�ʥq4u~�-�1�'���/�eŠ
���~���gG���z>���Ϯ?]��Ũ�挷�L#�͜�r��T.}"/M������I��,3� �u#ST>��P���[�c��s�3J�<eɎ]��;�d.�k O��<K������W��Y����Z2����Ho���ň�x�+��#�����x%��A��{!9�W��r�L�	4Jb.��g}�4=j�z&���x��+:%��7�X%��r� WHCA$t$�\���L�i}%0�qN$�/����0X�o�V�xa�
�lL��f�a�v�^�;
���ȁW��NL�2�|&��S{-�n��/ĄsP��(*<�…��u��a�O{��'a�2�[��9�L���`_B�~Q5�[쒣(O[��%���8UL��b�H?L�xj0'-z�A08~m�8���� ���R���E�
:1�y[��h2���6A��D�,c��I }(
%��O���;�H�z=�d*��xzSx�C�@ ��X'�	���j�<*GҡB�!0�Q�`��觱��P�O8��u��Vo4N�3�ƽHL˜�ӣ���C&<`�C�<	oq��N��T��C �H&S�����=$G9:��Q�!8�cv��D�_a�}4�v��mW�F"c�������8�\߇u�rI)�l)�Yr��K&�&�ҍ�6�,Dr���LIqexE;�O�Wf��p��V��Ha������\��{�0I�#�Gβ]ڮ���M��ߙrQ9ߖ/-3�A8?\����	��-T���rY����r��a��q�fPW1f�ɱ �w�����#>������qSr��rm�o�Q<
�xQ�NZ�q��c_.ʁ6�a<������K��)�QGRr��7���7�P߀s���ޝ�do��s�3z�|����O�N�=��=���=��:Is*vhYn��qG�zd[�ŝ]�׵�h��U���K�~z�㑉�=�4�I�p0��&2�0�
��]��[�x14�s�hy> F��Ƕ��?��u�e�"�"3F��:4Z"`0���~|P�3���SX:(C7
�&Ӡ�(�SF��{s
nqx.QV��Y*��Ȳ���Y9'0n��d��(-������̭%
�!Y�<�K@�6�Q��@�&v��dO��	��h�&E�N ��"uD�)��`Bw�D�ڇ��2viY�O��x<�$���-*E)l��@6Nf��o��80�ڕ�#~}a<�eN��\}ZaȐg���)s��@S=R�g���l��?X_:�3@'Or&���®d�;؏�_9�8ǩq�m�y�$�y:����hjL�z@��$'�T:1�Ā��$�)�՚8� �B5e&�h��kRb
d(��l�`&��"�_s��琽��az��{z?l���W�
�&p��Ӈ���[�|�bz�A��[����y�t�Q�YZ�
���
�O���/]��G>)�$H��+�����~��^ʍF%Q|�:�X`�1�����ي��WVs�#��qm��:��̲�֕�n�m%&~�(�!�uw�@�3�s�����u��n�+��]�
�`�T��K�X���j�Ex&0_�����]F��d�H7�)�h���/̄2�1Yo���D��-�Z
��%�|~��e�Nyd����O�<pɜ�\r`eb�%x�?=�tf��{[/sE6ܻ���oط���e��g^g缑?���U��>pޢ��WU�/�7.�1��WsbY��;��МE[�Κ�̙�v��ك#�+;~ʸ���S��2�Z��9�3&^CB4ɹDV~2��H���b.���u2�ja�bott��•ͱ嗋X��6����T���;!�$J���p�
����B��Z�!,�Wq��x*[n��K�ΰ�2E�t���,�mO
��0h�N���Q�1:)W���5aO�H��.�J�:��CL�A7�FcR���h`?��4�!��|��s��~P9�ժ�K��@5��!id_��/��.
��Z���<�����o��|tt��U�z�S5x�_��|��lm�6h��ݎ_7�����.�A�T��	J��������)�6e��B�AU��mݴ�w�[�3~���}�*%��4Yo¤S
�g5������6�,��4$�(�����᭥�!%�A�x�$aB�����~;u�����A��t�m�s
N�E��xx�--��N&A%x`&pcV/��b�G��ʹ�
j=����h^$V|T'4�z��ҡ�4ʃ�J�ZN���O�f���l:��E��5�&`�5�IӐ	�S��4�F�הΞ'0�nf+Q�~n�n;�/�M�ӣ��L��	H���~�_�9$���l��Q�I�$�	ǟ'�~�)KS��٨rj��2�A���ml0�l�X3�q�єɢGĉ�k&b
��/�Ӷ���?��H��U�xae�y��{W��-6���i�����Ƶ��+����)�/��ޮ��
#;�������o�o��&�'��&c��e�ћ����b������ِ�2[���pQ�Z%��~���%�t�I��؟L�Yԃ˩Zj2��o����CQ4T�QsXI��VT/t��j��,t��W^{�ߥ���-"[����J����>�^��לw��˫�7��VБ2�y�<����6J��m���t!��EN�0��j��/,Q�X���5$�-!���JdF�Q��et�)�O��a��01��x�*_�"U�E��>\u�z~.�9y~���9R�f��ь���p =����p�x�6
�$]��u�z=��	xո�||M�=�5�����VN��Ư\�7�G�c�k�W�V�:��V@�7*�=���F���B�Q��h!��pt��1��]#�ێ<~1��(�7v�$mƑ3oڵ�^g*'���)���G哎��,��������JQ�P��f;K��@$�����b�8I�"���H���5��f�Z�qk���R�Ԇ66v�t�G����RTh���J���4͠}�����D�;%�7���3]��9�<qS�I
]|<���$>�T���Ào@ƾ`�O'ͥ���J�l~�`a)��%y���~L�*K50ɋ���&��!M�	:�xe`���U|)�n��9�z����*87�D��d�T1<8�rA�7�/j�7İ������Y7��<�7j5�����p]02/fY��ӣ�|Ʊ�̵R��,��qΊ�>$�Q��~S��9����u^��[Y�V�u��&�:>��<d&�r	��L%��u���+J['9��;:D��Ғ�Yl.�7�Rf�V�.�@9� 5�ZF���!IDyˊ��f��N���%�'0�� �F�B����c��g�r�o�6%�ɻȻ5�5�ه�gOP�N�V
��A��h(/��2���%0�渮/,���V�3/}ӗҗ
��1�q3̴«�n���|kp�	J��>�OP�/��������a�0���/\@���V�p�rG��++*҂s����d�%*��x�<&�e��6�e���o<��gw�̧ .x�kʁ$��š)���8�3Z��l�]�2��?U/���Y� ��s��9�����Ɩ75�l�y��X5�z����<QTp�I�K��Mk�M��6�ߴsR�_�t���̊�[z�����Ag"���F���"��e�/@R1��SAf-1.���Z�~�Y^�QiyM��Jw��݅ �wC��u6<C�$�a�4�HP4<jQ�Į�|X���q���y���G�� k�^����K���
�,1$V'�/���CE�j��6IJ���r��#���Jv=�*�4-�L��3f�5�E��:g`�s.����;Nr����j���8v?��1A�N�+���k���]�B���-��
ք�������W�/oj�h�����c�^T��ߧN���D�:}��zd�z6�s٤U��1���{��������h���������sT��۰�� ����4	zҔ�8��Q[0�6��`�	�i��Q�`�1Q���a��̇���:����'�b�l�!k��(#>g�1Q�+P
|!_Ԍq1�p���3Aʄj�X���kȄ:hQ�xVYWUg��i}{��-�e�
����Á���@��=�0:~�
(׼��'Հe��_Yek�驘�<3�� ts�E��&���*��xɜ���[U��`�Q�*%i��G=M�Ř$။���Y�q�t���H��GI�Y�Cf��IJ�G��ޓ��*��'�#ҷG��-�H~ =��';T�s�)�C���H�q�JԾ#G�A��=j�,����v���0[5�=�y��y�S���s`��|�kpX�N��Ⱦx���
ϓ�Ϯs$4���h���Vڑ��Ⱦ���Yk��(W 
��M�}G�ވR爪�;%
�҉o������f}�e�!��ۀ�K�l1��,2�?�$���Ku��|��IW�3Ewo�|U���0y���i�я��^t��.'�q��k�=�@��bB��xh����Qc�GE	)�]6�ZM&���s���?1��1�T�\ގ���
:�$���"��g'f)G�9����M��!$�u�|�
�c �ÛF:�ƣm@��q,Z�)ڋND�����T:��Z�	j�u�d�k��i`J��1���v���'��/X�o��
Z��t+��^)eR�
ڵ�Ƿ�����?��X�4ͫ��Z��3}�$����[�`/�ոn%'<�l���cn�`���xVF�Aˋl
�?+��A"��MO��l�)ɫuڄ��/�����	�nHc;{{��y�5XYJ�����.6i�5~iP0��$
вy�����>G�5��b,�:�z��%����{�'����|Uz�U�O��fx������4K'�=��)��L������/x���XZUe��9��oޡ�Z+��k "�k�*�Q�/�:x�(M�U�,��|u"��Q��=)���|��BoW+��χ���ɷC��5Rz����R���|
��W�� �D�Ȱ��Q�g�ʫ���$�@n�х��n�
H�3
1�T����F��?'�0�����A�ċ�I����ah�"�Doxi6�����m/����pVm��T�&���F?�X�ӏ��+�OW�U��4x��ʻ�&�Ww"��K�����Yt_����P�����S@Y�����F���hx{E�h�����e?Q����<��Uy�j���Y7��-����HƲmn�@-��G����,�.m��Mۗ�
�ʂF�^�Je\��p�8���'7�;7~ݱڨR�@�A`>&c��4hSA��k��ej(�����KvY�DZ�Ƿm2�����w9�>߲k�j�h���
�1�Z؇ue���nO��ˣH
�W�F����y\r�t)5҆%�뉴�C�
z8��C�(��dv�ؔx'p�D��D��i!�S��L�!���^Z��}Zkѡ �=Ig0�Ƭ��O'�KI;����iړI����s9,�1�0�f?��\�o�K��5󔋊bKk��W��ED��0(��
不�c���&�K�}b�������>���=���U��V�Z#�_K���F��!�(~�'`�X�yh߿Uo��o���Zh4�(T��U��Qӯ������\�X/�PNy�Zb3�ح����Lf����M�4$DA��Q�F�2v"ʽ���r�]���l�iY
Cmˇ20�~�m�PhN�(��~4 c���A4n�1���m��������
����0�ҋi�����ù�Uu�zx����hp�[���EhgW`��v���Ô��_��d����Ja��*=�'�z��i|��Rr�hyh�-�ĕ���CY�TKhF���|JQ4N����=T!���9�r���Q��DŽ����T�A�	$R���	B+z�.��֒
cJ��@1H�lR�C�2$�gP���}��>�)�^"!�<��+UZ�R�R�iF��R�^�f)�0|�4�����LjS�8R(ɓ@('��õ��^�ߊ8�e���o�s�V�P9�"}I��̍�٭�;����@*��S�f����ps]}/x�`�>0�
f�7KǡGJ�ɥ��7�.��#XN������_b��K�	��۔�`�Rt�ͅ�K{O��`�Z�ג�3,Aq +��H��rC@۵�K���-"BeE8i9�OdͰ|4׼\���Vg�"�3���"AL
,�A%��2��n��Eg�{5�k�<g�+��\Y��9apDs=�򣑠�HCm+zw�i~��:Z�+��U��Y��X���7+PnbCf`F�7P�
GPO��
h#Q�'ϭp��!H%�`V�O'(�"��8&ʹ�QSr�
�\U)�G��a�H1�������E)e̥0Yz��۩�	|B~���R���b�?��:j�U&y�P�ӗ�\�N��;�%�E��o;y��=~���\.)Q,����&�6ߘ��L	|������?Gu��Ҍ�6�MFbr�z~���I����Hvg��BY�:�&ca�FB71���C�QA9��Ċf�+Ŵa#����iYF/:\���Jw���
��\���̡�K�j���mz�1Z
\ņ�/ׂ�Mj
�`]����+F$!8���vMxe�PR\h51�^���!�S�p,�2���Mz�a�`�l��=_�d��4L�t���@�Ng��]N3�BY�W���0j���'�HM��삍8dslɌƙPasF�C�&�4�����+������,�^�a�{��<��S0܍^�5�u8�A��������.U�f�@5[X���]�p�^�.~Z2T�	�~�Vʼ�Y{.�a�'���[�PX��sY]�V��0Hb8!��_����=���xo2�ᦽ����@O],T5���,\`~�Q�AhX��,pf�l�Ѡ���օ�+�3��������I'Xq���pk<����8г.�@������
k}ev�I�*��������~��y�M�`9`���E���ʐ�/
{u�u�"��E�5#�oS�CT(�0�
0���	��6;�����~�~PbШ�?7���1����l�|�S��`�E����j��h5X�� \���	�V� ��W�=zq���Nl��(�2W @�H� ��ׯ��+�$��&��U-_E�F�j$�ͬ�g��GP� q��#o#�D��?5�M���'f�Z%��]��|�ULg����O/�v��$H����^�d0�_�}a��?� H��E�G^^wԓ�:�%�d�Θ�t�)yTcĽ�8��lL�,=�#
K^�ߟ1Kgl��2}��H	p���_�v^CnDe�f�8�T�I;h�=��/�,����ڽ��@� ���F�I����� MgK���{�#�6��*xl���Ml�K�{�]W�'�C3�l�J���w�����ޏ�Z3|��1��xs�bV�1]�d�g��;v;����e��r�F�.و�\�{��AZ>3���d2�FKi���N&=���ov8`�5h`��e�2Xd���͠�!���F�%^�֟��OP;F��gȆ�No�G}!���C�QIA�H�o�N���x4b�a�S7Mׅ�m����N+�\#ܸm����ܺgέ=�
Sŗ�7֪L�F߽���9������r�]9�yQ�,��1�Y31\���4�vUL��&_{eS�D���t�bʆ��6��q0L��F��;�`���0_�tf������G��LN_|�x��54=��Ⰼ�A�$�Il׷�r�`ޔ�P6��`H?P_
=YXZ��`��6Oi��ʃ�ᑽo)�n��6�{�H~d\��&��{�>{=��f��/J���O�N3%.r��\i1NUړ]��xI,�P�vqټ�j��E0��G����2�'y�!�*�[���-��/�� �Ê3FE�J���#"s���0���J#�{GH)��K���ҙ~lҩ1Q�N��<���Z���[����VO�>����3}��61��wg��L��%p����z4j5
�-Y��B%h!���������L�˶��z��zr�fOZo0�f�)��{���O�
�j�i�ZKù�1{�4��_�Q��)Xix]�@uaܸ�)^�H���á��x�5x��$9Iv$�\!EvNPd���W�<���&)Ow��s�]�)^�(
�i���<�U���k'O�*��k
���
@�<����;�p�����}>`�pޡ`(.ˡq?�"T"���A���.0	۾������vr�ΓT�g}϶I�a�2��ykL�:����k��y�[��@^%��I�c[���ݱ��9޺��95&��g����Y���z�f�8�`M:�и��fjL���:W�S�s��'��9�G��̯��O��R���W����d#�G+2��a�f޺�1Z��bdAo#�a����%fcC�!X���k�`"0�c�t��38tJ��<� 37�a��R7&..�6�߾p�N�3XR����
N���ZDg���kTQh��֙������A�wA[������!00�����‚���Bs�<T�l�ŵ��nG����9,��T�+=A��\
�b��^�lV��v�C �1�/����&���Dc�4��[N���`�L�o��@����ꮰS�jy��)x;k�%A�猅����K.N4�CF�9Lә�H�En���,���`qp��A������*Z�+C�f��0��@�����*�ݓ
��=y>��P;RՂZc5������z���2���XK�pj$0���,�S�xE}of!���X�`�d�aЀH_���jA��bu��fԂ:BE�DR��C���`Z#�ܔ�j!qIV�a�
�R�R�1
����&�����K=�f�v�^5���bm���������ֹ�uEVK�Z��b��҅������ˤϤ�/����X4+.���+P:�?cz$:S���i�k-����VW���tG�������|�_�5
��E"�L���'+�*4�O����c�:kyY	����r�3�"�M(
��.lr����#N��j��#������V6�F#�T�����*�q��b�J�s�R�Y�_����(,j$W3�,����$�> ���j�}h������%�*ju9u�Y�cdB�Y$���"C���Z2//�zG���@�O:L��y�q�j�C������<��`�p�+<������#b������8=�~%d���!0�3��K/�[
<��]
�t�	1pXm��V,^\5!fV�9Kа~����&ME�\���4,j|.�|�q�މ�M�Izع��Ն�@a��La`RG��0�1)Pf-�ֆ��%�\nP��6Pe��;._��%�B���J{��G�e�K]��{�u�q�\}DS2i�Y��H`�a���\j�goM������O�6�pV+��4�N��ҌA�$���?k�����f���=���̑��ր#�K�y���}(1W�)G�N^A���Pf����֌R�>�k�q��Z4i��i�/K����W�G��ؾ,wH�
B��kiZ؇�
�+4��j�u����b6V�s<��U�N1�)��=؂`�9;�Šr�ً���c�/����	*^��E�Zez�X��GnQZ����s�RK����G(�i�O�3�H?0�%�l�?��׏��}��t�X�J�3'��H�&(�Ȅ�r_�� כ1�[��}^��h1@
���h�������d0Be�ޫ�/�f	� �ɠ�Ҁ�Ԇ�&v�V�VwM�o��]JƯ�R�~b������f���hݏ�ŭjZt!=$��JɆ������l�@�G�0�#٥�B�W�QI�[�7�?�6�
��	�z`C/(�,g�G�o�?Ko�����OA�[���0	�Z4�|M�D�����`�f���,��D�
x5�^c���d��㥍���NG�_k�ڵ���?���C�$LV�q���y@:||fg��NzgzO/���]�Q����G��;�bzm4�����J��PM�/>Zb�s�%��ޗ�O,W��LUA�����=O?�'	��=ZTJ~�:����[��fΝ��xY[��w.�Tg[�<������Ǿ}^_aYY�}��sٷ�}F��1��$���Dwj ���[/x�����M��G���cʿ�o���f�^6���w���+�[.E���>��G#�^�O�g����y{��{�,��;����Ḝ� �[A��DD$m��H��N�H�I���h4��$*�'r� �3�昈���o��Vm���
�%]�_�l�N3�/]��#������pBp/�7�~[t��Q_Y���
O���x8�0>d�LO;糕�a��o�z��j�թ��|�%�]G�NPv[�	��ں=�9ŝ�ɼ~se��$U����_����5>g�_��T�a�����2��6�,����E���8_=����]Wh�t
��\u�ڗw>2�Y�v�a!�0�mi%���R����g	t�P���$������}��w$͊u�`
FF@8�p��0���r[�it��r�0F��SR*B���a�j�5�X:B��=X���>�/����kY�]R��:�i���'}n�js�o���[��0*[	T��_�$��v3@�Kحa�e�`�����[�Q��R<4Z�k�p|�Et�H(g��4͇
��~Nwk�lWx�8��2j�{�\:��2��y�K�:�O�c)\���@jG����1S�Y}ؖ���0���(�O��k��-nԂ��=�����}`���	�̿��	��c��7>��X�����]��eV���h8}�]u�o#�WC��è���<��H���jc���M%uNPGT�-����[��U�.w���gm�^ZfW�L�T.�[Pp���ak�D&0�#��L��c���a��I/ݭ�4�z�ڢ���IJj4 iE��g�1(�fS����Gf8��T�t�>V�,�w��('���P��ͥ�I�4O�ir�j|3�.�M�.��B����Xi 5P��h.��S��D��,4)\�Q�����Ӡʯj��/�&ԞA%�,�����0�H�X�%�%�Sd�Heb8���n
ͻ0Y�d�Ėٳ#7�x���G����U�\;e��Y������m�X���>�q@�Yx�]/z<^�a��сk�n�obI�#�|��`v�L���܍֗�&��e}�	v�<+S�0�#eJ/�\rxv��Bz�rX�'}6�����H�3�1���-�Vv7�S,DR��~�����e�ʳ�ܹe�G�؂��da"�5��=ӱh1v���<�2���>���8��<�����M���Y������7W�7�i�|t}rxUr�^�秮x{�T^��A|�����)����h.��T47W�G˛���p��x���o"o7�_ڶ�Ez���+/ߧ�x}���UMMh���w���H��dc%�L_�?�@��sAU
��sx�n��A	��t�+@��I,C��.STx�G�~-��a�n�Q7�D��«*��km	�$S,��~O	@�A�DP���/XہEY$��!ц��`�,�����C���$�ߌ�>c�i���<V����в׈�g�P��9�eiux��7��z�
ߠ6� �@��A2$7�?n"TGI���4o���$�X=V�$,T�<;F�����䶘�P����nޤU3��.e����nc��y�c��@z~��i�@
4��B�6TlZ�U��W`c�6dl�T�� P��
H�0�L��.+����U���k8F˛�8�ljU�Y���q٪���a�Z�V�,]�JgAM
��rs��u��r���Ӆ�b6k���"�`����SY=��)	������.v��
���mфϻ�Ү�A�H�J�!4C��t�L�Ek95�54���=Pm�X5�A�P.��Oit������Y=mT�Y
d�AL�� ��AUpE�ymP�k|��b��rJI���ބ�(�p�h����k��Ա�Ѵ�r�߱z����,��'tVi4�	n^�-�t��	M���4Lb���*�؈D
�����6@[P0YDM��M-]�	ڐ��
�`t�\� Ui������eULZ�_7�n���H��+�	�X,mwo-�LՎp��XЁ�9��u�OE���t{�h��.��i�n��f��v���Ő֪A�hs���h�ف�ɪ�F-�f�S������A�'���L�Qͨ!�2�C�S�m-V�|Aۄ�"�a��a-n+,;q����/Uå���&��T�T�U�u&�Ԡ�t؋���c]��)<Z���P���g*�fh
�h�3@ҚUp0.��r*hz=��Y�F��c/�
�6�٢q����"���%z
h֣n�3k���	����>_����zc9��ٴ�N�Y��8���*�&��?���S;L�"�|�6�i��n�g쬰�"W����7�kzsa͔R}��*QW���wM��zk��ZZ�)��ۥ5fbɱf�<H�S�T+�{����11^<C�e�\4��a��y<�c�܎v1�W���Ժ{l��}�JM�v_�7>���G��t,ꩽ~��`��:�)��˅eo�;�����uіI;�4?���c��I"T�%3&w6G+ܚ��`%�J�:c��3��5��x�.^|��N���y羉������/?���l��W|�m�X�U�}��$�
��u/�X��x؅J��R���#LW�3�uӲ�f�8��voJg��P&��+��Ԇ%�&/0Nsc�qь�>wa�`�������Y�0�HogrcGpڂ�g�<=#�k�k�j#�z�뒍�`�������F:��FS��X�ޫ��th<o29�3^�#Q_.n��ղ�9`(�,�������\���m���Ǵ��^�5�o��#�;D_U��
���6��D*e�q��]K(}�y�X��`W�0�[j��9�I�-���������/mnڡg�����!�>6�he8��J׫U�r[�.�=�>oE�v'�:���3��g9�$z@��Xd��bEז\_tI��_�m�J�E��\���������E#�p�y`���i�@�=���`H�tf���cĔ���C��!��J젴!�)��
d)v�p%�֛�6�3�Ȥ..F���lFb�����a���Hџ��Q����`�=�����sQ������@�.@��ދ�뢋���W����5F���
����)���}����E�\�^J:�^|�ErY\��`U]�I�r�e�̨���D��v��=0�3 
���	I�� %yS�������=�\92://�[o�j�D"��^���a�r����tA������Ѳ�,\d61�F
0���l�z��HZ)--�gq�4����hm�6{��.�%�fh@�m4��P��&�ĝ6Į�Xƌ�o-'���%�v�Zr�;��s�y62&�}�� ���ƣyJz�`�K�V��Sj�1�t�<����%�$(QNBm�6h5����&��[��^��rN�1��^�h�}��ބ΂Z��N'��^GgM�o��)��{(�P*��5<�qd�Ԗ8F�X	�1v�%R8�E����O����ڇ?�{-�0�˥��n�t�[^�-�f��`Ɂc7�{NY���+�M��}�ң���;��?w�
o��_�����ol��؁�Pl(�q���b�P<����;�}LLH"u���љc��9�~ C�Q��X/�rx��sb��eST;���o�YH7@�"�,|aX��)l
AB0��QL�t0���\o�9��(
1��%ѾrB2����`|�R�E��F���݇ź�xx�)MN'4?�g��~T�E�%�T�qb 5W(�7�a5	Q˟7����H����?���O�����B]B|�8yg�C$
@��c� �i4��-�0+}���"(3Hj��$�uӵ�V��.���+hMc!�)XC�.�K�<����w�;�f�������E�Uy��HX,�Z���g��e�M������9�1�AgcY��Rg4�*J���x��Y/�������|�dz�lP	���@s5��r�Y4����o{����J�-��������t���U�u�'U8V��������A�]e�����M��Zk�5/�)d�������]��M�:!б�boc�⠶�W]����bIk�#M��F�̭��
;�ҐQ���O����/2�&�32I��=����5%h-�?�x�$�ֽhd�q���B7v��m���%t`3�֗�2@��C!������l6�i�	�����zCov�OW�i����G�7�@��A�ā?J�7�8�G�i�TJKK�zg����i��`�+~����A�kXڹu^������Y�9���h�FB�ژSUX�����	����M6�^�$��6��e��b�]������eK]EO7��0�`�������Z;�?�a`�^2-q�A��ljiۢ7hQ�j\W,�Y�����֫GOw���Y��-.�P��T礨��Ws����fJM��_��6f��@���K����~�Ň����t[�է�%L��W�O���}˗/���k�e[$װt�w��G`�o���'����_ܿ�~�`#S�$��Ǻ����4 6�y�p��i�Ģa��Z�!
�F�S�p���Y��o��Y�&�&�Л��)kK�._�r�\��/��Vu�)�+�,HTq���\���XF�rM��3#]g7���EP�h�d��-Zqa'�̜?���l��r��=۷^
~س��C��G�w�,�1*}��s�-��ݕ
��i[&�Ų����iGg�4m`�U�]=g,�;9f4�K���-�X�3��iq�����7����.V$��������&)���5㿀5�`�m��i8���-�o��g��̦g��\��K�������	0�\��1o��<Y�IK5Jl͸����F1I��3CJ)>x� )x�8���*Xj�\��u${i>y�pҲb�O\�u)f�<ea��"�6�$*3�J'NY�12��3��.j�
:-f9d�l���Ja�$�r���{�R���/�Ű'A�WB��O���D��)���eH.�R1EID2,���xv�"X0��ш�A�ℌ[D�Ջ#�D���F���.}s�ч�;����l�����Tj�R*u�^�2,��/�����u&��R�G`٫O��6���iP�zQ�?/}����$�x��䌴-o�t&/�1��K
����BA�>��e�&V���&lW�1�}:��3�28_�\��=�M�\\u�چZc�����?�l��[N%�S�mx��د^�������'㿏?	�������,o^[ #/Ų�9m ��΄0!ѥ�~�5�0�(�$�|A:�A��.�i�z�_3[����F�]ڮl�����HG^pU;�4��]5eY6u�,���Z���2	�@,?�^���i���lUBt��d��U�{�RK2�4H��r�F�i#���'w:U����¸�!���#[ߢ�B8d`쟎z��H0�{JMnv%��xP�T:RK�Ei�L���s�L�O�o�1������0��/4-�QU�c���r.���y|>��{_6�
�!���eEw�Q��7��	<������<��
�j���fX��V'��6F*K*#F�����'�0A�M�|�Á=*��`���+���ړP���1�����e+ZX�B�6@�!��2sI5���Ͳ_��]�H=?��z�1.�:���\�m��Rdm���}��N[�x�Q�D�b��8s�n��y~s���u��:�����-gz��:�Ī���alj{��tm4�T��]������u�8K��87�����^�WI�ց����5e��m��0+��
@�~)=6Ӂ�	����ZA�	=T�]�޾2��j]����N���ˆS��-��Ct��PtX-V��R4��F��O�-��%�&y���*���)k�/
�*�lvBQmF+V�6"|�>�����>�z�j6u&���D4�!A����'h��x�$f���&����H�gE��́��B^�E�(��j�j�h��Q���b��o��6���b�*�-}.
����=:3Gu=�= }��=�u`�/��u��4��q��m�9`v_8��޹����4|7�����ꯤ����p
��m�U���{�{�>��L��d&3��	�B-���fǂRT����+�nIJ�uq�-��������|��7	ٿ�>¼w�+��r�=�N���+>A/���E�ɻv����@jU8;Tg���'ȁ(�5�������K�~v^爄�jph\J??�Xj������z��w��lX|ލ��Üz�O@����;�����i�1�O�$���Yt�HC1��U��O�k��0�q��}�>H}w�;��
��3iܗ�~�O��O\��S߆��ڥ#3���Ϧ~��L�)$V�&_��b��������}�(��$����ά$�kR���3��(���8 aPRD�8ˤ��D(O�.��[9)�	�`0ӎ�0��H"�*@,VMF��֏Ĺd��'}~�$��s�?�}��pzXe.6sm�3ݜ�K-�)�T��A�Lӣ��aYY�b,z�l�:q6�	�������'j��G����D��
�O

|�9�|)�u�_x6��(�R�$2
�f�-Ul��;AU��U�
���L*��4To{!;pC��x���Y�k�o���J��8��Wk4���OV�ٍo�U�C��.���!�L�Px�(�����G3-~
J�a:�MxX�I�$z����ɣk���@�_޹䩍��L��Ʊ�'7z$�����8���e�yt���j�G��6�����y�،z�V*�0�� U@'{l�x��$(L0d����S�DHIX�F��b�
��xv0s���*��*�V���Y]$ѣc�M�X�]����4��oz��U���?0H=��Wi�%���+�*��`�E�#X��TUi�IQ��]|1ܗ:���E��	p��cM�HoB�
��"_�Ƒq�k�]�iӔ>{�q�|)
�~D�S�N�t;�f
�5���%h�C	�v���DK��/���U��1�����G�y-B�U�y5y�]<��"'۽�� �Md/���t\�-�]�9�v��|-��A�<�]����Iv�d�;?��L�gW�[��B����9ټ}/iɬ�vET6��\k����ɋ�%.<���D��_-����r��XZQ�!�@�IN�X޽�t�Z�>b��hp�+w�SG��;���/�UûG����K����:
�֮7:��K��Kږ.^�Ր9�.!�O��M1�ć����ӇxO_�%!fq��Q��<��@��Gz_ׁ!g>ڻ�E�–�$�1�=�|� ���9��9p���~��ew��9�PV��o��˳�++�	�ܢ;ы��|O�eN�{��I�k~�np�l��2S5�������g�2ܧ�G��}t�R<@1g�����5Ec��:�60<��`�%��7�|��R�C��$�h�9��!0����,x�-A��2��!�z�
���������KFqE�/����^b@H��t	bi�'F~����c9gv�����\j4Xc���]zϣ�6�?s,Qy)k9O��!١&��@Ω"�|�m-�"Im�:j�sq��4���o_9�uV&����M�a�5�(�>�w��g̗�\��X�:X�P��}D��%��G���Eq�
�遰�T���m�$�y�rԖ>
J�DX"�/�$Ԭ%�/��a6qU��R�&&�բ�QX�\K.���Rv	�D8�P��I2
Q�3i@5�^v��ٵ9�	�
����V8B�Ӈ�%�L�+�y=+R�ے�@�'�H�華��rJL���Zuj�Ta28x�"�؅�d:�N�$w��/H�r����D��$�*#l8�*y����'h���	�pCu�`�23Ӭ4��Ι�e�}�����>�.�ձ9?��e��
�����*\8��J�%�`^�D�:%�<��[�Ů��MaWMR2/Q�JTk{<�c*�x2�.[��Wg5�>!׺�̪�J��&����ٻ�Z����6���*S0�4f6��?�]�F�Vo�j�Բj��]㴅�P��3o�j$���,r\{�c�L��x�2��Y�t��f�,6��WrX�\f���Q�w<���S�~壅�m
4
�r�J�ˍ:�L���@�,�z<��X0M6�`���nџ%��R��5�����	��P��8(&�/D��Hd���HD�g��eL���b��h�M��#�:��Zڴ���*4�z�O�d�����%V`�(��e:���eZ�A��)�r^nrK�˓��w>�+�l�����;W�ʹ��6�
2��uo���ѧJ��ۇ��M�J�?W��4���t��D(bP��E��0�3�,�y�rK�Z#W�Z�R�U����P���$����#G�pYY�[gvu�-5T��7?k��}��[���=��uK��dȥc��?��`F�Ce4d�ϳ�p�U��Y��
T�P�-l"��j� 1br��e-�P�J�nV(�� �/b���o
0Cd;=a!X�p���F�`�V�D[TÆ�aQ�����]��Gk���^=~�9�V�K�\��x^�[����ݽ�]��\Gc����˔��gg�ݴT=���.ZƵ��e���g�Y��z%�h�C3�؝Q��Ų�ѫ�[ݻ]5��Ǝ5��ti�<T�ܭ�	HA�'wl�K�\���j��d,8�c�Ƀ��
�Ȝ�
]5�V,�,-����O?o:�>�>l�Q7IěČc&0S���<�J�.��,���B�2g(�����Pb9�5�%ʗx,���u6Y*��R	*
KDxKt<��!<�Z�ß�܂����"�.1{ƃ�8;T�Q
������L�^,Fcn���׏�rnV�lڨ�5@�,i�!���^�I@QV0��2�A��dm�5�KyN�+(�.�ݢ��1�
:�|��g~�O���㳞���Yy�P>�D�o��7m/��M�T.�n胃�\?Z������T���B�f^̇��-��5V�ʌ|�n�����Y�t���/TH�N'�A	����c�(M0R�GF8%���E�d-;��Z	��=;u�?9�g����N�ӽ��-�;�Su׍�)[��:�0P��t��N��Ï��Trq��5�ʢ�&4����{���X�V1�3��{�������~g���p߄~ ��L�2�~%��wy���сL���$�DY��y��u�K°;�����2)H�<���.I%���sވ���b��\'a�%a���3�j@}� R�_�kS�F�~Mt�%LZvS��s�bf���0�;�-�#L�����";~�N�v��q������\�������S��3��J�9������� 3���o����N&h?E��$����~�k���t��u?��/����_ݍ�O֜�r=|'�م�v`����O�nz?�]��w��9O���ζ�-*ؽ���}���%Q��֕?�w�<�K"j��8�Tb4�ȾD��x�'��c��O>��5��|^�A���&���H�$�z�g��q���*��
t`TK��FzW�����u9
_Uץ����m0�r\��r\f��j��L\�b~�=C���Ա����4��Z|[���e�������{h��M�.�ǡ{��Y�ִg�ʶ��۫�$~�M"V���6?;�Y:%��=v?̛�t��;G�_��r��u�	�|C��n��G�͑7&��<�"PD Mcl�
TL�$a2���ϤS��i�;U�s�j�� �1�aO0��}�!S��B��Z-H�*|,�SF*=˨�Dsm|���%2���9x�>����x�ۋ�U1�~�=৤/>@�|�܄���"�b���Tc���B>�s|� ��X�����ٝ=�l_׃>���Z}7���z��R���_�=�V���9k���;X�}\��=ry��&����ֈ�$ex��[��=��3�d���a	"h���]z���a�)x��'+�yb§�<����<B	�loG����^��`:���^��L�Z��L��=�#��Nx�����W��~`��K���۸ס?��x1�TM�	�y���J�k��=�??��8��Ox�=s��a��*���a�^���\�&���VB�y"�
d����0�jL�x\���C�!�>l���C7�@)�1�
�_�}�PӨ�G�Z5��s렼a��ؘ�w�eoV]�Z�D���y��p����%�gw��֡#OwLF�_2'�y�ܸ��6]��w�0X����[��,�>D�����O�,D�r0�'ad|��!x\Q��H�{��^Km�>���R�v�n6�3W�þ��
�=�a�c;���0�-k��}
���2�~ų���s��םy���l�����#��~��1\��
ϡ��^><x[!��R�s�(��Sϴ��D��SF���r?t��&Xe����������-�mB��v/Yҍ���K&ۊ�+V۬��v��������̹E��<vl�M��ê�_��ӵ�n�6c�66�{���mKЫ�������.?�̓&��fv�;��szV�wq:Ʇm۫�n#(�g�H���2*�/�0�<��
�B�
^1�dv`n���h��!@����Xi a!�H��IP�B�$�@�(��qLћ�
D��W���>~c��B7�=����7�I�Ƞ|���c���B�
���"_���zW�0��JO��P���Ѥ]�A:��+!�]o�`K��&�DA	��։Cn�;�d3�:}��cR���3|,'�b0�A����F�<�3�N͹�8z����^�Y�g��/~9]m3��I�*`M��Gj�b�'{���|�<���#����F��>��>��H���pb�ɓ�lb��#�B��IH������e�S��<�9�r�4��v�e�s�f���N��R�A���Qar=I�T&�#�咸�]�7l��&mmj�d��2嘇o���/,�{Ҟ�,�>�Yp���)B��}�&�$/p��3�7�i0�yy��5���K����UP&m&�Il��gi���?9Aߏ�����#@��X��Y�Q�K�#"hG ��P��/(b��O��erL8��!hl��O����n[���ق�tA�{c�!i0 \!���yX9LՃI�
��|�;������4ՀS�t/��4G�ځ�ji�]/���d;�|���ߠ68;}_�?ܼ��g\k7�;V�ͷ �|�n�;˭���^�7�d��y�B��L�2�,ǘ!u�V8���e��6�ԳN����aB��Ζ*�Y.��+�&B	f+`�:�C	C��1�+� >�Z:
��3p�A�N�7��B_�@�{]@��cO���n9��+,�^�aF1Ә��̍n��m��=F�T�^�%6�d��Q܌�m�h�ݏ��Ao��MX�N,�(Ƴ=k�>����wZiGp�#�(D�	��Ĉh^Ē\������� �4��i;|
{L�:��P����J.S��@%3�l�R%�JU@����
���F#TC�����P*�XdR`?l�)��d�r�d�*U&�Jى�j��h�I�`#��d�Z�Y%� �l0(�8��R�4�f4�J*S�+_�h4�#P�5F�t�Zk��h͚?��v=�H�P.SH5�f�_�o��9��E���JW��
T��jy�o��c�I+�y�V�z���LP��2�����e��ޒ���T(��A�~�R}߫r��V&���D��p!������Q�R��{�A��$ߚL߂�2�*���#��\�V|�B�v!�
�V��B��"�?Tz�j�
����^�Oݴ�n�W��-r/:�c��O��*L3�N���'�TCv�+���q�Y�ǡ���:�nG�����_��`�Ѿ�Q�3ꀨ�q`T��= �e�SR��Ӏ�\cg|�d<vV0I�
<'�r��"�<�0U�&�[@%edW"��rRw��%��0B���k��,�H,x�KP��`,2
,)"���A��ag�y8�tn��J�{%�N��RD�hyٍ.�Im�e���x��
x9'�<Z-�ʼn�U�R�M���ˈ-�2�ţ�C�F�
?��P�u��f�9�(q�U��ͅj��B�����tE��*O�9�X��f��K(2c�
�`�c-G�%����<���]W�o�5֘
$��]�ڇ����ص�B�
s�2�I͍;0Y\�p����	��~&~����L�~,J6�q�B�
����Q�·[���~���6�ۛXȱ�g�{�5�w;�c��%��Cpf�w��c��S�'F�Vje�2�;��GMF���gʠ'���-1��F��_�����D��G@0�����Y��渓7���� ؆���<���v~3�5�X�>k��)Yܩ8�b^3���#��	>�7�� �$� ��7�}�����c�u�{q{|�>�Ӌ��%T�����$E?֘� H���##����;g����lή�T]؎���U���%U����h,�����?+P�=��ݚ��S6��3��KX'�H��d/�C6=ں�0-���R%�E��ɾg�ۏ!ϛ`�(*y�g�c��������#`�:@-���s����0M>�$Q$?��}�d1p�|�
� 5MO7{S�h\r�?�ko�L��t��6r�‘6G5hI&��N����V�L3�`�M냩��b���D�#jC"��YK�VB�E3�#M��Ή�)�T��L����q�a�Fm�h�u3f�x��9�q�X}<
��h0���)_jN� ��{�hR��{��&�N3]��\b�i57'�N2@�XzS�1��]�OG�8�pO��k5����
H��"zd�fQ��O@&�M������!��@.��O0�f�oz�*b1
��;�+�&+��R??����EL�b� �%��_���R�"�`�O>)eq�.����Z����J�^ͪ��7��B_�����J π��c��$��,��z_�������"Z��,�@��s;f;���~�x5���|��Sk�pgA[��v�e�c�a�f��V^{�ۏ|�L�՗���e�X�fl/�b�}{�=�P[z��@��z�B_��yߗC@�P��z�n�2�9{�؎���KZ�/�󚄑c.J�9R�0]�O�d зьy6���Θv�Ex�u�+���'^x����w�`�����Ak�n���@����z{�4�z��z�(��-�?�o��>��G�=�䓓>��"��F������ԇY�ԇ*�Z��7������ҏo*e�ո_v�}���<9�J6��;���g�4
�>|mM�������+���.��{8
{f0���/MT�[1�e=�X��߸wݕ�����DKK,wDm��Kj��s�%�MS����ⶦҜ�uC�W�={��v�g@���=�,����w�/�X��k��n����������[��کZ���.Z:HL�v�큈�I,jԗ�y�L�BP�@"X�I�L&>zC�>3N}��<f#|�j��m��H���#g�9�t�u`���Z��*;�HG���������T�UI��і��4?+K��/^���dJN�!(�r��(�3� ��l��bfN/9q�?P�F=���h;�� �v����L>B2���y�O`���y���M���M��μ���6�n��ڿqN�=>�OD��h�"	5_�ȝlj&��F�j‘dҀ��ċ���z��"�ԢO��}��pM��:$2��J�
95�Z����V�	�
 d2���	��y��9;��`p{���#�MC�\fvQ�Z����E
9�N`?D��B��k+�y��#E��j����#!�[��n^:Õa+��%�e�F��pq���'�x=��:�2�����[�乍�6�nպ��#+u:�ᭋ�5͚�i0J����3h��ה��
3m�$f������������3u>�	�D *�ĂQ���x�gb�%!j;����&ݒ��c__O��b����⣨w�+$HZ�tf�!'Ɯ���{�>�,#����u����4;J�M+u�}��l���Z�7��L�����PiGa���Ž�C���՟y���+�]�[8��Pʮ-!Ń��y���N+u�G�}�W���$7)�}t��'�Kh?z��嗟�T�|�"dV���E��{s�(��YQ�y�򸧤�9�k!�����$u@9&����Ж=&�mb˝��o��o�w�L�I���l�-��o���bL�}%�%��Jݏf=�)�p�^�5�YR�	zp�}�c�����.��p��4�6�ZL�
b�2ˈfc�H����>�1��O��DP�Ɂ����Lǔ	�
Q�z����D���9�4�O&�ɇ+�Tx$
b������O��oji����F*Ƭ,�
f-	74��lu�t�����J�v��^��e��*���b.N�.	֠W�E��"��u�5`��Q��K�D�hX]C��f�����kԼۚ+�,nu��TGlηX
��l���c���hu�`<����="���#/�w�0
x:Lq��ts��x��y�_��L$@F�@N�Yx���j�1�D��r|K��F}(J��&�j�Ec^�tO`�qN�D\l�i�oq�#��]���֭*�v��p(o�1��ЎAk�>Y_=d���t�OO~�qrp���U�)�S�S�w��R�豕��[K�چ���g̙�N�l��r��kJyNֆ�,�`ȝe1��F���m����F/tr�F\}������p�d�gB���
Wt�+S8(y�9��Z�<�n�̩��[V>��e���Ƀ�]��Y@�u�՘}�j ̄9O!���]!w"(At���|���g�eP� L�DF���"n#1G!���bN�]X�l2S�c�X���i��hU�<�0�x��M�Ɔp�`�n��=��k�M�����S&�����S�\̒�L��ו�g�^���!�����M�|�mK��~���;s�tu|��t�1lT.�v�_�L܃�A}z$(�i%��!V�7�X'�������	[�"�5�]�P%[��D�,d?���Q��H1-PK�*�S���C[��WD�n�$�,�26䗙t&�`R�|�qdB
9��߱e#j4Ru�4�v_��Q�F�����!,\��9�~h�8��3x�eZs��j�SQ�0��Z����#���J��`��,�3Mn�[�ٜU2Uo6� /�j��@8��B�*��b�Y���󁡏�������P�{�x(�O8ȑ�@gHH�	�A�#�+tNK)V3l�d����d��hؑ��G�(S��!�*F?�C���wY|{a��]��>|���(=_�"�
��]�y��y?'o�Dá(����s8�r�W&�nA���6����
���][>KU����'�}\�n���]"9��ƕ��Ky�+B$�0�@��(���Gr��j�B�ʿջU2���<s���+Ij��5|���J�C踅<F0��N�S�6�=�sX	g��0G�y�]A�]�������A�g�e3
X�'I�������)�{��A�L��/���
��i5���pC��ϛw��@���D�6jN��Sm~�U�B�LD������w+��K��G��=��
@z�\����j�sW�q�ss�=�x%q�j�pȵi>0ܸ8��N�)
h��J��n�"�I��A��9���*��r��D��x��8s�ڣ�Q�&_g���9��+�PK�pm>8ϒl�)kJ�Ϻ�p��gp�B�_����{m��dZ��Βx!b:
Fhb������v#�à�]a��#�&�y�\d(�Ë��וl�}4/��\�ݛ[���
�&U�5���Zp(?�@���Ίk<NJ��e��|�՚(?��l�͛S���v��
W��GDm6|ɜrl6_^��j+
�֤ d��.N.7����'7�mך����
B�����r��R6��wD�!�D�9i^�����j�cR���j��K0����rU�U&�3\�\�/d=��n��4v5=9�����{�F8�E�.P����o[`�_�/��n����fܸ5�A|d��C3j�Ħ��I�~w�L9���ekV\��ʬ����O1|}��zf0�vL�X�Zž��䋑3{aޅ{f�q�:Q7�n�Ҹnݽ�'NH�T�s�l�\֜8��MvJ���C&���?��������Ow�M��d�6$8{x&��h�t�L��g'sB|������g!�=q=n]?́��n����!E�ݪ4?>�d�yܬ��'�7V�?y�h��,�9*n)�F�s��ư�_���tܨ�o ��rԸK/}d=��j$�Y�
\��t ��zd}�j�Z��l�#���]]z�#����
�.eO���~�Q��u�̌cf`�a�E�3�W��W�Bp�4��#%��70�M�`1����90�.�?Ci�*Vq]�EX4#d,�-؟+7�T�l�w�(�t��
C�x����F`Y)��w�b��3r�J>A&����VE�\.s�&�2�j
zҩ~H���&��r\�.���D���l�r><j�W��_��'��p���5C�MW�Wv|E�2��,�vw�Vz�����'Jc���#�� ��x��`�%��DH�A�%�s$2�T���6��{@������l�W1�1�8���˫�����^���˯����F�pɋ0�g��~��+�6�ۻw]�Q%z��x���[��σB�A ;�P�oi��}�C����p's�9Lf�>��i�������|�x%2�u���
��t�;��wE��� ��hr�3a��7�@2��&�)�tѶm���Ƿ�Eu��(��8��WN��b�ۃ����Q\��ρ`�\�+n�R��k.Fcϕ�/�/�/�Kc"��Ni�^24#"��K�"���ú�!���Oȧ+�'���x&��*�'0G ��������Oѥ2�\K���&QzQ��c�眅�t.}f'�Eb��x�
꫁��@Β'�h���P�!��	0o]�]�;���y8��spC��l�D]�H�:Z�x��!�4W�\��`;������31e��@��t񘲉S�qK��x<��]����O��:]pKz�7�q3;w�
�?�q}�
�w���f��{G��L<!:�968$��',�-
��ѡ�M��93j~݊9�c8 ��;|Ίڹ#Ϭ�e�X-;����~�)��:G�Z5r�ʕ��g�3�u�І��)�Y�k����'�|V��Z�����_��,�.�Jzhi� ӿ�q�#P�r>9d֬!�&���̄3�Z�'-�%8�WQ�]:C��ޛ@<���
�}�
�3c@�qL0��g�GKr��$����3�8~�;Ы@��|�w�Y��S��3V+3��R�45%�D�w�$�Q{� �ㅈ��Y�BA��r�=<����O����QO�g����b,xe(~֧��U��"�ձ�-Z���J^����k�e����}р]}�@��|�`��Rg��//+A�IY��,,c��V6C�^��K���M�Fd�@�N��
�}U�T69[cR��M�52y�dB��H�
�%C����?�&90��"��931˨�9�4r�>�«!��Y#��)����I:��Ԯ_��$ϳ{p0>L�_5��Q
OG�c��J7=:�p��'�1�H�S�J�g&��0�,J���:���N%ۺC*�Ŕ��zL�L��zk�D��9��q���P=U�&��f3*��g����&K�Z�1�ŌJڂ&A��(Ž�y�_Jz�u��0���i<�s�1���K��
�6c���_|�E�|sV��⟻G߿aF��o�A��"߉���T�6<�P�vɟ��C�Y�.Ս����L���S�����"W�w�t��ܪ�ܝz�|��[�J���ݶw�m2R�7�x�$p�f��a�HU3Ø��tf>s	���c��3��������w����[�Ft#����;l`좉��9�?��g���#Mz���4����'�&����^�hb*	�I��Y1��BR�������i����#�w�ῒ<�Atz|��P(�)Y��:�Eѕ��� K�(ѧ��	ү��țk�\�!������~ܼu��]�bV`9n��m.���c��
tܜ����ˀc�
�/a׎Z�<vگ�{\��]��%4wʮ�j	����o��=蔦~�{��2�vC�>2���s�6�3�3�>�%e�ɞj����S8Pt��?�D���gp�z����x>�Wv��`�i���e\U�Ც��}
C�m4k����Z���B��Ϋ�f�cu	]���_:M&��de96���qѐ�>�*�Q�}�ΛW�-�>Qy��ݵ#v���-�Bޑ/ز�^{��ǝC���F��ؓM��n]$��޵y�C��ױ&��|AW{���{�„�}U�z ����
1I�6�1�g#&b�MVL�T�~�/N$�	��q!p��l��㩅
�0��ɂ9j&j�� ��:��D�l�^8����R���U��T��A�C��;u��C.�s��݃�.����`EhL��Ҵx�m�ܢ�Ƹ�$k�?>�{��ܒl.��ve)>Bo�Z�<S�X
Bq��i|����z�I�X9y������(����3�5ؼ&�ؤ��S�w���#g��x:.��m#0z���"f8�����`�b1bN2߁@|���x ��s>/�/���4��%_H���<�D?�e)&�,�d��4�
j��	�M��l�|D��]�s�J�b|`�&���ׂ�8W��Q8g�%��텏������+H0��?Q���� ��P�h�D%ݣ�PԶWU`ԙ�5U�Pg2�	��B�R�2X�F��	csK2�8o,wŜcВQ\����p	���=R��!Ӆ�z�B�9S���Z�2��7H�R�!JYs�ea1k���2�cJ"ۗu�J���L�FY��
���;l&��i΋
.��̩�|`Y��L[�I�C���NW��Ŝ�r[IN��d����|�
gnz��
��ܥK�aÍO�t���:/�?o^~$o5I[��2ͮ
��e��o��HV؝~���^}H�*��g*�L{(�<�r.W��:�T0d
X 52�14�+��X-,
���s-f�:.�����`�,��A�.P�N丼�rieq�%z�po����^��ad�z���s�i��0k�x�@/Z~��ٳw޻|��<�h��WM�r�͋m�����w��9�u��\3����c�0�2W1�P���:�6�O��u}N�����D��ϳN�v**�Mw�X�[�(!�9����uC"J�W��R
)r��/�z�ԟQ��U:���k��S#g�2�)��U[j�&�)���*ͭ�����В�;8Ź����`8�4{VS6�S�^���x����7o'���?�ڷ�^�l٪���ms��J��ʀ�%�4�Ғ~N��������x�ҦI�`t<h�g8�(׫�&Gn �eiU����
�Tf�j#������3SOAMx����K��`̉耬����=v����=���(KZ[K�����o1լƼ���A�1g&0G��1�d���4�1DC �|=`�Y�s�)	�' ��h�8+����Ϡ�Z���AN01nI�j&��\�����tx�Dc�h���+q�x_��g
���ﺉ�Q4&��4�<&���O�6B�.�i&r��	��F���3��v
�(*B�i�x����k3�1	��؁	]���l�Sw�&I_����y.����8�Ts�"A['�j|�mj���kA���£FfOv���99�����&�N�b��ָ�sѼ�-p�B紆�Y��m#�2�kkk!����7�Ŀ+��Ŷ��=�#̐ˁ�R�5Zf+�����C�S��X�R���b��U솫��G��K�����M3���J9�+u�[�ʳ�m�Z�wP�-�e�_6�]W0ci�7��\�y���u�M7�/��O�֯�z�"���U~_Q��+kͥ�zl���-޸�_6���k��/�
۸�Z�ָ�:�ß1q���K�1R�
^���.:^�Ψ�fT�o��**����S�]F�����?��hJq��;�$�O������Ӂz�E����������ԩ�����I�T�9���]V^>^5k:'k����e2oF<�c�4.p��=��̧1˅i@2R��]K�]�}�M}j��2�V.���R�V$�L_�M��"�"�FN�з��^Q���rX�.��	M��a2>��S�9#�#�E�Vf/��F������]�'P���NAVB�@���b�8M`]�ϸC�kuPO��1#~�b
C������{LO�h���Y4���V�JT��v+��g�I��{[��
�H%�F�J��̎�bY$E�:��T��s�ApDʷ(�y��n/
�v�2g�����Fz�v%�ˋ����\�U���3�SC�l<�@�!������e:Q��l���L��#4~mỳ�H�ER9��
��'�`hy�ը�i�I.��٩��p��K�����t��_VZL=�
�	y�|f|;�輥����&��+�L�.g�fn�a��ƈb�/NWa�]!��M�鲛���/�a�i3GQኧ0�|uQ��h�+8�B
���l�!I�Q�J(��LI����3����E�H��u
��`Y����%���>�.�hw�t�(�b��s�>_W��Y���WjT�r��m�ΝpQ^xpML�e�?sd������ױ�F&w.�N̛Y�-�c��?��5�>�	טi����Tf��ӕ5��Z��ۦ_���ŗ��Jg��(�K�R��l���t��,q���_>\[Z\R��ĶKQR^"w.@�ZR]�ei�"��6
����>˨�2·��s�z���"{�!>RL�2Ye������8�U�}Dx��x�����bT���0Zm����\T
�??"wHG�3�H������KK�J�랏�;q|�y��y����]���-��;d�H���#ӛ=���^��N���
����|\@�k<�fLG��������@�u��]�dz��/Ɖ�24��0����n�(�z�^t�a��JP?�W_��ˁ��ǭ��� ���F|���T�����x?�0��C%�f�-H�P����kq�C�#�>���gH�{-n�2�PN�=���(��zu��\�
A�Q�5�VM#���ݐ�ZR����^!�P��{�G�Y1�}���@qq����\��Ht$#B���r�V�f�{���#­�lM��K�}�;rv{�v�v�k}�چkd�Uy�鐀�#�9xܼ�:��YC�j��9EOm�rav� ��9��e2PN�&~T�;�����D�+�l��Y=E��=eZ�x�$eq��2/}W2G��u8J�aߘ?�z��S;�G��K�&1S
�|���w<��o[�^�
 �W�R��m�βqu�hz�OS��
�4K
�|֙�����Ɓ{�k+�ڵv��u��� �ԍ��C����k%��W�n�ZCv U�l��ľ&�^EJ�J6��\��ѵh\�^�q�"�5k��Q���x��C�2-T'�(d L��Ó?�#��Qn��M���~��I�bڜ�&��kzR=�0�i�Gsp��l�0��hY�6��ɧkhٞ���r¬�����gR�
f�G4a��p���o����:u�'&��τ.	8��_.y~Y��PR��R�j�f͑0��ǥ��d¡
�Q�>~����B�O��|$�
�M*�kΓW��xs
�GD��P|K�y
�4�4"��afB"��@�.!lQ��쌨����	�~�SL^[���i������]&K���q9�m4�祑<-�����0�ä�/k�\\����x+�jں�0CJb�N���1�$"���0�6�3�f3h�fw�q���L�]̼����0��u�T��b�-#��2r����M�1"�u*K�	��1��]�?)�3����J�X����ӛ��ϥz�����O�W@����͢�́�;�g蝇>��q�y�Y�_�`_�y�7�ԇV��>)�6��<x'���gs�=Y*�#�,DG1�#K}^�	iפ.��3����x{�Vg����;�@-&-�WH,ҧ} 	7��$$��D]^I�x=�m7�E5e�DD��P�U"��E�(�+�rW�?�Q>��9R�*Rd��[��Ь?���(M،���co��ܱ��[V�]f�rIJ`u��qM%
��ŭ�����6ڝ���F�F���r����B >�m��˜#�/>��Ք��n����s_�51X5m�e˶�_�ږ]����m����XK�‘�O/2S�yk�X*O':���m+���!'�H�h�g������$��~8a:���E��w��e,��u�h��{E��A����,��h)

�9��y,7顅�L2**���_�{ߜ��R�9˟(iΞ�{�y�N>X'W�P�����?8.�0.k���2�g��/k��`ǬUC����<�d�ú�m�C+��;�iJل҆��j���lZ�*�zF/��'���Z$xpT�œ1@��^��*�L뗊'�j������z�4繫�!kZ��[�X��s�N�{���c�U���~E�g�@�;L?
���1���Y����wG�җ�n8�a�O�/�XGZ1UD�Q�;W%n����P���#�-�'6�G�2��I��%Bd�$��^������J�Z4O�W�>���![޲쑻�ї�% eN�k��[**����O�Ф�@
*�)t-:5����{^���{�¡�3��*� 	�����1ń��@�1�0���
_���	$�������^K�Z��)���JS���r��X
��S��`��͝�+w�ݳ@{N��c.���@�X	����.ĝ��$1��d��(W��,��,>~tqAW�Nc*it:�0i��)��ٲG���Ges-@1@6� i�Ȱ��+?.
;�agjB��dlذXR<�	]��+�++*V���Yt]�����Ol�q��o�yg_*�!�LT��#Z�z�Q�!�q��G9����`�ไ*�O�#?|����lf���{�Qt�a�g�л|=��ۇ�e�f���[����O��n�qPt�`����{c4�3fT��\w����G�³�l�EF�����f ?��(�`3��x��;(�2��o��f-z"s�����Ƒ�@�IX�4�X�uEB���i]1��..��F"L8'&�I|iwh��3��MqΐWT�6�-U<��f��6�!{h銻����*�}�ͽz��bͰB�q��-^�%S,��0Fo��������ߩ�aY@��i;�=C+X���P�Y3>�rWʤ8"�~��X�R��x8#'�t�d��ʌ���[7�@I~V}����Ã��zw/���wz�^�/��j�f۠ �[���rLy����5v��5�mZMݖU}þ��Sج/�)x���i�8h0��v�5��A�e.�ʏBA�g��S���Sz?������Z�G��L=��h7,�a�iC�FM��I5;Q��K��>��ٙ8�ng@t�b�K�~d��ǜx�l:�PГI���$>7̜'��W&_Y�[�6�y�kn�W�:_-����)��G�����UEHz,T��y��Iݖ�n4o�I�\�<��"���6���|W�����?_=򯇺k׬(R�„�'�z�R����jN��V����_)U�yOf-�V�*^a_?M���u��������i���/�t�S/�jз�y[��E���cw��0����'���֓��B'>"�]�4�^�����]�g(�6���'����q-���w����m3��UT���Pk��>i�֗u�X ֯DC���P4n��5�Ӊd��mmp:6�jM	L�O�:Mq��:�	l����cu8�]�n��g���N���
��Rrr@�c��ŵ��f�$����[b��14�dz<��v���	B�4
?�xȟ��~7��n�$�a4	��;���f�+ٞ���݅��������`��IlaF33��L��.a61�c��&�ff/��a02�g������"1K-5ٴ��#!?q^c�!,+��I�!=�y��'�B(�->���h*�s�Ѕ$�X���S�%X`	��(fr,f֓�	f��Գ�:(�.�|��$������b(�����X���j@��)�%.e�Os_E���U�==�}$�d2������I�$CGH��pD�p��SnP�R@�����AW�]pAQ������B�����g�I@���d��������^�z���ϰ��S�#!Q��tE:�Pg��q����Ycb��
��.�f��m@nѓ��؅���=t+z��g����%��TZ�Z�2�B_is�c��l�vt�,�E#�i{F��+�C��N}�҇m@�'�pgNJ���Ȟ�O��fDVo_f���6��,��KQ5�7���
�����p�)�Cw�dF|zL*���F�#A�øT�L��F�4�k��4�a�	%:f��ȥ����a-����<���
0�)ͧOk�FH��a���	�]� ��48�		VT���}��	)�hU'�J�޼��c)�2�M�l�4��N�f'�����
�0�+�
�s��OЗ�7�/@ҟ�<̒s�[gD�cEy	��'�t���8e�g6�/A�3��w��%{C}sن�'��֊M/��)�I� �GFo?��l���FFN�nyǰ������_|��@ϸ��h���D0���WQ�r��x�L?����`|Y����L�P��(�|��S�n=4~�Tۗ����S7�>&����Sh��1`���L��e�f�@e�C�����P=��M�Ei���E�s	E7�x�I600��ى䆍ųd���q�@=7Yaڡ�kO��l���N��������_�����]k~�e����^3k��c�:~��������G�yw�ǎ�ŭh���ݻwl	we���m���e#Cw���f�8��Mc�s��h��N�Ë��1<G����ˡ���@�CD�4���6�x����6�4�t��a~�7������Y��-�>4d���}�z��c�#��f�8IBh �ȷ�!GTOóix?>�w�7�ܷ��4���{�{�U;>d�F#�Q&m[Dj&�E�A���2��)aJ��L�
���B��g&�U�f��Y�)�:f3s����ه��1�D�G��D��,=A��#����w�ʏ����p�B�YL�u~��EAjl0`&[x�@m��}��E,~���J��Z´_�H�;[O�}�h���ؿr�,M*���y�f�,ͬ��2zn��b`\D���g]������ŝ�"��?��
�<�.y�T��4M����&�����a��SZ�s��2��jV��	Ӻ=
���'���7�D�/^�7��ִ<�:͛F~*�7-��ț�M���4/�nz����cK�'�s>�A,-�1=S����W�%7�z��0�$fK/�a��-�1���x��xY=ֲ�3���x%�Ļ[na�ᖻ�n-�W.斗��rB�Px,�l#���Msŭ/攗�����c����>\#>J$t��SQ3���D/L<�QTs�/nr�����~��}��#�Z4sƢw�|���S/����R���4�Ӻ͟nIgW\8|��-��L߼~�m�Θ���ݽ�J5��ޏO8����w^�}׻�q+6oZ1.�́���.�R&u��a�������`����&�]6�~���s��IcH�W��+E�i�op��͌���-��LTU�7�  +$�5�E�����#ue ��d+6�,�9�<�H/�]�|)�y���o�۾���A��3V��O�#�O��'���vυ"���l3b\�*!%A��'XzV���c�8�ҧ�]��w��[ԙ�{�&��N��Y��0��:�Ȱ�vf6
�!��Ld�]k�n�"7Ї�
8��@�K���.���x�)SIm��-��uxt�,e�]�9��Ap���t|
�G��jE-lǼ�
|��\Ơ�
na5Զ����!-T����,�������x�@x:b�y�v�h�]�2��WR��EU���<A��Pѿ~�ƫ�xp�'ұd�\�#.@M���P`u]����d��#�������z��I�k��[s�R���m'��fP��ͨ{��ӯ��1�A���~�+wW��uuC]�@/k���&���B/y���>��u��	g�1c㏏�Z��,c���A@�AcZ�O��bQF�C�,���r��c�!�"����DP�U��l,56��7B����daҀQr�#*���U
�ޢJ��*�R����*�^�P�JVAS�{v�l߿r�,�;�?�}3|�=]�t{�mn���{z�{�I�וߐ���1c
�a!�
R��e� p�Uj���LKLLs&r�R0�H'����ʛo^Y�����C!�1��$�lW���̕��,��8c��O���?�`ZV�9�&b�����M7L�(�'ww�l۠��#� �k'�=*������9a6�ݗS�{\#k�F��^��o��a�6�w%u0�;��55	���&[�[��@f�ȏmn�s'D��I���Y�q׭o]9��qz�i����lz�E>�/v���g��V#(>?��sj?ߐ�Iȓr�cR�T�b��,��Y���V���$�H�mR�xEG�/��G��a����L�0���E�3Q�Qs��#^ʩM53dE�U��I�^^t��ë��Z:��bɊ���O��j,��6��On���MFIc/k*��X�XR��nkH4C­W�au#�EU>�45�tZy���S���ʓ,ZN�����T%�N�$�qN8?�30�������/A~��j��
v��I��S�'bMz��'�׊�bx�#�A�g���b9BKK�(���M_����`���xY�f6�Iv�g�u��i�U���ę��/A7�@-e�Ԧ��.X_ւ #��\�����$H�L3Z�F�E����G:#�3Q|�hM2��C�]��]JOUe_!<�`�0ߎ��
1���՝�N\\�@��ӧ�=#����ҥ�.P1���땊�n~d=�Έ=������p_�K*�q�G��Ж/wk��_��y*~?���u��H=�4/����ec�|��M_�6�{��_/�OK߾�EmTh9#V4t��_�jK��η����Ck�Z�Mk��.��(�ͥ�}�ބ���+M�w3T�S��c#T�RA+4[v�	ܨ"�}���.���X�Ġ�o��4Ӝ#M)�$�{�*��~����7�=J�������A�'�I��6�6&iO�]���t��`����{���7�G�H�!D�E�w�RCl�c_c����Z`{���c�Z��mpg�_�v�-�߼~q'�zd[��^����`�������ԍ|��G�6u���&�`'�p�޽��n���M�Y�r ����D�Nnn�=*zcL�a����J��yؿ@�9�$��-����5gB�Ɣ�k�iE"��D߉�0�LS���3�\�t8~����gM3�'I�D�R��M'^�#29(�ab	F�	R���8����F<g�>���3�Ӿ�.͋g<8c1�Y�՛�/�	��#�x��`�~}���)�� �����&�c䭍`�ƍh/����g-���M�rN3l���(m(���c%�o��L-3��{�>��g	#H�=^6(N��N=���P��2*�2�2�-�՘ ��t�!�|�ۀ�[O�)7���y��ܞZ���϶.�����N{z7�Dw���=��1���7$یG�p���&~~�[S>8)�q���[��O#��P|��e�q:bt'��O�[Rl�r׊��j��� 1��1�
%����
�13�
q���u"6%�{������u�9-�r�MhG�z��n�f��z�%��oy~��oFG%&�:K�<8m�sl���e�q���IԞ��f����{���Ф���DG�_��, ݯ�~�|I{g�C��K������s�Щ,)t�=�]��8�^�!�y1�1��|:��¯ϫ��[qB��a��ס���~a���gK��E3c2B�n��A�GD�%��zvu�_�G�m�t��P�	zd�X���Z�-�>��W�jîI@�}t?��n�f��[��Z�'>��Ѹc�F[��<�WtB�[�E+KG.%���-���m�:b`Q�o#�3��$Y�\�� J������\��������
��ωT�C����#����5�*�6D>$�@mY`���
 �"-	~A��G��֥b�N�>��T�^y��;1�
s�~���G�Q��;m/]��#�v�V|qs&�w������S��W_��`����aga��|�E^���ێ�>q�8>\�l}�Y��[\� ;���"�����L�]<�o5d'��83u
��%�8
�T������R�qq���Vo:����@���n���[R��
�9��i�������
cB�	�I�?�~LLI����7,��><��-3�6�#��>�~H�س'{Jv]U!/�+u�`�������*Z���G�\:+�S(�FN]~�,y���3/&�^��n^O�TFD�!�ձ�/�L����l<�4�c0a��@���w��P���W�y�A���,I���?�VY<Q)�4�����S��ӊa?�dX�Z��-�WB��]�,l��rG��_���i�h��~fVe2nLUrAZ��hX4|Z������䧓L�Y�[+&l�����3���1}TF��W,A�ߡÿNS��������?��ː��^\[\\ۚw!��q�!�����1w��=�bʈ�!�u��w����r�����DY�8m��<�i�P�㦘0���V0D3�x���^�����hT*tĠjV�r�E�^S��D4$���J
�a�?q�0�a��O�j`8
���i1�HsQ�w�7��O[:ub�])��k�)��F����1���Gz���"V����1��Je:�H�+OT�RA|E�vZM�|u��2�6�J-�zU�V� 	􈉘�r��M�n>4�S����F>��L�b�r��z���V�$I^G��+�J0��J��~�ƺ��S�0<�w0���S!�?��y~ԧwGB�� ��!�������?��p�-�cf���L�ar�H_�8�>�����܌��*4
���� ���0�X�!f�E	�B���f��@sWOW]~���\�$�#��4�S��n��}���O\o��mO^�j�m-f��“m�/��:[�9cZ����g��4���g7���/�6S�J��`��J|w�(����a���,�g�O�P��E����B�n�DW��R�H�El��fL��Q?)��>���:�m!��"�Ŀ��E�j#�����R��
t�!h������oAab�#��:�Z	S8nlۜD��ky��[bL�t0��@�}�����~���WAM����kz�;t=1�[�H��C�\3�C"����)�1���H�$��}�@0Ls�r�8.��@*��#x<n
�c扴�xJ��%A� (1
Q@��/M���x�ۙEn��ʠ
3��b���:�&��dq=��[�?:푽P�Ƒ���(�>�W}Fk! Hn�� y9O:�B
���r
(DE�@0mT\b��Wl�E)u���NA�����I��"I�r��Ii��מ�RW�0Į�<Ĝ�_b��d#�۠���7��n�/1��n�<~�St3�P�8�D��,�� ~}-��N�G�
i�4��z����[
,�סz��9�#�)"���Q����T�"�~юxh�Y���(�|,u���%�:	nC���$��D5:-w�����E�Qb���Τ���(�oV���2�k�ܸl8�Aj��p ����et���
RI�:I�)�Sl*K�Ӫ7*�B&��i�d^�U�P�)�h,��la��$���bY�	|RA~aƪ����d�*r�)a=�O�32�!`{Y��x�H^�g`�Z�ȒN����ip�Z&U6��0��d��aMRȥ�*�IVg㒒����DU?��g�}��6u��d�ڮ�l��9�I)��D�K�r��ս
�^k"{I�cY�.#$������gA��>U���)��Hi[�����e�|�WX�&`��80r���Bc-��� ����j�nv	��i�!�$�@^�R���J�Y]�'se���RY�W_�|l��Se��@�0�4�hM�T�7t��.Am�F����B��y6�
+��u�|�/�a��%�
�
����
I}e*��;��G��
�47�Y�m1�5k����S%ɘ�zY�j�/a^Vbbf>d՛��
�̜�"�����23M������:�<Q��Y�@!�`%t��7��k-)��MP�j�M���^�*�T���ٵ�_#n�Xu�F�NN��-ir�P3y% .,q�	R��^��� �	܋���d�^%�'�LR���D�T���,ks/�]�M�j�`��rK�T{b��3��ޞ��9K��N��f���9�ǽӠ�ƍ} �xl��cǖ.An����Q�`�{�kh��nQ�k������vo
�`Q�|=X���I��,< ��^*�I 3�
]I�L�U�R�q�D6���)��9-�}.�/,-�6��AL�
�JQ�/�ɴ��ifYSr�0�T�`H
�<	F=�sҗ'����W*�Ъp�k)��O��(Wޛ��l�M}�6S$�P�{�)�+�?6n�4i[d�m���"cJ�l���3�J.n���r٬�s�ynZ�����aщ���/mX\Y���&M��N���P�˰�y�ŞW<h���}��[2q���>�T-��"���#��c�Q�Y�����A<�0ݽ��nʆB̆`���>�.�NQQ��vN�w6�D};�s��+�]����D��w>ٴ�P�@	E�]�¼H��k�`��jg
]ާ8��V�13�h���7��Yt�,�趶�c`�|�O�;=���`6G�jyW�6T�w��-"��E�^N?[��(}'���o�8^�>{��HQ)�n̦L&b�[(OG�a>��GS�)'e�VUh�W�^���W�"�@��*�4WL�P!�*&��9��f�����W!�X��H5ӣLI�e��"z���)*f�yR��R�(".���=�i�^F`��(����?�bn�<��<<j���$�_/�o��ȑxn����C̝%�6⎺e�p�k�
oʍ	'�'�i�U���P*���[�'���j|���uY|K��7���,���vA���h�HN����ᣮ��-|�
��p�B!�}S�>�p5㳶�	hC|�5�#--�ݻ�-�GhPlΘmC�C6E��M���*!��H�g��7QG�~��ir�PmV\J��6j�N��|�$�#��DІy,]"N��_�xF8��b�āi���������a�J�8B��@B���0$��<���uJ����%Fw�U��霱��Z:M>�����ï�p?�;�Yᕸ_F�Jj��Ģ�DlD��p�#L�G�׆o�*�>#HD����ϒ�gu�K�mѦ�t�#"��}'i��u������Bbq�^+pL{#?�C�ԍ0�QS�la��F1�8���xP��0�6�!��A��|�M�!v�Zq%E����m�c����&7f�3�W������3��#�^#N�-D��R;+Ӿ�f*���#t��>3O��1i"�v���qѵ"qE���Aj���b_�:ǵ�N�ݩ����Ԣ�YX��X�f}^�o�J���,0�5e��U��N��?39y�3�sr&?�n[5��$TW��yT�6xbwx��"w@���4�\(B���ݤ��XX$H'??Y*���%��Kk3$�-��<+��
V��*6�
{��l'�w`e�L�j���J��J�n5�����JU��ږ�k,���޴	N�4{6{�������e@
�<�ύ菏�K�=
���zvh��%�2_��K�/328��^A?�.-����l���{��?�>|hڃ߰��Xl7^
�|�~
����e�f��}]�Ta����H6����P�FI=��<vb���E6�d�hnHW�	��ȑ؝p4.�UJh7�c�3��Hf��	�y�u�~;%�x��yA�CbI��<K�m�J��B���{FH�1�d�
ʀ����ra�tv���jd�3��L��L6��ѭ�򊼼�<n�[�l�s������5zn��Eژ��r!�!b�8�֟���x~)
�XB�<�}���%GŒ*Ŏw�~^p8��~w�⺱���\f�Z(��1u�.�XZ}�
uq��6(c�<�-6bu�fMܵ=^��_8r��&�ȍ�׼hSy�]��3�b�X䊋]�aԆ̞���8d&܆G�m��Chꓲ�6m��u)�#�!t�������?�a6p-b>
=N\�߬VK;#c��U.�Q�e͎���~M*�J[�m���u���N�}Cw�0){��,��N<����dG�,	<3�������}�v��7����ٽ?
��'��p�w��9��97��:���|b����x��{��`�4�zj�`�Z=��-]%��Z�z�ݐ���sCQmA�4+˵_/vr�S!��Z'�C(8sTC�:��-9��7�:�0jf�zqDO&�P���g���Нި�s�G�R[����AC 
6&���=��[7=�)@�8)�څф�ŋ#{(�[AN�/��s�4�У��S�B^:�oIE�iI��;T�$M���蝚�S�d��"� .\����W�E����ܒ�D=�dٛ���L��D�o��+���*���­S������ڦ�#@F��);��
��]�<��0��4�S�I1F@[7�?j!�;w�E�,�Vd�< j�'nQ���*��*�C�j�������B��?�mq��2e�ۥ5��Gj��KGa��CwN�R�p�7���44�}s�W��NC�/'
�'����p�������):ɎYH�����̃L���Svr���{t�׍g��d�c�'�+Q�t���(�|TUI�%,�?E#�C���S|^UXW��7EqG�dk��wE;!�[���Y$��\���喲*��޿�œ�c����%x�;
=2��CGm�^����	�����Zmy�Qm�_E�%��չ.���)�|�]0��
�g��m��K��{����?o[��-�~�.yc�����ڰ�4��8Xtx+�嵅lRI�&��0$;���+�jF��t�zv���˳��3����9�N�ZG��-�=wn@�t�?k�nggߣ�t���{�t�W
\��
�1tE�kQ����`C�#���sP��誀k�o-<Af�
�֕�O�}�5բpm�,�qmӃ��Y���{�}�j%��#�zB�}�nV���R�P{3K���،b>$/LE�+&�\�U�҄�PnuK���}�E<�����־����)�f�k��6�)w�cUEn���5���nk�:�Wq�FӜ�Pa����*o�kT�%��ޮ/���,\=���aD���B�c���)��θ ~8�����YX��-���$�#F������痳��Kd����
�3i�E�Š-->�(�N�r��"�]&�b�Ć�ݥ����++�#�GV"��d��Ă�|sP�ZX1N����
���
��7�Ư��i��|�2_������+�z��~�����_6�lʹ��lK���J����B3�S�Ϋ�wG���}`���l�^�¦� �L�|����0n���#���ے�Ӝ�)�ꉱ=_Ҷ>�D2�"r]�ڕ�N�����@��$�Gg����Z�g�z�"?"��=��h�HϚ������bq����}f���yE&�Lؐ<N;�"R(�}���W;��?�	�A�5E�&�@S��K�}�3J�\V�o����‡�\��M���.-��v����p��N蜽�5j�&���]���$f���*�ulT�)�X���,�I4��v@K���"X��G�O�яƦ�[�h����#��tq�d��K���4mo�L�����k7&�0�J2�_��#�<0XX��S�cf��*Um�Wxq�Y���������1e��VWd���������AY��Ҝ��y�y����j?��R~�Ąq�Qs�c~	.���?vp�BB�Q_L�=T^�Vo�V�6[��>&�th��sBdY�ޯ����H�]�խd������-��Q	��ҷ�w�՝x0“�$R�t}͝B3o04֣ �^i�D��x�~�j�����
��WmUПT��MT8� ���(����Դ�({1�[Ur�P|��(�,��*�#�q�J϶,U���Ӈs�j�A�^�R�uJX�F���J�\�fO)u�ȕ�$�)�R�.�� ��eL�K�C�n�h]<��;䍨L&�a��&n��l�p�>���TtF*��0J_9�W�z��p���#�$��<����K_Z��4�uv"ؾ
=���Kh�N�Ձy����IH�s��=�r6��5�}��Pu��p(�޹��PoT�0�#F~x��;a�R���r�!w0d�8��d�4M�=$8��L�"W��*8NcL��5���k�
�V�WiXm��.w��_a�8�<W����{^{�smcF�v	�����TT��R�Q
S��LIV�*�
�65�xj��$����T\�u����
�8
u�ͼ��02�"xd (c=A��?l!�.��<�8�A�)�	<�D�5hA�S�ш°�:�
��D��D�d�OA��&;"��`҉�dd����'(�gׅg�}��܈�����P/6��z���u�h��:�|��4��Iȃa�Hx?���I�~�\�N�$���2�O��40�Q/���z�C�ݽ�vV��zY�:���Rh*B�ӣ!��f��
��B4���&������D"HT:���C?U�qP��p{��	=� �!84��Yxd!���/��h��G/9z�G�
G�,>�/�?A�8y�5k��x�}���)��������hq��r`]N�l�At���j��#�_o>���/+��;?k7�$�AH��@޹p!�eh�/>
��ˣ(��5Z/���=x~��w�H4����[��;ѕMS�W�W��,<�w>;����	���w��E�����`2v)� �KT��@���A�u�eE=$�i)Q,��چ~r���g7n|v#�Qq��\���U@a�)SG��;�~J���@1��E���D��r�ƊAM%c�s���t��_x���/�CǏ۸q��I�陎�*� ���f�<�~��(���*ё���d���VN�}��V���#&0��j��v�@"�a�;���摅h	1��3*���@Q$�+Ժ���~����Ə�|��ީr��
˒�R{�����o��R`6�̥擋���l>Y�sD���/�_~(�x�S���G~6&�҄�t�>�O0���nɏf��F���"�?�7���$7�Uw�SQ�,������E$Մ�� �\<D�S�NVT��w̶/Щ�G���6.O�9�^W���	����O�|xl����Q�[�~	B�C!4��-�w��@�ѿ����8�:�w`0��9S���L�"��aRC���%u�{��7�\T�.P�/�+%�f�������31�>���~��u��(��%9�/�Z�����
笠�BЧ��1�>�<�r"]�c([丠�Bϩ���w�^��1>S��8��*\<�wKar/g�]SK��,����<��{��PH�P�
�G�ث�5�T%������Ӗ3	�"��xd���Pƹ�����kIW�t˕�P�lL���Si�$؄�"�z�#�n]PWnD�:�(�S�򈟱���S�D�;�g;A�t��,:*�شc�y&��ȩz�h�3�4��G@�A�	\x8��\�W��AG�J4��l�@N�X��c�µ�@j�\���G�{/��G�_��}����?��7Zݤ8�z�_:o͆��ȋ���y�!�ר�iMw��,+5���ƩR2��O7iX%y�~gf�RbP*��p:�B5�X�
U�A	IT��B_�.�@p�/�Q :���4����ˍ?W ]�\�u�D�2�!�.��t�O�	{��jE�z��C߄���G`� `>��yt���b����K�#�נ���[O�h=!a�-�yd�����u��T�
�]��~t}�߬�6��e��!2� �_��tG��x��
�lS�b��',���
5��A�
� /	Xp�9�`�j��[����^�w�P(���]�($V�FJ5�D�2�X�]o��f�&T�JKdx�dδ�y��'�웓�-�;zj�涛&)y�E�ur�l#@�=�E��/���#Ō�;K���~�C�����^�PЫ������Ԫ�o?�v�|�Y0�A���`.���?�[�����O<?�ᇛ<?�7`�J!��A���/{��fz�
wC�t`<�ʱ��̃)����?�B������{p��e7-;����o]>g��|���Ʒ����:~��sW���@剧IO�ۯ4��ז�(�?�3�\R�Ft<�>���=���rf�w�W��m!�ƅ$�A�K���:!@f��R�M��r?��
tQ��b��Ny��_�:��~~߷��qo�,ρD���x"4sd~���G�ݽ����O���U�x'�+�"��]����w�6~��?n�_��G�<f�<}�'��`�58�b�CO���'�{p�ֶ5����x�8���_���‚�g��\wg�t͞�?~s�1���]K������N7#@c�N6-%��	��҄�dO�=�.���Q��\f</���Bv�
>��&*A�ѷgv�;X��y�v���*�����{�l��A��d"�>����
�S��(��W�سJӜ&��8�O��S�W�����e���5��컱Ϭ��ȃ�_�W��L�<�@i�H�|����Cݙ!�Ra�+�O}��w
���K03��YU!BD]h�@N���fQtG�x�`��^	FMW,f�H���h&~'����E-�DUv�
b�Ǣ/&]�M��kH�Z��h$�oQ�R�l�,*IM5��@�5Z����cw�]��,K��x�O.�>9�i׭�Ó$r�Ҕ�L�d�F.+���-�K+*�6�J"��%�7���k��ںl
��]};e��=����+����՞K9sנ�3����Ė��;�8�ß�r�ٔjұ�l�� c�wު������
�J&̞޻y}��>Ն��&�dQi(T�Դ{ƨd�4�c���>9P\�%�X����K+x-Ԩy�
m���諳%
^6���q�j�fڥI:m�JP�5�8�{�9���'eYɭ3�
X;�M�W����ܱß2���h��|��5��W;|V8'5jUValVq�</Q��JB�H�I�`$�J�X��H�\�O�4/K}��n|�E�f0��;;��Щf��p0̾Ti���[�|P��x�����5#5F�5+�h�U��,[�ݓǦ�I9�\�7������
�1ͧ��Ly:�����D-���@2�лmJr�ժ?g5j��m�6�,+n�qŎ)����S��>z�AΘ�'�O�gR��H《�6u��HR���~ec��ϔid<�<>*�=휂�L�ܐ{�,�XH��?��A	L�(�R(Z\C�F����I~��cG�_��,�����&�Y6����j�����Qy9��ɹ�@c�D&^���t�hi͉�	��+w��v�\QLK��q-���z�X��ю:�Ƅ�K���).̅[�,s
 ��
��u�4��=���Va\�UOLa�gN4ح}4�ہ�j����B3ѹ�m,��hP�V�"���
�W�D�Uu6�?U����c��X}�=�i���bx���{��`΅�	Wę�R�N�CQ;t��������/�6�/�$Z�Ǯ_|Q�n����g�y�Z�w�e����`��DФh+E������ Fn���藁X����Y`��d�.6΍f�_4��yS�tЩ9v��N�f�&�,���z���K��}3xD�"��&��(W�H�J���~=�)'7��\t��Sf�LE��,�
<r�yԀ�C�Tg�Y}��AЬ�,$/��j��x�j�ͳ�I���w��w���Q.��CEP]▮�E��b�ꢦQ��F�$���;�3Z��)�V�LFr��@4Qe)NZksF�N������dI����Pr�e��oe�E�0���in��R�o���d,3�~�$Ӛ1�Ż��׹������f}$���#r�\m��K�/�L8�ޖCm��εDZ����ְ�.t0
��?�
��'��^��ɿ�~V��/q?�F��/���e�:\*l��D���q\'&�N�)6dT�R|-�U�˶���
*��3�!�w�ۍR@=c�Fnh�L:p��<{l��.�aNll,L�UbgQ��#�%�3X&�>3Q����v��h��=�Z�ҔF�K�]j�ƪ����	�w��8XO�xѽ���G��,P+4fޡvY��y�Dn}x~����Yn/Et�a;��<\R	���	_�к���BDN�w�ĵ����s�n;F3�]�޺atR�����%�K�S�}'P�:j-��k8�r��B�)3����.Q|��z��sS�ۃ�/��H��ߠ��Ɛ>�O-�t��r�J��b�d��o�O�v�[�e��@	#gT�J��H�L�x����'r]d�GN��0	�a���rú�f�#|��!	`�i����{kY��U/�o���͒G��e�?_�29�a�H��!	x�9q�%���1M�ZUZ����o�$4G@��L6ݞq�T�~;�t���n�v+�I!e���d/�Z�����J?�(�壏@)�p.��O���9��<M0!fD�y�bn=Aq���n��*GAA�^C�~��$Z;��3���A�zz~�/��H1�����9sS���v?�oO�:+l��Xc���@�>	8�D�*�ಀ�C�ޢT ����KJ�;���L�j�z��R�A�B�(5'�ư��MJJQ��:
��X�J��#�E-��Q��S)�!{=�Q�gH7c��
�(<��P,<U	!���b9����B����������Aw�(0���.T�n���-������MP���A�e

kF�'f��{��_�z��5

e�
,f��6E�#G26�B�}���	��׌n(-k�O��-<��8����'��[Z~��TZv�+�2�l0ʐ�^�����5*l
�<+##K.��*�e��+�e���ܿJ^��O$e,ق"Z�;�N��l$
���x�<�z��#o{����l;f=��?�Y5}����O�����}�p��^6���l�z����y{ߨ?��BNj��٭�|hkp0T���FL�q�C���an��U�[/"�'1�fQv�tFbD��(�d̄�+��!F�LE����8;l�s�FMX0��R1�S��Q���d*�D.N�s<��t,ZȥBb�8P�]�^	��E\+�9�������%�A5�/DCP��11��?�cˡ�v�D�< ����O�ߎ��/�� a	����?������鞓fo(�8n�<�����"�W�級9�,��3�@���F3ٿg��~�OG3��h�l�b�F�
��сTL��{"DZ�[�z��۸'�
�����lo�����c"�������a�Xۅ�{�d�H��w�����R�j��3�Ƽl��;�:��8��t`��#
�B����Z���9n:�!�]?��]��V���j��Am���/�!����!N���A�����J7�p�p,Z�դe��i��-"^��U)p�-6���1P7q��L���;��*��ޝ��*X&�
��̸�Ch�Q�˄��R��m�����R-�v]#��)���ұ��+Ǜ��,�9�	���
DI��f�̄ܜd�A�I����1M.#-�l����|tZ��c���ni3���^s\�e�tmc,s��јp�x2�%Ui#��?�����H2��-?�D�n/Kw����u<r���.����h����aőH1��lDÞ�l�[���R�4�п�l{����l��q	�~{1C�I��G�k"�V�l�l!$�#n�S��.o�o8��n��cZ����ҵ�QD�Dg}ɼJ��2���d�e�{��|�[k�	Y�g����-8��-m}���@٫c-K�N�d&�J���zeQ�~`�X2-�J?w�^e���ӽ'�r��Yy�m���ڽ2y�%�c��w~߂������>7?�9z�/�/�|l�C�+��p��,]e��%���җY�}��{��:�2	���Ҿ��m�3�"#�x��"8#*����"�<d���QL/g�r�ʋz3��������u�\���C��_�{v��S)Kέ�]��$�$�d,ޯ�
L_��Yrˌ�̱[�X���1n[v G%kQ�7٨ip�*�d�ݕkG��8�*?� ��֭�a̺u'5�-��oԈ:�ڐ�ח����Q��%� �^g��q榩��E7M�k㤒��ٳ|ު��\��h
�
u%���SK��@�/�N�Y�f����:��6l֫;�J�#�~��c�ґ�%��AGO�\ތ�Ji�}�<c/Z/^����#-^���y���a�Ѻ{w+����;R��B�߳�m��n�|jh��Dž��ē�5-��ey(>�kmuM��=��['o��[�1��>�A�ԇr1��2P#f
�0�N5�E��s���Dx���p�n�|�d
������uJƏ�:b���H"&1mē��H���d��dN%�������]#�� *���O��u�d��D��*b[�b:�Q�x��^��
�\����Q�6�N+!�^�N���T_��f�P�	}���,��1�A��r
�Y��3��ѕ�GEn����Y���9�|��m�M�;��/��?f�aڦ���/�۟%-�������`{̴�#V'�iE��i!&�
��y��&���"�q��ๆ�4ܙSL�Ÿ�;p�������XN�lv9XG��L�I,�Ľ��"��ʍ�B\�,���Ɂ�$�B,*�s!���\1oE�
Z�r;�Чz��pJ00D�4%8\Hl�DSFC$?u0�JKB�T�[гxzӂ��Z�x"q�t�T���9x�����Q+{�����ձD7��O-,� ���l��}��n��YP��;ƃj�t�?�<t��S-���{��;��m�΁B��\�.�c<:�N�@�o����`͛���1,�͌���Y.����EI|�#���`j��`	�1d¤�Ǐ��ǏG���|�@炥`�\t��\����v�K&S�0���N������������g.z�gjf��̌��W�̷^��b������i��y���ai���k6�[q'��<>��f���>�x�c`d```ad����o󕁛�.�ڭ����g�ddq9�@5�
�x�c`d``c�w�����?p22E�S��sxڍT�jA�yt���Ƌ!�!J�(����Yĥ1���%�B̪�3���%�.������L��ꩮ�>��*�C���w��5 �yT@(&YB	p���?H���߽|�ڣ5��.�{�W�?�M�3n���j���+6s�s��#���ǻ'?�;照����,0��MR�sݑ���~(].߁��b�A�~�_�4��H���y_zS�;�TC.;�iL�%�~W%���&c�Z
W?�� '����O�}w�9����9noj�d���m�p2���6��ѲϚkY&ו�7�Ն+���ܥ��홨�W��tN�4W]��9��.�@
��m�厚�%���Ӧ_�l�^��.�-�����|Cy��'�����O�+ȭ�zs^��싮HY���V���K��~�
�r��9r���{�zπ
�A��+6�w/oqE�|�<��x\vX��Pd�a3��c���v}fV�Y%�Ƽ�2��`�1؞f[y�w��󔷹���g&�l&��ԣ����pK83�M`Mݱ�|c}Q�i�O�9̽y9���y�a?-䗖�[�n��Ӽ��Hɯ�C�Ǖ��ߘuc�\_�_�'�x)}��ےf���J����&^�j��_���<Io7�d?����{�G�7�#�{ߟ�9���kr	v������ͼ����{�ƶ5�����-���?�Hw�xڝ�mP�`2223r���h�ș��g����"1bFhJdf���Ȉ̘�ș#FfČs�̈<3GdF��3�7f�fD��_���@�%D�@�9�9�9Z?�_�ܨ�"0l{�%�S������Ar 2�sy�f�l@v@C�ma�BE`j`y���E�E��� �b����j(*��,�-i
��|����X��|8.��B�C*C!n�Aؖї�8$قB��Pb(?T:���RP��N������a䰁�pQx_����5h "9Ba�pD&F�"����Q�(��ؕc����F�]�l>�
댁ǤŨc��&[�
�J��'����\]����������Z�Z�ڧ	�����u���&����i�=��
�
�
�I�I99;�Pb��8�me
4��R������"�I*�ks���Tٖ�4xZy�k+m��Lf���V�'=8=>��ޔ�O�e�d�mcosd�dZ�m���Q�ǎ�5;,Tu �E�g�f����L�i�aiB��6���K��J����r����sY���<#�a�C�I�����"�v7�+�n+�����
cw�g���9PN�������W��-ګ�b�e\�>��}�<O���&
�%���Ba�}?z?g�P�����Z)&���P>�����`�`��@Iá�C�C��a��È��2xY���r�Q�Q@�&l�+�em�ʚ*l�J]5T孎��T���?�"E�c��tǼ����Z����1�D�	g�NW7v2���C���IN�NI���:���x}B���trFـk7�ς�f���f�m�\�$���$y��y}N��S�(l�)�%Ui�� ��o��Bk��h.b/�.�Zy��_y*�*G�y	I~ɢ��� 4]�������6��y{F���{�pU�M�ʯɮ�(]�n�we�Cx=�z��7t2� �	�Fw�n�o�{X=�������^�-譌[fӠ5��.�
�w(wl}�}���~bQ��.�n��^�=� |�q���Ty}_i�ifՃ�¡����9'��ý�0�؏���Z4���ǀkeZV�	�	�Vj3=?�#�l���z�|���Ǒ��9�/�^���q�_B^r_Fp#�W�W�Q���ߍc���ה׃.�����6�3>��V��;һf7��t���t��}����ɞI���ك���S�S��iŴ�#��c�a���S��xM�A�ɟվL���җ���/�^�x�c`d``jg�dPg& fB0��xڍQ=KA}w��(	bu�XX$����`������pI.$��w1bkiim�/���B��X�vo�\�Yv���̛7����x�w�5�y���
ǐ���q��I���C�Y�~+<�GmQ�V�g��Xֆ
/`C�R8�==���zI�W��s��H�w
�a^��g���ᢇxh��&�(��6�������6;2PD��e��f�ڴ"���2�z���>]�c���`16��@��¸z����T�S��6�E-b��>����`�×�����2�ʳ)=Qs9U�Q�:�ʩ����c�_�Ro�o_����>&,��U��`��d�V�kM����\���T^FV�d�
�8��,�xVBݙ��Q���!�j�·�&vynrM��M�
\�'��c�\r&-zďt~W�;x�}W�G�ݪ����03Ӯ���N��QI-i��f<��c�]8�3333s��r�Tofd����~���~
�^W��x�ǷIAS<���c�����(O*R���L��Y��uSwN�?u��
��v��iړ���iڗ����:����:����:�����:�����:�N�yZ�*ըN�,j�"5�d:�N���t:�ΤMt�M���B��yt>]@�Et1]B��et9]AW�Ut5]C��ut=�@7�Mt3�B-��ljS��d�G}�C[iH.�hL��mjnꡩY
(��bZ�eZ�U�N���#��(z4=�K�����t=��L��t'�Ew�=t/�G��S�z*=��NϠgҳ���z.=��O/�ҋ���z)��^N��Wҫ���z-��^Oo�7қ���z+���N�wһ���z/���O�҇����(}�>N��Oҧ����,}�>O_�/҃�%�2}��J_���7��-�6}��Kߣ����#�1��~J?���/��+�5��~K�����#���L��������'���M����3+�q�\�Os�+<ó<��x=o���{��ԡ�7���~�?��A|0‡�a|8�G�Q|4���q|<��'�I<�\��Y��
^�&�̧�|��g𙼉��y3��[�\>����B��/�K�R��/�+�J����k�Z�����F��o�[�ŷ�����]6��>��<d�G<f�}���q�K��+���a�p~?�ŏ���c�q�x~?�o�'�v����n����~~
?�O����L~?���������B~��_�/����J~��_���
�F~����o����N~��������A��?�����I��?ß�����E~���_��W�k�u��������w�{�}����?��O�g�s���ſ���o�!������?�/�W��������?�_%�A�R*�򪠊���UYUԌ�Usj�Z�6��j7���C�R{�}Ծj?��:@�R�Cԡ�0u�:B��RG�cԱ�8u�:A��NR�jAUUMՕV�j�E�T'�Sԩ�4u�:C��6����j�:GmQ����u��H]�.Q������
u��J]��Qת���u��IݬnQ-u��U[uTW�S}5P�ڪ��U#5V���6�PE*�z�����M���z!��Y]��zV묶���ՋY���Mi]ݒ�:�����}��(�N!4v���xɸ�o�iG�0��2����j.M��9�
Z��
G�"l'��3�Lq��Zθ��^)��+�Nl����Q`������fZ��"gdr�gwg����ݥI����θ�T|�^mu���Y�7vTL/0᠄�$�^g��v�,��ol����#Ӓ�T2Lgv���k�m;�Ud�s�?̵=oXB1��a��qT��#ع�7���-8��:�JdV��8�ATN�e�
��?n��ͤfnj#T�F�ᳩ�5#����Y*θ+�R\f'c�zv�k�%�k���t�80ߌ;�[�~{5A��bB���t�(��;#a�ad�V����;۳Ņ�Vib���o�D�_�y�g��F2S�ț����:K���|v�H�0�q؂0�#g���TD�]�I=�-6���5�{^
;�1�p�E�,UŴS�ܶ��o9�G%5�]�R;���"AG����nZ��ug2;ٮ�ެt\{d��V���Dv���	Lɬ�Є�i�͌xe���slJ�5�{�FŎ7	Dž����<�W���#�'r����f�辏);ragz�B��U���.��	"GVܐ�^�l���(��`�hىD���!2�>iͤ�o�⁧�f5'�9,e[g�A<j��W8n]��vўN�v{�$��1��y%D̺�x(�L]Y��p ǚ��c	-|NB�3.��`��wd�v��4:`��+:��W���M.o�,'�Ų�&g-�3�1bHE$&�� ՠ+�B� ����u+��'��Ly 4f�NL���X����!RE�v*r�.=��v�]A�Fb��6��@� ��0,HD��L���:vh�PnzO��|����B��!T'��J_�b��~?�K����"ԡ(�DO��1gh��L�L�����ڮɋx�����3�e?r}�vX���=�/��*k:�¡Y-��M�����rIS#�ĩ��J�q��@�&EzOK.�$�%Ie�������E�]IImO8�dr�ș����"1>�FFbkI���DD�ye�h�,�%��s��%.nM2�L�L�ZD*m���F/�R;+ATX�БDe�dO�22e�Np�v�r�~I�>�δ=���q�F�;t�J[�U�ٺ�<0H�To�g6t��
)���D��ۥK�K�*��W�KDy��bׄCI�Q%B�fF^�Jn�L��Do�m�eS�fʳ�v<�äc���r
�1�׆�$�	�h�͊�[��+��|8���{r��jdž�:��$�%�(�-��s���Qs�$>��e�9���
�0wݎx� 	&i�H�o�#Ql��!���2ת6��5���r#�:��:n��[�����c:F(&��v����5p�۝�$�t7��Z�&�P��h �� �t���lN-w����.���$@
���s�0�D�2�iT�D,�I��n�w��pMBڰ�o��r��|m:y�a��t�~�v��t��������aj$�M�'ψ$�'W�U[��Ӕ�d��r���R��T�H��ā�}�]���_UA�V�`Y����fzǝ]�ġ6�����V��ܸ�7�pڎ#��p��Iw�7��JbS�V���3��M�vv���[��W&O�c��bW�"�j	��қ/ycI�أBO޴�@�]	�����c�>�A"�T�*�Z�z���,5���k�BW�״�+�,�\o9,�5
<������6�6rK8\�%�yqn��1y�T�BO²kr(��#�Waj-��7ΒQ��K��qڞ�p˟hT璳�&�G_}�tK���9��������ř%y�˫4ٓ�,�Ϧ�-�hy誢��W�����bE�m�¦y� =M��54j��	P�f3ת�'�6�*��z:�YhX((Q�0�_Zh��B�b� ���=��U��W�
\�*pU�X���j@Ԁ�Q˶�9�p�BV'#�eKn�Yme5&�c�:V�c�:V�'�g�s�����j�4@ 
�H��U+���@VC��K���@
���2
,Ӱ0��4�Xb�]ԡ�:tQ�.��E��/��	DQoѬ�zՄF�X�  
-��bEE
E�Fa�h�XD��/	�bBsiHBC�А��$4$��H�T��4Ġ!
1h�ACb���4Ġ!
1h�/]�D
h@׀�Q��נ^�z
�5�נ^ׁ�@�w
�5x��]�w
�5x��]�w
�5x��]�wmaҵ���ޫ
B
 �t�����
 @���k��A���k��A���k��A���k���@ hD�H���^�a�V�Zp��@����j�
�(d=Z����-�o��[��������-�o��[���������j���Z<VO�)PK!Zi��@@fonts/fontawesome-webfont.woff2nu&1i�wOF2@*��?FFTM `�r
����56$�
� �� ?webf[�����@֌�nC��˜�tTL�ɡ�f��t��Ȱq��5����?=i�l�ґ\�vl �T���b�� �1fú�7�T�Q�
��D;:�Ю1�l׾jv��e���n�E��ߠk5>�d7Q�l�Ba��
�u�x].�����W�C����$�8v#��y`��F1aM�8��諠��w�=|'є�0��T|��2/�M�%�b� �tY$!�ʐ���5cb̚���(&�-A/mY�����/y�o\������Z=���5c�k�_�n3�㌾�(WɃ������Nag+���O樴R�'���5���=?���mΩ�L����:�ދ*�_V������z+zc�1`�Q#j��/�Z0��-��F�i�bF"2�<EEŨ�;��"u?ќ������RفZ�HR�D��x�Y,
5�Tt�vb��eϼ�YN�sFND+�����1	��Ϥ`����D(�&6baP6(���X�6gNW�6k.�9]��v롚�$Cf�v�v�x@�-J�`G���w�w[�A����4msI>��i����pÀF(2b���~H�]J�]��jݹ���F�f-~@�����ggB�-�Tx�%��pU�u��me�	'������;��@7�
t=pN��/_U8��
��r��s���X=gׯ���H����j�c�َ�ܟdד_1l:1i��I��T�r��>����v{Gbض��T1*���f�-�x�-i��{��1�h���>�(��3�3��!�$�:�j�~����:ugv����%�ѽꄻ?��d�5+����fU�z�ҍX�X<�c%@fBHO�8����i��G��{��[ղ�M#�FZk"_�'n{�o&�7���SJ�!a�A���ĚPj�vA��'����������UOн��N�����Q����ˏ����*"D~P���0��ƷIJrh/�z����A�P!���eͲs
�A�d^��{R��.B�j\lld����M�J���Y�9k��3A4���Mj���n4���n�
$��x��e�����! (�u�9�2
jL�2r�u�Zr,��j�$�]]4ᄗ����^�]:d���Z�E���h��Y����/�����7��Hu7@	)e�AH(� �m6I�u�i�N�5Z�e@��5NZ�2�l�e[D��d�G.���]W��h��٥��B�D	��Pz��$�n2�	�`�@B�p7����V�&�o���f����w���DD\�?3�\e�җ�g)-4%�St�7ĵ��A�[/��F�Wt�����!s�8�_�.�TQ��b�\��P#3��"#ι[��	0N����7��S���@K`1���N�7k�_���E�a�$�,�ϫ�׿�JbC1Ǩ���]���>��Oo�|
�� s&$�y�'x���[���`2(E_��k��bb����p7������1��6;�~v��o[�b�yݷ��K���r�f�M��B*����Mۧm��@�3`�,�Omr�F�a�0-���P����6���K��t�}���>�����O�`�jT�(aP G�װS�z=n��a�Y-f�Ѡ��TWUV���?�](k�=GƦ��W��_�e�[�K?<K���g�� @�l������:���lɡu&A'�FG���cT5:Ɗ`qR��Oɉ�ސ�UQ�Ա��^(��T�Va�m��5��v��P%�^)J�,f+�RJF��,��̜�ӡ�̮A��x(�H����}�\����i��
�"��l��Do�P�$��D��}\���Z(i1�%���we6A�Օ���J]M4e�� �g�����b�>j@���eUw
u�N�S3@}��3A�X��?d��z�8iC/�ɛ��JKE���'&��]�=�z��_��z;����&��K
�R∏Wk�49���eb�,�g8��{o>�d�b7l1j�|ʘ�U���o�#��[U	{37**E�f[D4GjA�Ѣ
'�:������ԅ8��`W�F��ckO.���:�q�
PiO,�V��ӫݽ��x�3Kn5���Jj��L {{^��f�y�]O^�A�Fі���
���C��0�}��X�Hn���y�4�tJ�c&&{�Zs�F���|rX�F5���˺�P�f5����_j���Z�k���n(��	����Qs�<�E��'�:"`�L�G��9�kj�SC6�Aݢ1&/�&c|�n�<��؈��>o^ޮ�)t8%i���ꪮ�6�̕�4��h�\�����T˒��)��`$����w�_�Q��K�{x����0�#�́���,�]֭�en�%3�j��F�*�
�	_|����q���2�a#�b{�9�v�z2?.E�X5x��]U
�=�ь�n�q��lԔP����!��8`������
���Z�<��.� �r���+&�ۇ�:d�Ox����1;!0�E�[�r'��b>�M1A;E�����5N�6�T��!��d�Hj�9�Mo2�;���L��������ڰ_"�D<����<�S',��7
/XE�8�n��E+@�LrW�E�LZ#�����ѵz��M��A����&0f�V�$�IS�E�U\ S����Q��i?��>k�<�����*-k"�Z
}m�9�(��.{y�̎�����2����΂-�
 ��R�����%h�M�%K3�hC�>iV'ƫ�b���'���:�U�됏�T$�a�ՠ�t��Z��,��XW%���7m]�<���t���18f��G�Hm�e������YI� 
��S�o�[����rY���ڌ�\Ad)1��ې����OJoͺ��c�Qh��!Si=�������-(��L�z��KD��C:Mc��$���“��q�־h�W�>KA@Q��EDtu���q�W��|���0Q��T���"W|�����(�a���Wm��
j��1�!��2��H':�I_f�,�Cb���j�A\�Έ��Lᔯ1 )��H��a���	�=���N(U�;���q�����lq���ђd;h���3`g�kz�"�%����(��8��XXЌ�Jk_�w�o]Ӟ� ��J�8a4�6�&�033=�9�)�v̞���&���JPV��ˢ0��\�q�$���H��Y�1i��9�/�i�}��4,r��pջ��r�W�ub���iܝ�F�#�]���ڱ)b���/�5��LN��#'�Og�n�x(aӑ�%�ct���{�&�\`������N���Q�m����Ю�Tɽ��}��Hy��ɑ\._-�k����s��t�*�5$x�)M�/�熡�T=bq{:�YD���bBNf���J*9��V��Dl0K
�Lt���NDy�)�M��|nK�������<,��*�7�+��Iۚ٫�x�A��'��z�����ңc4E�s��R�������a�k����szb)=�m�՜���Ħ�2�ԃ~���A�n��4��X;���-F�pjd��0M��"M;���p�0p�/���9����i�Ġ���|��N�:Ĺ�
�E�H=�H�}�Ll��@cOF	�=wA�HK���X�E���>�
�b��4a���گs�+�B��oӢ��w�N��޲Z�C�u^9����|Bf�6���yN%��.=3��K$��@�媶�$TH��Mċ�-E�onW�����$F=f�KQW(_��|b���A-�qZ��&猐[@Ej�C
&��>���`Y:3�J�D���8��+g���*ٕ��ޤ�h�2�IY߽��,&�ʕ/�x��ӫu b?
F_)�f������G�B�)�����i[yT�6�n�b�U���O7�<�X���g��j��9��]4���{3y��Y{�f[��q���-WA6��v��[�9�AY�_��eC&�������\3�u��w��DO�
&1�V��Ux�m��W��\����Ӎ��{��r<#늼��C看)B"���ܰz1A$I�7Pmp�޽1Uxc,�7n�I�
OC
ԃŕb}l�7�*% ����$V
T?!��@�����k������ŧ$R��i?܋d�EK��E�F��^d��ovg����]��Z��`䵪=v�
ME����\�,��ID��@��i�룽�(������8���
�eA~�BKD+Yﵓ��n��kjѾQ�����ssy�&�(�I�O�8�ۀS�o�d�'t"���iɳ� Ι�5?�7������H�ZԴ�4����=n̂��"�J]f�k8���6��g��H}#�}���x朹�[�Įl\g�fw�PK|�r��(0��J##rP�<�.��=$��V
�ӭ}k���
"lW�m�tv.��A7��-�_�h�P��,�ue	-|�:��x�k�VO�n/�ep]�^��t��2	�n(|�r�G<��r�x�4� Ϊʡh$���D�������I��P1�Ru�n6͏�<[x�8Rw�q��tQI���a 
�2�_U�Z���$�V ��^XGr�=��w�D�uJz��k3���PEv�`��.OR8]d��$F�|>�l�?�bx5��R���k/`�C�*g�_��N��9�
�j�=4A��CCc��s���4N�o G����2��*8��rJi�OV?��u�VN�oP��C�ߗ��l������IDֳ�t��׹�YZS5��(F]���y�\��._<.���`���9s�J�]���J��O�y��Q
W���V�2��yy�
�K}C����^�u�0>���E/�{�>W�60@�[`^ل�	�S�^�G�-�u樱�y�c�siKn�f���l-���4�>wl�K�x-�y
��f5�,f���TFd.�f��Ij���ve�Y���6J.is��	������o������U��ɾ�b�������)D��O�,�����|\)�]��x��v:w�Ɵ���aw�����cŢ0B�f}�v��p-Y�"#1
2����mU�@Ε;T�.���y���o]۔�'	mDZy����aN;5��H��@�V��E>�k�v��=���nݠ���ՅR~��.
.{>,G&^!>ӮK��)��\��'K5���4-��F{g�:�ABP��*�)In��j������)���H�!E� .�#C���n�cV>����A���U���]=�Z��E��߃a�ہf���͓q�zblj5;��{�|��:͏��|��5���mF����%�
���r�HzX��0�Qh#����π�j��5T�xD��D�������p�^�F��O���vRֆǟi!���4��&�����[~{�"��2+��<Kҙ@:I�A[Tw�8��%�����i�?`����6��DI&!�� O�9����A����
��m;���(J��c+5�@�0�뗨u��ٝA@$;=���N�t+{,�ͮ���ڈJ���FGh��)�b���ӣr�(�3y�{���$����39��gl"T2;�c��d#�g���_9���D���t�-G�֩���UQ���a�ُ�Hoa���3���4������+'ݿ1���+U���[S���ۢ�7	2(ń�ro2
O1���n��-�l��o�*e�4�@�4���ks��ox���to��z-
1uv���b�*��b�a[��\�Q�6�!QC��ޞ��6���20�Ľr�&�Rh[�5���R	;��_�: T:��+M~�:�ۼR�?�1֮���� �\��!܎`0�ѫe�Vή��{DFn-�$�+<w�_����_)!�xl'�LE�?�m��<G�[�T��*1��	1�۬'�6�O�$���q�����u�4�a|9=���+5����������Ir�NK%�nU��d���S���q�l��'�Xm>>U]��Z�uI�4�
�q�K�t1����rY��x�i�M�Wt��9Z�VNo��_~wР�}^�Pr:��c^���J��q�o��Kf=Y ��s����r�8��(k�'>�Ձ��:��1�����ڠD���:�&v�by��G�(��\컖Y���8
�&O裨4�>�;���O�]"����x
���6��.�B2FM8��`��� ,l��T�!T�9�M�U�h�!FAGuB�c^/�Ӧ��*ijS�N*���@���8������\��svq*�1,��9j�D���!��nO_s��=��9w���9��&a�>;�g�4)G��R��jM)V�>5j���wv�z	J*�N=M�����)R�Q����N���2��Dy�}[�ՎN�0A{���cU@�ˆ�ULU���$ȼ�[+[Ӥ���mՓ4�:�u�2��{�w�����M$�{-F���z��j&Mpםg�	�q#��"�Z��,ѣ�2,C��G]�۫�p��kߩ<����Wc~0�����VZR�J�\�W
��-�J�nC$�
�~[���\ˬ�ɬ��r���g�z�� �S������t����q|_Ĩ��z�R�0gP�z�V-�bU����%�;�Lr@�MuKR�;�2lF��o��׈^�U��7ϝ:5�<R|"����i�x�1~��\����ϑL$ ��������:}�p��C�6����x�}����3�ɐ�V��V��:��U�x G��V��\|���<XqR�F-„a�l��<�T�O��a3cGX�2��Zw�p�h�4���I�"�<�7�9`�I��Ѹ;R!��E� �ʁLlC1�iw�$=#T����YέQ��v9�p�煅(|�8�Zny0'Md�@4���}L{|��~�j��I��ݍ��tD�ږ��Y!�sT��z������87���HK��u��
�T�)�����u���D�`���{�-��ZT5K��
}��ˁ��	n^�~�:�up*��^��%��K^2.�C:ݪ�o�UTn���ߥ��?of���Vaݶ21�g�����PH�\�o�0���KΔw0��;��Wo�%;>�rJ�|!!��M�f��0��C�e�7
�{U!���s	��ݩB	�
~���"���B1q�*N�j�+7^7^&�DC�Ϟ>pB�[�i[�I�J��{�pU�[/T%po6��Z�#j��'�l�2F	�;x�E�}ow����sH�%�m���O�M��%���xB �W�b��Ҹ�j�0���������L���@��:I��9��p�t�
��]�xU�T*g��
-r1[P|:$��G��o��<��65!��#@�`	'�RîFӗ�m
�mӀߓ\���:��Ȣx�a���p�����(3��ک4�j�(�n{�uY|bt����)&�8sU�-�������?*l[�G/Uqa�]A����{����
�,����%�7y�z�'Eo]��
�3El����	*k�/�^����D�/k�uC� �*�`��N��Ǔf��vL�퍝�#��_��f����F�Ƴ.F�s]���5�9�V646�01n�p���X^�2c��D�f������g7øtp�`�HA�k����S�b:T��>3��'�յ�DsY]���KIZ�9�������vqKO��+I�ܿ\c�1��;i}�ѥ��!�{��l��Z�
V�Zc��	���*��p��2���2������y�@�����	�%�}���_��Z���:oo�&���8<U�
b��N�h��)*�}�g��C��|a
���Y�g����~�Ix(E�7���;���lJ�MB�Y�]-E{�)7��iE!��M��!a2Sv0
�0��
\ �"��,���Y��	��ɩq�͒�`�h�s��A���*5�jX�y��A�`2��Lt��"Da������E����%JJF
H0NR?eA0C������A�2��o8
U�#Zc�^Y����,�#�X�MuA
R�]��-���07B3�I� A���k�"������%��m�-�0����� I�E��u^�̾�_FC�]�N��
�úƎ1_������ᘤ���uf�9��<rH�H�R�P�(0Trφ<;i�� �'y-�� Ŧ��Y/d��>C�WFc�q�ll1��Pb��6��Kʷ#J�`�s��$��`�.�0�(`n�A��i`>b��C���4d�9��An����C�ZFBW+vݻ�I*��
��ܶ�~O����3�>g�.IT�4� 3*��9K��`"��I���};Ѹ0:qAm��j���U�+OU:�����d��3�v�-G�����gšv&G7E�,t������'K�J�(@�[.�1j����h.'�T�jJh�� �cl�t��\[���-le3`-cQ��ŭ���&Q���G' ���,�x�j�w1x��o��{��2|�I+����O��~���'3�꽙G��<�]�B�����65@�Bz]2�"_1�*��?��91����R�ʄ"|r�rI�O��5�B/�b}A��~��S���<}��6/~��Rd���f6�LIk��)6gG��Ӌ��:�\6u��!=���/02�J�"G��xZ:S���my��3�R2ˑYdf_�j�7*i!E4�ǥ�?���ԍD<!�	]�����I�Z��&mO%�v���~���\����Mћ�g/S�C(���J�LYŃoC��<�N?��G|�.��qV��F��< ��sltϓ�!�a����P�}�\����RO<o��>:��V��Ǔ�A1y�хg��ӮH�x�𢺥Z�{6N��\_V}�y*]����m�/��[�h�{�Ehw�ap����ЊW�]7� 2��W��x��L�����"'j��U$U�~�q��9�<���S�Y�*��飥xר-�
�Q:OS9��Y��Z�!%�1��e�X1vF�aH>�_�.��j
����dp
���?����T8
�u���*-���/�)H�lY�s�lu���Ʊ�OZ�Q��,p*e�̙��EZx,&8�%K�c�n�jd�w�e�s�?��vs�{�-.A.w�<���!!�X��:U�9���~�*�����x� *TpO�����\���G�?���^`�<�'���߿�*T�!�D{@ا�s��$���K(U��,1��jP��L��!-� �H��o�%5���ç����an�оWwp����حkd _y�x�h���A�M����bM�]���;T�n���|D���}K�������qb�:�'A��
Qr�C��&?�ݬ�L��C$|��Ɗ��LN�i��eqƆp���L���Qg;��N�f^R�Ubz�^��>�žd��r,/vKO#V^b�������G�q�����M��^���;�v+�5^5S��++f�\߸��7�(x=�ȵ!�i*T���l
��+(@�ӄX*�2B�h*& ���,v��H/���� P� UQ���py�n��&�V�E���=_Y�a^�Yj�+J5u������������@��>���3��7W3�%u9_3e<)�0x6�F���z�� ��UE��Xu�c�xM�i���	�b��o�����
`لp� �������
UGj���� ���K嘢�_-;��
��Eb�8[t?�lϙ�;JR�P
,���z
-
�43œ��=}l,��u���&�P��;��,���ɶ��G��42h��9�ri�
l#�3�6վ"K��!N#�g�m�Ryw3���wUv#�������B\�^
�
�ω�`��B�U"^��&��f�[�q���n�4x�so���/FR�^����9P͐�����2����A�����|��mݥ|��UϠi�͏X���^��ʹ����q֓���J��˲��~�n&ki�`;�c�@bJb�2�!	�ͅ�MvQ�Es��$��9dz��r{U94��2��I�ע���4���(�ND�E�"ԭ�l���|���-�klWJ�2��C~�i��t"#�j�uGo�跠��|������D��<���<���������?`�FړU�1���C��HY�����1F:S��҉���g�Ȃ�.������0��؊�|�:��Da�N����n���L��y�⿛ޗNl��ڔ,K��A���0c)[RT�I�F��|*$ '[I���ODf��\�~!�"q�ݧ3��k�/J�X��0��_!�v���|��e�Z�طe̕��(���2[y�Qh䀟Ns��L�n�+�E���.|�,�l##‚?c�W)��@�)���9��u��{D���_�����p�n���Z��zF�7:`���={�u'uoZ�?��i�Л�y1c��E��6=�(All��{9�}�Nq
����j�ԉet�J3���%N�'+���@�w�o�s-aeE�n��1B
B����'�#�<��|W-��6�!����~����y�x{��iW�i���Y��N��v�M�`��/��
=wr�ʢ���W~��+�cHž��Y���M�0�w��8��)�>{^?��2�h��V0�=hw����\��y��+r��(��j��e+Ȉ?��1����@.\�Q�:�"��s�?���m��C��T�a��D�UC	�K�Nj�z���Otq{���Fa&�)e��07Rq&���z�]��Rowh��t��-�u.ڷÔԴ��c��$'���$��AQ7r�7��&g����q�cg/Z<G� WRr��y�,5�i�rLG�0S��wg[�,Ӥ���B8�lÑ�O�,�_��Mg����ny��ϫ��4^�W(:Ң�_���-�|q����e��y�-�NM�lHzD)GU+�z�C��I�)Ɓ�S͇j_/�O�|�b�QT�D�y���3�؊�A�a�n �'r�'];�>~o�`6���|���.�;m���A���r��4�T�%5ڈ�!h(ˤ�J���L{5On#j��4P�n�L��|�*�IJ�7�ntH��¸0�`��6�3��QM`xb"�Nd��q��F?���z�4Ҡ��cIu/d����j!��#�`�Ѕ�=��tßƵ���8o<�!��TkW��L��$�̇獐ί�p5, �w�si�^����qKPষ���ɴ�`hH���si�%�}���@N�W�t�rƁ���CޏڨP���P.A�҇�9;p����i��Z]˨˛���)�뮜�y�FJ�J-�/)��`/L~-�B�t�'�Z�����g�f:�J�M�c{��fș=�T8�=����un���'�w�ن�Rix+h����T��6��!e��I�a�6Np�?
һ���K����
��|N���iͶ��>�A\��}*n̨�7,��M%j\cǨ���~���U�;<�*+3����:r���Rz0�;
I�`�����k~p�!;^C�*���{���L�uG�0�����zy�	K���9�b�L��X�w���m
%��V	�v��B$�y�u����|v$d�jgħ3�gu	�32r����c�[�H�9��A�`po��6�%oZ��wCA߯�I�b4���g�h7b������o̧��H���7a����I�(�E�>7�42��hR�kyB	Wi&G���x"a&�NTPy@}j�&Q�t&SWQ��r���I�<9�v����1��l�Y`)�lĻ��,,p7o��c	W����W�X�g.05��s��5OӔ���|�JJ�Yz����'P�E��3U��t�	iu�W56�9�^��#���dZ&���c�/8�1>��yaO���虎��k�Q�e�R�`���ӡ3��QE,���H�=�hGzX43U���C���|z�R�C��th��#��l�0�R�a�&b[�{�N�I�tz�v�mˈ�
��P�j1s��&y~��iwń59�O��j��tD�o;�;j�^m�B7����5�૴�ts��E9_��ާ�XJCpM��‡���@����eU7�uy�Q��9@l����OZE������L|��+,��b�&Ѣ�
�vD��y8���܋;�JБHA=^PO&��@�6�,��6��s��<��.���	ߙ3F����[�P�,�B���!G�5R�^�5-Ҿ���s�w������R2�4!�g֦vk�����іs�������{)�w��hT0������;j�,R�A�}�S�rg,&Ζ(Z<�	����#��+��f�f�5�2��<|y�uV+��(KG��@A�p!D�g�هI	'Zݦ+<�i�i��y�MUp�b�A�<h���M�bG|p��N�[[;�jY�e�5v�;Nk���/�=I�Rx/ͧ�Z2�s��h�:f�6�U$I<�=dP�@\c��k��p�@�B
(Rf=���gx�ü��5(R��{[�� 'l��B�y=8``���%����+��Z�Wq��`�%�A��߆�����HDG�����8��&k=7�"�����!��a��g����$)Q�"�uX���VM.ڍ�cmcޠ`�ڜ�bM#1W�M����G��f�k�(e���Z_K̅h6�+�ů5��#P*�������2�l���~#kd9� S���w������h3�KG񱂱9�H�<�6xFF������<�"T7Bd�`"o�����O�nF����c(^ �7Y3�:ĕa����l��Ŏ���]˓�r��:)�^�N�إ�h#V������t��3Dse�X�ح����.2nC�+�����/�%��`ج~�6�r)׮�ț8�h�%�X�b�y�.|�Ĺ��Ѹ$zE_�ѐ�Rn��_2>:j�`�3�vq�����?�Ӆ����"3�	��{��4�!D#��qZ�]Go��y�j�)�՘$��l�i_>W���G��V��a��7<"	˲w|R
�o�����}�)h�2۰��JX-��7��G�I�m���J����;_۸�h�/$���-{�7m�Yu��f�����ލ�:HI�bI�tx��g��/���;%�mpj%9b;�xR�����6G��Ͷ�!Đ~ΈHHc�p���~6�r���c=ԛlM��	j�����j�S�+�-�<����#vf�=**N��f�[�"$���a���`K�2�R������M{�7܁4�asp��✅�0n�0��F�x��L��w[�����</��Sg&{ݫ�N���tn�A��.]�2�����r	��q����9�'e��!V���jB G��kM�wMO�0xh��IbP��)ߔ[���a�:I2�`,��5ʼ�b�F_��y���p�!Ob��<�e;_*trp�[Ƞ`�n�i��=�R����_�V��A�	�1��󃶒�dBY��?��K�������n�[,��M���47I���X�/�͂�������5T+<�=[(�
H��[e�(׼��+�hJ��r+6[�)A��Kެy�E�>7�&��ߧ��]�|��k����
��N��Px^,z��,&XH�8�⎮#r��j5�?s��)�ji�ԑ$���J�P�(���uE0;9��t�-Y�\n���E4���gG���a�x��J���
���]$�9}�#��-U��(.�:➱���:rrҠ�!��I�tD�WW�*�վ�Z���
/Q�%&"����4Α[e�1�u��zo�*$j��B3�s�A0̔��sƠ��}�&���
�KI��`�����Uz�g�"��M=cT�|��-�1��1k�3G�o冫�*r�{�;�CP��hjNq=������5���J��hku1ٻr��|����vR�q��P��Ƴ"���|�$�B��t��9��n���l�{�B_c;K�
�_c&.�t�㛼�x�Z�i����D*?rq�y���}W��E.�]����1�Ή^j���h���#1�v�30�j�HU�
n�L
�V/�
-���r�>eF�H�SRR�}�h'#�lI��\2W�½_���3W;F|��m�%�vb�\���O���q�Po�����J��@�h+%��:#�O;TT�a*�17�61Ƅ�����,3v"P�ǥ�J�!CC�{�5>�c���J������F��Q���`@�j�8����ۂ�d0��m�̟SR��l�(��F\�X�O#c���M֣Oc07�F���ʹ� '=NIN��;T�v�x�=��|�%A|N�MH�C�Q���j��R���5�n�)S��tJ��pY����:0>��ϲEO�nn|ȆƓo$#!���%��.1�D�_Y��j�XݷB=N�sI���+�Q�#X���t���ݰ�
B�P��v+�3�
&�
}Y�6����euz�c�?��e�jj�b�9��Z�s�Tb�������]�
b�M��I!��1|M�.�Zd�a�h�2�rG ���oJj���zQ������5=��b%�d4I<�:SN#ǫ��	�@�4��'�0K"��Ƹ��mt&dO9m��Ό�&u43�7��;]?-�H"�*�O1%��4����3��&���
R����r#]d��d��Y�/��C�/#o�=�E�O��|C�rx�צ�	+Z��xXM�	���b���Ʌ�W��9�G��ݙ�P�w	�,Ox����� p���c�m.dH�,�T�$�S�a��-t���>�K���
~�L��iL�vسx&&uYT�����y�J0R!0��j{��:$�k��(x�{И4��8�F������#�����{qZYc������0�X��C�C:���T���`J���� ���EI#*����Z���l�3ߟ$���ɻ�O��4�Vq�`����AG����7�k��u��DW��Fn��Uu���U"9S��0������&e#�6�7�����2��O�vZ��KF4P�m��������h�^g�]�;q�߇:��O��7mY���W�\b���1XH�_�ҭ�7|��&�Fn��.�a�,���_6�(j��=����p-��j�E�ȸ�^#�q�����s�<4�0�.�"�jǓ*�g�֣�B��+��x޼�?�w&�Z<=�w5�B�9��M�O�g��hׅ6_�'��^l�����_5mJ讼wP�4�	�.�]��5��B��X�
�jG�vg�ѝed:�O�]Q��`S��9�u�Ng�>h�b� (�Z�V�R����jۡF��[�Z��&H01��`�빬oE�4�OeEW#hE5���N��w�C�x�w�X^��Z@z�]
���Ͱ
�M�v��N?��ӻ6�!z�0R:���`���݇p0��v��)��Vw��dK��x���N:��T�4�c~����-��٤ZJC�yoT��
p:��	�A��]�D�$x"�lŜ� ��I����_�v&#�
��Ֆo�-'f���G'*���Ev��K�ܣ�و!�ל{���E� G����2�ÊU�t�b-ܖ��:6�ӧN;�bٟL�m϶NV��
LZO��GS�y�,�	,��b�!Rkؗ�_�vD���C+K��ͨ(��2a��^�/�od�n�z�N{L�@
s�-��8?��[��hmIUC8V7CT�g��n��R�����q�jB�
�?�iZ�b�(�؜�D>c�
.�mr�k#hxAS��t��;v�����s
��	��N�<)�ʁt���b>���ImNKTTŞ^�V?�_���-N��w6ϔh��㦤�X��,�`$�$�n)]k�p��kR玟�-�ϒ�����C:���(�
3��m�mh��G��ڱ�A������K۔���6�:�G��ܖL����
�m���#Mi9�r/E8Y�3H���?"sS�Gu��T���s=�i*u��ۏ���mվ�����Q̡��7S�fpf�#3C���G��_�3&?aZ�F�sⅰ�^;ڒ�\�5W�j�,pG�:_�^�l��s�K��g��Ύcq�f��c��;Qc�|�3c����Wq��h`���Ǣ��;*LE����Tpw�x��XItZ�T��p*��P�cЗ��s-�u��ݥz�j�A�Ձm{�P��/��sܸ�?2L��>2�M��&�Q��՘��-��C��sh��%%[�o��d{+�Z͠n��8�k'��T;����)�v?.�AC~.h�u͜@�X�0�� ���	�1;�XY��7Дh�ӎ%WF�]� ��D�?�=(;^F^���ɡ)���#j�˯"h�����	 &e>^E^^Ʋ�c(@<�^4瞁�$h�"��>s\:$j+e�1������~< Z+��'���;�q�҆��tIn7ed
���ׇ+�+�bM��MK��e_��
������	�7AJ<��e?"C,n�]T�!��s�ג٥/�&�+���.W�y&�8�h��n[���SφpĬ0%t��Nq�h�!�Jj�t3�w9�D��e5���mJ.P�RUԩ&#exq��^��hS`* �~o�",�È%��9\ga����1�H۔Ÿ+�a*֦ҁ����G{�P�i�)0�N�9!
�
Z�8��ؖ�mR�4�+]d9����U;��ʶ7n���O��t>����Ԩ�����X>�/?�K��Z�B�H2�kI�$7w�qo��ȭ�z�n����,�N�;��L>��e����uzJ��Kۨ������|��7����7���
;I��9���۟�$����{k�:�<Q'P^&��c��o�7��E���-�
��Ȑ�|���V�P~�-����>ٍ��sK��Z�6"����O|���ۄ-�
8����w�r�!��0XŮ�����h7�t6���4�v����W��u߼����L;M���)�U~��Z�jD����sYs��!cw_}�������;Q��2뫮B��p
bB���Q*���r�E�B!P`�t>ߣ�{�`M�W|&'�f_�W����
.̭���l�T6͐jTK���.�#n�2!�+�yw���w
�眰eĩ�׍Wa;Cp9��T��F��6�
�j*3k��s��[�O|ix����n|k�*��k�/��PU���mȘq�Gs�^�g0�L�<�Җ|42:��c��;}�8RDKl+�.�G��#񭬇O�\ق`�䝙<�3N�H�M!
�z�؍�|����|��S�h١
=��P �����g&�[��+��n�-	 b����mк@��n�j��ư�}�RS5�baA���^Ӑ���K����Fq?"���
��q�^7�NX�f�R���Y[9m|K�s�o%R���?8�P�Z)�L&?Mu*k���\�F	�)�>5�
`{q4��&�dp�	����ʆ�X��&S�ϩ{)_/���r
Z��?��O@�C��}��X�x�6��d�N6�h޽�m��+��+�P�;[Q~$�x���i�ER�!�TB2���j�.�r�M�Vm��,e��]��2���X^�[s��kp�^�7�5�A&"�LwMI1�ǻC����p�A��ح%�Ʃ���a]S�&0�s9�B����s���2��f_�t�٩�v�E����Y{DY[Pe�:Yr�'��~7��躺�S%xr�ɍ�ı���Z�����G���!1K.Qs�mtmsku�Ӎ�0�At��?�~��ߡ�B�ۙ,EqS�5���\��=$d��j ;ʒj[�
�Q��g-	{ʗ�<�2f���D�TpV��Ǩk?��t�5�3�\�^����6k�=(����`z*�WY@�e[q��‡%΀���HH���uG��w��J([���_;�@A]�����{/k�I_��KmsAk+bM{��;ηla���
-��||�l����h���Ne�NL�^t�GT��u�|7��B�"*<�Ũ2"�6@spsS�|�
�5R���%��J[{����[�ݫ"��էZ�B»�?G�_�m����U<�s�(K�&��ޡ�� юD �v���ީU{
�nZ�f�LbA�m�&t�E�[W~�b��R�Q�M��˳��I1[��W���)�`-���>[DJ�ŵ)�9Me��a]ݙzv\J�VuȐ�ppع\�R��ו@콅
�9�~�?�@�Ν
�?h��&žy�������|,��\Q”�;V�IY��;�y�j���<�>el�!�N�v����‡t�j3��
+(ך��R(T�IuG�(�@H#������J/�K!���?��V��,���Sh�8*M�&mҤ�E����L�9d��>z�`��'O�!�.B���!�]�SH�p�<�)؍?,j��ӯ���'w��T��_��]�W�h�,�C�l@7��l�
���O��D&'��H�>*e�)�����	��3�OK0�����Ty��4��U�@x�S�d0=�B�@YXe�^>q��g�|]�����<6#��,4�-�L�6����� �5͵*C.T|/����A_��!sϒ��x�gY�N��cx'��7\.�͠��/p���8N��hc���WG��/O��	�|% ��Bp�g^�`S�E��?���e\���`܅8cz?)Y\��H�f����"o�@O�jW�g���ݧz��#�܌��x�M��e� ������i
/�Y�s����e�U��{�`��V����\�J�u����=x�z�%�6���7|ˆ�
�3���{uC������a��f�$�X{�a~�
K�U️Q��� �_=��cO��b����.�=Op��w2����e��F����m�hPw��F�!��l�m�n	�ȱ�����}}T-텆1?Yٞ�:���
��4���Q�P�s��t>����I46g���4�SL{�q��e�	خ�UPU�bL.�:6��G�0��mz�����+cFz{4�f$�v��B!G��>�G囪�s�keҦ@4#�"�?X�����,�Pe�N
}ROj��·�.a�r%/:�"Q��:U3��5�P���vë�t#�>y��{(a��d�)��p�"����#�<���M��[��H� ��Й	�D�K�uB�~��c̛�s~��u�U:�k+���\4���� �j�:��D>�IM�
.i�\Jrw�VY�*Y0�ǃ��hj!A���Dm.�
�����_�搻��"�;���ד��(�ˌ�Q"�-���n��Ag���Q0w&���Y��:�GM�Ȳj�p��xU��C�A�?�OMy��i����8H1, ���*\m�M��a�D���|��VcuSC�Wv1�BV�.:	N��3�=1�6b��Rs�[������綬����;i*���1��V�Q
�p��V�н��CJ�>C��n��J�;ه��҄~�^T�X�P��2R&{*�U�0T�0��?�嫑#T
��޲�8y��>�,!��p�"wF�fl��F�f�=�jų֘����D��wF�KCN�t\[hK�a���ؽ��0�F��U�xDGa�As.�O<^�9Iį6��\4;���d�a�H�.�dt%D��8��6�,�S�7_��E�džH�Ҿ��7���N���7Q�����KoBJF��fl�Jr�	vh������4�g�(�ƚ��Y�W�G�-&�x� �v�LOJ��*���!�����MӃ��0Q8��Z�D'g�Vxx��@���G�x��B�C�U,<k�<���2*�?��=�z�ޅ���ѳ�7D[���X{��*�5h��WO���b���:s�,�e���DI4��k<��F<u�T�t#(Q
�T^��OOWC���k�A�ex��f�	i�.�]I�8�/�4Wia�
����f�ۼ�`���w�Hq/�U|^Rk�ҝ�`a����m=V�z�dt���V���vs5����\�j#�\���31�UkmFX��y����!�iM���B���l�=:1�6����z��=��a���W��!T�s�ްmU���Ś��&p���,�V4KL��[����H��^��@y}���iqR�ء��C���)5�;޲�Th���|F���`
��{QSy��kp�U�i.�[���l���M?Ϩ�Z�Ĉ2�;X ��9A�´[�ڱެ�w��\?<w�>	�+������r�K�D)�޹�ퟩ�l:�����d�W�ymκ�;t`[!8��A�o��Y�Z�%92q��
����x�洇V��S��,����	�~�Q��
��&��J���uwN	�f�!�7�R� n�gRj�l�+/���^o_|[�*�M-�K��+r�~�|�w:���Q�ˋJ���g���n"���$�S������鸛!T��Ͱ;���F�����`����v��ݤm��.�!����<Z��i�� ����r�h�xh�p�'�N3¯�}3�pd��mߙ����h��B�ۂU
��-R]�17l��6^k���/���u��K��V�fF��a�)ׇ����W�n�|�+A�Z��+gՃ�(Ҧ15x�׷1����C$��w�^�7�0x��Y���${��}���Qҝ�Oh�s�Jc��Ja��+|����G�3��G��Hv�r��7,h�g������_�
۱��,�s�0}�Kz�V�=�ρ�%$9.�D�ԅ���E�y�'	�a�]'�6+>E&��;��Q4��r����� ���*�k����!��&D��(�<��c�77��a�BKyDfN��nQ<�[��1Y����$��:���vE	-���+�)=���5F��/>?����'��j�d
�����<َW~���ჺ��Y��ņ�,{��O�X�7�:*~U��R�pNB��̉>1ښ�E�3�rK���ߟ���yqpbt��a��g=),o�8�5�f�t�z�e�V�A�B��-0��5�m3�8yC�^�`:��ЕcCm�)et55��)xѤ�q	�ăi}��7��t�Bt9�7�~>�T-�ϽX��Q�J܎7�MZL���5i5�Ũ�r�Mg�v�xUVr|fr�h*�ݖ�'����T":i�#_dy�nj��H����<WT]ھ ߈��a��Ō{�'E�F��%�T9C�s��>O7yK���a�Lq������b^����˲�#���L��6W�ɠ��������/��o�
���d�z���m�凵TF�V?L���^(���O��D;WR����^��i|ʼj��|xJL>z���I¸x�n�kI��g��Ce1S)���ޫq
&34���0��L�h��2A_�o3�9��b$�~rQ�*)�(��w��kAS��]@�Y��J�����:y�[W�k{�q:`9e��F�j��>�;��:�Q_p��_4B�@\
K@�������P`�hJmVP��V�2��g�hd�e[4
hW��]�K�Q��2�&�#�η���V\	u����h�\������K���ͳ'�ML�/s������)Xy�E�Ud��v[�Ѱ���e���%.�*��]?�
�3x��-|�2S�Gp)*�$��+�-N��B�<�H�5pjv�i�0a�Kn�����Fje3a|m��,���V��cI�����Q10�u����쟦�֫��]���A��F�+#�.��{ԑ=�^�5v���;Ѝ�,���0x�������S�/x��
Z�r+�����v���:�1fUN券��Tq�SZK�O�^�!�Ög�5�^n��k�WI�ҧ��{.��0��mTݣ�G'��D��f?Ƚ2�L�����'�6�X�6>s��'�-}�~c�����4�XK�$I�	z��>J@7q�ߒ<C1�pm�ɳ���U1�<�P�2$�zk���D-Nݭ3�QS�[�7��ӑ���+�=uH4���'���ߢ�qb��צu�
���;�)G)���@���}�t�=�
��O,�����ox7!���LtX
�?��sj�p��2o��*Vp��ڀ��t�M�6 �ހ�UET�-^ǁ^U�۰�J7ꊼ�aǕ��B�}�J�]p墀��!�e%;CD�P>;g/goJ���������FF
���W�����5/탳g/;=A�P�D!�O]�t��T�n7O�Dg��y(&�:P��Oil�8o���w�����LW��XA��?n���N��e��{�m�����4C��\^��X�b��6�T��˓�b4�&���t��x��8��Ș=�����ҭ�Қ!�l�by,�8�1Ob���jw��s
_y�P�8�F(K>�D`�6f����
���&v��6�:���� ��W�!-+zl���Sb����u3�m�;?E1�������cĖ�}���T&}&O0MgX6?:BY���Ξ�E�!�o1�.���%R�I����o��B���u�$�����[�ZƳ����-
0�
�U�Ti�}�1ݯ�O�4s�J&���/U���/��&j�g�Z�Vh�.#�������.�H&��k��J�%�e�\�)�{}d4�kb�\C(�lzb����_q?X�;U�Y�*�����,q�+�6��~!�.���������b�"�B]���[���2��u��]��2O����p����-�sW���83#��2,>��c�Ƃ��L��-=��r����-�?�����gٕ9p�����oX1s��q��fΧR*��+�?�%4�>VP$?{��R��lQPF�",`��?�9"o������OD��J��`� ���B�O$��{Q�K~J%YV��rT�dL�
�4d,���}\�ş��P{���
O$d,�~־����e�X��z���!�;cm�顢`0���	-$XKK�1�s�иx<�"5fRY�	��$ST����c�JÔ���+�u�M�1ś����:��o���?��۠REH3���V=L��������(���שX����-��8tϢ�
�S%�e��72���up�(֚V�2�>��u���w��O9}C�yE핻�!�LJT��6�������v&rAJ
L������v4{�z�ǰ�޸�O9���9�n&�<���~ϑ'�N�B%摂�kUק̤m�u֘/�B�c�T��Sj��A!B-�Ot&Յ���TA�kr����,�Q��c��yd!�:����p�@x���f8����?���W�psN6�6�g�`x�
���[z�a{��kz⪔Z����VS�z֮���)*O�2����+�� ��W��0h�zH}�X�߉}�#y��x�#�S�N-)P������m�+7�S�_��[�}N��F���dòP�]Ḱ^v�u����$��e�j���z�	۩.�M�>�vz����7`��]�Mݖ)-�:�~��n���?����øl���/yW������UӒ�
�}܍���Ο�c]���w����%�Q��r)��u
v�ܫXq�_v�ַ(+��W��ڛU�G���]E<�dJ��d��;	�#���ݐ�t��51�"F��y��Dwj!�L��!�1� �6.�þ�:%�K�8�8~�#&Z�AsQ��}�K?RC���|c�1��h7�m�����m�\.�^q���Q��mh�;-E���{���24H&���"!�i֫q	w�&4�6r���г�@D<j�WH�����}}�j�����d�����{r�UI��^�?���e{
��$�s�����yl"�^���������$�� �����4hف�|~�
,�0�1mЊ�Gk^���R�,Yё�_
�O\x߼?q��!e��=���%���œ7i�~`PA�*'��c�&�r��%h�T�s�Ԕ������6�5��E\��C�Nc�7�~��Ku�N��@1B�$p������֏W.�S|�c�]폤�X��d�)�]/c��FO<�Xoof���b�k��>�Jl���ʩk��+'Ό3|���,'f/����^��\̽��Ŕ�)j���19�k��`P��i���d�=~+p�[�dQ�u������!�:��}FGk�`;>=v��J�m���D�v�T~�Z�7����\J�k+�pf;Z��A�x�����YF\B�V��Բf�`לt�ІQ>�迃��k�5X�V<\{�ApWwr�x#9Τ	;%)`�ߨmO'��^�`f�c��,�:@UJd
�<x���PH�abf�i��[>�VxV�(�V5�4�$ �X.�㞚��49Q#����{-Ck,��	�LRR�ѹ�9�d!�Y�o2��xk݇�&'q�"}H��#XJ
 �r=��J�2
-2�/?��d��̙b�]�A۱5�{�p8>��~g��olu����`��ӹ���u�oMF�0�73��G
�J�
��mq�Y��0�V��@ܳ�v<9u@��Xii,,b��B�54\IҸcdzX�w?�ɷ�V"4�łX�����G��rV���W�	 O�#L���-����Υ��
=[�o����?+�(tJ���~ޏ�=�L���mK���K��VU�0J�'M���������6@/_i���ee��2ݥ�6�����ax�+��n�����A��^Y�v�j��� ��z����H&#��.���Y*d� :Ku����Suh�5����?,����F0�Ft�ֲ�	����I��a>��1�[*��F
�#�S=�q ���x���9B�����.���@��/#~G�@�
MF�,�	*#ԯo
_���(��m�px�S"��:��l���e��i�`�<�/�1yS*a�ݺ<���3�%����ܽ�d
���/���i�ZxY�'6�u���م���%gT֥,�o�PC��6y=~������:il�L�W�'�mY�
�ݝ5��y.�!��@4�e"�[R3`��g�Ʉ���#�`6�Om9e�`U�@�j�r��;ӝ�;Tf+�x�lY�|�Wc����v��F�a���O���W""#WFJE�}��mZ��/��]��ҹ+n��ZJ������;�AA�\�x� �Ix�(�"�(L�r��	�V���s�>�<�vw���_u���$��۵�;���G�Ɖ`�;ms�
��RC�@z4�@�h(
׹Vvm�ƹ��9B�'`a�w̋#V��IJ6��2��?��TIA���J�
j`�iҒaBE�FSM*#��M~7����[331�!�X*��Z;a�&"_��-a�8���,xe��rt�M@;h�I���b�n���!��n���8�ٹD��`
>^04�>�܁ys>I-���dCD�.�]���
�6aG1Jf�5�5#լeg6.�g#��0�ŕ�=�0���p7���0�FO_�[^��DT�マ�L"DdN�r��.�b�x����Y��˜�z8�JyJk�����{��Ǽ�ۼt��X^͝\Az�̮��N���ր�}o����t7�d5knh� �qc�G�
aWdk4d��&�p�i�.�_��[6�YM��Ȱas+���`�>d<e>d�9r�P{�w;�l���Ȣ�L�mW/B�*+Z�2:���ЁkW�K�`�;���]��/�㤖$}~u1������{�T j�M��7��{U����%Ġ�� ����l|[v*kѽ�C��RkÖ[�Hr ���:,Pq����EC�
Mғ�vj[n��˨p��/S��Il�������f�G��b!�_�tH�b�N���Qb$d�ӌ����
��}R�1�K����8�p��K��.��i
�zj#'Y$W{r��zW'[�$��_§�����uc�i���WF�!��w���s�x��JY�{��Q��S�]��ˆc\x�� 3U���<��T���D_�No���H��j�
�����K��
[e7�1�b*ͯ299߽�u����ʜ�e�羅.�,?}&���f��C>l�H9.g��3�Թ�+�{洐k-�8���x��6і�dZ�E<"J�(�r�[�rf�����ѩ47���r+�;�	
H�y0Jy���G[b!�9�8V�8i�6����n�M�3;/�,��kG?�Q�[�r�\�N(xWc)0�%ِ�k�j��sr�Ì4p	,��:��B����/cMF������
:[Z�z���6>~o�A��a�]��B\x��
4bG"�t��I���Ф7���F4���Kve��"$�\����
I�|'+�S[^�1?��*�N��{�xr��]��s��H���`	,�cPJ�_�`d����l2M��օ�-Q��0z��P0H��Z�E\>5�.r�;4=P) ��}cL(� &z;����'{�B�N�g���|��X(�i��w��`8��}39�3�:��'���5E^��=:̵:ؙ�<���~�D��Pq�h�8�f��MA7h���֘;�@�:�0q�Y	�n��nP��ᛢ��`7�ʝNfH�!i�	���F�%�d�p82Ad�4�jL�����D�(`5h���5��̻�Ҥ��]��.��)���N��syZt�r@�	�[�F��0	�DH�" �0=q	���ѐ�b�8H�(R+W˿�x����n�
��Π���^�1�,b��"U�7�l`d�fL�ʌ�lȥԴ�W����ߏ���^"���&���6��^�5 i����v:]A'����-���wtӢ�XO(>�s�����~�Vߧ��M�d2_��ϭ�韬�P�3�=�N��dCN`2{���PT�jMj�l�_����{�(P��{^`��|A[�ǝ(�[���1��f,B�����e�E}-�ɉh^v��K#z��+��Qk)���E�5F�f�[��������~�P�j��cW@2�H����$����������FϷ�%�}G��

���1#LU
y�P롢.oW�̕��!�p֬�ތ
26����.�����k�N�N�Ƽ�W������K_�W�w��V���&��n1���Z�z�pG���^��؅��{�H�������-'��C|�i����s\|�:��uG]P��-nN,ݚس��Mj?���HH�H�7��feE��
V*u:�.B�S�{vg%A਌�7>�9��"�EiIބ���V,�?�MJ"qX��bo?P�z$�$"G�7�n�~lF��ˆ�JA�{��g�u��Շinݵ#���.�X��2$v�&Ip�����'�+ȱ��h�8���E��v��j5����#B�h��[��RZO����]
�f�~q������::4yP����:�&'j�f�|tA�O|+����d-i�≮��7�5����	��!�b������g�
אid�rA5 ~�J���E�F'�ːWV�)R�;"S3���g��?�Q����jDk����F|�v��\ɖ���O�f."�h�:�y��o�.>�sbq�M�$�t���\J6���j�g��	�7�G�o1d�
9)�lek��Vq6y.9�L#��=>�{n�
.?�Ɨeg��/�P00r�^/���ţ�%	���ߪZ3�M��4��%�W������J�ӿ��>���'+����N�(A��\h��*r�6@���lj��D�����}��t��"$H���r�|뜦�e�i�^'P�4����888I����lk��X$䲸��wN3��Y\��m:�m,��`RԺ%��˯]�%W��W#J�|���������&)�Zg�xaU]0���UD>o5�HD�2�eE2Q$'����+5�z�寁\$�ȝ��ΐ�"(��ӓE�����8���{zX ko�?o=g�"H'����S�W��,�7	
��=8mB����-����D���D<P*ޚ_� ���x®4@^I��B�[mɊ��l��G>�n��;7?�~*__?��`�p�[[󠼭�n�����ƴ�B���qW�r�m��N�8YiL_�W8��mÜ����T?�wE���"tFqv��:����ǹ$����9}HUփ�:G����CBݖ�f�TT6�~3>
Exc1v �x}����F�0Y2i���c5�C,�2i�-�6ؒ5T=r�r�pƵe$׫id�_Hkh�Ql���n�ôd��k�( �i
�6FғɊLIA"&bc�Z�t��$3�xL��#����Y+}mvϺ�����M�ݡ�F3]F�8�s�e�&6p��W�,�f$��g�
�\R֦9��	�єFD��$nlT�`�01�!1��x��(v���Hrt��Ej\��,�x��ZHG���ϊ��ń>�X�P��o:��:䂂-�ckffj�����J��;�S���X�m��gN����0��I��;�p��>j]�TŊ���f�q�FC+|�ǝ�%��}����{�9�@GF!9	�h��+`���:6>�w4��z���1�W�?�~�a`�5T���™�B�8�������G�-�2�w:v����18�����ܙu��x�@G�	 o����3˛�T�>5�vF�PVOꭋ��gsz߄;;ɹx�V���o��0��>��﷪�Ӊ�M��q�+�~�m�P0�v�T�w�W!�x�A���	c%0�i�R%Й�q��)%c�R;���ɤ�L;���@��QP���!2�eq�
7Z<s���2��f�Q6x�_i�U�>>��SZ"e�3�.�0<��a�#F<K�?A#����߷�F�����6�[F
�<C���2���L#���R�.������D�'h`<]И�2;�R�u֐�'6D�i�iY���tp����	hIs�8?}n@�)d��]���ذ�.`��<<f:�;��S�=�\��Qϥ��/T$����)$N��4���w�,I�a�WQD�C�
6r�(a2b{0Z@��>����5e������/�$�yS�NJ}ۄ��)��:c`����0���1����$N8�f[>鬳�:��a�ٸq��@xl���6(����3��e���AڙVL2ȼsqS�r%�l5`a��`�$+���S*	�y�:O���$&H`��4Q�Q
�V��*��U��1�3S��lY��E1�s����xdf�}��)��A��Ab�pځ��������>X����
 F��n��e۷�G�ߊ��w][���^ywE����ëp�s���	(5���tp�L���'��9�~����*��A:Cݖ�� �Y4����/'v�����
��\ѩ ^�����Ǐ�(���͛���,.�L���O�%�[fd(�G�?���?�<6J&IL
f��iw�
������_��SF�5�-�
�X�F&9���͍�ʓX
F�gs-O�&�۪s�����l�7�G�Qxl�r`���s���T�p��5��j�:-�E�.�2N\R�aG0�����Hjn���[N3����"���V�G0X�U�:�ߝ�^C�sRy]d
W���G�W��$���������$ӆ�I�`��g\�l�#�����~���^@7�V]ۿ��_�=��Sx��(}�c�<�ڐ�doz�q�n�kR�lMJ��h�H��tϗ��E��(�2Tq5,������rj�d�$�R[UX����^���+󶠵N����,�3���O�)j�$_��)ڙ�D��={���Ҕ�=��+\	���Ո��YPVK�YK�unݝ��q���|2f�����iG��_W��\���,xM��$	���毹�.qѽ�;V�J=�NBd�8�YVM*ia���Jjt��/w|<o�'#���&sڡ8�,���Hj)w����d�_��j�y��Ҿ}�@*,*���̊v�

��ªe�~q�Ľ�%Px����P������B:j�yǡ�b	�$�N������;+��0���(@�E�#���
��oS����H0�L6
�������>d�R���^�ۃ����]�])`�y�X��4��v�M�]�Jx�[8^��E�bֳrӝ�+��ٔ��DJ���}��� f#�|5�x-
/d�J0������P�����ce��\Vif�����	�`G0��D��D�ut���d�]���}�-���gvF���n�UO�����/]�W�S�HVE�҅���dn�1�}�R$�.�_%��"C�*���$ɤ(Q�-�>Q;w�s��i|oG�u[G�r��ih�d�dO�|���2�5�����X�k�_�_?�3mDV�����Dz{��2�����b✒=KO��&�Z_¯1���y^a�:%����)͌Xe@�e{�K�r����O��;v>++i���ş�&, �q��x)ae�\hJ�{��p0-x���H�~ET���b�?�>���.y�{��oXC�4L&8��G��o��<r,˪��W!hz��b5�fi﹆`���Y1
9���\�Ym�������.
Wݟ�[)WY���V	��i�����cr(:t�~NROcji����,
�,���!��6�D�bc����FM�q��&ֶEE��Q�`�1j�(��b{�>�&�����7��dX��[���s��>����43\��	��:�+��7ehV��:��\�@]�����%K\@�����N]������qsO����ߧjB�1ޕ��:�dd1��.�R2׮
�0�����B���99��4]2l��]f�`ق+*{�����0�B_
2Ď��"B.�w��<�*��^�	_���q��}�+]��wv���S"Wy�/!�V!���p�Gt�,�CT;�|��a�SǙ3}��"�"ة</"�����`S|_0���?�_�G�o.�Ξ�X���ۨm�fwN��Չf���F9
4|�Vf���y�2D�%K&3��f�a�n/
�Ȭ�D���<��������^Z1�E�+����y3����L�y���;�|��6at��`@G�l��j�@������7�'�jG	�
}xwq߾���(�0i�S2m�H�#�z�~ÆǞ��~�|�`t�
�#~>����]ëu<�ˮ�h"kdv�c$���Ï�d*�yh�Wi?nq�&�I�԰H%�0�|�J�|˳���U�A���^UL��v��aqqaX����}$0�&�&"N���פ����֒��!�n�/�?#�m���.
�<����u��;aH��<���Ǔ'��|h�N~��{��37�{H�>��۫����;E���$�ԜO����F��Eݽ7:z���aD\���C�ζRv"�o��i���y��`>�o�<わd>��o�ץ�反��7���̄�Őf@2�+����`	].XHl??qi��^�I��	�q{ڎ��:�����w�.X9π�Hg{�Ji�P���
K��@5���~q��k�Y��)�̈́�s�k��Hzd�� |w��4�S8�[�]^|�u�\p��f
?���H?����2���˿d����p/�?*z5����:zbP�D�_➫?��w���s&tf�;\��?�pBQ�[���}kñjs����w�Ѱ�Qa=`z/HDPc�X�v��%d3n���J�Oʀɳ��D��Ԗ��?+*��o�p�_��oE$�Di��߅ϭ]�@n��ɗ����墺��g���5*C9��x��a�M�Bg8���8�=p�@B�B�p�ž�8��%)�����m��^V�o�9f���Av�/f�R��\�����i=]i|.rY
�������b&n�N(X�[�3�c��̝E: �����R���+n�OՆ�
��%��%A�/��w�-��)�(H������;�I!�lՒ��Θ�6����'QN�?�tYi_vm�U�G�}U4�S��^��.֎��p?���c�;a�� �L(*g�@��\��>��w���?�\*z���e�����J�C#V��(f�-Q�^��>	�w*H�
�� =�G�M@�H�\��3�7��d���0L\���<�?�"��p��{�i���^����d'�x4����eTp��	
� ������Y��d	�!�6��թ�㻨I`�y*��Ҁ(�9!yl�L%M*�d�xؠz��VJKm$N%F�����D54\�g��J�AM�P~ǢZ��,��pV!
������g��Z�uF� �N�Ku����PNc2]*I G���M��u|uSn�:?i��x͈Gc���M.uҔ�U�_}=�ހ|SO���:lY%!�89i��fͽ������<�ʡ�ԃ?�?���K��ިJ�B��rO]K)�J�f����EIug|�,��]Q?t�W�-P�o�je���!2!�@��;2bDd��	�!�#��b��ϫ�~���>��To�-=��?��)��2�2�'����dN}��D�Z�'r�qc3	�^�k�!�QP,�ݽ�}rn�<Eͽ�P=�k�����bJ�Ҏ��-Hqe�-�I`�ո���֨�ɫ)D��ys���}�*�tLʹc��g2Ɲ2w��7ʩ����oΞ��^e]��2��O�b�Wʯ�ҡA���Nw���mH�'LE��2�͛#q3P+h�VV��SGPp[����
$�����~n��ڢr�Z���%�$%r�
4�+�+��Ay�HC��٦���0��4��ͩ;�����ud=S3.!q�w��fV�.��E����V�`�<:IfT����!ۮ�J���+}ԪZe��_/RD)��=�*����qcɡb5�P�}�R���y��*���f�2��)���0S��l`~E��!�N��!ޓ�gB\{���f��M):ql�g��@�f��v�̀ISg&р�tU�
׹|
E�v�����=�{Ğ��aa�UJy�և�h�%�`�Wm�Tՙ��;lPZ�q��ө�奩i�&�E$z2-=&*�`p� ?2ҷ���� �'g�l+�%�LN�
O�&r��Ҳ2i�
'S4G0Lӿ
�w��j�7ӳ���l�@�:z�4��:�2Dߺ���2�RR&w�J�XU�vƛ�|���OZ�R���Ɲ�xi��7�6��T\�")`2�LBl�������|Y�0,��O@�Dtbz�G�Ƙ*���{˘�L��F�W��nq����L)�ʖJ�8�jz���.8��cՙ���n�i�	�t���T0�~�'v��K�&[�]�Z�|�(S���ۚ��J3�q��Q,��n&:,C�r�'$ח�CY!�B&�>��1������P�r~e�b}�X|C�����}
]d�F�=�a����|ʅ��ۅ��e}�'N,XD����������%�
Ē�-���I�N�^����Ж��hw��;)/ަl�7� C�`c��
3���"YNfә�� yܢa$��'G�]K�?�]��ѵ��E��Mΐ0D\`_D�Y�U�&�GZT��n�>c�*�n��ԝA���k}r��p&]Yo�H�����\�Y]��qzMD5sNNC��g��f����_&T�:��U��q���1�g
x��dJHQpP���_���]?�Ѕå���/,�j��Y%"�h��!�r�����al�BE�8,�K���xZ[��.J"���[%���f�f�������c�՗�7��?ҤH^���΋�e����`��L_z�{|�L랮����'�N��D{j�!/�5[�\D���o
?g*D�[����=����^���n��=&(�;�F�T���ʉ�e!0|�M���stǖ�]����eN��~4�/<�T&(Um���N��Z
���m]g��#f��_63�jnVa���&��~�Vb��b������rҥ�����Qӊ��+L�
�4j�x����҃
K
u�+�5�z��8��h��G�2n_�j:ʔm�pWT��y8I����m]TCc�X��$�mD`T혙4���J2�HL���"�\��܀��{	@AB0���I|��P`Z��(��%�rq�c?r��O�h����q�ɀ�]�T%����t$u�|�a0�	�,w��?�p�Ǫ�	�5���������y�%3�,�1b��Ѯ,8s^������Y�(����L�P��ܑ���,4�W�3�8���nB��_MM�p�/(ǎ��拋�iUc��K��Z�
j��'L������4��w����_�ݬ)�2+n7���B�&� B?�=:޸�)�)��{����<y��Q�	4%vQ�ݜ������W�aS
�7��)���F�nOb��P�I32Ҥ*����>� �hZ��Q�ݓ�ݱ�o�(S�I�iW���Rm���1a8z�=�;���sd��3�w4=K�K�^m���^�������E4mfŗ*(\6ʴҷ��b��A���j���P�4\�"���F�#'�"x��B�1�{_j�we�
��2��9�]5��p���-ri�0�QF�|
̮��M�C�˰�	��pύ^U�����n�2Y%.aHp� ���`ʋ�{���Y�r�"�X4m|
��ʩ��gL�̦�{��]պUf�9�rB�Ч��d4
�y�;6��l�I쳡m/H�0]8c�s0�u�VF�n3��eݐ���n]���$� �S]*x#�z�h�B?��DͰEN�8
�1�=Bb�����&�ip�I��!�TV��Ź�Ǚ�x���]X��1a����y������a塑ڜ�
��{J�Cg���t����2]h�
2�4�a܄�6Pظ4�l�L���.��kUWz���dֳ��>�
�E�����u�p��f�yb4� ��gc�6s�Eݕ�
a)��S�'�1jt
)�Mfcd�k����J8q8/��Z���\�k# /\I���%���,��\��p����?Y���&��;�5��� ���vFO��;��R�[n�1|k�D�A�njt��󞂹QYW0��a9�x=�G-��1o�����SE�_r��������c@� ų���N����)�f�;�b�ی0�U!h�g�f�)z�a��@d��� 8�d[�C���l��i��l�!�������(ߢ�c�6��Km�6���P�������nO�v7��ȡ`'��c��!^�N���U�B�e��հ���^Z���r��&i�v87�
؆5�t��G,]�ۀkOjV�K�Bd��u�st�-�-�T�r�������;���+!d8��`��u�
R-qO5���N�NE�����Ԓ�hX0N(�@$n���T�͵{��nL#ԭsc�fq���ɰ0�D��!^�mSuA�Ԏ��H��c
�d&
����
�`�I	qZ�
+ �/�^�M<����g��,��yI��^�w�w�;�aQ���j=�\	Jf,Ic#�1�-Av�?d�jE/e�"d���?��,ط���#2�e��J�N[��)c�A L�"*j*J�z��C�:_��M�=�pVD�)�Tv��+�z��c*��
�1w��v�1t��к;wP7��stY�0�d�Iw>�r��L�x����q
�.��o�t��I%W��Р�����RNH|��-�E��$A�{ ՛�w����f�[���I~N�[ݶ��i������䧊���6]O�	6擺���Z[RkK��R[Z�n-r�M��9�RazG�*��y�ؚ0�d��C����Sᕪ�Ҁ	����a��h~�2Dk�b+��A�2![ƞl���Y�6���3�8ޣ��k-*Ѡg;Z�K�8��0��oz68Gu��i��1j��nJgx~&	
�_�ع�(I��f��Ȇ�[GZ��$3х��keQ�9����9I���sT����-)Is�(����Q)k�˂/>
�SP߇�У�8�������9l�3��(Nk�|�>ާםj� ��i��m�UlG�.���/��?n�h�a��{�|�F���e{�؇�>��m���㞷��M���?\i^����I`���n���d�N�������ܠ�c�я`1�7o��m�m6�ӟg��ƒ#� A6�������|�}X�_����Ƌ���{Gj�7��SE�����3}w��ݔ�{� %&�)�`�XH�п��M�%~��Z7�����0���b<�K���k[b�c�����Ӓ}�xɌw��8Kυ�J���JR�>?	hp+��ՔS���/�տS2�8b���_*F<W8V�EK����,�~2�9R@���ݧ7ΏQ^�zݸ�Oa�Aป^�$�u�N�p���c�5It�s��Ӌ�,��DWs�wy���J��+!Q-p�����[GB����֜H)��:��׍lc�c�M�#���z�9�}@���D�L��C���w�e3��j��Y�
��B�e�w��8_��*�\"��m3��s�q[	Dp�`"�k.am�>�O��T�,���6a�H�l�N�&����!3����f�F��T[N�W�O��ղ�;�ծ�p.�"-��0IE��/I�vJ�*�i��q�@��Z)R�����P%iRj}�HE�bb�tmY�!�c8�O8,n��)/�3�}brbce�4dD�8����L�j��y^��u+�pl���
�� d�+�+,d?�.��v:�#Pf�k���{ɚ���{�}�S��}~�M3�˛��f��W�%�9W2b�
�G@�8u�0@�T���NYY�@0앎��0u�g*��K��\�ݹ���?�j=m�o�ߩ�@>iڽ��Ҝ�(
ݟ�[��O]��y��=��Ϗf%ED{�;�L��߻���2%��;�3�}�D�	!�wR�u�o>B=a����J�8y��!;����O%q�
D��H�2{�y��qIba���|EHv.^�j?��"L�5as
��e�g2��,p�-L��U%K=lc����bԲ��|�������;�B�z�Ex�����V%�Ņ��ndA��"��Com��a1��B�4�E�G��zH���@�4O]x,�@���M,]xOY���tِ���&&+�-��,8�7d���Ao�$U(�ԢS��M�En��j��o��I�DtG;ݞw��7ꔳ�
p�іUG�	9a���Y�2Z�*$���L��)\P�n֮����4t$��C��Qr&Z7�����$T��Ɇ*��d�	����r��,!� �ޯR��]�%��o^(]��`/e�N}�D��)�dE�O�����	iR}$KV7��c��g,��aql�¼�aݳLC�]�s�8s++�8��K�f��7}�7W�Ŋ�N�Q*X����1Ǝ�����&�c��|�	�ٳ�PA���,^ZU���0vhQ��~/�Ӷ�g��l�-�>qA���('�/N]z�5�0��Rf��g����Ȳxy�v�٤���E~&���g߆9zyy�Vc������4�X`�@e6 ;I^�۪��ӯ��ғ!�S�gO:�͟r`�RI*C�'RS�׮ݱ d�.�,��::���sf&+��5#�Pz6r+y�04��g�[F��f%gf����KY"�d~	���TFyq5@�
Vi��]Jٮ#1˽����V��G�s��	P+�	�M��jw;����5Yb�5h�v���{F�&�U�7� '��f߽��˞D.�M����R��R�Aq��܅��B�L|�S_9�K�����w$���yc��d���Q-|x]�>N!���&*Ԭi�Gz��5k��5��H!�ܢ���nܬ����z!3��UU��*�N-�`!���Gnf�-",�8
h�d�BKqD�Q�j ̞���-`߇��d�ۼA#����A>����q�`�2���@&�s�KZ��7������-�)E&�
�ʖ+�zV����vdGHYunv�f
��WR��Oלsi�P�)Hu�Y�c;~�`�/Mt�P�W����7�^zԄ��G�Q��Ac�t:;*̱�k�Y1c���n�[l�h(�m�e�"N?'�m7	nw*��p�����o�Ho3y��tSS��T�^��Xs�y�G͊�haT�7�H�'�~1‹�B8
S��Wt_
~SG����M�1�'�M��M���#;���b���z��H���>�g[��NO�D_}��O�>�V�Q�_�σ���ht#7��G�>8��_�B�H�m_:2(ZϰU�cŷa4L#aՎ
C{`h�&�;į=y���´/�N�^%+�F���4�#���vU�TO�7�U*BM��c-]��H�o���ۑ�V��.m �9[�-fW{&M@]�(@�����g�I���2��d�FD��XXo�*�b�* ��:
��LV_��Œ�f�>�.�Cv8�>�
�s�%$�iD��M�Q����k���2�a����)���D��Ҡ��h��ބ�uu�裘fL倥*���B�a��|7�-�N���t9�Dxp���>]_��[��4��z%��{.B�倞P�K+K�r�����\�n�
�,�bH_4M�cR�F;X�7Ē�6I�A����ZgE����E���0LP�����U�0��v���$�u�UȉP�lX�l#�G��	D'QKP'�sb��6�
!Q��/O�Cݬ�#�����.6.ꇶ�9eI|��jq2��M�u�?�̯���9� ��8o�5��y�K��c�!z�jτ�IN�f��U�N1 =�^����3|dx���?��yb���3O
��ݯ�&��H{:0��ʾRkT�!C-T���0�1���.өGI񭒧D-���hi1`�\�֓���!խv+��F*�Օ�k~�����:	k3f��j��F�T����4�/C3�3���v��⅂3)�~�7�|
�1W,䊖�9�W|��fO�3��Y@¶��y^zY����!b/
Di4�g�f�*�0�od�~Pq���*���X,r��$*V�{��.��R��PY�����2�y���b��b��'5��l�L�XݝS��ٮ�F��]���HxV5�L~x����=1g*{Yo��d�@9�����]���"cR�p��B�� ���b|�[*8���ɫ,�<w�Op���7U���JkjW8���\_�.@�nCS[��~6�d��z�#���Y(�[EḐ��X�~];�#��@AΫ��#6'�:ނ>	�v$:{�tZ[�z��@�?�
ꝉ���.j����$�7���&�O��H//�T�><�
�����DF�]���[t�����O<4ⷫ&Oh�mF�7���M'x�8�,Z1���-�1�S~3$ۚ��8�
��z�H��!n��H�!���7�
l{�3�k��|=�cKk>�� ���]��u<�V�9<[ �:]{67�"���ѐjJt=m�L���C|‘=&�P~\��O�
��qXD�
��d[�̕��>ܗ��!�5����Vad!�Eى�<�dŹ�e��P#?D��1F3�Ԣ�Dz9;��m�'�u]�cw"�#N:��K�h61�f竚U�nI���B��O�8��	搣�}�}���_�|C,����ߋ}a��G��%�}�?j|�
���Lx����;)X�]3�8,�Ogw�lN�+����Ʌ����ה ����2���<���n
p��v��g��G�cϯ�0��gG��G�
��);�� �д�]C�����
ӹ��3p������/�+��o��'���F.R�"Yj�)}�m�!���Ϊ�܃Mܮ{�%U���W}��k�A����%P!|���H��}`�`@.3�d��eQ@t�z�0y�-?b���	��)�'^a������^�?�K�"�&��Z�d�s}񖄸�M�2�1<�m�>���O���.�=ٕ��xfXo�}M]|���㧨À綶x�j�߫j9a_�D�j%�I�D'��h�b*�i.�����w��M��e�o@�w���"�M��7G쪪���Ұ���c�Q��?�8����T��k*M0�ˤ����HX��mP-X�ꩋ֍ҭxZ�O_Х{���|&ދ&��?5�g���_���*0)P+����hw����g.�}s"�S��[=�u}��+��X�@)92
�\�m��;�JP&��~
[I���:O��[�UɴT���E|��̖�H:-���W�4fD�H�1_�N�wg1unf�G) ���_?A�B�r�r���C�t$cp4cO0q�K;���3Ih2���d��x	��7��jK��l�+�u0΄!��Pg�cg0`�Q�O�;�X����7c?$�r�mAyђ2j�u�u�Rc��Q��Ҵ�튎!��iz������C�=\��A�N�Q�;��LP8�SB�X�&w�"e�:^Ht�#1�}=�o�.V�_�Qw��KrI�g�K��J�2�I��i���߮���E��!��x�yuX���1����T)�=��A~y�?��z[@:YM��&�Ri�e�<�O��΋-�n;��VnD���	��}���̝�`{��!���i�N����I�����w��%ul��dj�ī��Nj�r�w�^��o��5����� '�d���m�S�~��]�X�P^���ڭ�ޗ�Rw�dSI����Od�㬮pӬ���;HA�}����*SG�x:P:*�𩧲�,e��+��Tg��p#s- KC��ӭ�Muڑ��F\9J-�H|��{}E��s�S٪0�3�7�~�]�/�����L���Pݦ�/��F����\���5r�ށI�rх���JQ�Hܪ�4�p�r�V����O�c�3��ƙ�&e7�c�V�;��ظ����ԃ!��蠍q�`]�O��l�Ԑ�r�]Y&�a��sf�lS���.+Z�ؾ�Z����-s��%���Z�i��O��C�ñV���"
���|��P$f�YS�d��X����!d�9��0A��I{���}d8p�z9���)v}枢}��D�� ���{�{�Q�ƍ���$7Ȋ�q���:2Bv?��.%&�0�g�c�ki3���t~���1<|�@�_)#cx_��+/q{�9ۖJ�h%�,il���t��*�t�׆��%V2SfBvN�5��	X�2�:���0�h
i	��襴���̈K�|m?����-�H���>6<���/�Z�����?r4����`�#��w~��;��>%x��aq��e]�fo��&���Lx�j94�1�g][l�0V�M�Q�\���w�3e�����+ܓ����sE�����ٲ��q�a��ȺB��������@�D�O�[u�ȸ�
���,��	�s�����6��zG-��d.�W��Fj���Ô�(IKh�︗d���5/b�6ATg��-�
�2�
�*����د�P'>[J�n�';�lc���lf��3W�~�iP�����:8��q���������C��F��]=>�!�#���Q�y��8s��lM'G�I����/7Ex�����Վ>��,dgP-A���Z#�"��%�7<8�4� �XT"��~���2B`���(V,k(�W��y������0T��f2��Eu���jP�׋�DRۿ�҂�\M����P��:���$B�Uu%4�I��xK�kR����tҩ�y{?9���>�h��B�k��VQ��OL⑁�p5��q\*2|���n��_����u��ƈwB�y}�;��҆�3bo�>�tb���u���\��9;�+CW�`�������r���Ns���7d`��\iv4�j�וg0Mi��B��s��A���Bu�h$S�#�9N�����= f�5�Q����`N 5�	Z��^��)�]�'�������~��R�������M�4&������UH�ͷm�;+�鴊U��2i�w�}�o���y��׵I��D���kp�d�����<}
�^���xveԾ2:\d�H�8��E~�~J>/FPֲ�"k�zx�6�/��<�F�v'
?*�ؙo��F�L�#U�6}�V���]�p
\ɀH��ÄP8�ܐ���.3'��p�v��NH�S�bl��7��#K�<J$�HIE�ۏ_?��y�|w.�&�q|1#�&]������O�5��3����m���;� ���V�;W7,��^DC�����vH]��dDs` �Ǧ�+�������6�&���������XB�E�X�:*�[��x����@x�2��ya;Q�]i,c�z	�D��JԞ?{?�$~���'�I�������S
^�ׯ�ג��$�1n�^ag��g�� ��ݔPUQ����������>Mл�'�1����9/T��
��R�k���S���wp�sq8A���2��O�M����q-2��<k���V�l����`�f+����n(#RK�-��js�����}Op�3Հ�x�ļ�S&�'������rlQ�y�ږ��V�1{���R�;
CI�D!�$����gC@�r��0Ί	A_�������c1�5�|wZ�5��ű�ܰCbe�.��aƦ\p�+{	��9�.+�k�f�%6��������֭��p�Ք�������z�M����%�%�Ó���ĐRwU�Rh�����4�@ԝ�?���nп�G���:�0�w��`�O���&�7ϋ�Ȋ�`�ن�~3/�w_'l|lv���(li�Px��H��&��t�Dj�ԯ�� ˿]�w�.z֫�k-��o�r?�9kn(�jIH�%�Y�rV0�gH�����b$��t���i����k4�/�
�s�s����X���]*����}ZK�n�n�}�rϳ��K���0�M��D޸����2[K���/��S�U0�����K�c����)$n��k/�s���p�\f?��>x��O㼤�^�.���;�����=eRϯ����ʌ<���<�aN�@��po~�qy�<2����rm�s7��9�u8y���IJ�����Ņv�H���ѡ�{��Jv��VV�{���gH�ǹ����]�"���r����v���n�㿾?��H\��Ὥ"Fz��O���G�lC=�/��v���w��O��j��u�?�
���5�H�7pJ]���}q�0�w���Vh;7����)�s��Ǯ\J8��f�c2˚�Ĺ!���f�$��)�<[�=k�2���3���@����[�+��לgo�{����ݭ��_~;dmr�s���	�%�r��%�3�a�gX?3��^,�3�9��)��kߔ��f�Y�G� >�?;��BD�%V��I����J_0�[�Jp�:�^u]���4��ヒ���dڳ��G�
�\���UdH���У�XV?��U\8h�>��½�W�[�Z��]�"����)c9n�y5�J�����xՐ�ugO���ݍ��.��x�קU,�hs���ӕ�{����=���zU�}��o4U>���q�����)>����͵ � ���0�P��PS�$�!��Ma�G�i{O٘��D^��K�}f��uVG��tv�ud~���4:s��8�Nj�C��}����@衁��ED!��������~��(��E����闆-k�!?z-��u���&�C�+-�0õ�\�#�~k��F��MmZIT�\vzzM��y1��Z�7R�j��g�[>P)/,��
��41.�+�j�[�^U$q���`Sa�t�u|Y5n���[��ߡ�?~6
�a���ʞ�����ϯ����w��Ň~�?k�@?�pk��@*L�V�Rќ��"��a����,�ǟX�5�MH�O-�.^X��Z��H�T�I<�~�/���:�Y-�GrX;p��9RMpT����Ѓ�5X:^����Ү�jy�.�O��!$`��`Rx�c����8��:>���V�K��׍ʘy�.\��3�]O�f�߶/)!�;̹5|.�]��e�6=�lGm�R-�)�Af&��ZV�kb��)5y��a����%H������m��-|�lİrSՎBh?9f���ro�zؑ�8�%�-DO�BeoϤ��¡����#�pϻ"���b2��1�i�^e�;�M|�OZ���xV,�7�!nnv�
�˖���kӱ���-?O�Z_-?�G߮k�(ږ�`��bN'�ܦ�����3{6�~���k�cQ����tLN�c�]��)���5� �
�@�U`{��!�����m6���i�F�*�[���r9�����$�ޅ=l��j:�x�o�&y6]�sPK�eN�ט���We9�Y˂�D��`y!�PUT��.	��}���4��]��`u���׺|���f:�eGh��T$�0>X�tr�|+�#Q_�Y�~fo�8�/�
lt�X�ޜ�
1�y��M�%IByM�\�X�1��{퇠���=�<.p���OO��(1r��|��Mv�v6��$1��I*�*U�2��xV‡���yr��l�ޱ_�����;v6<� �p����l����
#r�^� �05����縺�nK:;
�i\��SZX��_��.��J�O�d�B�P�p[Z)��Hr7
L&�����
m�Lp�If=[���6�a��#��{�=i�t���:��݊נ��R��;���T���d�[F�{�M�U�-�빷��q#�3e���w���C?E,5�[g�u�(`ns�_m�x�,%�k\��{�.Z�P���`�j�L-��&��D�"��q�L�o�o�X6AW�ㅚ��4�����׺���U@GN��,56)-�a
Ӑ�S-�$i}){� ��%|}�(�>��%���4*΍��/-���4�,s�f.Xz�e�$^�B��NRy�u
iX�Dܐ�>HVʼ�7�ٕ����ٙ���8"�_���=ʼ���/��z�$f��A�u����]_U�����J�|�7�E[�٠x">
��s_ rHK��Ti��nM�����=��`.M]�~�(=�m�ULÁc��a�k!�+a����L[�U�Nh��,	�^�B�z�Q2���=�UwyԨ�q��g�b�S��³~�?�1q8�\�4�i��ϡS�a!?0_=>]�Ø�����K�PI���*���d*����/#�n�/vf=������FMS)�'�^�>k�,�8��ߓ't�T�"S�핔�Wl�����B�ּ���vq�yS�Ty��n��!.1B76*|��LMr�2���5ey��~$w�!�md�Y3���s�L��=[���ˌ�q����h���j�ک:Wkip0�f{�[�4fi5ΰc�%���J��pij�Ç��£��f{�i�����c͹Cmu�ƭ*^��o�㓎�،�N�ϝ12�ϺM��N��ӥ�����\�����j_�沄��2~�Y�j&�r�S�jy���9���]�=����ȭ%��
Sc�L�^&�S���w�o�����?I�Y�)��YE}�m�#luH!D{��J��+|��dN��,Ce�w̚^y�0�sN6��
#�g^���۷��9��k����+��6e��󸓉7���/����mu�)���C��q�V�1�C�d���21/��(� �I��,�
�a������|�t��(5M@�4@e�(VYĬ��JH�Ҕ2�#�f���#4i�!P���)
�h��S�V�������2�:A:�Q���\��֐@��
ܨ�fp��"�IR�/v1���x�<�����k&<���ZI%/��c�O+�S�>��u��mM�ֿ_Aj�\�Z�)?b}�Ѣ��)�Wv��Ɨ��Ly�s�涻�3wn]�e�m���o~����7���5�-��8�]�'�EC��઱y�[|
��/��ţl��v���lL��'`k�u�ʗx�x���o��Q�P�x}��7�;Cc�����a��?�W(��
�s*B�M����P�:���?0���5?S��U�t��#q�PU(d*��������1@�!��6
z�*
�;�3��">��c�h`x��p�g�7�'�O�5�}@3���d{��u�_����ʢ�x�?���#����ņUӉ�z)�P~I�%c[J�GP�F��pZ�1�r�׽dl@��>�(
��{�D%��n�E�ǔFY�[qk����d͈Cݱ�2�����������-��m�ԎD�l���شp�۝(0;�%O�¨1�Aם���@Fg��8X�Vi(r��kx�E����|
M�	��!3��`��z���>R*
8e����J�ʊ���� ����d�m��{��F�Ӳ��-S���>�,����=B"V���'���GlB��3k-L�����?gZg���������_:#sD�E��G��,����!���#w�tƐ8��%:�8B\�F�%h~f�D�xH������|��fŰ��j��Ώ�?xT ,A@{7G|�κf��%��ʘ���M�!��<|13��֕�Aa�ʐ$��4O�<Sd�,�4ԡt��Om����>�xe�S�g�$�B34����剴�+�qZ�P���le̯�-�2��X��J;M�5b��8����j���݊�rY�[Z�3a6aU���nsqO�c��W���mߏ<7���0�;�Z]@Z���)�D^�iؖ�ס�2�]<������x=e�1�*�Yq"D19Y�n�����ҥos�^]v�MhN��)�i2�{��')zߕ��������j�� �%�;�l掃�>���=��%�N�_A-i�A�,�,ہE�³��b�4o��@�_�^�'+��}5���8kO�}3���͙gm-���5�?;n4�	�YG7����XUݖ��5"ࠀ'q\8b!�Fj��d2�0ߊ_1�YV1��jub£���>b�P>�=P��
!��?$e�\+�ʩ��� KsV�5����V��M�a,۪�׈�S�盤�1���r��YHR��T�l�ϋ>�	
����n)��x���}z����<K��=��ͳ����Q��+.h�������R��c�~(����׿6
�R����7N��$�����P��9�y)�!���ڕVxP�oc����h*�Q��sUF��*J�U��|���C��3�	�Zڧ���?����w��$@�t���b����<�މ{,��gH�ʍ�7kg�a�4�,d���i=�;c:��%mV>�)�����z�P��e�]�@�0�&�D�r�q�R�87�¨@l���^��b�����<��S���(?�����to2��I�k��&c:�"�𻾛��ƌ��|z����F����N޳B**y �em�E������)wE��Q�\g�rT����� -ˇ����SI£$L��Fb�n�,)P:y�A�"N$��fk!҃���x	l��+�G���
��\��m��N�ꮛs䏝�i�%r�JW��g��		�q�%=/s��a��2s�i'����U�+el(=u�d6Ջ+�Vw�T�A�_�N���랩—�ZPN�X���F���[A�q�e���j	,9o��Fq����+dvI�ɂ����q��S#cv�sQ{GZ��몸�`-���P��E�4b��!D#F�Ө�i��%Jw�P�7D��CX�/�]�V��\�[��A��U�~��
�p��X:9�E�����4��A7⿚��e77Гx����Z>z�7�l��М,;���:�VG�@H���OU�;|Y�?Ĩ_[�zÆ�)՛M6��B|�M��B�]������\�d�EG	��4	���"�1& &
$.P��0/`�@B��t���[�̩����$|����/�
�|z��X�Bp	<���Y��s��Ɓ���� @� -7R�p��QV,�������GMX���M0�%��9�qzĄk�ͳW�Ŕ��M:b�t�˝�2d��Z��Y��Qc������Ֆt]/�w�;�=�M����T�����(��?G�3޼�2<~a�9�ktI�ƺh1X�6��J,��鐥w(,�3c�a��p)���%	Ŝ��@N��]�����VΗ:ۧ��G�j����e�`g�I$e�
H�,�|��٥c�S��j�H!Ϯ��Ut��?����(���j
��`��c�1�cm�F0}��Z�V�3@1Ko5����RHU;k���̭;H��ђ������(q?�`�2IR�����2�ǴkvXK}����2�瞦�* �K��Jpr菰�h�lb�07GW%2H�$�S�q�]�;�ܧ�s\U�*)��e:="�E����#}���4��<�E�����+d�̲�DK�J��&:��Z�`�ͱ���]�N�ټnv�SZ�X3=cꋡ��]��Sv��rŪ��T����^�f��5�=�F��D�ްt��բ�][��,f��9~m+d����}ڎ�[��4�0Z;�~���_�l:��7bz~�; �M������S
x����&G���I��Q��>L&�`�q�a/�><����	��S*�|kDQ�v�&�[�v��A̎�q,
���|r�������"X�ƣ�?E��6L�`���8���Yv"⿑���\��
N�˟B^+���Ղ��(fT�~Ki��*�M3��f^��)nժ�FÍ�a� �.8��FƊ����8E;	��Q#��q~3�b��B.1n8?����B��G��~�*�Z�����6���k�Baw`�����֭�O6��;6D
'�/l�zƌ���+
97��?���ëdMՇ�Z�Tux�?d����$x�&%7V��oH`be���-;�x��D�*g��rꄛ^r1�"�
�y(wY�8)�;aT�#Mf�9��/��);�$�
�	�D,P:�ة)�^A����#����7���>�*|-�����^�
2�=Cº����f+��?HE�x|�?���?����\�M|�w�c�auğ4��Άwn����AW�X�Ssx�9Z�������9+!
v ���H�Cz;�[�:y�!�3��_�#�����G�J��I�R7w��*�[��1C
43�u�̏�v��@��n<�k��:�gx��>�hzg�pRH!��hB KZ��\�t�%J���<�vWK��L���9��	�r�K�fɁ�b�U�`�Zdž��A���ak��oUo(�����xog�ˤ	�VV�W��z0j�
]��X֭QP��P�h�o����
����4D��?�9GTP��ꜵ�s8�Q�x�ws�#ӌ����.�pg�59�j���vb��H���+S�hC�:�D�&�j�-�G�<���yc(
��</=5�y���m��S���L��&��Y�E;	d����
-Kf���	��^K��I�����1����<l��J��R�Bz��7
��ͯ��'�&�8C��0�1G�V�
'�ˡ��
n��=�a�=��6M�V�rG�i��d�m!a;yi�`sAdbySq�גƄ�>e�H�¡!A�U.l{��SY�^�cpw��oU�¡�lV�hB�p'����~�����ռj�<�|�5	�G��AF}KJ�MV�މ�8Տ�q@�HҪ�%@d���+�0=l��F�W���
�AəB��x��$~}x����'�=��/&p��h7"1:!�W�<fO�cQ�\oDK�\ިkbu0�����SF�6��DI��X�n�񿨯X@N9�ⰴe�M��:l�C{����%���=\�Ђ��N�;Z�Q��|9��עWh��U��Sx*F�U�k@�i�$���@��z�~�)����q=�n��g�O4=�|�8>���Ϛ��n~r��Hu�������	ט��R��(�m�^�����/t<���h���jt�dam����G�0��+���U d��-Z��l�y����f��!��)���%��e��#{zrj�XN���4�	�h�E=9{�~t|7����:ٶe��to.�e�m%�o�w��?�g<Q�Q^����&�y�P�/�:1C��K�>/-;���1�m8r�q��ͼ%�푸�����;d
�g��YJDV��<'o�K!)�JK�IM	�-D�,�T�n��m�>	���k22���]-��|�̿_qI�dpYT�[QP���
�4�#b�-Q�o֧:~sK\�4�+�ݴY�')#m�x�!�!�;];]<%I9wpi��aVT���K��}�5�
g�"YY�#����;�������WO�`#������!�	����Hy$`�C#d�r�?�� �:�����
쟻�CB��񼕮+���xۓ���J#����8����O=��s6�6Y߹U�m��b���I��)�L�w�r�
�n�T�'���|��M�ul�*��Z��]ځd==��
�0�y��QYD+��·��}���u�����A�4����.����x�A���v� x ���'Ŀ��i��t"���1-�-�˘D�%�:�,��W�QC#�:�-AM�����L"�7D��	��8{�i�����f�n�ʓE &�|�I���X�|���*g����mf�sD�[����$�	��q�L�샞�B��;{�`м�
1���]4C� ���ǖZ��Sw�R��"_���>�9�5(זfd�g������ؼ̦"�Ӄ�ƾ?%���5����PO\�#�}C�{! do��ApX�!	i��0�����A�P\�h�ή�y��+�ӌ�L�(r��؉��\>OH�Nt��SQy�\r�_�PO`��Iq ��Q���	�os::7�E�E�B�yס�I�~)��ĝz�ժ���y�x�1��`��xlU��i��
>�ojk�%�\�Н󬧓��b��,ʾۧ+�[�5�s
�w���{P3b��UϮEU�>z�˝��kd���N�؁P��D�^���:�"���i2k��kh�[
�2f��3���n	G+��^����;�6���M���L<m׊�x��C�ҡu{����vu���j� �ܽ�"�:���9S�kt�AQB	�{��b��SI�G���o����k9�>�<�.��	��d�"���Eu�:����]Uz�]T��j���-�W�RE0=����,ӟ�9!}����Z
��kO��)�v�zQըz�&�o��M��Hpa�}�b�RR�ZB�m��jvݮ�zM��l�I�ow��;w��<07g����Snn���yy�ɜ�k��x��Ni��3������L�`,,�;���<�gBde[�2����I�&E���N�2r��(�Z�<q��~�|j���k�Yl��[�n�&�*�v�ŀR�<��k�|��v^��WB������JV[9nt"�4;����-����]!W�Fߞ�����H&,�A`����@?"�z��?���4�s�y�	uć;�(���TF[��7;8�k6�:��:��7��g�`�~X)re�B����������‚@0�y��V��k�da��!���B�BN򗡫�Ѱ<���t���&�����м��W�rq�!���M�����m����A�8l��M-`(?�ǁ�K)�	�s��U!���n�!����ݒr��=��.���)
�3���#��q�@����4GaY"?.$���g���N'0N�X�c*/{҄c�/n(�ۛ*�	��.���"���0w]q�K6�:����e+�?τ!
S��/]}:uu�ΰ"��2~R������y�^Օ��$Jrp �:��^8ޓ��F�H���a�����8��:�ǘ��%ϸui�œ
\Lzx�U�HҠotx��J!s�s�Bv�v
�Zqp`�Ӹ����ꕌּ��X|�G���7��U˙��B�&���v�N@������H;�����"jcy�K�|�^�lx���
8��Nf�.u���
�L��l����PI���i�7[1i~�i��[�5Oܶ��&:���vB/zW	����'�@J�S?3�!&Z��*����L���JU����6;v�v#4��l�����Sy+�lD�+&��wh����0�A4:G���4���FV�c���	�ȡ���k�1�椡q"1Wt����)g���π�%��B��>d���$�N���7oz�nj`̲�;�8��3�o+�*�r�K����_H<����N_
�Д���](s��9���z`4��n�%�d'��%5�*�hh�]Q�En��"C,K	i<"��mk-s]^��X�f����ŋ!�f��ޚX��Ϝ��<�>�;P�f��۴k�a����G߬���J�e�{��8�a�7�/�6�$xƢ���S�BG���=�LO�W�ߍRx'�{;��s�W.��<���	ߵ��IR�5��{�PĹkH=��6��O�S�$r��\�|���N���`�k���$`#5�s�@���r�4�,a?�P��$ӯ���8͢�YQ�*��s��_��q��x�$�'$:)�wʼnK�q�<��ȯÍ���>�������Ғ�T������{�]�"��jr�[*�=U
�hP���|2E���$u�3��?w!��$K$A��
����[^O�q��*Ĵ���G���+��|������HU~"�r�	�^��fE�j,�t��G�	D�{S
�ˑ�OF�>r���B�SV�m��mC93��S\�OCW��Ғ�P��XY��Ji�UU�˨�!�mܮ}23�s6(֗'v͞Y�#׉������4�`1��IP�	����%40•چ��[����S��[�@�,�~Tq�F����Vk#����D�-��/\�7�0�=���(	$n<~���"�ζ�o5���ۢ��#��L�W�i�by����ڧ/�#�����%ifw*�Kj+
�(nK�'�4�X,/�ĚgT���sk�U;��b�����zBѢPtm5~<�:��j
���Z|9�܋a�{qn�נ�gM��滚���ߣ��o����#��2�׸���1y���W��}q@T��F����iv��︿���Xuk[6��3�h�����l,V"e���1�Ÿ��nH&Dh��߾�/δ��x�_�E��HA�D`3o��`�Ϟ����[+��w�.Z�*j�C��?I�s��ffͱ<�~#Έ݊̊���;�{/�����z���B$���]�1���.�I���~��,db�EL�`�j1�gՇ���2�8��!̢�����^�w�a<io}��ϛW3��Z�2p���=�,�xrF	�b��$�ZJp���C�w�ݫ�2(9�
����
-o�vm\�Y��ژ_0ts�Znu���B
`��F�i��f�˨D�<@RMN���+�{6޹<�X�R]P�nJk�w�����uG��n��8�r+(�S��\'MQd�5/u�Xq���X�����5�4�ܾE��T����7Mc���h�;|�ҰG&�V!B`z<;���q�ٳ�KS�F�X�5K&f��|$���Y-`�{�W���;_.g
1O~�����W'��
5�����%�/�ߟ����k�V��e���L�E���~KvegD�+gh�:K�O��A��%H�8Q*�ˠ0�Y24�&�|
3g��;1CK[6���}n��]�8F1�=�k��Q���һkjtx��dKkH�H���&���
y)U)PR��,
�P�%�M���@aP�83b��l��	c>�w�641<=H�̈́%c��������#�9r�{�����H#�݌���sn�W�`����lL��<�1���^��+n�n���Б�Bn�V�#����`u��a��P}˾�4��w/Sƹ!'Cx~��9O���n�r��`Rue��wxH3)��	�"�y��1�X�o�7���n<��;T�p�|oK�:�Z�o������P�a�����]�J��.�F}�"�wS=!kf�1c*j�<㑳!�Ó
bg�g���Dr��Y�e}�T��Y��e
���{a���q
�"�c�����"<���?�+v�m8�?���3h~��RFp�p���ˬ	ֲ�WA%f.{s֗?)ut�0��~��͓ȩ��3g���Ҹ����V�J��GPk���~
�x�Q{��6�n3���0�XMSjw�i��klj�p���Oյ
�݂��wո0����,~gp�������uU;g��m��Y�;�kQᑿ��@�m8��(��e;$o�>������{�}bF6]W�E�7eݯ�Џ�	���:��#Ӟ҈�u9�7Ѳ���7��+/.鰊�=�@�f-J����8���`�|��x��u{��a�^�c���=�ױ{�&l��vQ���Ê���m/V&w��g��o5�S�=]$C}V8�w����F�,>�.y�E�G|ĩ펡ǭo��>d��D�L��T�ڠ����#�*�#~�v�d�P�C�1��r��u�$$sF	w�O̪rv�������UX�U�s��p	���R�E�@�aӇ�;8eV2G|H[�*���a�u����}P��G��v�98�H�.���n�U)���Kٽ�
�@ļ��#_����Fj}�J�X)	9��I$��x�r�~�R[CAT�E��g�=�n�/�?7h?j��|��=ȉ�Μ�;Ӄr��c�#L�W�����CU?��t�'�k�ft���n{�z
�4�����`�1J��b�
GpYX�Ŝ��/�`<5\�,)�)%�1�ˆ���4��q�s{<2@�
�P]��i��,�3��ػ(�P�i�	�zѴ����l�l�D3-V��}N�a�l%'EY������c��E&�Px�a�n��P�-P}���\c�jR14�~�ݥ]�
�<	�K�&��x���u&.;�vq8�&UX�ѿ�i��M^�6����3��(p����D�P�±E�	0��}����
y��^%�H~�@H��ke�B^}oR��r��egΔ����cS�#�-}Y���]2��AL�I(�U��5Q�WW�>�(u��/����m>	ݧ$��1J:?����oe!�8�x�����)<�f�
�K��������
����?�A����8g�+��$��J+� ��8�ݣO&�ρX���$$���i귭���u �o��ʠ[ �i&����ޥd�x�,��	f�d�UZ+�̅��X���m��Ĭ��;K����ɩ����m��r$NH]��/�F��8�(j�N��[�~�'C;���oC����)<oԒ4%�����:�������3%r�^�G�}!��Y~�B�!�g̑>��xkZ�&=�iO]8�5�-�oI���py��`������Tg��|��nE��J��e�Y�X�W�M�d�=ab̐�;���奇J݇�O<��T�ųJ0�P�]b!Ͷ7cVڥ�t���|e��#w��t�=H޷����UF��ؖ�:u���9��w�ab�J��������F.�a�o�1]M]o���`ȕRҡ�ؼ2DM�s����k�`;�MQ�TZW@+�u�����g��0n[��L��jJ���ب�tlޗ�b�n?P�u��
��e�߫�!C([��T�ݺ����k���n� ��M��:x\���In�Q��Τ�N_%UV��3�G�%>�)�
M��

�pr��ܜBu$'�(�d4�~�Ti�~Q�>c�dp�wI��4�<X�G.��(�+�����eQ�\I��ԭ`5P^�m).4[d%Ŝ;�t�@�d�
��%�-V�Ut
g�´e[L�A�S?,K[_�h���Q"Бfsq�J��1�i�u�P&����lYa��7(��jN�)�\J���k�e7��`�M#^<P
m=Wٖ�-aIfG��*ӗY*�)��{�AG�/x&���$$���q��-�6X�@r��~�M�����L��?/q/��&
|��7�����[��1�_O\;8{�#��W�Y�>JT��E�v)�4Y}(� �q3	S_B���� �{ܳ�z;D]�,�.�`䃎ۆc��
7>O\��P�ܘ��CzEj�"�+v����N�}C��w�M��7S˅�P�L�[X۵R�֟~j��
2j���y�H{١g͙K�U�k��#̦{&��D�"r���maTd�z�F#�i?wn�NjM-J�bX!��7a&km�6���O�Lhd͝�����&"�
z
�/1�|`����A��A�epa��l:����on���RW�.z��ޞ0�f� G���&��H�9��!��ڜ�)�P
�m���w��k0���h����I�S��K�|{#���W`������<J� ћ�t���_���4}�/B7u���Z�P|�*��?��;v��q�u �V�l4�\V:�<�*���h�W)eF�}�FeY&���I&�ͽ�iX��t��Z�C#���ҘNS̀�GRY��^�~��4�����r1�5����b=�

��&T�6�6P�a"��w��Ʉ#���ދ��@�	i��c���3�����2y�R�F4z�T̓ԍS�LAt����Ho��'ƾ*Z�f]�p;�w����^Ϳg��U�ޢUϟBy�|����c�WW�Ok��m%�$H��V��F������oָ79a��u������xk�$�[��gㄈ)ajE?s�Ԧ@H%�1��l)�X�@l6P@��pn��HA��A-wM�;�&T�Α��	��|ԪuM凸_ڀ����D�rQR�.�nEjV�#��j����t��)��
��Pwe���q��A
�;~%��M��v���Z0pFAE��0ҁ0�q��fT�\yH�i������;?�X�cE�!	r�\���V�s�e�/2��CJ�e�|���m߼zŞ��xl���m��Ȱ۟�$R#�ʽe��9kH��P�W�A~ͬ���RV�ڬ?��dI�� �s�+���w��d��eC��fmٟB^kZ�M���x��cQ
�<�:)�%��"Gbm�Z5������*�}p�t�6py�������at̚\�,�(0B����[˱cp�1����m����S��Tr]��g�y�f�6�-b’���Ӡ�����=r�4.����z�V��@�
^�"�4���2tЖZ�X�w���J1�4ӊ���	�S<���˼B��Y�˸�x���w��I�p<7�l�����G�f��2��K�%�� �8�݋���᫃|�ê6_�|Nv���Z��IU'·��d
u�g@1�$Dh���)���,zZ��D���ɧ�[����Ҥ|
Seca#�~���`<�{�sӚ�6#,
[@{P_o��v4�T������������P�)�9���,��Qom=Os�Ke=`�w̢�7�ڔ4@j����|�K�]�u���/���9�:���p������ V`F�o�c����i5�)���$Ys��8g�4e�
�Z
�q��
�ivO�^�WR�D�适:��؏�,�0�v�07r~��Rb��x�� ����O�P��$�	$���!@]8����(S�yE+���Mo�HXiS�R���X7����|�V�c�<�v��4�o���Y1s(��'��{
7A]��*L����d�q٩V5j��Rp*�!�p+o}56b`R2L[����e�Zo�S�R4�߃��j���.�ϸ��β"G0t���0�3/Zxr��I�Ҕ���=@̩8�;���q���Lo�������p
�T���h3t'����n��F��#�#&=����W�]�����=���X�N�d7�����ŷ<�_����|?23gaq
�[Y|����j�	|鹢
�مT<N���~��jCNjܐ�1	~��Ӵ�…JSOG�VB�><��M�:v27��OI���mN��<�G�2��"g�ͷ�{��4ТϿpԝH̽F�k�Ν5���Lh���0Nx�_ sL��2���35��z֝;
>��h�$���e���j�x�!ξ2V�&>�I}�"�ܡ�_1ї7�v�6�]s\���%  �cr&��1�鱥e�MYIF`a�K[��f��[�V�̛��o6A@���ʊ�c��J*�A-��x��a�_�۸z�[�7C��9Uע&�F]+�P^��+��	
�$���T7�Uې�f߆�����_��&��Տ��[ux�߾^wpRw��5
^�39}���,���?�����?3Ь��\ƺ��3
���eE��<V�M/8�
�70x��{�G��)���OF��g��K��=�z��l����y8��1����������Lg�I�7h˫U�EC	ct���ޘJ+u#��E;������]�˝=[V��¼ZFcy��p&��Lֺ��ݔUW5̤d��l'��󈎃�ƽ~}W;���@�x�i��E��p�|H��������H+iz��q��6aY
����Gfry���2�SUb������{f~x�>����Μ�0*�C,�h��={�݈�j�o:L�IZC���VA8lyQ�
����.�w��f܃�#�Z"�@�����&���[P�i�������9=�9��S�����%-�;�G�n�Ck�h��aɓ�-��,C*a��cD���*�L��Rs�JE��o�`�LP�!6�g�(ڇED�M�Z�¢J�M��bX�hT2��0w�J-ƱŢ��v�
��v�>4?�
���
�&�!�����0�NA��ϰ�o�k>�v�20�A4ߩ޼zyX<�_k1<���;���/5=1.��BF�P&������m�������˨gwM�T�e��g�_!-8�3jd����(�����(�9�!J_�[x9I>u�3=,">�5��AI�
\��[a.�b:���w��	��Sv#���m��W�/�;gJ�<��b�(�D(�)N����V�j��6�f7�R�A�7 'J��
?\�bm!�f�������ه�:�:��	|��l�ڸ��܈��*�dХ�W//�&����5Pǚ1(E	�%�GF2����vm~��_ۮ�]җ;>�WxN�캔k��ސ�f����v+*C��q�>*V�hw�S�~���UqE��Z䀘�bjG涶xej|Ř����W�j�/�d���u��A�@��|��l����B+e'y����П-�횋\FP\�W�
^`��n�H��~$'�I���پ@�����ia����2�X�jF5�n�(��z�H�nl���V�V�e�h��8ƙkQF�$�;�� a����l�>����gG�������Â\#�d��k��V���A�ڂԁJ�|��a�D�<|��S��'L&��To�ѯcBL��	��1!�t�%a��j�<�86�n�W�D����k��)#�
��������ׇ��n�*N?�z��m�I޺���|.��Wȋe�7�f�)	�����z{/_3���'8oLw��p���<^��d�����|�o��3ϫ��f��I�aN~r��:h�]�ۮ���|}��m㌮��B��}q�F<��ɷ��c���m���V��#Z�Be�o�I�����_)m��=��	�f`�R
JA���>���v��̤GW_<���rt�s7�:��u��'W�6%.�7!u����k�a�S3c�	z�c�0	��H��J*l���dm�S
�T��*����XȬlUO��n�5/�ҁR���y�J�x>�W��x3^�Si
ʥ�0���{?���
��\rsg�*�D�e�3�Sb��B��H��o���_9�G�~xE�K��U��^�`�m)7��J�.Lb������0�CO�6u�z��),�|�ׯN���8��7��&�9Wފ�@��q��O,KCh�s�2��g�4��vS�Gh@����~U�~�������Ѭ���_@�i���bf��m�����o*J[�7(��@��Y��_#��9��
T�O�j�kV��۷b6�QŁ�"~�a��v����F�����ߩ?��3����t��r@��.�:W�Fb6�e�t��?��37�w<�L�aM����
tv�8�xbͭ�m�qzE|;��p���6�2�m�w�^�%7�����$a���>��4�H��1.��Ү �iAk��ӭ7q�|W�s<� cu5|;ޕ�g���k4b�^-|�6@/bI9��0}�����:
������^ʈ�XOCH��Ұ��[�J�̈́z�:���[2�+w�o�
>;,�<�E�a�Cw,���l�W��X��JY�RU+�ޒ@�-��ݱ
���b�c��R�Ԩh/�;��l5ݺ�t�m�b��mS�k�([��q�Ջh ]����UX��kK�|2�	�u�`��2�v�E��u@�ӄ�*�&�@�T���8�M;��2�v�a
��*]1�ƫ��qɈB�T�B���k�Te�צ�H@s�ƯY��j�Y6kX�^��#�N�9��A����3�|��>�߶�UzS��z�Z�m=�|��I��eS�������Q����A=��΢Kk?({�}(ot4��	�
��H���G�Q���E~y��„D�R�tU���{;$����W��]�ɰH�&_�D�}a�u2��cm��A��O@�н���9\�����Lh��
�������I&P{���c��LY`!���ڲ"�8舄Z9�p���b�7�sc_/5+3��b�;S�>Y��O>B~���Ҡ���Ͻ�C$n�a߂AzZ�'wk���m�H���;'<�Ɖ����3?/l�TU\�RѰ�q7�<�8T����ed��]�<d�Css%��Ou�>~�Z{�i�k���co��EV����LX�`E��:D�S�[]���	����d���M�b��Dz�/vu�#i&,��v��62����E��P!|݁� Dw��V��D'�.��c���3e�C[K���}Y����T9��"�1�&�v�EQ�ȴ�ָ��Q
�	'�*�O�5���t�9`k�"
��!�;�؃Q�|T��x�$/+��_!���P���b8>��|����7&a�Q�dZ��v���[�X?��
g�%�v�
�9B؅�eʉ�S_���XfLr:l��X%<��?*Y7s	��-|����j@�y�u�R�i�r�:�V�p����ޤk��*��v[)��6su�8��b�uD��ǒ�,�
D�$�����ݘ
M)hUGn��]���2�����~Z�j�M۪�
0t �y���#����]�7y=L�O�	����?_�#X�Y\�'��R�y�ioo_�J���S�.9�0��߿����6썼�>n������j́��M;�+�)��d��)K����b�	�D�Hƀ��1�%��EG�UFs{D�ҸQG��y��>s�����������dF�� �e�͖5I���_���
��V�@�
X��M�gj�J5�ʭ:T��^"4�~��/DL�}y����_�d�/7�F�U�чdtvP#Q���N8=?���Y�܊3&/q+#�M��P}Z�����b��:[6q��(�p�Nl{�a��;��ı	[˃~��W�o���Q<7Q�\�Cm�ȅ	bD:�B�R^B�ZZ�wHwh���5���R����I͸�����oJ(�lb�)p��S�_JbKQސ9)aa��H���Ɩ*�$>i�|��$AP`�#}���R��T葌<"��K�´ue��
�nZ��m��6Q�]��z�?�7Ip���~��)~6eI��4_��n�uH�gH��s�H&��)�=��
���ڧ4�H�Lt�+���K
H�G&�MV_��~�cb�K�h������K��b�o�6�yO�Q��A��P���W8���~���v���]�V}q��Va߃�S�8�ěV��^����4�K�!�`�c�JW�Vi����D�.3։x�LM��y^��#�P^46���̩�N�&��xZ��n<�#�#�A�����V���U��P��ۼ_��3U$�"zV�@}��Z2�e���"4ġXnj�N��]�T�4�3I�j
V��j6��r�ĮU�I���jk~#��Hi���R���Fj�*���{8q��(�2/�`�1�y5?\��H�}�N�P�[�N9M�e~:�-�K8���*+�s)�Zm��R��Ƙ]��9�m��@Q�18��(��N����Z�$Q�{�x��^'���\��l5�v�s�<�/3�.��T�C�e
m$�k�o`��$��F��c���gY�(cc�6����A�zZJ�ӷ$�lN�9}W!��sߟ;�ͳDKd���s�,I��2�4/Goh�T2,Q��宋P8A����j�&���*pQ�Ɣ&���r��ׄ�uz��zh�N�(�L�˳2(7��8��&{�y}W��zP�1����S�(_H�L5^k��1(��3$��'(�o���ٟt�3z$�ɲ_ϖr4(��W�X��^�V����m�P�.�__��2,�.mg�6�Ӗ�<֒�{곣�('b�?ۀ]l[W({����
�s@_�
�?'����q:-<�3K8�{��+p���hi����y_�����\j3�Bs{���L����e����9Zۍ\MV�D=����C˨{�2�/.�����G��E���Ϊ���ht�2
��-d��X�����>��,��&��ɐ��ɰ�i�
�zbCû��,̂�I�DP3�|�
��3z���5�����U��C��*j��Z+�Qт]XO5K��؉��O�TZ��10��n!�d|6Yz~Ո+r�H�q)K�^|	�Qm�����jL
,�q+��=���(�B�@�Q�r8�02YJ=Ma,iуa��ŀ��e�Y�Jְ�8�5�d&��6���{��VL� „2.���z~��(N�,/ʪnڮ�i^�m?��~��!P�D�1X�@$�)�+��_��`��.�/���L�P���Noر��3�-V���t�=^�!A1� )�a9^%YQ5�0-�q=?�8I��(��i�~�yY��8��y�?B0�b8AR4�r� J��j�aZ��z~Fq�fyQVu�v�0N�n�q^��r� +���e;��� #(�$E3,�/�"�D*�+�*�F���&�E���u?���(�@��,O ��*��`��.�/��K�2�B�Rk�:��h2[�6���r{�>?B0�b8AR4�r� J��j�aZ��z~Fq�fyQVu�v�0N�n�q^��~�`�p��h��xA�dE�tôl�� ��$��jn>~���0N�n�q^��~p I��&���'�ʸ�J��8I3�yQVu�v�0N�n�q^��~ ���$
����"�L���&�����H,���
�J������l�T�gƴ�?_�fv~���J�ö�������P�]U�o�@���~!��v�^5� �u{��_S�bX��s:��'gw��X�����J/�[�\�|��jc��!;5h�M�r�i�	��HMʅ�
�<��tA�D�`�u�=X�k�LG��|O�]xF��i,G����iXa'A�Gb,�ۨ^��M7�]6kn_�S��ù�$����-����r�㑵E�P���z�$�V(�)��:�]��ݏ��n:�'{dE�\��˺�W-��)��Iv@�(�F��nk�6�+L��U�=�>Ҹ �|�PZ��dRX
��6&Z�X;����٭��7HX�B���M��gԂ&2�M���W~ �H�m���Yd^�J�X4��g8Z�kc���S"����^^�Ec�&�[Z_.P�I�	�6��u�؁gepI�<� [�ߤk�"�@�gc��S���m�h֯^. z|=���V7�lj�`3,��?t)#��Tp�y��M�G��G ��:pHW�v]��.�u�����N�oD]b���[˃��F%%mz��;��_(=��u$y�$V��C~�P�OT��J��M�h��:A����5h{��ݰ,9�W��;���NT�|mc��wI���.*|b�ո��T9r�Ea ��Џ�����tI���1`�U�dK�bj�4�ĭ��G1>�)I�M��T�D�ikS�焎!j�~�B�Q�9Bߋ�H¦ф$��Aq���ɭL�i7M�l��P��x7����ߜ���W�^�Vl?���P�Ҳ���#n
�XKI�k/O5�z�͢��Np�4Xj�r���q�.f�±nVu+��S�@�?�?�K����T�c��Sd�	+�]�Goӫ?�#�(X�v%U~�Ǐ��Б����.c���ZJ���k��L�thT/.&Lt���]Gj���(2�=HS;$��
ʱ&�05e��w^f�i��v!���*H�@Q�빵�����o՛p�K�)�n��@qW�"Q�T|��GE}[O�;af�[�mC4l),B��D?�+�T��V���ae�]Ψ��6���j:���Fu�oz~Z]	�~$��l��y�y��7F�O�}`��/�TNM�U�'�H\:/[�FQ�q����UI�7���Df�6X�u�����A��Nq]=ғ�Û%�$gcŤn�=��Ytt\�!�7}q�Գ¾��+7���O�+2�A8 s�ѝ�I�'��9!]�AOy�_r[���|�ȧi?5�B�STF)^b�!j���-4�r��M�rD��ذ
}��pR�a3"���9���[~4�^c9PZ7"����L�e�6�:5m4�	h;��|�/`�I22T��Y�
~��/��K,�(����´_�܇I�����4^M�=�=���	�u�B�b��x�dگ��#���P�m
Xbk��
u�%��sS���o�6����޴��@����(��XQM�ż��!�J\�b�g�EJ,N���B�-��/eM���U�k!����#��ܡxcE�O7<�5}�H�'���m�W��)
6�]�����ڥW0���d:�ͅw5���O��q�d��>�a��v��U�Aш�X�l�ߌ#[���6����XȽ�2sŦ�f^��#����o����։���N(fhO�YܪE��/̇�_9G�1}��[�]��l3m�B��Q�W�,N�HB*}�d��緰3���5@�"��@�22�W,����~�㖢�i�x��߻���_y��V&�x!T���J��y��6y�CK=�cvu/�$䡡>�w���}8HB*�͖���y�E�:c�NJ)u_bEK�vP[�$�Zk�K�hc�)�pÖ�!H��5l
[�ְ%,��@��s��_�U�{w��T��
�,"""""�B�ړIF!��RJ)K��	�j��R�v-:��$�Zk��1�c�|3�����ɿ�����+]�r؊��ln��T:�����PK!v��alFlF(fonts/glyphicons-halflings-regular.woff2nu&1i�wOF2Fl�\F	M?FFTM `�r
��$��e6$�t�0 �"�Q?webfe�5옏��@��?��
�� �t������������,3+2q
�F�YO�&>��b�m�5�Z��H$��Y���{�H	jd�Չ��%��٧y"����+�@��]��e��{��v��Nc�)�n���?~?萤h���_�&i���ѝ���?�>��^K �v�-cۍ1���2K��y��,'n��(�3Ewi�B��&����T�lh�0M���҆d�Y�r�ﲬ�nti�]�yur�������VXsj����gMn�әH�W���� r2�>iT`V7��R(�����+�o6�'c��B����4��ι����㿚�T	]a[Qd<3wq8,���rTI�8��0>E�?�*E�痦�#�7'����S	oc�ʷ�_�7&#*�+)����+4a�A6�c��y�٣�f(bF����$;{ YA�1vP-tG�����"����C�f- W����ԙ�uKְK�#����*K�<� (�����Z�`٫�[�%�YT��{%�Ɋ$���s{o����ջ�vt"p�4`��ߩ�Ϥ}o`���'ne�>
�G5sz�_N�
�PKӦvmU�ɾ{z���������"3`l
��W#Ԑ�^@+�,c��ko��AOpnu���z�zJ)��Υ���1�}��O=����x�R��`�J�`�q���Us/�+�k�v�1xl���jl�El�\nD���ƶ�V����jg�{Zd�z7�5��!xm�5o�[��u�&��1ڂHBkA��qr��R��
����(\gh��7��Ҋy�=�H�Z�UPh��$8Rg���z�gͭ�N:��1u�$܅����>R�]����"��f7���K�^'���3�+E/��^�YU5]�NB.�ʋ��8��+�͏8��,|�{M|�A��ua|�a�����˅՝%
lKG�P�,Nu���k�c�8mX@��d�̘?����Y�&�{�����?�P�(�G�]������O������r-��\LF�9�,&��y�8r����3�ܟ�?p��>�~���s�������D��z�1��?\U5q=��t�zԒ�&Z�nj�%�mM�"}���tk�D�wh�-=�m��B��76��&:һ�qt"�1:���Е��u;�"K_�/Jd�c0�l��0��'^B��8VC��zg����[ ;�d�
�Y�bȃu���u;�@�*}y�|.��'C>\g=�9�V�Ő��[o�|g�^���>��d�
9��������
*E|A���*M�[�[*mO��Q�z?P�n�?R)Y��oT&[�U*��5�S�MB�����[�
���oYDh��{��,}1<f�&6h��'��ʥU#V������E�D"T��ީ��AD9��eB�:��%O�� ����Fu�n 7?%RG4"��f�g�F꺁 a=��-��Q��y+B�,��2��օ5���𙄌xn�Ϊf*!����l�|GXQ� ރUp��
�Eu �@����-�Do.6YZ��-&a>f?���N�N��	]�O/^;\��J�
�B�EsJr���Ě��'�g/���B%��o C��n�7��:|�y�Kt�&�$��s�|��wP���\i]�$Z@+���Հ90x]�r��%���+�RU�Em�+ܰ��;w�u��9/I��7�7զ�Q�lu\�y�W�N)�8�ܰvY�*u�m��������m(	f�E��G8��j#I��R���z#q�߷�	�)Y��$��Л�c_%�m-{!0-`;�公�hyV��]Hv!	�ta�\K���[�1{"�j 6@�3T0%���Θ"�ԙ�ZI�G��S����.��Σp��ӬS�1e�ٓ�؛��Y��v�8d�\�B�l�S��R)�ӆ����{I�ӆ��%���>�0Ўڦ�\�'�cg�2%4�Q�D�
0͒3B�"�M�Վ&�ۊhI��ڧ�Rg�ME������
I��(���5U�D]}��b�8$���8�>��X �h�"l�΀�j�.%�ۀHH�-I��ݸ#1�C4��Y�7����Yݖ�Vo>P�]�6�����O4�7f
�~AJdYF�€�.��o��y)	�8l��22�e����1H�[t��@!ȅ2\�@�5�ٓ�%Z���kޒa����@�.`n�3�OF��R(󅥶���ZkLkF �HWjY
I��5��*�6��e�Sbk.��5F,�.�N0�ԙ���|��V��||~N�(	 4����],�Jp|~�xe��A����5��/�ڻS�����v���y?���'_v|r��X���H�Q���ēB@=�X���B9�4����T��B�B�c����H�P��+��_���YH�#�$���`��F���B;��+���BPR�4̼ t�:t�"ZE�J^!X�Ǔ�q4_dTW(5�܀�����I��UŇ�A�z�@U6�n.WGX����H�RK��&'swM�j�ʎ���<����3�)���`#F@F Ԣ���v�o�b$x�+��u�&�}�|�X&[٪�8F�-�E&/>�/�G�.a�z^��/��})����'�x��$O=<��z��o��A9M؝&�~�3r�3g���'�8ң\�-�MDz����k��5����A
���G9��|1-�! �87�[��,mR�u|�57�
=X���,�aJ����^t�N�4��\fЄ]AzH^7��F������&k"LU>}�>�rB�X(ۂ��T�%��J����dhK���P��K�TFaA�3HH�C[r;a���d����54����lL�kjG{��8�h~�
fR@��9w�B����0�zS���'��a7�@�@N����ƹl�bj3hN�X��F/��e�s��'��DsQ��<�k^���׼���ZASO�id�SJ�xN4D���K�!���	!٫v��hA`�E��X����-
�P
��:���ѤC�:��W�zS�s�dO:�_����`�:t�aηБ����س����
�IY�4�# ��*��+<�qn�o��u
U�cww��x$d���ƿ�}ρ��94���9p�*T:�%GQ�^a������'��e��b���l-��*X�L�%*ź�.�ڊ�\�@pR$T�*K����hp�������m����-/�oS�3���E����to��}�жV�o�eJ`<�$��t����	�]g*�Z���6q���l��~�E��
�S��/���i��T�t�k�Ǯ�W�þ�=?j�G����UUAJ���`��b�ˑ��Gˆ�Q�Aϫ���Ö����c���W���WSm��g���F��&�^��ؘԡ�6;C1:=ۈP���`�ڜ�VV���E��5"�hO�X�~���N3_5Ӂ]�z-���CW��tԥ��ӈ���e�]�\����V����c�#m[�kuޗ�_ʱ"��s�H��<}x��m0b�xH�qb�a3tf�MT���*]I�
�}�(���,M����=�	�@�JA���d�����?§6PV��[
dV�v��4j��ߛ�lH\�����{���M��Ș\����Y�܁��`9M�`Db�<�;a#z�<�x"�,�d�gCi�`�c��:���I��>jw��}J��z��^:V.�:�ڋ{�ͼ(ȲB���ɦ���x�<Db#"S��{�P�Hu�N�/�{r6;wU����s�PО�<��X��Y�s���Mxu��\�b��s�$��x��(��/^|^*0j~m�;#�%J��M4��p�QM׬�::b\C2gf��]�z�P8T� U��Qb��t��C�T�>
p�8+6g_2�lΡ6�H� ��džH�:�
d�<�C��6��ؤ�/��6�E:�K��"�`kJ�<��Ƣ�=�v�7���N5��`��Jt��\j�6ͅ%˞7�*�'��U��4�:�X+
�\b��E
����af��x��}��1+p��B��0�6���3r�A$N�~��#�d�}�פ�P7h�H7b�F��§���8�
�P>�BtGN����m��x�@�j	���|{�s9�=�wR�/��oDJs5z>�;�'x��E�q^r�^=G?��9A���A�_���K%�Dɮ:uikjk�Ie���G�՝#*��)�jm��|�t��}`J�Z؈��H=4�{g߁��)�qX�MA,�H��7�1��V"��o,�Y#h���ݨS�_�;��a_ԗZ^cn4�����H�E��?���}�
ȝ�����٤=}B�WvުUe��h���G��F�����;�@2S����@�f ���n��2�#�����f�Y:]�Jy�H]��-��G׌wgv'��|��0e�
�_7��Ґ�n+f�ٸ��Y<��(�
�?����y�%wm�+j�&&!�c�^�u'�b�&�h�m6¤���*2?�A�I��Ʋ5FW�ؙ[�Ɯ�B�Uz�I�E��!�m:���xh�e��Ǯn�z|]%��m�r�U�F�گ����1��};!n F�&�g���P�����;&�����$$��F�).t�B�Q�3���(�C=����X���es�;�i����ي@��~�N��ΡE�	�SR���h�\���Be�o��������bT��nΒju���	g@�'qQ딎nx.u6bVU&��]�;��!C_���5�*�z�ɺ�m�RQu��q�����P��Z0��}m���n��^n�Or�T����:�U�'�h��0nZ�p^R�|DF�_b\�@��m���DE�8��{o�GM�᠜q���}��Sd �C,�i�ܚE���/��Ë[d8]��,MCI����_u�,]V��c�"��p�g@�`"y)�,;B�^e��l���2'�.(���Ę�y>�-|�h����w����;�j����Ս��iԽ���_o|!@�)ɢ���=�̌SPz����*!z})�|ƧT}�j��E�tC�Z�n���ý�*՞��4ۆ׽[����9�Ю�����ݓ��z`Wme�o��|j8j��5��9���@.��E�V�/�ZW@|��f_�\"${���v�����/��;a�:Se�i3T�G�*���]�ơ/�h�2C32$���1}��D��NX��t�?Fϝ�~n,Pj9.�>ף���{
9��EN-v|3h��C�иE��� XT���;P�$�=�J�-��gݕ��igz~q�(A�<:h1�9�3�N�̽�Q����}CL��W�ߧ�׎�~��
�b��"����|�4u}����c�y���6��2�[ ���\d�,�Ҏճb�k���D��%0T�x��{=;�Է��(�i���LS���1������3�N�h/�6?�'E^�~���P�{sZ��Z�K�ĞB{�D�t�&���z��)�Uoa�5Q�3��ȗ�r~����
���F]�$�<��tm(�}���MB@��[�Gx��F�h8�#}��,�#��u�Laz(�Qh�4%�xm`U�չ.E��v1a��4_'/[�d�{Fx�I�59���D�<��&�8V�E�Fg���芘#�I�䟍2S���_�]QqA�n��_�Q�>bޘ4g����-�0&E#c��i8�	vR/�4�r����P7��KsOW�N3ՏvE\bq��Q�5�Z�ڽVy5]����h/	i)����-/���k�N�ю���#e�)"P��	{�KSQ�x�����>a�&��<a,릌HEH���
]�%,eD��U~W�l��ڛ�;c�ᘓ�`��? ��p�M
�l��.�P�W7��٣�./�W�#;W�d*�:z;E2�����j��9y��A�S�S8�u����;fY8�m Kѯ��ԄԶ�͡>,��
_�g���-m�c<�n]Ч-�5�2c�����z
�7d P�z������V�����OPvf�R�R���ఓ9�Z
-���d������C�����`,�at�=�k?v��4#P
�B���إ�/[�s.<a0e�{��&��v��a~e��8��)f��ny��f�BPL�u�Iy�H=S�2����"[��(�¼O@�z*I��@�0��#����,����I$Q��y

c�ўF
�a�ߞv"��|R�ܘ	'W�F�x?�+aN�M���K�`�D�/�nf:X�I8:H	�IRm]�K�6i �@U�H*N��oF��;����ᇏ"W�q��d\���Ѝ*C=#�2�6x�7�<T��
7y��rU>-bH)ɺz� '}�׶��w�!r�X�Z��	�.:�Vn�;�-�>�:�
6�r���U�cs�4k�VW�{����#��5ߑ0�B����`ܝ�0u��".Q����dB��0����C��r�]���#�Q9lq��N^�ֳ����h~�NU\� �16�
~����S�n�T�l��\�THҲڛ-��~�G~)$�oQ7-�C�����}q%/a���vO��|[q4�����~Bc-$N�7<V�HE�i-���R�F�GNM�{�"3���49�[�j<����Wӭ��h���l�n�� ���QҨډGcq��@w�/e q����g���<����: ���a钷��u����_P�`�b{E��I(��OWG��fEy���ABa_��;O^�DQ��'�s�������`D�#њi�:Ѵ�+�Y{�{�p�&��\�Ra�����g�Ϟ0��g��T�L�i<'�7��?���X1���C��
a����n0o�r1��/U������o�/?�♯a��_�p�Hֱ
G�촠��8�ݣ?3F�0����`%�ϑ��<�
G�]Խ�8bl͏%-,�)}%�J�:�Y��j�T�;Ыȶ5Œ>�6���w�{�V餃.&��(�o��*�n<��n9��J�
"a��Д��+��a�/�����;7zD�Zη{�t�M	Mp��	iؚk�NPw�ؑͺ�H`T
�$23��f����0�z��;�����"�]��*�Y���,�Q�W����lS���O�rW$5]K�VٻB��ܚ�I��k�|�=�&�[�������58E�R�0ދGk�sS��n��nnu��ExK��r�}�~m��`�G4u{���=]6f���ר
Bo�&<
�ñc;2��P$�ǃ{mW_c��ª'B6Њ?$�^z[�C�Y�ݭ��j�N�~��ۮ0����t������6/)-�1:p$Dꥅȗ
�
,'���y���v�� �n��F�T�с�['a�Mb�J]�%�&î�lc6&��IpF��
��o�i�����5���'r����r�(q������z6������(5���E��ɢ՟l\�L�k�7��1�Y4^)bٗ¦8��y�Ə���
N��=��9zT�^[T$�dk��
Q�iK%�6����q�����fO|���c�8$�ji^vr�.QQR"�Y�rĊ��
��k����r���K���<QI�"�@���R9
��/��\&7Y}m�gҊ7��z6�-M�u=���,��N3O\�6��aDA��ޮ�Ld^r��/.�>����
N�e��Ri�4���!3R����"�4����n�b�m�-y[X�����."��!���QK��E\N��4gՠם������aN�p�
>k)9��0�B�Z��Bs
��y�r��er�)v���D��t�rv�\�v�[��>�r�Jm���
a��̼�~u���Տ�>�rMZ���c�B<��`)\y�t|ۍ�r'<���>����[�Î���h7��Z��8caI�!�
�p⢟�̮,�G���k�5@����`��iw
��nО8p�v� ���*����'O
������A[�.��r�h�T
pR?+;��\*H�sLq���U��f��:ql-ć��*6!�h�+ˬ{h���- jg�k�MM��P#��:�}���{/���V��ŶC]옙�&[�W$ګ^�#��4fWa\
��5��躺M[6��)T�3���~������
�:. Z����`s�i(�R�Q����|/�`�
il�^�L#����f�-��;-C;_��*�{@EMCooÂ_����7�T��rqz�F�%ׯ|��U<Z��o�[TA=���'DPJ]�;,U9���Q���p��k�4~�����_�C�^�qE�Ů��b
�SGs���Y��2N�A��u�%��SD�� �hj	
�y;9$ߴIA��h�EO�����}
�g�����/+ �Ճ��5�JY� @�G��������f2����Y���/��߼�e�߷��|v�/�"��p��~刋�T��8OK�r*���*
���4hi�@Q��3g"�j��:�$��;:���f�����,d���z��Ț��Ԍ꺳��u%�ˣ}O�&���i2U�,@�k�j%u?��4�N�Km���d?5�ݓ;�0�Y��e}sZ���>EƫUs^ݜv{����fQ<Đ��VP����Tfͦ�?���m�p�P*�&���Q�G��{c�J��EPe2)�xP�0A����MɪZH�j�"׻"�A��C+zq�mVzᖞ�U%�C�:@1���W���[y)�J@�o�b%�j�A>)N�ǀ�i�$�A��t`>�?f0g�H36p�6��D|�M���4N���
�� 4J�Jڃ�
�j���Ƈ��\
�p�3����8������Я���6p��V?:�$�sD��N��ƹ�2�n�,��H�O\�[��ո��K�-)��W~�i�m�?���T�:���޺U�eY���-#dJe)����Z��5�?�$���\d�W<���,Ɇ��;�ط��5���S�ո���T�T���̄f(�PY�v=Q
~DX*���8�辩s-	�˨�΀55�
X�R�l QC������l|�5�{�ӦT\t꼕+��e�n�۸���Ps��l�3���UO�[����Z��S3�*��,����:ÛZ����L�����S���'̵��*��*@���ı~xgno2�����-
�� �W����V;�pZ�9�?~��$�6�<��Qr�bQ8&�se��Eb��Q,��^|B���碘�Vd�V-�(�]� .��ˎ8/qhV�nR��Q�D�*�U(*1h�1�`؝QL{��Uj`��"�o3ܻ�V�l��:	�����
jaFa��E��̞Z��g1��z���2֠�:�Au�ZIf6��2�tw+���f��D�������CL-}g��Z�0>҄�xJ����>\��Q��A�_C�i�h��bl]
�6����4*�A˯ɰ�qX��7��Y�X.�-���ո�aɇ�V�h��iKg���qN�RĆN(r'�]��%٘�����@3�̀�j�Z��J�.;��nm����,S���0x������ͻ�OF33�ҧ���<$'���G�E+��}�����'1�f3���y�5�/&�Z�\RB�7dm��]�8���\��3߂�Ȫ�@��o��T�3eu^�W@�������e7l�!B�,�s���1���$����Z��&���?��dC�� �(YЦSm>�J"&pt�܈�P㇄BF��������4�G�5�	t^Ć$���j-a㠍g^�ʐC����As�T=k�TS,|�r���9I��BϘЬ��'��vGA��@��t��hQ�Nj�&��T=�xt;2]�P�|T-	LÞ�����e1�ݽW�ZŚ*MrH5?��=���o��"��9�K5�=�'k�-*���A�E|	� � qҔ�_?\�7%��|M6�f�+��+�S*}�W_�]3����fmܮ��˳��m w!����.�R#�鬪;�����q�q�71���$•ݙկ_��iK�&�J�άM������em�V�5P�0>�� Q��5��W��H�Ih��&�4ҍIl�E7}�s���m[cȾ���|�d^	��%Uv�1�D��>�.�T��7*�=t�Z�_�㟾1Х:=0pZ��6ҋ�N�t(�u�Ɲ�; �B�]��$�k�ڌ��.�{�F�*/UZ��N�砦|oq��K�G;^�侞9N��e��xK����\�wh���~���ZpH�b���䉸���[k�8����k��.bX.Q�Xp�xYa^��"��#���B�wnb����u���m5�F��~>��8���b����N:�p4�[gv^
B��F�Uz�)?��60��F��8���/2��C8���>�N8G��%l�%��5�FH�{4�6h���4�%�#
7�����x�o��N t�\�'�Ȩ
� ��E����0#��j�NãV�ӹd�?WlcW������
ž�ֵ�u�-��}2�2���EN��}#�䵵2H^a3��r��qs�����-�S3&���f�퇣���fwl.�=W�8�,���cH�j�cT�W��נs�9�0��Z�D�M���C2�ZM����dj��t�"8�:g�{.Ʊ��1Fb6�1�8"yԦ>�����W�9�� �V�����`�j������T򔔑��<I��MԱW'%�f&�\y�Z�dkʹ�Ry�jw��}��Ѐ��[8�ԍ����bB� �'d'm�o�'<��|E���5�:��ڋo����>��r,n��i���

<T��S���>�d�� ���qN���.g+ �S��
Q������	
��KaB����?_��Q�E ���r���j��h>�E��ӛ;�C�׭7���^q�
�`U�e�#-���;oJ�ċ���ԝ>)��;Jg��׭9R;Og��iI7�}��8K���ہq�j���eؓ�+ٗ'n�Ϸk3�����eFρ����0����V#���p�MAzb^P��V�u��~�1u��ғ�wn�	^�.II���_���vdW�����[Q,���+L�b������ćq��
9�V}�	�ΏV�w4qU�3&j�ıHYb� ����tt�T���7ρ��arBwP9?)�u��T/�a���A19��k�M
\��P��s�<�Ta����@�<?M�(��.�,'%?,�%�a~e������U�0��/zQ�(Ѹ����a���p:.6�j�dF@\V�4��{�Ri���8�ɪnu��F�M_��=���Z8�H��l�sy5k%��|(�i9"�6�}ԋ~WK�۟�hY�k����\��l�Rm���&�
�����0��b�]g����"��ހD^���ތ�j��J*)��6���-Yb�h����
Z����=ޑ�A,��(��K#�	
��Of�J:�;�I���!6Yi&�d���%m�86#���Q�����W_��A�v}?+�G��	cc*�m��g`�>��q��+��=�[5�͔����?�9�W��+^�o�^E��8s�)�f��2a���Q�x��i��&	NE>"^Na�a�;f���9]NE&	t^��CLz'�e�8ZR�s&6��7_�ãcyJ��1
�@TZ�?SD2�
�|�P���Oӌ�\d�R���7zH���9i��Q#����zr��c.�4��G�R�4��qx��<2~X�h��n��ੳ��2�auB�NC�+��k�X�0�
aj5n>މ���e3�vާ���<�>��_�����uH:��XR��%~9�!4��o�Ѽ��3���8?�� �1d#�����A&���{A!i6����/Xa����㇤=W�;|���)� �g�~�
?*�悽� }��ڧ�Kt�>5|�E�������.���A��Q�6��
���(6

6є�7��<9��_�C�f1��Ў�i8����,
V�4$��ut�����i�,.`v6r	��P
��gFB�Ɏ�
t����
C3�;�,�o���x|	
/K�Mp�1S_��X.f�V���#�U>Ȓ��#B��]�
A��IVo��Іϵ����GTV1nr+��OX�S�%��³��f�OZ[�_�9���P�߰� {Gln�%�#��h�dw�H��=� �y�e/�W����>�,���IP,*MV��~ºK&�e�ċ��M콣=�)�qF��S���"�G��T�F��*�LX,h�[�����w�w��e�WQE�x��?��{^چE�x�h��i���ׂ��J���H��|�^�͓���e*^�Я.�u�xE����b#�;���ԝ<]z]\����w�N�ho�chq�E��=���4Q1�7���W��̓lÕ6�᧿�HE_̣��qy���YR��۫<x=�cS�Xy!=0�8Ǘ�x����?�{}�����F_���Ǡ�z���kt�ɱ�7��ڂ|t��+a�m�<xe$��e���ɍ��<[�T����X[�������s�V�̋�ާU��*��h�S�K=Fe�sw uY�o��ٯnQ��=NE:[�(t]�
k�|�@�ٿuZ\9{h���v��ܕӆ.ڡ�sa��$u+�q�w:#��?�e�T�3=��л�!�p�PL`�:����R;�gʮ�Fha�ΐ;���5Ie�+������bt06AW40T�hJcc<&�mJcc�
���OCn�W?��N�i��o](XЄ��{�Lz���;����g��|Ǐ�>�9~l4s�Vy���`��Uߛ,������#_�u��+De�����M��~h�q�벇��#Y����z�$;�5ͯ9$�� z�>�
�*j�O������$��$O/���xR��t�f-}*�o�ɦ���|3�M;xި�U���l/.�~Xǎ�Y�4�x3&���x�";�$�KI��5�dڭ����~w[��M9O��%4��Q�}�S^��t���@���w[�Y;-�����s;�b��wH-*�im��I�-�1e/�~��TNN�.�p���)H$��W��~������Ʀ�O
(��9�,�
]gM6r�+�#�%��/s�w�A�$��q�4�O>
d9}��+��$�s�?0��a,>�y��ڈs<�=�,�c_*\�D��}�2M���T8/�4�g�'ڦ���8'�}"�C�*�\9�#Y�>z$���7c[s�|"$}�	ym����zQx 5�%�o��$j�k��p)�x��-:��И|?��o�f��gFr���2�S��Z��q}q���	�o�,wy�O�g��CF1�l��'�L5T3��3���y��M�9�2"s���5uD��6��-J�U�bs��
�O)��w�R
-2�/5f�<�BQ�4k��ꐭ�G�	)%߼�<d��ĪĞ�3�2`�a��]��S{�K%�\]�3&��p����ڸ���Cո����놶�,��
�^�T���7�h�5�u�lD��xڷ���L'D��r�6�vշfc\�����gA������@?�������	��GF�VA�l,���:����i#~NU��DV~7��k�K`!�P��MX��R��$#�Tiih���om՘�<.8Um�<��3���ES�4ܫ���V9��'��bv�{���?�VV��3��;�U'֬���1R�V�{B����i��4CRh��r6~�Ӗ�J��P�͎�M�7G��-,NLo��<���ѣz��2H&|$����<{
�ڜ�K�_���mmS�)>r�ϛf@=��BF���CB������&'�F}@�&���y�ub����C?'�����S�49+�Ó�C����Iî���+���f/R�U�
��C�Fu:C*�}�T:��}{��ݽⲷ�u������e[!��>�?���ڸ�"�M
8gz��0\Hk��Z�:�h��~�@�+�#�N���fj��y���io�!�B�	���R'�5>�`��[!��T�`mC��I�ѝ�}�n
�>W��!M}U�av��4��3)!�kcȂ��m�?��	��d�w��v�!ה;Xϡۨ}�8�vt���"Ӽ#k�vX�J��[�l��[ZݙMÀ���XC3l�[
�Ta�Vj����ʻ���Ѭ"œ��t:�(����<�cZ�ve��Q���T���qH�i{��銀Q埓'��Ö��i��P�■�����mK�A�I�����BF�
�=�����Tᅽ��(��&TS�?/�؁A:ַ��ОV�(��@w�Fa^�]����o]*��99�R�i��_�����2vM���`P���f��{QY���H#V7v�7�Ұ�q>@��~uɘ׆Ax��/��x��B��3�Ġ��t��y�b0��nG`��E�D�ٍ�A��:�P�wI�7��nW�2ED<hD�&Z���	Π7�3�&���)LD�4;�7��Ѵ?$���k@�"��"L&~���1ʺf�14�ʱ|���7Os��}��L1;��?�{1$���w)��1}��0�~7��#E5��`�q&o
�ow����_��鴊��8Q1��G����Ɋ��08��h��W�e��+��\��ԉ�R�����U?w��e���O���Sx�AU�̞3�|	=WA����R�
P�tO%Q"1Yה!so%%�^�z�_hn,�{?���"L�5�_D6���+����Sb�<���gfJ��0�b�_��x�-��;�H�����W�:G�M�i�Ee�Iu��vJ]~m����QHLKk��hb�A>}.(h��"���U]�9I�h_�V�@��GZ0C
�pb
�:�L3��tN*�N�2��!�3��
Ca��yn.���ɋW�`̳�}�QB�C���i ��8*��{57���O#aT��B����U�o�i�0�
�_���^
ChrU}~r�L 1�z�>..�=%G���G���o ����E�u�P�Psؘ޸��8����P��u&;��*��|i&��Pb�ț���h�;�[��|y*c�V�h�Ҽ�(��~�_A�qU2����GIQ�3`�^�v�=�@��K'��Ї��Z#4sJ=��:sY��	sڥb�yj��S_E܃"����@�~���>�86��#�y����[��c�S�Ŭ�����#�SJ�GZ��yvv��S�я扝p�waT����/,
9'Jkv%%.�~o�[�� 衧���R�Bj��S�Ȁ*$'�腁�pçS�u�+�9\��_f+��8�u\,����t���p�э�kخJ0h�(]N�Q�v�W����7��8��6:��ݣ����Wc��Y_i>����"��R���(�e]�6���RA%U�6&�F]��7@̳k3X
h�?��K����Q�2�Bk�[<o�-[
s~��0��]T���2���h���J�q�K�v���(32J���//W��,����z��d$2�cA�kP���	��K�+��Ec�����[Q�����i��EdV�xR8��B�5���a=:��KQ�����\��@�V�^;Kr�	�M{����{#��C�w}{^,��$0Rc�\o��Q�Ѽ�ץP��$��Y�vp�>?.���.K��KAb��6���5��k�e�+]�F<H�e"�;{wN�yx/���&f檄/XZ[��7���c%�ŀ5�d�Y_�y"Ыߞ�2\37�
�k\�띲|FO ���68����������nK�zR"�������?/7�32�:а�>��e�WH�U�0O�ק�5����
����e3H��co�>l]0�2��c����H�9�{Z
{sO��!�A,�7�?ŷ3w俎A
�Fj��8�B�&8U$G�������$�Y5���F�L�5n����1��>q�2��.�6�e��
�
����+��@/���k�b{�(��7�i=��{l͍�݂���濦��8��1g�(���%��h/�Ef�M�ҍ�t�5��̼vg�o� �~ਜ਼WKi父U��أݖ�w�RS�E�F��T��%�
`=���|*=1��*�����S�X�����^���w)l���fQ�H�(YS��SˌK���1����W]�f����7ך�^&�p�@T'.�%3�����
��������5�zaTf6��A5�L��X̡�|�L�-��η��T�g{A)�F��."h���j��A;.��~���o�%���G#�}&]�׾c�`C�hH9xnN��Y �l�c��\+v\E���Ƨ1�D9K�X�)2b.��N���W����Qש$�/��|6tð��32ԛ��7����2���иyu�0e��)�N�uh'd�����~xY�����>��#b�"k3�������:�9���v��$ПC�:�)H��>	զ�z��;e�d\jmf��O�a%�9���cK�x��ۥ�!k�%H��Dn��{Y�"�{n_�}
�)9�=
_/��Z�(�>l����Y���V��gQ#�߭:Q���bw���$�zw��ٮ�#���U�?|���G���h�z�{�o�$w��Ϝ���)|Vh��?��
ZV�7�%��G�o/�׆���E�"�KӲ����l�p76�-z
!�l�4n>��$\��zV?sz�qej�Q���]m���^�=^�
��!���l��HB4sLi9}�2�^�K�5�OB�)��O
��v^~���݀x��rm\K�&G^�5�C��L�}&F����B]K��n3��|�sGjy�k�O���b�sܽ�aW?R6�����J���fh��2	��lBS�\=�j��V��*��Y��^�����˺^E)��*�\���
��r�r(a�@��6nԌ�?�}�dL�����g�Ivq�Nc��a��Ʈk��mL��c�A!��hd���V����wc=��憖����s_�:��җ��sL��g>���1�*4-%�&�0Ub�)Eܬ��*b���51����	�+�+;��<����`!q�f��M�*�,[/GK+{����,>C�L���R%%c�����~��'EG��A��G��=�h�䟔��8:ID�N)�W̻�AF)ucw'qh�Xè�L@a��~�6�Pc2L�"�A�2b��U	��&�����9�A#�QLO�:�E�9k�����f�KF�b93t�L$c�ˬp�Lz���5�d�p���۰>$`�.��~X�=���?��N�Ͱ/���L�P���No0�����p���� �b8AR4�r� J��j�}���
Ӳ��0��4ˋ�����q��uۏ��AFP'H�fX�DIVTM7L�v\��(N�,/ʪnڮ�i^�m?��~���	����Q�U�
Ӳ��0��4ˋ�����q��uۏ���b$��tV&g�ϖ��r>�<�y��?������f�{�紷������%����~�Z��a�zW������2��sv�������eW�����@DDDD$""""bffff�}�X	�O�0�cDDDDD���Z�6W�08B��I���.H��W
�߈��9��u�*��R*J^}��:M��$I�$I�F������yџ����_W��<G<�PK!|���¨¨&fonts/glyphicons-halflings-regular.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
<font-face units-per-em="1200" ascent="960" descent="-240" />
<missing-glyph horiz-adv-x="500" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="400" />
<glyph unicode=" " />
<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xa0;" />
<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
<glyph unicode="&#x2000;" horiz-adv-x="650" />
<glyph unicode="&#x2001;" horiz-adv-x="1300" />
<glyph unicode="&#x2002;" horiz-adv-x="650" />
<glyph unicode="&#x2003;" horiz-adv-x="1300" />
<glyph unicode="&#x2004;" horiz-adv-x="433" />
<glyph unicode="&#x2005;" horiz-adv-x="325" />
<glyph unicode="&#x2006;" horiz-adv-x="216" />
<glyph unicode="&#x2007;" horiz-adv-x="216" />
<glyph unicode="&#x2008;" horiz-adv-x="162" />
<glyph unicode="&#x2009;" horiz-adv-x="260" />
<glyph unicode="&#x200a;" horiz-adv-x="72" />
<glyph unicode="&#x202f;" horiz-adv-x="260" />
<glyph unicode="&#x205f;" horiz-adv-x="325" />
<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
</font>
</defs></svg> PK!XDZ��N�N&fonts/glyphicons-halflings-regular.eotnu&1i��NAM�LP',(GLYPHICONS HalflingsRegularxVersion 1.009;PS 001.009;hotconv 1.0.70;makeotf.lib2.5.583298GLYPHICONS Halflings RegularBSGP��MMF�����٣(uʌ<0D�B/X
�N��CC�^�rmR2sk��PJ"5+�gl�W*i�W�/E�4#�ԣU�~�f��UD�Ĺ�����J�1�/!��/���s�7��k���(���hN��8o��d$yq��1���9�@-��HG���S"�Fj�ؠ6C3��&�����W51����B��a��QaR�U/��{*�����=�@d�h$�1�Tۗnc+c��A���	�Zɀ�@Q�c�a���l��2>�K��m�' ��C�HMĬfB�X�,�Y��p�e��
U��*Ҕz�
m���iO1nE�.���
hx!aC
XT�V���‹���R��%�|I�H���P�5"�b�N��=�r�/_�R����_�%҄�uz��Ҙ�5�2ġ��P�)�����F�7S�q�F�{n�ia���@D�s�;�}9⬥?ź���R{�Tk�;޵ǜ�U\N�Z��Q-�^�s�7�f0���S3A�
_n��`W7Pp����i��!�g�/�_p���Z�-=�ץ~WZ#/�4 KF`� ��z��0�|	D�ѵ��&däI����Ï�;�M�{'�om��m�I!wi9|H:�ۧ�����{�~���q���O�����,� �L]&�J0��9/�9&�Y�蓰{;��'�3`�e@vH�yDZ$��3���Dx28�W� Cx5xw�B`�$C$'��El�y��h��Ԁ
DJ
$(p���QA�A܉A�@'�$
hp�0�V0 `��s��e�$�4$"t2=f��4�A�{Tk�0|rH������`L&��s�h�]��A<����`R�'��!���1N�;�_�t3�#� �����V��*ve�F`E O$�{)�W=p:���F`��2��2ړC��^�.�ć�����G�<<?���~z������>�.p�Ne2��ִ��+Y�s�l:��˼�ܫu5�����t�u�^8��6��ȄTmy�Q�%�u~��%~1rҘa�wߚ^��_�Z��Z�a���0!������N�`�.�
uq����YB�\����ᨀ��[e���:@��J'Eہ,�3ubj@�p������f����eW9(	�����ޅ���=�l�G��7gj �S�M6����0��9�Oˑ����l��B�a�݁��<����Bՙ(VRAp�f�^���+g9�q�����M�t]�ت�p�E��r@]�@��V��kV�
u��d�^�X ���R@?E�Y2���]#�Ǽ�4�J��K����'��d��PC|m�m�n�#��$+48u'���e&���[n[L������%{BCD�L:^!����bƙ:&���g3�-3�u�������b
iLZ�ڂW�FS��Id��6.�k5P�l7�7�Uz�T:N�N���.�"���)����['�|U"A�����I���v�w���p��t�dk���9���嫫�9n�D�mq��7I|6�Kbc�]�M�������B�A��B�Ȫ_�J�T�q � 6@����F�����hd`G��T��:M�7'�L,�Ih��FP	��~j������$¡„ �3�hA����-S�^�چ����-%qe���~��Qq���ln"i��&����Qe?FlK�"�As�(�3Y;"�L���e�t�'�Rz<MW!��S�3$rZ:��b�-^DŽ/�$Q��q�JB'Wd�GAO����`.�(	���o�3�B0���ɑ�1��p(���(*�o�^�Ǫk��J`v��[���C|9�=����#��A��Q���# ���7;.]L:��ϸc���d���i��Esr�����6?�}��e�@H-�b���ƖC�1;����.
v.�ɾ$`T����� JW����%B�Z�I04���^:kU,�C�^�WVF����`�F�b��(�O��O��2<��@�X�u���g~�ɑ�W �t�&1\�1�L�:φ��"�!�P�����3/��^��ǰ�q��w`IA��D
�)�q�C�f��O�� ��0�2Y29�3N��f�p���\�C���ah��&�6�p�`�ځz�g�B
hRf���];]�#pw_t(�pq꿏ٷ,���bdk�R��B����T?��2����2�c�F�y2��%���C�n�9����0���9E&#�l�T__�Sлg�)eh/ڷ+�#:FGot�k5Gbr;Cb˴�:���#��ɜ	&��QC��w����mxlN��q����P��)�͐3f-v5K���h��0Aכ���j�nSp�	��^H��G�F��f���H�	 "%[ѻ��� @��p �a��α�$$��͂�*��_�\��@>M��10�{=�)���K�%�$C
��9�M��4c	�Eotj��V�GD�)l�8��,�\w���!%$��3t�		TBz��Ҵ	iUJ��[��xgd�Br�$�!eq���"J>��	)\�~����3�(^
�R€8#>�b��H��G'7_fӫcκtDoAA߃�(q�B<�`��`V����Ϋ��֘�*�b��u�P�4v@�+��.���Q�ԥ$V����@C0
�R��ܐP[�z:X�H#e��s�>?�E�WO>@I�$|s��i�
ES��)0A�?�9�ab,��@K��̩o&�����Q�%�ϞLu+�
�+�H|�Ɛ?�NK�4����CnPt�
'OT��.j5�Ĵ8��v�w֜��I�&�+�`��yS��caO[#�g��Q�����d�[�K�I矗`�ČLP���	#���� �)2�7aT���i@c\ސ�����0n�C�p�ߖ運4͵��x�*���R�z�Y�b����T[\�kU�v�Hʈ�q�p঄I��I�ŗ)�bB
	X�P�N���tz�	2
I�==� ������;}�b���q��jiކ�a�#"	��>1����1�A��p1���P��O��O�ux�Q��
Fϲ(�h݄�O'MDx�L�K$ȵ�h�&
����1���4��Si���rHJ�P�tDM�;rM�+���
*���ؗ5u2$�f3�K �<�P�L�r�c�I)����^�da>
%��ѳb(���@,�2f,~"�7�R;�E��;���HX�(���4�2Z��'T�ۿ������2J+�^!#o����Y~4�-׃�GW*�!��A�0&8�f�{`����W�=�DP8�'�= �R� g�}�iP>��#���4��E�BRY��^4e�����N8��V,[B��Ĩ�D#�X��]�,���LBsNC>
+��o��^x��
�����jC�.4�Ya�_{e�A2=r���+������9PO�A!!
�}�Y�PJe���Gn��%x��1�/}RgH��a�^3-�� �5
�|�qS���aWK{1al`I�1���Q��f_yyCZ)�L3X�]W6@DM�T�<.��u�G�K��8�Ds��бW�r��\�7Z\���V�"I����S���d��>C���U�j���e����D	�3M�tWcP����Ӊ6#3Q��nቩ��J\���7�#磱`؀K�� ��lV6&�T��	�~��l.���� <��BP
�*�!zRZ��eљ���ٷT�#�C�LH����W�)�D����p�YU#��51{WJ���4^�f�̼Z����y6�ӑT2�d�4H=�B�Ҋ��}�&݃��,aPçv+:2�~�*0����d�ɓ�փd	‚���!"A+�r�Hn���sA��ڗU
����b�H��N6�$.�l�};�@���iK� \�҂:v�QE�:,|��Q� Y0|�%�@�� ܁�qc���dqh��諹v�C�GV�����-(��m��1���q89KF��ä
"2��}Rrz�,j^��q�\�ݖ#p��+�`fl�����:k�t�5E�OaI�J�P
@ps�E�j1�4;6��/aH�.��ӰTX�p�L���L8��F�ܚi�l�1��Y؊8�
%�!/��{�����霋���X���b����N��xp���PW�����cI9g�*�����%:��L��u��CAOŒ��%�/œ�(Y��^�?����&I'��uh[x���Q�$�zҵŽ��	߳���(=V׀��
�m��U)��lΠΒ��i��d㦈���~f��jG���R{D�%>���@���6���1��`�!� ` ���wY����k/a�0A��¹�ԁ��Yh�����d��x��k:f�����<���WL4�`8IYMB�Slc�����-�E҂'�ڌ�:,�D������Ʃ84�)~��2�j���Ǡi��B(L�|"a����4,�b8���ԓi 94�����jWщ��6*��T��c4g�̓��UM�b�R�E�����C5��)j�ȴ ��1�6pb���ƎH���Fx������ģ�%4��Q��C�ʈ��	$9�:�M>�E��a��o��̟^��<Iw�Ygq�7s[���	-y�1ع5��a��MK�א�RB�Y���Fq}����8���*�Nt�'.Yb������Z��v�K
(�]&ɜ�(�ՙ��2�:0�
��o�ΏхPKiBH4U�X,���[��$
0�mX��ش�� �f�5�0��VR
�8�%����ާ�Dt��U��s`��-BP��z�P�s���vI�8z-�t1DiB
��"˶��YTJ	��.�?�0�7�jL��N��[2�t��Į̎����#�6?E׻�������:ɞ�Y;��A&q��S�IR�)�ss
9*x��0Bj)m��H�A��hyЏh�Mm�&4Ŋ�4�����g��V�&tY����OCS0�Y��d7Mv�N�j)w�A�(��o
"͢�[��
E`�����7ez�ď����-�Q�]�6�+Bca�@^I�:�һ���=�����sS���nc��	6
���O�B�4����L���Gp�B�q/<�zA��C��� ��A~��x�06rih��h�I�طO�N,:o�k����/�{H�,�zЂg�fȻz���΀5��F��Tr�n/�t``l���*H6jT�tG/x��@P@(��I�p
�e�!��`wv,:A쑜�N� 4}09z�qC���$r�M`Y�Q����M�䕫���(|�B!�>���>�O	pwj A*@����J�C[h&3���B Qb�ϩ8�:�%f~�v/�l�S����0����0a���"<TX�@�&���Jg�
3ϕ��HF��o��I8��{��:YT��b(��P�j�<za{��wX�oa�04 �3��l�GȶN��0>�B�8(f	�uGoǚ�gy���t�_�y~�͔�
�%����m��L
��!I$�X<T+�3��dq�
D�M��t�2|fEV([�]�Ndb��D3Sp'R�G�m�K��<�T��ٰ}�5iܷ�ʹ���p����#�&jF
�Z�'���2�%y9�Q#2�H]w�A�}�vf������%����X�Ӛ��)�X_�S0�t�(���-��ⰓjHp�Ӗv��/���詵�,9�w<`�E��
��F�agA�ٓ�Љt��)l�e
���;���$9����{�C�����()��?���p���IF����������b3���l[):�drr]�?†�Ֆ��?��Bd�i�D�����7��hJ��:
��U%n�3aƬJ.�>t0���~�e�P�z��]�U�g
Н=_�?���.j#+`li��	B���M5�� ��őG�p��7�a
�֒�%Y[UG9����@\bD��Y��{��{��ED0��
�$��Q�+FvC�`ݨ�3��Q�	��E\��uC9���![�$�l�������6�D�o�Dg�G�*+�X!��%#�C�q�?�8ZUB)U@o��pgީ�Z�q����8��9���|uc�cAќ����W;�@�"���>P����h_���9}.6���V/�O:�3�}��ZS���{:��~���y�k�c���O6;O�B�=�bV�.	R�k�
o���^�GV=�� }�oI"+
�
]w���F��zϷ�`<���30��h���3]�Rf���859s�`K�M��8��
X�Uq�<���\���ZO�ss�M��&j&�
���	.�%���P�BL~^����G�ˈ�3p�D���:���Z������<\�Ǡi���W̆���"(��:���z���X�~��0PG]8������RQMNT�qf�W~!�0�R%Ց�0�xvGFy/F�-��w�u�/��*�+��	\��8@�6�������c<��L�;c�[������ºnr	�QS'o�Qu�T�{qҐ�_�Ϳ���Sd��A*ð:m�8Yuz2�PB�
�Hh`l�k�p��LLh
cEb6eۏҋ ?!��>|*=V����K�@��rx�0�G`%ryr[6�Y3�7���f*�*n��%9��df��1�1ޢځ^'�]���
R���q���.��,�����^%��l���
�e��#wW��s�56!�=��!q[�����%�Ԯ]�5^:��m�5�)?�Vb|�u�7f���w�����,:�Ye�R%�
�[����
�o g�F�Az�FP������x���{��d�xí�w�8���ٔ{{L> ��d��2C�L����L�,�L��,��(�mS������$=�|%�֝lu�&	ą�83��
N�X�x�\Vn���J[)I��w��/�鹻���|�Gź��Y��DH���*�S������p6�0�c�J2�@�W�%Ѧc�_^�$��#*:G���6���n>�D;����~�`9�hXB �U��JB_в���ˈ�%����w'�$��v|#T<68�KM�ϑ-�5U+���'�B
�ĪN����bJ��Ov'��|��+*M��k(d�
}�C�˱@���q���&�aR%}�
�!�VЃ�s3w2���a�2���awH�z�/��Q0�F� �]~;��ä��� ND�P
m��K3x��ke_��
���S�!��V&=�����v�_P��L9؃Y��i�
�NU��_���)���J6�9�f*��S	� �17�F|�BR$��y,Ʊ.���&=uqs��OD��B���R�=��ɳ�e�ؽɇ�B����H����
�2lu'�h7^#�S�)�Xi2..Pe�/@F�K��$�](�%�|�2��Y1pC��8t��I��11N//+\��p�j����d����W�m��I=߽��Y�Zx��MЉP�8��1/JG���^U	,P�d1O��^�y�pq�l���2h��$�jv�����I��%�������]V���
.'[+WU8��[��D����,߻�-=[����O

w����E�)�3������J&�d�قݶR¡��S�\.� �5J$I�&��o��Hȳ~� l���z>�
Ux/�H��u;�?Gt�{?��;�T���H �L�|F�8��}��{��p:�2t�͆<L�CA`���ʘ��Ç득��+'	������oR0D?A�ClI���Z1���F?j᧴���{^�E�dGI��T���&#eJ}��ɣ_m��i���A3�K["o�C�TJEߞ4�c$�jݍbY�nathY�`YG���ei����(�a�#ps�W���i-1���b��,ʎT�cm��bhv9jh��3�t�4�@z�K���Ꙇf�jĖ�\$5P��!�hR��$P�
M�њ`�����C�C^%2�]uOs��LTx���p�Y��!�UƜ{��'����yL� +��l�J�8���)@�w�$F5t4����$�,��34aT��&���݄�Ui��+���-಑-��,��{!/\��ς�Ÿ�'&�S����0xk�Y���0I�)�'���~�� �꫕j��#�m!�-TQ`���=�=�KR���,.is�gI&jf�-I�(��~���o��,�i���傌t&�\���`͞���ҕ,�Y��Gܑu��I(~[�!2=�����h��&I���{8~4��
�j(*��aA�T�R�?b�0�I��K�P�
����M��^c���Yf3��-��J��c��r�;�ru��GuA�T1?Q���8D�py�y�+��c���@6!�[o���f��Zp���ɲ�`$�Q��!��O�� �4���|���qi��L^��_ǀM+�ƾQb��#7Ճ��X
5=��qQ���!�i��m~��������u�ݢ����	r(48zr�Y;�*1�yNk�$9j���ip+�q]��g�i�f�����f�ԥ׾���׻�>a��ѧp6��������5Y"L�D���.�r��V�����S_
���k��]�n&�H��z�~�9�æ
�p
$�4ق��'�{�&�����M\�ΰ�ч��!�q�i�� ��(.h�'�B�T���|�{I�6cL�.���빍iI�꫿\!�;��g`1����j%C �o�3*60��E��؎�]t�.�-%0
Y�K�_nft] �*VFC�tJ���T�+�\WZ�8�����gF����^
ޞf�� 5�I=��#6�.@�2z��;W�`�B/ęQ��g�h�jyJ����N�AX�3��,���K�6��6�ڲ�M0�T@���O{���4kj�|"�ftџ�ۄU��<-��a����5b��)�^R��8����:��il����Ka�6@���!���]�buvΏ$	�oU�œ�~:.�L�t���e�� ���JξP
l$S[z��~Rq39钺�9�Q��/�m"�%ʤ����7��	��5MKL�鑧"IߏG�	�XTގXL�F�ݧV
j�p^�/M�g�ۻ{���w�
�*����9���O�ʈ<�"a�A���q����.M�2@m��p�^�'�wߕm��kxO8�$[�&��|Y�Zy�`2_|%r��/�J?�Q��Ṉl�3Þ��K�E$�w�vC�h��a@�U�1�M��%0?1*��$G�Z�{!|�ʿ�$��ە�-�٪Ev;��͓:���`Bl�˸�쌧�ɬ�oQ�0&�����,�F?����^�s,�c���h˕�$�E�cl0��w`�⏺�ň�@/�r^l�8cT�3���k@��J�ݔ�uP�&ʪN��d�JjT�K��i	��*u���X�{t�j~�ɡ}��i\B�Ken�ȵ|N����u���#�]@l�CZ$iP�a�㸩t04y20�
s�֪�,Au�!Q��B�ϖ��^�@Vsɑ��\�Z�a�7�쾉���ш��6-T�r���U���u��~�1H�J�(<α�����bRԖ�qi����J?�e�G�
�*jVħ"���:Y);�-F�d�!�H���G~��u�x	cb�6m���)&;�0��dU?�8�X~�1�2��ۼ�t��I�x�5�{(�z��
�'���[�Ńk��ZЅ����i,��b�1̇����`��(�m�H�N��e�K����/
[�(��#Q�Gd�u�T��^�m���%����!(�7Kg�P=�h�ϕ�kɐU+���.[�e������C������"GD�Ψ��<*<���h�)�` A�U@O]h�l�f2��!H���F#QB��=uȾ9f�h��;"R����K�3-�(G	)�P������T],7�ec�
�	F4hH�s�73ᖟ�����`�R��T�wfͳ;6B�>Ř
9&�����܂�?����)�\����<&Ŏ��5	L�Ju�@Y���,�냲ھ�_w�0�^�17����p޻�*>D�8����_)$Uź��R�!jOF��>{�����t,�-�bP�,m`D"/�z�A�
͔إ��QZG�&U]�xejx��Lwv�~��=)@�B��6�?!;53/ps@t�OZS7���ؙ��n��lx��Z?�Z��j
a��{��6���L4���1�2�����Q�i��&֥l�����]o=�7�ļ	of�Ж�rMEV@��H����/�aD�٦�H����lK5)ŒZ	OE����3��IG�'г;�D'�zl(����E���$��.ٜ�-WR'\w+)�w3�꺾�� @�%R�)�.�~�9;]�.šg+)�%ȝ�k��҉��^��N�W�>b1z:s��oD
K�����2w[|>9�vWMF�u�`���ax�chի�U��`*ʆe�]O�V'6����x�d?�H]_r�A��+z�d�F��H	�ʋ<��Ǵ���kUsFz����aH��9-�����gv�b�=��L/�E�)��.��x9j%B�)�$���A�B����	���t b.b�AE��Z�Rb�H(���J�ya��9Wj0f��F'��X�z���$DQ�6��q��`	o��	i=��{#4��FYH�@�J�3
3i~�tYТ�hkH�P�����17�����Y�D�"�p�Ħ;'�16��f�pu���>�F�oD�Qi�n�̒�-��@P#��� �h�j ނ�ŀf��C� ���7°�T5HVX�p��klĭ���]��yXr�)?ͺ�BNJ�B����#��9e�&&�_0��=��pZ��6��h��)�
̗�a b���=(p)�����;�.N�,��W�^*hԺ�C��m}E�7i��6���a�I�vͲxp�*Ac#4��������N�&�`)�ĉ��H�We��y7jl���o�Eh_n3 �	�jp?�4�p2W�E'kT_�
&��!ȖjVl�H�ӻ_kɚ���ʳ�aY���� s�@�[�G"��bY�L�ܫX��i�
�C��q8�&�z��VaY{��#I@����2��m�!�d�[1	�A�Ƣ��nK�����eם��/>�d�m�uX:xʷ\��p�N����l�+�H+c�tSǶ��C��[��~3��e�}6� �\�,��Ʉ��|�Y�ݧ��v]�'�|����&��M�2� d��ds�x-((76��aX��m=��ӊ��Q��<$�����Q†���\��
��qi�H阇���i'i��$�"�{S*V�wF��/�t<���Q`ʒZ��+�pr)�(�.j�鸫I�k5�	<�ʆ�ˮ��, kO���DT��J&^7���ĪQ�����v�e
&�Z���
^4��^s��D+`WH����b�6���� ���L��W{ZZ �@��mq�v�ɷ(D�\+�l���0*�V�߇�Vm����hƏ��/S`|�^\<-����6�2�N3��"
To���lr��e��!��H2�p�A ֛������{�ȼ�/����udU2*2�"c��"p�${��y�,饋�&\�m�&�`�|x �p��C��w#��W�9D�Ii�іC���Ks�燝S���3�,����M��;j��B�4��P�2��i���f��ɿ��bA�]a�id�������"���i!aQh�CNO������Y�
�xF$�g�9���Z`W���VB�g�����#j\˂���e�G�[�.�]��0�~X{2�D��?��"�3�B�j,�K~�b#�0�ɒL�kc�(6 �
�a�E7λ�/Վ�%� ����� ��ġR�^J���CϏZ+71X���UO,����}#�-��e٤�4�3ł��t�8��Z7��i��<:i�?Ft�Fk�CW'��f0i<�Xdj����0�W#i����eC�
zI7��B�s���.K�  *��V����d���D�lj�@��%
�܈��
�Z��s�ﮐsh̸%�^�
���@8���?�N�8g�G�gr�X��S������
Ap���4�z*��4���,í��t4G�n����dS�>f�Q�C��WUZ{S�;N�x��}��H&��*�9׸�q��U1 ��a�`(M-a�G}�n�̽��0	��p���mcn�
��ɘ�_�\��l����}�	��9�F�v�Hþk�JZ�NO �mZ��Q��Ҥ	aS��f��
)QC+2
d���[���	����H"t*�
�c*b��ڢ��q��,����#S��#��u�'Ҭ�:4�as���CDM�F�|ɸm�_�1L]��Y��\���*�X��>t�����g���D������d@&[�)8��;<�{��8<��+VG\�H���^��a��a�e�-4��s�J�A	\��hM[�\`���#�pD5Z97g;��BW�m��qTXX�%0�v���&��]E��4]�F�IJ����&�S�_��4�R�0���D�+�me���Y	�g��O��+M{�03�v'ͅf���t���:;�ر�	N��n�\ǔ^�,)1�l��aB�ZZ��[��	��	�ZS���UYh�߆��w����S�\�/�*?zQЋ�`�X4�g�r��[��CW��G�.�Y��0Q|�Rԃ�E�[w���y�)���,ш�$�NK@c/b
-#Z�I
�G$Ɨ���tm��H#��)X�wPZAD|�S
o�f���T���H��)������>�M1�b
7���ɆS�u��q�
���jK4[s���	���xL ���Ǣ��]5�!M!A�dƧN��><�:ǻZ(�8����)e���
 ����/�W��|
��b���<���T?%� �:@���,-�ecMP�8u�m�V�g��9H�6���}�=�5���Ab�Ď��찁�Ι�V:���_�leɹ�
��v�`�0��!$`G��A"I;$�^?�����Ke	O� ��N(ս�Yy�5B��w��V�%�ju;)lF�oa����7��x�ڸ�4-��%� ��$�ֹ/zskǘ(sh>��DD�Ń�t�T�7�rur���0�Ң�`ܴh5
5������S�}������4hrva��l�c!ZjB]������x�D���b�Tx�zYS��6_�)��o��p>�#�@P�S�*�b�S\qƋx�YfQ><"����
Y6���IEr_7�ҰV�H�!��I�r�EL�6�!N��q"'�d��a�qMv���A�%���	�v����n<Eб�;��,�w��2pO%�r��X�H�`�uI#�/�K���;�56��LL.�MI8�q��4U�n�rɡ"s9�(��@=��}N��)?S����.�r�0L3�m7V�K HG�/�yQ���2�/Ww�F)���d)s��F�7|���vQ̴�A�Iz`�\��������䄛<>�.;��A/���2ʲ��a8D$�GWv�#̏�
9�k��'���o؟�o�@��	(]gk�+}/	(nq���K(f����Ɵи�p���2��3Y����w�pD�dG�q2$��}�KӯA�"�E&N�tg'Ne�s��!Ю�4q�o}쿝�S���,o�jr/s�T�MT�&���Qf\12�h'&ctN��'T�x7��]2� ;G�	ʅ��|T�++:%/ �����1T������ˀ�<���4�����͔��˗	�,0~��!�W�O��'� ��:s�u���Ҧن��(�^ﮎ����)��7��f���ml��ҹ�1ūt��Z��h�
�L0����6�X"J҂�
��4�9�� �֩B�}��ԭ`�`����Ӓ�	#�J��n����_�F� H|��$O�K�=�œi1���7��o-H�q���p[ɫ%%:��Ɉi3۠��G C�LL�4�S�:�dB�j|��pY�S�D�P>�p�v��5KLe�{t0��y�END$�*�;z�5��N��BI��gn��.N�|׶��n���R�aS�Z��JcH� m��X����e�k;_6�,y��b��0#�Z��A
e|w���G
U�1l��LD�7ÄV�q��t[�xu�E�QUL���PB�lZSh��.��1Q0U�ٱ8R�i��p;��{��H#�GON!?��t>�Q	|p�k����q!�gT,��j��2��sǍ4툊t�j��nƛ/I�O�E!ˋnF��4����M&�1�����x�$�ew+v�S��
bm]e%8��P��
!����s��_06��)Q�2JB����[t9���'���Ԝ,����[�fÆג�]��B�B�@���r&B�s|�Q�
����g��OC��1��J D�<���U���μ�(o�!��h���K�H�� 0q����A�V��'p�f�y"Q
O��2�Z���q��#d"�@bQ�,���w)�P�\b`x��O�)ޢd�MC�$[Ho��Wަ�va4{�DZ`52�����5;��X��aoK�;�6�%�R(�����хx9�8�2r�Dc��@و�����F�<�d(�AN#F�I���zmE���F=���ƚ��S��f
4�8�<'���j���-���'ǘ<�Tb�2�v�E�t��q��3qODd_��{`/�hh��`’9_�1hAY|/���޷U�-͕���A���o(���"�$r؆T��PR;�.�-w>&LJ�iC`A�^���#���X8�t���H?�d��a�ĖTST�a�H�0@����U)����^e}Jb7%�ܔ%:��ƿ@��M�+�y�sq����L������Y�00Ô�G�D�	>ĩ�AW���2�I�:��F	����3�2<k�}[{�*�"A�z0��:@���1�A:�����ܤh�X��C�񓓣9�8����E�����U��eu)[?�mt-5�r�~J�ݪ�V2li)�՞<�ҳ?�(D���;)��o  (����XI�I$����$�)�'i(��*��_��E	K��*�4C�k���wkOI�FfQ$8γ�;(0+.�9���9u�$��0��t�170��fȦ

ǒ�aO�=T,�m;���n����˸�Χ�c�<9�0�<���
_�=g �QV&��B�܀�%f�3`5�Fݶ�~��`6d�.�2`?��]�}�O�0^�A�K�N\Q�(I	{����p[Ꜫ�4�$6x�P&� :�'7u������	���&�R��d�'�
ʹ#{*W����l��D�Q��̎.*ZE�
�c���7��|4��Ղor\�*��
HX���'�#k?WR���mPx�$ٓ]���
ׄFK� ~�4;
[Ҋh2�A�ɉf���<P
dg���)�!b#Z�?0o���[��E�hX�$�����S��ؾe���N��$����=�8Ш"^	�V�cFD��x�����RX�C�X���.:F��q,���1)b�B�1
�+�Q�)�_�OyE���	
����nTp ��}1`�#
ףd-�֥#�O��ℚt��:5Ћ�/<b0�'m�oqI���B��FW��.�\k�c�5ߦ-v�T[͂����� �-4�:dݗu��[	8:P금���BT���U����Q�,F24�l�EO�?�D�k��{
�1�k6)R�̘GI��6�Yp^U��!A�@�{xg�#^/	��E�Tz��Ēʻ@:F�'\�Q6�t,��pT!i�
N!�dG�B��^
�$@yn��_u�U��C���K�_K62��B|
^����T�mr���LDgʿ�f�)!-���o���ch�}��@o�[r�E] ��/i�WJ8�Ogb�ӁF�e�(/��EΠ�yO��LB��]IkTډa��bV���
��
	2����ց%�b���j���g��'���2�-6���D���JZe'	�oBi2��+]x;S�P���{�{Ju�m��f^L
S0�����~o����-��S�Ec�*�vlpOm�@�v	-S�D;<U�C�Y�����nA)�pxO�@�i�L���7�E`K\�J`�9�U$�	p�'�Տ�����3�v
+�n��%�lS�}��A��Nj0*���׳48���i%�����8��P5�c��#��T$F�?$���L~�I�QN_�MC
Tn�L�`)e|Ȑ�!d������ܑ[�s��D�\Vo��gF���G(1� ��OJB��J�FR%p���3N�P C�S����@pM���vAf,- +�H�Ft�,����wfA������)y���^�Ƹ}�N�+s8Z�$j�NF����i#�l���h����P!9ge]�i���h����f�v'�l��!��yn�O��]3�i��я�F�	���Pkc�\�
`��@�92�
z��X�;]۩�i�%[5����p�8Q c���d��\�Lo��;jP�/���n�g���[��qB�QP;��,V�e���3�Pr�'ط�4Y��� 8��[%��c�
^�`��	��PjL>ʠ�q����:6S����]K��"���g[��	�ϑH���B�5�VEq�LJ��X{C����B����!�P�I�q9��Llx��ʪ7�>֤��]@�!@9H�!����p�ə�$	�?��)���܎�l�/"���́��+�@`}}:\����	8�zQgS��+򒤿��C��}�R:��H�UF\�X��g��/��AZ%c1�wlET�wX�ZNh����yf2D� �ø�&v�L�q�4�7���z��\�iJy��J-k�N�3���	�-�s��J5��)�V0�N0�d�\ӛd0d-��E�[mf�\�Um�x���C�R<(`�ѕ��p4^!�h�Q�`���!l� ~ƙ�:J�ɠ�l�W���9˸�ZXB=��l)`j��eVJ��U���G!�s��1�?Ƽ3��Ê.�}bIa��6�ʕ
�t?��SxZJ'�p
i�,�.�����R2T`5�-R
Bxr�WH�JP�e#Bb�|���-������[�����P����Eh���‹(5S���f�r��/]���IƊ
��d��E#��O�S�3�9ӻ]����e��ۮ�ɹ.9_�b�e��M���9b#e��(��-� 0����Ra����9����"������U,��%�~�X�܀����z�۽{'6[@�t[W%��*.d'vR {���h��!�Aed�C�E}�x=E[|�B$7J�* B-�,=k7�[_��-�I������J5e�̶��{
��(	��;�WMw�`����~p�A��z 8��f�))���(�@	�Īم��<���.a%N ��n�@bz��������>����%���T*?lgb�d��<�ĵ�w9Na���8;<^*%��y�:tD�ҕZ<@��0����q4����l\
��1�����`/�$IJ ғsN)�;:A;�)$ו
�Ww�y%Kr�Iv\b�V��\n�d{����6t��v���/~��*O��
7U>�8�r�AC<�j�E�-j��牷��xs�)���D���1�Ì/��q�p**̸�$ّ�,��
��B�ȼp�k	Mhp�K�7�U��]��h&�-�$�鎻����Y��;�q��6w�z��W��˄֭A�h��D��^R���"��s5f���w
���+�Q&�/9Ȃ���wNb�������z{����Y�>
]NE��c,ߞ#BF�:0��/-EȾ�Œ�׃�F\���I�{t��A�Z�C�OR�uk�i���)�ytkd�N�&�v�A���P{�����P'��>���x�Ɔ`.��%,;:Կ�:������aF�oTQ�}v#��ף���Qk��'�s�����~����z5hM�Qʒ�Y>C��ʍ���i��U���NF#J0u��C���8k�!
f���v�{E�/���IKIE�>�p�yd��e	
ʾ�=z�:@7�J����|��5g8��x�3�O��������
�3�H1��؄F.�y�fz��WIM����j[�.w�%�i?҆U��f|}@+[8�k7Cx��S���EOޯp�$�����Q�+��:�<�]���K�3��T-y���[N��z���;y���-HZ��Y^��.�M*�'h8��A�.�N�2r��LB�7:Or���}�C�S˚S9�Jq#�WI}*8�D!��#	g#Y�>8`�
�В��?a��2H,^���'���?���^����n�h�Oƒ��i<����Ya2�+���6a�F��a<�!��0��2�]�c:�e�K��X�X�[Ug�O�u5i�yPcV�T��5RI��A6�OԸi
��C�\�����QZ�M�D�ƃ����B!X��:���\!�^��"{�E Vax$P	\$�DBBT��Ft�~��{O��
w�5a#�`��=g��Ё�Y�2>��MG�-G�k�è��1T�b���L
�`*ـ�V�X
��*�x�e§֊�Z*c`�V�S�b���JU����*6�TK@�zqP����h���g��*ߔU�(��QU4��9L�
�cM�*��T��R!R,B�ȅE�����*C|Tz��p��F��@��4��*������텰��ج�X�b��L�.�T2y`��Upb���
�T,�%@`���#�?@t���GL��ŞS�)��ÿ�z��tϲFy׎ 14Lh����f���e�(.)pK�@\���X�e@Tb�v�h�D��&�0-I�bD�	d@ZD1�@�D�y���ѧCN|
9�4��Ӛ#Ncl���;��,
�`c�X�@�(��2$0�"@-	�$�B@�<$А���8p7C����b�(�@�
PA@�F�0��t������G���OR���IJ�I�T�yS��MW52\T�oR�KV�0Ȏ����(
-�$������
�!6���w��H�������G���O  r~�e~/�]���V~/�P~7�Sz�K���Fv`;��`9v�#
J���B�N�,�����ӭ�'�`�'��`\LT���ApBs�)r�!�
�(
�i�`PK!u9��*�*fonts/fontawesome-webfont.ttfnu&1i��`FFTMjo)�GDEF� OS/2�Yz(`cmap��m��gasp��|glyf,�q��,head
�U��6hhea
[��$hmtx�)*

locai��V
maxp�( name3F��H�post�7cA� webf�*VO*��=���P���u>��G��3��3s�pyrs@ ��# ��p@0 ������ 
 / _!"""`%����>�N�^�n�~��������������.�>�N�^�n�~��������������>�N�^�n�~���� ������  / _!"""`%����!�@�P�`�p�������������� �0�@�P�`�p��������������!�@�P�`�p������d�]�Y�T�C�2���߸��ݺ�������������������������
�	
��p7!!!���@p�p �p�1]���!2#!"&463!&54>3!2�+��@&&��&&@��+$(�($F#+���&4&&4&x+#��+".4>32".4>32467632DhgZghDDhg-iW�DhgZghDDhg-iW&@(8 ��2N++NdN+'�;2N++NdN+'�3
8���!  #"'#"$&6$ �������rL46$���܏���oo��o|W%r��������4L&V|o��oo����ܳ��%��=M%+".'&%&'3!26<.#!";2>767>7#!"&5463!2� %��3@m00m@3���% 
�
�@
���:"7..7":�6]�^B�@B^^B�B^ $΄+0110+��$�
(	

�t��1%%1��+�`��B^^B@B^^���"'.54632>32�4��
#L</��>�oP$$Po�>���Z$_d�C�+I@$$@I+��������"#"'%#"&547&547%62���V�?�?V��8��<��8y���
���b%	I�))�9I	����	+	%%#"'%#"&547&547%62q2�Z���Z2Izy���V)�?�?V��8��<��8)>~��>��[��
���
2���b%	I�))�9I	����'%#!"&54>322>32 &6 ��y��y� 6Fe=	BS���SB	=eF6 ������>�x��x5eud_C(+5++5+(C_due����>����/?O_o���54&+";2654&+";2654&+";264&#!"3!2654&+";2654&+";264&#!"3!2654&+";2654&+";2654&+";267#!"&5463!2�&�&&�&&�&&�&&�&&�&&�&&&�&�&&�&�&�&&�&��&�&&&�&�&&�&&�&&�&&�&&�&�^B��B^^B@B^@�&&�&&��&&�&&��&&�&&�&&�&&��&&�&&���&&�&&&&�&&���&&�&&��&&�&&��&&�&&���B^^B@B^^��/?#!"&5463!2#!"&5463!2#!"&5463!2#!"&5463!2L4�4LL44LL4�4LL44L�L4�4LL44LL4�4LL44L��4LL4�4LL��4LL4�4LL���4LL4�4LL��4LL4�4LL	�/?O_o�#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(88(��(88(@(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88�/?O_#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(88(�@(88(�(8�8(��(88(@(88(�@(88(�(88(�@(88(�(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88y��"/&4?62	62��,�P����P&�P��P�,��jP�����n���#$"'	"/&47	&4?62	62	�P���P�&���P&&P���&�P�&���P&&P���&�P������#+D++"&=#"&=46;546;232  #"'#"$&6$ 
�
@
�

�
@
�
�������rK56$���܏���oo��o|W�@
�

�
@
�

��r��������jK&V|o��oo����ܳ�����0#!"&=463!2  #"'#"$&6$ 
��

@
�������rK56$���܏���oo��o|W�@

@
�r��������jK&V|o��oo����ܳ����)5 $&54762>54&'.7>"&5462z�����z��+i *bkQ��н�Qkb* j*����LhLLhL�����zz���Bm +*i J�yh��QQ��hy�J i*+ m��J��4LL4�4LL���/?O%+"&=46;2%+"&546;2%+"&546;2+"&546;2+"&546;2��������������`��r��@�@r�@��@����n4&"2#"/+"&/&'#"'&'&547>7&/.=46?67&'&547>3267676;27632�Ԗ����#H
	��,/
�1)�
~'H�
�(C
	�

�,/
�1)�	
�$H�
Ԗ�Ԗm�6%2X
%�	l�2
�k	r6

[21
�..9Q

$�
k�2
�k	
w3[20����/;Cg+"&546;2+"&546;2+"&546;2!3!2>!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���@�`�0
��
o`^B��B^`5FN(@(NF5 ��@��@��@���L%%Ju		�@�LSyuS�@�%44%�f5#!!!"&5465	7#"'	'&/&6762546;2�&�����&??�>

�L�L
>
� X ���
 � &���&��&AJ	A��	J
W���h��##!"&5463!2!&'&!"&5!�(8(��(88(�(`�x
��c�`(8��`(��(88(@(8(D��9�8(����� ,#!"&=46;46;2.  6 $$ ����@��������(�r���^����a�a�@@`��(��������_�^����a�a��2NC5.+";26#!26'.#!"3!"547>3!";26/.#!2W
�
��.�@

��

�@.�$S

�

S$�@

���9I


�
I6>
��
��>�%=$4&"2$4&"2#!"&5463!2?!2"'&763!463!2!2&4&&4&&4&&4�8(�@(88(ч:�:��(8���@6�@*&&*�4&&4&&4&&4& ��(88(@(8�88�8)�@�)'�&&�@���$0"'&76;46;232  >& $$ `
������������(���r���^����a�a`��		@`��2�������(���^����a�a�����$0++"&5#"&54762  >& $$ ^���
?@�����(���r���^����a�a���`?		����������(���^����a�a��
#!.'!!!%#!"&547>3!2�<�<�<_@`&��&�
5@5
�@
����&&�>=(""��=���'#"'&5476.  6 $$ � ��  ! ��������(�r���^����a�a�J��	%�%���(��������_�^����a�a�����3#!"'&?&#"3267672#"$&6$3276&�@*���h��QQ��hw�I�	m�ʬ����zz���k�)'�@&('��Q��н�Qh_
	�
��z�8�zoe����$G!"$'"&5463!23267676;2#!"&4?&#"+"&=!2762�@�h���k�4&&�&�G�a��F*�
&�@&��Ɇ�F*�
A��k�4&���nf�&�&&4�BH�rd�@&&4���rd
Moe�&�/?O_o+"&=46;25+"&=46;25+"&=46;2#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!26#!"&5463!2�
@

@

@

@

@

@
�
�@

�

�@

�

�@

�
�
�@

�
�^B�@B^^B�B^`@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�3@

��
M��B^^B@B^^��!54&"#!"&546;54 32@�Ԗ@8(�@(88( p (8�j��j��(88(@(8������8@���7+"&5&5462#".#"#"&5476763232>32@@
@
@KjK�ך=}\�I���&:�k�~&26]S
&H&�

�&H5KKu�t,4,�	&� x:;*4*&��K#+"&546;227654$ >3546;2+"&="&/&546$ �<��X@@Gv"D�����װD"vG@@X��<��4L4����1!Sk @ G<_b������b_<G �� kS!1����zz�� �"'!"&5463!62&4����&&M4&���&M&�&M& ��-"'!"&5463!62#"&54>4.54632&4����&&M4&�UF
&""""&
F���&M&�&M&���%.D.%���G-Ik"'!"&5463!62#"&54>4.54632#"&54767>4&'&'&54632#"&547>7676'&'.'&54632&4����&&M4&�UF
&""""&
FU��
&'8JSSJ8'&

����

&'.${��{$.'&

����&M&�&M&���%.D.%7���;&'6���6'&;��4�[&$
[2[
$&[��#/37#5#5!#5!!!!!!!#5!#5!5##!35!!!����������������������������������������������������������������������������#'+/37;?3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3????  ^��>>~??�??�??~??~??^??�^^?  ^??������������������������������������4&"2#"'.5463!2�KjKKjv%�'45%�5&5L4�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'��k�54&"2#"'.5463!2#"&'654'.#32�KjKKjv%�'45%�5&5L4�5�&�%�%�'4$.�%%�5&�5�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'45%�%�%54'�&55&�6'
��y�Tdt#!"&'&74676&7>7>76&7>7>76&7>7>76&7>7>63!2#!"3!2676'3!26?6&#!"3!26?6&#!"g(��sA�eM�,*$/
!'&
�JP��$G]��
x�6,&��`
��
h`
��
"9H�v@WkNC<.
&k&
("$p"	.
#u&#	%!'	pJ�vwEF�#

@

��

@

���2#"'	#"'.546763�!''!0#�G�G$/!''!�	
8"��"8
 ��X!	
8"	"8
	����<)!!#"&=!4&"27+#!"&=#"&546;463!232������(8���&4&&4�
�8(�@(8�
qO@8(�(`�(@Oq��8(��&4&&4&@�`
�(88(�
�Oq (8(�`(�q���!)2"&42#!"&546;7>3!2  I��j��j��j��j�3e55e3�gr������`��I�j��j��j�j��1GG1���r��������P2327&7>7;"&#"4?2>54.'%3"&#"#ժ!�9&W��B03&�K5�!�)V�?�@L��'�	
>R�>e;&L:�:%P�>��vO
'h�� N��_"�:-&+#
��:��	'	����+a%3 4'.#"32>54.#"7>7><5'./6$3232#"&#"+JBx)EB_I:I*CRzb3:dtB2P���$$5.3b�[F�|\8!-T>5��Fu��\,�,j�n OrB,<!
5�4wJ]�?tTFi;
2�3j.�p^%/2�+
	S:T}K4W9: #ƕd�fE���97>7676'5.'732>7"#"&#&#"�$
zj=N!�}:0e��%	y�
+t�D3�~U'#B4#
g		'2
%/!:
���T	bRU,7����}%2"/&6;#"&?62+326323!2>?23&'.'.#"&"$#"#&=>764=464.'&#"&'�!~:~!PP!~:~!P��6�,�,$�$%*'
c2N 	
(�$"L��A2�3Yl�!x!*�%��%%��%��
p�P,T	NE	Q7^���oH!+(
3	 *Ue�eu
wg��a�32632$?23&'.5&'&#"&"5$#"#&=>7>4&54&54>.'&#"&'2#".465!#".'&47>32!4&4>Q6�,�,Faw!*'
=~Pl*	
(�$"L��A2�3Yl	�)�!*<7@@7<
�
<7@@7<
 p�P,T	MF
Q7�47ƢHoH!+(
3	 t���JHQ6wh��',686,'$##$',686,'$##$�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&�&&&&�&&&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&��&&�&&��&&�&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&�&&&&�&&&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?O_o%+"&=46;2+"&=46;2+"&=46;2#!"&=463!2+"&=46;2#!"&=463!2#!"&=463!2#!"&=463!2
�

�

�

�

�

�

��

@
�
�

�

��

@

��

@

��

@
�

�
s�

�
s�

�
��

�
s�

�
��

�
s�

�
s�

�
�/?O#"'&47632#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
	��		 	
�
�@

�

��

@

��

@

�@

�
�
	 		 	��

�
s�

�
s�

�
s�

�
�/?O#"&54632	#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2`	��	

	 �
�@

�

��

@

��

@

�@

�
�	��	
@
	��	�

�
s�

�
s�

�
s�

�
#"'#!"&5463!2632'
�m�w�@w��w�w��
'���*��w��w�w��w������."&462!5	!"3!2654&#!"&5463!2�p�pp�p��@���

@
�^B��B^^B@B^�pp�p���@�@� 
�@

�
 �@B^^B�B^^���k%!7'34#"3276'	!7632k[�[�v
��
6����`�%��`�$65&�%[�[k����
�`����5%���&&�'���4&"2"&'&54 �Ԗ���!��?H?��!,�,Ԗ�ԖmF��!&&!Fm�,�����%" $$ ���������^����a�a`@������^����a�a���-4'.'&"26% 547>7>2"KjK��X��QqYn	243nYqQ�$!+!77!+!$5KK���,ԑ�	���]""]ً�	��9>H7'3&7#!"&5463!2'&#!"3!26=4?6	!762xt�t` �� ^Q�w��w��w@?61��B^^B@B^	@(` �`��\\��\P�`t�t8`� �� ^�Ͼw��w@w�1^B��B^^B~
	@��` \ \�P�+Z#!"&5463!12+"3!26=47676#"'&=# #"'.54>;547632��w��w��w�
M8
pB^^B@B^�
'���sw-

9*##;No��j�'
�#��w��w@w�
"^B��B^^B�

	��*�����
"g`�81T`PSA:'�*��4�/D#!"&5463!2#"'&#!"3!26=4?632"'&4?62	62��w��w��w@?61

��B^^B@B^	@

��B�RnB�Bn^��w��w@w�1
^B��B^^B�
	@
���Bn���nB�C"&=!32"'&46;!"'&4762!#"&4762+!5462�4&���&�4�&���&4�4&��&4&��&4�4�&���&4�4&��&4&��&4�4&���&����6'&'+"&546;267��:	&�&&�&	s�@�	
�Z&&�&&�Z���+6'&''&'+"&546;267667��:	�:	&�&&�&	�	s�@�	
�:�	
�Z&&�&&�Z��:z����6'&''&47667S�:�:�s�@�	
�:�4��:�|�	&546h��!!0a�
�
�
$���#!"&5463!2#!"&5463!2&�&&&��&�&&&@��&&�&&��&&�&&���#!"&5463!2&��&&�&@��&&�&&���&54646&5-���:s��:��:4�:�
	���+&5464646;2+"&5&5-��&�&&�&�:s��:��:�&&��&&�
	�:�
	���&54646;2+"&5-�&�&&�&s��:�&&��&&�
	62#!"&!"&5463!2�4��@��&&�&&-��:��&&&�&�����	"'&4762����4��4����4��4��4Z��f�	"/&47	&4?62S�4����4����44��4���#/54&#!4&+"!"3!;265!26 $$ �&�&�&�&&&�&&@���^����a�a@�&&&�&�&�&&&+�^����a�a�����54&#!"3!26 $$ �&�&&&@���^����a�a@�&&�&&+�^����a�a�����+74/7654/&#"'&#"32?32?6 $$ }��Z��Z��Z��Z����^����a�a���Z��Z��Z��Z�^����a�a�����#4/&"'&"327> $$ [4�h�4[j����^����a�a"Z�i�Z��J�^����a�a�����:F%54&+";264.#"32767632;265467>$ $$ ���o�W��	5!"40K(0?i�+! ":����^����a�a����X�R�dD4!&.uC$=1/J=�^����a�a�����.:%54&+4&#!";#"3!2654&+";26 $$ `��``��������^����a�a�����������^����a�a�����/_#"&=46;.'+"&=32+546;2>++"&=.'#"&=46;>7546;232�m&&m �l&�&l� m&&m �l&�&l�s&�%�&�&��%�&&�%�&�&��%�&&�&l� m&&m �l&�&l� m&&m �,�&��%�&&�%�&�&��%�&&�%�&���#/;"/"/&4?'&4?627626.  6 $$ I�

��

�

��

�

��

�

��
͒������(�r���^����a�aɒ

��

�

��

�

��

�

��
(��������_�^����a�a����� ,	"'&4?6262.  6 $$ ��Z4��f4�4fz�������(�r���^����a�a�Z&4f�f4�(��������_�^����a�a�����	"4'32>&#" $&6$  W���oɒV�󇥔�� z�����zz�8�����YW�˼�[����?����zz�:�zz�@�5K #!#"'&547632!2A4�@%&&K%54'�u%%�&54&K&&���4A��5K��$l$L%%�%54'�&&J&j&��K�5�K #"/&47!"&=463!&4?632�%�u'43'K&&%�@4AA4���&&K&45&�%@6%�u%%K&j&%K5�5K&$l$K&&�u#5��K@!#"'+"&5"/&547632K%K&56$��K5�5K��$l$K&&�#76%�%53'K&&%�@4AA4���&&K&45&�%%�u'5��K�"#"'&54?63246;2632K%�u'45%�u&&J'45%&L4�4L&%54'K%�5%�t%%�$65&K%%���4LL4�@&%%K'���,"&5#"#"'.'547!3462�4&�b��qb>#5���&4�4�&6Uu�e7D#		"�dž�&����/#!"&546262"/"/&47'&463!2�
���&�@&&4�L

r&4���

r

L�&�&�
���4&&�&�L

rI�@&���

r

L�4&&
���s/"/"/&47'&463!2#!"&546262&4���

r

L�&�&�
���&�@&&4�L

r@�@&���

r

L�4&&�
���4&&�&�L

r��##!+"&5!"&=463!46;2!2�8(�`8(�(8�`(88(�8(�(8�(8 �(8�`(88(�8(�(8�(88(�`8��#!"&=463!2�8(�@(88(�(8 �(88(�(88z���5'%+"&5&/&67-.?>46;2%6�.@g.��L4�4L��.g@.
��.@g.
L4�4L
.g@.���g.n.���4LL43�.n.g��g.n.�34LL4�͙.n.g����-  $54&+";264'&+";26/�a����^�����
�

�


�

�����^����a�a��
�
fm��
@
J%55!;263'&#"$4&#"32+#!"&5#"&5463!"&46327632#!2���$�$�8�~+(88�8(+}�(�`8(��(8`�]��]k=��=k]��]��8���,8e�8P88P8�����`(88(�@���M��M����O4&#"327>76$32#"'.#"#".'.54>54&'&54>7>7>32&����z&^��&.������/+>*>J>	W��m7����'
'"''? &4&c��&^|h_b��ml/J@L@
#M6:D
35sҟw$	'%
'	\�t��3#!"&=463!2'.54>54''�
��

@
�1O``O1CZ��Z71O``O1BZ��Z7�@

@
N�]SHH[3`�)Tt��bN�]SHH[3^�)Tt���!1&' 547 $4&#"2654632 '&476 ���=������=嘅�����}�(zVl��'��'���ٌ@�uhy����yhu����9(�}Vz��D#���#D#�������	=CU%7.5474&#"2654632%#"'&547.'&476!27632#76$7&'7+NWb=嘧�}�(zV�i�\j1
z,��X��
Y[6
$!%���'F��u�J�iys�?_�9ɍ?�kyhu�n(�}Vz����YF
KA؉L�a
�0��2�-�F"@Q���sp@�_���!3%54&+";264'&+";26#!"&'&7>2
�

�


�
�
#%;"�";%#<F<������7


���??""??�$$ll2#"'&'	+&/&'&?632	&'&?67>`,@L�����5
`		��
`	�����L�`4�L��H`
����`	��
a	5�
��L@��#37;?Os!!!!%!!!!%!!!!!!!!%!!4&+";26!!%!!!!74&+";26%#!"&546;546;2!546;232� ��`@���� ��`@���� ���@����@�� ��@����
@

@
� ��@��� �� 
@

@
�L4��4LL4�^B@B^�^B@B^�4L� �� @@��@@ � � � @@  

��
��@@ �� � 

��
M�4LL44L`B^^B``B^^B`L���7q.+"&=46;2#"&=".'673!54632#"&=!"+"&=46;2>767>3!54632�<M33K,��	��	
 j8Z4L2B4:;M33K,?		��	
�0N<* .)C=W]xD��0N<* .)C=W]xD?\�-7H)��	��	
�".=']�-7H)�
��w	��	
�<?.>mBZxPV3!�<?.>mBZxPV3!�
���&#"'&'5&6&>7>7&54>$32�d�FK��1A
0)����L���.���٫�C58.H(Y���e����#3C $=463!22>=463!2#!"&5463!2#!"&5463!2���H���&�&/<R.*.R</&�&�&��&&�&&��&&�&������Bɀ&&�4L&&L4�&&f��&&�&&��&&�&&Z� %"'	"/&4762��4���4��4�ͥ���5��5Z����	"'&4?62	62��4��44���5����5��%K%#!".<=#"&54762+!2"'&546;!"/&5463!232
�@�&@<@&�@	����:��&���	�
��& 

��&���&�������&��	

��`&���:$"&462"&462!2#!"&54>7#"&463!2!2�LhLLh�LhLLh�!��
�&&�&��&&�&4hLLhLLhLLhL��%z<
0&4&&)17&4&
&&��#!"&5463!2!2��\�@\��\@\��\���@\��\�\��\ �W�*#!"&547>3!2!"4&5463!2!2W��+�B��"5P+�B@"5����^�=���\@\� \�H#�t3G#�3G:�_H�t�\��\ �@��+32"'&46;#"&4762�&��&�4�&��&4�4&�&4�4&&4�@�"&=!"'&4762!5462�4&�&4�4&&4�4�&��&4&��&����
!!!3!!��������������������������0@67&#".'&'#"'#"'32>54'6#!"&5463!28ADAE=\W{��O[/5dI
kDt���pČe1?*�w�@w��w�w��	(M&
B{Wta28r=Ku?RZ^Gw��T	-�@w��w�w�����$2+37#546375&#"#3!"&5463�w��w���/Dz?s�����w��w��w�@w�S�88�	�����w�w����#'.>4&#"26546326"&462!5!&  !5!!=!!%#!"&5463!2�B^8(�Ԗ���������>��������@�|�K5�5KK55K�^B(8Ԗ�Ԗ�€>�������v����5KK55KK�H��G4&"&#"2654'32#".'#"'#"&54$327.54632@p�p)*Ppp�p)*P�b	'"+`�N*(�a���;2��̓c`." b
PTY9��ppP*)p�ppP*)�b ".`�(*N��ͣ�2�ͣ����`+"'	b
MRZB�����4&"24&"264&"26#"/+"&/&'#"'&547>7&/.=46?67&'&547>3267676;27632#"&'"'#"'&547&'&=4767&547>32626?2#"&'"'#"'&547&'&=4767&547>32626?2��Ԗ���LhLKjKLhLKjK��	�"8w
s%(�")v

�
>�
	�"8x
s"+�")v
�<�
��3zLLz3��
3>8L3)x3
��3zLLz3��
3>8L3)x3
�Ԗ�Ԗ�4LL45KK54LL45KK���
#)0C

wZl/
�
Y�	
N,&�
#)0C	vZl.
�
Y�	
L0"��qG^^Gq�q$ ]G)Fq�qG^^Gq�q$ ]G)Fq��%O#"'#"&'&4>7>7.546$ '&'&'# '32$7>54'�����VZ|�$2$
|��E~E<�|
$2$�|ZV���:�(t}�������X(	
&%(H�w�쉉��x�H(%&	(X�ZT\�MKG���<m$4&"24&#!4654&#+32;254'>4'654&'>7+"&'&#!"&5463!6767>763232&4&&4�N2��`@`%)7&,$)'  
%/0Ӄy�#5 +�1	&<��$]`�{t��5KK5$e:1&+'3T�F0�h��4&&4&�3M:�;b^v�+D2 5#$��I�IJ 2E=\$YJ!$MCeM��-+(K5�5K�K5y�*%A�u]c���=p4&"24&'>54'64&'654&+"+322654&5!267+#"'.'&'&'!"&5463!27>;2&4&&4�+ 5#bW���0/%
  ')$,&7)%`@``2N��h�0##�T3'"(0;e$��5KK5 t��ip��<&	1&4&&4&�#\=E2 JIURI��$#5 2D+�v^b;�:M2g�c]vDEA%!bSV2M�K5�5K(,,��MeCM$!J��@�#"&547&547%6@�?V��8������b%	I�)���94.""'."	67"'.54632>32�+C`\hxeH>Hexh\`C+�ED���4��
#L</��>�oP$$Po�>��Q|I.3MCCM3.I|Q����/����Z$_d�C�+I@$$@I+� (@%#!"&5463!2#!"3!:"&5!"&5463!462�
��w��w@

��B^^B 
���4&�@&&�&4 ` 
�w�w�
 
^B�@B^24��& &�& &�����%573#7.";2634&#"35#347>32#!"&5463!2���FtIG9;HI�x�I��<,tԩw�@w��w�w�z��4DD43EE�����ueB���&#1�s�@w��w�w�����.4&"26#!+"'!"&5463"&463!2#2��&�S3L�l&�c4LL4�4LL4c����@��&��&{�LhLLhL��'?#!"&5463!2#!"3!26546;2"/"/&47'&463!2��w��w��w��@B^^B@B^@�&4��t

r

��&&`��w��w@w�@^B��B^^B@R�&��t

r

��4&&@"&5!"&5463!462	#!"&54&>3!2654&#!*.54&>3!2���4&�@&&�&4 s�w��

@B^^B��

@w��4��& &�& &��3�@w�
 
^B�B^ 
�����
I&5!%5!>732#!"&=4632654&'&'.=463!5463!2!2�J���J���S��q*5&=CKu��uKC=&5*q͍S8( ^B@B^ (8���`N��`Ѣ�΀G�tO6)"M36J[E@@E[J63M")6Ot�G�(8`B^^B`8���%-3�%'&76'&76''&76'&76'&6#5436&76+".=4'>54'6'&&"."&'./"?+"&5463!2�
	2				5



	
	z<: Ʃw�
49[aA)O%-j'&]�]5r,%O)@a[9(	0BA;+


>HC�w��w�w��		5/)
	u

��@w��a-6O�UyU[q	( -	q[UyU�P6$C

+) (	
8&/
&��w�w������'?$4&"2$4&"2#!"&5463!3!267!2#!#!"&5!"'&762&4&&4&&4&&4�8(�@(88(�c==c�(8��*�&�&�*�6�&4&&4&&4&&4& ��(88(@(88HH88`(�@&&�('��@����1d4&'.54654'&#"#"&#"32632327>7#"&#"#"&54654&54>76763232632


	N<�;+gC8�A`1a9�9�g��w����|�9�8aIe$I�VN��z<�:LQJ
	�,�-[%	061I��(�)W,$-������7,oIX(�)o�ζA;=N0
eTZ

(���O#".'&'&'&'.54767>3232>32�e^\3@P	bM���O0#382W#& 9C9
Lĉ"	82<*9FF(W283#0O�Mb	P@3\^eFF9*<28	"��L
9C9 &#��!"3!2654&#!"&5463!2`��B^^B@B^^ީw��w��w@w�^B��B^^B@B^���w��w@w�����#!72#"'	#"'.546763���YY�!''!0#�G�G$/!''!�&�UU�jZ	
8"��"8
 ��X!	
8"	"8
	���EU4'./.#"#".'.'.54>54.'.#"32676#!"&5463!2G55
:8c�7
)1)

05.D
<9�0)$9��w�@w��w�w�W+
AB
7�c
)$+
-.1 �9$)0���<
D.59�@w��w�w��,T1# '327.'327.=.547&54632676TC_L��Ҭ���#+�i�!+*p�DNBN,y[����`m`%i]hbE����m��}a�u&,�SXK��
&$��f9s?
_���#"!#!#!54632��V<%'����Э��HH���	�(ں����R&=4'>54'6'&&"."&'./"?'&54$ ���49[aA)O%-j'&]�]5r,%O)@a[9(	0BA;+


>HC���a�a����oM�a-6O�UyU[q	( -	q[UyU�P6$C

+) (	
8&/
&fM���a�����%+"&54&"32#!"&5463!54 �&@&�Ԗ`(88(�@(88(�r��&&j��j�8(��(88(@(8��������#'+2#!"&5463"!54&#265!375!35!�B^^B��B^^B
�

��
`���^B�@B^^B�B^�
��
�
`��
�������!="&462+"&'&'.=476;+"&'&$'.=476;�p�pp�p�$���!�$qr�
�%���}�#ߺ���pp�p��!�E$�
�rq�ܢ#���
%�
ֻ��!)?"&462"&4624&#!"3!26!.#!"#!"&547>3!2/B//B//B//B�
�@

�
�2�����^B�@B^�\77\�aB//B//B//B/�@

��
��

�~��B^^B@2^5BB5��2���.42##%&'.67#"&=463! 2�5KK5L4�_�u:B&1/&��.-
zB^^B���4L��v��y�KjK��4L[!^k'!A3;):2*�<vTq6^B�B^�L4�$���)��*@��A4#"&54"3!4."#!"&5!"&5>547&5462�;U gI�v��0Z���Z0�L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig0,3lb??bl3���4Lj��jL4*\���(88(�����\���}I/#"/'&/'&?'&'&?'&76?'&7676767676`�
(�5)�0
)��*)
0�)5�(
��
(�5)�0
))��))
0�)5�(
��*)
0�)5�(��
)�5)�0
)*��*)
0�)5�)
��
)�5)�0
)*���5h$4&"24&#!4>54&#"+323254'>4'654&'!267+#"'&#!"&5463!2>767>32!2&4&&4�N2��$YGB
(HGEG  H��Q�#5K4L��i�!<�����;��5KK5 
A#
("/?&}�vh��4&&4&�3M95S+C=�,@QQ9��@@�IJ 2E=L5i�>9eM��E;K5�5K	J7R>@#�zD<����7?s%3#".'.'&'&'.#"!"3!32>$4&"2#!"#"&?&547&'#"&5463!&546323!2`  #A<(H(GY$��2NL4K5#aWTƾh&4&&4�K5��;����=!�i��hv�}&?/"(
#A
 5K��2*!Q@.'!&=C+S59M34L=E2 JI UR@@&4&&4&���5K;E��Lf9>�ig�<Dz�#@>R7J	K�5h4&"24#"."&#"4&#"".#"!54>7#!"&54.'&'.5463246326326&4&&4��IJ 2E=L43M95S+C=�,@QQ9�@@�E;K5��5K	J7R>@#�zD<�gi�>9eM��Z4&&4&<�#5K4LN2��$YGB
(HGEG  H��V���;��5KK5 
A#
("/?&}�vh��i�!<��4<p4.=!32>332653272673264&"2/#"'#"&5#"&54>767>5463!2�@@��2*!	Q@.'!&=C+S59M34L.9E2 JI UR�&4&&4&��Lf6A�ig�6Jy�#@>R7J	K5�5K;E@TƾH  #A<(H(GY$��2NL4K#5#a=4&&4&�D��=�i��hv�}&?/"(
#A
 5KK5��;�����+54&#!764/&"2?64/!26 $$ &�
�[6��[[j6[��&���^����a�a@�&�4[��[6[��[6�&+�^����a�a�����+4/&"!"3!277$ $$ [��6[��
&&��[6j[
���^����a�ae6[j[6�&�&�4[j[��^����a�a�����+4''&"2?;2652?$ $$ ��[6[��[6�&�&�4[���^����a�af6j[[��6[��
&&��[��^����a�a�����+4/&"4&+"'&"2? $$ [6�&�&�4[j[6[j���^����a�ad6[��&&�
�[6��[[j��^����a�a������  $2>767676&67>?&'4&'.'.'."#&6'&6&'3.'.&'&'&&'&6'&>567>#7>7636''&'&&'.'"6&'6'..'/"&'&76.'7>767&.'"76.7"7"#76'&'.'2#22676767765'4.6326&'.'&'"'>7>&&'.54>'>7>67&'&#674&7767>&/45'.67>76'27".#6'>776'>7647>?6#76'6&'676'&67.'&'6.'.#&'.&6'&.5/�a����^����D&"	


	4
	$!	#
	
		
	



 
.0"�Y
	+


!	
	

$	
	"
+


		
	�Α	
		
����^����a�a��

	

			
	

	

		
	
		P� '-(	#	*
$

"
!				
*
!	

(				

	
��$�
		
2
�~�/$4&"2	#"/&547#"32>32�&4&&4��V%54'j&&�'��/덹���:,���{	&4&&4&�V%%l$65&�b��'C��r!"��k[G�+;%!5!!5!!5!#!"&5463!2#!"&5463!2#!"&5463!2����������&��&&�&&��&&�&&��&&�&�������@�&&&&�&&&&�&&&&��{#"'&5&763!2{�'
��**�)��*��)'/!5!#!"&5!3!26=#!5!463!5463!2!2���^B�@B^�&@&`��^B`8(@(8`B^��� B^^B�&&�����B^�(88(�^���G	76#!"'&?	#!"&5476	#"'&5463!2	'&763!2#"'��c�)'&�@*������*�@&('�c���(&�*�cc�*�&'
����*�@&('�c���'(&�*�cc�*�&('���c�'(&�@*��19AS[#"&532327#!"&54>322>32"&462 &6 +&'654'32>32"&462Q�g�Rp|Kx;CB��y��y� 6Fe=
BP���PB
=eF6 ��Ԗ��V����>!pR�g�QBC;xK|��Ԗ���{QNa*+%��x��x5eud_C(+5++5+(C_due2Ԗ�Ԗ�����>�NQ{u�%+*jԖ�Ԗ��p�!Ci4/&#"#".'32?64/&#"327.546326#"/&547'#"/&4?632632��(* 8(!�)(��A�('��)* 8(!U�SxyS�SXXVzxT�TU�SxyS�SXXVzxT�@(� (8 *(���(��'(�(8 ���S�SU�Sx{VXXT�T�S�SU�Sx{VXXT���#!"5467&5432632�������t,Ԟ;F`j�)��������6�,��>�jK?�s��
�!%#!"&7#"&463!2+!'5#�8Ej��jE8�@&&&&@������XYY�&4&&4&�qD�S�%��q%��N\jx��2"&4#"'#"'&7>76326?'&'#"'.'&676326326&'&#"32>'&#"3254?''7�4&&4&l��
�NnbS���VZbR��SD	
zz
	DS��Rb)+U���Sbn�
��\.2Q\dJ'.2Q\dJ.Q2.'Jd\Q2.'Jd`!O�`��	`�����&4&&4�r$#@�B10M�5TNT{L�5T
	II	
T5�L;l'OT4�M01B�@#$�*�3;$*�3;�;3�*$;3�*$�:$/� @@�Qq`��@���"%3<2#!"&5!"&5467>3!263!	!!#!!46!#!�(88(�@(8��(8(�`(�(8D<���+����+�<��8(�`(��8(�`�8(�@(88( 8(�(`�(8(��(������<��`(8��(`����`(8����||?%#"'&54632#"'&#"32654'&#"#"'&54632|�u�d��qܟ�s]
=
��Ofj�L?R@T?��"&�
>
�f?rRX=Ed�u�ds���q��
=
_M�jiL��?T@R?E& �f
>
�=XRr?��b���!1E)!34&'.##!"&5#3463!24&+";26#!"&5463!2����
��
08(��(8��8(@(8��
�

�
�8(��(88(�(`(����1

�`(88(���(88(@

��
�`(88(@(8(��`���#!"&5463!2�w�@w��w�w�`�@w��w�w��/%#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&��&&�&&�&&�&&�&&�&&��@'7G$"&462"&462#!"&=463!2"&462#!"&=463!2#!"&=463!2�p�pp�pp�pp��
�@

�
��p�pp��
�@

�

�@

�
Рpp�p��pp�p���

�
�pp�p���

�
�

�
��<L\l|#"'732654'>75"##5!!&54>54&#"'>3235#!"&=463!2!5346=#'73#!"&=463!2#!"&=463!2}mQjB919+i1$AjM_3<��/BB/.#U_:IdDRE�
�@
�
����k*G�j�
�@
�

�@

�
TP\BX-@8
C)5�XsJ@�$3T4+,:;39SG2S.7<���

�vcc)�(%L�l�}�

��

�
���5e2#!"&=463%&'&5476!2/&'&#"!#"/&'&=4'&?5732767654'&��@�0��2uBo
T25XzrDCBB�Eh:%��)0%HPIP{rQ�9f#-+>;I@KM-/Q"�@@@#-a[��$&P{<�8[;:XICC>.�'5oe71#.0(
l0&%,"J&9%$<=DTI���cs&/6323276727#"327676767654./&'&'737#"'&'&'&54'&54&#!"3!260%
<4�"VRt8<@<
-#=XYhW8+0$"+dT�Lx-'I&JKkm��uw<=V�@�!X@		v
'��|N;!/!$8:I�Ob�V;C#V

&
(���mL.A:9 !./KLwP�M�$��@@
��/?O_o��%54&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!26#!"&5463!2��@��@��@���@��@��@���@��@��@�^B��B^^B@B^�����������������������������N��B^^B@B^^���#+3	'$"/&4762%/?/?/?/?�%k��*��6�6��bbbb|��<<��<�bbbb��bbbb�%k���6���6Ƒbbb��<<��<<�^bbbbbb@��M$4&"2!#"4&"2&#"&5!"&5#".54634&>?>;5463!2�LhLLh����
	�	LhLLhL!'�Ԗ���Ԗ@'!&	
�?�&&LhLLhL�	�	
��hLLhL��	j��jj��j	&@6/"
��&&���J#"'676732>54.#"7>76'&54632#"&7>54&#"&54$ ���ok;	-j=y�hw�i�[+PM3ѩ���k=J%62>Vc��a�aQ�^��� ]G"�'9��r�~:`}�Ch�  0=Z�٤���W=#uY2BrUI1�^Fk[|��a�����L2#!67673254.#"67676'&54632#"&7>54&#"#"&5463�w��w�+U	,i<��F{�jh�}Z+OM

2ϧ���j<J%51=Ub�w��w��w�@w�zX"�'8'�T�yI9`{�Bf� 
,>X�բ���W<"uW1AqSH1�bd��w�w����'74'!3#"&46327&#"326%35#5##33#!"&5463!2����0U6c��c\=hl���ࠥ�Ymmnnnn�w�@w��w�w�w&�46#�Ȏ;ed����wnnnnn��@w��w�w����	]#/#"$&6$3 &#"32>7!5!%##5#5353����Е���tt����u�{�zz�{S�ZC�`�c�����o���t�*�t��q|��|.EXN#�??�������,<!5##673#$".4>2"&5!#2!46#!"&5463!2��r�M*
�*M~�~M**M~�~M*j����jj����&�&&&�`��P%��挐|NN|���|NN|�*�jj���jj�@��&&�&&@�
"'&463!2�@4�@&�Z4�@�4&@
#!"&4762&��&�4�Z4&&4��@@���
"'&4762�&4�@�4&@��&�4�&�@�
"&5462@�@4&&4��4�@&�&�@����
3!!%!!26#!"&5463!2�`��m��`
�^B��B^^B@B^���
 `���@B^^B�B^^��@
"'&463!2#!"&4762�@4�@&�&&��&�4��4�@�4&Z4&&4��@��
"'&463!2�@4�@&��4�@�4&@
#!"&4762&��&�4�Z4&&4��@��:#!"&5;2>76%6+".'&$'.5463!2^B�@B^,9j�9Gv33vG9�H9+bI��\
A+=66=+A
[��">nSM�A_:��B^^B1&�c*/11/*{�'VO�3��@/$$/@�*�?Nh^��l+!+"&5462!4&#"!/!#>32]��_gTRdg�d���QV?U��I*Gg?����!�2IbbIJaa���iwE33����00� 08����4#"$'&6?6332>4.#"#!"&54766$32z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������z��
�	
_hQ��н�QGB�'(&�*�eoz�(���q!#"'&547"'#"'&54>7632&4762.547>32#".'632�%k'45%��&+�~(
(�h		&

\(
(�		&

~+54'k%5%l%%l$65+~

&		�(
(\

&		�h(
(~�+%��'��!)19K4&"24&"26.676&$4&"24&"24&"2#!"'&46$ �KjKKjKjKKj�e2.e<^P��,bKjKKj��KjKKjKjKKj��#��#���LlL�KjKKjKjKKjK��~-��M<M�(PM<rjKKjK�jKKjKujKKjK�������L���< 6?32$6&#"'#"&'5&6&>7>7&54$ L�h��я�W.�{+9E=�c��Q�d�FK��1A
0)���������p�J2`[Q?l&������٫�C58.H(Y��'����:d 6?32$64&$ #"'#"&'&4>7>7.546'&'&'# '32$7>54'Y����j`a#",5NK�
����~E�����VZ|�$2$
|��:
$2$�|ZV���:�(t}�����h�fR�88T
h�̲����X(	
&%(H�w��(%&	(X�ZT\�MKG�{x��|�!#"'.7#"'&7>3!2%632u��

�j
�H����{(e9
�1b���U#!"&546;5!32#!"&546;5!32#!"&546;5463!5#"&5463!2+!2328(��(88(`�`(88(��(88(`�`(88(��(88(`L4`(88(@(88(`4L`(8 ��(88(@(8��8(��(88(@(8��8(��(88(@(8�4L�8(@(88(��(8�L4�8����OY"&546226562#"'.#"#"'.'."#"'.'.#"#"&5476$32&"5462��И&4&NdN!>!
1X:Dx++w�w++xD:X1
-�U��
�!�*,*&4&��h��h&&2NN2D&

..J<
$$
<JJ<
$$
<J..

��P���bb&&�7!!"&5!54&#!"3!26!	#!"&=!"&5463!2��`(8��
�@

�
+��8(�@(8��(88(@(8�(��8(� @

@
�m+�U�`(88(�8(@(88(��
�h`���(\"&54&#"&46324."367>767#"&'"&547&547&547.'&54>2�l4

2cK�Eo���oED
)
�
�
�
)
D�g-;</-
?.P^P.?
-/<;-gY�����Y�

.2 L4H|O--O|HeO,����,Oe�q1Ls26%%4.2,44,2.4%%62sL1q�c�qAAq����4#!#"'&547632!2#"&=!"&=463!54632
��
��		@	
`
	��	
��

`?`�
�

@	
	@	
�!	��	
�
�
�
����54&+4&+"#"276#!"5467&5432632�
�
�
	`		_
�������v,Ԝ;G_j�)��``

��
	��		_ԟ����7
�,��>�jL>���54'&";;265326#!"5467&5432632	��		��
�
�
�
�������v,Ԝ;G_j�)���	`		����

`������7
�,��>�jL>�����X`$"&462#!"&54>72654&'547 7"2654'54622654'54&'46.' &6 �&4&&4&�y��y�%:hD:Fp�pG9�F�j� 8P8 LhL 8P8 E;
Dh:%������>�4&&4&}y��yD~�s[4D�d=PppP=d�>hh>@�jY*(88(*Y4LL4Y*(88(*YDw"
A4*[s�~����>�����M4&"27 $=.54632>32#"' 65#"&4632632 65.5462&4&&4�G9��������&
<#5KK5!��!5KK5#<
&ܤ��9Gp�p&4&&4&@>b�u��ោؐ&$KjK�nj��j�KjK$&����j��j�b>Ppp���
%!5!#"&5463!!35463!2+32����@\��\���8(@(8�\@@\������\@\���(88(��\��@��34#"&54"3#!"&5!"&5>547&5462�;U gI@L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig04Lj��jL4*\���(88(�����\��@"4&+32!#!"&+#!"&5463!2�pP@@P���j�j�@�@�\�@\�&��0�p����j��	��� \��\�&��-B+"&5.5462265462265462+"&5#"&5463!2�G9L4�4L9G&4&&4&&4&&4&&4&L4�4L�
��&���=d��4LL4d=�&&�`&&�&&�`&&�&&��4LL4
 ��&�#3CS#!"&5463!2!&'&!"&5!463!2#!"&52#!"&=4632#!"&=463�(8(��(88(�(`�x
��c�`(8���@��@��@�`(��(88(@(8(D��9�8(��`@�@@�@@��/?O_o��������-=%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!!5463!2#!"&5463!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
�����
@
&�&&&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
����

`��&&�&&
��/?O_o�����%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!#!"&=!!5463!24&+"#54&+";26=3;26%#!"&5463!463!2!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
���8(�@(8��
@

@
�
@

@
�
@
&�&&@8(�(8@&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
��� (88( ���

�@

``

��

``
-�&&& (88(��&@����<c$4&"2!#4&"254&+54&+"#";;26=326+"&5!"&5#"&46346?>;463!2�KjKKj�����KjKKj�������&��Ԗ���Ԗ�&&�@�&�&KjKKjK��
��jKKjK ������.��&j��jj��j&4&�@�@&&���#'1?I54&+54&+"#";;26=326!5!#"&5463!!35463!2+32����������� \��\����8(@(8�\  \����������\@\���(88(��\����:
#32+53##'53535'575#5#5733#5;2+3����@��E&&`�@@��`  ����  `��@@�`&&E%@�`@ @ @��		 �� � � � �� 		��@ :#@��!3!57#"&5'7!7!��K5�������@ � � @���5K�@����@@��� �����#3%4&+"!4&+";265!;26#!"&5463!2&�&�&�&&�&&�&�w�@w��w�w���&&��@&&��&&@��&&��@w��w�w�����#354&#!4&+"!"3!;265!26#!"&5463!2&��&�&��&&@&�&@&�w�@w��w�w�@�&@&&��&�&��&&@&:�@w��w�w��-M�3)$"'&4762	"'&4762	s
2

�.

�

2

�w��
2

�.

�

2

�w��
2

�

�

2

�w�w

2

�

�

2

�w�w
M�3)"/&47	&4?62"/&47	&4?62S
�.

2

��w

2

��
�.

2

��w

2

�M
�.

2

��

2

�.

�.

2

��

2

�.M�3S)$"'	"/&4762"'	"/&47623
2

�w�w

2

�

�

2

�w�w

2

�

��
2

��w

2

�

�.v
2

��w

2

�

�.M�3s)"'&4?62	62"'&4?62	623
�.

�.

2

��

2

�.

�.

2

��

2�
�.

�

2

�w�

2v
�.

�

2

�w�

2-Ms3	"'&4762s
�w�

2

�.

�

2�
�w�w

2

�

�

2
MS3"/&47	&4?62S
�.

2

��w

2

�M
�.

2

��

2

�.M
3S"'	"/&47623
2

�w�w

2

�

�m
2

��w

2

�

�.M-3s"'&4?62	623
�.

�.

2

��

2-
�.

�

2

�w�

2���/4&#!"3!26#!#!"&54>5!"&5463!2
��

@
�^B��  &�&  ��B^^B@B^ @

��
M��B^%Q=
&&<P&^B@B^^�+3"&5463!2#3!2654&#!"3#!"&=324+"3�B^^B@B^^B��
@

��
`�^B��B^�p�^B�B^^B�@B^`�@

�
�S`(88(``  ��'$4&"2%4&#!"3!26#!"&5463!2�&4&&4�
��

@
�^B��B^^B@B^f4&&4&��

�@
��B^^B@B^^/$4&"2%4&#!"3!264+";%#!"&5463!2�/B//B�
�


���0L4�4LL44L_B//B/��

�@
M   �4LL44LL���  >& $$ ������(���r���^����a�a��������(���^����a�a����!C#!"&54>;2+";2#!"&54>;2+";2pP��PpQ��h@&&@j�8(�Pp�pP��PpQ��h@&&@j�8(�Pp@��PppP�h��Q&�&�j (8pP��PppP�h��Q&�&�j (8p��!C+"&=46;26=4&+"&5463!2+"&=46;26=4&+"&5463!2Q��h@&&@j�8(�PppP�Pp�Q��h@&&@j�8(�PppP�Pp��@h��Q&�&�j (8pP�PppP�@h��Q&�&�j (8pP�Ppp@�@�	#+3;G$#"&5462"&462"&462#"&462"&462"&462"&462#"&54632K54LKj=KjKKj��KjKKj�L45KKjK�<^�^^��KjKKj��p�pp���\]��]\��jKL45K��jKKjKujKKjK��4LKjKK�^^�^��jKKjK��pp�p�r]��]\����� $$ ���^����a�aQ�^����a�a�����,#"&5465654.+"'&47623 #>bq��b�&4�4&�ɢ5����"		#D7e�uU6�&4&��m����1X".4>2".4>24&#""'&#";2>#".'&547&5472632>3�=T==T=�=T==T=��v)�G�G�+v�@b��R�R��b@�=&����\N����j!>�3l�k����i�k3�hPTDDTPTDDTPTDDTPTDD|x��xX�K--K��|Mp<#	)>dA{��RXtfOT# RNftWQ���,%4&#!"&=4&#!"3!26#!"&5463!2!28(�@(88(��(88(�(8��\�@\��\@\��\���(88(@(88(�@(88�@\��\�\��\ �u�'E4#!"3!2676%!54&#!"&=4&#!">#!"&5463!2!232�5��([��5@(\&��8(��(88(��(8,�9.��+�C��\��\@\� \��6Z]#+��#,k��(88(@(88(��;5E�>:��5E�\�\��\ �\�1. ���$4@"&'&676267>"&462"&462.  > $$ n%��%/���02�
KjKKjKKjKKjKf���ff�������^����a�a�y��y/PccP/�jKKjKKjKKjK���ff���ff�@�^����a�a�����$4@&'."'.7>2"&462"&462.  > $$ n20���/%��7KjKKjKKjKKjKf���ff�������^����a�a3/PccP/y��	jKKjKKjKKjK���ff���ff�@�^����a�a�����+7#!"&463!2"&462"&462.  > $$ �&��&&��&KjKKjKKjKKjKf���ff�������^����a�a�4&&4&�jKKjKKjKKjK���ff���ff�@�^����a�a���#+3C54&+54&+"#";;26=3264&"24&"2$#"'##"3!2@������@KjKKjKKjKKjK����ܒ���,����������gjKKjKKjKKjK�X�Ԁ�,�,��#/;GS_kw�����+"=4;27+"=4;2'+"=4;2#!"=43!2%+"=4;2'+"=4;2+"=4;2'+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;54;2!#!"&5463!2�``����``��`��``�``�``�``�``�``�````�p`���K5��5KK5�5Kp``�``�``��``�``�``��``�``��``��``�````��`��������5KK5�5KK@���*V#"'.#"63232+"&5.5462#"/.#"#"'&547>32327676���R?d�^��7ac77,9x�m#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�h[ 17��q%q#:��:#5KKu�'t#!X:	%�#+=&>7p@���*2Fr56565'5&'.	#"32325#"'+"&5.5462#"/.#"#"'&547>32327676@��ͳ�����8
2.,#,f�k*1x���-!���#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�e�`��v�o�8�t-�	�:5	��[�*�#:��:#5KKu�'t#!X:	%�#+=&>7p
�3$	"/&47	&4?62#!"&=463!2I�.

2

��w

2

�
-�@�)�.

2

��

2

�.
�-@@-��S�$9%"'&4762		/.7>	"/&47	&4?62i2

�.

�

2

�w�
E��>

u>

��.

2

��w

2

�
�2

�

�

2

�w�w
!��




�h�.

2

��

2

�.
���;#"'&476#"'&7'.'#"'&476�'
�)'�s
"+5+�@ա'
�)'����F*4*E�r4�M:�}}8��GO
�*4*������~�
(-/'	#"'%#"&7&67%632���B�;><���V�?�?V�� -����-C�4
<B�=�cB5���!%��%!�b 7I�))�9I7���	#"'.5!".67632y��(
��#

��##@,(
�)���8!	!++"&=!"&5#"&=46;546;2!76232-S��S����������S�

		��S��S�`���`���		

������K$4&"24&"24&"27"&5467.546267>5.5462 8P88P88P88P�8P88P�4,�D��S,4p�p4,,4p�p4,6d7AL*',4p�pP88P8�P88P8HP88P8`4Y��&+(>EY4PppP4Y4Y4PppP4Y�%*<O4Y4Ppp���&A]iu�	#"'&4762"&5462&#!"&463!2#"'&'7?654'7&#"&'&54?632#!"&463!2"&5462"'&4762��

		

	����@U�SxyS���R���#PT����('�#��TU�SxySN���@����		

		�		

		
3��@��xS�SUO#���'(���V^�'(���PVvxS�SU��i��@��		

		
`�<+"&=46;2+"&=467>54&#"#"/.7!2���<'G,')7��N;2]=A+#H

�
�0P��R��H6^;<T%-S�#:/*@Z}


>h���.%#!"&=46;#"&=463!232#!"&=463!2�&�&&@@&&�&@&�&�&&&��&&�&�&�&&��&f�&&�&&b�#!"&=463!2#!"&'&63!2&�&&&'�'%@% �&&�&&�&&&&�k"G%#/&'#!53#5!36?!#!'&54>54&#"'6763235���	
����Ź���}���4NZN4;)3.i%Sin�1KXL7觧�*	��#��&		*������@jC?.>!&1'\%Awc8^;:+<!P��"F%#/&'#!53#5!36?!#!'&54>54&#"'6763235���	
����Ź���}���4NZN4;)3.i%Pln�EcdJ觧�*	��#��&		*������-@jC?.>!&1'\%AwcBiC:D'P%!	#!"&'&6763!2�P������&:�&?�&:&?����5"K�,)""K,)���h#".#""#"&54>54&#"#"'./"'"5327654.54632326732>32�YO)I-D%n "h.=T#)#lQTv%.%P_�	%	
%�_P%.%vUPl#)#T=@�/#,-91P+R[�Ql#)#|'�'
59%D-I)OY[R+P19-,##,-91P+R[YO)I-D%95%�_P%.%v���'3!2#!"&463!5&=462 =462 &546 ����&&��&&��&4&r&4&�������@����&4&&4&�G݀&&������&&f��������
��sCK&=462	#"'32=462!2#!"&463!5&'"/&4762%4632e*&4&i����76`al�&4&���&&��&&}n�

R

�

R
�z����f�Oego�&&�5�����`3��&&����&4&&4&�
D�

R

�

R
z����v���"!676"'.5463!2@�@w^�Cc�t~55~t�cC&�&@���?J���V��|RIIR|��V&&��#G!!%4&+";26%4&+";26%#!"&546;546;2!546;232�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�� �� ��N�4LL44L`B^^B``B^^B`L����L4&"2%#"'%.5!#!"&54675#"#"'.7>7&5462!467%632&4&&4��@�o�&�&}c ;pG=(
8Ai8^�^.�&4&&4&`��	`f�s��&& j�o/;J!#2
 KAE*,B^^B!`	$� ��-4&"2#"/&7#"/&767%676$!2�8P88P��Qr��	@
U���	@�
{`P�TP88P8�����P`��
�	@U	@�rQ���!6'&+!!!!2Ѥ���
8�������̙�e�;<*��@8 !�G��G�GQII���� %764'	64/&"2 $$ �f��3f4�:�4����^����a�a�f4334f�:4�:�^����a�a����� %64'&"	2 $$ ���:4f3��f4F���^����a�a��4�f4���4f�^����a�a����� 764'&"27	2 $$ �f�:4�:f4334����^����a�a�f4��:4f3���^����a�a����� %64/&"	&"2 $$ -�f4���4f�4����^����a�a��4f��3f4�:w�^����a�a���@��7!!/#35%!'!%j��/d��
�jg2�|�8�����������55���dc ��b���@��!	!%!!7!���FG)��D�H:�&�H����d���S)��U4&"2#"/ $'#"'&5463!2#"&=46;5.546232+>7'&763!2�&4&&4f
]w�q�4�qw]	`dC���&&�:F�ԖF:�&&���Cd`�4&&4&����	]����]	`d[}�&�&�"uFj��jFu"�&�&�y}[d�#2#!"&546;4 +"&54&" (88(�@(88( r&@&�Ԗ8(��(88(@(8@����&&j��j�����'3"&462&    .  > $$ �Ԗ������>a��X��,��f���ff�������^����a�a�Ԗ�Ԗ�a>����T�X��,�,�~�ff���ff�@�^����a�a����/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88(�(88(�(88(�(88(�(88��/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88�(88(�(88�(88(�(88���5E$4&"2%&'&;26%&.$'&;276#!"&5463!2KjKKj�
���
��
�
f���	

�\�
�
�w�@w��w�w��jKKjK"�H

�
ܚ

��f


�
���

	�@w��w�w�����  $64'&327/�a����^�����  ��!  ����^����a�a��J@%��%	6�5��/	64'&"2	"/64&"'&476227<���ij��6��j6��u%k%~8p�8}%%�%k%}8p�8~%<���<�ij4j��4����t%%~8�p8~%k%�%%}8�p8}%k���54&#!"3!26#!"&5463!2&��&&�&�w�@w��w�w�@�&&�&&:�@w��w�w����/#!"&=463!24&#!"3!26#!"&5463!2���@�^B��B^^B@B^��w��w��w@w��@@�2@B^^B��B^^���w��w@w���+#!"'&?63!#"'&762�(��@�	@�(@>@�%����%%��� ���!232"'&76;!"/&76 �
�($��>��(����
		��J ���&%�����$%64/&"'&"2#!"&5463!2�ff4�-�4ff4f�w�@w��w�w��f4f�-�f4����@w��w�w�����/#5#5'&76	764/&"%#!"&5463!2��48`���
#�� ����\�P\��w�@w��w�w���4`8�
��
#�@  ���`\P�\`�@w��w�w�����)4&#!"273276#!"&5463!2&� *���f4�
'�w�@w��w�w�`�&')���4f�*�@w��w�w�����%5	64'&"3276'7>332#!"&5463!2�`��'(wƒa8!
�
,j.��(&�w�@w��w�w��`4`*�'?_`ze<��	bw4/�*��@w��w�w�����-.  6 $$ ���� �������(�r���^����a�a���O����(��������_�^����a�a�����
-"'&763!24&#!"3!26#!"&5463!2y��B��(�(�
�@

�
�w�@w��w�w�]#�@�##� �

�@
�@w��w�w�����
-#!"'&7624&#!"3!26#!"&5463!2y(��(@B@u
�@

�
�w�@w��w�w��###��@���

�@
�@w��w�w�����
-'&54764&#!"3!26#!"&5463!2@�@####���@��w�@w��w�w��B��(�(������@�@w��w�w����`%#"'#"&=46;&7#"&=46;632/.#"!2#!!2#!32>?6�#
!"'�?_

BCbCa�f\	+
~�2�	
��
	�}0�$

��
q
90r�
�

�pr%Dpu���?#!"&=46;#"&=46;54632'.#"!2#!!546;2��D
a__����	g	

*`-Uh1

��������

�߫�}
	$^L��
���
4��b+"&=.'&?676032654.'.5467546;2'.#"�ǟ�
B{PDg	q�%%Q{%P46'-N/B).ĝ
�9kC<Q
7>W*_x*%K./58`7E%_���
�	,-3�
cVO2")#,)9;J)���
�"!*�
#VD,'#/&>AX��>++"''&=46;267!"&=463!&+"&=463!2+32��Ԫ�$
�	��	
p���U�9ӑ
@�/�*f�����o�	

VRfq
�f=S��E!#"&5!"&=463!5!"&=46;&76;2>76;232#!!2#![�
��

 ��

��
�
�%
)��
	���

��"

��Jg
Uh
B�W&WX���
hU
g��
�84&#!!2#!!2#!+"&=#"&=46;5#"&=46;463!2�j��@jo�����
������g�|�@��~�v����v�
u�n#467!!3'##467!++"'#+"&'#"&=46;'#"&=46;&76;2!6;2!6;232+32Q�Kt#�� ��#F�N�Qo!��"�դ��ѧ����!�mY

�Zga~bm]�

[o�"�U+��������,����� @��h��
h@�@X
��h��h
��@�8���3H\#5"'#"&+73273&#&+5275363534."#22>4.#2>��ut
3NtR�P*�H�o2

Lo�@!�R(�Ozh=�,G<X2O:&D1A.1G$<2I+A;"B,;&$��L��GlF/�����3�D�����;a��$8$��".�!3!
��.�3!#!"&5463!���8( 8(��(88( ��h (8��(88(@(8�(8H!!#!"&5463!54&#!"3!2654&#!"3!2654&#!"3!26��(D 8(��(88( 8��@��@��@�$����(88(@(8��(8� @@@@@@"�}
$BR3/&5##"'&76;46;232!56?5"#+#5!76;5!53'#3!533��H��
��

�����D��q		�x7��	���K/�/K��F��h�/"���		@`����Z		s�Y��w�jj��jj��j"�}
$4R%3/&5##"'&76;46;232!53'#3!533!56?5"#+#5!76;5��H��
��

��������K/�/K��F����q		�x7��	�h�/"���		@`����jj��jj��j�Z		s�Y��
w"�)9IY%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
��

����� ��@������@���`��		@`�����������"�)9IY#!"&=463!2%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2��� 
��

�������@��������@ ��r��		@`��r������"��
$CV%4&#"326#"'&76;46;232%#"'&'73267##"&54632!5346=#'73BX;4>ID2F��
��

������8PuE>.'%&TeQ,j��m{��+�>R�{�?jJrL6V��		@`��7>wmR1q
uW�ei��/rr�
:V��r"��
$7V4&#"326#"'&76;46;232!5346=#'73#"'&'73267##"&54632BX;4>ID2F��
��

������+�>R�{�8PuE>.'%&TeQ,j��m{��?jJrL6����		@`���rr�
:V��r3>wmR1q
uW�ei����@�\%4&#"326#!"&5463!2+".'&'.5467>767>7>7632!2&%%&�&��&& &�7.'	:@�$LB�WM{#&$h1D!		.I/!	Nr�&&%%��&&�&&V?, L=8=9%pEL+%�%r@W!<%*',<2(<&L,"r�@\#"&546324&#!"3!26%#!#"'.'.'&'.'.546767>;&%%&�&��&& &i7qN��	!/I.		!D1h$&#{MW�BL$�@:	'.�&&%%���&&��&&�=XNr%(M&<(2<,'*%<!W@r%�%+LEp%9=8=L ���	+=\d����%54#"327354"%###5#5#"'&53327#"'#3632#"'&=4762#3274645"=424'.'&!  7>76#'#3%54'&#"32763##"'&5#327#!"&5463!2��BB��PJN�C'%!	B?)#!CC $)�54f�"��@@
B+����,A

A+�&�+A
�
ZK35N #J!1331�CCC $)��w�@w��w�w��2��"33�F�Y�F~��(-&"��o�4*)$�(*�	(&;�;&&:LA38�33�4��S,;;,W��T+<<+T;(��\g7�x�:&&:�:&&<r����%-�@w��w�w����	+=[c}���#"'632#542%35!33!3##"'&5#327%54'&#"5#353276%5##"=354'&#"32767654"2 '.'&547>76 3#&'&'3#"'&=47632%#5#"'&53327�''RZZ�:k��id YYY.06�	62+YY-06	R[!.�'CD''EH$��VV�X:���:Y
X;��:Y
�fyd/%jG�%EC&&CE%O[52.
[$�C-D..D�^^���* l�y1%=^�I86�i077S
3
$EWgO%33%O�O%35	��EE�F�W�t;PP;p��t;PP;p�q��J�gT��F�Q%33&P�P%33%R�
7>%3���!+}��{�'+"&72'&76;2+"'66;2U
�&�
��	�(���P

�*��'�e�J."�-d�Z��-n �-���'74'&+";27&+";276'56#!"&5463!2�~�}�		�7��e �	���۩w�@w��w�w��"���
$Q#�'�!#
����@w��w�w��/4'&327$ '.'.4>7>76 �"!!jG�~�GkjG���Gk[J@&��&
@��l�AIddIA�l�l�AIddIA�@����	'5557	���,���VW�QV���.R���W��=���?��l��%l`��������~����0��!#!#%777	5!	������R!!�XC�C��fff�݀�#�� `��,��������{��{{�`��������/?%##"547#3!264&#"3254&+";267#!"&5463!2R��܂���#-$�䵀����(�((�(�tQ��QttQvQtn�?D~�|�D?�x##��������))�((�QttQvQtt���2#!"&54634&"2$4&"2�w��w�@w��w�|�||��|�||���w�@w��w�w����||�||�||�|���	!3	37! $$ �n6^�5�5^h
����^����a�a������M�1�^����a�a���P��
*Cg'.676.7>.'$7>&'.'&'? 7%&'.'.'>767$/u5'&$I7o�b?K�\[z�H,1���+.@\7<��?5\V
,$V��g.GR@ �7��U,+!�����
	#	"8$}�{)�<�?L RR;kr,yE[��z#	/1
"#	#�eCI0/"5#`�	��"8���4~&p)4	2�{�H-.%W.L>���':Yi4&67&'&676'.'>7646&' '7>6'&'&7>7#!"&5463!2PR$++'TJX�j7-F��C',��,&C
."��!$28��h�/���"�	+p��^&+3$
i��0(�w�@w��w�w��+.i6=Bn\C1XR:#"�'jj�8Q.cAj�57!?"0D��$4"P[
&2�@w��w�w��D��"%.5#5>7>;!!76�P�Yh�pN!�HrD0�M��
 C0N��#>8\xx: �W]oW-�X���45���/%'#.5!5!#"37>#!"&5463!2p>,;$4
��5eD�+W�cE���w�@w��w�w�K�()��F
,VhV��^9tjA0/�@w��w�w���@�#"'&76;46;23�
��


��
	���&��

��� ���++"&5#"&7632�	���
^


c
� �&�

��@�#!'&5476!2� &��

����
^


b	���'&=!"&=463!546�
��� �&�
�
��	���
��
��q&8#"'&#"#"5476323276326767q'T��1[VA=QQ3���qp�Hih"-bfGw^44O#A���?66%CKJ�A}}�  !"�䒐""A$@C3^q|�z=KK?6�lk)���%!%!��V��V��u��u�u^-�m5�w��}�n�����~7M[264&"264&"2"&546+"&=##"&5'#"&5!467'&766276#"&54632�  �  ��*<;V<<O@-K<V<�<+*<J.@�k��c�lG
H_�_H
�<+*<<*+<    �<*�R+<<+�*<�f.@�+<<+��+<<+�@.��7�uu�7�
�**�
���R+<<+�+;;	��"$1G�#5472&6&67><&4'>&4.'.'.'.'.'&6&'.'.6767645.'#.'6&'&7676"&'&627>76'&7>'&'&'&'&766'.7>7676>76&6763>6&'&232.'.6'4.?4.'&#>7626'.'&#"'.'.'&676.67>7>5'&7>.'&'&'&7>7>767&'&67636'.'&67>7>.'.67�	\
��U7	
J#!W!'	

"';%

k	)"	
	'


/7* 		I	,6
*&"!

O6*
O $.(�	*.'

.x�,	$CN��	
�		*	�
8
		
7%&&_f&
",VL,G$3�@@$+
"


V5 3"	
""�#dA++
y0D-%&n4P'A5j$9E#"c7Y
6"	&
8Z(;=I50' !!e
�R

��
"+0n?�t(-z.'<>R$A"24B@(	~	9B9,	*$		
		<>	?0D�9f?Ae �	.(;1.D	4H&.Ct iY% *	�
7��


��
J	 <
W0%$	
""I!
*D	 ,4A'�4J"	.0f6D�4p�Z{+*�D_wqi;�W1G("%%T7F}AG!1#% JG3��� '.2>Vb%&#'32&'!>?>'&' &>"6&#">&'>26 $$ *b6�~�#��= ���XP2��{&%gx|�� .���W)o���O��LO�sEzG<��	CK}E	$MFD<5+
z���^����a�a$�MW�M��1>]|�YY�^D
�եA��<��K�m����E6<�"�@9I5*�^����a�a�����>^4./.543232654.#"#".#"32>#"'#"$&547&54632632�':XM1h*�+D($,/9p�`D�oC&JV<�Z PA3Q1*223�I�oBkែhMI����oPែhMI��oP�2S6,M!"@-7Y.?oI=[<%$('3 -- <-\�%Fu���Po��IMh���Po����IMh,���#?D76&#!"7>;267676&#!"&=463!267
#!"'&5463!26�%�8#!�
��&&Z"�M>2!��
	�^I7LRx_@�>MN�""��`�=&&*%�I�}��,
	�	L�7_jj��9����/%4&#!"3!264&#!"3!26#!"&5463!2�� ��� ��&��&&�&��������&&�&&��19#"'#++"&5#"&5475##"&54763!2"&4628(3�-�	&�B.�.B�&	�-�3(8Ig�gI�`������(8+U��e&��.BB.&����+8(�kk��`�������%-"&5#"&5#"&5#"&5463!2"&4628P8@B\B@B\B@8P8pP�Pp�����@�`(88(`�p.BB.�0.BB.���(88(�Pppͺ�������!%>&'&#"'.$ $$ ^/(V=$<;$=V).X���^����a�a��J`"(("`J��^����a�a��,���I4."2>%'%"/'&5%&'&?'&767%476762%6�[���՛[[���՛o��
�ܴ
 
���
��	��	$
$�	"	�$
$	��	�՛[[���՛[[�5`��

^�

�^

2`��
`2

^��^

��`
�����1%#"$54732$%#"$&546$763276�68��ʴh�f�킐&^�����zs��,!V[���vn)�	�6���<��ׂ�f{���z����}))N�s���3(@����+4&#!"3!2#!"&5463!2#!"&5463!2@&�&&f&��&&�&@&�&&&�4&&4&�@&&�&&��&&&& ��`�BH+"/##"./#"'.?&5#"&46;'&462!76232!46 `&�C�6�@Bb0�3eI;��:�&&�&4�L�4&���F���
�Z4&�w�4�) ���''
�5�r�&4&&�4&��&4��������}G�3#&/.#./.'&4?63%27>'./&'&7676>767>?>%6}�)N@�2*&�@P9A
#sG�q]
#lh�<*46+(
	
<
5�R5"*>%</
 '2�@� 5d)(=�Z&VE/#E+)AC
(���	2k<X1$:hI(B
"	!:4Y&>"/	+[>hy
	���K
!/Ui%6&'&676&'&6'.7>%.$76$% $.5476$6?62'.76&&'&676%.76&'..676�#"NDQt	
�-�okQ//�jo_	������	���%&J�������Ղ���YJA-��.--
9\DtT+X?*<UW3'	26$>>�W0{�"F!"E �

^f`$"�_]\�<`�F�`�F�D��h>Cw�ls���J@�;=?s
:i_^{8+?`
)
O`�s2R�DE58/K��r	#"'>7&4$&5m��ī��"#���̵�$5���$�"^^W����=���ac��E�*���c������zk./"&4636$7.'>67.'>65.67>&/>z X^hc^O<q����+f$H^XbVS!rȇr?5GD_RV@-FbV=3!G84&3Im<$/6X_�D'=NUTL;2KPwt��Pt= 

�&ռ
,J~S/#NL,��8JsF);??1zIEJpq�DIPZXSF6[?5:NR=��;.&1��+!"&=!!%!5463!2�sQ9����Qs�*�*�*sQNQsBUw��
wUBF��H���CCTww���%1#"&=!"&=463!54632.  6 $$ �	��	
��

`?��������(�r���^����a�a�	��	
�
�
�
���(��������_�^����a�a�����%1#!#"'&47632!2.  6 $$ �
����		@	
`
��������(�r���^����a�a�
�
?		@	
���(��������_�^����a�a�����/#"'&476324&#!"3!26#!"&5463!2&�@�&
�@

�
�w�@w��w�w����&@B@&���

�@
�@w��w�w�����"&462  >& $$ �Ԗ��*�����(���r���^����a�a�Ԗ�Ԗ �������(���^����a�a���]�6#"$54732>%#"'!"&'&7>32'!!!2�f:�л����Ѫz��~�u:�
(�(%`V6B^hD%��i�(�]̳ޛ	��*>�6߅�����r�#�!3?^BEa�߀�#�9���#36'&632#"'&'&63232#!"&5463!2
��Q,&U�#+'
 �;il4L92<D`����w�@w��w�w�����`9ܩ6ɽ]`C4�7�7�&�@w��w�w����D+"&5#"'&=4?5#"'&=4?546;2%6%66546;2�������
	
��
	
��w�ww�w�������cB
�G]B
�G��t�y]t�y�
���#3C#!+"&5!"&=463!46;2!24&#!"3!26#!"&5463!2���@��`@`�^B��B^^B@B^��w��w��w@w��@��`@`���2@B^^B��B^^���w��w@w�����'/?P+5#"&547.467&546;532!764'!"+32#323!&ln��@
:MM:
@��nY*�Yz--zY�*55QDD�U���9p��Y-`]��]`.X /2I$�	t�@@/!!/@@3,$,3�$p$0�0��&*0��&���&��
!P@���RV2#"&/#"&/#"&546?#"&546?'&54632%'&54632763276%�>S]�8T;/M7��7T</L7�=Q7,�i�<R7,�5T</L666U;/M5�<U<,�i���6i���Q=a!;�;V6-�j�;V6-�5	P=/L596Q</L5�<U6-�i�;V7,�7O;-I6��8��i;k���)I2#!"&5463#9"'.'.'3!264&#!"2>7%>�w��w�@w��w�!"�5bBBb.�/*
8(@(87)��(8=%/�'#?��w�@w��w�w����#~$EE y &�L(88e):8(%O r		

		�O�?GQaq47&67>&&'&67>&"&#6$32#"#"'654  $&6 $6&$ Co��L��.*�KPx���.*� 
iSƓi
7J?��~�pi{_Я�;��lL�������UZ=刈�����刈�����_t'<Z
�:!
	���@!
��j`Q7$k�y, R����f��k*4�������LlL��=Z=刈��������&$&546$7%7&'5>�����]���5��%��w�����������&��P�?�zrSF�!|��&0	##!"&5#5!3!3!3!32!546;2!5463���)�
)����;)��);;)��)���&&������&@@&�&��&��	�
6 $&727"'%+"'&7&54767%&4762������֬>4P���t+8?::
	�	
::AW��``���EvEEvE<�.���"�e$IE&�O�&EI&�{h.`��m���"&#"&'327>73271[
>+)@
(���]:2+D?��*%�Zx/658:@#N
�C�=�E�(�o��E=��W'c:������#!#"$&6$3 &#"32>7!����ڝ���yy��,��{��ۀ�ہW�^F!�L�C=���y�:�y��w���߂0H\R%�"N^ '&76232762$"&5462"&46274&"&'264&#"'&&#"32$54'>$ $&6$ G>��>0yx1��4J55J�5J44J5�Fd$��?�4J55%6�E��#42F%��$f�������LlL�q>>11�J44%&4Z%44J54R1F$Z-%45J521��Z%F1#:��ʎ 9�������LlL�����#Qa"'&7622762%"&5462"&546274&#"&'73264&#"'&&#"32654'>#!"&5463!2�

5�5

*�*��.>.-@-R.>.-@-�<+*q�6�- -- 0�<�o,+< ��3�w�@w��w�w��

55

**�.. -- .. --G*<N�' ,-@-+*��M <*2
z��z
1�@w��w�w�����0<754&""&=#326546325##"&='26 $$ bZt�t&�sRQs��Z<t�sQ���^����a�a�>OpoO��xzRrqP6�z~{{Prr��^����a�a�����]054&"#"&5!2654632!#"&57265&<T<����H<T<������H������<T<8v*<<*������
��+;;+l���:�������=:��*;;*���
%!!"!!26#!"&5463!2��@� ]���]�@�w�@w��w�w�����]� �@��@w��w�w���	
%)3!!#335!!5!5!%#!!5!5!%#H��H{����R��H��H{���G��G{�)���q���G����R�R�q���R�R�q�����	#0@#"'632#"'632&#"7532&#"#7532#!"&5463!2L5+*5��L5+*5~�}7W|�3B}��}JC��7=}�w�@w��w�w�D�ZQ�[�1�N:_��)�i�$��)���@w��w�w��
)�	�����������6.#&#"'&547>'&#".'&'#"&5467%&4>7>3263232654.547'654'63277.'.*#">7?67>?>32#"'7'>3'>3235?�K�cgA+![<E0y�$,<'.cI
	,#� '!;7$�=ep���	��/�/7/
D+R>,7*
2(-#=
	/~[(D?G  �|,)"#+)O��8,+�'�6	y{=@��0mI�#938OA�E`
-�
)y_/FwaH8j7=7?%����a	%%!?)L
J
9=5]~�pj

 %(��1$",I 
$@((�
+!.S		-L__$'-9L	5V��+	
	6�T+6.8-$�0��+
t�|S1��6]�&#"'&#"67>76'&'&#"67>32764.#"#.32>67>7 $&54>7>7>7�rJ�@"kb2)W+,5/1		#

Z
-!��$IOXp7s�LCF9�vz NAG#/ 5|����Հ';RKR/J#=$,�9,�+$UCS7'2"1
 !�/
,

/--ST(::(�ep4AM@=I>".)x��ls��Y�|qK@
%(YQ�&N
EHv~����<Zx'#"&5467&6?2?'&"/.7.546326#"&'&/7264/7'764&"'?>>32.��A�UpIUxYE.A�%%%h%����%hJ%�����D,FZxULsT�gxUJrV�D�%hJ%�����@/LefL.C�%Jh%�����C�VsNUxϠ�@.FZyUHpV�A�%h&%%���%Ji%�����C�WpIUybJ/��Uy^G,D�%Jh%�����@�UsMtU�C�%hJ%�����C-Kfy�EX[_gj��&/&'.''67>7>7&'&'&'>76763>7>#&'&'767672'%'7'+"&'&546323267>7%#"'4'6767672,32�,+DCCQL�Df'
%:/d
B	4@}
�&!0$�?�����J�f�d�f-�.=���6(��:!TO�?
!I�G_�U%
����.
j+.=;�	5gN_X��	"
##
292Q41�
��*����6���nA;�|�
�BSN.	%1$����
6	#��nk�^�'7GWgw�����2+"&5463#!"&5463!254&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26#"&=! B^^B�B^^B�:F�j��B^8(�(`�(� ������������������`�(8���^B��B^^B@B^�"vE�j�^B(8(�`(�����������������������8(����/?O_o��������/?2#!"&5463;26=4&+";26=4&+";26=4&+";26=4&+"54&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26@&&�&&�@@@@@@@@�@@@@@@@@@@��@@@@@@@@@@@@@@@@@@@&��&&�&��@@��@@��@@��@@��@@@@@@@@@@���@@@@@@@@�@@@@@@@@@@@��`%	"&5#"&5&462!762$"&462���B\B@B\B��8P�p�P8����������.BB.���.BB.8$P8��8P広�������3CQ#".54>32#".546322#"&#"#"54>%".54>32%2#"&54>&X=L|<&X=M{<��TML�FTML�F�v�"?B+D�?B�J�p��H=X&<{M=X&<|dMTF�LMTF�(<kNs�I<kNs���Pvo�JPwo�/��s.=ZY�VӮv�Nk<J�sNk<I�shwPJ�ovPJ�o@��+"&7.54>2�r_-$�$-_rU���U��%��&&5%ő������'-
"'.546762����@��F�F�$�@B�@$.&�,�&.]]|�q����#<���<#(B�B��B%'-%'-'%'-"'%&'"'%.5467%467%62����@��l�l����@��l�l,���@��G�G�&!�@@�@�@@�@!&+#�+#�6�#+�$*`�:�p������:�p���x�
�p����=�`$>����>$�&@��&@�

�@&�p�@��	&.A!!"!&2673!"5432!%!254#!5!2654#!%!2#!8���Zp��?v�d���Ί�e�ns�6(���N[�����RW�u?�rt1Sr�F���|��iZ��@7�����މoy2���IM��C~[�R �yK{T:���%,AGK2#!"&5463!!2654'654.#532#532"&5!654&#"327#2#>!!�w��w�@w��w��~u��k'JTM��wa��|
DH��������>�I1q�Fj?����w�@w��w�w�����sq�*4p9O*�¸Z^���qh LE
�������"(nz8B
M���'?"&4624&#"'.'324&#"3267##"&/632632.�ʏ����hhMA�LR vGhг~��~������K„y���O^
��ʏ�ʏ��В*�LM@!<I�~��~����������t\��0�������CM4&"2#"&'676&/632#!"&=3267%2654&#"&#"%463!2"&4632�r�qq��tR8^4.<x3=RR��w�@w���_h�
Y��Ӗ���	K>�שw�w���ȍ�de�)�qrOPq�Ȧs:03=<x!m�@w��w�E\x�g�ӕ��є��%w�w����d��Ȏ��V��
-<K\%.'.>7'.?67'67%'>&%'7%7./6D�\$>	"N,��?a0�#O���1G�����9�'/���P(1#00��
($=!F"�9|��]�"RE<�6'o��9%8J$\:��\H�iTe<?}V��#�oj��?���d,6���%N#"
Hl��S��VY�]C

=�@�C4&"2!.#!"4&"2+"&=!"&=#"&546;>3!232�^�^^���Y	�	^�^^��`p�p�p�p`�]i�bb�i]�~�^^�^�e��^^�^���PppP��PppP��]��^^�]��3;EM2+"&=!"&=#"&546;>;5463!232264&"!.#!"264&" ]�`p�p�p�p`�]i�b���b�i���^^�^d�Y	�	!�^^�^��]��@PppP@@PppP@�]��^��^�]� ^�^^��e��^�^^� ��3$#!#!"&5467!"&47#"&47#"&4762++�&�2
$��$
�2&��&��&�4�&��&��Z4&�&##&�&4�&4�&4���4&�m4&�m���+DP4'&#"32763232674'&!"32763 3264'&$#"32763232> $$ g����* �o�`#�ə�0#z��#l(~���̠)���-g+����^����a�aF s"	+g�(�*
3#!|
#/IK/%*%D=)[�^����a�a����	!!!'!!77!���,���/���,�-���a��/G��	t%/;<HTbcq������%7.#"32%74'&"32765"/7627#"5'7432#"/7632#"5'7432#"&5'74632	#"/6327#"/6327#"/46321"&/462"&/>21"&/567632#!.547632632
	
	*


			��X		�

^

`		���

^b
	��c�
	f�u��
U`�59u���

���

4�J���
	
l�~		~�	F��	
��	�2�����

�
�	��	�m����|O�,��� ����	

���
��������

ru|	��u�
�
"�����
)9 $7 $&= $7 $&= $7 $&=  $&=46��w���`���w���w���`���w���w���`���w��b����`����VT�EvEEvE�T��VT�EvEEvE�T*VT�EvEEvE�T*EvE�EvEEvE�Ev�#^cu��#!"&5463!2!&'&!"&5!632#"&'#"/&'&7>766767.76;267674767&54&5&'67.'&'&#3274�(8(��(88(�(`�x
��c�`(8��!3;:�A0�?ݫ�Y

	^U	47D$

	7�4U3I�
|��L38wtL0�`(��(88(@(8(D��9�8(��Q1&(!;��
(g-	Up�~R�2(/{E���(Xz*Z%(�i6CmVo8�#Q#!"&5463!2!&'&!"&5!3367653335!3#'.'##'&'35�(8(��(88(�(`�x
��c�`(8�iF������F��Zc�r�cZ�`(��(88(@(8(D��9�8(���k�k�"	��kk�J 	!��	�k�#S#!"&5463!2!&'&!"&5!%!5#7>;#!5#35!3#&'&/35!3�(8(��(88(�(`�x
��c�`(8�-Kg
kL#D��C��JgjL��D���`(��(88(@(8(D��9�8(���jj�	�jjkk��kk����#8C#!"&5463!2!&'&!"&5!%!5#5327>54&'&#!3#32�(8(��(88(�(`�x
��c�`(8� G]�L*COJ?0R��\wx48>�`(��(88(@(8(D��9�8(���jj��RQxk��!RY�#*2#!"&5463!2!&'&!"&5!!57"&462�(8(��(88(�(`�x
��c�`(8�������P�pp�p�`(��(88(@(8(D��9�8(����������p�pp�	�#*7JR5#5#5#5##!"&5463!2!&'&!"&5##5!"&54765332264&"�����<(8(��(88(�(`�x
��c�`(8����k�ޑc�O"�jKKjK�������������`(��(88(@(8(D��9�8(������SmmS?M���&4&&4�#9L^#!"&5463!2!&'&!"&5!#"/#"&=46;76276'.'2764'.�(8(��(88(�(`�x
��c�`(8���������6dd�WW6&44�`(��(88(@(8(D��9�8(��.��	����G���5{��{5�]�]$59�95�#3C#!"&5463!2!&'&!"&5!2#!"&5463#"'5632�(8(��(88(�(`�x
��c�`(8��4LL4��4LL4l	��		�`(��(88(@(8(D��9�8(���L4��4LL4�4L��	
Z
	�#7K[#!"&5463!2!&'&!"&5!>&'&7!/.?'&6?6.7>'�(8(��(88(�(`�x
��c�`(8�`3��3��3��3�v
�
?
�
�`(��(88(@(8(D��9�8(���&��&-��&��&�
?


��
'���6#'.
'!67&54632".'654&#"32�eaAɢ/PRAids`WXyzO�v��д��:C;A:25@Ң>�����-05r��n������`��H(�����' gQWZc[���
-%7'	%'-'%	%"'&54762�[������3[��M���N�����
��3"��,��""3,3"o�ng�$������߆���]�g�n��$����+��)��

")")"

��x#Z#"&#!+.5467&546326$32327.'#"&5463232654&#"632#".#"o���G��n\�u_MK'����̨|�g?CM7MM5,QAAIQqAy��{�b&
BL4PJ9+OABIRo?z��.�z��
�n�6'+s�:�������z�cIAC65D*DRRD*�wy�a$,@B39E*DRRD*��'/7  $&6$ 6277&47' 7'"' 6& 6'�lL������������R�R����ZB|��R�R��>����d�ZZ��������LlL�Z����R�R«����Z��&�>���«|��R� � ��! $&54$7 >54'5��������P���f���f����P�����牉�@��s��-����ff���`-����c6721>?>././76&/7>?>?>./&31#"$&��(@8!IH2hM>'

)-*
h'N'��!'Og,R"/!YQG<I *1)

(-O1D+0�n�������z�3fw���G2'3�rd1!sF0o ��.q"!%GsH8��@-!5|w|pgS=
"B2PJfh�G���d�R	�(P]ly��&$'77&7567'676'"'7&'&'7&47'6767'627''6$'67'654'7&'7'&'&'7&'5&$  $6 $&6$ j��j:,A��A��S9bb9R#:j���8AܔA,z��C�9Z04\40Z9�C��!B�;X0,l,0X;�B�*A8ܔA&#9j`b9S$#R99#&A��8A�`
������䇇�<Z<䳎������LlL�fBϬ"129�,V<4!���!88dpm��"��BV,�92[P*V*P\M�C�

�C�M\P*V*P]L�D�

�D�L&BV*�8*8!����f�!4<gmpd88!&!8*8�*VB�Z<䇇�����䇇��������LlL�����9Eis�%#"5432#"543275#&#"3254&'.547>54'63&547#5#"=3235#47##6323#324&"26%#!"&5463!2F]kbf$JMM$&�N92<Vv;,&)q(DL+�`N11MZ
%G���&54	#	i�<$8&@��0H12F1d�w�@w��w�w��B?@�UTZ3%}rV2hD5%f-C#�C@,nO	�a7�.0�x2	yR�uR/u�%6;&�$76%$56S�@w��w�w��D��<Hlw%4#"324&#"32!".5475&5475.546322#654'3%#".535"&#"5354'33"&+32#"&54632S����;<;||w
$+�|('-GVVG-��EznA�C?H_��`Rb���]Gg>Z2&`��9UW=��N9:PO;:dhe\=R����
+)�&')-S9��9kJ�<)Um�Q��/��-Ya^"![��Y��'(<`X;_�L6#)|����tWW:;X���	#'#3#!"&5463!2)
p�*�xeשw�@w��w�w���0,\8�����@w��w�w��9��I#"'#"&'&>767&5462#"'.7>32>4."&'&54>32JrO<3>5�-&FD(=Gq���@C$39a��LL��²�L4

&)
@]��v�
�q#CO���!~󿵂<ZK#*Pq.���%
L��²�LL��arh({�w؜\���i&5467&6747632#".'&##".'&'.'#".5467>72765'./"#"&'&5
�}����1R<2"7MW'$	;IS7@�5sQ@@)�R#DvTA;
0x
I)�!:>�+<B76:NFcP:SC4r�l+r �E%.*a-(6%('�>)C	6.�>�
!-I[4&#"324&#"3264&#"324&#"326&#"#".'7$4$32'#"$&6$32D2)+BB+)3(--(3�1)+BB+)�4'--'4��'���#!0>R	�H���MŰ9�o�u7ǖD��䣣���
R23('3�_,--,�R23('3�_,--,�����NJ
������?u�W�m%������#"'%#"'.5	%&'&7632�!�
�;�
	`��u%"��(����!]#�c�)(�	��� #"'%#"'.5%&'&76	�!�
���	�(%#�#���fP_�"�(���!�)'��+�ʼn�����4I#"$'&6?6332>4.#"#!"&54766$32#!"&=46;46;2z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������@����z��
�	
_hQ��н�QGB�'(&�*�eozΘ�@@`���  >. $$ ����ff���ff�����^����a�af���ff�����^����a�a��>�����"&#"#"&54>7654'&#!"#"&#"#"&54>765'46.'."&54632326323!27654'.5463232632�,�-,�,",:!
%�]&
%@2(/�.+�*)6!	<.$.�.*�*"+8#
�
#Q3,�,+�+#-:#"</$�)

w�

���
,*

x9-.2"'
,,
���@�&,,
��Qw
,����,#"+"&5#+"&5&'&'&547676)2�%2$l$�#l#�b~B@XXyo2�$CI@5��$$�>$$�/:yu��xv)%$	��/?CG%!5%2#!"&5463!5#5!52#!"&54632#!"&5463#5!5`���&&�&&������ �&&�&&�&&�&&@������&�&&&���������&�&&&�&�&&&��������%2 &547%#"&632%&546 #"'6���������\~����~\h�
���~\��h\�������V�
�V�������V��V���%5$4&#"'64'73264&"&#"3272#!"&5463!2}XT=��=TX}}�~�>SX}}XS>�~�}�w�@w��w�w���~:xx:~�}}Xx9}�}9xX}�@w��w�w���/>LXds.327>76 $&6$32762#"/&4762"/&47626+"&46;2'"&=462#"'&4?62E0l�,

*"�T�.�D@Yo������oo����@5D�

[		

Z
�Z

		[	 ``��[



Z

	�2
,�l0
(T�"�.�D5@������oo��oY@D,

Z

		[	�		[		

Z
��``EZ

		[		
�5%!  $&66='&'%77'727'%am��lL�������m�f�?���5���5>�f�F�tu�ut�F������������LlL�H�Y�C�L|��|L����Y�˄(��E''E*(�/?IYiy����%+"&=46;2+"&=46;2+"&=46;2+"&=46;2%"&=!#+"&=46;2+"&=46;2+"&=46;2+"&=46;2!54!54>$ +"&=46;2#!"&=������@�������&&������@��������������3P��
>��P3��&��&��r���r��r���&��&���r���r��r���
he

4LKM:%%:MKL4�W��T�&&��%/9##!"&563!!#!"&5"&5!2!5463!2!5463!2�&&�&��&�&&���� ��� ��&��&&i�@����&&@&7�����'#5&?626�J%�o����;����j|/����&jJ%�p��&`Jj&�p���/|���j�ţ���%Jk%�o��%��	:g"&5462#"&546324&#!"263662>7'&75.''&'&&'&6463!276i���~ZYYZ~�@O��S;+[G[3YUD#o?D&G3I=J�y�TkBuhNV!WOhuAiS�y*'^C�C^'*SwwSTvvTSwwSTvv���WID\�_"[�g��q# /3qF��r2/ $r�g�%4
�HffH�J4d���#!#7!!7!#5!������VF��N����rmN�N��N����������N���!Y���+?Ne%&'&'&7>727>'#&'&'&>2'&'&676'&76$7&'&767>76'6�#
<�;1�1x��#*#
�F-T9�3%�/#0v�N�Z;:8��)M:(	&���C.J}2	%0����
 	^*
J�F	
&�7'X"2L�DM"	+��6�
M2+'BQfXV#+]
#���'
L/(e�B�9
�#,8!!!5!!5!5!5!5#26%!!26#!"&5!5���������������&4&���&�pP��Pp������������������@��@&&@��!&�@PppP@�*
��	9Q$"&54627"."#"&547>2"'.#"#"&5476$ "'&$ #"&5476$ (�}R}hL�K�
N���N
����U�d:�
�x�x�
�����8���
��
�
� ,, |2222�
MXXM

�ic,>>,�
����
�	����	�
��̺

�
��'/7?KSck{4&"2$4&"24&"24&"24&"24&"24&"24&"24&"264&"24&#!"3!264&"2#!"&5463!2�KjKKj�KjKKj��KjKKjKKjKKj��KjKKj��KjKKjKKjKKj��KjKKjKLhLLhL��KjKKj�&�&&&KjKKj�L4��4LL4�4L5jKKjKKjKKjK�jKKjK��jKKjK�jKKjK�jKKjK��jKKjK�jKKjK���4LL4��4LL�jKKjK�&&�&&��jKKjK�4LL44LL	��'E!#"+"&7>76;7676767>'#'"#!"&7>3!2�W�",&7'�	#$	&��g�pf5O�.P�q�ZZdS���-V"0kqzTx�D!��!8�p�8%'i_�F?;�k��R(`��
!�&)�w���.<\.'.>%#"'.7>.'&67632&'6'&'
#"'.766.'&67632Z
&+\cc:>'D�>��6KD3W6,9(<*0-?")/SW7.Crb	�	:+OIX3'#C3:@#*"-A%,1U�=}��AQ�fO$"�|'"S�*�����`H(�:Uܳ�J?�2�7���s����Zy%+��A�����07�C~�Ӗ5A�"3��	�>IY#6?>7&#!%'.'33#&#"#"/3674'.54636%#"3733#!"&5463!2��4��:@��7�vH��%�h��EP{��0&<'VFJo���1,1.F6��A��#���L4�4LL44L"%�	
 
7x'6
O\�JYFw���~�v^fH$ !�"xdjD"!�6��`J�4LL44LL��	�$1Ol�������-#"326%356.#"#"326%4#"326%3#7#'#3%#7#"&546324>54#"47632&#"'"'473254&'&54323#327#"'47673#327#"546327&#7673>7&#"327#"&54632#7#"&54632654#"47632&#7673>73#7#"&54632.#"#&'#67&#"327&'3673326#!"&5463!2�
/�>	0@�[W,8 G'"5,Q4/&4/	$&J�	(W" 	+Tl	+7�o	_7*#)�
	83�	(
-5G8�
.'3/$&I�8
4�8+5%7%{�����,2,rr,2,����������x-2.jj.2-x�����L4�4LL44L[ <	J 2)(*(��������8$e '+
,1)H/	'H4///,~i6_7G*''4f�E!%97+"
;=4FYqO" '+
,&2hh_,��0(5N�(��nt��gg��tn�����no��__��on��4LL44LL��	�
BWbjq}��+532%+5324&+32763#4&'.546327&#"#"'3265#"&546325&#"32!264&"2%#'#735#535#535#3'654&+353#!"&5463!29$<=$�@?�SdO__J-<AA@)7")9,<$.%0*,G3@%)1??.+&((JgfJ*�A�������!&��j�jj��GZYG�иwssw��PiL>8aA	!M7�7MM7�7M�3!�
4erJ]��&3YM�(,
,%7(#)
,(@=)M%A20C&Me�e��(X���0&Ėjj�jV��	8Z8J9���N/4���$�8NN8�8NN��	�#&:O[���	$?b3'7'#3#%54+32%4+324+323'%#5#'#'##337"&##'!!732%#3#3##!"&53733537!572!56373353#'#'#"5#&#!'#'#463!2#"5#"5!&+&+'!!7353273532!2732%#54&+#32#46.+#2#3#3##+53254&".546;#"67+53254&.546;#"#'#'##"54;"&;7335wY-AJF���=c�(TS)!*RQ+��*RQ+�Y,�B^9^��Ft`njUM�')	~PS�PR�m���٘���M7�7Mo7�q

@)U	8�"����E(�1��++��NM7�7Mx3�7��8�D�62��W74�;�9�<�-A"EA�0:��AF@�1:�ؗ����B�f~~""12"4(�w$#11#�@}}!%+%5(�v$:O�\z��K��?*$\amcrVl��OO176Nn�<!E(=�<&l/������<<������
[ZZYY�89176���7OO7�==..//cV==::z,,,,aa,,��7OO7�Z::��;;Y
fcW�(		"6-!c�(		!5	#
b�t88176����tV:
&$'*9	%e#:
%'*9B����<<��;
&(�����	�#:Sn�����#"&54632%#76;2#"&54632%4&+";2?>23266&+"&#"3267;24&+"'&+";27%4&+";2?>23266&+"&#"3267;254+";27#76;2#!"&5463!2�3%#2%%,, _3$$2%%��M>�ALVb5)LDHeE:<
E�Mj,K'-R
M�~M>�ARVb5)LEHeE:<
E�
JAB�I*'!($rL4�4LL44Lv%1 %3!x*k�$2 %3!�;5�h
n
a�
!(lI;F	
	
��	r�p
p8;5�h

t
a�
!(lI;F��`	#k�4LL44LL
��	�
2HW[lt��#"'5632#6324&'.54327&#"#"&'32767#533275#"=5&#"'#36323#4'&#"'#7532764&"24'&#"327'#"'&'36#!"&5463!2=!9�n23��BD$ &:BCRM.0AC'0RH`Q03'`�.>,&I / *�
 /

��8/��n-(G@5��$ S3=�,.B..B�02^`o?7je;9G+��L4�4LL44LyE%#	�Vb�;A
!p &'F:Aq)%)#o�rg�T$v2�� 8�)2����z948/�{�8A�B..B/��q?@�r�<7(g/��4LL44LL��?#!"&'24#"&54"&/&6?&5>547&54626=�L4�@�ԕ;U g3
��
T
�2RX='�8P8|�5�
����4Lj��j� U;Ig@
	��
`
� "*\���(88(�]k
��&N4#"&54"3	.#"#!"&'7!&7&/&6?&5>547&54626;U gI��m*��]�Z0�L4�@�ԕ���=o=CT
��
T
�2RX='�8P8|�5�
� U;Ig��Xu?bl3���@4Lj��j��a���`
	��
`
� "*\���(88(�]k����/7[%4&+";26%4&+";26%4&+";26!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���0
��
o`^B��B^`5FN(@(NF5���@��@��@�u		�@�LSyuS�@�%44%����,<H#"5432+"=4&#"326=46;2  >. $$ ~Isy9���"SgR8v�H����D�	w
����ff���ff�����^����a�a�m2N+��	)H-mF+1����0*F		+f���ff�����^����a�a�����b4&#"32>"#"'&'#"&54632?>;23>5!"3276#"$&6$3 �k^?zb=ka`�U4J{�K_/4�^����W�&	vx :XB0���܂�ff���)
f������zz��X��lz=l�apz��o�b35!2BX���
�G@8��'	'=vN$\f���f�	1
	SZz�8�z�X�#("/+'547'&4?6276	'D�^�h

�

i��%5�@�%[i

�

h�]��@������]�h

�

i��%�@�5%[i

�

h�^�@@������)2#"&5476#".5327>OFi-���ay~�\~;��'�S���{�s:D8>)AJfh]F?X��{[��TC6��LlG��]��v2'"%B];$�+l|��%!2>7>232>7>322>7>32"&'.#"#"&'.#"#"&'.#"#546;!!!!!32#"&54>52#"&54>52#"&54>52�-P&+F) $P.-P$'#+&PZP&+#"+&P-#) $P-.P$(#+$P.-P$'#+&P-.P$+#pP@@Pp�H85K"&ZH85K"&ZH85K"&Z����@��Pp��@��@��@pMSK5, :&�LMSK5, :&�LMSK5, :&����!!3	!	�����@�����@@�����	#"$$3!!2"j������aѻxl���a����lx�a�a����j������!!3/"/'62'&63!2��'y��

�`�I

��y�����My��

�`�I

��y'W`#".'.#"32767!"&54>3232654.'&546#&'5&#"

4$%Eӕ;iNL291 ;XxR`�f՝�Q8T������W��iW�gW:;*:`�Qs&?RWXJ8�oNU0�J1F@#)
[�%6_PO�QiX(o�`��_?5�"$���iʗ\&>bd�s�6�aP*< -;iFn�*-c1B���Wg4'.'4.54632#7&'.#"#"'.#"32767'#"&54632326#!"&5463!2��#$(	1$6]'
!E3P|ad(2S;aF9'EO�Se�j]�m�]<*rYs��hpt.#)$78L*k�h�w�@w��w�w��B

%
$/$G6
sP`X):F�/�fwH1p�dl�qnmPH�ui�kw_:[9D'��@w��w�w��34."2>$4.#!!2>#!".>3!2�Q��н�QQ��н�QQ��h�~w��w�h���f����ff����н�QQ��н�QQ��н�QZ����ZQ�����ff���ff�#>3!2#!".2>4."f����ff�����н�QQ��н�QQ���ff���ff��Q��н�QQ��н�	,\!"&?&#"326'3&'!&#"#"'  5467'+#"327#"&463!!'#"&463!2632���(#�AH����s���9q � ci��<=�
#�]�<������OFA��!�������re��&&��U�&&![e��F �������U?���g�����4_���������a�?b�+��r7�&4&��&4&�p,�+K4&"2$4&"2.#!"3!264&#!"3!2#"&=!"&=#47>$ �KjKKjKKjKKjH#�j#H&&&������KjK�KjK�g	�V�	ijKKjKKjKKjK���..n((�[���5KK5��5KK5�[po�Nv<<vN�:f���.R#!"&463!24'!"&5463!&$#"!2#!32>+#"'#"&546;&546$3232�2$�B$22$�$�*$22$�X�ڭ��ӯ�$22$�tX'���hs2$���ϧ��kc�$22$���1���c�$2�F33F3VVT2#$2����ԱVT2#$2��g���#2UU���݃
�2$#2UU�1݃���2��,u�54#"67.632&#"32654'.#"32764.'&$#"7232&'##"&54732654&#"467&5463254632>32#"'&�ru�&9��%"*#�͟<yK0Og�" 
&9B3�;��㛘8��s%+DWXRD= @Y%�	!Q6R�!4M8�+6rU^z=)�RN��.)C>O%GR�=O&^���op������C8�pP*�b�Y
_�#��$��N Pb@6��)?����+0L15"4$.�Es
�5I�Q"!@h"�Y7e|J>z�iPe��n�eHbIl�F>^]@����n*9
���6[_3#"&54632#.#"32%3#"&54632#.#"326%4&'.'&! ! 7>7>!���������
�=39?
6'_����������
�>29?
5'17m-V����U--,�bW.�������뮠@Fyu0HC$������뮠@Fyu0HC$L���=??
<����=! A	<��`�;+"&54&#!+"&5463!2#!"&546;2!26546;2���p���Ї����0�p�����p���@��I�������pp���>Sc+"&=46;254&+"&+";2=46;2;2=46;2;2%54&#!";2=;26#!"&5463!2���A5�DD�5A7^6a7MB5��5B7?�5B~�`��`��`0`��rr��5A44A5�����v�5AA5�f�*A���`��`0`�����	!!!!	#!"&5463!2��ړ�7���H��7j�v�@v��v�v��'���:��@v��v�v���MUdkpu{����������������#"'!"'!#"&547.547.54674&547&54632!62!632!#!6227'!%!"67'#77!63!!7357/7'%#	%'3/&=&'	5#?&5476��!�p4�q"���"�"�6�"� ��'������h*�[���
��|�*��,�@���?wA�UM�pV���@�˝�����)��Ϳw����7(�{��*U%���K6������=0�(���M���		��"!O		dX$k
!!��!
����b��	
���[�����TDOi
��@��6��b��xBA�ݽ�5
�
�ɝ:����J���+���3����,��p
x�1���������Fi
(��R��
463!#!"&5%'4&#!"3���`����а@.�.@A-X��f�B����$��.BB.�.C��}
)&54$32&'%&&'67���"w�`�Rd]G�{��o]>p6��sc(��@wg����mJ�PAjy���YW�a͊AZq���{HZ�:�<dv\gx�>��2AT�Kn������+;"'&#"&#"+6!263 2&#"&#">3267&#">326e��~�└�Ȁ|��隚���Ν|����ū|iy�Zʬ��7Ӕ�ް�r|�uѥ��x�9[��[9�jj��9A�N��N�+,#ll"���B�S32fk��[/?\%4&+";26%4&+";26%4&+";26%4&+";26%#!"&5467&546326$32�]]��ee��ee��ee��$��~i
�qfN-*���������#����Sj������t�2"'q�C���B8!�'�>	
!%)-159=AEIMQUY]agkosw{��������!	%!	5!#5#5#5#5#57777????#5!#5!#5!#5!#5!#5!#5!#5#537#5!#5!#5!#5!#5!#55#535353535353%"&546326#"'#32>54.&54>3237.#"����������Q%%%%%%%%%?iiihOiixiiyiixii�Arssrrssr��%s�ssrrss�Ns%%%%%%%%%%�����������'<D<'paC_78#7PO7)("I$	75!����RA��b��(���ss�ss�ss�ss�ss�"/!".""."
!."".!/^.".^.".]/".�$$$$$$$$$$$$$$$$��Os$$$$$$$$$$$$$$sO$s�ss�ss�ss�ss�ss#��������}$)	13?*
,./:
-�s�*4&"2$4&"2#!"&5463!2!5463!2_��������?-��-??-�,@�@,�-?����pq�8��,??,D,??,��,??(�Z2#".#"3267>32#".543232654&#"#"&54654&#"#"&547>326���ڞU�zrhgrx�S��Пd�U <e�����x՞����Zf��_gן:k=2;�^��9��Œ��7\x��x\7����K=5Xltֆ�W����W{e_�%N��%,%CI��%���#+W4&+54&"#";26=32"&462"&462!2#!"&54>7#"&463!2!2�&�&4&�&&�&4&���KjKKj�KjKKj� ���&&�&%��&&�&&4&�&&�&4&�&&��5jKKjKKjKKjK��%z
0&4&&3D7&4&
%&���'S4&"4&"'&"27"&462"&462!2#!"&54>7#"&463!2!2&4�&4&�4&4��KjKKj�KjKKj� ���&&�&%��&&�&&4&�%&&�ے&4��"jKKjKKjKKjK��%z
0&4&&3D7&4&
%&��	&	!'!	!%!!!!%"'.763!2�o���]�F������o�������oZ��Y��@:�@�!�!�g���������������f�/�/��I��62'"/"/"/"/"/"/"/7762762762762762762%"/77627&6?35!5!!3762762'"/"/"/"/"/"/%5#5!4�ZSS6SS4SS4SS4SS4SS4SS4�ZSS4SS4SS4SS4SS4SS4S�-4�ZSS4S@������4SS4�ZSS6SS4SS4SS4SS4SS4S@�����ZSSSSSSSSSSSSSS�ZSSSSSSSSSSSSSy�ZRRR@%:=
:+������:
=���RR�ZSSSSSSSSSSSSS���������Cv!/&'&#""'&#"	32>;232>7>76#!"&54>7'3&547&547>763226323@``����`
VFaaFV


$.


.$

��y��y�	.Q5Z���E$ ,l<l, $E���R?Y*��@���@�2	!#""#!	��y��y=r�na�@@(89*>�*%>>%*�>*98(QO�!���L\p'.'&67'#!##"327&+"&46;2!3'#"&7>;276;2+6267!"'&7&#"(6&#"#"'�D��g��OOG`n%�E������LL{�@&&�N�c,sU�&&�!Fre&&�s�����s���#�/,�������<=�
#�]�g��L�o�GkP�'��r-n&4&2�-ir&�&�?���o 
��������4_�����5OW! .54>762>7.'.7>+#!"&5#"&5463!2"&462�{�����{BtxG,:`9(0b��Կ�b0(9`:,GxtB��&@&�&@&K5�5K`�����?e==e?1O6#,
#$
,#6OO��&��&&�&�5KK���������?!"'&'!2673267!'.."!&54632>321
��4��q#F�""�8'g��o#-��#,"t�Yg��>�oP$$Po�>�	��Z�e�p#����)�R��0���+I@$$@I+����+332++"&=#"&=46;.7>76$  ������@����ᅪ*��r���������@��@�����������r���'/2+"&5".4>32!"&=463  �&@��~[���՛[[��u˜~���gr�������&�`����u՛[[���՛[~~@��r������=E32++"&=#"&=46;5&547&'&6;22676;2  >�����``@``�ٱ��?E,��,=?��r�������H�����@``@�GݧH`�j��j���r������BJ463!2+"&=32++"&=#"&=46;5.7676%#"&5   &@�~���``@``�� �v�X����r�������&���������@``@����+BF��`r������ks463!2+"&=32++"&=#"&=46;5&547'/.?'+"&5463!2+7>6 %#"&5   &@�~���``@``��~4e	
0
	io@& �jV	
0
	Z9�������r�������&���������@``@�G�ɞ5o
,
sp� &@k^
,
c8~~��`r�������8>KR_32++"&=!+"&=#"&=46;.767666'27&547&#"&'2#"�����@�@���'�Ϋ���'������sg��gs�����ww�@����sg��g����@����@���-ss��ʃl������9���9��������OO���r9���9��FP^l463!2+"&=$'.7>76%#"&=463!2+"&=%#"&54'>%&547.#"254&' &@�L?����CuГP	��v�Y�� &@�;"����������ޥ�5݇�����ޥ���5�`&����_��ڿg��w��BF�@&����J_	s���&��&�����?%x���������%x��JP\h463!2+"&='32++"&=#"&=46;5.7676632%#"&56'327&7&#"2#"� &@�L? ���ߺu�``@``��}
�ຒ�ɞ���������ue��eu�9����ue��e�&����_��"|N�@``@��"��"|a~���l����o����9���9��r9��@�9���;C2+"&5"/".4>327'&4?627!"&=463  �&@Ռ		.	
�N~[���՛[[��u˜N�		.	
����gr�������&�`֌
	.		�O��u՛[[���՛[~N�
	.		��@��r������9A'.'&675#"&=46;5"/&4?62"/32+  ��'��֪�����\
	.		�4�		.	
\���r������|��ݧ���憛��@�\		.	
��
	.		\�@��r�����~9A"/&4?!+"&=##"$7>763546;2!'&4?62  m��		-

���@���ݧ���憛��@&�

-		�@r������m4��

-		����ٮ*�������		-

��r������+"&5&54>2  ����@��[���՛[�r�����������dG�u՛[[���r������  ".4>2������r�[���՛[[���՛�r������5�՛[[���՛[[����$2#!37#546375&#"#3!"&5463�#22#�y��/Dz?s����!#22#�2#��#2S�88�	����2#V#2��L4>32#"&''&5467&5463232>54&#"#"'.K���g��&Rv�gD�
$*2%	+Z hP=DXZ@7^?1
۰��3O+�l��h4���`���M@8'�+c+RI2
�\�ZAhS�Q>B�>?S2Vhui/�����,R0+	ZRkm�z�+>Q2#"'.'&756763232322>4."7 #"'&546��n/9�b�LHG2E"D8_
p�dd���dxO�"2�xx��ê�_�lx�2X	
!+'5>-�pkW[C
�I
I@50�Od���dd��˥�Mhfx�����x^���ә�	�#'+/7!5!!5!4&"2!5!4&"24&"2!!!��� 8P88P�� 8P88P88P88P����������P88P8 ���P88P88P88P8� ������������+N &6 !2#!+"&5!"&=463!46;23!#!"&54>32267632#"_����>�@`

��
�
��

`
�
� L4Dg��y� 6Fe=O���O�U�4L��>����
�
��

`
�
`

��4L�2�y5eud_C(====`L4����3V &6 #"/#"/&54?'&54?6327632#!"&54>32 7632_����>���		�	
	��	
	�		��		�	
	��	
	�		��%%S��y� 6Fe=�J�%��>����	
	�		��		�	
	��	
	�		��		�	
	��%65%S�y5eud_C(zz.!6%$!2!!!46;24&"2!54&#!"�&���&�&@�Ԗ��V�@&&�@��&&�Ԗ�Ԗ@��&���3!!!	!5!'!53!!	#����7I�e�����eI7��CzC�l��@�����@������@�#2#!"&?.54$3264&"!@������մ���pp�p���������((��������p�pp����#+/2#!"&?.54$3264&"!264&"!@������մ���^^�^@����^^�^@���������((��������^�^^�����^�^^�����v(#"'%.54632	"'%	632U�/�@��k0�G��,�zD#[�k#�
/t�g��
F��
����Gz�����	#'#3!)
p�*�xe���0,\8�����T���#/DM�%2<GQ^lw�����&'&676676&'&7654&'&&546763"#"'3264&7.>&'%'.767&7667&766747665"'.'&767>3>7&'&'47.'.7676767&76767.'$73>?>67673>#6766666&'&6767.'"'276&67&54&&671&'6757>7&"2654&57>&>&'5#%67>76$7&?5.''&'&'#'""#''&'&'&'65.'&6767.'#%&''&'#2%676765&'&'&7&5&'6.7>�&5R4&5S9
W"-J�0(/�r
V"-J�0(.�)#"6&4pOPpp�c�|o}vQ�[�60X�Q��W1V�	
#5X		N"&
.
)
D>q J:102(z/=f��*4!>S5b<U$:I o<G*	,
&"O	X5
#!

��	R N#
C
83J*��R	!(D
#%37	�;$-.�
(,��覦�6ji
�	���"���)9
E�%����!B83
	j9�6/,	:QD')yX#�63V
��b�a	,
Ue��LPA@���*	̳�`Xx*&E
V36��%	B3%	B3XA	
#!.mU"A	
#!.mUB-#2+Jii�i�m-C<I(m��8qF/*)0�S
		
I
E5&+>!%
(!$p8~5..:5I

~��T�
4~9p# !
)& ?()5F	1	
	
� d%{v*�:
 @e
s|D�1d {�:�*dAA|oYk'&��<��tu��ut�&vHC�XXTR�;w��
��71™
	Z*&'
1	9?	.

$��Gv5k65P<�?8q=4�a	
SC"��1#<�/6B&!ML	�^;�6k5wF1<P�C	�;$"&462"&46232>.$.�`�aa��sa�``��Z9k����'9؋ӗa-*Gl|M�e_]`F&O������ܽ�sDD!/+�``�aa�``�a1<YK3(
 /8HQelA�Z3t_fQP<343J;T7Q�+?Kgw  $6&$  $&62+"5432+"&=.54  $;26=462;26=4& 4&#!"3!26)����߄��4R4߄��mlL�������r {jK#@#Q�a����^�����@���@���`&��&&�&�������߄��4R4�Ď������LlL�N� �@K5#:rr:#5K���^����a�a��``]��]``����&&�&&	/!3#4&#!"3!265##!"&5463!22�������@K5^B��B^^B@B^5K���� �@���5K�B^^B�B^^B�K	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	+2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@�K5��5K�B^^B�B^^B�`� �@ �{#!&'#"'&547632m*���
�0���((�'(�$0K
��*�*��% 3#!3# '!#53 5#534!#53 6!3@����@@@��pp��@@@����@@pp@��`������� �����	�+/7;A#3!5!!3#!!5!35!355#%53#5!#35#!!!!!!!!����������������������������������������������������������������������
�	#'+/3?CGW#3!5!!35!!3#!!5!#!5!3535!355#%#3%!53#5!#35#!5##5!3!5!3!5	����������������������������������������������������������������������������������������������������������������!"&5463!2!"!�`(88(@(8�`(8�}2�2R �`8(@(88(�`8HR2�2���##6?6%!!!46#!"&5463!2x���� ��8�(�`(�(88(@(8�
���� (8��(`�(8(@(88��	�'ATd+5326+5323##"' %5&465./&76%4&'5>54&'"&#!!26#!"&5463!2�
��

���i�LCly5�)*H�celzzlec0h�b,,b�eIVB9@RB�9�J_�L4�4LL44L44%��2"��4��:I;p!q4b�b3p(P`t`P(�6EC.7B�I6�4LL44LL��	�.>$4&'6#".54$ 4.#!"3!2>#!"&5463!2Zj��b�jj[���wٝ]�>o��Ӱ�ٯ�*�-���oXL4�4LL44L'�)�꽽�)�J)���]��w����L���`��ֺ��۪e���4LL44LL�;4&#!"3!26#!"&5463!2#54&#!";#"&5463!2�
��

@
�^B��B^^B@B^���
��

��B^^B@B^`@

��
M��B^^B@B^^>��

��
�^B@B^^��5=Um	!	!!2#!"&=463!.'!"&=463!>2!2#264&"".54>762".54>762��������?(`��`(?��b|b��?B//B/�]�����]FrdhLhdrF�]�����]FrdhLhdrF@�@��@�(?��@@?(@9GG9@/B//B�aItB!!BtI�Ѷ�!!��ьItB!!BtI�Ѷ�!!��ь�-M32#!"&=46;7&#"&=463!2#>5!!4.'.46�ՠ��`�@`ՠ��`���M�sF�Fs�MM�sFFs�M����ojj�o��@@�jj�@@�<���!(!���!(!�-3?32#!"&=46;7&#"&=463!2+!!64.'#�ՠ��`�@`ՠ��`��	�	Dq�L�L�qD����ojj�o��@@�jj�@@B>=�C�����-3;32#!"&=46;7&#"&=463!2+!!6.'#�ՠ��`�@`ՠ��`��UVU96�g�g�6����ojj�o��@@�jj�@@β����**ɍ�-G32#!"&=46;7&#"&=463!2#>5!!&'.46�ՠ��`�@`ՠ��`���M�sF�Fs�M�k�k�����ojj�o��@@�jj�@@�<���!(!3��3!(!�9I2#!"&=4637>7.'!2#!"&=463��@b":1P4Y,++,Y4P1:"�":1P4Y,++,Y4P1:"b�@@��@7hVX@K-AA-K@XVh77hVX@K-AA-K@XVh7����Aj"#54&#"'54&#"3!26=476=4&#"#54&'&#"#54&'&'2632632#!"&5&=4632>3265K @0.B @0.B#6'&�&
l
@0.B 2'	.B A2TA9B;h" d�
mpP��Tl��L�c�_4.H�K5�]0CB.�S�0CB.�/#��'?&&)$�$)�0CB. }(AB.�z3M�2"61�d�39�L/PpuT(If�c�_�E�`1X"#4&"'&#"3!267654&"#4&"#4&26326#!"&'&5463246326�\B B\B�&@5K�&@�"6LB\B B\B ��sc�i�L}Q�P<m$��3�jN2�c�B.�p.BB.���3K5+"�3,"� �.BB.��.BB.���.�G=�c�i�(+�lOh7/DVj�"�c�=���&5Jb�#"'&=.547!"&46;'.54632!2327%.54&#"327%>%&#"!"3!754?27%>54&#!26=31��?>I��j��jq,J[�j.-t�j�lV��\���$B.R1?@B.��+?2`$�v5K-%��5KK5�.olRIS+6K5�̈$B\B 94E.&�ʀ�15uE&
�Ԗ�Pj��j�dX�U�GJ7!.B
�
P2�.B
�
%2@	�7�K5(B�@KjKj�?+f�UE,�5K~!1��.>F.��F,Q5*H��$b2#!"&=%!"&=463!7!"&'&=4634'&#!">3!!"3!32#!"3!23!26=n$<vpP��Pp���Pp�w�*�Rd�ApP�]��'@�A&
3@��&H-�[(8@
2�EB^&1
=&�&81����PppP��pP w���cOg Pp��c�
4& #.& &,,:8(�%^B &�
.�&&��At"#.#"%&#"3!267>7654&#"#654&#"#.!"'.54632&5467>32>3200?�t	='/@H@��"+4K8�"*�!4dtB/&>	c�@0&=	��	=_�JUD�29�i1"07
{x\�YS�gS�SW�]|t
ey�D0���&0D/
�����I4C+��) �t�.B3%�h#/B0&���&0��3|&p>i�+#]�
WsgQ�T\QglU
�]�#-39�oK_��3[_cg"'&#"3!2676=4&"#54&#"#54&#"#4&'2632632632#!"&'&5463246#!#!#�5K�)B4J�&@�#\8P8 @0.B J65K J6k�
cJ/4qG^�\hB�2<m$��3�iG;��     �K5����6L4+"�3p`b�)<8(=0CB.@Z7OK5`:7O��k�EW�^�tm��@Q7/DVi�##j�������������%4Ia�2#!"&5&546325462632"32654&"3267654&76;74&"#.#"2676=#"&'+53264&#!"3</�U�X�dj���jP��ԖEu�!7JG72P
�
B�%
�
B.!7�	@�A�f+?�jKjK@�B(5K,EU�H*5Q,F��.F>.��1!~K5y?��^\��Vl�j�t-.j�[J,qj��j��I7$��?1R.B�+��.B$`2?g�vEo.�5KK5��%-K��6+SIR[��&.E49 B\B$���5K�G#!+"&5!"&=463!2+"&'+"'+"'&5>;2>76;2Y
��
�
��

M	

�.�x	�-�
	N�	�


�	�
�u
��
,
u
�?

L�W���

���#	�	*:J4'&+326+"'#+"&5463!2  $6& $&6$ <!T{�BH4�	�›�&�>UbUI-����uu�,�uu�ڎ������LlL�AX!��J��m����f\�$
6u�����uu�,�K������LlL���-[k{276/&'&#"&5463276?6'.#"!276/&'&#"&5463276?6'.#"  $6&  $&6]�h-%Lb`J%E5
,5R-����h
-%Lb`J%E5
,5R-���'����uu�,�uu��lL�������/hR

dMLcN����hR
dMLcN����1u�����uu�,��������LlL�@��� 	'	7	'7	�����`��`H� �����`�`H� �!`��������`H� � ���`�`�`H���`��'%		7'	7'7	' $&6$ ���X�`��(W�:,�:��X�`��(WL�������LlL�X�`(W��:�B����X�`���(X�������LlL��
��	$%/9ES[�#"&54632$"&4624&"26$4&#"2%#"&462$#"&4632#"32&! 24>  !#"&'.'#"$547.'!6$32�7&'77'&7�7N77N�'q�qq�q�qPOrq��E�st�����ts��st���}�||�}�������uԙ[W��Q���~,>	n������P/RU P酛���n	>,m�����'77'&77N77N6^Orq�qq�qq�q�t��棣棣�(~|��|on[��usј^�~���33������pc8{y%cq����33dqpf��	L 54 "2654"'&'"/&477&'.67>326?><����
x
�������,

(-'s�IVC��VH�r'-(

$0@!BHp9[�%&!@0$u
��
������]\��\]��-$)!IH��V
D��
VHI!)$-#3���6>N"&462."&/.2?2?64/67>&  #!"&5463!2�]�]]�3
$;
&|�v;$
(CS�3�1	=�rM=	�4�TC(G���z�w�@w��w�w���]]�]��($-;,54�0=	�sL	=�45,;�����@w��w�w������(2#"$&546327654&#"	&#"AZ�������\@�/#�%E1/#����#.1E$�!�[A�����懇�@�@\��!�#21E!��6!E13"�|!��	gL&5&'.#4&5!67&'&'5676&'6452>3.'5����A5R��V[t,G'Q4}-��&�<C!l n?D_@Փ>r!�
��G;��>��!g�1�����2sV&2:#;��d=�*'�5E2/..F�D֕71$1>2�F!���&12,��@K�
r��#"&5462>%.#"'&#"#"'>54#".'7654&&5473254&/>7326/632327?&$  $6 $&6$ �!&"2&^	u��_��x��^�h
;J݃HJǭ
q�E
Dm!
M�
G?̯'%o�8
9U�������(F(�ߎ������LlL��&!&!SEm|�[��n{�[<ɪ
"p� C
Di%
(K�HCέp�C
B
m8	
@Kނ
H�F(���������������LlL���"*6%&6$	7&$5%%6'$2"&4}���x����3��n��QH������:dΏ���Xe�8�����z��'	������l�i���=!��7�����S�o�?v�������M '&7>>7'7>''>76.'6'���El:F�gr
*�t6�K3UZ8�3P)3^I%=9	)<�}J���k+C-Wd��	&U���-��TE+]��Qr-�<Q#0
�C+M8	3':$
_Q=+If5[ˮ&&SG�ZoM�k���ܬc�#7&#"327#"'&$&546$;#"'654'632ե›��fKYYKf�¥y�ͩ���䆎�L��1���hv�v��ƚw�wk��n�]��*��]�nlx��D��L�w�����~?T8b��b9SA}����+5?F!3267!#"'#"4767%!2$324&#"6327.'!.#"��۔c�2�8�Ψ����-\���?���@hU0KeFjTl�y�E3��aVs�z�.b��؏��W80��]T��Sts�<�h�O��_u7bBt���SbF/�o��|V]SHކ�J�������34&#!"3!26#!!2#!"&=463!5!"&5463!2
��

@
�^B� `��`� B^^B@B^ �

�@
�@B^�@@�^B�B^^����>3!"&546)2+6'.'.67>76%&��F8$.39_��0DD�40DD0���+*M7{L *="#
U<-M93#�D�@U8v�k�_Y	�[�hD00DD0��0D�ce-JF1BD����N&)@
/1 d��y%F��#"'&'&'&'&763276?6#"/#"/&54?'&763276"&'&'&5#&763567632#"'&7632654'&#"32>54'&#"'.5463!2#!3>7632#"'&'&#"'&767632yq������oq>*432fb������a
$�B?
	>B
BB
AA�.-QP���PR+	42
%<ci���ђ:6%h�HGhkG@n�`��I���Ȍ5
!m��(|.mzy�PQ-.	
	je����	
�����r=@@?pp�gVZE|fb6887a
%RB?
=B
ABBAJvniQP\\PRh cDS�`gΒ��23�geFGPHX�cCI��_ƍ��5"	
�n�*T.\PQip�
[*81
/
9@:��>t�%6#".'.>%6%&7>'.#*.'&676./&'.54>754'&#"%4>327676=
>���vwd"

�l����"3	/!,+	j2.|��%&
�(N&w���h>8X}x�c2"W<4<��,Z~�fd�aA�`FBIT;hmA<7QC1>[u])		u1�V(�k1S)
-�	0�B2*�%M;W(0S�[T�]I)	A 5%R7<vlR12I]O"��V/,b-8�/_��#3CGk2#!"&546;546;2!546;2%;2654&+";2654&+"!32++"&=#"&=46;546;24LL4��4LL4�^B@B^�^B@B^�@@�@@�����@��@L4�4LL44L`B^^B``B^^B``�� �� ��@@��@���#3W#!"&=463!2!!%4&+";26%4&+";26%#!"&546;546;2!546;232���@�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�@@��� �� ��N�4LL44L`B^^B``B^^B`L��#'7Gk%"/"/&4?'&4?62762!!%4&+";26%4&+";26%#!"&546;546;2!546;232W.	
��
	.		��		.	
��
	.		��	� ����@@@@�L4��4LL4�^B@B^�^B@B^�4L�.		��		.	
��
	.		��		.	
��
��� �� ��N�4LL44L`B^^B``B^^B`L��(8\	"'&4?6262!!%4&+";26%4&+";26%#!"&546;546;2!546;232�

��		.	
��
	.	�`����@@@@�L4��4LL4�^B@B^�^B@B^�4L<�		 
	.		��		.	�:� �� ��N�4LL44L`B^^B``B^^B`L�2632632#!"&5463�&&&&��&&&���&���&��&&�&�$27+"&5  %264&#"26546B>&�&=��,��X�������q&&�@��X��,�LΒw�%��%;#!"&5463!546;2!2!+"&52#!"/&4?63!5!�

�(��&&@&�&(��&�&@&&��(�

�(�

�&&@&&@��&&�&�&�

�����#''%#"'&54676%6%%�������
�hh �@�` ���!�� ���!� ��
��
��
�
������
�#52#"&5476!2#"&5476!2#"'&546
� 
��
� 
���
�
�@�
�
�@�
��
�@

�
� 84&"2$4&"2$4&"2#"'&'&7>7.54$ �KjKKj�KjKKj�KjKKj��d�ne���4"%!������KjKKjKKjKKjKKjKKjK.���٫�8
!%00C'Z���'���.W"&462"&462"&462 6?32$6&#"'#"&'5&6&>7>7&54>$ �KjKKj�KjKKj�KjKKj�h��я�W.�{+9E=�c��Q�d�FK��1A
0)����LlL��jKKjKKjKKjKKjKKjK���p�J2`[Q?l&�����٫�C58.H(Y���ee���	�

			���Y'����w��(�����O��'��R���@$#"&#"'>7676327676#"�
�����b,XHUmM�.�U_t,7A3ge
z9@xS���a�Q�BLb�(�	����V���U�����
!!!�=�����=���w)��������@T!!77'7'#'#274.#"#32!5'.>537#"6=4>5'.465!��KkkK_5 5�� �#BH1��`L

I���&�v6��SF���!Sr99rS!``� /7K%s}H���XV
��P��V	e��		V�d/9Q[ $547.546326%>>32"&5%632264&#"64'&""&'&"2>&2654&#";2���P���3>tSU<�)tqH+>XX|W��h,�:USt��W|XX>=X*
)���)
+�^X^�|WX=>X�:_.2������//a:Ru?�
	
Q%-W|XW>J�(	�=u��>XX|WX�`

*((*


+2		2�X>=XW|E��03>$32!>7'&'&7!6./EU����noh��i����I\�������0<{ >ORD��ƚ�~�˕V�ƻ��o�R C3��7J6I`��Tb<�^M~M8O����	�	
5!#!"&!5!!52!5463	^B�@B^���`B^�^B `��B^^"�����^B��B^��	#D2+#!"$&6$3227%#"$$ %&$#"
7=D9�Kq�M�������L���w�9�'��q��n��H�����.Kt�f�w㿢p??p���Y9n6����
���LlL��k����T	၌��.������?p����㿢p? ��	7!'	!���\W�������\���d;����tZ�`_��O��;��k54+";2%54+";2!4&"!4;234;2354;2354;&5462!2#!32354;2354;2354;2�````��p�p��`�`�`� &4& ���`�`�`�����@PppP���pppppp�$&&$	��pppp��p	�j#"'&=!;5463!2#!"&=#".'.#!#"&463232>7>;>32#"&'#"!546���	��%. `@��` :,.',-���Xj��jX�h-,'.,: kb>PppP>bk .%Z �&�
�:k%$> $`��`6&L')59I"Tl�ԖlT"I95)'L&69Gp�pG9$ >$%k:��!+32&#!332 $&6$ ~O8��8���O�����������LlL�>pN
�����
i������LlL����	'':Ma4&'#"'.7654.#""'&#"3!267#!"&54676$32#"'.76'&>$#"'.7654'&676mD5)
z�{��6lP,@Kij��jOo�Ɏ���ȕ>>��[t��a)GG4?a�)
ll
>�;_-/
9GH{�z�yN@,K�ԕoN��繁������y��!
?hh>$
�D��"
>��â?$��	n"&5462'#".54>22654.'&'.54>32#"#*.5./"�~��~�s�!��m�{b6#	-SjR,l'(s�-6^]It�g))[��zxȁZ&+6,4$.X%%Dc*
&D~WL}]I0"

YYZ��vJ@N*CVTR3/A3$#/;'"/fR-,&2-"
7Zr�^N��a94Rji3.I+

&6W6>N%&60;96@7F6I3���+4&#!"3!26%4&#!"3!26 $$ ��������^����a�a`@��@����^����a�a�����'7  $ >. %"&546;2#!"&546;2#/�a����^�����(�����������������^����a�a����(������N@��@�����4&#!"3!26 $$ @��@����^����a�a`@����^����a�a�����'  $ >. 7"&5463!2#/�a����^�����(��������n@����^����a�a����(������N@���%=%#!"'&7!>3!26=!26=!2%"&54&""&546 �#��#]V�TV$KjK�KjK$��&4&�Ԗ&4&�>��9G��!�5KK5��5KK5�!��&&j��j�&&����#/;Im2+#!"&'#"&463>'.3%4&"26%4&"26%6.326#>;463!232#.+#!"&5#"�5KK5sH.�.Hs5KK5e# )4# %�&4&&4&�&4&&4&` #4) #%�~]�e�Z�&�&�Z�e�]E-�&��&�-EKjK�j.<<.�KjK��)�#)�`"@�&&�`&&�&&�`&&�)#�`)"�d�Xo&&oX�G�,8&&8!����O##!!2#!+"'&7#+"'&7!"'&?63!!"'&?63!6;236;2!2�@�@�8��@7

8��Q�
	N�Q�
	N��
	8G@��

8GQ�
	N�Q�
	N7
	�������8��8��H��H��k��%		".>2I�������2�0�]@��]��@o�����o@@o�����o㔕����a�22���]����]�p�^���|11|�9�9�|11|�(��%7'7'	'	7T���� d���lt��l)q��n�������luul�������)1$4&"24&"2 &6 +"&5476;2 &6 LhLLh�LLhLLhL����>�
�� �&
  �&�`����>�hLLhLLhLLhL�����>����&�&�����>��j�P_<��u>��u>����	��	����	~�pU����3U3��]������y�n�����2��@������
��������z���Z@�5�5
���z���ZZ����@���������,_���@������s���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-����`��b����
���$����6�4�8�"�"""""���@�D@���,,@� ���������	m��)@�@	 	' D9>dY*	w						�	��	��T										�@	f�	%RE	 		$!k(P��Bp�<$�H��<��T�f�T��	H	�	�
R
�
�,�Dx�
6
\
�D�L�X��*�(�2^�n��0|��b�X�*Z��� >n��@j��D��H�.��� 4 n � �!<!�!�!�"6"�"�#^#�#�$�$�%,%�&�&�'&'P'z'�(@(d(�(�))F)�)�*@*�,,~--�-�.,.�.�/"/�/�0F11|22z2�2�3f3�3�4V4�4�565�5�6P6�7V7�8�9 9n9�::T=b=�>>:>�>�?|@@>@xAVA�BB�B�B�CRC�D�E:FFxF�GVG�HH\H�H�H�II0IbI�I�I�J*JrJ�K`K�L@L�MM~NN\N�O.O�O�PZP�QQNQ�Q�R`S�U6U�V(VzV�V�W>W�W�X"XnX�X�X�YY^Y�Y�Z2ZdZ�[[�[�[�\l\�]]]]�]�^R^�_�``�`�a`a�bb:b�b�c�d$dfd�eele�f&fvf�g g�g�hBhph�h�i2iri�i�jBjzj�k kbk�ll\l�l�mm8mvm�nnbn�n�o8o�p
pbp�q<q�q�r�ss8s�tt�uu�vv�ww�x�y�y�zFz�z�{{v{�{�|�}(}^}�}�}�~$~N~�~�T�"�ƒD�����P���ԅJ���ކH�������<���ފ�v�ȋ*������􍴍�4���̏���*���Α�L�������p�t�p��B���� ����r�ڛN��P���������V�(���(����h���h��T���2���Ԧh�h�����X��x����b���J�����8���4������$���򱜲�z�4���2���Z�8�� ���`�ܼ^�̽^����¾��J��\����x���f�N���0İ���>�l��� Ǣ���"ɚ�ʔ�����|� ͜��VΤ��z�в�T���XҾ�&�`ӎӎӎ���,Ԩ��n���(�\֚���8�\�t��ۆ����`ܨ����Rݼ�<�hަ�:ߢ����f��*����Z����&���N��������T�����n���B���\�����$��6����*����&�
�2�t������������8�����&�p���H���L���B�����������������������'@�	^	^	t	.�	&�	$�	�	�	�		�	*�	<	�D	�0Z	��	�
�	��Copyright Dave Gandy 2015. All rights reserved.FontAwesomeRegularpyrs: FontAwesome: 2012FontAwesome RegularVersion 4.4.1 2015FontAwesomePlease refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/Webfont 1.0Fri Nov 20 16:18:33 2015keeporionFont Squirrel�������	

��� !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopq�
rstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

" !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab�cdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstu�uni00A0uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni202Funi205Funi25FCglassmusicsearchenvelopeheartstar
star_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflag
headphones
volume_offvolume_down	volume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_height
text_width
align_leftalign_centeralign_right
align_justifylistindent_leftindent_rightfacetime_videopicturepencil
map_markeradjusttinteditsharecheckmove
step_backward
fast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_left
chevron_right	plus_sign
minus_signremove_signok_sign
question_sign	info_sign
screenshot
remove_circle	ok_circle
ban_circle
arrow_leftarrow_rightarrow_up
arrow_down	share_altresize_fullresize_smallexclamation_signgiftleaffireeye_open	eye_closewarning_signplanecalendarrandomcommentmagnet
chevron_upchevron_downretweet
shopping_cartfolder_closefolder_openresize_verticalresize_horizontal	bar_charttwitter_sign
facebook_signcamera_retrokeycogscomments
thumbs_up_altthumbs_down_alt	star_halfheart_emptysignout
linkedin_signpushpin
external_linksignintrophygithub_sign
upload_altlemonphonecheck_emptybookmark_empty
phone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificate
hand_right	hand_lefthand_up	hand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilter	briefcase
fullscreengrouplinkcloudbeakercutcopy
paper_clipsave
sign_blankreorderulol
strikethrough	underlinetablemagictruck	pinterestpinterest_signgoogle_plus_signgoogle_plusmoney
caret_downcaret_up
caret_leftcaret_rightcolumnssort	sort_downsort_upenvelope_altlinkedinundolegal	dashboardcomment_altcomments_altboltsitemapumbrellapaste
light_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefood
file_text_altbuildinghospital	ambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_down
angle_leftangle_rightangle_up
angle_downdesktoplaptoptabletmobile_phonecircle_blank
quote_leftquote_rightspinnercirclereply
github_altfolder_close_altfolder_open_alt
expand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcode	reply_allstar_half_emptylocation_arrowcrop	code_forkunlink_279exclamationsuperscript	subscript_283puzzle_piece
microphonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchor
unlock_altbullseyeellipsis_horizontalellipsis_vertical_303	play_signticketminus_sign_altcheck_minuslevel_up
level_down
check_sign	edit_sign_312
share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfile	file_textsort_by_alphabet_329sort_by_attributessort_by_attributes_alt
sort_by_ordersort_by_order_alt_334_335youtube_signyoutubexing	xing_signyoutube_playdropbox
stackexchange	instagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_down
long_arrow_uplong_arrow_leftlong_arrow_rightwindowsandroidlinuxdribbleskype
foursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380
plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629VO�)PK!���x�x�fonts/FontAwesome.otfnu&1i�OTTO
� CFF ��R?���EPAR*��0OS/2�2zU��`cmapL.����head����6hhea
n�D$hmtxw�|�h	�maxpvP�0name'x��8post�X FontAwesomeC�������������	�U�6����U�6���-r-����k",04<>EGMT\_ehmqy}�����������������#)4>HT_lp{������������������
'4=GRYfoy��������������
&,39COVcoz������������"/5;FPUZes}���������������&+16<EOW_hmqv|����������������)04=DPX\aju����������������(,26GYhy���������������%16;>EMUckox��������������				$	5	G	V	g	l	p	v	�	�	�	�	�	�	�	�	�	�	�	�	�




&
*
-
0
3
6
9
<
?
B
F
O
_
c
u
�
�
�
�
�
�
�
�
�
�
�
�
�&5BQafmty�������������������!%)-159=AHLPTX\`dhlptx|������������������������������






%
,
3
7
;
?
C
G
K
O
V
Z
^
b
f
j
n
r
v
z
~
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�	
!%)-159=AEJNRVZ^bfjnrvz~��������������������������������
"&*.26:>BFJNRVZ^bfjnrvz~�����������������������������
"&*.2alglassmusicsearchenvelopeheartstarstar_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflagheadphonesvolume_offvolume_downvolume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_heighttext_widthalign_leftalign_centeralign_rightalign_justifylistindent_leftindent_rightfacetime_videopicturepencilmap_markeradjusttinteditsharecheckmovestep_backwardfast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_leftchevron_rightplus_signminus_signremove_signok_signquestion_signinfo_signscreenshotremove_circleok_circleban_circlearrow_leftarrow_rightarrow_uparrow_downshare_altresize_fullresize_smallexclamation_signgiftleaffireeye_openeye_closewarning_signplanecalendarrandomcommentmagnetchevron_upchevron_downretweetshopping_cartfolder_closefolder_openresize_verticalresize_horizontalbar_charttwitter_signfacebook_signcamera_retrokeycogscommentsthumbs_up_altthumbs_down_altstar_halfheart_emptysignoutlinkedin_signpushpinexternal_linksignintrophygithub_signupload_altlemonphonecheck_emptybookmark_emptyphone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificatehand_righthand_lefthand_uphand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilterbriefcasefullscreennotequalinfinitylessequalgrouplinkcloudbeakercutcopypaper_clipsavesign_blankreorderulolstrikethroughunderlinetablemagictruckpinterestpinterest_signgoogle_plus_signgoogle_plusmoneycaret_downcaret_upcaret_leftcaret_rightcolumnssortsort_downsort_upenvelope_altlinkedinundolegaldashboardcomment_altcomments_altboltsitemapumbrellapastelight_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefoodfile_text_altbuildinghospitalambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_downangle_leftangle_rightangle_upangle_downdesktoplaptoptabletmobile_phonecircle_blankquote_leftquote_rightspinnercirclereplygithub_altfolder_close_altfolder_open_altexpand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcodereply_allstar_half_emptylocation_arrowcropcode_forkunlink_279exclamationsuperscriptsubscript_283puzzle_piecemicrophonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchorunlock_altbullseyeellipsis_horizontalellipsis_vertical_303play_signticketminus_sign_altcheck_minuslevel_uplevel_downcheck_signedit_sign_312share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfilefile_textsort_by_alphabet_329sort_by_attributessort_by_attributes_altsort_by_ordersort_by_order_alt_334_335youtube_signyoutubexingxing_signyoutube_playdropboxstackexchangeinstagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_downlong_arrow_uplong_arrow_leftlong_arrow_rightapplewindowsandroidlinuxdribbleskypefoursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629Copyright Dave Gandy 2015. All rights reserved.FontAwesome�ao���C�����������������
 %)M16=_fmqu��������������|����������:>BFRhl�����'07>Cj������Z^����)5:>CGKPTY]����			&	-	1	:	E	Q	U	\	b	h	m	�	�	�	�	�	�	�	�	�	�





)
,
;
@
G
u
y
�
�
�
�
�
�
�
�	!(0[eq��������BFR[insw~�������


"
,
1
6
>
C
H
g
�
�
�
�
�
�
�
�
�
�
�%19@GNTn����������
$)>LR^jx}����������
-9>EINSh}����������(09>CLSWdk}������������
%+39=CJPU]bipu|����������������#16DIOX_ensy���������������� %-28=BGLQ\akr}�������+
!
�T��
������fA�V����S
@?
�x
�l�f��P��������������z�z����
�c
���4�B
KH
K\�j��l
�����v��v�����o
K���
K��W
l
�'
���
�l
�
�/�@���E���X��X��E���+y}}yK�d�:+��E���X��X��E����3���3�3���3(
�`l���T~����~������
���������4�
��f�T�
@��4��
��s
�������)
��.�TO@�O�
�<���</
2A5�P
y_
V��-
��?
Gc<A
�M
��H�������U
�;
C
<
��e��8�}�yhnnh�hn���d
�(�T$E
5�n�hh
�w
�
y}�}y}}y�y}����������}y�^���w���������������� ʆ��iimdod���������$��@�~� K������z�&�w{�y�yw��}|� |�}���x�z�{�wa&z��������K������������$|��'���˒�������a�����������.
��9
�-�|�zKz||zKz�|����������K������
���f�f������������� ��~)
�T*
U
��"
Z$
�������� o�!��)
T
��
�[�=�����s
�T� ,
�}�y�Ty}}y�T��
�V�T-
�T?
�`�V�h���h�
�h�@�@�h�|�z��b����ck
���j]^��h�Y��E�֊�ׅ�B�
�����������?��G��ߩм���qٴ�̟�'(���͔��͂z���'��w�!q=�w�V�F7���HJ�?x�s�]C$�8
�8
.
3CC������
z
W
�(K$h�n.�TOa��T�0��	����������������	�tkQ��E�;�wO�V��VOcZwE�;�ɩ�L��1�������H�D
hnnh�hn����������nh���
=�
J����!�
��T�T��
�T�T}
�[
A
�;��(�=��Z�XW�G/�9�;���/�_M�knm��n9��:Y�I�Ƒ���P�`�q���������������~���d�_�i��i��i�iG�!
}.
��9
l
-�F��/�B�������i
NPuc]�T<�O��d�
}�}�|�1B&�2�B��
���7
���d
4
��,j�ԟ�!P������9�>�!���o��>��9��U��G�
��@��X
V``V}�~���d�3�f�T�w�@�t�(�s�u�w�N�5~��w�}�+�}����PV�
����qy�}��>�����r�c�rr�j��i�h�t���
�<���<�<���o��<+���
�������
�#�E��A�S� ����i�^wv�h�������v�i�^����S� �A��E�]�#���_�T@
��$�$���D
��N���$�$�V``VV`������`V�������z�z���
�3�'�)����������������x�~�D�&�l&�y�;���;Ky}�_��I�b�	\�;COLD|yz|�r����u��{������������A��0����������%�����������]�
�
�����
��]���
��!�4��~������~�4`_��`R�`e9C/R&a���žҦ�4��A�'�"�)����~�4������:
��������(�Ty�}����5�!�tV`������{
K�
�T�t�� 
�5�!��1
��t�t��k`
K9
����z���{�z�
c
���V``V��R
���R
��w���
�5�!�1
!�5�B
����z|���Q�E����Lf��eN�z�y�z����#� u��"������������=�1�?�u՗���
�
�f�f�
YY�
����
�
�Y�
�f�f7
��3����%�%���������������B
�TH
K\�TjS
�
�����r�����j
�g��
�5��
�2���l
������t�������@k
������t����������f+a
��O
��t�
�������Z�Z�r�����u��������v�vq<
�t�t�
�t�tA�TO�t�t���S
���8�
������{z�����+�<���<�<���<����
:
��
�f�fQ
2��i
�u
�@�h�B��x�������������w��B��������D�$�$�DP�!�-
�!V``V��
��;��`���L����<��� �xra�������4
��,Q��T�?�
�����������}y�vKy�x}z��y����*<��!����<�Jڔ�������s
��������
��@*
��d�P
���YYD
�*���*�*���*�*���*�*���*;�4��
�Ԛ�4�J
�4��yr�rrr�yy8��*
o
�&�����������������������c
����v�<
��.��O��8���8�
���8��;�T�N
l��$�<���<B
��3
@j��,�l"�7o�''��$��
!
�����c
����@���
��`
�!+��T����
�@�n���������������\�n��3�/�����{�V=����������������E�{�t�s�o�yx5�OI�I��gX�!�!�gX���g��!�T���}�y�T4�Tm�m))m�m�)�����������D
�YN��
�@��������l
�����S
�Z�Z�������~����3��3C����r�r�����z�{� �`����U������f�
��<�Z��������:���J,��-�����0
�hn��r�
��o7��������F�����2�y�qpV``VV`�����������{��V��v�7�+�4���0����
T��>�r�crrrr�c�r�����
�������������������
����������tp�
�
��������������yy�rrr�r�y*
�t�D�$�$�D!�5�� 
�������!��M���Q�����������:<
��0A
&�T+
�����5������������e�11e�BB�����quuqqu���;���;��uq�t����H
�t�Z���KS
{������*�}�t�/
�`
�����`���u�ttu~w�STdJ,]��շ����49��arwwvyr�/��������(DB%$�A���Ό�����������4�����
�4������������������x����Ts��
�w�rr��
����E�z�*�6�z�*E!��������������0
�D�$�$�D�_
������y�y��>�T8���;���;��'��
��:����
�y
�T�T�_���L��d��g�__gg__�g�����,l
[
��˻WL��
�����@��E�#�#�E�E�#�#�E������������~�w��]������N�TQ�����������������o"�7�l��$�>��j
s�	���P:
G�
��
���0
����������<�<������x�Gz�{y}|z!�5�������$�$���l
�c
c
������������$E�Q��j
i�p�������q��~
���1�
������������@�hc
��t�4���4�t�:���z�{���`�M���`�M��������-�t)
��&�(
y}���
��
�E�#�#�E�i
�tB
������^
ɽYM��������s�%�$���
�*1���0�B
~�v���`V��;=����@�@y�T5 !4���,$P��+�+�����0
�h���������0
���
�r������^
������w
����z��zz{���\�$�"�W�T�f
��`���S
Z�����j�
)W��b�it���
��������� }�����������hv,0������������/��v��d��p��W��
���	X	�	�
0
�
�8�F

�
�
��h\_���h3�`7c����S��g��4��^���	3U^���� V��I�M� I | �!?!�""m"�"�"�#h$$�%%�&�':'�(�)X)�**A*}+.+�+�,&,f,�,�-[-k-�.�/�00�2)2=2�2�3Y3�44G4�5�6B7C7�88H8�9s9�9�::�;5;�<=<�=�>�?�@�A�BB]B�B�GVG�G�H4H�IIIII�KKLK�M[M�N�O?OGO[O�P�Q�SSbS�TwU*U�VOV�W`WhWpW�W�W�W�XXX�YY;Z$Z�Z�[2[�\\�]&^^h^�^�_�`V`�`�aAa�a�bcc�dd�d�e$eMe~e�e�e�e�e�fffYf�f�g>gGg]guhhhziEi�j"j$j&jqj�j�kNl0l�mOmjm�n@n�oowpqqKq�q�r0r}sYs�t2t�t�u9u�vvFvwv�v�w?w�xTx�x�x�yy{y�zwz�z�{ {}{�|+|||�}%}d}�}�~�=��������������P��������7�������>�����.��������0�;�=�����1�|��������A�b�#���*�����/�+������������B��������%���V���������;�j���R�!���������B������'�?�h�����$���������:������������'���a���PÉ�ŏ��zưǙ�_ȿ�q���˟�b�́ϓ���$�)�������lա�����V׳�ء���q�0ۥ���b޼�c�G������8��]�����^��>�:��<����?���l�B�������s�H����[�N������a
�z��	�
��,�

^
�
�t>"�.�Gqsu�A1�	�A����	nA����� 3 �!�"�"�#N$[$�%F%�&&R&�&�'(
(�*;+,g-f.�/�00�0�1M33�4�55�7B7�8�9z:�:�;X=�>�?O?f?�?�@@k@�A�A�B2BpB�C[CDCE+E�E�F�GG�HXH�I�J�J�J�J�KK�L�MJM�N#N�N�N�N�N�N�N�N�N�N������T��t� �T��T���4c
�4��� �
��z���.���.Ȯ��h�K�h�<�Nh���-�����
�����-N�<vhNK�hN�<�h���.���.Nhv<�N��N�vȮ���-��|�����-�hڠ�����v�N��l
���
�4�4��
�T��4�4V``V�TS
�4�4��T?
�4�4L�����T���y�u��uyyu��u�y�����������y���?�j�`�,4�G��y�u�~�8������������գ����������YSKkj>h3c�#�
^u�i�����������ƭ��R�������l
���
�@-
�?
�������F�M�f��fM�Zn�n�w���������
���������������c
 �`�V��������c~ofa�[��Y������� �������
�T=
��
����@����s�u�w�#��$���L��>�����������$��#�����������69�JX�"�!�!`V+/E��E+�V������1�R�E
�_��_r����@3CC3��e
\
���;
�
���p�]��������� ����
�k�s����u�[��z�tg
�U������������1 ��q���9�
�[��[�9����:�Q��Q��:M�q��k�s����u�[��z�tg
�U������������1�l
��vV��l���X�X��l��V��v�6�*�3���3��6��W��)�������
�Ki�����
����l
�������
��i��4�e���
@�
 ������{
�
{
��{
�
{
\
����R
�T1���R
���`�V��V``V�TV�`���������Ԝ����T1\
����R
�T1���
�TV``V�T�
��R
���
�TV``V�T�
�TV�TV``V�T�
��
��^���y�����$�%��������'�������+
��������h�h����������j���y�����������������y����������������'���������'���+
��������������+
������������ ����
�������t�tB
KH
�t�tH
K\�t�t�
�j�t�t����=
�
 ������������H
K\��j��=
�
����������n
����t�W�&S�:�aR`S�:�a�)�)�6�
���z���6�)��õ��`�a�;�R`�W�&��t���P�;���;����Q�EEQQE�E�Qь������
���S����������T��T����@�k���m�����z��K���}�z�����������������a�E�V������������" n�m�l�o�L��{�y�ry}{�{O�J�Nl�l~n|�������i��&js�����������^�^�[{m~m�k�No|�y|�rz�{���Kp�i�j�ki\f_i]�����������Q�M�[�����������!��|�����Lz��~��r������Ǒ̒Ȫ���������������'������������f�g�i��������M��������������
�����
�����
�����
��([po����p���H��H�4��h �
��l
���������n��n�����t,��
������s������~��o�J�,l�W���`a�G�ah�c��~��v�~�A�������������H���H�����������������������F!�4��t����4�t��t�
�4�#
�)���{�||��||���������N��
�������g���|��5����p�p��
��Ty�~}y�:y~�����T����ppur��5��|g�ccn�_��Tz}������������
���y�}}z�T���� ����T��d��gf[wXX[��f���e��?
��
��t�q���T�%
�T����
�T�T�
�T�T��������������l��T~����~������
���������8
���6����(���������������������������'
��T�����T�������6k����,�T��,�T���������h���X�h���������Ym���}������}c�h��hcqj}����}i�Vg�v�W�
����w�����x�r�w�wvt�t�v���������������������#
���c
�w�����!�S�Y�;���;�P�y�l�D�&�������������������)�'C�3�
��Y4�����#
�T[
�
�t�}���|��}�zcesd�,.�9/�F����-���
.
�T4
�T������"�Q>�W���������������������"�S�X�������5����z�|��[������������,�9�F��Z3���}
�T[
�_
�������"
��"��"�
�T�����������@��Ա
��Q
�������@3CC3��e
����T���T����T�
�T��+�
k�T���^�^�����^�^���Tk�����wh
]�b�t�\�j�������K__�=��1ln��o����1�"�-SK�q~n}s{x}zs�z:
�������;�3�n� �L��������� ��T���
��T���/���W�W���/��!�(�Z�Mj���:�kB��P
K*
k+8V=_G�xɁ��������������H�KxMG�_8�+��
������M����������e
�����e
����N�-������hnog?���
�
��?g�o���������� ��������e
����N�-������hnog?���
�
��?g�o�������������_��Q�P��o�x��}��y�C���Q�(Csyrp}t{xod�������P��Q�_����K�����
��n�{�}�������|�z�x�8�
�S�`�`*�S�8�
qxozo||�{�}�s}|{n:
��������
�K���������������
���������������������
����
���������
������������;������x�����
�����������ʪ�ʪ����ꪫ����������ʪ��骫����k��i�hvv�v�i��j�i����ʌ�����q�����|�����1|���w������|�����|�����|������1|
g�����1|
�����|
�����|
�����|
�����Q�
kl�lq����ʁ
����q�������i��j�ivv�v�i��i�j����p
�)p
��8�_�^�X*�D�t��cX��_�^�s�jii}jtt�j�jh��s����������, ����g��|�v�t��y�w�x���og�`vf�/TF��w�����������������.��������q��ra�\��zz��z������aM{tsw�x�y�z�z�Vc,sj|wu��t�{�t�v�\h2p]�yx}�x�z�u�x�Wi:mY{pvz�s��~�{�s�w�w}e�_�^#��:��/�����������r�����8��������u
 ����������������4S
�4���K�
�4�"K���m�e��,�,�eB�V�4���K"44"�4\�t�4��T?
�4�t���*
�T���3���3�3���3�3���3�3���3�T�4�tX��r=�E��E=UIrX��t`
��(
l
P����T��,
 ���i�e��%�/��,�xx�x((��(���#�Ɏ���������	w�����������R��'������V��b���gfV�p��o�q�qq�������{����������\�/�j�}�}���Y�h�^�?�DF�G@�E�a�t������V@���h����a�%�-n�<���s��c���������sŔ�O��������5���*��V�JM���(0�x[[��_}�~������������%����������;�AH�W�{�'Q�bgf��g���
��F�I��G���������f�=��R��!��G������v�^]�^����z����8����'��n�\��PuH�#hPMqJ�K{�-�����������Њ�����xġ���������M�M�N�������[�����������Đơ�ϦԖУ�������!!�!�����x$ǁΓ�mr�;�n�i~G�h�ftnOlF�Kwz6����������;�������p��6p�_�ph��6hp�o���;_}oh���6�h������6��}�_�����Ǐ��\����������|��}�Cy�	�^��^�^L���uZ����������������������q�����<
���R
ept�c��CD�C��
���������ǐ��]����������|��z��b|�|}3��mrS��6��6��7W��,��������
�"�����������������<
���R
~yv}u�����������
��]� y�����]h��vp|�zww�z�v�����{����y{ ��������������|��p��hy
��'
�9
�-���'
�9
c
-��'
��9
�
[
y
��'
�9
�-����t��'
�9
�[
y
��.
�9
�-��.
�9
c
-��.
��9
�
[
y
��E��E��E�������t�
���
����@�������\
��tX�������������������������=l
�TX
\
��T���:
���������H
��k
�u�����������tX
�
��{�t������z{�~�'�&�9+
�T'�T&
�T&�:�'�'�
�)������T�G����4�4�����4�4����Tl
�
��|z�@�
�g����4k����a�@�
@�
���� �x�����D����������������~��������������������~U�T����4�4��������8��~�sj�iij}st�:�9�4�4�:�:�,�����������m���M�
N�L�T���_��p����������’����t���H������ 
������@���M
���������Ϡ������������H�G�w�w�sr@��
�m�X�X�j��:���b�kkcv`~:���j��X;�Y;l-&@���y�y���L
�_
�������S�+����,�,������|�������|�������������������������~���KK�������.
����������������������������fc�c��L
+�4�4�4�����4�4�0�0����f��,�,f�M�ff//������ ����g���l
�������}���{|y~w������j�.
������������������|�z����@"��L
�������
�{�z�����t�{tq�T�4� 7����\�3�u������������������l�z��*���� ��p�4�Tq�t��������������
 ���
��l
����������������KK��������.
��������������� ���������������fc�c��L
�{������k���k�Y�kk������k�Y�kk��kk�Y�k�B�B�k�������������
����
������
����}
��������0
������`�
.
���
���`�
�����gs�
��E�����f�Z�E�
�Z� �S�f�Z�E�Z�Z��Z�Z�r����Z����h������l���vl�r|h�@h�|��kc
@_�����G��_�����[
kc
@�
 ����	
�Z�C
�Z�Z��Z�Zr�w�h�Z�
�c
�����	
�Z�C
�
�Z�
��������
�@�C
�}����rr�w��_����r�Z�Z���
���w��.������:�:�z�z��z�z�r�����:�:�������������'��z�z�:�:�����������:�:�
�z�z�������J����b
���$����Z
�����!
���� 
�������J��hn����~���� 
k}�2z�z11z������I�I�I�I{�zzz��1�����������I�I�I�I��������������������I�I�I�I���������1��zzz�{�I�I�I�I��{z��v 
���������z�z{z�����������������&�v�v�,�+�&�1��zz���6�
k��4y}}y�Te�TN
�T���4�,#Q?`\pnZt��
����ҫȧ����P�Kgjzx}wy\O������������~������#��7�@�T��K��T 
k���4<
�T.�4O��+.�4O��8���C
�4���
�4��
�4��4 
������`�$���$`��
��$���`�$��{
���$���$��w
��$`����$�9
���
�#Z�k�=�=�k��#�
�#�kZ�=�=Z�k�#9
�#��k�=�=�kZ�#w
�#�k��=�=��k�#[
�
��]�
�����
�&�&�
�����
�&�&�
�����
�&�&�
�����
�&�&�k�K#
�
��g�%������'�'%%������
�:�:�!8#
�
 ���������%��5�����6�&��{��S�j�����������jQ��h�[�=���<�<���=�>���o��>���n
�^�C�T����������}�s�@��sk�iij}ss��t�Dj�t�� ��
��������}�s������TӸ��������~�s����sj�iik}ss@@st��
j�t�����TC^OG�G�O��T����s�Dj�s�@t���
��������� �K���8���sj�iij~st��s�Dk�s�@s���������TC�^���Ǹ��T����s����������� �K�T�8@��sj�iij}tt�����T���
�T�����tj�iij}tsA@s�Dj�t�� t������ �,���j��l�����
���t��,Q��a!���� �K��t�k�v��������������������q���C�t��������
k���t
���������Ԅ����
k���
�<���<�<���o��<+��!y}|z�Ty|���R�����T��|y��.}�|�y�Mx|��z������������p������������������4�Hhnzh�Thn����h�T��T�hS�\��V`��Z��y~���5���V``V�V��5�������`V���Q�L����'�HMoZd��9��9�dM�H�''��Q�L*
��$�4���?
�4�D
\
������/J�7�I[^_[Z_~}�yhn����������{�x�(���!
���Z�f���7p\XT���H�aG��-���w��h�h�i�w�V�Q�Z:#v���z]��l���`���L{�l��{��,�+������\�^���˒���l
�4B
��H
K\@j�������C��������N�.E���Ti����C�������k�h����T����T�$������?���L������L���?�V
���]�]��
�v�c��0;���'�d�quuq�--��3��������L��a������a��Lv�trr�t�v��L��a������`��L�������T�$���]�D�'�#�5�V
�#��7���quuq�-.��3���S������v-�y����U*�PN�O���_��Z~w�rsr�s�w��H�7�*�V3�ziU{������Q��������g�
�e��g�
�������S����������A��:�N�T����~�=�����L��=�&��0�����E��rA�������u�X�����������\
���5y}|��y}���R����|y�R��
~�|�y�Mx|��z�]�����������p����������k�o�u`�\\`qbu����ud�[�dd��s�c
���������u����z``K�4K++�4�4�-�3����������������������������V��������+*���������������Q�Q�������������u�듔����V�V�������������������������땓�����4�L�5�5���4K� �����˫��4�4��˫��x�m��k
�4�������������4��m�T�t�k
�T�t�k
�T�t�m�4�������4��K����
�Q
���t��������4��k
��m���t�K����
�Q
�������o
K���
K��W
l
�\
�.���"&��F�t4�t�+�
�
��������������+K�
�
Qc-b.T5���M�K����Tz�|������������sRrQnS�SL0��t4�t��������ĤŨ��������Ty�}��
����%�������%�����_��I�b�	\�;COLD|yz|�r�����s�{���������A��0����������%����kc
�T�
�K�i�``�i��K��
�,����Q�Q����,����_�O
�,�����_�O
�,����L��a����r��z�y�z�yrr�b�r�:�9�r�������������
�:�9��L��l����r��:�9���������:�9rr�b�r�z�y�
�z�y�)�`�����������4�T��������TG��������y�xxy�}�����||�9�T�4�4r�d��Tj��4_�T�4�4���f�TH
������4�T��������T@
|�|����}���������������� ��������Q�EEQQEE�Qь��Q�EEQQEE�Q�@����_�O����H����`�E��{l^@l�9���
�,������������������ ����4�K
�4�
��&�����)�WW���X�g��3�
UGQ�� {y|ss^������
����� ��������K
���
�������� ��/�����`�T��l������
����}
����

������`�
.
����[
���
���������`�
�
���
���������������������������������
�����������2o`gfbn��������h������.���������/�>�p�����������+�>�������|����R�i���������/8�C�����������rb�������{Zja_q���������V ���
���
�P��_
���4��4�T(
V``V���
N
�t�Y
�����c
�����
���������T������
����s
�^
��nc
�
���T��T����1
no��q�q�on�1
!5� 
����������
��T�����f������t//tq�:�v++��������n�+�*�m�����m�*�+�n������3�3�+
����y��p�p��v��-�����)�
����m����ERQDEQ��6
��ERQDEQ�Ҍ���QE��9���}��,����~��������������
�q������������
2s�r�q�t�-��}�}�N}�}�~Z�T�Yp�r�r~�������n��
pw�����������e�f�c~r�r�q�/s~��|~�M}�~���,s�o�p�pndmfne�����n�
 �s�����������
�������-}�����N����������������1��������������������k�m�o��������/���������D�D\
l
������y��[
�
���p�6��$�7�������d��I�.�3���T���fo1\��s�\k�
�<^��
�
�����U/�Sk����?Ÿ��������j�-����@�	�
+6�	��@
�D�ɝ��·�l��Z'�#ik}ts')��2OKebh`i_�mdG1dq��^
��n����m��]��a�"����.����������������������e��
�G�.�3������GNOH���	�6�
�	t@�K̬�-*�o�s�r��^��?<k���篞������
���Y�	�x�x�y�t�R]�s�sv�k�c\k}\vs򺊧1f����z�k��������~�r�������v�d���O����J��.�eY�$�n:mo��^
��n���q�1�d�_�`�c�Jl�2�)t��}�����Ǐ���y�m��D��
�	����������g
��
��@�K�M�>����������M�>�K���R�4�)�<�5M��n����ɿ�<�5�)�4�RP����
���p�]����������;
 �����d�r��3C���T�
���~ϧX��'�T&
���~ϧ�4���
����{��{���{������J�{�J�� IYU:��=Y��Ͽ��ڼWG��� ��j�8Ke`bz�|�vw��{���	�̋�{&������,�(�i�"���z �����4�t�4���ToN
�T�4���8��0�����Q�E�EQQEE�Q������0�8:
�(�y{���������������w�A[
�_
�
�l
��&
��.
�T/�TL
��_��@
��D�D� � D
��N� � �D�D��l
����
���+
��^�Gof�������C3�Tz
��^�Go�
���
 ��������^�!�Y������1���/���)���Yb���1��+���
���o
�Թ��V``V��R�z�f��|�X�m�}�[�YKKkK+++K+K$��>��+�++k��˙����������̚�z�f�R��_���L��<����L������������������������ a��������������������������N��������������������������i��������������������������������������������`������ʆ�������������� ����ŕ�������������������������X�P+
!
�t�������]�r[����t��
 ���˺�?ApDU8��8D��p�?��?
��\�p�T�T�z�{{z�~�T�T�#
���T�~
�T���p
����!���8���Z���Z���.n8��2����Y\uZHm{������(�r�������^�-Ʒ֫Ϧ�������[������������{�wx^�^]U�p�[�c��\��ˀ�t�����������b�de�e�	�����$fb%�<l6fGW���G4���9�<:]ua\H,�2�������n��������{����l
���������Z�w�R�Q�S��qk�lN2�IUph��s�J��&�J}�r����I���m�{�j�l�kā�u�v������gE{|jZvkSr^kPxOH.�7�6�N�P�T�>�a�a�>"�i�p�ul��e��Ǟ����ë�����ѯ�����
���w��C3��.
�����4+
��t
���3��&
���
����
��
�w�&�;�*2�26�;�*����u
����qX�sIm�[FHN��M�o����;�ot�p��л�ͩ�������������&�o�x�tt_�Jdw�r�y��0�A���y������u���{�&A�y���������  �(T��QrLyJ�γ�ʣ�MfEpB}�P7�.�G�$�%�Fr�r�s�������3�Xo[{TO��(�QV�Y�`������1���(m�pn�nvw��w���.�"�4��X�+pr��q/�#�>V�K�����?�����ʹ�ķ������S��p.���v�/����n�������������������Q���1����h����/
��p����%��������]8rw�s�����p���� ���T���T��T���]�]��T�T�4���V+�T�
��,�[
�)��������
�j
�@�
@���
���@�Q
�t���t�f
��g�����
� ���������
����T�G���z�i.�]�,�+�+�,�]�i�����{{���}�zy�j�p����n�������j��r����������������y��'�����������'������{{�~�{y�#j�o����i�c�c���i��q��#����������������4�4�������V���V��4��@��Ա
��Q
���2�t�1�v���������~z��1�v�F�4������Y���tH�A��AHZEt�Y���r�tp�Ԋ
��
�c
������4�T��t��tf�T�
�E�u�F�F�6����!�1��=۴�����n���_�F�(���
�R�D������\�����������������\��
���T����$�4�`
��.���G�^������S������S�����G�^�J�(��@�t�w�T�3�f����X
V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!��y�T�k`�����������w�r��P���N����x�y�p�r��NV[�P��w�r�q�q�yx����y�p�r�r�ww�r[�P�N�r�p�yxxy�p�r��N�P[r�ww�r�r�p�y����xy�p�r�r�w���P[V�N�r�p�y�x�����N���P�r�w������������}�����������������P�NV������������V�N�P�����������x��_
���4���.������T�O
�l
��FPPF���s�\k�
�>\��V�?��Ck��������������������������k+�+JL��@
�
������=��3�`�?.Qm\ibgbjnG5[��^
��n����fu�e�l��.�������=� ��	� �_
���.�G�c��4����`���C�>��[�B��
������a�tĹ������i�x���������FP����������+��֫ঽ�t��t�t�u�V�]�]B��1�������
���s
��[G�ng�i�m��Q`�?��3�4�=_�`�b�
��
�	�� ��	� �=�a�c�f��}�|}K�K�Y����S��#�L�����������
�"�K�
���V��?�Ck���1�B�]�]�V�v�u�u�t����������+����������PF���������xi������Թ�ta�������
�?����M���Q��YK�K}|��}f�c�a��=� �	�� ��	�
��
�b`�_�=4��3��?`�Q�m�i�gجn�G[����w
��
��ʰ�����"l
���ZB�
�xx��yatRt]ss��vikcx\j_��q���FPPFGO����LJ+�+k�����������������������k��C��>�[����J
G�!
�����k�f�u�f�����s
�^
��[5Gjnbgbi\m.Q�?`��3��<������
��	�
�� �	�� ��=������؉�����ˠ�����S���L�������@��J���Q�Q���{z@�r00�6����0��
�����
��{zz�{�Q�Q����W
� 
����������00������T���������Q�Q���{���Q�Q�
��%�����0��{z��%
����00{������Q�Q��b
���Q�Q�T��������������
������{z����
��������00�y
�����
��&�Q�Q��d
���Q�Q�
��{z����
����E��݂���������v�������
�<���<�<���o��<+��������������~��������������|iyz���r|���������x|��~t��}�uz��������������������������~�}����t���yzr����j����hv�������������~|������{���|����������������~�oz|������������������r}s�pw�h����������������������jh�y�~�|��������������������}}��|x}�o���w������u����x�����������z�����p���}�o�~�v���q�y���v�}��}�{�o�����������y�~�t�����c�����u����������������y�u�u~�������x�����������r���}�������|�~���g���w������������ɛ����������|����������������c���������x|�����������������������|����������������������������������v�����������������������������t���|�������$���|����~����������������d����������@����|������~��������v���r����y��������s~��@���uw�}�{�~|����|��}}x�z���ut�����������������l���������@�����|���������~���|�r����������������������k��������|�����������������������|}�����y����������������������~���������z�{�������|������}�{����x����|�����sv��~�v�z�y�z�z����������y���������7�����������������������������������������������������������}�r~�����������w�������������������������w������������/*�G�s �i��a
��8��"�W��=�=s�Dj�t����
�>�>��G��ww�|�&xj�U��t���=�����������N,�B��Q�?��F��������������������E
����������
���
���
�{���t�q���
�����z����
�z�������������
�������w�������4�4@
���
�4�4�t�e
���t���������������a�k�w�$�$������������Ti
�Tqt{s��t�o�y�$�$���������$�$��������t�q�T4
�T�A
�$�$���������v�
�v���������$�$�#
�T-�T��$�$��������*
��W�n�������|`_�]�#�v����:��[���������vV��i���\�\��i��V��v�6�*�4���4��6���Y
�T�W���u܎���v#6�]_��`�u�uu0n1W@��^�;������Y
 ��T�T`�4�S�2�S@�����
zyr�rrr��y�b�cy���������j��d�L �d�j���������y��d�d�y�sq�S�Umtvw�jo�XV``VX�o�jvwt�nrr��y@�d�d�>
������y��b�c�y�rr��U�n�T��d�d�UA�?<AkST3��«���n�U��b�c��UB�>?BnUU�'�&UVlA?>�C�T�d�dU��m��ի���3STk@< ?�B�U�b�cT��m���Ԩ���'�&������*
���J��,�>�������i
KQtd_�O>�K��j�
}�|�}�,D!�/�G��
��� ���������#��
����#�����@�*�!�
�!��@���i����#��#f�l���A�\���3�T�3����T��
�
��K���"��������~�x��������������F��͇�������������F���6)�-1?pWSRWn?�=�%�(�EU��m�þ����������B��B�������_X�S-(mU6�EF(�%�=�?�VX��p��������򎬇������������F������������˞���������y��\�&sqb]NE��N��e����������wd��G�&NS6�}dNDwO0]b��qNñ����џ���s��Se&�G�F�������������������\}�w~vt���:�4+q����������������4�����C�K�t������ې������E����,�����5
������
�4dYztd���V�4VAlff�,�,fflAV�4S
�������T?
�V���i�������?��������fflAV������4L�4��4�������4�L�4�����������|�+�f�L�����dU�S�55�T�T�d�.�.�������Ġ���
�.�.|�����������|�����e�WT6LL6UV��e����[�o���!���"��m\�������������
����B)�%�h�;�=�h&�)�C����M��e��0���0�������
�������4V�Ԛ�4����4S
��?
�4��{}������~�bx����4��T��Ա
�T�Q
���k�m�e������eB�V�4�@?
kc
�� kc
�Tt�t�t\
�
�G������l
�4B
��
3
�E
����Gl
�4B
��
3
�E
�T���
3
�E
�����h��	�$�@�7�_�H����,��������`djXg]�S��ˈScfzheb��pR3^��v������"O���m��(�;�.?GdFj�P�������yi7�vo�My�y�y����4�
����@��(!���?�������:�::  (��l
���
�T��@�s�Tz�|��@=\
��@3�/���{p�k�g�G�R�[��"�.�_�_�u��š�����ȟ���mN��g�G�&��߅���������Ȃ�������A�P�_��AT�e�A�a6226^%�O�L�J�n�p�s�����o�s�x�Z�WS]{`lcmcbnXzyY\�a\^��cb�h�n�n�p�s���z�f�%�_w�h�Y�+�W�~������������ cv�͉��Β���������������������И��������h���v�9���!݉�}�t�{�D���$�<�T�;�J�Y�Y�b�ll��|����ԡǩ������������������+�}������������������������������������y�L�J�G��a�7�5�����t�|�m�`�P���v���G#�?}Z�hzdqcwuvltlsj{h�xPK�GQP��Ob�k�t�l�{·�}����y����ُ���������������ˌ��|n�a`�Z�U��TS�R{S��-�de�h}~��~�3��������<
�@�
�8 �������4n
��
����y}}y��y}���T��������}y�T����������1
������v
@�
 �e��O ������ �.�����Z�Z�{���������{zz�{��Z�Z����������������R����O�XO�X�XO�XO�X�X�X��r�6��v�2����������
������
�
����������W�W������2x������
����_��4
�T�4g[wrr��Z�ZTT�<D�kAٕ���!��y��!��y�ف�����)�)�����P���/
��Q��������̙������r��ԋ����ѭVLE^"t*9x�I��&�O�q�=���b�}�%�B�VH�\�f�z���w�}�i�~�w{�z� �Y�
��n�L������U�i�w��<�u��8=��q^�E�i�{PjPn]v�Ӏ������(�(�����N���
�K�‚��������s��Ӌ����ЬWMF_#t+:x�I��$�M�o�;���`�z�$�?�TH�]�f�{���x�}�i�~�x{�z�!�Y���l�J�������S�f�u���:�s��9>��p_�C�i�v9U:j\�i���9�%������9�)��o�'�0�q�i�?��
�?�@�i��eM�#&�nY�A� �������,��m�����x�wr��]������������9�� �����F�f��������H����4 z��e�����`�c�`�`�c���#�NW��[�S���9�Z��)���)�)���)�;�����7����e�e�f�e�e�f�e�e�f�e�e�)�l
������
�������{r|�sv>��(���T�+����J��~�f�f��~�J�J��~�f�f��~�J����`
���
��P�
�(
�����_�4
��,[
���q
���n���������T�T�{z��T�T����������l�T�T�
���T�T�
 ����o
�4�����������
��������f�@�
@�
��Tq
�n��Tq
���n�
��mjingr�;��<��7�
M7#?����#��7�7��<��:�f�i�m����e
���B�4�@ V7)0��[�/��1��/�^�/�������/��1��0������������#��s�����E��AA*,�?���������m��6�"�m�F=(G`��$����.�����������ƣ�����0����������n
�;���;�Y�S<��!���
��������8�����sj�iel{pp����������������m��o��������������y��,�,�yr�rUg[giyx�tq]�u�m���~~���������~~����mu�]qt�yxgi[gUr�r�y�,�,�+
�����������o�m���������������pp{lei�j�t���t�������,�
��
M�T�TM�@�u�^�9v:p%"M$�%�M�����ڑ�����������h�i���M��M�T�TM��T���&�&�����&�&���@��;�$y����z������%��:�@�
������%��������%������_
�
��T��
����D�d�d���D��WX��YV�_lw}v~v��*���A���d���D����[
�
����y����o�6��$�7p�����	�^���~������ )�?�c������w�r���vy~x��]�͈}�|�������������*�Y���v�v�����������������������T����
����
+�T����T�?
��V�Կ�T���
�T+V``V��S
��?
��V+�T���T+���?
��V+�T���T+���?
 ��
��X�vv�uuv��v��HNNHHN��?0
��	�	���	�	�����������1��j��
��j�/������
�����������b
���z�����b
���z����eU������=���k?0
)���������$����������
��4S
�4�����T�˱
�T�Q
K���4�������i��m�e��,�,���~���V�����4��T?
����#��x�:�4���t�T���.H
�
��pF�
E
�4KqHaZxuuvwtD6O'���x��O�D�w�u�x�a�q���\�_��I��I�_��\������D�������D��$�2�?��?� � nzykjs�t�z{z�tsj�m�y�}�z{�J�l�Q��e��űťž�̛������������{�������y�n�������׭���
���|�z���T�|��a
��������������������T`���t���3
`�Tz�|��*
����������������������������������t��E
�T�Q
��tC
��tu�*
��4z}|y�t���
�T���ty}�������������������������������u�����
����t�T�4���T?hnnh�i��N�[c�����G�=B�^�60��Q�EEQQE��h����u��I7#e  #��7up�jj�_�p�B:�1
!5�ܾ�ئ�_�������Wc��[�7�+�4���4��7��W����������������������
�5�!�1
7�E�p��F
��m��;�4�U��?������ua�[t
�RҢ�����&�F
�&������
�R�D[apdu茆���0
���U�;�4�mp��h�]�@�
�@�h��֦��������t�
�t�����
������K�H
���w����������K
K�����$�4�`
�����(��@�t�w�T�3�f����X
V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!��y�T��)��T���1
K����5!�����(
�P���h���h��4
�t���T��
��������?0
�4�n�h0
�4�n�h0
�:�B�p���|��צ������_���)��\�t��E�Q�������F!�4���4K$�T/�T*
�t�t�T3�T/���T3�T/�����
��t"
��"���K���T�|�zKz||zKz�|����������F���T�|�zKz||zKz�|�����������|�zKz||zKz�|����������2
E
����4c
�
��@_�4
��,�[
�������I������t"
��"���2
"=�����4�
��kS
�T?
���������K��+�
K��Ա
�Q
+��
*�Q
�������_���UV�T����k�,�[
�)�������x�`����������
M�����������W�Wl�������2�����M��4��"
�T�����.
��4
��4hZwrrl�Z�ZrrwZh�4���!���"�"����(
�"���T[
�����4�l
��4�̒�4���"
�T���t�����k�H
���w�4��4�����K
k�����)�������������t�K������
+�4Kk�4��4�T�t+kk�T�k���Ts��Ts��kk�T�k��T�t�4�4Kk��4�
F������t����ˋ�� �����|g�>DR������������T��T��˫k�T�Tk��tk��K���h�@�@�h������T�T�x
���Tb
�����b
�d
�����d
����4 ���J���b
����$���Z
����W
�� ���Z��4�
����~���]
��
����~���]
���Z���x
�x
�P
�tI�I�P
�4I
�I
�������t���]
�
����~���������YY��������������
�����������Y�
�P
��I�P
��I
�)��������g�����|z�����e��3�C���4KGf�9��-�K�����
�)����
��4���ԋ�T�
��f�T�
k��E
��Q
�T�
�ԃ`�t���4+V�`�@�Ӷ����+�A�:��������
a
��4��ԃ�T�
��Q
�
��T�C�3��v
��
������d�_gg_��
�d�4�����T�
���Q
�T�T���`
�A�������
��E�Q�����
���6 ���������Ԗ��� �������������T������N�������T��@���"�R�DEQRDE�Q��������b@�T�T@����Q�E^
E�QҌ�X�x�
z
�
 �
���@��T��� 
���b��'&��Q���k� 
�*�j�4���a����,���t��������{z���������t�C��8�qb�b�b�{�y{x�{��������������K�  ��t�4������4�t����2��2�4���\���<�������-��7����������������ʗ��7��-�t�D�&c�+�������z�i��0&H.��0,�-##�s&�&�2iGz@@R�Q�T+�c��&����&����t������������
� �l
���c
�tV``V��
V`���T�5�T���T��T�K
�4�
��&�����)�l
��������|�~������aiEjV��ul�������������Ѭ������o���70 XDQ������5����4���7������mG�G�T�4�+���
��&�������������������n�a��x�j�i�gx�i j(C��(�j��g�j�i�xh�i�5��'��=�=�'��5����G5
�n���5Y�'��=�=�'��5Y�i�h��������������C ��i�x������������5
��
�T_���-���T5
�)��T�����T<
�T�T�r
�T�TA�O�T�TA
�8�T�TC
���KM�`M
�
�
����M��
���y�y����
����p<�
Z��L
�)����x�����I�����p���m
F
���m
�t�:+�����t����m
F
���4�m
 ���:+���������m
F
���m
�
HF
���m
�
�
F
����m
F
���m
�F
���m
`��
����:+�����t���$����a��s
��^
��n�a�
����jM�P�di��oo�� '��.��<WN�����2���XV�u������������h
�
�
�\
�
��������$]�U�M��'����T�6���"W�
N�Q��(���Y��cjM�P�im��p�P~�~�~�����+�����r������+�UQ��������t�b�3���L�?0X�3>���X�������@�Q����h
�
 �
@�\
��
 �s������]Q�T3�T��)�&����
�����
Y��
�f�f�
�f�f�
��������z�M�{�y��z�	���z�y���z�������	�%�����tJ�j��Z�!�!�
�!�"н
�
��$y�f�+�/���Y������
���kz�X�,���Hn���|�}���������������1��d �����Z\�I����<P��W�3�֩Ó��W�W���}�O�����u�[�}z�y�yy}p~�u�[��BO�}a�`���5��_��q�������U���U������������5�������y�����w��{�z�������q~}m�nn��w����m�r�������������� �`��������������������4Q�t�����������~�w�~������tJ�t�t<�t��q
��t��t�t����T���T�X�����
���V``V�V`������`V��5�!X�1
D�M�j��e!_�NPZ|UzXr���Ĭ���X�5�!�1
D�M�j���RjdMD�*�d�R��쿣�3��>���ێ��Ĭ��� ��T���T��Tp�K���
�=b�/�t��Q��(
0��>��m�U����z�x�w�y�������y�sq��
ggK�g�������y�w�x�zp���T��m��Ө���'�&�������h��~�z�����UB�>>CnUU�'�&TUmC>>�C�T���z�~�p��������>
������y���������
7Q��(
0��>�����/�+�=�
�������
K���
:
�Khnnh����%
�T,��[
���P�����%
�t,�
��w��o�h��honh����h��n���
�������S�3��@��B��<��
����;�|��#����&�%6Nkj�>�����hW@��
x�}�p��U�3��@��@�B�<��
�Y�;�|��$����&�%6Nli�>�����hW��
y�|�p���*
���������9�I�v]�Y��fh{os���je�V�]]��n���������������w� �u�K��J�Q��T*Fhl��tn����ݖݘ����Ǝ������q�DA�������5�%!*Q���TFhulstnl_�a99��:��P������������������~�݀������������*�������P���k�9�o������������k��թ���������������
��?�
��]�]���?�
�
�
�����D�v�D�)���D�$�$�D�K�������������?�
?�C�I������
9��
�.�.�
�9�~���������`�n��
�?�
TAE��N�������K�
�������^�
��)�������T����%�� 7;L9\Xpq�T��T��_��4
���9�������������$�����9 �
�x#������4�����@a
������������������T+}��~|��������
z
k�n�r��]J'�V��{k�e�{��������������o�h���c-��#������/���&��|�~���T+���������������� �`�����t���{�y��S;����RQPIOD�w�������t���{���K���������������6��������K�
�������t�������������������q������������n�;��<����-��������=��v��v�k�h�F����@�8��k�!�!�7
�Z�Z�
�Z�Z�9
�%����������! 
k�a�!�7
%��
������
��9
�Z�Z��� 
���������!�7
������7
%�
�Z�Z�9
�Z�Z����! 
������������7
�Z�Z�
���9
������9
�%���X 
����?�6��I�Y����(�����u���C�� �XV�Y���x��\���������b��6��6��������
P���e�S�GQ���G��z�5�:�5��'��D���N��������5���(���TK��K�T���( �Ta
��4Q��~����~���'1�
�A3�Zp��T2���T�7׷���i
`
,�9�_�7X�T4
� /
�T��Z��A�1�
�����������~��P(��~���������u���Q�1���
������
�Q�1�.����g
����������T���T�����t���/
�G���]�]�C��k���V���������Y
��
��M�
���y�y���L
��������������?
�����?
���������%
����U���TU���TU�������U�TU�TU����s������M��-�������
���|�a�9�9�a�z�~��
�������z����������������
���|�3���3�z�}��
�������z�9�9������S k���
�<���<�<���o��<+�����������������w���������������������vttvw������������@��������������+�6�����
���������s������������Z���@@��@�@֋������Y�9�ZY���YY�9�Z������@�@��@@���Z݋���� ���J��{��W
�� �����
��
�tQ��3��>��`����C3�����+
��L
��������9����{���s�Y�sn��{x�p�ut��}��T���������4�T���~�������T>��T������������w������}���4�T��������Tru|u��t�p�x���n��������������u�r�T���}�y��n��n�A���7
�����
���9
�g�g�g�g�9
�%����� ����T�����(�@WWS�+���������}����������}���������������������F�������������������簰ɋ�f�,�,�f�Mff���� ����z�����q{tt������z{���v�����7
%�
�����vx�����������t~
�t���� �����4���G{�z�����s�{���4�O!mFNB9x�*����}�}~��������������5�W�]������4����������x�����G�� ��t���������t��T�������c�������������##
�y����u�s�su~u��v�q�x��Tz�����������T��������QK
�y�7����}���T�x�vvx�z��T}x�q�vu��~����������K
������z��T��x�q�v�u�~us�s�u���������T��������T�t<
�T.�TO�T��}yf
���d�y�������������Ds4�>�$�0K��������������������_�������|�������������������h�)�!�<��z���������3��������������5�#�����N��2)*
�$��h�e�kI�s�z�|�������P���諌������������2�v���#Q�6�(�I�2�����P
��k�����G�������������������������\���L�9�x�s,(�$�*�s�*$�P�����[��f�����d�L��"�������*�
 ���������������&�����������_��DP
�z|}y�H�ec�$�,�L���t1�HD�U�
\+�!W)�E� ���������������$���z����� �~j�Cy�}��>�C�h��&�5�`�������Q�?��v�k��}>�P
��*
�z�|��%� �e@��1*
%$�?�n�P�D��s�������Q�]�(�E�5�U������W������������+�M�3�T�)�3�w��'���T�<��|�#������������P
���>��}�y�k��א�����������S���S�8x_uaz`{�{�s��k�=�����V��������������j�s#$��6�$$����q
�@����{�������_�,1�!��T����!�1������N�H�����(�	�t(�)$�t�
�t*
�$�t�T�q
�;>�T����P
���
�����N�H��\
��������������@���3���uk����1��������@����������:���6���zi����
�4Q�G���%/��쎔����������|~�}�.���)�����|�}~�}�*����1����~�|���������������3�"���C3�d�4��}�����3������;���e�:��}�����3������8���i�������1�.��.`��z�J�1�Z����.��cb��b���.���jj�l��h���8�����ʟgk�������������&w�l`�����l�K`�\�������.����������.������H̢����W/�&�����~��k���S�ڡ#���ڨ�ZD�p�A���4�����Ik�����l�������,�,���}��������V``V��S
@?
����V`��k����,�,���}��l�l�������p�8V`������V``V��S
@?
����t�
�T�
�T�
������)�8
����
��}�����3
�|�
��H��4
����)�8
�1���H�4
2�
��}�����3
��|�
���t�)�8
���Q��4��^�4��^�T4�T�^��4������kQ��4��>�t��)�8
�4�Q�T4�T>�T�TQ�4�>�T�TQ��4���G
�s�=�)�8
��І
m�a�
�G
�=��)�8
�d���
���
 ����4���Tgnohgo�������!
�4�'
��4
�,��-���3�#�������������؋�G�t�
`aM�PQ�Oddlli`g]_Q+�f�j�ooj�h�o�����v�uf��\�#�������ͥ�����ȅ֤�������������������������� ����T�n�hgoogh�n�G�4��0
���
��q��~
����)�������|�m���������x�r���z�e�`�I�3��}�y?z�#�\f�LuOvh�i�moh�j�o������Q�]�`�l�d�O�Q�P�M�a��t��G��m�q��������������v�i���n�4���^��ːΆ—̀Ə����n�X�+�}j�{x������t�������zj�1�H�L��������zii����|E�;�;��]SH��v|~�}������������I��q�z��x���������c������������y�pst}qv�5H��ίp��}��������������Gq�|�z���{t��������}��yp�jip~rx}x�od�d�n�yr��~������������������W�����vu�yi�0i�z���������j�6�0w7~Q[`R�|���������R�[�~�wߋ�������ƻ�ő��������|�ą�`�P�8�05�����]A�]��|�s�|�z�|����W��W��[�
d�m}yrxq~jiq��y}�����������������~r��x�nd��I��mpr|rv|������������{������������������H�� ��l�D���z�ك��{�ц���Ԩ�_���~�q||�||��|����������f�|�mm|t^]��Z����'�X��"��-�I���bgiwknv����������v����}�������������(]�j�vg�rxhkl��m[2�+�*�m�������xf��w�j]�Y��n�w���w�y�{hsfy\\h��qx�����A������������zi��r�eV$�G4]�t������������~��%]~smn}���f������t]�f�c�����q�y�J�>���L�N��M�M�N�w�K=�KQx<r�����������<�Q؃v�L�N��M�M�N���Lؓ�Ş�������z�G��D��!�M�L�M�.�E�Z����
�#�������x��rh�]^hzirxr�dV�CV�d�qi��z��������������0�nwx}y����������0�g�s�|r��������T���������7���y�g��}������}�~�5����������T�~�~�����������������K����������}��g|ut~���$zm������v��s�����������������������:��������s��s�A����~�T��z�}xp�M������������X��������l������������L��y{���q�������������-�g�������p������������Ln}������t�������"�V������O������w�( \
��u�vx�������������w�~�������������~�������vu���#��,l�u�=�-���r�u��t�t�u�r�r-�>Cu)k���,�#�#��,���)�C�r�r�u��t�t�u���r��Ӡ�����,�#�ˮ�&�����~��������'+�����������'���}���������~������~�����������������}���}������������3	+�t�4��b��4�t�D�����8��0���9�m�i���%�i����f��������������+�q����U�����3����?�
�=���=��BR�ippi��ip����!~b�^^���j�c�����j�c�����~���������9���?�>���9�9���>�?���9����elle�Bel���9������B��le�9�B�d�2�����22�����2�v�������<� �<���g�����
���
k���&�]���&�8�t#�4��#�4-�_�G�_�G��� 
����r� ���9�*�Hb=g���h�`�̀�����,�����������ް��5-��"����MM/�8��(x�,��(�9�0�KDz�іɕ�O��T��Om̀ց�Q������\����Y�5����Yy��{�)�)�+�)�j�x�Yh�m��G���{����I�U����s�V�7�=��o�{��vu!� z'f@o&d1��c��a��a�P�E�b�4�"f�|�au�n��O鿦ɯ�˱�n��n��o������5����.�OB\W�Q���Ħ���dRۛ~��-aOpbK�I�2�C������@�l�U�[������s^�Y�oc�`̄ƃ�~����ƒΑ����~vD�,@a�D�1��"�@�3�b�yЀ�ѐ����l�"����k�"��rbs��Ir�3p�1o�1�]_qew�G�1��(�'�$�:�e�����r�)n�'y�*��ԧ��ӥؘؒ�6��;��2]�z�t�[�u�n�s��� ��P�D�cl|P~_���q��������<����������}�N�x��0�k�<���N������������kp�ti"d-����"�`�#�6��9�VѺ�D�����������M����V���"T�A�������K�$�� ��`��������~�t�J� �t~������~�����������@���������������`�������������������@����������~������t� ��t���������tQ� �t������~�������������������򕃘���������t����������������~�����~�t� <�t~���������������������qq��P�V�]�]�t��סж�������i�h�h��MD�;ZQuItI[�nt]��F�EQ�Z�-[+@@*e��-�8��;�@�@��4��������������u�vǹ��������ߤ��������������p7ZYCYCq5�(����������������������� ���>����>���>-r�>-��>�j7��)������1�����a�u�a��b�t�a����vz��������yvvzyu�:uz��������yvvzyv���LR]]S�BR�]�ĸ���B�]�S��x�*�.N�Z����wR�]�Ĺ���w��wR�]�Ĺ���w�Ǽ���|���������������C��NG�CCG|pNC���������������!C,��3�1�3,�� ��q�|�]�RS]^R�BR�]�Ĺ����w����$��䔻k���i��ᦿ���ů��I�7����Y=��+��k��t���������}����n~����x����?�����z�}}���}�������������b����;u{�{~YP��
�K�S{T�Sm���������������������{qiTAsF�G�K�i���wz�������w��o�_ew��k�j��Z˒��l�s���h�z�t���u�|Ц������yu"�5��������@���'��\��ϊ؊����s�q��ٱ���������.&7�e�}�|�_��g͗������������5�������������|qD|u�n�l�a�K���]�~���������������������d�i��q�qq��u���zw��|�wʎ����ó����^�=~Ş�v�}M�,������7���Qu�p�z�������T�S��(�����p���zKY�N�G����J������ ��b/ѓ��������c�c�t�u���p�4�K�6�gp1���zy����������������������������y�r�7�Y�}�{�w�\�����
�@���w������x�F�i���������������������s��}��t���x��y������������������������������o�G���qt��
�s�p�^�)X��
)iz�=J<I�
����ԑ�yʂ����������X�j�eˈ�𫐠���{�y�M�9<��I�b�q�u�ҏБ�Z�=�Z�>�F�df�|o�L{1�$�+���#~[G0`SQRn�e*wXjs�I�x�[��Ͽ���^��d�7�,vX�9�<�D�B�c�r�������������~�������������������������}�\{zeugwT�qtmq�F�X�ec_�d5��d��y�q�]ʼn���������������m]�n�r╠�����Ĩ԰�=���� ����j<5x0�3�%��������������������\�Q�M�������������G���#�K�.�<��������؃���f�f�f �h�8����z��_��=�K��
�8��^�@��m�K#�2�'(��h�U5���h��KQ�����y�����������%��.�"��/��b��7�������@�:�,M%��s�y���s��vn�������}�|�|�����,����#��/�� 
�
�@��������m�_�X-�P�u�P�ª�����.�M�IJ��T�2��&��&���<�_�]�A�Q�S@�QdXJ*���13SsVQ�~�y�s�"k�=O�B���m�m�Y����������XX��[�J:�3�
3�:�J�[�XX���������Y��m�`����K�|��|��v�pus�r���dopdad�o��������mn��no�&�{{�xoj�p��h_�hm�nf����������������A�����rk��R���h�������g/Q��Q��I�s���������7�z����������6����ݺ�����Ͱ�H�f�H��́b��4������4�T�T<
�t.��O�t8���4�<
�t.�O�t8��4���
�����t���������cM�A�AM[Pc����|�xxS
������w�������/�����9�T��M�Y��4�^
���TG��������/���w��p��{�L�4���
���T�t�t�T�����5�!��1
�4�����$�
�d�d�
�$������
k���~��mp�k������`�Yy��u��������ݶ�S�Hk�pf�1H 
��x�
���������������������������������������H���H��������������������������������-�H���o�{�H����遏�������������+�������������H���H����������������+�����������������H�������������H����-����������������������������}�%��I3�U�����?
���R�����H!f��������������_�����x�x�o�r�iB?z<���.�"����������t�o��2|���3�P�����C����ˮ��T0
��hn��2��~
���
��4
�T,l
-��_�wc
[
 �@`��_�t�����A�A��A�A���A�A��A�AI�'��t��t��2�F�^�wtp�c�s�����������K�c����I����>����Z�Y�
��d�e�Ҧ��t-�t���E�#�#�E����)o�}���}�4����u�{���z��u\�
O#���nWv�Z�����h��,�l�t�:�$�4�Zsj{rg�������l��b�1���Xl�dvG�'�b�Q�^���{���y�q�����a|x��|{�j�j���������s�}�����������������.Ӣ�ѡ�?�I��Y–�����K����k�.�#�4�)�s�V���
�1��|��� �X��R�f�
���7��n]Mw]�^�}�����ǟ�x�w�Vo]�
�yt�y�y��������������w�y�B �A��'��!��3EM�M��!�#] �([�B����4��W�t�I��m��n���x�Wx�W�t�I�����������W�ȇ���$�r�z����ӎ�l�Q�3��J>�Rq�����_�(�%�v�v��=�=)�G�/����H��{����uA�R�6�=zk�wl�k�k�w��������l�l�ae��l�j����������{�R��I�7�
��A��5i�f�sg�f�f�s�����h�.�/��g���g�e���������0l�F�
�kmi�E��#�=[�Z\�Z�#�=�E�O��i����������N�����Q�@������Q���������������y��Q��������@�Q������z�E�������������&��}���9�ً���܉���{�H�[�1�����������N���[�G�C��J��ۋz"q*g2E��K�a�"�8�1�&����*����a�/��rwxrr�w�������T�(����v��]�������*I��0����������������
���
��3����30�H��
�
����3
��Tz�|��4#
�
�
����T�|��a
���������������5�T���4�#
����T?~~����T��z�wwv�x��T�������2���4K
�
���Y
����6 ����������d�p�����F�4�7�z��w8�,�l�����������r�7����R��Z(�x�[��t�s�[{��+��;f�������
DK^Fx���u���k��r��l���qv��}�����������K�����?�(�&�P�X�+�)#JU�^m�m�m��jg�e�nyiYW�»������ë���P�����7�i���S����պ�ԤÎ�˒r�Spp�o��G��.����B��%���r �����t�T�t��
�TQ�4(
���Z�d��z�{�
��
�IP
�4*
���
.�
����
�������l
����
�tQ���)
K*
���[���s������`����C3�����+
��L
�)�����4��՘Ζ���T��˫�K�T�]�H�A����F-�"�K�g_y�z�}>�Q~{{�~؉�}�zy_�g��K��飳���ܩ�n�_ZZp_bn:�������v�k���bA*t%n�d�ʋ��̫�����4�4���������m�����4��tb�����m�����+�+�4�4k��kL�J�J�l.�d ���|{��|�8S"��1�Þ����H�=|}��}�6TV�5�wS�L<JI<{�{�|��4��"U�4�wT�L;KI<{�{�|��3�1VPwcSM;�Nۛ�����0���0VPwcSM:�Oܜ�����-��7O��d����ٛ����T�8���9O��d����ڛ����S�;�@�Ǡ����L�9����"������������g���V``V��V`���H�z�u�|�K�R�Kj��g������ů�������ɣ������YPOdq2P2R2QreL]]]L��e3�0�3�a�S�Z��ó^U������n�2�o�����E��������`+s!���j�m�d�f������������J�\������e������܌��c
����<������b�d�a��ʵ���֊��ی��c
�������������!�z�2v�Ԁ�����������<���r�qo=w5d���:�y��.�����h�O��6�����&�&�����&�&�����&�&�����&�&���)�k��
�k�k��
�k�k���k�k���k������������������ɲ�~�=�`�U�f�6����@�IV������������`b�����1�N� <��:�M��@�x�i�]�'8��������
�T���T��;h�n��������������PelnhK���l�eP�����������������������;�T�
elnh����l�e���	�P��I�{{�{{{��{��Iy���!������������������~�������������$���~��}}�����#M4m���	eupb[^�d�tQ�E������������T�����������Q�E������r�e�����ĸ� �b���������$���������0�Y����	�`�	�_��_�	�����fd�egg��h����1���(���'���,��� ���ge�ffg��h�a��C��N��~�W��������������������H�y��n�����j�m�����j�m���)�KT��e�]���B�c�=���=�=���=�O����J������i����G�l�G����}���ff>TT=��g��}������}��R����������������I�c�ZYccYZ�c�������c�YZccYZ�c��������\pcdw�y�wx�R�j�.�����j�.�R�����c�o����ͭ�}t���������������qZ�������bZZcbYZc���\�L���
��g�S������VI��m�>
���k�.�L�.�k���?�+�����llH�\\H��l����������Z�釧�鏼����������0�T
���T
�k�cthjz�{�{z�7�L��v�v�K��7�����i�s��ù�Ĩ�w�л�����������Qa�������haahhaai����?�U����l�[�����Ĺ]S��Z ���+�)�*�*�����MO���v�rqvvq�� 25 �3�����
�+�q�v������������6!M���r�34��2���o��q�v�������*�
����� 
�)���`��`��`�������N�W���{�W�M�}�|�X�L�y�R]^SS]��������������T�T����V�Q�~��ù��ù]S������S]^SS]�����WQ������U�R�����T�T���������l
���4�''��t�T�T�t����t�T�T�t�T ����a��`��a��a�`��a�������M���k��`������8�a�M�a�k�ap�`�a��9�M<��9��7���B�a�������8�M��9��7���B�a��������g��g�[�o�������2
���@�2
���C�G��%�:`d��h�b�gb�ۏ֯�Ȱ�����������:��%�G��?�G��%�;ad��h�b�gb��N������;��%�G���H �����7��@�������
Q��Yr�3F���ZXa��X�x�wx_blk�x���� B�)� K��%Lo�3�B�����J�������w�u~�k�u��x�u������k�?��O�z!x�yxv�z���A��������Y�����
�Ϲ�������[�D�j�m�hl|�{�{������̡���ԡԈ֊���j�8ч�������������5�T������&�9�E��
�Z�$�j���������@�b������������<���r��������(�B{]�<��6�T�Y u���Z�|�i�JC^E,g_zsyub��Ֆ�Ӫ������u�^@�q�-��1������ݛ���zJ�1jI�1jgT����iԻ ��E�Y��}M�F{M��`���@��������]�����~tv��t�z����,������������������������~�@�Y������=U/�0���A����������������q��t��ת��������d��z��}��������PPxvtnos������������������������~���}�m�z����Vz-cObPru[�N��
�S=��)�i�d�<&l��i@X�sŒՍ����0��Z���Z���6�:���3W��4�U��_U�2�6�6�W�B�N�@��	h[aj6GUv@cLj��^�H�I���,�+�����T�(�j���j��c�+�,�5�4�+�,mmZZ;�Z�Z��۽����+�,33m���0vH9*��/������o���⩩�+�,�4�4��>4�
��q�{7�$�//�)�9�wh�	���0�m��+�,�5�4�+�,�4�4�,�,n�Z��ܼ���ۋ�Z��,�,�����>�'���l�4�n��,�,�4�4�,�,�4�4�,�,�m�Z�;ZZZZ;�Z���+�,��/�o���-��D��������/�#5>'}���n00nm�,�,�5�4��,�,�4�4�,�,����ۋ�Z�Z�;ZZ�+�,����j��������J��Ѳ�"�^����������z�}�i�{��ѧ������錐��������z�s�s�^my�z�Svn�n�U{u�u�w���z������~����������������������˜����ڦ���L�vewe��:rnwt]R{���������ϝ��ȹ̯�����\�����j�����t���a�z�������m�|�}�l�~�~�n������h�~�u����������������������N�?�M�a�m�����J�}�����f��g�^�%��l���l�I�%��u��X������Blznxj|Z�6{�&���1�~\�����������N�UL���������ܿ�I��4�����'��6�������k����Z�6nNw���������������������������a��������������
���T�������
�v
����
`�7�7�l�f��,�,�fA�V�4���
��P���W�?��t�qC���C���C������4��4�������@���4
��,�-�i
���;
�K��T�
�C
K��T;
K��T;
�K����y}}yKy}����������}y�T6
����9��6
����y}}yKy}����������}y�T6
���t�t��p����f�e�O�ef�x�x��x�xe�O�effe�O�e������
���
��������8�
 ������� *�`�7�Q��� �`�6�����w�%�	�Y�4�W%*�%�	�X�4������������j��%����1�������������g�6�`� �Q���7*�`� ����D��4�	�Y�%*�&��4�	�X�%�W����T�����#���E�E�#�����\��[^��h��n��T�����^������\���z��.����}��T���N���N���N�����i�Y��T���}|�|||��}�T��Yyi[U��\�`�u�T������������T������������
��+�
�@��
������8���T�j�M�Q�M�Q�M�Q��W�m�[��F�N�$�l�\��T�T�{z�zzz��{�T�T\vl]X�$�F�N\vl]X�4[�^�v�T�t�Z
�������������T�t�Z
�����������V���o�����8��������>��A�
��,��������'>�&�&��������2�u�����Q�e�����G�W���n�!�e��q=s)b?�ɽ�������X��/c��������� ��o� E`(�������y�k����2@�	�/�����P���O�l���A������A����g�����	e�1<fXEi�o�B(�4�G�#������ɷ���R�M�7�L�M���ģ��[�?�Q�m��k�ȥ����a3N�@�H��
�F�?���A�G�!�<������/0�U� ��@Y\@���քd�=�6��>����j�*.�N��������������������z����+8��a�{�z�{�a�����Y�%�#������������y�=���<�=���=�<���=�<���<�*���`�`�����`�^������+���LPzlX��1�A�z/�-����6�D�&��@��I�����`�_�����B������
 4���4!�����3�}|��~�j�k�/k;j:/d;�j�k�j�L��`�������+
�T'�h��������������u���Y��5�4�Y�\�5�5�\�Z�5�6�\���~� � ���
q�@��-&
�T&���k����������������������D�>��m2W��.�_�Z���8n��������E�� 5<�hL��hL�Q�R�����S�u���'/�����>0����A�g���z���8�(�Ғ��ӑ���P�����0K�C�'�Z�L{o_�u�����O�n�	�ɋ�#��x���W�{��D����ߥ���p������B�dȋ�e�E��)���3�����+5�7w�p�	����4��4�t�Tz
�
���
����z
�
�4��'��c�����7�E
�7��D
����4��4 ��c����T�(��K�7��K�7�D
��'�� �t�
a�X�t�
�X�t�
a����l�&�'�y��
�&�'�Y��
��
��
��}
�Y�&�'}
�y�&�'}
�b�K�HJj�p�������̃Έ��b[
�����a����ouwr~�������'89�{=�{��mx������������<�*e>����o�kjqpi{������A��R*7}xE�|��}jp�����������]�VY0�-�|�xp���aime{���}��l��d""�p*��}�|bl�������������v��\&�A�}�xf�a�) 
�������po��"��_m���3���m������������"�������3��s������¿���������8~���~����}������������~�������h�s�������������������������������׌���������������$���������������������z����������������c������������t�c��^�����������_�������P����������v����������������������������v������������������~���������w�~������������������������������������y������������������f������������{�h�������������������������{�������������������
���������Z�~���}}��}}�����}�����������������||{������|������������Z}���������������������������	��z��}���������{���1���0df�}i��t�j�\��KMuTu���z�y�~��������0���0k����z��z�z�
�<���!��!���o��
�!���<����Ǒ�m����l����!D�4���CP�W�h�Ќnj���������������������ʕ��|�vw||r�yI����s7h3^1c:gJlX������������JU>�]�w�������������������D����&���_��n�����������������������r6�Hgd��al�o�r�@��/������K&``m}�"�,���������y������������ ��}�z�~�|�{@�Ë�����)�������ҧ̞ȭB�O�`������)y)o3h������������m^��Z��x�����:���F!�4�i��� 1�J�{�z�~�v����������$����$���{�z�~���������������J1��� E�8�)�3��y���������������{�|�|��y�3�8�)E�����1���
�!�4�g����V���Q��G��� ?��3�������������������3A��� H�W���T���!���� �5���������������|x$�5�!��������~��
�!�4�t���/�����|��h�7��S.1l~gd�`��;�!���������������w�g��vp�h��������
!�4��������;�T�T�T������ 
���������������
����
����
����
����
�P������fA�V����S
@?
�x
�l�f��P��������������z�z�$���
�c
���;���4��4�����r�n<�x�H(��vM��z�zy��:�(�(�������$�u�6��H�!�eDR���Ĩ���nhhRnD����K����!�4 ���f�~����:�;�4��:�;����g
������������5�E}}��o������ۮ���h�J�t����������o�%����]�8%{~y�x�g�(|{��~r�����������x�j�r����������q�O�>99l>SO~~z�z����K����!�4����
�E�Q��j
�����������������1��������g
���������������F!�4�4��v�����{���v���}�������������J���J������}�X�}�w��}�����v����w�}�Xe}��w�}�J���J���}�w���e�������v����������aʁ��������ӎ���y�L�z�z��y��ӈz�z���y���u���Y�aa�f�f�6�&������̶Q�HyA~`��D���ޟ������(�����#�P������g�Q+<�3%�!!!�S�|�B��D�����������M�h����ߺ����� ���ђ�����.�-�.�-�.�l����H��s���-�����U���7����s���H�<����J���J���J�?����H��&������U�����r��s����&�l�~�v�����~|�|||��~���v}~rr��r�r�}��������������������������������������d� �^)�[O�K�0���-n�p�q�
D:��)�r�J�?�t~���������r�I�F�o�9$�"�%�����9��/����i�ü��I�IR^rdcl�m�k���ԧ��2�*�:�8�)�0��\��pFN[BA�\�Ÿ����g�h�gGDDl)�3��=�L���
���>
����jR��V�V�VT�PQS�yV�V�V�����:��R�j�������V�VyV�TPQ�S�V�x�������V�Vy�Á��•���V�VR��j���
�
�x�m������y��V�V�����j�R����t��t��F����4��x��P�p�����������������?
��p������x�4M����F�q���q�q���q���v���|���y�*��|��8�����������G�}�A�I��r��w��-�u�����\�?�	�5'���p�����$�� PY8������4�I�5�K��� �G�3�#���T�1��!����I��%�>�H�G����U����������B�&����������- �-����%b�b�d����&���-�JRp�r�v��Qi��u���,������t�~��՗Ӣ�9�������R�M�g������Ĭx�{�}�ާ�EvhrjplJ�- �?�&n@�5d�b�b�I������,��u�e��u�i�`��M�6 f�X�P�����lj�iij��l���PXlf`�M�6`ZiRuL�};�p�omm�o�p�|;�L�R�Z�M�6�`�m�[��������
���[��Ɨ�����M�6���Ġ��|������������}�����������+��v�j�������S��&�z���������z�g�M�Rj�h�e�d9o�I�CAA~CtI�o}d{fxg�j������;��v���+���I������z5�&o�?� ���m�j�hĬ�7�;�j���j�j���j�j���j��j���j���>
�����\�O�+�:�������x�O�a_U�TS˄�@����g�f�t�XRweWW�k� �����:�{�z�{��z�zy"J<%wl�y}jh�w���|�m'�!+\�!�
��ո�ϡ�n���������M�b��������x��������7�������������t�tt�p�o�p��yje�f�{��m������~���	Ǻ������ �i�ii�	yz�yW�uf�^�������
���V]g`[[f��������_\��� ��`�U�j��f�#�b�'�^��j�T�m���4=yBF$�������3P��:kS43g��߫��ޯG@����pFAw@�UM�M�M�%��O&��i�Wt�LXU�_�o��gBF��b�WR�?�d�/�yH���(#�-������:���=�������������;�������������r�a�``��^�_�^�r��ruke�dA~�� �������R�?�‰“��w�n�mm(?+�R��������������V�B��=�j�ȕ����w�S�<;QE>?�F������
� ���X��`���X�4�! 55 p�q�sa_^U^H��K��ʲ�Jp��w�����������m�����7���ų���u��~�`������������������/�/�:�q��������~�i�y�����k�k�����k�k�����k�k��gf��ho�py�p�o�o��������������������n�0�
+�(�\f�m�j������ő�¡���������C�B�{������������g�tzl�dg{S������)���������i��k��-���������z�/�R��ɮ٫ސ������q��,�Þ���2=�5�����������q�n���Y�V�L���9+�3��zZ$�;;�#�}�Mwz�V�qzvy^oy�z�z������UggTUT���¯�¯gT�{��fggTgg������¯gg����UggUTU������gT���ffgUgg��������gg���!��M��m���#�����[��8�I�C�n���y��y������|����������죢����������������������������Ԟ���[�T�I�&���%�7����~�~��������Tvt�s�r�v����6���1����p�s�����������������Y�M���w�p�v~���Tv~t�s�r�v���l�U�Xq�s������������������k����%���]�r����������������n
�;���;�Y�S<��!���
��������
�������w���������������������?
�����?
������U
�����������������bX�k������C������_��}�g55�533�3g}cm6ﳽm�v�%f���������~~��O~~��~��������������a��}�g76�7/.�/h~bn1���l�p��.[���Rh�5kuZi/�4o�e������������
^W�f����������������7������������h�7jvWi'�2n�f�����������z�#�z�C�p�i�s�L�2r@;pEVP<Q<m+�,�4�>�;�O�d�l�w����}�#�>�}�x
������������������ƭ�
���������4��������t��t ��t��t�T��������t��t�����k���7>jVR���H�����������%���HV��j��[���������H�R>�7���E�#�#�E�ج�����H�����E�#�#�E�[�����	++�	�
+�	��������heXuS�	+�
�
��	þuh����������	��
�	�+�	�
++�	SX��e��������������%���������	�+�
���� ���9��/�ː�/��4���G�j{fj}�^11^�r�t|q�����j�|����$���$�P���|�j�B������G�r�b�rrKK�&�	���������������j�	S��ˤ���r�(G����e�����~�1�~�w�~~�w�~�1�������� �z�z�����0��v�~���0�
�������KQ+(
0�N�T:<
+0A
�+������~�w�~10���������� ���
���d���������d��>
�����m���c����Fr@:}77:��@�����ڳm�-�T�0�>�����2���tM�����2�V����3���3V��2Y�&���L����t�������>T�0-�����K��K��K��K��K��K��K��K�����T�tS�T��S��TS�@5������������g�n�~��S��T��S��TS�$5����
��������H~���������Hf����J�T	������g�n����������������T��<}~�}�����������2������T�����T������~�}�<��/
������Q���(���4�tQ���(��\
��Y�:�YY�%�$�~�~�$�%����Y�Y�:�YZ�$�%�*�*�4�4�o�ol��8�������I�I�������8��o�o�4�4�*�*�%�$����Z����u������*���������+�������u�H����d���8�lh�Tw�w�v�������y�m�\����_u����5��������^��/�7���h�Vf�������J�C�2�2C=+�J������V�hX�[�<�*�N?�Y�3�: ������]�#�������"��S����:��Y�3�N�������%�I�%���%���%����%�F�%�"�F�%�F�%���"�m�m�m�������%�@�5����z�"�m�m�m�m���F�F�V���m��y�j�j�g�wrPE����]�����}��������~���S�u8ӗ������������������)����x�m�6�����
���|u�w�}un]~�'�)�k�p�{�u�~������������������������y���������
����n�k�upto�g�o�>�4���y���}����Ϧ�)�Q���4���
g������y�r�=���7TRyy�t�v��z����3�����������*��������WJ�t�t�x~����8�tA&���ys�j�m�m�}���������������՗������������������������
����������������������������������������J
�T�
��
�0
�5�������c
��������0��t�a� 
��������� � ����ee�pZp� � �������%�$����
� �B�(�(�BP! ������(�'�'�������$�$����
�G�G�������(�G�G�����s�$�$���z�h���l�?��9�����������%�$����
�������������������������_�{����������_�{�������b�����=
$
��
M���M��
M��
M���M��
M����EQQE�EQ�������QE����M���0
��
���q�~
����$
������
�E�Q�l
���
�
���l�T�������^_|_j-Z7BG:?)_�s:y8�C��Xc�cs{~s�y�y�y�y�z�y�o��t��������������������o�����֎�~���@���,=��"��H(�`��dine��|�An��q��������������˗����NJ����ܨ�,����+@�מ����a�����I���Ɓ�8�%m^9^9�&�^�����5���
�LZ��_�����mO�Mrq�s7bh%�7���f�U�i��U>�!�Vv�����������j�������1����	z�������A�@�L��F����)����{��B�9�0��������kM�Kpo�}q4^i��4����������c2�!�b������˱̩������,|�������������l�-ƒs|e��W�"}f��ڋ��\�G�Q�+�L�������~b����G���D����C����d�5�.�2�6�J����:#��:���t�|�m�c�U�Jmopm�v�n�]�TB���4�B�@D��d��$��r���������v�J�L�8�������8˿}~��=����.|Ն��s�=�x��zo<�B��������������Y������$����l��Ŗ›��/����¸l�����e���3��k�{ut~��������������������i��rgk�{ut�������(�����ӥ`xnqx���������}p�[�!T�7��7:_�����\��\��]k�]�����: �r�Zwx��o�_��������(���|����������MfmWi�s�������u�������͐�������0��|u�~Lvkcp�y�}�����~��uz{��y�\��������Ɗ�����o�s������������������Tu��w��u�r�l��{�������������~������������CB�m�]SbVBM�jʞ�������wy�wkw�����������s�~~zq������X�I�H�I�}��������������O���n�s@WJ-E�`Ǜ�������x|�}jx����Ĩ��@��������6'�r�[vy��o�_�����������|����������MgmWi�s�������u�������͐�������!�t�~~yq�����W�I�HI�}��������������!�?�|z�vYaOD V�h�������x�����������������/������Ym1V:FMF�V�m�Y�%�0�D�F/�b��������������bF��9@O)n���������H�4�(�n�O�9��������������Y�����"Ω̵�i�����&��L�̔��+������`�~�t��vq�az�p�����������������u�bw&����� �SJZu\ekpkf�Y ,�����F)��:�������J\^GZg��m��n��|�@�������~���~�r�N�v�����Ư�r�i_�z{�wow{vy���}�p�sV��1}ns�o(>�������}�>�pt�lN[XKH�[ͨ����>��0
���"�?���4�����'::'':��������:'�,�Ah�"����t�t������LR�A�S�1�S�c1���J��@�ֶgLXpjZ�� ��=�P�B�BPOA�A�O����������D�=��̹���|��ͻ�M�V˹�$���Q�G̟�^ͫ�w�_�B��G�.����O�`�I�Τwϓ�RϺ�T�}�c��������������3��"�  @�"��7�<`��ߊ��m�Q�1ry�t
8�����s���pv�u:@�����r���fqv�u:���@���r�_F �������/�>�L6�L!�����+��������O��h�h��h�h������[�N�c92;����������1����y������,��(�(��, �m���m<��}ni�k�<�ytg�n��������(�B�nl�mv2�gW�@TP�����Q���~���w���e���z�����u�������Eu�����@��:�P�B�BPNB��G�=�_��"�Z�*������y���@u!��������_��M"�_��H�D�Ji�Q�wr�SrNG2��JDt���������(��� w\�Dx�]�nr�TrN��:B�N���������c�T�X�.���������]^����g���������g�T�W�-�������|cQ�������f�@����������+���(�(��+�l���l�>�vI����I���<5�������YaqT��;�Qvy�{�Q�ŷ������b��Z������
�Y`qT��;�Rwz�{�Q�������9�RI�P��P(�����*/�inW�����|ϊ�L/b\04�]������O��_��_@@������e�,�l�,����}�
��
�v��������)@�e�iy�����z ��������)��
�v��������?�}
������?�
��4�����or^{g=Z�������i��|
�*��������������>������薚��=�v�������������*��0�������������}
������9 �
��3�����os^{f=Z��@�����i��|
�E�(J�-�����I�������4��������������i�^x�����z �������x��Y�������~�����*�*��)��(��!���=�
�x�e�t�pq@�t����������������J�͉y�iiylH����Xzdipsl_~UGJ��h��s��x������y�W�9�Y������������ӿw�y��k]�]s}�zw�~�{��m�h7���k>�Yi�{�������
�zt�dYg��rn�|���oM�򹓝�������������gp�tx��*�k��S���������������k�*�k�l��1wGb_]aT�fvs��t�+�*r�����\�������zh��e�N;�h��_hg_�_h��������h_�����i�����l�u�~��~����������$rfP|KEU��fa�v���,��ɼua��a�P@��Y������T��@���A�
��
������:�~@7뀙v�~��6���{�����������
���T���4�`
*<��!���<�Jڔ������o�C��j�����S���R�'"��p�G��
�*��J�,�����)��
�p��v�~��6��{��������������47
�T7�T��7
�T7�T��7
�T7�T���th���D�7���*��*����~�b���������EL�pC�Q��'�]�V���O�
nLE�����
���3���(���`�`�����b�e���!�u��!��3��������������������?
�����?
������U
�����&�-�~�&����`���b� �z�]�A�)���F�9�:��5�$��
�_���_�;���;�P�E�A��������������b���w�}.��$X�'�����?
�����?
���������poG�b{����������������������
������S�x�Y-��	���q����|���k������j�o�uh��yə����R��r�	�����T�����_����s�u#�
�f�f�
�"���ss~ki�_����K����_���������"�
�f�f�
#�u�s����_���^���T�T���T�T���O��Z]ukh���PUj=;�<��$�=�ӭ�������}�(������7�0�!���u��c6�rt�v}ra��f��'�����Z�X������,�W���������Y��
��XXuxmihaX_)(X��b�hu�X��
��T�5�!K�T���T���T���T���T���TK�1
�T������������
��������
�������_h�m��x�����
���
���
�
����
�����T���Ԯ���������U
�i�V�!����������!��V�iK�������
��`Q�Go|iv��
�
�d�d�}�}�
���T�T�4�4�}�}�
�
�
�
�
�v������8�W�9��7����̩��u���x�t�o��v�w�p��E�V�3��'����(�������I�6���/H#�@��_��6s�2�r�����������v����)���	���������7�,u`melh�@K(w,�k�/�T�c�W�B�R�Z�s��Z��������V�:� �[�X�2�;�@�L�p��������"
���x�#�&��|C���@H�#SQ�4� ����+�� �2�й����y�z{�6C'r �v�'�Q�j���a��N�S�c������I��=��λۊ���6�O���F�u����������ɷ�a���y�r�v.D����x���yl�u\eh[��x���O�~�|�i�K�!� �
���o
�
��
�
���z�z�����
��0�	�N�e�e%�N�0�	����z�z�������������������������������
���������������
������������������l
���
���z�z���
������o
�����
�D�v�D�K���w��P��ak�O����N���(�b�X�S���9}�^�H���t��T�)�D�v�D���������]�]��FJ{oQ���$�w�v����r��G����t��K�KB�=��v�N�;�m��Y��������i�)09Q�����]�]��
���������������M��$
]� c�mgc`��cm����������*��um���v��pvvp��qu���������vp�$�i݆�y�"�Z�4x������+�4x$�Zy;�N9��x���
������
��
���]�?�?��T�e�[�R[ed\\�d��R�����j����������b��O�� �����e�[�j|ƒ�����������~�b��O�� [ee[\�e��j�T�SP����e�[�P������Z���[���ZQ�R�T�[ee\[�e��Q������Z���Z���ZŅĀ�����������
l�����9�4���M����J���lrH��m9�	��M��������qxttur��������������Je��
���sp�szy��}e�
���<��������cH��u�Rtyzuw B�X���@�2�����ʳ�8�g^zp}UY̲nx�v�w�ww~zm��#����Ԓ����������,���������f�����������������������~�����x*��}�-�������������oA��c�2S�3_�(���%�Q�,�d�F��W<~�������g�E�W�RC�p��|��1����$�+s��<����
�� �T�)�0��a�_�i�3��� D�X;&��
���us�s9&%9l�_�n�hY5�����V��k���_�k���`�1�T����<�kOF�w���2���ϵZ6��_�
�
��g���<�jOF�x���2���ζZ6��`�
���g��-���~�	L9wu�z~\L��y����Ǟ�My�v�}�N�}�������	����������ǜ����z]�����z�7�����T������t�4�t�4�t�4�t�t�$���r�r���d*
����
>�
���*���*����
>��TQ�4*
��*���*����)
�4*
�T$�d���r�r�����Z�\������J�x�k�^kwwk�k�w��^�����~�|��}T|����z�x�k*kw��
U|����z�w�k-jx��
T}�����һ�����xj�������Һ\D�����E[[D�S^m��x�H|��|T}����.һ����һ\D�.����#����##�����#������k�'�V�'���'�����8�����������L����t�t�2���2�T�2���2�
�2���2�T�2���2����������O���
)�$���
���x�r��O��������r�m��c��������q�ly|�~��"��|�yy|�~��� ��|�ylqrk������e��w�}xt�����[��p�wtop�t���b�������p�t���U�������k�r�������#���������$����������������U�������������a��
�������m����}�||}��������#������V�䕌�����O�V����P�[�������d�������������������������������\�R�\���D?���G������!�cL���������m����������?J���9_����������	��l��q�1�:���KI���������<�E�Q�8���8����?�E��������� �V��w�s������-�1���
��������S�]�aA�����<�U�i�u��t�,����������e���#���z���_6�������������������I�c�������l�����������T��7P�7���o���7������w�>��������>�����?�������������D�����B��(�D���D��(�B����z�D��)�A����NZ����ȼ���xȼXN�=k�:j�TR�R�;���;P�P�Q�2�<���;�5������,�$�(�)���M�U�]�(���)�+���+\�T�M��q���q�z΂�3�����4��y�p�m�1��
�.�o��Qk�e�^�
�����'�u�v�&������^�e�k���ex�#�B��9��o=������9�B]:�#��/���ݠ�������"�\&�����"��iR�e��x������
hB���
���R�XD�@��������� �_*����� ��pX�����@���R��c����h�E�����:�dM�+��A�����*�[ �����$����q�f�]�]�]�U���9pttp.pt���q�������to���q�$
���#�����$
�A�#���A�$
���#��l�L��6�H���������������p�A��O�YK�I�+���+s�r�s� I0�"�/�r�I�H�q��q�I�H�r�ﷰg�����(����7�]F���$������g����Vc
��������p'���7���)���28���]8�����
j	@��
j��
j��
j��
@�o�]��"��
-�]��"��-�]��"��
.�\��#��<]�i�|����i�|����i�|����j�|������
�6���6��
6��6���F��ٯ��������6��V�g��
�
�<��-
g��w�r
���r
���r
���r
���r
��;�A� � �A�@� �!�A�@�!�!�@�A�!� �@�9����ŵwv�mQ��uL�flD�^A����94�wHMZ��X���a�ǂ��ݏ����,�����|�����)�
�
�*�)�
�
�)�*�
�
�)�*�
�
�*���*�
�
�)�*�
�
�*�)�
�
�*�)�
�
�)����[�O�CPZ[P�5���5�Z�P�CO[[P��P�[�(ǻ������@��:��M���������`ed��e��������S�O����[/:~~|yw�{���
�>�g�7�.�iczdfp�t���+��&4��R�������l�^�����v�Q���B�R��������{�xxgd~y<��/R��c�4��j�c�'��^������d�<�/�g�Z�8�%�V �������������
��J
�x�
G��r��
nh��V
 ������������z�{����{�������������G�����'�&��r���'�&�����!
�V
����h�������-�Q ���N����������k�g���-�����`����`��%�`�������a�z�x�w��wx�z���xs�h�t�T��~����������T������x�����
����������x888��88��88��88��88��88��88�11�x�r�����
��ڱ�
�898�xy���f�΢�{�c��E�����p���������H������EQc}{[�h�f����KK8��98�11�x�r�����'mH�P�������x��������������
K��4�T+�T����������������DqT1���aa���1��q��������������������ӌ��������������$�����ӊ���������4��Fl���G��u�j���������/���>�c�v�Y�X��wr�lO[MOO[�Olr}twXPY�v@c��>kPS�/k�������_�`�b�j�p�N1k���I�7�+�4���4��7������o
����u�U�)�4�S�'�-{:d��@�G�{
&zz���E��w�v��lmul�c��h��r�����]��t�����bF�s^�[X�V��v�N�;�m�Ћ�������D�1��� %/O���,��j�F�?�j}��y�y��k�����D�v�D�K������'���w�s�xx�������
l
�D�v�D������)��l
��_�>�h�jt�h�h�j���bg�S��g��T.�
�
�T譁����b���������j�h��>n�_K��D�;����D���s
�^
�,��~
��2+���
\
���su���S��&�yp�rxo�@nr����R�/E��o�qwn��������������������썍�����c�@�
��"�;�;��d�������xp��X�B��B���������}�t��q��۽�����F�
�T������d��m�l�su��r��|����j���t[�t�ts�t�t/�t���
��G
��]�]������
��
�43�����)����
�\�<�����B�4i
���,
������������{�uNv����Q�*�3�3��Q����~Fu{uv����+�N�R-��X�v�
T
��
�v��X�R����X,
���������
��*��6x��l�l�sv��r��}����jR�_
�������
�)�����[=)R����~�[�~�w�~5-!��/��4
��B���"�~�v���_��������V=)[���
R����5
����u���q�u���� ��f!D!��� }��q�q�uu��r��|����j���t[�t�ts�t���tB�t�t/�t���ì�|��r������P�Z�<:�����`�j�vg����$gJAv<��������ֽ�Y�i��<A��J����z
��0
�)�����
������c
���
0����u�l�c���
���*��5x��l�m�xy��v�������{����?�������Z�S����
���4�t�9�M�kj������t�9�M�k��x�xw��
��
�J�1��1���Z�`���w�w�x�n��=�O�v�T���J�1��1E����`���������nm�=�O�vT�����
�����
��ܮ��
�)����
�gN/��#��-t��e�Z�\i��\�������hT
���ֽ�?�#f�,�����W�S����
������Z�<:�����j�vg����$gK@v<����T<@��K���z
��0
����
��
�43���i�i���
�@�@==�)����
�\�<��� �!�\� � �i�j��B�4i
���,
����F����4/�4�9�/�\�^�]�^�]�]���9�4[�4���j�|����ѡ���l�s��m��d���������t�����K��,
�
�
�m������v�~^^���M�M����K�(�j����|��r��u�s�lm����d�����������t�����ts�t���M�M���^�~������������,
����
�T�������������
��B���
��T,
�����������]�]��G
���������
������
��\ee\��\�e��s�
�����V�e�\���M��|�?���S�#`���������<����`�R���w�<����ED��z8D������^�7�E�&S�M�X]�Z-���`L�M�L�����<�z����=��a����3������l����x�����m��qY*m�����S�Z�]�e�a�u�������ж��X�������p~�v{�}|[^s\�I��F�F�S���#Jw��a���â�������������7�z��_����
��%��>�}=�a������������������f�4���4����	��)�5�M��k��4���4�4���4�_
 ����E
�����E
���T���T�E
���T�����������������l
���T��W�T����TH
���3
����
�Tj����T����t�T��s�R@�6{���@),\��,��)��ə������EQ�������T��W�����������������������������������������������������������������������������������
���������������������������������������I�Is�~��������xx�x{���?+)]��)��+������8�s�~����������������������T�
�@�`c
�����Ti
����m������G�T�u
��kc
��������������T�T�T�T�����T�/��������/�T������T�T�������l��T�
�T�����!5��
�1
��������
��4�����������
a�4������������
a�4�������\
�������������}}�{ptr��m�g�}�e�}������������������������M�p�������������������������vw�y����������ۏ�
�
��c
���״�(�
����¯����#��w��m��ݿ��������b���t���@�r���|�k�j�>S�l�s�t���������=���������S�l�s_ti�q�n�����v���„Ņ�3I`QnN�^�D�y��a��g�T�Q��3I`�nȜ������n����;((5;!!6����r��y�����P�q�h��������n}�����.�d�9�=k��%���)���}���|�|���������|�{�z�v�v��������u�yyv�v�x�}�������������̖ҹ�֐�������a�c���r�p�p�xs�w����z�n�}{������w�v�v�����������������DӍ⟳�����͂�p�T�l�Zx�e�y�R{���o|W�b�e�V�H���q��u��O��z�|�n*�)j4_SnNe]_\]“��†gwkrmn n�n�y�{��ʼn���Z�lvTdp@�J�I�4�X@�^�xԉ����������j������w�v�w�������@~�n�y� ������y�o�r�pm�ue{`nY�n�p�r�@�^������r�ss�~�~�x�v�v�y�v�����}yu�wz�{�{������|�z|{}{x}�~������y�z�~�~�}��	�;���`ˉˬ��7y�8��8��S�iˎ���;���	����������������L����p�`� �d|�j�K������='��������t�<�<������vug|c����|�[���f��_�&u1�||�~��y�o��������9����������ut�w��KrjR|Y�%�������ڬ�Ӣ� ��������[Q|+�<c�g�v��EU||��zzЕ֦����������dBr;�9�Wd�������Ir�Pmu������͆�~������/���/�0���/�/���0�/���/�x��y��w�`~"�b�|������ьҋъ���[[~!�[�s���'��ҍҋӌ��l��3z���Q��������R�#�k�r�w�:�v�����������������t�v�v�L�F���T����Ő�����{ό���������x�s�x�<�ծ���������������������
�|����D�B�F�+��D�~�I�#�6�B������7�}IH_I�D�&�\Ӂ��@��r�{�)�5��
�������?���}�@����������������������z���������
������P����&�#?�a�O�C�����:������������)��x�{�}�������������.`�A�<�~���������$��!��	������������z�~�|�}�}��������X�X�X��}s�r�uj~^�a�t\C&OD�I�H�}���������ߤ�@������	�r�B�00AA00�B��������A�00BA00�B����������N������p��i���4�r��������������������T�������_�	�	�_�_�	�	�_�_�	�	�_�_�	�	�_�>
��$��k�:�t�������t�
�$K^
\�b�u�B�������s
���<���<�<���o��<+��t�V�2�2�V�V�2�2�V+���'��''�+���0
��
���q�~
�
��������a��T�)
��.��TO@8��������s
�4�
��f�
��
@��4�
�
�`������K*�
�`������K*�
�`��������K*�
���T*���
m�������{�z�����s�{tq� �A
���S�X�k�{���E֫���}��]�p��p
�p��
��
�K�H�W-C�C���HK���h�@�)�4�����)�@�hK���H����-�W�H�K�h��)����x�4�)��h�
�����b������^�@��
��!���Z�����!��@���
����!���� �@���� �!�������;�@�l
��x������;������
����������������������������
����������������������5
��U P	����@���
����"���Z����(�����@��P���
  ����� �@�� ���"�x����� ����@�@��
�
������x@��
�
@����;�������
���
��;�����;����
���
�;k����Z�4�4��
����4����������L�L����������
x���z�z���M�M��z�z��������V``V��������4�
������ժ���L�L����������(�f�c��������s�m�������-� �-����������y�i�s�n�������������@������K�8�A*����,����g��t������x���^�L p&����{'��%�%���{��p�V�J�9��$�5E���E�$�ݑͥ����r�:CW*����[������_?P`X=�����[A�����b������k�������k�������(��2�2����I�����2(��U�J�U��2�k����������������������������������������������������������Y�L���
�+��ԃ�Ա
��Q
��������v
�ԋ�����v
�4��4��Ա
��Q
�4�
����������������T����T��T�����/��pE�77EV@p�3��U�_�x����[�
 /���������I{��
_gg_����<�S
��7���b� �<��S
�7���b%���Xr�zspp�s���^?�`�������`���^��
%�_�`�b���������������Z���[��z�[;�Z����%��&j�W���W�j��&�[�@�"�U�����z�U���U%���Xr�zspp�s���k�G�+�P������
k�K�����x���I�L��L����I��������I�L��L����Ix��^����t�������t��������
�����΄�PH�������������ZV����X��q�q�r���H�r�qqr0
�hn�����n����u�~���t��
�˻WL�@�m�A�X.��
�
�JMs^\�lj�i�!)����������tI�K�^������0��� 
�������H��������!��ww��x�^B�<``uf�`W�U�L�t��t��t��t�|��
ɽYM�$����������ɽYM��w�w�x?�)^�cj]�D�I
���ҳ�xk��.�a�������$|��
�18X:b��}}�}���F�hX�a�"���!�U�D�����(�������� �	��������}}��}|�b8�1�_
���t�������t���������ʓ���������
�0���%����nl�l`
!�+�f�z���-
�!�����p��/�7�c�h�h�k+��^���[TH�P�}��.�}{�{MY�ɷ�����7��o��_qccy��4��{�H]���ȣǦ��������ɽYM�|����%npzdc�Z�}!��DR���
�����\Z�j�����ћ�������0��!�������X�E�������dk�dNYTMNX��������������
�0PcXR}��6~YV�W�
����
���S�1
kI�J�X���%��Ba��8'k�t�����#�E�t�� 
���b�>�����[=�:����0
��
�Y�v�k���2��������
��
�O������T�����V0�OU�ƀ�����G�ԫ��afob~h����G�S��wk�����9�&&�
������
��gY��8�>��%�������˻XM�����������,�����ɾYM�������r}Q�Q|Q'�%`�em_�Jpp��u���i�u���������z���z�w�����������ɺ�˿�gY���v��*������ʹ����������%������������q������-���u*��+?�q8��$�@�q+��)5�x�}2#�x�w�w����;Q�"���� 7�=�Y���j��y��J�L���k�t��t�T��t��T�g[��
��MC���
��MC1��XNg�Z´[V�mJ�J{K/�o�qwn�b�I
����ѵ�vj��+�^����
�`
���d^�]� ��� �U�b�����[�Ք���m�)�xy��x�^H�Cii�}l�\N�J������p�"���#���k�����kg�����k������o��
t�
��c7�/{{��{���
`
�z��f+�!`
l�l�n����%�(
�0�
������Ǔ���Et�^�+��jf�fl�l�ɽYM{�{�}�.���}P�HT�/�7������q�ͻ]H�{���4��cycq_MY�ɛ�������Ǧ����s�������jZ��\����
�
��!�}�Z�cdznp%������������� �0DR�������������ɹXNMTYN�dk�d�����E��X�ÿ����!��0W�V~Y6���R}XcP�^��Z��t�|�z��*
�	z_
�����q
�����������������}�z�!~�����q���{�y�z�������p������~�"{}~{�=�U�������������������P�?�����������Q�=���{��~����� ���������4��Z���]��4����1YW3�6�������u�bQ�������������E����d]�"��*
�T$�>��/�V�������,������������'����t��>
���4��4������'�%�Y�T�8�?�������9���|����2'�8�
���(�%�X�U�7�?�������9���|����3'�9�����4>
������t�t++�����U�U�t�t�t�t�C��<�<�4�4�4�4��
�T�T���
������U�U�t�t�t�tC�++�<�<�4�4\
�a�J�Z�Z�Z�Z��44c�����������T�S������������c��������++�T�S�33����������Z�Z����>
�����D��O��R����K��P��K������a�XWaaXW�a��������a�WWabWW�a�������� 45! 5����4!�� 5���4!����-���.�.���-�.���.�.���.���.���.�-���.�.���-�.���.��X����c�c������c�c�����c�c�����c�c���0���ɂ������������ь�8�`��a@�a�NdC�9�s�����b�c�����c�c���@���c�c�����b�c��������X�������9��X��E�-�JF,b���������H�5���@�Y�&�n��Ë��49�H�������b�F�s��̷�����N�{�R�{��	���`�_�����`�_�����`�_�����`�_���9��'��''��'��������pq�D�-A��&�a�a��-�D`qX_1�`�A�M�t�CC%&*)GGbb�I�c�~�c͋�������%�)�G�c͋��������c�����B������ս�_�k�3�P�D�33DD33�D������j���Kgl:VF_-zM��W�S�R�n�\nn��nn\�n�Z�E�C�S�Snn\�n���n����������Ӿ�N�+�F�:�g��˝����V��C�&�&�Ӌ��l�gZ���G�%�%�G�G�%�%�G�G�%�%�G�G�%�%�G�P�8 X��������@��
�6DD6���s���r�p���s���G�4�T��mm��v�)�t�~����̩�v������������VJk}ltu�(�vumm���	��$�����O�?���$�d�������`�z�w~���y�8�M��v��a�\t�i�N��߶܎�`�����4���s�~���nkA[�"�gwdL�a�G�$l�Υэ����v�~{ҊꅮK�-�5��%L�
�.��U <�B���B<�Gi�
�Џ���|�r���0�+�=� �E��=��������w����	�y���K���o����I��l�khslji�s������Q�x�K�)]`������J�'�����������R~����������×b�B!�-�(��pW}��������������^^��_�I����������|�Dc�/ %�)���p}�����[���D�e��\�]�]Ϛ����������F|��E��/�+'���Ǚ�����eT��G��f������{������������H�B��-��*�\��������m��������N�����N�N�����N�N�����N�N�����N��>
\
���������
�@�j���<�Z�\�
�f�zd?�*���1�"�0��-���)/�!U�=�I�T���AI�z�W�dd�]�,�O��+2�=��q��4��{��E�)��<��A��1���t�1�j�1�(��w�;���;�;���;�;���;�;���;��	��u���������R�@���@�g�����L�)�w�te�C�#��B��3�B3�C��V���j�>|���肙����i�5�4�_:�v�x���H|�Q���̋����y�P���B����CĻ�*��O8Q�z� �}y����������2����!��v�\
��2�!�d�x��������%�%���u���ou������y�f�"�2E"�c��i�P��8�+�H�>��V������V�>��8��P��i��cE����0����}�D�8�F?�:/5mV?�_@�)������*���_AU��m��֡���F�8��~���_
:����h�I������K��6��AOR��||�|�����7���:�:�-�R�=�6�j��snVK�
{Qr2w..�4�$�<��1��U��n����k���;�H�K��T�C�$�[�����E�Eq;rI/�(���6�������F����+������G��-�7+`=(c2�F����]�U��=��P�O�>��U��l�
����������g�T����|z�
��T�e�T�
�t���3��/���t�
������
KWWK��K�W����#�1b�nZ�yO��L���/���õ������B�+��
�h'X�=�-k7yS[rWmK|C����O�]�e�w�,������i����@�R���F˿���W�K��)���}�����xy�����k��~�������������JJ?X7gf3.x,+.��46�?�J�G�X�j�kځLJ��������v�l�~�d��o��J�L�N�*�4�A�@�P�ba�u�����������������l����~��x�y���JJJ���������ww�}���IIJ������������������������Ð��N������������~���L����kR�{�m�m�a�U�U�L�E��C>�<;;{mDRs*MSP��w���������m�s}wy�<u�|�������������ƌ���
����Y1��0����Y�
11�22�X�48��C�1£dz���ʧ���r]��^�NJ����qZ��o�e�~|Z����~�����W�4�3�X�V�3�2�X+1fIHJLh6�7�����:�g�f�s˂�u�n��c�o���r�~�E�M�U�U�a�ml��|��ؚ��ѩʵ�����ɩ��ӛ��l��G�@�/��' ��"�vg9���������~�{�~�i��������ye��n�a�M����������x����x�����������w��^�����Fy�l}�l�
����6�6���x����t�m|�c�w�&�L�L�+d�t����������j�iJ�4qq�����������˚�|���O���)�x���O�p�Y��p�Z�,���,��p��W��wT�,�J��y�I���������E�7�w�t����4v�Q�^����6���_������
c
�w��o
K���
K��W
l
j
�����d
(
��������d
(
����
�@����l
��T�tP
K�(�t[�t�ts�t�t/��
�
�4Q��3��>���t#��
��+������P�P�P�P�����]��w�~�P�P�P�P�
�Q�P�Q�P�]�P�Q�P�Q��������k��#��
�������]��w�~�P�P�p�p�
��������������i�P#\
�T���O
��,�-��]
��]
�i
���4�t�����T_`��b�#w
�#�b`�_���
���y�y���L
�M�t�3���3���V�2�2�VN
(��������!�!�yr�r���.
�

K��0
��,�
������!�!�
�e�+��w
����T��T���T��rr�yy�!�!�
�!�!�+
@�
�
���������y�u�w���������{�{�{����s�{sq��v�w���������������������������������l
���z������z�
��z�����m�
���m�`���m����m\
���������H
�@�������������=������������������
���=
�=
�=
���%�������%�����W��B�S�	q�g@\LP���{��|�����������@��)���҅����%�����_
�`�����`���@�@�@��������%��������%���������������������������������������������������������������������\�����h<��;��v��-�;�������ݯ].��Sg9G��FXVi_d�:f�t�l�\m�M>�U�:\!-<F<C;D�)�Ե���4�C���5��5��4�C��3��.�N�$���r�j����m��2k�y�W�������q��q����q��������
��4���y��������+��j@8�rr � Rr���@����L�iO;����{e��S�w�����)}5�T�Ԓ����������?����>��B�	�o�-�Bvˌ{�b������є���������~�8�������w�������
�F�2�SXteg��J�]��l��A9�H������H�8QXi[s��y�x�y����\��HN�-�fX�R�22�<�G�j�m�kk������K�L�����Ь����̬������[������H98HH89H������,,�K�UU�K��,|����������}N�v����������}�|�u||��a8H��������H98HH9��v�[���@�y�-�r���n�
��� �f�����������=�q�����F����)�����?��
����`�9{��d���P�3o�&?����(���$��������W�2����`���
�����������������`�w�@f�t	�t�
���M�
���>�"��E�����`�B�5�����
�������3�3�5�������������2���E�����%�%�����%�%�����W��*�������~�w���w�w���w����A���.���#�C'�K�]�������������f�T�	�O�������'��R������������/�+�,��{�{�a�{��������������L��{�{���������4�4�
����
�
k�m
��
�������+�{�����t�
��������?0
s�w���{���
����
��
�������
�����	�o��T��~�������������ƣ�������@��V�� 
�5�!7EV@p �-F�1�M \Z�G#�n'���-
�!������ϼ� ����1�-�+�q
��>��P
��*
++EZ��[s�p�k�������������������T����������\
~���O�@�������������G�A� � �B������H��E��B� � �B�c��>
����-�-�-�-m�J#66"���-��!�!���!��p[��m��������m�V�J�E��4�6��H���`�`��Z�[|]~c�`�}�����������������p�G;�-�7���-���m���������{�<��8�Yn�,�=�a�u�K�K�v���Q�.�-�Q���j�K�s�[�hshs�\�h�F�:87s;\Fsh�[�t�����������������3]�-3�s�\�hsht�[�h�"����e�E!sh�\�s��������������-�3���~�+��**���*�����}���Mz�]�c�.���p�����%��$��f���M������5�5�2��7�7�<�������&�������U���A�+��+�K�������q�5�P�Pm�;XY����;����v����2�
��,��T��T����T���� 
��t�t������t��t���k���<
��.��O��8���T�� 
��t�ԁ���t��N
P
��*
��$����
��Fh�͉y�y�}~�����a��������������
��p�j���M
���M
���jprk�5����j�T�h���h�
���i���
���i�����t�������t
�R����*N��^����Ȗ��*��
�R�D�e������jo���k�4���������p�h��4�hplh��/�������nh��4������nh��9j�oqj����h�p�����4���������l�h�\��ƙ����;/
���;ǾbP��0�&�M�	q$��;.
�O
�;�$9�	q&�M�����s���������T����������������
���
��|~�}�S�t�������������K����|�}�S�t�h
�����=��h
����u���������=��h
����t���������������t�����������������������t�*��w�����)�)�)�������(�(����������.��������������d�d����������Z���N�����N�Z�Z���N������N�Z��Q�+������A�@�A������A�@�!�����������[��������	���	�������[�������c
�����`@����
�����
����W�0+���.
�4wx�{0�������~}�9�4�������l
������4��W�����������p�@����
���
&.1<@EIMWktx|������#'v�������������")-;?DTY��%=BFNRW[_~����������,GNY]������
BGKchrx����������%.5:]ej����������,27>Ft{��������� $*5fl��������			)	U	l	u	�	�	�	�	�	�	�	�	�


=
H
L
]
d
k
|
�
�
�
�
�
�
�
�
�
�
)7Iisw����������*2CNSfnqw�������������


&
,
7
=
F
L
S
Y
]
b
g
l
w
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�-:BIPW\q�����������,38AHMR[bt���������!&4DTZbhr|��������������������
#27<@EN\iw������������������
$)5AIQW_ejpv{�����������������<���<�T'�T&
"���
�t%
M
�
�
 
�3���30y}}y:(�3���3���]�]�����]�]���B
��TS
?:
hnnh9�TK���TF���TK���B
KH
K\�H
�T\@
@��@���������������?
�����?
���������%
y}}yKy}����������}y�TJ
<
K.r
�O�84
�,d��
N
(
��]�]��G
�����}�t�����	�� �"�������������"� ��	���
���%�%�����%�%�����%�%��L0
����XN
����������������
+������
��z||z�
���
����������f�f�
m
�Tm
�Tm
��T��T�
�T��|zf
'��&
��&t
R����}y�J
r)
����������1V�`��+[�+s��/+"
����@�h
`�w
�
���_�O����G����`�E��}n\>l�9���
�,�������������������
�E�Q��|�z�@z||z�Tz�|���������|�z��z||z�Tz�|���
�@3
�E
�
��-
yG�~
-����Y�Q
�f�fD
�f�fN��~DRRD�}��-��!O
�
�
Z
���������4
�,������
���T tzux��u�[��Br�lmy�z�~���5�������q�s�������U���R�D^
.
��
�y}}yKy}���71
�
��T�T��M�����8�_�^�X*�D�4�
�4D�*�Y�_�`t��������,_�@
��T�T���T�T�
<
�.�B��i
�^
Dl�n�l||��}_zob^��^�b�z�����������M�<�M�<v��������������	�o�_��}|�|f�Ԋ
,�-�YY��������������
��f�f������
�TE3CC3����
�E�Q���j
�
v��{z�9�!
�
��Q
���v�
�T,�T��
�v���~���]��'��''��Q�������)
K*
��B3�C��m���3�'!�����%�Ơ���#xM'�nq��w������d����������������o�^�
��i
�

�!�v
�!�
hn����r�������]EQQEy�o�t�s�{tq�T,�T�p
�p�C�31
���n
N�f�f~���
0
:
�l�����
���T0
�,�T��������
;�;hn�
���G�C���C�8�=<�<�8��C���G�C��z�|��	�:�n�h���Y
���:��	
�:w
l
�
�:�
��+���&&��
�
�����
����H
.
��w�-fM�@�
jm��q���;�f�v�eKxvu�zt�v�����������\
��RD���8������\�b�u�B�������K��x�x�t�w�����~�����h�@��������i8_dd_�~~�x�z�������������������ƅ����y��<
�T�
�T8������������:
�
�T�M���Y����;���/����������������������a�3������0
3C��
��C3k������&��������/����]�]������1����aG?��\�|�\�?�Z���E�ԅ���c��*y^H�(�ym�|�[��EQQEEQ��6
�������Z�Zr�w�h~�������������������������
��
x��3
��x��CZ�7)�������������������������t�����9�"��T�M�5���������{��~~�D�;��i�;�
[�8����w
�����t��t�����~�w�~����~�w�~�
������`�
���8�
���8�
���8�
��������
����
�c
�
Y�Q
�
�
�&
��t[��>���z�z��������z�r��^�`�������`���^?a
��}D}��}�����������������k�K$������
_��hnnh���W�����
�
�
0
���
���~��<
�T..�O���������������y�y������
�!�`
+�����t�!������t�����
������
��������������|�z�@*
�Tz�|����}t����.�+ݭ������������B
�@3
�j��l�����
���������������������1��F
��4�m
��6��g��_
c
������Y��nh�z{�����8���T���(�A�(�A�(�A�̍�����������t|~�}�:���
�@�C
~���������~~�w�~B
�T3
�Tj�fz���\�J�$�9������:�l�A.
�O
�~�w�]]�w�~���z��
���R��!����!P�Tj
�;���%�0������������Z�Z�������@
����~�o
E
l
�	,,�	�	,�	�	��	�	�,�	�
+�SS
�T?
�����\xcik�v�ss]tRat�y�xx�h�@�@�h�h�@�������������{���H�M
���t����kG�M�Y��
}��
�~�w�~~���
V@�����nh��
�t�tC
xy�o�ts��{�pttp&pt��.
��4
QK*
��_�!�-
�!��<
�)��y����������`�n
+�<���<���B
!55!Q�Dnt��y���������������������y�����@��$����$@!�������������QErrc�r�����������r��������������p�]����w�_�_�c���������$
�y����������'�&��������OG����
�	�q�t�����������]�]�Ch��������
��!�$��D�D�$��`�F��� B�&&����ce��s���z����0
hn���+���y�y�������>���4
���z����|z���������a�`=��d��b��9�7�h�aahi`a�h������<���<�<���<�'���0�cGv=<�!
���������`�V��������������T�t���y���6�%�6-�	�_�$��cX�?}|������Aɽ���������z��������P@��z�y�z��������Nb�a�]��;
���
���
@����������������
��f�������
�
c
����
�����'
��f�R�D���3�h�@��D�R��
�60���+�+P�,��-��������������EG�xZ�n�y/
�
������,����_h�m��x������������
������}yXtxmihbW_)���
�������������z}t����$�4�����z����
���T_���� 
��5!���
��
�����`��qt{t��s�o�y33�3v�K���_g��������g_&��
���}jii�V�@�h�h�������]���������?
�
wk�z|��|�
������g���}y�+�:s��}� �^
����f����������%��t��~��
��
�����������n�h�&m���/�o�fZedZdr�syy�'�&���4X���*��������]�]�@	����
��_��3��3s�pyrs@ ��  ""
	���n@. �����!"""`���>�N�^�f�i�n�~��������������'�(�.�>�N�^�n�~��������������>�N�^�n�~���� �����!"""`���!�@�P�`�g�j�p�������������� �(�)�0�@�P�`�p��������������!�@�P�`�p�������\�Q�A�0��ޕ�R

	���������������������������������lT7A[_<��P���t�@����	�	����	n�p��v�_�]������y�n�����2��@����������������z�����Z@�5�5
���ZZ����@���������,_���@��������f���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-������b����
��� ����5�-�8�����@�D@���,*@� ���������	m��)@�@	 	' D9��>dU*q						�	��	����R										�@	e�	
%RE	 		$�� k(Pv//:/Q/Qc�	
���	^�	[	q	.	[	$�	[	��	s		�	*�	<�Copyright Dave Gandy 2015. All rights reserved.FontAwesomepyrs: FontAwesome: 2012Version 4.4.1 2015Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/Copyright Dave Gandy 2015. All rights reserved.FontAwesomeRegularpyrs: FontAwesome: 2012Version 4.4.1 2015Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/PK!�{��[�['fonts/glyphicons-halflings-regular.woffnu&1i�wOFF[��\FFTMXm*��GDEFt DOS/2�E`g�k�cmap��rڭ�cvt �(�gasp���glyf�M��}]�oheadQ�46M/�hheaQ�$
DhmtxROt�� `locaS`'0o���maxpU�  j�nameU����,��postWH-
Ѻ��5webf[x�TP�=���v�u�vs�x�c`d``�b	`b`d`d�,`HJx�c`f�f�������t���!
B3.a0b����	������?�@u"�@aF$%
�1�x��?hSA���iS����m߽44���,q�PK� q��XE]�(2	�.�ԩ�]�� "E�D�
����i]DԡZJ���\��8����w��w�������V"�F�pUԯ���.Χ(�g�K�4On�;�N���R{�g`'!��P�M�UHEՠJ��ʫ�*����Yq�9�c��<��U��9�!�Q�I��Y�ׅ-��KC���+	դ��U)�Q9�4�J���Yp�]Nq��9�.q��yVV
�n��)��9����[��{�����v�V��כ־���FWb++{�>�׍�a|�*��g�Q���,K�<'����<!�ɣr�Yw֜β��y�<q9�{-]��c���]o���I���!0l6�7��͍��{j�G,�OX�^�P�d�Q����{,�M4�c�(QBX��m!�K�,��Y��Ha�2�}�̘��0B�A�)ؐF}΀,�Q8����'A5�(�>W@�Ex̢�D���&�U�d�#���&�
x�Mx�<�a�a���,l2<���M��02���6�Π^����P�$Ґ6{��,�#�ƞ�{�M�wp�B��8H��#�6�7ad�&'~�95r
3w�"�[�Et���W�:�ӭ:$"�>2�c��5*�.�l���N��/����h����]Gt��T�����(���x�Ž	|յ0>w��m#Y�e[�%Y�-YR'r���Y�j��D% 	�,@�B�KZjH�ڤ@b���-�R���+�n�hK�~���룼���$��;��h����^f�ܹs��n�{ι˴0��kb8Fd:�%Lה�"�1��A�Ք�A�Y��>,�ؔ����#�p�Z�4�؟��5�ma�d�e�� ?Ȝy�=����I:C�� �D��(nI��x�L�.1�!�P'�JD�t�Hj�@L4��P��h' )�b�)vH�X,f�1�c\'��cG����u��>��1�~�t��?����!x���T_q�?qB���F���#�L%��D�ћ"��?Y�����ǯ����j??8>N�Skem���AY���Db�4
�J)��;�@�j��P$
��'qh�8`��;a���X��6C��F�*�d�Y�c��"��������'?h�L�V㗌�,�>c�e�3eV��h� =C�������~�xC��\((qb@�4�x�K&hׁ�
��4\2�DZ6N1|-�;���j���
Yu�@��j��ѫx�����i�䊧�mK���ٍD�E�w�q3�̷.��cAw@�4t.�g���kg��r�{~��Wl~�{��lW2���}�27�6a2�\�6o�z@�$�����H�S��H� �g����b�t�X7�0K�t��c1�,��7�B�oL��Ə�6��6[,���%�i�Z
��,�l>T�p�K��SGg�\>
�#��A�#3���E��y�k��6v��������;u3�!ZI�8��M�k?�8�C��Wq{`�C*��h>H���1�_s��k��h)����oj�OO'�
!~dX�g�B(���0<
kOYx�e����Ƨĭ5k��=d���ϧ> �+�t�C�-o
Ǫ��/��_ko�ܶ���s��+f���O�z�tp�u7-�}�d��9�	s���e ��\9.H4�!0��S\ ʱk2��"?ip7�\2z����lް�t=��W��\!�KyOXimU���nov����6�:���
2��LZkA�A�^�qC�ޔ	&P���aF��I�0��>�&��Q�#F�Q���l�>
A�·q*�O������Ȧ��_@27��l�,���s�����f��6�p7�ܩ?���M�����1v�A��2��]$j"��;�v�lk~va0��g�j���z����RD:�g����c�6���yw�%�g�(þ��#'��uB��#�=�_@?�>�F��Vb�0�a�!�aL4tXv���:�F��h��9��j^�xތ����z��}�Wn�}7}���j���Κ��i�H��������i���t��K�S���a�XE�E�bbBQ1��f�t�x��FȮ��-"dqA���\��~F`���6�i䁕+��Ԣ�^Ȳ�}ש�׆k&��Ĺ�����<-
\�;��g1>�w�0�0�v��^x ���7l�<��y��}��S�o�9��-ۮ�6k�бl˴��n����o�庾i[�u���~¬�o�`j��{i�\C4,"iW8�J�o�V�bp��w��C����!�;�'7�D.v���֏�
n��oZ-n����e��P��io4�~LY�/zm�w_�������g�Ͻ����R��"tޠ�&NoN��)4��M�C�G2��\j��8�d-�@>#�Ot^���5�+x��e.^�]�׼���G�8�^� �m��(��t1	�s��bf�J����	�%�����<��4��H�����@e��8C���,�5<�(��k�c5Y�I��������A��]|�ך�l6+��=�HV�cb�KՋB�6�i4�#��_��|&�>NvQ�k#�pW�=�u�7��HɰR$
��
�[5싙�
���g�	���%�1��9}�������&@$&�������l���=�1RI��}9��#�ς�z�??1z&��ı_a�c|P�I[��:u�;�����l��->k4���G���Y�m|Z�w�
}���Hn�R=-B���~�m����.ِ�	.���Mz^,���0�%���8��E��G��**|�sg|o���zO���֬0s��z���.���WN��^�	��yHk<J����{n��E��h�

TG�~��o]��V�ṇ��zn�Аzd�,/�)j�l.��w<w	��?5*F�qH|�<f7�[�6T��d�������?�C8��S�'��N
#�0�f�2^~7��:
�m���M	I��`M�:ӊH����F��9�B��:���g���Sk�oz��k���#�S�o�̨oc3�����A��'ӹm׾�i�k�n�Z�-�y�ZP
��=Uc�'����?&ȏ�K��Eu�l�;�><�v3t{8-�|�'
��e�a~���H94��x���A�-�@�y
bT4@0�b#]D�D����lj�DSio:Ag���S��P z:�;��-�|yH"r
��{�B{\��5RLi�6�A��A���tM�]����t��a�R�K����C��!�1�C��gC�샂� +���1EG�!����Xz������ٛnz��v�@�x�����-#i^��x�*�$)��W���=�O\f���[W�����X~V�?����`Lei�::v4��$?�=R��a#�c��]8Y��FJ�b&'{%LC�E�������Cf�]�^$��/���fߪ�M;À�;�����	�����6��CX��V�����#��X~F��<�	:�vC��c��yBpLv�����1��F�v#�9�
/�8VF�01��_K��?��x�>�}��#�G7�т\W�p!.@����b�wɡ+{�o����#�ԍP�QҮnī66
cZ����D�����(. ����u�;n�M}����?������v�t��x��F���{�+�����`�
�=��"�rPπl�D�V̶�������?��Z@�H�䰅]��[��3��5��%O���)�\^���� Z;��>�F��tf�-I�zӮ���y�u�1�u�o<�:�oa:uq����w�ykk ⋜�}0?jv��X+����}V�����G$s����
?2�6������Y�I5c�$�Cf�b!�X�*|F���^�$�p�7�p��55���߶6[�m��jg������l>�*��	KO&
 ��8�ܝ�:ǰ�o���k���K�m~�o�S�-*4�E�}P/���%�k:�e�"�1A�J�����CAX�����8=	L�Ţ>�ܱa��v{�|K.3���:\B�x���w���b�eb��<n�/�N����jN�j�OTQM����է ��g�[
׼1��J�[H*�d÷���J�(�R�Y}��Ҙ�c�hC;�ay�h��&�Cq;7/SG�n��y'^��9wה[�y��F`4;��upX_#��6Qy'�xC��q/�Q�P&�N�t��4p���ԍqD�2/ع��i=����X�܆D�A�<��-��>>�1ۿv�H�?�f��58����%�6�$ɲ�'p�L^H��X�bpI�Vqn�����A�8��K�g'i�!Uz��SE��I�����5��N=�hp��V�?��(�E� ����V��r��?޴��7������V�ڋ�ɿ�.��O���;������p�4��N�RZm.�O�> Mu��L'��j5����`;�Mt�AQܶM����y�V��<`��
$m)�y��ڳ�X���Da�:��݁��q�1�J�Fq�15��-�l��\��3�~X��-2pF�D�e���/�f!��2��i�:�=�h��{�%�{t�^���*�P����Bͽ]��Y�D3��jd
����*�w|��GLϽ}�ˑk7��Ç�=0��6�o�z*����zo��1~J�w0�0S��e�Pw%���#@BJB	��
%�+��	�'����;�%!&��)�H�q �7f�q�H.�������!�E�ǎf��,�9՚�$9� �H{~i���	�Z��)O|��!"��D.K��Qa2�
%���2W��ɂ\�{�*��B{7�,�9.�'ew U^��W��&�$�r9���rcG�B��wl����l�<����ʷ�SQ�ゅ��h�! i�Ѩv���J
:�Y?��#���_�m4��q[���}�,�E�A{V�П������P|�D��g�?9M���Id?{�)���/���	/\[ ��J�ҏ����[�f4G>����Q�K��^��m�� ���O��� -7w�]���„�<�U3jƏ,���:��Y��q�~�0��/�m��ŵ@C��C�F�q<��y�x�h����\�0=�RgY�d�(��(_�2������a��_�{p�M�T*��0�U��T���!�if$ԟ�(W�q�RC:P�a3=b�� rK1'-�{���H�ʽH�1��'`�kϯex�$��.�h�{܆`�F�z�E�0��c5xfM���䏾}�߾S��S�����K�]N�f'�pPιS�`BmmH�v9�4ሄ^�m �D	$����,�'܄ �p�Wɭ�g�dV/L�;���MZL����ꭵ�H>{�,�������Θ�����쬷ΘQSo
�l��sɿh���?A��2q���`��5����Z��&*�X1L5:�6����ς+����O]ue�j�����%?�ۼ&���aW?{����2[�}��W?��J�b��Ι��k�-\���b7�sI�kf&Λ�f�x~���n�O-9�V���
�~c�W"ȗy)b\)�2MrW��f�;M��U�7��'[����-c/��.�ؾ���u�M�l�&��.�9��) G���!�!W*	�60C�ф#��q����rq�O��K�ZO�Wq�,�8́/Xp����T��ȑ�g<>�¤)��[J8�o`
;��S\�S���������%��h~��p�|J˾F~K�=E0N�Q�X�����*����8;D7�Q��1��QC�%
*E�y�y}�� �UG?>�I`�>��'�6<�+����3IV�g�Ϯ�yO����Q$WBv��H	v�[�Ϗ	2�+����'�ø6N�߆<�������ɕ���
�2��S�娚9��X�1�\�┣����df>�B�~�����-��t>�W�]��p�Pr��Z[��'����+��ƌ�l�9]�8q��C��!��'�@AA�Ou�Ш�
!?M\�JMͭ�fǞ)�ߕ�=���w?A�N>�����¼}�jQ<ǏpǠ^���(��}����1�+��2��qF��4R���iHď��IT�r8���^���!gm���>�����'���ڸh��E�`�s̊o����l���!�(9~�
�o��%#�)�~ƃ�j$�@�Ք�Lp�G�Oa{��߿f��é�)�z�ؔY�<���������~����^��c�����s����潺�������ݴN�RU����R�T�Y%8����K�s3�q�d]^�QTb' ��zx�)�H���FҩP�mU�Z�jQ&�X��Ɓ�o��<0�j�YG����z�]����$8c��&�h�y�ݼ���wΞ{��9^���sf߹�m[v�����ӣ!�(Z�As��ۧ��y�B�������8RiԣB�g6�{�Um��tyW!b�pǮd
n�/ŷ�ʼ@v��/����%�c������x�En�:��4Y��²�,yZ-�kr���cH&��^ȩ�C�'Ȯ'^T���5�������r)(�(I��J�U��&#�݌!
+YM.�J�EX^|����L��w@��ھ��Zsg�Y�洺���\���x�ԟ����x���y���L�Cyo���<�Q�O$)�W�6�m%݆�r݆�d����ս���{��O�b��p��AE܀ʌ�g��������i��~�A������O"mo*�!��[T�����m�dH�T1�$�
	�PԐ4^�sfcA3��,��XA��P��b�ks�Y�	�yH�h�P����+b�W�=}��;�����"Z&x<SySVY��&=��4��&��1J�5u~��,ӿ�z�e��g^QB\/�Pʄ%�+p�re|Pn� �T��cZ>?���e�V"_[��Q�/�5Y��|���qI��/\��9������di��EBh$���v������wOL� ���fp�a
�,?H�gH�f2���RbL
v	>�U�So���^1/,��ē�vc��Y��Gm�Ũ��~�Am��z��?�/���4��0��yj̸p�k����2��H
��eE�R�b���/"M
7�5u�l�[�drC�&Y͐�&I�
`!>p��;���J-�b���--.�V�M��4>��Fj��/�5���σ�������t5}�>C�*�<'��d��?,c����d�Gf��2ҁ0w��6����L�h"�f�K���ζp;���ǿ϶P�d�c��1�EO���i�%����Ř(DC���W�����V�2��I)��T�i�M��FT�z�0����U�� S��7V��
mBW6;�nYZU�zS�Tg>(�h���F"�޽T뽷���R]��L۶�|��Lx�[�s,'NU|����E�<�4)�R����p�*��vU#�g��*�g��jə*=�~܃��A�S�ē���AJ�Hw�3@Nur�bw���Ȁʌx�}[�`�7������Z����tPlh	���L.)NU�}���kq�'��v��FQr׷��{ˤ�S]�Z�L��(�@�*�Sf�^��+u�Pe_k#��.�8��ɂ%��ՠ�,���@���TK��х���
t`�ߑ�X�AD;��b���|p�A��7�}q���2
@Y�`�~�����iԬK��0j���Y�(
���R����~^��ҧ8�>��=�F"�˜A[��Dq�vQ�C�X�|Z��sO���<NǦ�c�PI|���։��2����ů��1��Q|��FH\[
��T�k�޽$���3���X����5��ˮA��q�_��rv��7���@��v�2ˀ�i%��m�؊�f���P��^{�ovvy�fV�w4e�w�
""Zd�[��T�Cʭ"ٛ!C�ƛ���#^���
��Z���fR�4���x�p�V�rSK\��B��]Q�
���B~#�V*�p�x
��^��(���o/`D��ס�.���E�OWTv���6����M^~Ey�l��/�ѫ�NJ�l�Q�6M����q�":}H�ea��-EY�"��z"�ȏVKF5����8�/7
t��D�n#D*'����^I�������Z}pITmdL%�7�@�C�:F��By%��������KS<K�Re��ī�so�k��|ȝr��^�s�u�~�����w�N�_�V�P�6;�Y�\�\�l�m����I��"����R�
2��ts�0��^~����
��;�gELc�7���"����<^����$�g$�y����s��L״���$֠D�>	\�/�f.����F;��k�P��b�d�z7ԐeͶ-6�b�y���b�aWjnh7Y�L�F�!�4��w��ssF�C�n�h��_0���>�M�Z�� ���nC������*#5/O�U�N\(3o�@�[7`�Mg8x��g�e;f\y�|f֤�ޑ��]�i5��q5q&�>�'����������353�k�Yꭑ��=W�7��+΋yx�I�e<�����P��h�X	a��v׸��"��cJc�›oH�O�Cu]�L5��������k����і���]x���~�#�;!���)B58�/P��
��H��F#0��B(��p�}�Fst��M|���l��)]tϼ&�ݖ��,㙗nt,�h[��Y4ݬ$�wQג�,��@����k�`D��g]r����|�Y}�Vq�wRC*��9[o�����Ν�d�X6��&�=���}��߰�/*͏\˔)���5gO�l�Ӧ���}��1:>O��YǏ�s(�p6��[��B/t爁*̠-n:��
<Ц����)���+�ް~q_}����oxt>L���V�
F���G�@d�9��[<�s/���.<7���s�B���d�B'�wX�����ο�Z鵣��W��՗�>2��?�2ȳ���8�笞��={��fg�csC����m�����r��e��#���E>��45�qo:�J���X��^io��P,x��f�:/y��n9��V�ѥS�7=����u-�\�%�K�ϦUv���,�Ⳁ����Z=�v���k���N�*+_�.�ڊ��֞�i��ڃ=w
@��l�m�r��>��O���o,VԲ���ɝz&:'�4��5���!��9�pI	0@I[�PU""�s��Inv�R>�A����9t�$�3/���|k�8y�i�E
����c8��E�!Q�\ۂ}%A��f4�s*�A8���A��΀�>D��=5uw����j��nG
z?2�Q�/I=��f�H���4�n���]�澀�Ym�G"��2�PE�H��f�vZn�<š�PiA_�q/��P�Dտ�	�$$�~%Nyhr�OdM\�-��m�(��@\���#����Ƽ��N��J�O���>a+� �uJ�*(%�¢FP�J�W����������,$)��)������}��
B\����_�����w�V�] 0��T�OCÊQ}��5����{Ho*�;;�葞�rǨ���M�c�5����4S
: ��M�����7�(kY:�����z�`�gp
�J�stˉ��v'���e��G^~���i�D��1����6�dA �@'N ����֭<?�Ғ9庳b���ɩ�EÁ:��h�{��h��0��vۧ�Q~�{�"�H���GQ�kl�<�:ʛ^g�/���_i��������P������>N.��?�f�…�1��b��zJ���D �V
o@7R@6�<��%IF��0�mj=
�[�}N���ۊ�57��p��y��v4@<mЭ��9T��p?��R7�����0қ���Q�G�[j�������zi��b����~��/)wC?��	רa�-/�C�n���.ĕ�Hj63������p���Krh�����X��I�Ǝj�
��o��1��9
�f�\�~�:-��ѓK��4��7BY��̆�y%�DC~e��m��@�]���%�r����s4T�	������G-�Ug��>��H�OpV�B��]�{9&�^6�|�m���_PLLI7ǒ�i����"'T	}���? 4�����|��[Fǭ�tu/�_y;Z��?��H�K�0W�z��c#����)��~.r��ĥ+�B����&J���G�0��[�����.Ρ�r��O�k��;VC���oX� ��K۝S߳�r�t����:z�X\��xm��Jh��x���N��h�5��K�`�;ydp.Ec�4�X�D<-�ll��ip.�^��p��:�
�u�/���.��Y[�rl��_�4����kz�$~Dq�]7/T_<菵�����4K�$�Ɩ�� ���&w����
���S��7���|K�^�������7�MsMG����h��w����㢴0]?���fja�5a�i��Ц�6C�2�no•���f��=�)�d^����v�	qNc�Ԏ����l=u���]?;�f�-E�~����n�v��}5����%��������Oջ�d덿=�Z%v��� ���
n�K��u �̓*J���#1�h�u1Hr��	o��}����SZ�u=���w�;�nϗU������`�F���ȶ��En?����߫k&����l9�Y���d��gA��8NSG���D�09M�AK{ހK3݊���[_]�%W4z�ۈu9�\~���n3���~��zir����
���X3k�`Ps�����n����=m���]�ԃJ�ks���T�9d���eYN`}��/�]U#��b�;R����t,��l�h*���#JB+
(��iGx\}~IֳF��v@T��u��֭��J��
������
�@-L����w�z�Y��g�����w�`wx-����(d٢]����F�3_��X�cY�mQԃ��W�b�-��F���K�5�d-0b��球—֨�T+�_�Z�x�c��j*`���}�|x�~�L�F�*�S*o�Mت�A����T�1p�7�1?�Rt>��R'"�������E�y�)o�P�7����%��$r�v��
Q����eE�����+���n�zl��Vl�Frkt��'��'?R��'Z�CE�I�Ky�	ga�0����^��}�pE;��Kq{��T/�?�i"%���1�ޒ�b�-�Ծqƛ�˵��+ ��8�]��rI���ڣV�{�dȪ͜�\�A���Q�vO�S�]0.��N��X9s��v�b?OE~�FPU}o�[Y�K�r�����A��̓U%���7D�w
��q�b�/�h�
��A���hPbQؓJB8�I��?�I%=�X�t�O�;�(P�h�L�d��
S �'h�ݱ�>|���T����V?�,O���"\�`�7����.�2���>���D��
�f��m�g;��-��C�'����u�,���� z�A`-�ټ��$�xvc��k2��[x�p\c�b��l΀�ih�s���iv�aÛ��M,gĨl�M��z����7Jv���ˑV�RWϋN����o�4�(�-��XB^�Cl&Vn�n����n D4[k6�����N��&��}f��3Y�Qw�@$�U$(Ǫo�:-�ZG��#&���/�}�?��N}ƥ��7�A!M��h��W>���?iX�p���r��A�١�b���?uϱ�ι�-h������6;��S�B�#/���@ѿJ	��
!%Q�)��Dq:{JI^ޑˡ�PY7UG��(�����h�?Hm���ъ�vRE��H����=�N`P)Q�����G9��FM��S�MG��@2�E�$Q
�$�s�~�TkN�"�9�Ն8�c�F��^�"?+G٠
^�*��gUlFVx���U�poC���.XCƵ��׵͉�q�K�[�k[��K�(l��;�
�ӡ�n�%^�R�j�,$)� ����1��n.���G�:C��f��(��,���;��Ĵ��R—�F�_~���^��;��ի�D��;6|/jGGSSG��G�ӎļD��zbR�/X?�����U��p14u�$`��[ߜH47�7I�~��~I�r�ߙs��#�6��+�h��e�W�6@wK�̸h6,	�1C�"�����=�m���e�A����=����@�z�����	�s��ls�]�;kkl���r�^"s��青�>�&Մ�-[��{�JiҴ9[�ݵ�ȩ�-�]�dޢ��c��An�۹��g�}ꒇ��6hT��ɖ�?3s���^k���L�cY�1�Z��n[���bݴ�E߆��դ�w���k3�f���>���fM��D��ՠ�a��D���~}&���@��5�ugn��OȢ<��'`&bӬ��-6�;��X�"�d*�a�w��Y���v��t�L��X�ָk�Uߩ����a���=HR_�@���+j�2��T*�£�%��/͸oƤ����y��
����1��9/7� ��~�7��_��o����+��$D�үs�IH�:�r�	��	�yiF:�����v�����(��d�O":��om���dM�8��;��Z9u�ʩ�HCg\�K/*���ԙ�g*�-�I������_�E���Rq�R'�[�f�?G�U��Ao�vb	A$�e�]��/�Կ��o�?|�Ԑ�Q�m�4�G���7�G�83��3+
�74�z*)�$݋J��pD��N�j5p�q���e�Df/���>�����%��g�W���{�U��:g,�n���l���U�\��t�'���%��E��}��͝�u��C��ꘒ�ܻߺp�}U�+^b'�����o(5g�V�B�I���OE�m>������5y�zg��}�����A��P-�P/���ޫ���6�)�x5/t;1�p�1�L��9�Aܳ|����)�����X]m����kFE�H/�4}:�,oLM�o�6]Y�M�5���0u[��yҫ�fV�h��?���E-A�_i﫝��j��
�.
6|��5�`#��Z-�sv�fq�ӟ����s�͚>���w����7C��{	A������]B����z,i�H'd����v�?�`E���
�x,��m��z�`�F[��2a�v�hp�%(�̒���ʂ��5Ԧ;G�юh����\�y";|"�ٝʖ��rx�z�s�P�HCT�v�P$��ly}�iyhvM�C��r)�#�x���-�.(�t%fu���€(ۅe��UU�o�
�p��qe�ˡ啗�s�y�i�	X��k�`�>�X�@2P��.
�2͌>�n�|��,/4����}����?A�&�J����r�+����ɐ��CV�]{���Z�0-	��A=��
F��$�+���%U�Z�y���ޗ��ٲR�
�B��)�����wT8��(�a�R�Σ*-�����s�r5v
�!^tZ:/�K,'���F

9��=���G�<��C��u�"$�-��F��S2�(��F
0Q��+X����w�,�]=b�h[q�B�QI�
���;)"�Ō��9��2��6�r?��}l�V�=b�[���j��4�Az���K�kQ?T��[%��$�K�Q�-��l_@l/	&;���차�Dr�?P_d�E1�~�z��^I�~b����r��e�u��f��P�/�պ#�E�+�S\�G�-�R4���	�S���S��V俑;���*`�G��*5'��d�L�
���~����	�5��F���hb`�
�ꁜ���4��[b$~�G�N�AX$���~�}[��W�}��_��z×6m��&~O�%��j/�r�&|_S����y�<��-�*Lϛ���,��JQ�z�ͤ�𫷣�����|�V|�GVW~��<mbl���������B�&��̭j���y��\r=���'�9�H�f)������ԅr�	w��!;;vs��B�7Ӏ��'�k��*��ir�����b�/�K�+ԔW��R��O ���h$!`�1�[�r�����(�a\T�R���"P�?]Y�;?��х�yKRX�W�OCz���ܩ�H�jPn��[��忊�;�͇G��q��Z.�A��.*�@/�)WQHQ���U�L�2^��$,T=Q���(J~�BI�UP�J���=�WC@�ﰉ8&�~D���W�����k�[��<�Տ}�.�"S<#A�>�z	����
�H�����E�	���Y�n���H4�r7P?99���ߡ|O-��5��	�%�4�	dz�O/4�L_Ps��T�>�LQ��D(����J8�F��+)jCb
�Mu�2Xc8$�t�}�&<?��9lW��~�ҿ͑��n��90A�=&W=s�Կ���_V����}�?k�U(�m��utE��*�
�K%�
�t���Z�p�J�� �B�W���P �A�l��(Z�L��zF��Z�}��/��40�l�V	���i%L��^V`�jp�P������5QV��V�k���zX8���^s��ţW4U*u��}�L��8�F� � �~�3��B�"I�/.��O
=7B�JA���K��Q-�|����Vw|()8��C������%ʴ��To�l�s�7*���rev�٢���6m���ǖ	���C�T��pT'ǑpL!�jRC4���}a��Sm���[��%�4a.��첹},�L��B���=�:ݍ'�b����
dm�}V����Y,�t��;���9���Š���	�:\�I5��fDA����u�I���F�H2� @:2	�!�ԏ��j�-��@ٵ�G���`vKcw��I�lar��%l��Es�
��rDe��T��ib����@���d4�����B�DH��T�. ]��K�*��շs�\m�F�:�:��4v��X
��<�;���r�����%���6�aꇷ���ܥG��������ѧ���|��g�у����h��v�qtJ�J��K����H�^v������gp�.��?뜸�B����0�^q�8�|f�S[�t����Cx�Ҕ������׬�f�й
�^�FB�
�Pi��WFpR�U
�:̓�D��}���فv�������}4��z�/���F<���P莣\��U�'c?��4�sJ
���jj>�@��Qr�-��֤��U_o6���q7�P1�ˤ+���rc6�I
�\ �(*v�2��4Uc(A� ̣9�3���]�z����;0'�=���*,e5�6��V�a,�qh�*��P@wȬ�G��/�O�j�|�FIm�	#Pz�;J�wʎ}��<�����zT��t��~�`�ȱGP%;?�5(�(u��#���vՊI���#9,?G����b4K]�Qgԟ]�E[�phʯ���G���+`���Ęp�?�@�>!�}"
�ҽ��r=�C�D5� 62��ZY���?����i��A���
T(�EU�Ju�;"}��պ#��L�c����ӗ�V����W�O��&�CIԙ���u8*烞Q��a�Q^*z(�L�|Jӏ��^�f�p1����0�4~��C��Ux��*r�V�*�N9π�׳�P�ūs��p���_L�������3�Z"}�&�r�O�|l���~���k�C�/Wj><�S�x���M�bS������g(]�J(Z#��x�\$OC6�8-�f:{�S�ҳ蚨o�4:����)���Wb�"u�iu�h��~�d����%����B����AM
s���WH.gv�%��4���v�+����=¿
��S�G�ϋjWHW���u>��[�B{[�u�ɶs�;la�z�i���W߭�\z���C����|��\f����te��&��ߕ+B�k���/t��
�CM��	/@S�>Tm
�G`v�`?������G�(�,zb"���e���A��A�i���7���Q���R<�"i�X��:�I܋(a�V�������;4R��]}����^���1�v�Ե����7���=�p�|�[Jο�e�µ{)�e��#��ief0�K�J�q�"*�F#�(��GjJF�h���X�#ш������ݍk���5E�R�P�΋�	^p�C�eo���e��:��{6�۬��5�͝s��ƙ8�X�K6��V[��=��}V+��hͧ��J��l��ZZ�5��W����;��T��e�V-�@�H��I����D<͙[�)֐����l^b�Xe��NN���"K]�@���b����?.�H�H
gzXa���ْA��}MO�e�X�H�N�r���ڟW�;�ht�gttO�yu3=��*פ���ؿ�C��FGsh9J�ͽZ�-�k��]L-�~h�ii�.�49�Qr5��I,Vݓ��^jf��_}�,��Q6?�5�NV����
ޞˍ�YٜN��%ez��qƨ�>�Z�
��Nt��1� a�%��=� y�hޙ��
H����J�Z��?�	h�vr�k�@�m�Y`�^ins��F\�*�|L�z!/?�)(�0��
MS4(�ȗh��{������-�'�h���o�7�cCҞ�?�6���'|ub�գ@����!�b�Ù�����f{tz��1U�A?=�@���	t%�䕉���iu��[
N��i�D���G�T@�:�p<�(�c�X���Um�2�ϱ7z��O��M^�FϴYUfwGs���#�t:�/�������~�Os�]��F���ݑ��(��(^����?L��$�Sʽ�WzT>m�'_���d�����:��5�Lh;�H7�Wgz�g�Z��Zb3�{2d5�Jj��9�c+���\vqz�Db���b��ƶ�g �"l@צ�p�QB�b��S Q�>��+d	�p���%}�L!��������cdwHo�����p�x(T�p��x��p#�:dvQ
q�dA�QFd�L��K�m�PR��
�pU?�l���
��zg�-�����jP��b��G�aR���&^q���>u�8��p&�Ӯф
�`�MGS������ܵao����WܛZ�aâ�ٟݰ�V5��R�s2NX	�qGB	��O���K�g���BW��)Sg\���ӡl���]z��<߲o-_��-����A��KMqӭ!�æSi�gy����۰]K�;S��T'���kPq��e��e�7cZT{~*�7�b�\H�?�jٵl3��P
��оw�T2��j�Y;�)�l
D�ueytOT���jö���U�H���X�gɬ,��W��Ϣ^���u��![]�v�F���|
�QG�h`(�#	�R�'5X�D��Q��qM�6g�c'b��u�:'��H(�?�yյ����6�~.�e��[n	����*��U�yZs�t�9�R!G��������MM$�x�z��$]��{��L<�}���4���JZ��~�MV�Օhy� >@u����
����+�����]��2FqO8j��ѥ�WC��Qq����rw��.��䄫�ޥ\��_�������y��\O�n�)I�KGR��HŁq���I���.
d+u@ϴ�� �k��Ť}9��T�v6�*x�g�e7?��ì�}�S���-��AU���OMlJ
�p��ժݧ����Yw���h�i6�\fA�Zc,�rjF�T��Mj8kO�51��T���qW�_�n��`�7�%�K����W�s�d0���:��`��OX����s$�4�?:�SI1��W-�Pr}�²���9�.�&�P��^f
�8(�W�I���`��`@5a}�z��i�V �p��PԽ+:��d\j�"=�a�j����)W��$q�{���͜�p)�V���|�7hj������������$�L��֡�9�\���ځn[ ��k{lG���.m�m~�T���E�����b�ȭ�m�`
��w�ny�P&�:P�LJ��Y����_�p�NW����zV��S׃]7��E�d�%i�癬|������E�WM���7r�
��HB���6�`UG�Z���
�9�N2l2��ɅHY��(�ŗ���iw��ݓ[��`�cZ��R;Yz=Tr�vH��9�c.�ֲ�G���6�*p�΅�'�[�:�/�ҪX����CYхM��t��-'�]�n,{@��c��Ob����I�N�.�x�N��F9��뛝N��K��[���X�r=���W�m���ݏ�Ʀ�Y+���?s�J����g�X�u�P���%ȗV^����[��� ����W���;�W�
�xv�i�/��XS3��ȼ�2���ԩZ�<F��=0V�[%�R~ˌ�x���y�s��y?�Θ(O�q_�V-�aQ�*Q1	�t$�j�D�pRR~�zǢ��p�"�]�gw���=�%GV�����rt����>��f�2���/y���?���8�M@�Q��*˄�����C�X��k���?MzTy?���Z��Yu׳)���]͕��1�-�a��7j�~����
.d���
�
��'��������V�z�tXK��2k̹d?��z���z���K�.�>,��BZ��`q��'�k�H�qy����5��j>a���\C��#��H;#p���7l�4�}��IR�7���ފ0����$��=�V������#���_.�v��s�{g><c������_����O���gx���5&�?���̠';z���a��a�:zӑ��Q�Fꉢ��^��MF����9��&��A������Eb���ٽ\�|�3�gE}"+�>��h!���A�b�/p7����=�z����mi�%�͟�3)^O�j�<_�U��NY63dsIr���8E�j����U�*�
33�|v���;��O��B@�,��,��\cwd}6k.�u�k�F9��'��2�6D]e��x�G�J�K.׽}��S��$�@t"�;2ɩ�*�����4��1_��x�7��Q�bj�X����9����Q��;�#��{9��e�I
�-�奐br	B<��9�dpz��IV���Q:l�+�s�i�#=��T��+R��(��M�DC$�
��a�̱	�ONg�j1�9������gqXk��}F����d�����c��G�,���&��.��.^ɷwwc��>�E�_]3��U��|�t{J�f�窂u_�.�\����*�W�=��}�lN���o+^���Ṿ��	v�P�>~��s��T�jWz~_��o�gS�}-��D�Td��-T�Aa��Yf����3,PATcm��
ռ4g�}���m�E$B��w��Ū8�>��9����JW⁩�O��/9�P�JC�XA{,�@c,tEJ��T�j��9��8Q���&� �H���P�l~K%ƞ�1��ѻ�
�-�e�DzxN���Xuz���.9��}�M�c�&�:��Z5��ә8��%յս�m����om�CB�:����l��8�����~��ܦ�E��j�T���YH�Y�v�n�V^IN]]Ž�CXkg#�sc�S��B�$�Ý=�$��k�}cG�&��/��z��}������_��v6<�7����IVGG���g*l�\RXS�T���)�šE��%Y�u��~Q~>X����Ѕ��`9�W��k*�@_ՊpM�]0�*��%�a��3X팁K�M�|�{��FԔ����
췾d7[�n��l��ͬ�D�����@��m�����8����e �cż�#�gH���dd@~.�j�l�lɛ��eRcx�E��((	��K����m¼��G�X�A7��S���@[l��.%���գnMDs�]n�_Q �5�i?z��G�T�G3��T�@e	�i���,���r��
O2<�����l+���/,��%���m�� ��ۚX�n�|�E����]����l�í����[m<�|#�z�+�5�� 7&\5S�-�{��AE��^���t�K�������M�^rq]��Fm�C%2��vJ��)W-�}OM"`�9l�+�=�%"����T�'8�zH3QҐ�ѩ�Y�P~V��ز�Ni���7����ۛ� ��?w1��x�c`d```d��?��o�A�eP��BY�t�?��;�"@.Hc�x�c`d``��
&�]a��A���_x�}S�JA��S<�`���������b)6���>@D��"�X\o��!�����ι{��,_��o�gg��g� ��#J�VYp>uC4�&*�<=$���g9�W@.0��q��- �����;�:pt"H�U�e���5���Vg(�[A�x�9��!�޴�EM���ߗ�4�N�&Ӟ��wj�t���Ԟeσ�Lp�>�w��>G��pfz`�|����^�a�ż�>���)�o�o���M�g+R�m�Rq��,���RJ��1���X�T��N7t�{I�E�\�F��8�U
���mb�:f�N�&��j9�Yx�c``Ђ�M/^0��K�ؘ���ژ�0=avc�c�a>��bĒIJ��k�.�"�/�
�I�8�8�8�q�q�pn�ǥ���5���w�)�^-�8�
||||[�5���?� �JPK�Lp����P��a)��"Z"WDmDW��c3K� �O<H|����D��4�
$�IjHfHN�<"yK򝔙T���o�q�[d�d��<���u�͑�"�G����\���$�K
n
���w(9(MSڡ̧��l�\�|H��
���J��4�G�&�	�{�D��Ԟ���Q��a�Q��Fs��-5-/�m.�*��]:otet;t��i��-һ�ϧ�_��I����A��%C!��u�/�T��f�3V2�3�0�f"a�`��䒩��<�fvf5fw̥��'�_��p�h�8a�e�e�ay�J�*�j��=��wl$ll��5�}cge�cw�^�>�~��/��c�L�uNN+��9K8;9�9/p>�"����k��676��-n�����ܷ���0�����h�8�)�i����ʋ�K�+�s�9�@.xڭ��NA�w��h����
/�"�T�D�#J$��r�qr|�!'�O�3��X�F�ާ�0�wY� �1�fg;73;3��x��E0C�q=���q�X�4���G�A$�x�ZB�8ڃ�	D�w�!��I��a�S���X���w����.�0�?��o��N��؍�gڍ��@\�A�`�sb��
�k`��sݡ}�,�0�Y��aD��ȵȵMyF�Mv�Yd��S����2����0~�>�/�qJ��G
i��<��#c���0�C~G�����9eeKv���в[ڷ{&V(Ө1j�1�M�Zqr�7�,gKܥ�X�����0�����QY{�
���M�Y��жz=���a�:[jEݢ�	��BZ�Z�=n�s�`�+o��̏�x�m�U�SgF���B�]��9I�$uw�-J;m���Pwwwwwwww�l�ޕ���]<3)e��׿7�R�^����V�V�_@��$zГ^��З~�g�`�0m�[�czf`(3233�2�3s2s3�2�������e�D�*95�4X��X�eX��X��1�4i�+�+�
����k�k�����	����[�[�
۲�3�Q�fvd;1�q�gg&����n��LdO�bo�a_�c�@�`�P�p��H��h��X��xN�DN�dNa�r�sgrgs�r�srs	�r�sWrWs
�r�s7r7s�r�swrws�r��������O�O�����/�/�
����o�o�������	����_�_�
����?�?��������f��,˺eݳYϬW�;�M���e���lP68�s䘉�GE{R�α����M���
7����n��ܺ�p;ڛZ��[ݛ�Ƶ?ѵ�ֵykx�~y�j?\3V+wE����5=��QM�jzTӣ��(�v�N؉�k/셽����d/�K���d/�K���d�b�b�b�b�b�b�b�b�b�b�j�j�j�j�j�j�j�j�j�j/������r{���^n/���+�v
;���Na��S�)���Լ�f�f�f�f�f�f�f�f�n�n�n�n�n�n�n�n�n�n�a�a�a�a�a�a�a����C���h�QN��-ܩ�������?�����C�����?�����C�����?�����C�����?�����C�����?��݇�C����}�>t�݇�C����}������C�����?�����C�����?�����C�����?�����C�����?�����v�Nj�HM�p�[q�n����?�?�?�?�?�?�?�>�>�=�<�<�<�<�<�:�:�:�:�:�:�:U�>��:�:�:�:�:�:�:�:�=�;�;�;�;�;�;�;�;�;�;�;�;�}��V��h�S������oTP�PK!�<�\�\�&fonts/glyphicons-halflings-regular.ttfnu&1i��pFFTMm*���GDEFD OS/2g�k�8`cmapڭ��rcvt (�gasp��glyf}]�o��headM/���6hhea
D��$hmtx�� `�tlocao�����0maxpj��� name�,�����post���5��
�webf�TP�T�=���v�u�vs����Z��2�UKWN@ ����{ ,
�h,
��h@( +�� 
 / _ � �"#%�&&�'	'��	��)�9�I�Y�`�i�y���	��)�9�F�I�Y�i�y�����	���!�'�9�I�Y�`���� *��  / _ � �"#%�&&�'	'���� �0�@�P�`�b�p����� �0�@�H�P�`�p�����	���!�#�0�@�P�`�������f�b���ߵ�i�Y�����!��     
 ������|vpjdc]WQKED�����������5  *+����  
 / / _ _ � � � �""##%�%�&&&�&�'	'	''����	!��&� �)0�0�9:�@�ID�P�YN�`�`X�b�iY�p�ya��k��u��	}���� �)��0�9��@�F��H�I��P�Y��`�i��p�y��������������	�	��������!�!��#�'��0�9��@�I��P�Y	�`�`����������
(���(h .�/<��2��<��2�/<��2��<��23!%3#(@���� ��(�ddLL[27>32+&/#"&/.=/&6?#"&'&546?>;'.?654676X&
�j��

�j�
)"&
�j��

�j�
)L
�j�
)"&
�j��

�j�
)"&
�j��
LL#32!2#!+"&5!"&=463!46��^�����^L�����^�^p@LE32!2+!2++"&=!"&?>;5!"&?>;&'&6;22?69�
��
x
}
x
}���
x
}��
x
v��
���L
���d����d�l
��d��;2#4.#"!!!!32>53#"'.'#7367#73>76��p<�#4@9+820{d���d��	09B49@4#�bk��v$B�dp�d�>u��hi-K0!.O2d22dJtB+"0J+�ku�0�wd/5dW�%�{L�>G!2+!2++"&=!"&?>;5!"&?>;4632654&#�^CjB00BjC� 
x
�
�
��
x
u��
x
u��@--@�$?2O*$$*P2@%d��
��d��
��BVT@��L�!2#!"&=46� ��������%A+32!546;5467.=#"&=!54&'.467>=�2cQQc2��2cQQc2�A7  7A�A7  7A��d[�##�[����[�##�[d��d<c2<2c<��<c2<2c<d1��,�A2632#!"&5467&546�n�,,.x��x�OqUB�Awa�xy�rPEk��d��32!546;'&>76!'� 	
���Pԇ
	 $
op	zy���#��%**%�$	���pd�L#7!2"'&6&546	6'&4#!"&7622?62~
������

�

��\l
��
l��L
��7
����
&
��
��
���

l�������	
2'7'	�&�

c�_"���f���n�
�&\�`�t���f�jpO��32!546;!����������22&&L�%6.676.67646p�'0SFO�$WOHB��XAO�$WOHB��"��7Q)mr	���*`)nq&*	����)2"'#'".4>"2>4&�ȶ�NN;)��w�d��NN�r��VV���VV�N��d�y��%:MN��ȶ�[V���VV���dX�D>.54>�0{xuX6Cy��>>��xC8Zvxy�DH-Sv@9y��UU��y9@vS-H��^{�62!2'%&7%&63�������������� a����o������^{�"62!2'%&7%&63#7'7#'�����������������J��J��N a����o����d�⋌����&2##!"&=467%>="&=46X|�>&	f	
��
	f	&>���|�.hK
�
]

]
�
Kh.�|�
�L#'+/37GKOSW!2#!"&54635)"3!2654&33535!3535!35!"3!2654&35!3535!35~

��
Ud���

&
sd�d d�d d��

&
��d d�d dL
��


ddd
��

^
dd�dddd�ddddd
��

^
ddddd�ddddLL/?!2#!"&546)2#!"&546!2#!"&546)2#!"&5462��pm��p����pm��pL�p��p����p��p�	LL/?O_o�32+"&=46!32+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=462����������������������������L�������p�������p�������L/?O_32+"&=46)2#!"&=4632+"&=46)2#!"&=4632+"&=46)2#!"&=462�����D�������D�������DL�����p�����p����&,� 	62"'&4?622�;��������;������nnBB#	"'	"/&47	&4?62	62������������;���������������%I2"'#".4>"2>4&3232++"&=#"&=46;546�ij�MN,m��w�b��MM�o��XX���XX���
K

K
�
K

K�M��b�y��l+MM��ij�MX���XX���#
K
�
K

K
�
K
����%52"'#".4>"2>4&!2#!"&=46�ij�MN,m��w�b��MM�o��XX���XX�X^

��
�M��b�y��l+MM��ij�MX���XX����
�

�
��-32+"&5465".5472>54&&dd��[���֛[ҧg|r���r|��p��>�ٸu֛[[��u�'>�7�xt�rr�tx�d��/?32+"&54632+"&54632+"&54632+"&=46�

�
�ޖ

�
�ޖ

�
�ޖ

�
�
��

~
�p
�

�
��
�>

�
�
�

�
��GO27'#"/&/&'7'&/&54?6?'6776?6"264X!)&1-�=+P��P08�,2&+!)&1-�<,P
��
P/:�-1&+x�~~�~��P09�,1&+"(&1,�=,Q��Q09�-0&* !(&0-�=,P���~�~~�d�!%)-1!2!2!5463!546!5#!"&53333333�,);
��
;),,;)�D);dddddddd;)d
KK
d);ddd���);;) d�D��D��D��D��62++"&5!+"&5#"&l`
�
�
��
�
�
j`��
��

w��

?
d��3!#!"&5463#"&=X;),��R���p);�vL�p���02".4>"2>4&3232+"&546��֛[[���֛[[����rr���rr�|2
�

�
�[���֛[[���֛;r���rr���

��
2

^
���)#!3333��)�)����������p���,�p��,d��/3232"'&6;4632#!"&546;2!546&��
��
&
��
�T2

��

2
���>�p����
��

^

��
��12".4>"2>4&3232"'&6;46��֛[[���֛[[����rr���rr�|�
�

�
&
�
��[���֛[[���֛;r���rr���

����
��12".4>"2>4&%++"&5#"&762��֛[[���֛[[����rr���rr���
�
�
�

�
&�[���֛[[���֛;r���rr�������

��9!2#!"&'&547>!";2;26?>;26'.��
�������
W
�
&
�
&
�
W�
�t�W
��
��>
�

�
���'2".4>"2>4&&546��֛[[���֛[[����rr���rr�����[���֛[[���֛;r���rr���]�$����(76#!"&?&#"2>53".4>32��
���m�t�rr���r�[���֛[[��u�$���
�Lr���rr�tu֛[[���֛[��576#!"&?&#"#4>323#"'&5463!232>�����n�t�r�[��u��[��u���h
�n�t�r$����Kr�tu֛[��u֛[v�
h�Lr�
d��/?O_o��!2#!"&546!"3!2654&32+"&=463!2#!"&=4632+"&=463!2#!"&=4632+"&=463!2#!"&=4632+"&=463!2#!"&=46}

��
���

R
�2

2
��

�>
�2

2
��

�>
�2

2
��

�>
�2

2
��

�>
�
��

~
�
��

R
d
2

2

2

2
�
2

2

2

2
�
2

2

2

2
�
2

2

2

2
L�#54&#!"#"3!2654&#!546;2�uS��Rvd);;)�);;)��� �SuvR�;)��);;)X);��dLL	732#462#".'.#"#"'&5>763276}2
d�!C@1?*'),GUKx;(.9)-EgPL
��3
0�[;P$

9�7WW��!1A2+"&54. +"&54>32+"&546!32+"&546��ޣc
2
���
2
c�*��`���c��t��

,�rr���

,tޣ���4��4��G�9%6'%&+"&546;2762"/"/&4?'&4?62A		���

�Xx"xx"xx"ww".�
�
�
^
�x"xx"ww"xx"�r�/%6'%&+"&546;2%3"/.7654'&6?6A		���

��
`Z	HN.�
�
�
^
d	���	g~�j�b�1K3#"/.7654&'&6?6%6'%&+"&546;2%3"/.7654'&6?6��D@
	*o;7	*��		���

��
`Z	HN�	��i�T	"��Z�G	!��
�
�
^
d	���	g~�j
��	!%-;?CGKO3#!#!#3!##5!!!!#53#533!3533##5#535#5!!#53#53#53!5!�dd�pd������dX��,�,��dd�dd�D��d��d�dd�,�D,ddd�dd�dd��,�dddX�d�,,�d��,��,�ddd���d��dddd�d��,�ddd��ddd	��#7#3#3#3#3#3!5!#53#53#53ddd�dd����dd,����,�dd�dd,��������Pdd[[[[[
��
	"'463&"26���0�V
C;S;;S;��V�0��
�;;T;;
��
!	"'463!"/	&"26���0�V
��08��D��;S;;S;��V�0��
�V�08���;;T;;d��&!2&54&#!"3!2#!"&54?6,9K@

�D@
�

��
��K�|@
�
@

�J

����L�
!2	46� �>�>�����C��EU!"3!26?6'.#"#!"&/.+";26=463!2;2654&!"3!26/.6�DN9
�
>SV�
N
��
N
�

�

�

�
���
&
X
&�
��l		l-
�p
	�	

	�	

�v

�

�

�
��
�

�
d�L!)13232#!"&546;>35"264$2"&4��8]4$�);;)�);;)�	'3]�d�Ͼ������V<<V<L);;;)��);;)X);E5+��ddF�����<V<<V5�� #	!526/!3!567>?!��(%	
�_5,R�y:"	*2��8��T���2*BBW-ޑY".BB%

�Z�d��'2;#!5>54.'52%32654.+32654&+�50;*7Xml0�);!�9uc>--���Ni*S>v�PR}^��3:R.CuN7Y3(;	G)IsC3[:+	1aJ);4��ePZ��o�!56764.'&'5mSB�	,J���
�95(��1(aaR@	9���%/#4.+!52>5#"#!#3'3#72&�2�p"�&2�KK}}KK}� ��dd	R ,�১ �!����%/#4.+!52>5#"#!5!'7!5L2&�2�p"�&2�C��১ � �vdd	� ,��}KK}}KK�L/?!2#!"&=46!2#!"&=46!2#!"&=46!2#!"&=462X���� ��L��Ldd��dd��dd��dd�L/?!2#!"&=46!2#!"&=46!2#!"&=46!2#!"&=46���D�L�����D�L��Ldd��dd��dd��dd�L/?5463!2#!"&5463!2#!"&5463!2#!"&5463!2#!"&�X���p��� ����L���dd��dd��dd��dd�L/?!2#!"&=46!2#!"&=46!2#!"&=46!2#!"&=462L��L��L��L��Ldd��dd��dd��dd�L/?O_o32+"&=46)2#!"&=4632+"&=46)2#!"&=4632+"&=46)2#!"&=4632+"&=46)2#!"&=462ddA ����ddA ����ddA ����ddA ��Ldddd��dddd��dddd��dddd���L#*:J!#;2+"&=46!2#!"&=465#535!2#!"&=46!2#!"&=46�dd�dd��������,��X��Ldd��dd�}KdK�dd��ddL#*:J32+"&=46#3!2#!"&=463#'7!2#!"&=46!2#!"&=462ddgdd����/�ȧ���,��X��Ldd��L��dd�dK}}�dd��dd���!2#!"&546	K�,,�,,���,�,�v,,�,�D,,�L!2#!"&5467'2"&4,X��J�*J%��pNNpNL��d����>���tNoOOo�6�2.'&54>"264�u�sFE�66	!^Xm)<Ds��������x�us�m�?>!fh�H�uX�yHÂ������2".4>"��֛[[���֛[[�Kt�rr��[���֛[[���֛�oVr���ru�5.54>6?6&'.'&76#&*IOWN>%3Vp}?T�|J$?LWPI�)(!1		) H�uwsu�EG�^F&:c�YE�vsxv���!K�:%A'#"
A)Y��l*/7>%!2!"3!26=7#!"&546	7�l
l��27���);;)�);Ȼ��p���8���7c�s*
s�
�;)�);;)�������������2�c�L6!#"3!2657#!"&546&'5&>75>^i�4�);;)�);ȹ��p���S��9dTX
.9I@F*L�6;)�);;)�g�����������	�
0!;bA4�
�L5!2!"3!26=7#!"&546	62"/&4?622^^<C���);;)�);ȹ��p�����e���eoL�;)�);;)E�ۥ�������3�e���eo

��;	62+3546&=#32"'&6;5#'&47635#"&>
��
��
Ȫ
����
��
��
ȯ
���
ȭ
����
��
��
ȭ
	
��
��L326'+"&546�d��0dL�J���J��L#3266''+"&5462d���0�0dL�J��J���J�J���3''&4766��0�����J�*��J��36&546�.��2����d��32+"&546!32+"&546��������� �� �dL�#!"&5463!2L�� ��� 346&5&546����0d�� *� ��;����O#72#"&5&5&5464646dd�1�2��N���:	��9	�	�>�	�=�,�L32+"&5&54646Rdd�0�L���;��;�d��H	#!"&762!2#!"&=46��	��	�*����9���Hdd���uJ		u��`��(������(&;��(J	'	7(���a���#���aa���32".4>#"#";;26=326=4&+54&��֛[[���֛[[�}d��d���[���֛[[���֛��d��d���2".4>!"3!26=4&��֛[[���֛[[�E���[���֛[[���֛�~dd��32".4>"'&"2?2?64/764/��֛[[���֛[[��	xx		�		xx		�		xx		�		xx		��[���֛[[���֛�	xx		�		xx		�		xx		�		xx		���$2".4>'&"2764/&"��֛[[���֛[[�T��w��[���֛[[���֛�1U��w���;K2".4>";7>32";2>54.#";26=4&��֛[[���֛[[�?<B2!�
�(#"3D<:�

�
�[���֛[[���֛�/O2*(8\6/H*	��
�

�
��>2".4>#";26=4&#";#"3!26=4&+4&��֛[[���֛[[���

�

�

KK

^

K�[���֛[[���֛V
�

�
��
2
�
2

2

��/_3232++"&=.'#"&=46;>7546+"&=32+546;2>7#"&=46;.
�
g��

��g
�
g��

��g�
�
Df�

�fD
�
Df�

�f�
��g
�
g��

��g
�
g��
�ͨ

�fD
�
Df�

�fD
�
Df��?2".4>"2>4&"/"/&4?'&4?62762��֛[[���֛[[����rr���rr�@||@||@||@||�[���֛[[���֛;r���rr���Z@||@||@||@||��02".4>"2>4&"/&4?62762��֛[[���֛[[����rr���rr�j���jO��[���֛[[���֛;r���rr���}j���jO���!2".4>"&32>54��֛[[���֛[[�Kt�rAKi���hst�r�[���֛[[���֛;r�txiKA��>r�tsS��6!2#!'&4'
&����F�
�����

�
&S��	&5!"&=463!46
����&�U
&
�U
#�#
�]�	#!+"&5!"&762��
�����

�
&�����&
�]�32!2"'&63!46&�#

�U
&
�U
#�����
&��]	&5>746
��^���$,[��~U�U
&
�U
#$DuMi��qF
��+!2/"/&4?'&6!"&546762R,^�j�^�!��^�j�^���^�j�^�P,^�j�^IIgg+#!"&546762!2/"/&4?'&6�j�^��^��,^�j�^`j�^,^�����^�j�^��/2".4>#";2676&#";26=4&��֛[[���֛[[���:#6#:1�

�
�[���֛[[���֛���.�
�

�
��IUaho276?67632;2+"!#!54&+"&=46;2654?67>;26/.'&;26!"&5)#!	�&�0


=

2
�p�p
2

=	��
�

3�5�3

���
�X
���

v
	
v
!{,	
2

�,�ԯ

2
0�y�

�
��
�

�r
w��
���+I6.'&&&547>7>'.>7>&67>7>7>�-Bla�b�D8=3�*U 	:1'Ra\�{�%&�=>8\tYR-!�q[Fak[)����ȕX1�"@&J<7_�?3J5%#/D	&/q!!6ROg58<'([@1%@_U2]r�O.>7'&767>.'&'.'&>77>.'&>�'
'8GB 

	`�H 
>JS>H7
'+"	NA
5M[`/Pg!;('2"&"IbY�C�e\D9$886#1%)*����J7gG: 
 8G\au9h�oK$�]54<<E"5cQ8	
.@AU!U�hQ)��j�F?Q2".4>&"&5476&2>76&'&6?6&'&'.��{nO9:On{���{nO:9On{���FZ
2Z_���_Z2Z��#		%8-#,-"F-I\b\I*I\b\I--I\b\I*I\b\I�9>|��|;7Es1$F^D10E^E$1u$/D0
"%,I����';L!#7.54>327377>76&'&%7.5476&6?'&'.P�[�vY,9On{�R=A �&/l�'Pj�R.Mv&6�QFZ
*HLh5)k�|#		%8-,-"xatzbI\b\I-y�R�U�4Zrnc�1�?1FrEs1<QA9
��n;7p$/D0
V,I���('6#!"&%!546;2!32+"&/&6Z�8�%��%
Y
�
Y�Ch�:#6#:d*!�� GD�K

K����d��(2'%/&=47&=4674L|Xk��d��d��k�X>����1)
���]@	��	@]�
)1ES>L�'+/37;?CGKOSW[_c3232!546;546;2!546#!"&5353353353353353533533533533535335335335335Rd2��2d��dddddddddd�|ddddddddd�|ddddddddd�2��222�p���dddddddddd�dddddddddd�ddddddddddw�%7&=#!"&=46;3546'#"&=463!&=#'73546o��������X����z�#���z���*����dX����zd�M�*����z��L!2#!#"&546d�);;)����d);;L;)��);��,;)X);dL�	?32!546!32!546".5!2>&54=��������(Lf���fL(,
'6B6'������p��)IjV\>((>\VjI),�	+'%!	!%'*����L�	'L�����'��a���'�M�	7	M����aa��'��a�Qd_�)!232"/&6;!%+!!"&5#"&?62����*�����������*���������p�&���032!2#!!2+"&=!"&=#"&/#"&468^&�d,!��02*��*�6��%�%+�*2222	
�*�L!53463!2!!��P�;),);�D��P�dd);;)���L3463!2!!���;),*:�,��P, �pX);;)�d�D�Ek�+32"/&6;#"&?62{����*����*������Y�D�k&=!/&4?6!546�������X`�)�	��	�)�	��	��	!.#!"!"3!26=4&53353��$�`$�-�);;)�);;��ddd��-(�d;)d);;)d);�dddd��d�L#12"&54%##"+"&'=454>;%".=4>7i**d�]&/T7���"L��R����Q�
���)2(Jf�,53232#"./.46;7>7'&6327"&)^Sz?vdj�O9t\U>/v?zS$24517F8�%M���)(
()�GM~ ��1==��7'''7'7'7'77 �N괴�N�-��-�N괴�N�-���N�-��-�N괴�N�-��-�N괴d��!-=32!2+"&/#"&54?>335!7532+"&546�2(<H(<�,�F=-7�`
1d�d���>2�vdd�Q,�}Q,d-��!2$'�$��(d���dw}�����L 0<32#!+"&/&546;632+"&546!#35'!5X�,�<(��<(21
`�7-=|��dd_�d�d22�L!��-d,Qv�,Q(��$�'$dd��d���ԯ�}wdO7G%6!2+#!"&5467!>;26&#!*.'&?'32+"&546dkn
T.TlnTj����:d%���8
	�V�Oddi�p
&yL�N��(�

%
H�	YS(22�S�����d�O6F#!"&'#"&463!'&6?6*#!32!7%32+"&546�n
����jUmlT.U
nJ�	
�%��&j��PddO���
�(SN�Ly&
p��d(��Y�����aL7G2#!"&/&?>454&/!7%.!2#!"&=46ސNS(�
��%
	�p
&y�22�S��Y��(���nTj����kn
T.T���8
	�V��d%��dd���-I!26=4&#!""&5&/&7>3!2766=467%'^��N�Ly&
p�

�(���S�22(SYLdd��jTnlT.T
nk�����V�	
�8��%d��%2".4>%&!"3!7%64��֛[[���֛[[������

�[���֛[[���֛�9�
�
�
�

�
&��%2".4>
6=!26=4&#!54&��֛[[���֛[[�%��

���[���֛[[���֛��
&
�
�
�
�
��%2".4>&";;265326��֛[[���֛[[�K�
&
�
�
�
�
�[���֛[[���֛�@����

��%2".4>#"#"276&+4&��֛[[���֛[[���
�

�
&
�
��[���֛[[���֛�
����
����2".4>%&277>7.'.'"'&65.'6.'&767>'&>7>7&72267.'4>&'?6.'.'>72>��՛\\���՛\\�d+:
=?1	""/?9
#hu!$
0E.(,3)(
	 	
*!A7,8
!?*

�\���՛\\���՛	'"r"v	G
	.&*
r$> #1
	

% 
*
	'"	
$g2(	%
��67'"/&47&6����PM<�;��+oX"O�\e��~Y�+"��n+We�`��#'7;!2#!"&=46#3!2#!"&=46!!!2#!"&=46!!d�);;)�);;���);;)�);;���);;)�);;��,�;)d);;)d);dd�;)d);;)d);dd�;)d);;)d);dddL�!2#!"&46!���|;����**�D�����d��%32!2!5#!463!54635#!"&=��);,);��;),;)��;)�);�;)d;)�pdd�);d);ddd�D�);;)���+AW!2"/&546)2/"/&4?'&6#!"&54676276#!"&?'&4?622,^�j�^5,^�j�^�/j�^��^��^��^�j�^�j�^,��^�j�^�&j�^,^��^��^�j��#;CK2".4>"2>4&$2"&4$2#"'"&546?&542"&4$2"&4��ݟ__���ݠ^^���oo��oo�--  - L-  73H3)z	��-  - -  - �_���ݠ^^���ݟWo��oo�� -!!-  -!
�$33$ 1~� -  -  -  -��Z��[%676&'&#"3276'.#"&477>32#"&'&6767632'."�[v_"A0?! ��-
	Y7J3$$
��)G"#A.,=
#(wn�kV8@Fv"0D�G([kPHNg8B�*��[eb�2!��5(7>B3$$'��)M"#!7)/c#*xn�fL@9N�D�H7!$�W]�B�$&dX�DD>.54>"".#"2>767>54&�0{xuX6Cy��>>��xC8Zvxy#!?2-*!')-?"CoA23:+1!
"3)@+)?j�DH-Sv@9y��UU��y9@vS-H-&65&&56&oM8J41<*.0(@	)*D*2Om9��w�.2&/7'/&477"/&4?��B�B8"._��{�i�BBi
	�BB��B�B�BB7._���B�B^*k"5._��{�j�B�B�Fi	�B�B��BB�B�B77/_�����2#!"&54>!"264��d:;)��);<f>X��V==V=�.2�G);;)�3-��D��=V==V��	"/''!'&462�*$������3�,#*���*#�������4�$*'	�2@K#.'#5&'.'3'.54>75>4.�&ER<,�
3'@"<P7(��d�W(�WJ.BN0 2Uh:**&	h)1"37�N,?iB$.,��
-<d>��MOW(kVMbO/9X6FpH*M�6&+��	 4C4%df��J2#4.#"3#>36327#".'>7>'#53&'.>761T�^�'<;%T)��-6"b �"S5268 jt&'V7	0$ݦ
-$a�P�N(?",9J0*	d2�>2
"�"�

7�Gd/9+DAL!X����32"/&6;3+##"&?62���*�����Ȗ�*,�����|������%#5##!32"/&6;3353!57#5!�ddd,����*����dc�����,�dd�|���d���d��d����!%32"/&6;33!57#5!#5##!35���*���X�����,ddd,�d,�����d��d�Pdd�d����L�32"/&6;3##53#5#!35���*���Xdd�dd�,�d,�����d�Pd�d����L�32"/&6;3#5#!35##53���*����d�,�ddd�,����d�d����d����32"/&6;3#53!5!!5!!5!���*������d��,d�p�d��,������������32"/&6;3!5!!5!!5!#53���*��� ��d�p�d��,d��,��������LL!2#!"&546!"3!2654&^������p���g�);;)�);;L���p��������;)�);;)�);LL+!2#!"&546!"3!2654&&546^������p���d�);;)�);;�o��L���p��������;)�);;)�);��$��LL+!2#!"&546!"3!2654&!2"/&6^������p���g�);;)�);;���$�L���p��������;)�);;)�);���LL+!2#!"&546!"3!2654&#!"&?62^������p���g�);;)�);;����p�$L���p��������;)�);;)�);��L5!2#!"&=463!2654&#!"&=46&=#"&=46;546&������p�);;)�>�D����L���p��d;)�);d��&��
���
���#%2"+'&7>?!"'&766763	�,����			P''��
K
�	�	
�S#���	�nnV/��L5!2#!"3!2#!"&546&=#"&=46;546^��>);;)��p����D����Ld;)�);d�������&��
���
��1!2/"/&47'&6#"3!26=7#!"&5463!��m��)�8m��);;)�);Ȼ��p����,��pm���)8m��;)�);;)��֥��������#2".4>"2>4&2"&4��ٝ]]���ٝ]]����qq���qq�{�rr�r�]���ٝ]]���ٝGq���qq���sr�rr�L�#3232"'&6;46!2!54635���
��'
��
	������gd����V�^�|��d22L�#	++"&=#"&7>!2!54635Gz
�"��'�����gd��M ��!����d22LK"	62"'&4?62!2!54635�q����������gd�q���#�����d22L�	#'762'&476#"&?'7!2!54635��*M�M���К�=���gd��M�L*����Л�:��d22L�#'/'7'&6"/&4?!2!54635^WЛԛ��L*�M�����gd���КԚ��PM�*M�X��d22����%	!	����q��3�g�q�����dL�+!#"&546;!3#53L��D���d�dd���p���,��E��/'&"!#"&546;!3#53"/&4?6262L��_		��Ȗ��d�dd�j�\�jO)��_		��p���,���j�[�jO)
�>'.!#"&546;!3#53"/"/&4?'&4?62762Lg�%�������d�dd�F��F)��)F��F)��)��g����p���,���F)��)F��F)��)F����/!"!#"&546;!3#533232"/&6;546L������d�dd�d��*������p���,���������/'&"!#"&546;!3#53++"&=#"&?62L�*���n���d�dd���d��*�p����p���,���������L	!2!546#!"&5!52L�P���d�L�����&����}��-1;&=!5!546#"&=46;#5376!!/&4#5;2+����p��/22�dd�����p��ddd33��*��Ȗ��d�����Ȗ�*y�dd��Q%6+"&5.546%2+"&5.54>323<>3234>^%�"%��
�"

d	d	1t���5gD�
�>?1)�A�..@�

��^

��^
d�L3"!5265!3!52>54&/5!"!4&#5�"2�pK�K�p"2�K�KL8
��88
%��v%
88
x88
%�v�%
8LL $(4!2#5'!7!!2#!"&546!55%!5#!!'!73�wi���pdw�%,);;)��);;),��p��,���d��d��i��bb�d�;)�);;)�);d���������f�dd���&767>".'.7�.�wf��w3��
.1LOefx;JwF2��1v��ev�/� 5Cc;J�|sU@�L#A2/.=& &=>2#!"&=46754>���ud?,		����
1;ft�pR&m��m&L!(("

�""��""�
'$+ ��

2��2��2/2
!��
'!'3353353!2+!7#"&46!2!546L������������J��L�P���������*dd*��22d�L	#"!4&#"!4&!46;2�d);,;gd);,;���;)d);L;)��);��;)�D�);���);;)���L%)!2#!"&546!#3!535#!#33��|��|�D|���������,�d��ddL�|�|��|�|��D��d��dd,d��d�d��,���L%)!2#!"&546!#5##3353#33��|��|�D|����dddddd�d��ddL�|�|��|�|��D��������d��d�d��,���L#!2#!"&546!#3!!#3!!��|��|�D|�������,����,L�|�|��|�|��D���d�d��d����L!2#!"&546!-
��|��|�D|������,���L�|�|��|�|��D������,���L )!2#!"&546!!!#";32654&#��|��|�D|���d�D�d�&96)���)69&L�|�|��|�|��D����dVAAT,��TAAV���L%)!2#!"&546!#3!535#!##53#53��|��|�D|���������,�dd��ddL�|�|��|�|��D��d��dd,��d�d���L#'!2#!"&546!3!3##5335#53��|��|�D|����D��dXdd��d,ddL�|�|��|�|��D��p��d����d���L"&!2#!"&546!#575#5!##53#53��|��|�D|�����d��,�dd��ddL�|�|��|�|��D��p�2Ȗd��d�d		��%2".4>"2>4&!!!'57!��۞^^���۞^^����qq���qql��,��dd,�^���۞^^���۞Lq���qq�����dd�d		��'+2".4>"2>4&#'##!35��۞^^���۞^^����qq���qql2ddd�d,���^���۞^^���۞Lq���qq����d2d2dd�ddd���A 62632+54&#!"#"&5467&54>3232"/&6;46�n�,,.x��x����PpVAb�z�
�

�
&
�
�Awa���sOEkd�b��
����
���A32632&"#"&5467&54>++"&5#"&76762�n�,+.y�xZ��
%
��	OqVAb���
�
�
�

�Awa�xc�h��sOEkd�c�����

�dLm%5!33	33!#"!54&#������Ԫ����2�dd,,M�����d22y7�/2#"'2!54635#"&547.546324&546X^�Y{;2	iJ7-��-7Ji/9iJ��qY�Z=gJi�22�iJX5Jit�'��*BJb{"&'&7>2"3276767>/&'&"327>7>/&'&&"267"327>76&/&"327>76&/&�oOOoS���SoOOoS���=y�"
$GF`
	Pu
"Q9	�c�cc�cVQ:	Pu
"�GF`
	y�"
$�o���oSWWSo++oSWW"�y	`FG#
�uP
	:Q#�cc�cc:Q#uP
	$`FG#
"�y	d��"!#5!!463!#53'353!"&5+�,�����
?,�d��Ԣd��u
�
� �����
�������
���
d��	!!	463!#5##5#7!"&=)+5�,����
?,�>�d�Ԫ��
|
� ��^��G
���|���d
77
P��#3!#732!!34>3!!��dd�Ԣ��!,���d!s���,� �d,��+$d���$+�p�p�LL293232#!"&=46;54652#!"'74633!265#535�d2��2s);;)�����;)X>,>X�����L2dd2��;)��);�FD);�>XX��Ԣd�d�L6=3232#!"&=46;54652#3#!"&54633!265#535�d2��2s);��!��);;)X>,>X����L2dd2��;)���$+;) );�>XX��Ԣd����	#!"&762#";2676&35�} ,�, }@D�:#6#:�����&77&P'�L��.�dd	LL/?O_o�32+"&=4632+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=46��

�

�

�
��

�
��

�
��

�
��

�
��

�
��

�
��

�
L
�

�
��
�

�

�

�
��
�

�

�

�

�

�
��
�

�

�

�

�

�
�)33#!2!&/&63!5#5353!2+!7#"&46!2!546�dd^>1B)(��()B1>^dd�>���J�
�L�P��dO7�S33S�7Od�d�|*dd*��22�+52#4!!2!'&63!&54!2+!%5#"&46!2!5460P9�<:H)"��Z�"
)H����J��L�P;))�%&!��!&��*����*��22��$.2"&432!65463!2+!7#"&46!2!546
�jj�j�."+'��'+#���
��J��L�P�j�jj���9:LkkL:9�r*dd*��22�,62"&5477'632!65463!2+!7#"&46!2!546X/[3o�o"�o�"."+'��'+#���
��J��L�Pk�6NooN>Q�o��
9:LkkL:9�r*dd*��22�",!!.54>7!2+!7#"&46!2!546X,��%??M��<=Bm�J���
��J��L�P���9fQ?HS�TT�vK�~*dd*��22��)2!546754!2#3#3#3#!"&546/R;.6�p6.d�6\������uS�pSuu;)N\6226\N)�G6.dddddSuuS�Sud��LL/3!2#!"&546!2#!"/!"&4?!"&=46!'���|�

���
%
X��W
&
��
�dDdL���D
2
�
%
XX
%
�
2
ddd�L#-7!2#4&+"#4&+"#546!2!46+"&=!+"&=� Sud;)�);d;)�);du�);�P;�d�dLuS�);;));;)�Su�;)��,);�2222��
	!&4762	!2!546������  'Y��V/��� �|��UY�Y(�n��0U�22�!�/.#!"3!26=326!546;546;33232!�'�p'�q*}���20�/2�������22,��2��
"!#!5463!#5!#!"&5463!#5�,
����
w,��,
�v

w,� ��
O,T
�����

�
�����dGFV32676'&7>++"&?+"'+"&?&/.=46;67'&6;6#";26=4&��K�jIC


)V=>8'"d1*�)"dT,�|-o�tE�

�
GAk�I
! "%,=?W7|&�F@�Je5&2WO_e_
2

2
����~	$4<Rb%6%32!2&'&#!"&=46#";2654&'&"2647>?&/&6%?6'.'.��. ��+jCHf7�"	*:��>XX�P*� �@--@-�� -?0
!3P/|)�(	)f!%
=��&*
x�"6�2&�CX>�>X�83D�-@--@�ۂ
# �=I+E(	/�/}X&+	5!H	d9�Q`o322#+"&=#+"&=#"&=46;#"&=46;546;23546!2>574.#!2>574.#q�
Oh ..40:*"6-@#
�
d
�
�

KK

�
�
d�))��k))�
m!mJ.M-(2N-;]<*K

KK

K
�
X
�
K

KK
���
"�p�
"��),!2#!"&'.546"!7.#�Vz$�R��R�(z �}VG+�0� )IU!���zV�`3�BBWwvXZ�3�Vz�&--%��,(1#����32#!"&546+"&=ۖg�T)�>)T�H6�6�g�)TT)�g���66���33#!"&546+"&=�`��T)�>)T�H6�6���B)TT)�g���66�	%'5754&>?'	%5%����Nd��d/��\����^^���<�ǔ�Ȗ�

(A�b�����d�� 2"&4$2"&4$2"&4�|XX|X�|XX|X�|XX|X X|XX|XX|XX|XX|XX|��L2"&42"&42"&4�|XX|XX|XX|XX|XX|XLX|XX|��X|XX|��X|XX|ddLL/!2#!"&=46!2#!"&=46!2#!"&=46}�

�J

�

�J

�

�J
L
�

�
�p
�

�
�p
�

�
��/3!2#!"&546!"3!2654&!2#!"&546!5^��������);;)X);;����G�����������;)��);;)X);d��,d��dd�L;!2+32+32+32#!"&46;5#"&46;5#"&46;5#"&46��222222�222222L*�*�*�**�*�*�*,��
*.62"&%#462"&%#46"&=32�W??WW??��|�|���|���|�|���|��*(�C��BB�����|�||�|��԰|�||�|��Ӑ������B76+2+"47&"+".543#"&'&676/!'.6�E*
'?)��
T��0I'*L
#3�{�,#
n��
6F82 ��*<SC#

(#(��(#��%C#4.+!52>5#"#!#4.+3#525#"#5!�2&�2�p"�&2�D
d
�2d
�� ��dd	R ,�
�W
22�
�L� 05"'./#!5"&?!##!"&=463!2���E��	1;E%=
!'��y���,2 "
�#	22+.��"A2�V����dd��GJ!2#!"&546#"3!26=4&#"'&?!#"3!26=4&'"'&'#&#2L��FF
��&	7

?
99���g���LR� 
22��22$����#'!5!!2#!"&546)2#!"&546!��P�����pm��pG,Ld��|��p�d��,��#'!2#!"&546!2#!"&546!!5!2��pm��pG,�P���|���p�d��,��dd��'+!235463!23##!"&=##!"&546!2�d�dd�pd�p�,�����d���� ���,��'3#3!2#!"&546!!2#!"&546ddd���pG,����|�d�p�d��,��p�dL�'+32+!2#!"&5463!5#"&546;53!X����|^��d�,L�pd�p�d�d��,��'!#3!2#!"&546!!2#!"&546�dd�v��pG,����|�d�p�d��,��p�,0o�	#"&54632a��5���*A2�~	6'&4O�**�{�)�)�*2A~�!2"'&6d�)�*��*��*2,~o	#!"&762{�)�)�*a�**��(
5-5!5!��L��c��� �������d��1#3!35#5!34>;!5".5323!������,�P2&d2�"d&2���dd,dd� ��dd	& ,L�%1#4.+!52>5#"#!#3!35#5! 2&d2�p"d&2 ,�����,� ��dd	& ,��dd,dd�frJ32	+"'&476��
�0�
�
�)�
J�0�0	��	>f�J32+"&7	&6S�
��)

�
�0
J	�)�)	��f�Jr"'&=46	4	�)�)	��w
�
�)�

�
�0�f>J�	'	&=4762j�	�0�0	��)

�
�0
�
���=�:#463267>"&#""'./.>'&6�|��Vd&O"(P3G*+*3M,
:IG79_7&%*>7F1�
�|�|���5KmCKG\JBktl$#?hI7 ����!2+&5#"&546!5�X����,��p��	��ddd�L�!2%!#4675��'=�DX�Dd
d�Q,�[u�}�4�]ddMo�__<���vs��vs��Q������Q�����(���d���p���E���HE�d�{����������������	�d������������&�n����d��d��d�����d�������d��d���������d�����5�d������!���������������u����
����������������,�d���;�������������������I����]����������d����d������Q����E������J��������a�����������d��d9�'d�ddd����������������		���dy'ddd���d�����d��d�dd,��d,A22�>ff���****���NNNNNNNNNNNNNN�"~���Fn��2b��\�r� b�b�	6	�	�	�
(
L
�
�0��X
*
^
�h�(��T��*v�
8|�t�*�<��6`��R�.j����(h����6h��^�2��Dl���.v�b� F �!2!v!�"@"�"�##"#8#z#�#�$$0$^$�$�%4%`%�&&~&�'P'�'�(4(p(�)�)�*&*J*�+
+z,,h,�,�--�-�.(.f.�.�//F/~/�/�0>0�0�11`1�1�2$2^2�2�3"3>3h3�44`4�4�5,5�5�6>6|6�77N7�7�88B8�8�9
9J9�9�::l:�:�;�;�<<P<�<�=2=�>:>�>�?(?n?�?�@H@�@�AA~BB�B�CCBCvC�C�DD`D�D�EZE�FFtF�F�G6GvG�G�HH2HNHjH�H�II8I^I�I�JJ.JR�@.�	j	(|	�	L�	8�	x6	6�	�		�	$	$4	$X	�|	�0�	��www.glyphicons.comCopyright � 2014 by Jan Kovarik. All rights reserved.GLYPHICONS HalflingsRegular1.009;UKWN;GLYPHICONSHalflings-RegularGLYPHICONS Halflings RegularVersion 1.009;PS 001.009;hotconv 1.0.70;makeotf.lib2.5.58329GLYPHICONSHalflings-RegularJan KovarikJan Kovarikwww.glyphicons.comwww.glyphicons.comwww.glyphicons.comWebfont 1.0Wed Oct 29 06:36:07 2014Font Squirrel��2
�	

� !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

glyph1glyph2uni00A0uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni202Funi205FEurouni20BDuni231Buni25FCuni2601uni26FAuni2709uni270FuniE001uniE002uniE003uniE005uniE006uniE007uniE008uniE009uniE010uniE011uniE012uniE013uniE014uniE015uniE016uniE017uniE018uniE019uniE020uniE021uniE022uniE023uniE024uniE025uniE026uniE027uniE028uniE029uniE030uniE031uniE032uniE033uniE034uniE035uniE036uniE037uniE038uniE039uniE040uniE041uniE042uniE043uniE044uniE045uniE046uniE047uniE048uniE049uniE050uniE051uniE052uniE053uniE054uniE055uniE056uniE057uniE058uniE059uniE060uniE062uniE063uniE064uniE065uniE066uniE067uniE068uniE069uniE070uniE071uniE072uniE073uniE074uniE075uniE076uniE077uniE078uniE079uniE080uniE081uniE082uniE083uniE084uniE085uniE086uniE087uniE088uniE089uniE090uniE091uniE092uniE093uniE094uniE095uniE096uniE097uniE101uniE102uniE103uniE104uniE105uniE106uniE107uniE108uniE109uniE110uniE111uniE112uniE113uniE114uniE115uniE116uniE117uniE118uniE119uniE120uniE121uniE122uniE123uniE124uniE125uniE126uniE127uniE128uniE129uniE130uniE131uniE132uniE133uniE134uniE135uniE136uniE137uniE138uniE139uniE140uniE141uniE142uniE143uniE144uniE145uniE146uniE148uniE149uniE150uniE151uniE152uniE153uniE154uniE155uniE156uniE157uniE158uniE159uniE160uniE161uniE162uniE163uniE164uniE165uniE166uniE167uniE168uniE169uniE170uniE171uniE172uniE173uniE174uniE175uniE176uniE177uniE178uniE179uniE180uniE181uniE182uniE183uniE184uniE185uniE186uniE187uniE188uniE189uniE190uniE191uniE192uniE193uniE194uniE195uniE197uniE198uniE199uniE200uniE201uniE202uniE203uniE204uniE205uniE206uniE209uniE210uniE211uniE212uniE213uniE214uniE215uniE216uniE218uniE219uniE221uniE223uniE224uniE225uniE226uniE227uniE230uniE231uniE232uniE233uniE234uniE235uniE236uniE237uniE238uniE239uniE240uniE241uniE242uniE243uniE244uniE245uniE246uniE247uniE248uniE249uniE250uniE251uniE252uniE253uniE254uniE255uniE256uniE257uniE258uniE259uniE260uniF8FFu1F511u1F6AATP�PK!��K�vvfonts/icomoon.ttfnu&1i��0OS/2e�`cmap�r�x\gaspxglyf_.��=|head�|�>�6hhea
�)?4$hmtx�{t�?X|locaP��Y��maxp��tT name�J	�tt�postu� �������3	@�6���@�@ @ �c�6���� �������� h��797979���%5EQ]!2654&#!"&5463!2326=4&#!"3!2654&#!"#!"&5463!232654&#"32654&#"0�		�@		�			�`$`���	��		`	��



�



@			�		�		��`������		�		��






��@�-1AK7265463!232654&#!""3!2654&#!!!"3!26=4&#!"&=!p			%�$	g		�		�����	6�5	"�`!�	��		�'$�	�	�@		�	�@��	&.5 	0"
����(8<LV7!326=!2654&#!"463!2#!"&57!2654&#!"!!"3!26=4&#!5463!200		0��	�		��	P		�		� @%	�	% �``�0		0��@�		�@		0	@		��	@���%0		.&B �� �/3?!2654&#!"463!2#!"&57!2654&#!"!!32654&#"0��@	�		�@	P@		��		 ��



@��`�		�`		p	�		� 	�@`


��`�/3?M!2654&#!"463!2#!"&57!2654&#!"!!32654&#"32654&+"0�			�	0�		�@		��`�



0�		�		@��`�		�`		p	�		�`	���`


				���&,>LZhv�!2650450&54&'8581.'*1&"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"0���@�̼� 	��	�`	��		�`		�		�`		�		�		�		�`		�		�`		@� �`���	�%�p						�								��				�				��@� &9GUcq������7!265<14&14&/.#0&#0"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"3;#!"&=4&#"3!265<14&14&/.#"4#0"+"3"&=32654&+"32654&+"32654&+"32654&+"0@������	�`	p�	��
p�		��		�		��		�		�		�		��		�		��		'��	��
		@��		�	���		�		�		�		�		�		�		�		@`���I�	�	���		 ��				�								��				�				`���		 		 `�		�	���				�				�				�				���AMS���!26=041>7326764/>54&'04150450&54&'8581.'*1&"#!"3#"&54632#"&5%463!;.#"!"3!!"3!!"3!2033267#!"&532654&+"!2654&#!"0��$5+��@gIIggIIg��̼� 	��),M��		1��		��		HN,)	�`	��		�		�		�`		@���N-7\P �`�IggIIgg���	�%0"		1		1		#�		�				�				����-O_iw���!2654&+";2#!"&546;2654&+"2654&+"3!2654&+";!!26=4&#!"'!#!"&5!2654&#!"7!2654&#!"!2654&#!"!2654&#!"0 �		����		��		@		�		@		0���@#	�`	#���`		��		`		��		`		��		`		��		@�		���		��`			�					� �@#�		�#����				�				�				�				��>�+/?CQ_m{������%2654&#"#"&54&#"!2654&#!"!!!26=4&#!"7!!!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!2654&#!"!"3!2654&!2654&#!"!021812654&#"#"&54&#!"!0!"&5�#					(�@		��		 ��		�		� �		@		��		@		��		@		��		@		��		@		��@		��		��		@		��@		��		A\L66L�]A�		�[6L #P		��	P		��  	 		��	 ��	�		�	�`�				`				`				`				`				 				@				 				�]AP��6LL6P��A]�

L6B	��`�'1?M[iw��2654&#!"326=46;#"&=4&#"3!2#!%4&#"32632654&+"732654&+"32654&+"32654&+"732654&+"32654&+"���		��		���0@				���		�		�		�		�		�		�		�		�		�		�		�		@�%		%�`		���0@		��		W				�				�				�				�				�				�� �-=KYgu���������!".#!"3!2673!2654&!"&5463!2%#!"&5463!2"32654&2654&#"!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&��

�

���H�P				��				'��		�		��		�		��		�		��		�		��		�		��		�		9��		�		��		�		��		�		��		�		��		�		��		�		�����@����	��		@	��	@		��	�				�								��				�				�								�								��				�				�				��@�-7GKYgu���"#!"&54&#"3!2654&!"3!26=4&!5463!22654&#!"3!!!2654&#!"!2654&#!"!2654&#!"32654&#"32654&#"32654&#"0		� 			�	'� 	 	�	�	�		�`		���0�		� 		�		� 		�		� 		��



�



�



�	��		�		���	@�		��		��			�	� �				�				�				�










	��@���������4&#"#!"&54&#"3!26";326=3326=3326=3326=32654&+532654&+54&#"#54&#"#54&#"#54&#"#";%#5##5#3#32!546;2654&+"3!26=4&+"#2654&#!"354&#"32626=4&#"@			� 			��P		0		�		�		�		0		00		0		�		�		�		0		0�� �����	�		�	 	�		�		��		P								`		��		`		��		p		pp		pp		pp		p		�		�		��		��		��		�		����������			�		�						0�		�				�		�	���� �+Y{"3!2654&#"#!"&54&%!"3!2654&&"?326?326=4&5.'"&+";?32676&/>=4&#"	�			��		���		@		�d�
���		�		y��
���		�`	�� 		��		 	`				���
���y		�		��qq
tS		St
���+7Gdx!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>3281!'.#81"'&!0��`	�		�`	p&&&&


�
�		� 		��|Z�@�Cp�-��@��`�		�`		@&&&&`



�	�		��	 ���ub}`�LI		j���� �+7Gat�7!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>32!'.#81"'&""3!2654&+";2#!"&=4&0@��	@		��	 &&&&


�=�		�@		��|:�`�#p�-�	@				��		@ ��P		��		�&&&&`



� 	`		��	 ���uB}@�m(		k����	@			��			����(ADR`n|���������#"3!2654&#46;#"&!+32&"3267%>54&'%#";2654&'32654&+"#";2654&#";2654&#";2654&#";2654&#";2654&32654&+"732654&+"32654&+"32654&+"32654&+"32654&+"#";2654&�@����������Y	 ����@		@		G@		@		G@		@		@		@		@		@		@		@		@		@		Y@		@		@		@		@		@		@		@		@		@		@		@		G@		@		��`��0��@��@��`���������D�				`				�				�				�				�				�				`				�				�				�				�				�				`				��@�H\����#"&=4&#!"+";2654&+"&5!32>54&'!+";2654&".54>32".#".#!546;26=463!2;226=4&+"326=46;2"32>54.".54>32��.A?��F:0�!//!�		�Aq�VV�qA�		�!//��O�i<<i�OO�i<<i�)L`o<<o`L���9(+5?2.'9��	�			�		w<hO--Oh<<hO--Oh<5]F((F]55]F((F]; BC >/!��!/		�%P+V�qAAq�V+P%�p		/!@!/��<i�OO�i<<i�OO�i<@3S;!!;S3�G -0 G�	  		 		 	�-Oh<<hO--Oh<<hO-��(F]55]F((F]55]F(��@�SWay��#54&+";2#4&#!"#546;2654&+"#";2654&+"&=!+";2654&!!463!2"!54&#"3!2654&732654&#"32654&#"P@		@	�	� 	�	@		@P�		�		�		����@��	�	��	�@			�		�



�



�p			p0		��p			p�@			pp			� ��0		��@	��		�			�






��@�7AKi"#!"&54&#"3!2654&!"3!3!26=!26=4&#!"&=!%!5463!2"326=463!2326=4&#0		� 			�	'� 	�`�	�<	��	���	�	��			`			�	�`		�		�`�	@�	pp	���		p �		�		�		�		�����;Nav"#!"&54&#"3!2654&26=4&#!"326=463!2!"32>=4&#".=463!2267265.#"'&�		��			`	�y	��			`		g��h��ts٩g^��qsѡ_	`	��.	1\1
	3�	��		�		���	�	``		`		`	@�!I>((>I!��<8''8<�		�0
	
����&��26=4&+'.3:7%7>/32"32#!"&=46;26=4&#!"&546;3:7%>'.0"#!"3!26=4&#"#!"&53!2#"3!26=4&32654&#"	V�/�+K
�		��	�0""�`	C�}�+55+�		�0"!���



�	5:��4	5	�		��	�"" �5+�@+5�		�"v
����


��@�+AW���"3!2654&#!"&54&!"#!"3!2654&3!232654&#!"%"3265463!2654&#!>764'&"4&#".'.7>7>'.!"3!3267>732653267>76&'.'!2654&#%>32>"'&47>70	@		��		�		�`		�	�)	�			�`	�			@		��s
$$#j#
		)r

$		S'�n		+	$$--
		)q
$		R'�		��
""
r&bNr&�	��			�		��			�	�		��

		��

			�a	%f%##				�Y=* 
*76	

%f%	��		
>* 
*75
	�

L-l��L-l����/@P`#>54&+"#>54&+"3!2654&+"#"&546;2#3"&546;2#+"&546;2@f�f� ��`p		�		�		�		�	�		�	p����``����\	`		��		�		�`	���		�		����CGWg2654&+54&#"!54&#"#";#";3265!326532654&+!!4&#!"3!26%463!2#!"&�		�		��		�		��		�		 		�		� �� `����@	�		��	`		�		��		�		��		��		��				 �� ����`�		�`		���%GT4&#!"3265463!2#!"3!26"3!265732654&#!";#!"&5463!�`			�		��		 �0�			�		��		�		���		 		�`			D���					��			��@�+AWgk#"326=46;2654&!#";2326=4&"+";26=4&!";2654&+"&=4&%26=4&+"373#�			�		��		�					�		�	��	�		�		�		�		����		�						�		��	�			�		�			�	�	�		�	�����BFLQ[e!2654&#!"463!2#!"&57:3%267>5764/&"013'#5%';62'0��`	�		�`	`@Cu�)x��e�"��7KN��I���$�@	T��W��l�@��`�		�`		A`Fu*�x����v!��
&M��K���@%�V	FQ��l��� �+7CO[gu���!"3!2654&#!"&5463!2"32654&"&54632"32654&"&54632"32654&"&54632'2654&#""326=4&"32654&2654&#"�`,,�,,�`��&&&&


�&&&&


��&&&&



								�				�				�,��,,�,�@�p&&&&`



�`&&&&`



&&&&`



�	 		��	�	`		`	`	�@		�	��	�		�@	����EU_"3267>767>54&#"'.'.#"&'.54&#%54&#!"3!26'!5463!20		#hhXVef#
		
%smORpu%
	P��	`	 ��	 	�	�bO_YY_O	�		�b_jUUj_�	P��		�			������47o�����4&#!"3!26554&#!"3!26=4.'>!#0&1'54&#"01#54>7>54&'.=!7!"3267>7>764'.#.'3!2654&#!"3"326=4&'"326=4&�
�~

�
!	��	(;CE:&	@	)<CE:&����D@.I�		�I*=ED@. *=EZ��P,'L�$?�<���

�~

A								�				�t		t;dP;<Pa:t		s;dP;<Pa����6Ld;c�		�d9`L85Lc<dd9`L8�1B	>+	�3!.��				�	 		 	`	 		 	
����2;?CGKPZd"#"3!2654&+54.4>32#54&#"#)54632#7!#7!#73#7#53!"&=!!5463!2�BuW20!//!�!//!02Wu��-Oh<<hO-`qOOq`���^BB^נ��R���R����ɠ��	��� @����2WuB`/!�@!//!�!/`BuW2��<hO--Oh<``OqqO``B^^B��������������PP����
Yd|�"32654&&"#!";32654&#"&'.'332654&#"&'.'323267>54&'46;#"&5.+"&#81"+!2>72654&#"�				@	$b��z�D#11#m/$`=		6U(`3 		(�z��c$��ll@&g��{�k0{��f%�p				�	� 		�	'F=*2$��#1n/$$		(a4		'
*>F
��{V�@�G=)�)=G��	V		��	��`�I"676&'.5>73267>54&'.'&4&#�k�j6Rrz(
0vhG8`�X	��u-Y�Y
KuR1`�� 	�3>5��f�zSQs�\;	13*�0		H��|@-84		
*0+��k�yK�	��/�
iv��2654&#!"3!"32676&'.'&67>;326=4&5>5323267>76&'.#.5!"3!26=4&#!5463!20		��		 ��OQ
+4631)
M60DXU		_cM06M)3476+QOPI^YOS@�@%	�	% �``�				 -K) C?52;?";��Q[7P		P	7[Q0;">?6:BB)K-��IuU44TuI0��%0		.&B ��n�o}!"3!23265..#!!2!0&'.54&#"30:1267>'.'>76&'.#!"3!23"#4&#"326���		`*		!
��P"k�E		&���	%-)

),&	��

.1''2-��				�	� 	"		�;��-��
			AB9
AKH			SR=
4HK���		� 		���Xr���833:7%23267201%>'.'&"?.%54&#"6&'&%676&/&"3267>54.#"2.54>4&#"326"&54632(\\ ��
���==��		��=
=���
�� ]R`O*Id99dI*O`R3X@%=QPOQ>%@X�T<<TT<<T�.BB..BB>^^�
0Y
O���
�VX

XV�
��O
Y��
�S��Y9dI**Id9W��T�%@X3I�yWYx�H3X@%�<TT<<TT4B..BB..B��`�z�4&#"#"3267>32#"&'.#";>54&'.54632326=>3232654&#"#"&'40154&+8#.5467>5:;23267>32#"&'.#"+.5467>54&#"#"&=>3232654&#"#"&'546;029>54&'.54632�MTJZ	
�8U)GH'V7�
G<;G
~4A

" 5XP0 (	
B3~	5~*+!	,4E(	!),~
	NTIZ	�)D	
' 4[\4 &	F'�
I;;F
C/NE8!"
M3w
	B>?P	�6S	*33*	I9�OMSM
s:L
"!8
@&t 	F:@<
�$>	
"!.OE8!"
	A(�
aNNR	
w*6
	*33*	��@� .?M_p����!"3!2674&'.#!"&'!%2654&#"#023>'.!2654&#"3:12676&'&267>'&"&32676&#";2654&!2654&#!"!32654&+"�`�`����{w{��				�	 
	 	�				�	 	
 	���
0��
�� �		�		�y		�		�g�		�		�	#$���L	 		��	
 	
��	 		��	 
	��

`
��|��
`
��				 								����?ES&"3!2654&'>7>323267%&"32676&'%!62%!2654&#!"�(��Z��'�q���
*����q'3���a 		��		�

����^;�����i
	��9�
�L�Hc�				����
3BYe4&#"32654&#"3263!26=4&#!"01!"&/7>3.#!"3!26?>54&'%!2#!5�				��rp
�

�E
��Eqr��
�E

�
r���qr�D00	��		�"		"		6ZX	�	�WZ�Q	�	ZHWZ���_�38FPb��.'&"3:?3:373:7%>764''7%'81'81'7%'041/%.3263>'#"326?3326=33267>/54&##546;2o����0������$�.�:�L�Xa��5����`%��I		I��% �`v�yosVC����WioQ;�o�?(3��vB� �j%*�
��		��
�(&` ��@��2>J����?>03261>?>?6326?>/.?>?>70654&1././&6?6&/././.'0&#"1&/&01'46146?>?6&/&4?>?>?>30632126?601#"&#'.#0#"&1"&/./.#"&/.?>/./.50&52654&#"2#"&546+"012?201:326?46?2?>/46?>3267067>16&/"&/46?>/."&/.754&'0&'.1*#""&/.7>/<1732637>?>30301?:121001#"1/.#"##10&'.#0&156&/.#"*3'0617>/4&/.5067>506132672654&#"72#"&546v
-	&
I
	


	I	&	-
S

S
-	&
I
	

	I
&	-
S

SVT-%	I	I	$-
TT-%I	I	$-
T�IggIIggI<TT<<TT<

4*
:

	
) 	<

4*
:

	
) 	
*	
		9*
	4<

*	
	9*
	4<
�(88((88(&&&&		I
&	-
S

S
-&I
	


	
I
&	-
S

S
-	&I
	

WI	$-
TT-%	I
I	$-
TT-%	I
�gIIggIIg@T<<TT<<T&

	)
 	;
	4*
9

	)
 	;
	4*9
8*	4<

*	
	

8*	4<

*	
	
�8((88((8�&&&&���Ew��267'32>54&'7>=3023>75323:7>5<=4&+".#"3267>;2#"#"#".54>2654&#"72#"&546�k���JtQ+�``
|	�Z*CwY33YwC'�|	p	p	�&IiB=kP..Pk.BB..BB.!//!!//�=��
��5Vm8 BI�
����3YwCCwY3lw	�	�	�LB&2bM/.Pk==kP.�4B..BB..B�/!!//!!/-��>�X267>54&'&67>'.7>7>3201227>54&'.#0"1"3�0b$*z+�b�!\!��+�5jJ**I�#� U11V��!!8<-%%55*+�O�! ))��+05<! ?sI+*J��V11V !�� LMI������:r�2326?>54&'.#"01"7>'&6?>32'&>'.#"&'.546?>656&'&302126?&"326764`6�45��)(�0	|	�)(�0	!@�56���P���65�F$6�()�	�I&8�()�	�65���P�
��@�1=Iav��!"2?>3!2"/&"3267>54&#4&#"326'4632#"&%"3267>54&#!"'&47>3!2"32654&"&54632��%*
*
@	�=U
U	
�/%&&%`



��%�@
N

���Q�>���
@�&&&&


�++	��	�AU
U�&B�&&&&


-�<(���&B0��	�AM�	0&&&&`



����q��"0232676&'%.75045.'.'.54>32"&"1'&27>75<54015467241>54.#2676&'%&:&:32676&/`?~e>?>-��0999[r:;sZ8J'1��
	-@?=d~A�	���	��1[�RP�31%	98
/40zHJwS,,RwK_r!5/ 
%15�RS�[0�P::/.���2d�%&"3267%>54&"'%.5467%>32&"'%.5467>'.3267%>54&'&"'%.5467>'.3267%>54&'��&o&��q00q&��^��r((r
��[��
q00q
��[��
q00q���! �

� !T��	�				�	{
		��		
! �� !�	��	 !��! ���?DINWe3!:7>781401>7<14654&5405.'0&#'&"3!"7	777326=7%46?>'.5	�e��w)�u#��	����%�N��!7XT
@W��U�l�l/	6$x�

u��@
��@$�%�N�Kd�!��
�	V��Q��l�l����E�������0326764'.'764'&".'764'&".#.?>02764'.#&&".'&"33126?>/&"#81"&'0&'764'&".'764'3:3%267>57>54&/&"01'#5	';62'7 7M-23%st�
5L.
.K61��3

-J5
����tt%3�J@#u�*x��e�!�7K�M�	J|����H@	T��W��k�l26K.

33%tt�
!:N/
.N:!���3

,L8 		�,���ut%3�`&u

�x����R!�
&�N�Kl��@�zV	FQ��l�l����M����>5.'&.#"26?>3267>'3267>'.'""/&4?2?#"&'&'764/&&67>3267>'&67>"'&"38126?64'&"'&"326?326764/764''7�7x+(�� )L*p1o*&E(q )L*p0p�0*]@#
��$ V)^1*]@#
�# V)^���A
-��@-�`@`��KI)I�+)u6��+v7p2p
	)u6q,u7p0p�0_*T ��
.j$ 
_)3_*T �
.j$ 
_(��@��0(@��0p`@`��4I)I	���=Vbn���%2654&#"72#"&54632>54.#"&'4&'.	32#"&'.54&'.'32654&#"#"&546323267>54&'&67>'.#"3267>5467>764'&"#"&5463267>7732654&#"0.BB..BB.!//!!//�\D,N:" 9O.jR�
Ej}9<S�.�aqOgkK:L	ZB3tcF%B..BB..B�/!!//!!/t*WF,	��
@-AN��2.O9 ":N,D\

	 L:KkgO$:
� B..BB..B�/!!//!!/#N<<":N,,H5Lt��m,0M$�
S^IKk23G$/X3)b~�d�
.BB..BB.!//!!// 
'az�^��
VO�kU�	5H,,N:"<;_ 2J31kKI^
>

����6;E|3267.#!";21'"32654&'4&'.'.5463!!5!2!>830#"&54674016417>54&#81#"&'5!+"�$$��$$�	:
6,,7#*�3���!>��d%%G���<1 $&$$��$#?@

4??4		
6G"~~b��%��55GD0!CC9M=���3J^r�"326733267>54&'.'4&'>54.	"'.5467>32%".54>32"32>54.".54>32PE{[55[{EAt-E			

		

	��,E)/5[{2		����?oR00Ro??oR00Ro?2WA&&AW22WA&&AW2+L8!!8L++L8!!8L�5[{EE{[5/)E		��	

		

	E-tAE{[5�f��		0Ro??oR00Ro??oR0 &AW22WA&&AW22WA&�@!8L++L8!!8L++L8!����_��26=326=4&+";'3#326732673267>'>764'&"'>54&#".'&"2326762#".'&47>374632#"&53267#"&'p			@		

  ���/e56e.��,D
LK54KL
D,�c
-u@At.
)DKP*)QJD	�8'(88('8,
K@"!@	0	`		`	0	�@�f��
!B	�35JJ53�	B!��
�-11-(..(�(77('88't���@�HT`lx".#"%>54&#".#"32654&'326732654&'32654&##"&54632"&54632"&54632"&54632�(8��	
$
��8((8�	
(88((8�	$
"8((8	
(88(��&&&&&&&&�&&&&f&&&&�8(%
�?�	
(88(%
��8((88(%
`�
(88($
�8((8�`&&&&�&&&&��&&&&`&&&&����7AO]7#"3!26=4&+5>=4&#"#".=4&#"!546;2"326'6&#"&54632�_%	@	%a0R=#

!8K++K8!

#<R/�����<UU<<UU3A..CC..A��%0		.&�)AU0<

<+L9!!9L+<

<0UA)� �V=��=VV=|=V��/BB/|/BB/����
��4&#!"3!2667>772013!2654&#!.5467>54&5>7>'.&'&""'.'&67>764'4&'3223267>54.#"&5.%.#"32:3267>54.�	��		@	�i
.7
))A;A�		�F=5F/



	!
C!
$
	SSQ-_X?Lgg<e	
OC'[>		9R#:/	!3>0				�'1%	(B=6�A+H		:"9|1AQ6@ 
*
/(H{)!Al7[wABz]:z�G=?l:�		9RoG#k^bn$MvY>
��V�
1Ng2654&#!"33!2676&''.=4&+"##!"&'&6713267>3253.#"#"&'#74>0		��		�,2�2,�	�	�&��&
�4--4-&�
��8-4-&', �				��%0

0$>3FS'�		�*ZK1��T

"

��"���D�%3O`��M�.<HT.#"3!832676&'#!"&'&67>322654&#""32654&"&54632�F''F�xN3
2N�xw@*��*@�88��				&&&&


a.11.�\/\&$(($%].���L'�&))&�['K$	@		��	P&&&&`



����A��6?>32'&:3267021061263461647<124176&'&.#"4&+"&'&673263>/4&1&4#.#"4181.#0"1*#?;265%6&/.#764'&"01326764/%267�b
c11�~� �@$$@E	�%9�4@�~�G.�	�@B9%��E`_DI.Hk�
�"$$"�� �v-)-,)��	D#4�� ��+U"!%
6"T)��#CF`^D$!��]�my732>=326764/.#"#"2?!2654&#!5>54&#"!"3!.=326764/.#"272#"&546FM��[[��MG`aGDs�R		��)7B..B7)��		R�sDGcb
!//!!//cF[��MM��[G
`a
GS�vJ_		�>*.BB.*>�		��Jv�SG
ba
=/!!//!!/��{��67>7>7>74&'.'4&'.5467>5>30213:7>'.'.'.'>7>54&'.'#":GLD7#;
,G^66^G*B)7DJG9	ANQ-6
)C

0Oi<:hO2:$	7-ROA?.=&V#Z57
=jO./Pm>.=g!	#U%;-5D);'#j>7
CuW31UsBA5[!';,E5��{��"3:7>'.'.'.'67>5.'.54.'0"#81"767>7>7>74&'.&'>54>3021'�7DJG9	ANQ)5sk!$+Lg;<iO.$!�Z4(
ROA:GLD7An ")F_65[C&" dS)#U%;-5D)5#	;MWRDxY44XuCRWMF!2,E5.=&U#$QWR<jO/.Pl?RWQ

���vy����"!#"3267>5.#!"!'32654&#!";1.#"32>7!#"3267>5.+32>54.%#.'!7".54>327!#!".54673267>'>32#�.V%�3-		&:	��Z�c�		��		Jmb"K)E{[55[{ECwZ6c.		':	~�w4%5[{EE{[55[{�^���)9"}��>L��?oR00Ro?$D�22Rk<`?oR0E9��!M)?oR00Ro?`N$		 E	��				��5[{EE{[52VuC#		 B��<EO*E{[55[{EE{[5��N��T+OF:���'��v0Ro??oR0��=iN,0Ro?L�*��
0Ro??oR0����*3Kb4&'.#!"#&3!26=4&#>5!5463!2!.#"#"&/.54673267>32#".'�!��  6^�K�$	�
%}K\4��� �9.,LY%$PFEP$,!R@LY%$PF,7XuC<jT<
�6�..�6G�uL��$		&Lu�G��)v/$!!

/|*��$!@f?3Tl9����&7GWhx��4.#"02183326720183>5!.54632!.54674&'>%467.5>54&'";26=4&#+"&=3�7p�qq�p7��������),

,)W))W�� %!RG1^a @ a^1GR!% ��ad32"6B!.dS6%!B6"23da6Sd��	`		`	��LqK%%KqLW��``��WC�~ff~�C�XX�9wpb%"bqy9q�"�``�"�q9yqb"%bpw9_z$zV2hc\&%[eh2��&\ch2Vz$z_2he[�	``	p		P���'7A�2>54.#"2#".54>"3!26=4&#!5463!2'01326=041>72764/&"#"&'.546764/&"�E{[55[{EFz[55[zF?nS00Sn??oR00RoQ$	�
% �� 
�	
M�9&0
9�PP�99<<91%+ /CJP)5[{EE{[55[{EE{[5�0Ro??oR00Ro??oR0��%0		.&B �3		3;4%19<<99�PP�9
1&EJP)+TMG- ����6Bfr~���������	738126732673812676&'>'.#".#".#""&'>7467>7>7.'.'..'>77>77>7.'.>54&'.'>7>7.'#"&'>7>72.'.'>%2.'>>32.7#81"&'&672654&#"72#"&546S=<]88]<=S-JJ-S=<]88]<=S-JJ-�,M$K%%K$M�-00--00-22(<$"�<"$�22'<$"��$<"5F37	%?=3�3F3=?%	7��,M$K%%K$M�zF37	%?=3[?%	73F3=W!//!!//!�!"]nn]"!*�OO�*!"]nn]"!*�OO�*�aR		Ra�66668**))� <	
F< 
�**))� <	
+
	< 9"L)4@s�%s@4)L"�aR		Ra�"L)4@s%��4)L"%s@8/!!//!!/����.:F"3267>54.#.54>32"32654&"&54632�O�i<p�vv�q<i�Oty]7`�II�`7]ytOqqOOqqOB^^BB^^�=h�Pw�nm��yP�h=�%t��fI�_88_�IhȤrqOOqqOOq��^BB^^BB^���*6BNZfr~��"0212676&''.7>3#%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"54&+"021812>'"&'.54>313B]]BB]^C5KK55KK4�



�



� 







��



�







�@



�	�4]F(&$$]34]F(�-R!$>R.�$=Q`]AC^]AC^��K55JK55J�






�


�3


3


�3


�


�3


Q�	(E\44^$%'(E\�#  R-.Q<#�.Q<#	��@�@d�������&.'.##"&'&3267>7:3267>=>54&'4.#"3267>732>"&'"54&'.54>32#"32654&"&546327"32654&"&54632%"32654&"&54632u^WW"7>\-
1fC
-T>Bc�O��oqS#7E!�FCq��I� D1g A6"N��jh��KD}�j&&&&


�&&&&


�3&&&&


�]F>]z !
$/�,g5Qm2\�tBCt�[7]N?�LM	:i���
8F�:IW3T�l>=k�VS�a5�&&&&`



`&&&&`



]&%%&`



����0Z".'.#"3267>7>54.#.'.54>3227>7>32`;o--o;BuW2/!/��mm��/!/2WuB�*��qq��*=7-Oh<5d(!!(d5<hO-7=�+(##(+2WuB-QLJ&8�rNNr�8&JLQ-BuW2��1tkSSkt1H�S<hO-'$++$'-Oh<S�H��@�S.#"3!2>54.!".54>;2654&+">32326=81?<m�e]�wG3N5/Oh::iO..J\L�3]F* @`@0		0;i�`g�b0		$OB+)F] P�uFAs�\BQZ'=nT19Xl3>lQ2��,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3��@�y.#";2654&+".54>;2654&+">32326=81+"&5326764/&"2?;2>54.?<m�e]�wG3N5/Oh:�		�3]F* @`@0		0;i�`g�b0		$OB+)F]4�NB���
�U[�:iO..J\ P�uFAs�\BQZ'=nT1		,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3BN������I[U9Xl3>lQ2��@�}.#"7>32326=85#!".54>;2654&+54632'&"326?64'&"4.#"3!2>54.'?;m�e0-g�b0		%OB*(E]6�0\H,?`B0		0gYQo�
�

�
�#<R/3S: ?`@!%IlF=iM-1L[)!O�tFJv�K0		0#CdC9dI*#DfC1aN0		@YhpQ�`|
��
|�/S<# :T3B8Sh57mV6/Ro@LpK'��;�Y����&"&#76&'&#76&'&#4.#"32>733267>/33267>/3633267>/76&'".54>32#4.#"32>734.#"32>73#".54>32##.#"32673#".54>32#3#"&54632#&9L-9K39KQ��jj��QQ��jf��UK93K9-LGG��c��LL��cc��L`=h�OO�i<<i�OK�fA`P���)E]55]F((F]51WC,`<]zEI�`77`�II�_8`�J55KK5,Db';K*.R=##=R..R<$`pJ
1(88('8P

[E[E[j��PQ��jj��QK��d[E[E[UU��L��cc��LK��cP�h<<i�OO�i<6_�J^�yF�5]F((F]55]F("=R/CuW17`�II�`77`�I5KK55K6*)F4#=R..R=##=Q/ $8((88(

�����'U[ch2>54.#"2#".54>32673267>54&!6&'."!&!>2.'j��QQ��jj��QQ��jc��KK��cc��KK��]��/H1
���,bdb,���
1H/RJ�@���&QTQ&��JRAQ��jj��QQ��jj��Q�K��cc��KK��cc��K����DQ[2
6��
2[QD-Q�/X��%����/�Q���+;B4&#!4&#"32>%4>73!#".5%!2654.#"!�	�P	`�~IG|�d\��K��Aq�W	�Hv�T]�tB�	I~�`		U�pC�`�	�	I~�_d�|GK��^W�tG�O	T�rCBt�]O	`�~I	�?	�Dp�U
�����(6DRcu������"32>54.#".54>3226=4&#"#";2654&;2654&+"%26764/&"&"326764/64'&"326?326?64'&"#&736=4&#.54673'267>'764'&"&3'>32"'&47j��QQ��jj��QQ��jc��LL��cc��LL��S��@@�@@��22�00 33��00W����UU=		

$

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K@@���33��00�22�J00RP�
<UUF
s$$���%/:JTboy�������������32>7465<'4654.#".'>7373.'>7>32#"..'>73267!467.#".'>774&'>7'.'#"&'>32.'>7#467.'.'3>7.'>74&'>7.'%.'>#46T��gg��TQ��jj��QD#�3,%'�-::	""(Bl!@!(4<<��<<!@!lB(
#D�(Bl!@@::	""�!@!lB(�D#D'%,,$D*=h(*D$(h=�').j$D*=h�	*D$(h�'�.�g��MM��gj��QQ��j�#H$1]�C{5
,c5�@gI''Ig�vT
T�(~'T..T'�%D 'D�
Tv(�T�,X+1m:�T�(vT

@gI''Ig:
Tv(�t+X,:m1�$H#
*]1�
5{C5ct
<a"L2�"a<
2L�>s3
;�M,
<a"Lc"a<
2L�
3s>M����';p����32>54.#"2#".54>2>54.#"326=2#";#54&#".532654&+>726?32654&'76&'..#"374632#"&7.'7Q��jj��QQ��jj��Qc��LL��cc��LL��cV�qAAq�VV�qAAq�6		K�g@0		2<i�O		J�_72		0;^zF��(8��	(8��&&&&�@
Y�V�j��QQ��jj��QQ��vL��cc��LL��cc��L��Aq�VV�qAAq�VV�qA0		27_�J		O�i<2		0@g�K		Fz^;���8(��8(	��&&%%�Y@�
=C���}!3D���+@Tbv����326?64'&"326?64'&"&"326764/326764/&"326781>7>7>7>781>4&'.'.'.'.'."8181>762818181818181"'"&'.'.'.'&47>78181>7>7'>7645.'&47.'.'7.'.'7:7>7"%'>7>7.'.'7'.'&"'62>7'>7>7>"&'&3267>'.3267>'.4676&'&>4&'.3267>232676&'."7�_^�^_
@
XX�XX-"5&P))P&
	2%	'.
&PRP&

2%2	
������T 
�

J0�J		J?�U.	J


�!$
�

J
*yJ
		J?��	J

�!.�7x|x7
:�BB�:
�P!""!  
z!""!
  �V7x|x7:���:
g_^
�#^
^�XX�"
X
X�	
&PRP&
.'%2	
&PRP&5"%11
		


?�@J		ZJ?�@J		
�*
J

�#Y��p!�

J	. 0J

�
 G��-�

J	.!�  
"!!"
�:���:
7x|x7
�:���:
7x|x7
�  
"!!"
���'=IUamy���2>54.#"2#".54>326764/54&#"%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"j��QQ��jj��QQ��jc��LL��cc��LL����		�{







��







�







 



��



@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�g
��

�






s


��


s


��


�


��


����2>54.#"3267>'.'.'.'&67>7>323267>7>7>7>7263.'.'.30216>'.'.'.'.#"&'>7>7>7>76&'&"#.'3:3>5.&'.'.'.'>7j��QQ��jj��QQ���


2o<9l0;p2%C(&@"6v@/N9#&[4&R+'N&		$J%)N$7_( 8L/



2o<9l0;p2%C(
&@"6v@/N9#&[4&R+"C!	$J%)N$7_( 8L/@Q��jj��QQ��jj��Q�9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L					R5;naR9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L				R5;naR���'c�2>54.#"2#".54>67>'.'.'.7>763267>54&'.!67>'.'.'.7>763267>54&'.j��QQ��jj��QQ��jc��LL��cc��LL��F


	#=:#4"7



	#=:#4"7
@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�k
			9.D�=KP$5G


			9.D�=KP$5G

���Th4&#"!"3!3265!2654&#!!#.'54&#""#";3326=>532654&#".54>32 		��		0		/		���T@f�L		R�pEP		NAq�V		P�g<R		�O�i<<i�OO�i<<i��		��		��		/		L�f@R		P<g�P		V�qAP		REp�R		�`<i�OO�i<<i�OO�i<����'A[q��"32>54.".54>32"326=4>;2654&#!#";2326=4.54&#"326764'76&'&3267%.3267>'�]�yGGy�]]�yGGy�]V�qAAq�VV�qAAq���2WA&		!8L+		�		+L8!		&AW��		���`
`
`�Gy�]]�yGGy�]]�yG��Aq�VV�qAAq�VV�qA�&AW2"		"+L8!				!8L+"		"2WA&���

��
���
�
�
�
�����;{32654&+"326=&'&32>7>54.'"'.54>7>676&'.#";26781>=4&#T�		�			"4$$4"3{��B.]/2b]T%$8&&8$�f	"4$$4"2y��BF���4%8&&8%�		�	@			�		�"NV]00]VN"3B&8%$T\c33c\T$��	�"NW\00]VO"1B	
F5$T\b43c\S%		�	�����(4@LXq"32>54.#".54>322654&#"72#"&5462654&#"72#"&546#"&'.326764'&"j��QQ��jj��QQ��jc��LL��cc��LL����&&&&


m&&&&


7(o;=p(.}DB|-�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�&&&&`



`&&&&`



��,12-3761�����(DP\ht"32>54.#".54>32"67>32326764'.#'2654&#"72#"&5462654&#"72#"&546j��QQ��jj��QQ��jc��LL��cc��LL��^C{.)n<=o).}D�&&&&


m&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��Ke71,01-38j&&&&`



`&&&&`



�����(X"32>54.#".54>32#&#&73736'536'56&#5>3627>'56&'";#"#54&+53267>=46;j��QQ��jj��QQ��jc��LL��cc��LL��
UR)0

0
b	P

P9
(&NN
A	00!:D�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�U75
`
�

�
`
0`
^"=>
��
>E64=�����(|�"32>54.#".54>32>76&'..#".'.#"""1'&32>5<5>764'.#"&'>7>'.#"&'267>54&'.'>76&'.5467267>'.546327>77263j��QQ��jj��QQ��jc��LL��cc��LL���
+2H5`"		%8
&W-JuR+

7'HiB.1	$#

*m;4$!
�Q��jj��QQ��jj��Q� K��cc��KK��cc��K~
H24+
	0	'

	7Yr:94eP1

	!'+1
$4
�����'fs�"32>54.".54>324&+*#*#"3267.#"32654&'.'.'&65>5>54&'3265"&54632#"&54632%#54&#"#&73326=3654&j��QQ��jj��QQ��jc��KK��cc��KK��"
�5LL5	
B]]BB^
3
�4II44JJ4'88''88cK
	N

N
K

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�
@..@	E11EE1,/'
�11##11##1&----[L
	P

L

L

�����'@Wdp"32>54.".54>32"3232654&'.#5"3232654.#"32654&#"&54632j��QQ��jj��QQ��jc��KK��cc��KK����

6Y !

&$%e=

V�l=

Bu�]0&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��K!

   Y6

=e%%&�

<k�U

\�tA��&&&&`

�����'w�"32>54.".54>32#56&+"7&3267>7>'56&'&"#"&'.'.5&4=36'56&#&3267#"&'.'./.'56&+5>7>7>7373j��QQ��jj��QQ��jc��KK��cc��KK��-p
S
	
0
o

o




/	3
o�Q��jj��QQ��jj��Q� K��cc��KK��cc��K_p
	W
 �,
		MN
`
a
^%

�
:

o
@�����(GS_os��".#&;26=067>32;26'56&##54&#"#36?>32"32654&"&54632#";2654&#3"32>54.".54>32p
	`		`

	
d
`3qB"	
A>		]�&&&&


!_

_

@@�j��QQ��jj��QQ��jc��KK��cc��KK��B
��		�
�		�SD���!
	�?
	
#Q�&&&&`



?��		`
��?�Q��jj��QQ��jj��Q� K��cc��KK��cc��K	�����'I��q��"32>54.".54>32.#"3267>781>54&'.'.'"&'"&#*#*"#".'.'.'>7>7>7>7>7>7>7>7>7>7>7263>7'2""#4&5.'"4'.'.'.'.'.'"4#>010"#'"&#"&'>7<5233232381263263>7>3>7>3.5461>7>7>7>7>7>7>7>7467>7>7>7>7>3&7.'<#.'267263623:3223j��QQ��jj��QQ��jc��KK��cc��KK��X%`61BU2-"T,64J$" 	
		
	
�+O	


	 P		
8	@1~
	

			

"$a



	4n�	
		



2"�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�'*
	rG:i%W7"1[$�F%
�

		
		5U�
	 T.�!%=k=�c`�"32654&"&54632%'764/&"'.+"'&"2?;26?2?64/7>=4&''.#'4&'&'7>'./572676&/77>5736?3�B^^BB^^B6MM66MMP]:�J�J�9\\9�J�J�:]jBwT
�
TwAiiAwT�
TwAjp^BB^^BB^��M66MM66M�J�9\\9�J�J�:]]:�J��
TwAiiAwT
�TwAiiAwT�	�Im!^n�������64'&.#"6&'&"32673267>'32673267>76&'.'>54&'3267%624&'&47'.'&67>32%&'&67>32#".54>32'.'>762%"32>54.#".54>32'54&#"326764/`(()s) D%$E(t())
$3

D#$C	 2$�v!\!5S!!�

x


l3WtCBuW22WuBCtW3S5!]!  ��6_G**G_66`G))G`60V@%%@V01U@%%@U#NJP(s))((()s( D$+OG<	





	<GO+$E�!!T5 ]!�q
	
	

8CuW22WuCBuW22Wu[5T!!!] f)G`66_G**G_66`G)�%@V01U@%%@U10V@%��OJ�8o|���.#!'.'.'./.'#.'#"&+";1!'>?>'##81'!"&/#'0&/#"&546;2322!21"32654&#"&54632%"32654&"&54632��t�$%X$X�j5e
�{
f
.o�*�
�#$33$$33$!!  $33$$33$  !!�
E%%M�#�Sj�		�dZ
5��3$$33$$3�!!!!�3$$33$$3�!!!!��42'+0=FZht}2654&#"352"5463%!"3!2654&#!5!!2654&#"352"546&"326?'#";2654&2654&#"72"546�


4����i��3

�
JGX[�PP/



�

%U��������8


'�
HG
XY�


'lA��,CGKVafj|���%!"&5463!2#!"3!2654&#"&54632#5!32+!#"&546;%#33#7627764'&"3#53#"&/&4762#"&/&4762#"&/&4762#"&'&4?62#��3**f

���

**���

�$

G�{��kHH/B<���NJ<

���llll�LLfLL�LL�$$A**

��

*��*H
�.�
��$�R���C;��/�J<


��A$$�$�LLeLL�LMG$$��{16;@��������"0010;26?0&5061463>7>54.##'37#'37#'37#54632654&#""&#.#81"381812#.'.'.54>3226=4&#"3326764/&"4&+";26326?64'&"&"326764/7#";2654&#'26?64'&"3/1U@%/+'q'+0%@V0-Z`	ms
�
�
;C				
C'+ 8K+*K8 +'v				�FF>	c		c	>GF�FF�c		c		�FG�%@V07`"��"`70V@%�{,,;;�"�							
�"U1*K8  8K*1U�	c		c	SFF�				�FFFG�				�FF	U,��'+0<FR\2654&#"352"5463%!"3!2654&#!5!!2654&#"72"54632654&#"72"5463���		>		�������1n	��		>	����O���333 } ;t��"32654&'>54.#2.'.54>3#"&54670317067467>7>7>7>7>74&#"3265!4632#"&53ZC'1<DR�ba�RD<1&CZ3,N;"%6==6%";N-�nVWnH@
@H*[?@[[@?[��H32II23H}'CZ3$bmr46"-==-#54rna$3ZC' ":N-%jtp+!!+ptj%-N:"�-00)		
		)�@ZZ@@ZZ@3HH33HH3 E�&
)Zf��%26=4&#"#26=4&#"#26=4&#"#'.#"#76&'.#"#"3!267>=4&##!"&5!#!"&=46;7>!'&6763226=4&#"�qpʙN,�-O�+#7++7&,Q��6�6w���YPfOY�����������~
,FG,+*/��*+</*+�:���*�||�*�����k|�%Khv����!546;267>'.=4632;2%!54&+"&'.7>=4&#"+"!"&'.=+"&5463!2#%!5!37>"&=4632#"&=4632#"&=4632#"&54632|�`'�;)*;�'��]�
((�L�\#T

;

�m���9>
P



J



J

	
9x�(	+*;;*+(�"d
%''$
d��?G

		��
"��}
u"
�

�

�

�

T

T
���wUjt~26?>54&/.+54&#"#";#";32654&'532676&/7>'.+53#"&5467326=!'7!%764/!!�__�		�TT�__�@XaFGaX@�TT�L=<MD6	7COEE��PPo�QDDoOO��|_^			TT	 _
_�3$'55'$3�	TT	 ��''%<<%E
EPO\EDOP:Y\�)BO.'>54&'.#"3267326764/'#"&'.5467>32%34>35"_(,/,-r?>r-,//,-r><m,��$(h98h((++((h89h((++(�K!8L*0VA%o+m<?r,-//-,r??r,,0,)��)++)(g99h((++((h99g(�+K9 %@V1
��#�&7;JZjv�%"32654&"&5463232654&+"3!"3!2654&#!!'32654&+"3%!"3!2654&#!"&5463!22654&#"72#"&546

1//�e

���w�~~	"�:%%�&&�:��}uN



&P
��

Q
��-G		�%��&&R%�nRX&P�_
)Ll!"3!2654&'!"3!2654&'!"3!2654&7!":1!3:7>=3021>54&##*1#"'.#!0"#"&5463!2�b		�		�b		�		�b		�		��*'&��X&'$f	��c��				h				g	

	�(��'��'(��	����S���@DQim4&'<'4"1.'"&#0"1!"01"#8813!267201647465
0"1/0"1%!22320120126162?!%7%%���=��&���GC���֘GG!�!�&����� ����75�� 77���9�&h�E
!HSXj!"3!2654&!"3!2654&!!#4&#!"#"833!26?>7>54&#463!2!!'!7!"&'.5463!2#���Rt��

;

���6�Q:CI
����:�!F(D��xH�	��

h	��H�K��
SI
�

���v((IZ�! ;S..1270>7>4&"'.467>7>2#1"1#"&514638�+mro--orm+----
qePm�o---Z��

��$##$"UZX$++$XZU####��		+=		P8+,((((,+-ptp-q}dl�n-ptp����		^#Y\X#"#!''!#"#X\Y		=+		8P@ &O.#".#"31!2>54.1!"&5467>'.5463067>32#=0Mc8+PC6
<T.:!8L+@2WA&4GW��<T&"!	
/!
nA+M<%$>QgI7_G(,=%T<^:+L8!&AW2,N?*�mT<&B"!/;G6J,"b?Ig����.K.'%'.#"326?3267>'7>''.#"6&/%>?� ��t	$$	t�� 
�-
		��		
-�
��-�				�-�
tt
�.'��''��&}}&�'�!��}}!�(��(�
% �@"6i}������.#"3267>7>4&'.'"&'.467>2.'.#"32654&'>7>7>4&'"&'.467>22654&#"72#"&5462+"&546372+"&546372+"&5463%6#"&57>?�A�AA�A		A�AA�A	

	@�@@�@5iii54iji42e3�]]�3e3>g���hh���g_		

&		`

�		`

`		`

��		x
	
��

5jji5

5jij5�N



2eed3



3ded�		M���M	

	M���M��

J���J

J���]@				��				`				`				�		
=		Y
���=T_s�4.#1"&5463021281#"&51.#"326?!2676&'#"&/.546?4210#7">5!%+5467>32"&5463021281#"&514.#1`-Oi;		BtW2		��#		 d�$$d�1�@�c

�d
.�����

�*	���

\�zF

=h�O;iO-		3VuB		�1�HdP�d 9���d�
c����W	�

�@	�

Gy�]

O�h=` !19#"54&#!"3!26=;2654&"&5463!2#%#'5'573�
	W8(��(88(`(8W	
&&��

`

 � � 
V((88(�(88('U	
&%��


�
� ��
@����%/9DTYin~�.+54&#!"#"#313!26526=#%463!2!#!"&5!7!5463!232654&+"3#32654&+"3#32654&+"3#�7&`8(��(8`&7&K55K&��
@
��&�&�@�
�
��@

@

@@�@

@

@@�@

@

@@�%5 (88( 4&F%��5KK5 %Fz

 �%% ` @

�`
�

�`
��`��@
�

�`
��`��@
�

�`
��`�����-FY%.'>7>.'.#"3!2676&'%"/.7>32>?3267�,NkA0=
	*$*tEEt*$*	
=0AkN,"�"��9�9
"1	$>X::X>$	1��(Hd=O..O<dG*5$(<�6&isr.6785.rsi&6�<($((�
BB
+ahl53eO11Oe35mga�!%

$"���-Zx�";26?326=326=732>54.#"&'#"#"#5817.54>32#.'.7>7>54&.'>7�BuW2�{
&`
.K%@%L:BuW22WuB#Ba	
@&K
	-[u/(F]55]F((F]5�A&!.A&!.c#>	##>	#�2WuB:�{
`&
.&@&KL2WuBBuW2��a	
K%@
	-[u/B#5]F((F]55]F(8&A-!
%A.!	T=##	>##	���!1EY"13267132>54.#"&54675%".54>322#"#"&54>�P�i<��B/)([1P�i<<i���"
(���BuW22WuBBuW22WuB		Pp		#=R�=h�O1Z)��*/B<h�PO�h=�J
!(���2WuBBuW22WuBBuW2 
	qO		.R=#���l��
'.'76&/.#"./.+"'.#"326?;26?>7326?>/>?>=4&''.#"#'.'.'.#"'7>'.'./57>7>76&/73267>7>?3326?"32>54.".54>32"32654&"&54632�c	8
>		T
$W$
S			>8	cc	8>			S
$X$
T		>
8	co	8>S
	X	
S>8	bb	8>S
	W	
S>8	bb��.R=##=R..R=##=R.)G55G))G55G)5KK55KK5(88((88*
S.>	
8	bb	8
	>.S

$W$
T->	
8	cc	8
	>-T
$W$�	"S>8bb8>S"	W	!S>8bb8>S!	W#=R..R=##=R..R=#�\5G))G55G))G5DK55KK55K�8((88((8`3Mg"32>54.'.7>'2#"1#"&5146%/.#!"3!2654&#!"&546?>3!25]F((F]55]F((F]]4�<<34�<<
�		(8		K�,0��0,�#-8(@(8-
��
�9
@
9��(F]55]F((F]55]F(��<
44�<<34��		8(		5K�n!!n6#� (88(�#6��

��		�@�@'3?.#!"3!26764#!"&5463!2'"32654&"&54632�:!��5KK5`!:�J�	��&&`	�
�(88((88(%%&& K5�5K JG�%&�%s8((88((8�%&&%�����4=Xk54.#"";2>=4&%4>32#54&#"#%!54632+".=463:3!:322#"&'.5463 -Ni<<iN-(8-Ni<�<iN-8��#=R..R=#@^BB^@`�K55K�#=R.�.R=#
 � 
��&

& �<iN--Ni<�8(�<iN--Ni<�(8�.R=##=R.��B^^B����5KK���.R=##=R.�

`%11%���`�'/6M_"3267>54..'0417'.'3"&'7!.'.54>322#"#"&546I�`7&560*ef)074&7`�
�	��
�q
�z��6-Oh<<hO-6�		B^		q�7`�I0cb`-����-`bc0I�`7��@	�
( 48p1<hO--Oh<0q83�		^B		Oq����&6EM_t�.#"01"93261%>7>.'.'81<''.'.''.#7>#"&5465767.'.'7>7646'.'.#7>32�(c4+M���KB.	�")&�S
/�'	
!1"
�Ή.�M)�"9w�>! 0�46*vz6*#'c456'L!m(+�����.BG�!V\Z&�Z*.,V�q
1
��v	
�
�(z9( @s#37�/6.W#'+6!E$";@@#(,/258;>BEIMQ'.#!"3267>54&#7?#'73;7'3'3'3#33!37'7%#�	
��
	�
	�		�
�Q�GWAQ�QAWG�PP� ��WOArp=�G���=p1O��N���qfq���WJ��JW���	

	�		�#�	!;IACCAI;5�q��w�AA�3	<33_A �w���P��P V=��=V���5E!"3!2654&!!7!"3!3!2654&/5!2654&#!"&5463!2`�@

�

�@�@��(88(@�

@

�@(88
��

@
 
�@

�
� ��8(��(8'

'8(�(8� 

�

�����4O2654&#"2#"&5467"3021265>54.#0&'.54>32OqqOOqqOB^^BB^^BO�i<@cu45tc@<i�K,m`B2WuBBuW2B`n,�qOPppPOq`^BB^^BB^�<h�PT���<<���TP�h<�D2���NBuW22WuBN���3�CXn��<'40'045.#""1"00132>7<16056454654&".'>32#2#1"#"&54638'"32>54."&54632�#l��PP��k##k��PP��l#�D�ta !`t�DC�t`!!`t�C

(8
	K5.R=##=R..R=##=R.OqqOOqq�CpQ--QpCBpQ..QoC��%C_9:^C%%C^::^C%�		8(

5K`#=R..R=##=R..R=#�`qOOqqOOq�Dm2#"#"&54>7"081326>732>54.#"&'*#">7<54&'.54>32		@tX4		8aHj��P ;S20&F;)2j��PP��j-	
6#	
,F1Gy�]]�yGGy��		5F&		.Q=$�<i�P2\QE+T$*(
<i�PP�i<�@
00:CK&BuW22WuBBuW2�#DS.#!"3!26=4&#!"&=!!";;26?3267>'.##"#'.+!��#��#�K55K?&�&����n�.	�	.�n5/�/�]�]q��	�5KK5�	�&&�� �
��]]�
��]]`��@����'+/48<'.#!";3!2674&5326=4&%!!'!7!!!'!7!5!�'!��!'#&!@%�%@!&#�C@ ��`��$$$$'��@`�uu%`&��!!@&`$b`��``�@��``@`���`�'7G!"3!2654&#!"&=!5!!5!5463!2+"&5146;2+"&5146;2�(88((88
�
@��@��

�	`		`	 	 		 	�8(��(88(@(8�`

@ � @

				��

		���0>LZhv��������!"#"3!2654&#!"&546;3265463!2"&5463!2#%"&5463!2#%"&5463!2#2#!"&5463%2#!"&5463%2#!"&54632#!"&5463%2#!"&5463%2#!"&5463%2#!"&5463!2#!"&54637326=4&+"73#��@(8 (8K55K8&�&
 


�
��				�				�				��		�				�				�		`		�				�				�				��		`		��		�

�
-���8(@8(��5KK5 (8��&&�
��



��	

	`	

	`	

	��
		
`
		
`
		
�
		
`
		
`
		
�
		
`
		
�
�

�
�� $'7!"3!2654&#!"&57326?'7#"&'463!2��5KK55KK�����&�&��

����f

�f&&�f K5�`5KK5�5K���P��&&�i	

	i�����3&&�����Sc���.'>54.#".+";267:13021;267267>'>76&'>76&'>?<54&'+"&546;2#*1"30232#*1"30232#*1"302321+"&#.'0&5467>7>546322"32654&"&54632��g-8'8.Q
!`(88(`-;9pC�(9			

,/�;
`

`
�*$		$$)($		,)3#		
�Bnd*7I,E
�U��				q/$+N<#8'1�*8(�(8
0++ '%B��



1#		-3		/&		$	



�FQX)Y?94;"��@				 ����/CIO[g!"3!2654&#!"&5463!2#!"3!2654&'.#".#"!7!'7#2654&#"72#"&546`�@5KK5�5KK&�@&&�&`��

�

hS�h����X�nV�hX(88((88(&&&&�K5�5KK55K��&&&&
��

@
 �Dq^x�͓��f
��a�T@8((88((8�&&&&���&.<JXft����'.#!"3!2654&#!"&5463!1;'#"&515%"&546;2#"&546;2#463!2#!"&2#!"&54632#!"&54632#!"&54632#!"&54637326=4&+"73#�	
�`(88(@(8
6
��

�8(�` %��0		�		�		�		�	�		��	�		� 		�		� 		�		� 		�		� 		�

�
-���	
8(�(88(`
�|


�(8 &�� 				`				P				�				`				`				 				@
�

�
�������#/;GS~����4632#"&4632#"&'4632#"&%4632#"&4632#"&4632#"&4632#"&7"#./.#!"3!26?>7232654&#!.#"!'3267'".54>32#"&'.546?62�







�



�



��









�	&.$�#,)/-'-$$.(	&&�C #Q,,P$� #Q,,Q#�5]F((F]55]F((F]iN;��


��


�






{



��
�*J��+o@>m+�� L+&%���,�(F]55]F((F]55]F(�aG����'.4;.#"38126?3267>76&'	./81	%.'�	�@�v	C6��s����^�����
�����		d�	n|�	�l�Mi���m�����)7����/KYg�54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>328181%54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281814&#"326=>54&4632.#"#"&=326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281818((8##8((8##�

@

<


	


	�8((8##8((8##�

@

<


		

	��8((8##8((8##�

@

<


	


	�a(88(aB''B�(88(�B''Bw

C�

��





�a(88(aB''B�(88(�B''Bw

C�

��





��(88(�B''Ba(88(aB''B�

�=��

C�





����1F��3V	.7>7>7>7>7>7>76&.'>7.'.".'>3267>74&'.'&".'.#"7>7"'.'.'.#"267>73267>5.'.'>7>76&'.'&'.'.7467>7#.'>7>7:620"1"'.717>7>71>?4676211&'&47467>7� 	&%^36m.'6
@ 	&%^36m.'6��(PPP("���"(PPP("���"�	



	!
			�
	�




u



m@		#>%<E.(X2#��		#>%<E.(X2#��(PPP(n}j}n(PPP(n}j}n�	
			


	 					
A�



�


@����+Ig{���"32>54.#".=32>75101#".5049532>75101#".5049532>7".54>324632#"&54632#"&54632#"&Q��OO��QQ��OO��/<i�PP�i<Qfu;;ufQ<i�PP�i<Qfu;;ufQ<i�PP�i<Wen77neW��P�i<<i�PP�i<<i��











�3N6��6N33N6`6N3��4''4x'

'H4''4x'

'H4''4n##'44''44'� 


�


�


	���GS_c.#*.#"3267>7>53:7%.#"3267>7>534&'&'&676%&'&6765%�	��>#(.F`>(.F>#(.F
_>).F�
9h;:9h;%:g;:9h;1�� �`$��:&>1:;&"^�|:&>1:;&"�	�Y +*W!**WM +*W!**W�```���DR`t��"'#!"32;26=4&=405>7063>78181>7332>54.#46732+.%46;#"&#4&'313#1"&546;267.#"&'32654&+>32 1N(tB��6JJ6&%�& =i&M17T88T7�[&&[��&��&@�	`'&&-U%%U-y0NQ6JJ6QN0!:,,:�?4O_]CC]&��%% 
�\J4>M�SS�M�@08((80(8228�( !�
�8((8"'Q))Q'"��}c]CC]c}<i�PP�i<�!1M[g4&'%.#"32>57>#"&53267%%"#*'%.5467%623:4632#"&52#"&546* �_�` ** V&U�``�U&V *���
���`��



 &&%%�"4``4""4�� :,,: 4��EE>>```�

��

@f&&f���/Gbnz������.#"3021267>7326?>54&'"#"&'.7>?"/7.'.'%'&4?622654&#"72#"&546"32654&"&5463232654&#"72#"&5464632#"&4632#"&�.�M�!
%	�
-���h
�2eed2�K.
9.H�B)7-
���!//!!//!�!//!!//!�<&&&&@


M







I.	�
%-�m
�
-���P	.6���-9s
H'm6
-�
�/!!//!!/� /!!//!!/��`&&&&



�


�



���-2HVdu���#.'7>'..#"#"3!26=7>54&+7%2.#"#>.#"#>32'"#>32#.'"#>32.##!"&='463!2405&67>'8140181&45463201#"&'81"0%04#&67>'8181041&45463281#"&'1041'&05&67>'81401814&5463201#"&'818�V�	�ASa5As\?V!/p/!`!/p/���0YK<5DP,3]J4!9Sh�O11O#b?;_�%
';##;'
%Lv!/AP-N}nE@	��	�	`	�?


		
�
	

	
�

	
		 LJ.K6,Mj=/!	}!//!}	!/�2E)%>-"<R07]E'�*66*8HA3##�[E)G3UB;K��0		0�		y:-	;.	:.
;.	�:-	;.	��+2C'.#!"32673!2653267>?6&%#"&''!'7332673�	��	�@&@&@��
A**A
�`��`@��
U88U
����
&��w&&��&[$$��@�@��)77)����T�$J�14.10.132>76.'#".5467>'10>7067'#"&#.7>''.''.'#"&546?>?>?�A(/'/VS>$%.SvIk�P''E0V_�<_B#%3 '&

e0"
H
G@	
 		"1	@=�@^<hM-wGS�Y/����`8iQ1%=Q-=���<�=r(@R)An8G�`4p]=*<@<O^0`O-[ZV(�"7z.#\,86$).J %bW		qo.1,"Q3#L7.A : A!�,D"'&47>4&'."2764'&""'&4762"&'.467>2�****��

		[!  !!SVR!�2///�/�P��		

_/�///�-!RVS! !! �+jnj+,+jnj+��		

Z!RVS!!  !�7/�///�P��

		_///�/�2 !! !SVS �****
���(,048<JN\j'.'54&#!"313!26526=4&!5#73;#73#73#%546?>;#"&#3#4&+"#!7+'32�`&��%`	
8(&�&(8
������F!I��I@�jF����`
[�;
@���
�
��`
;�[
`Z��&&��
 (8�`&&�8( 3���`������  
���
@��@

���`
��
���+VZ^bfjnrvz#54&#"#54&#"#54&#"#"3!2654&##!"&546;326=3326=3326=323#3#3#73#3#3#3#3#3#��

�

�

�#22#V#22#
��

�

�

�

�
� ����������������`@

@@

@@

@2#�
#22#�#2��

�
@

@@

@@

@
�`@`@`````�```����(AEIPi�4632#"&%81=4&#!"3!26=81>4&!2.#154&#!".5463!5!!5!"&'5#!"&53!2!"3!7!"&5463!267>7461%%%%�8(�pIggI@Ig000���

�`
B.p�`��`���
�B.��.B9 �
��B^^B )��(88( 	@%%%%��`(8gI��IggI0$flfd
��

~(.B` @  @ ��.BB.�
@^BB^@8((87%B%����(5BNZr�����&>76..7>'&676&'.7>'7&676&.7>71"01&'&67>71>0#&'&67>7>'0"1&'&67#>7>1'.73>7816''.7>706161'.7>76016�b˵�'(M�cb˵�'(M��9V~C"#~��VV}D""��V�0

1
	$

SI�?JJ�?�2)b11*a�G-(?nkD>c
6Z83Q��(?H-
2>dlC3QY8
�(M�cb˵�'(M�cb˵���"��VV~C"#~��VV}D"�
1
	0
Y

�?JJ�?IJ���a12)b11*,1H?+Ik
bD=Y
P8E
?+1GucCIkOQ7
=Y
 `DT`l�.+";26=4&'#537'.+54&#!"31;326733267326=4&"&5463!2#"&54632!"&546327+.#"#.#"#"&=!26=32 

�
� `��*�8(� (88(8(%
D--D
�D--D
%(8�h

�

�&&%%�%%&&�
%
D--D
�
D--D
%
�(8��R
�

0	B��%�@(88(��(8`(8)77))77)8(�I
`

��
��&&&&&&&&�
)77))77)
`8(��	����(2;ENV_it~�����"32>54.#.'>7.'>70"#502.'.'>7:.'>7#>.'3.'>75*17>7'.'53'5>7##>3.'.'>73�g��NN��gg��NN��H� <19�B(BC"$-I#H&6Bu.7=|&H#I-�7.uB%=%O)��&I"�7;k+36 W"CB(�3+k; 6"I&��)O%���< �9<�8-!�8�!-�N��gg��NN��gg��N� 5e/
$7���!U2
�^&c;
�<-!4[*�
;c&�!-<%[\
�2`��1n:�f
2&
+M �
2U!�
&2
 M+)�:n1��
,`2$
/e5N��=s4BIQ*��4s=*QIB���� $(,04!2#!"&546"3!2654&#!3#735!5%35!5��%&�`%&

�

�` ``  ������%��%%�% 
��

�
@`@  �  �  ��  ����#!2#!"&54635!3535!5!5��%&�`%&:��`@ ����%��%%�%`  ``   �  @  ��`-148<ENRVZ!#37#7?4&#!"!732#!"&57546;3'375!'9>5!7%9!5!5!5���HH6lG$h
� 
fR��mm�%`&�`%`%��>>|�0�p00�������4�����`��`�@?? ]

��Z�``%lT�@%%�Tl%66�U++U*+���������`W  `  `  ��`+.26:'463!2!37!'''7/53!265''!5!5!5ii
�
k��&9�9�7F�����Fz`%�&`zImmc��`��`�`Z

��Z 11<����<g�T�@%%�T�g�``�  `  `  ����!$	#!"&54677"3!2654&#	!�ff
�`
&%�&%��������7��

�)%��%%�%������7%"3!2654&#����&%�&%b����`%��%%�%��`		3!265#!"&5	��``����
�
 &�`%��6���0��D�\

��\%%�`����`	'%%#!"&5	�..����&�`%�������C�@%%�`����`(,/37@I#37#74&#!"732#!"&57546;3'375!'9>5!7%96l�
� 
�Hwmm�%`&�`%`%��>>|�0�p00�������4���

���``%lT�@%%�Tl%66�U++U*+���������`��`)'''7/53!265'7"374&#!�F�����Fz`%�&`z��mm��
Ȏ�
� <<����<g�T�@%%�T�g�`` 
����
����	),.5467!'7!77"3!2654&#	!����������VV�Z&%�&%����������������KK%��%%�%������
'''7'7%"3!2654&#>�TT�����@&%�&%�HH������%��%%�%��`
%	3!2653!	#'%9!9.5�p%�&���@`�����4�`���@%%������)��`�����`
	3!2651'''7'7%�p%�&b�TT����`���@%%��^�HH������@���	 +.1594&'17''!7!"&5463!2!17'	!!'3535@��G0��VV��-@�%&�%��`�*��f@����0�   ��xxQCKK�Ll%�%%���7��������``�  @��� $('7'%77!"&5463!2'7!73535�q�������TTzK�-%&�%P__�`�   a������HHi%�%%����a���``�  @���4?BPW54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31/77@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<K4d{��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T8L4d|@���(5<'7'%77!"&5463!2.#"92654&#"3/77�D�������TTN		�%&�%5[�IggIIggIK4d{�;������HHC+)%�%%�2)��gIIggIIgXL4d|@���)@KN\'7'7754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"310DDDDDDD4�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<DDDDDDD
��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A'7'77/7'%77!"&5463!2.#"92654&#"30DDDDDDD�D�������TTN		�%&�%5[�IggIIggIDDDDDDD�;������HHC+)%�%%�2)��gIIggIIg@���	#1HSV32654&'.#"54&'1>3:9''!.54679!"&5463!2#"&'17'	!��-<T%-<T��^N/�gVV����%&�%7IgI3T����f@����T<.*T<.	��Q$-mYKK�!�%�%%�^<Ig5+������@���	<#"&'.#"/7'%77!"&5463!2.#"9�gI :�: Ig%D�������TTN		�%&�%5[�: IggI :�;������HHC+)%�%%�2)@���)@KN\533##5#5754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31  `` `��^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<@`` `` ���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A#53533##/7'%77!"&5463!2.#"92654&#"3 `` `` �D�������TTN		�%&�%5[�IggIIggI  `` `�;������HHC+)%�%%�2)��gIIggIIg@���4?BPT54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31'35@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<p���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T�  @���(59'7'%77!"&5463!2.#"91"&54632'35�D�������TTN		�%&�%5[�IggIIgg���;������HHC+)%�%%�2)��gIIggIIg�   @!506610'&#&106610'9�yy��yOs �cn�e_v�kp�6666��44#�0+!��.+ / @3>610'&1 sOy��yy�p���#44`5566 `5!!#!'7���   ��������  �� `3!'7! ర���pర  �`5
#% ��`  P����2��  �`3-  ��@���� �`
5!!#!��   ������  �� � �`3!!� ���p�`@@�@
32'46"74&+��(8��8(%��%�@8(�`���(8 &����S%@@�@
"74&#�(8��8(@8(�`���(8@ @ 5C533##5#59>54&'54&+"7#'46;2979"&54632` `` `�C]]C8(�(8�� ��%�%C]]C<TT<<TT `` `` �dEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T@ @)6533##5#5'46;2&"#"3:71'2654&#"3` `` `���8(�(8+L8!!8L+IggIIggI `` `` �����(88(!8L++L8!gIIggIIg@ @)7;9>54&'54&+"7#'46;2979"&54632'35�C]]C8(�(8�� ��%�%C]]C<TT<<TT��adEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T�  @ @*.'46;2&"#"3:71'1"&54632'35���8(�(8+L8!!8L+IggIIgg��A�����(88(!8L++L8!gIIggIIg�  `���1CTX.10>32.#"1032>10&'10#"&'7#"&'7267>57'.#"7467>3%SP1f�l:,`�^.JK�:l�f1PSKJ.^�`,�K5$`5K$��  #2kFTF<H<[*6FTFk2*[<H<�5K$`K5$���  `���,4;?.10>32.#"32>10&'#"&'7#7'"	SP1f�l:V5K��:l�f1PS�K5}$``$`��  #2kFTFVK5�6FTFk2�5K}$``$ ��  `���+9GU9210#".10>"1032>10.#19"&54632'2654&#"3152654&#"31l�f11f�ll�f11f�l`�^..^�``�^..^�`5KK55KK5(88((88(



�FTFFTFFTFFTF <H<<H<<H<<H<��K55KK55K 8((88((8@



`���!.;1210#".10>2654&#"351"&54632'2654&#"3l�f11f�ll�f11f�l5KK55KK5(88((88(



�FTFFTFFTFFTF��K55KK55K 8((88((8@



@ �`	%%!!%7'33' � ������ � �g��jj��g��@�@���������@ �`	%%!!���@��@���@�@�����`�`,BP^###5.54>32#"&'1'353537.'9%4.#"32>51'9#"&546324&#"32651Q�``�Q	+Jc88cJ++Jc80���``p�$9�&AW22WA&&AW22WA&@8((88((8 %%%%Q�``�Q08cJ++Jc88cJ+	��p``�9$�2WA&&AW22WA&&AW2P(88((88(%%%%`�`+###5.54>32#"&'14&#"3265Q�``�Q	+Jc88cJ++Jc808((88((8Q�``�Q08cJ++Jc88cJ+	O(88((88(s �` GUc	2?7'77'732654&#"'"'&47.54>32#"&'19"&54632'2654&#"31!�i



UO0O`?0?�7PppPPp�0P`P<9�
#=R..R=##=R.4Y@`�5KK55KK5(88((88(�i


UO0O`?0?�pPPppP7��0P`P<9�4.R=##=R..R=#
Y@`@K55KK55K 8((88((8s �`&3'"'&47.54>32#"&'12654&#"3�0P`P<9�
#=R./Q=##=Q/4Y@`�5KK55KK50P`P<9�4.R=##=R..R=#
Y@`@K55KK55K `$(,0;3!53546;2!#!"&53!265!33333'"354&+����%�%�` 8(��(8 %`%� ` ` ` �
�
�   %% @��(88(` ��%%@@����
  
 `!%03!53546;2!#!"&533333'"354&+����%�%�` 8(��(8� ` ` �
�
�   %% @��(88(``����
  
�``$(,0;3##!"&5#53546;233!265!33333'"354&+�@8(��(8@�%�%@�@%`%� ` ` ` �
�
�� ��(88(` @%&@ ��%&`@�� �� �� �
@@
�``!%03##!"&5#53546;2333333'"354&+�@8(��(8@�%�%@�� ` ` �
�
�� ��(88(` @%&@`�� �� �� �
@@
��@�	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�P?oR00Ro??oR00Ro?8cJ++Jc88cJ++Jc8 � �  �0Ro??oR00Ro??oR0 +Jc88cJ++Jc88cJ+`��@�+%1".54>32'5#3#35'2654&#"3?oR00Ro??oR00Ro/`@@�P�0Ro??oR00Ro??oR0�� �  �� �@	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�PS�l??l�SS�l??l�SL�d::d�LL�d::d�L� �  �?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�� �@+%1".54>32'5#3#352654&#"3S�l??l�SS�l??l�C`@@�P ?l�SS�l??l�SS�l?�� �   � @@"0#!!"&5463!#";#"&';"3!0&5461 �� ��(8/!0�0
% 0����`��8(p!/ ��`��%�� @@%%"&5463!#";!!0&5461!";# (8/!0� �� 0  8(p!/ �`��`� @@%38%#"&546;5!"3!37#"&5;'!01!"&5463'@��!/8(�@�``�� %
00�� �@@ � /!��(8���`��```��%0����@@� @@).#!#"&546;5!";#"&5463!01#'7����!/8( 0�P`` @@��`� /!��(8���``���@@3`����?]x�'?64/&"7'%#!"&546;46;46;232132762'54&+#!"&5#"3!2657%#"3!26=4&+54&+"32654&#"31NS��Si7		&		7S�ePC%� %% & 8( (8 & %s4&� 
 &��& 

�
�� @��@

 

@% &P				S��Si7

%

7S��cOt��%&�%%(88(%&`s&5��
%%
�`

 � �@�
 

 
 %& 				`����=Xe	''762754&+81#!"&=81#"3!2657>/&"%546;232#!"&=46;32654&#"3N��SijS7		&		7�PeC% &��% %%�%�&4s��& %@

��

@P				��Si<S7

%

7��Oct`& %& %�`&%@�5&s� &% 
 

 
				���`�5Vq~�%533##5#5!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3� `` `��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<�`` `` �&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T���`�5P]j%#53533##4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"32654&#"3�`` `` `% &��% %%!!8L+)��& %@

��

@P				�IggIIggI` `` `0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg���`�)Jer�%!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3'35(��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<p�&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T�  ���`�)DQ^b4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"31"&54632'35% &��% %%!!8L+)��& %@

��

@P				�IggIIgg��0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg�  ��� �=Xe546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �=J546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�& %@

��

@  %%� %% % &�				  &% 
 

 
 &�`%&�% &%  				��� �#Fan%'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				�h��hb &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �#FS%'7'#546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�h��h @& %@

��

@  %%� %% % &�				�h��hb &% 
 

 
 &�`%&�% &%  				��� �#Fan'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				@h��h��  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �&I546;232#!"&=46332654&#"3##!"&=#";'7'32654&�& %@

��

�				� &��% %%�h��h�%%  &% 
 

 
				  && %�`&`h��h��%�&��� �=Xel546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"37''�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				(��x�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				����x���� �=JQ546;232#!"&=46;32#!"&546;813!26=89'2654&#"37''�& %@

��

@  %%� %% % &�				(��x�  &% 
 

 
 &�`%&�% &%  				����x�	��� �=Xeimquy546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5!5!5!5!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				���`��`��`��`�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�  `  `  `  `  ��� �=JNRVZ^546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5!5!5!5!5�& %@

��

@  %%� %% % &�				���`��`��`��`�  &% 
 

 
 &�`%&�% &%  				�  `  `  `  `  
��� �=Xeimquy}���546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5%3#7353#7353!53#7353!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				0�```  @``  `�```  `  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��   `@  �`@    �`@    ��� �=JNRVZ^bfjn546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5%353535353!535353!5�& %@

��

@  %%� %% % &�				0�``@ @`@ `�``@ `  &% 
 

 
 &�`%&�% &%  				��   ``   �``     �``     �@� &-3!546;%!54&#!"!"&5463!2#?#"�
�%��`�
��
�0%&`&��v
`� 
�%  `

`��&`&%�@�0�
��@� 3!546;%5463!2!546;�%�&�� &`&�  
�`� &�%  `&%`���
�� 4?M%#53533##'!"&5!.#"74&#!"3!32654&'15463!2!9"&54632 `` `` ��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT� `` ` 
�gI(��&&��&#gI3T3`

`��T<<TT<<T��  +8%#53533###!"&5!.#"95463!2!2654&#"3 `` `` ��_&�)+L8!�&`&� �IggIIggI� `` `&��!8L+9@`&&`��gIIggIIg�� (3AE%!"&5!.#"74&#!"3!32654&'15463!2!9"&54632'35��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT��`
�gI(��&&��&#gI3T3`

`��T<<TT<<T�  �� ,0%!"&5!.#"95463!2!1"&54632'35��_&�)+L8!�&`&� �IggIIgg��@&��!8L+9@`&&`��gIIggIIg�  �@� &-159=3!546;%!54&#!"!"&5463!2#?#"!5!5!5!5�
�%��`�
��
�0%&`&��v
�@ �� ��`��``� 
�%  `

`��&`&%�@�0�
��  `  `  `  �@�  $(,!#"!"&55463!2!546;%!5!5!5!5��&�@%&`&�  
��� �� ��`��``��%�&`&%`���
�  `  `  `  
�@� &-159=AEIMQ%!"&5463!2#3!546;%!54&#!"7#"35%3#7357!5%3#73535%3#735��0%&`&��
�%��`�
��
�v
���``  `���``  `���``  @&`&%�@� � 
�%  `

`��
�   `@  �   `@  �   `@  �@�  $(,048<@!#"!"&55463!2!546;%35%35357!5%353535%3535��&�@%&`&�  
�� �`@ `���`@ `���`@ `��%�&`&%`���
`   ``   �   ``   �   ``   �@� &-43!546;%!54&#!"!"&5463!2#?#"'7''�
�%��`�
��
�0%&`&��v
���w�`� 
�%  `

`��&`&%�@�0�
�}��w��@� #!#"!"&55463!2!546;7''��&�@%&`&�  
��K��w�`��%�&`&%`���
3��w��@� &-159=3!546;%!54&#!"!"&5463!2#?#"3#7353#735�
�%��`�
��
�0%&`&��v
�``  @``  `� 
�%  `

`��&`&%�@�0�
�����`@  �@�  $!#"!"&55463!2!546;%3535��&�@%&`&�  
���   `��%�&`&%`���
���  �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!5!5�        %�%%� %         
�

� 
        ``�� ` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `  �  	�@`@DH3#53#3#3#3#53#%!"3#3#3#3#3#3#3!2654&#!5!7!5!�@@@@@@@@@@@@`� %@@@@@@@@@@@@%�%%`��  ��`� � � `   � �&  ` ` ` ` `  &&�&�� ` �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!!735�        %�%%� %         
�

� 
        � �� �` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `��``	�@`DH3#3#53#3#53#53#3#!"3#3#3#3#3#3#3!2654&#!5!�@@@@@@@@@@@@��`� %@@@@@@@@@@@@%�%%`�� � � �   � � @` &  ` ` ` ` `  &&�&����@`-V[32#!"&=35#535#535#535#535#535#546;7#3#33!2654&#!"#3#3#3#33'�@

� 
            
�``�     %�%%� %        @�@@@
� 

  ` ` ` ` `  
��``�� ` `  &&�&&  ` ` ` ��@@�@`!%)-159=AEJ32#!"&546;73535353535353535353535357�@%%� %%�``��@@@@@@@@@@@@@@@@@@@@@@@@`&� &&�&�```��  �    �  �      �    �  �    �@@S�  ` A5332#!"&546;533533533##5##5##5#"3!2654&+#5�  %%� %%  ` ` `` ` `  

�

  @  &�`%&�%             
�`

�
  �  �33#73#73#%3#!0"##5##5##5##5*1"3!2654&�  �  �  ��  � ` ` ` %%�%%�@@@@@@@@@@@@@@@%�`&%�&�  ` AEIMQUY5332#!"&546;533533533##5##5##5#"3!2654&+#5!5!5!5!5!5!5�  %%� %%  ` ` `` ` `  

�

  ����`��`��`��`��`�@  &�`%&�%             
�`

�
  �  `  `  `  `  `  �  �#'+/37;?CGK0"##5##5##5##5*1"3!2654&!5!5!5!5!5!5!5!5!5!5!5!%3#73#73#73#� ` ` ` %%�%%;�`��`��`��`��`��`��`  �  �  �  @@@@@@@@@%�`&%�&�` @ @ @ @ @ �@@@@@@@�  ` AEIMQUY]ae5332#!"&546;533533533##5##5##5#"3!2654&+#5!5%3#7353#7353!53#7353!5�  %%� %%  ` ` `` ` `  

�

  ��```  @``  `�```  `@  &�`%&�%             
�`

�
  �   `@  �`@    �`@    �  �?CGKOSW3#73#73#73#3#53#53#0"##5##5##5##5*1"3!2654&#535#535#53!5!5!5!5!5!   �  �  �  ��      � ` ` ` %%�%%��``````@����@@@@@@@�� � �  @@@@@@@@%�`&%�&��`@`@`�� � � �@`")3#!"&5463!!"3!265#"&=;'p�%� %&P��

�
�% 
v�`�%&�& 
� 

 %��
��@`!"3!265#"&=3;`��&%�%�& 
�`&� &% %��

�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`��`��`��`�`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@` $(,04;#!"&5463!3;!35'35!5!5!5!5!5`&�%� %&@ 
��������`��`��`��`�`�%��%&�&�
  `  �  `  `  `  `  
�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`@����` ���`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@`"&*.4;#!"&5463!35'35!5!5!5!5!5;`&�%� %&@�ࠠ����`@����` ���`
�`�%��%&�&�  `  �  `  `  `  `  ��
�@`+2%'7'#3#!"&5463!!"3!265#"&=;'h��h p�%� %&P��

�
�% 
v��h��hb`�%&�& 
� 

 %��
��@`!%37'7!"3!265#"&=3; h����&%�%�& 
��b��h��Z&� &% %��
�@`+2%#"&5463!;+7'7!"3!265'##"&=�

@%�
�h��hp��&%�%��v
 
�
�%��
@h��h��@&� &%@�0�
��@`!%#"&5463!;+7'7;�%&@&�%�h��h�
�&�&�%��%`h��h��`�
�@`'.33;#!"&546;77!"3!265'##"&=%3'`%�
� 

 ``p��&%�%��v
��@@@�%��

�
��``` &� &%@�0�
���@@�@`"3;#!"&546;7#73;`&�%� %& ``�@@�
�`�%��%&�&��``���@@3�
�@`*159=5##!3#!"&5463!!"3!265#"&=;'3#3#73#`���p�%� %&P��

�
�% 
v���``�``�``�`����%&�& 
� 

 %��
��� ���@` $;#!"&5463!3;357335`&�%� %&@ 
�� ` ` ``�%��%&�&�
������� `���@`")CRb3#!"&5463!!"3!265#"&=;'53326=33#535.5714632#"&57"326=4&#1p�%� %&P��

�
�% 
v�� /!!/ 7)@�@)7@0	
	
`�%&�& 
� 

 %��
��00!//!00*?A  A?*���	�		�	�@`,2AQ!"3!265#"&=53326=33#535.5;14632#"&57"326=4&#1`��&%�%�&� /!!/ 7)@�@)7�
���0	
	
`&� &% %���00!//!00*?A  A?*0�
���	�		�	�@`/BIM#5;##5353#5;#'#5;#3#!"&5463!!"3!265#"&=;'!���� �� ������ ����P�%� %&P��

�
�% 
v���` @@@`@@@@@@@�@@@��%&�& 
� 

 %��
���@��@`28<#373##5335#'#373#'#373#;#!"&5463!3;!�� �� �� �� �� �� �� ��@&�%� %&@ 
�� ` @@@`@@@�@@@�@@@��%��%&�&�
`�@��@`-@GTa.#"3265.#"326=3#!"&5463!!"3!265#"&=;'1"&5463271"&54632�
!//!!/��
!//!!/��%� %&P��

�
�% 
v�����/!!//!0@�/!!//!���%&�& 
� 

 %��
��P �@`06CP#"&546325%#"&54632!"3!265#"&=3;2654&#"3%2654&#"3��/!!//!
 /!!//!
`��&%�%�& 
��P�2�!//!!/�@��!//!!/P&� &% %��
� �@`")-159=AEIMQUY]3#!"&5463!!"3!265#"&=;'!!3535%35353535353535353535p�%� %&P��

�
�% 
v�����``����                   `�%&�& 
� 

 %��
�����@������  @  @  @  @    @  @  @  @  �@` $(,048<@DHL;#!"&5463!3;!3535%35353535353535353535`&�%� %&@ 
���������                   `�%��%&�&�
���` ������  @  @  @  @    @  @  @  @  �@`"),03#!"&5463!!"3!265#"&=;'
77'p�%� %&P��

�
�% 
v�� �� ��`�%&�& 
� 

 %��
��p���]]�@`;#!"&5463!3;%%7'`&�%� %&@ 
��@ ���`�%��%&�&�
��]�]]�@`#6=!!377#53#5'3#!"&5463!!"3!265#"&=;'�_@�� ]Fg*` {F��%� %&P��

�
�% 
v�e �dBn `)�AZ�%&�& 
� 

 %��
��@`,!"3!265#"&=3;!!377#53#5'`��&%�%�& 
���_@�� ]Fg*` {F`&� &% %��
��e �dBn `)�A�@`29F#5#"&54673#!"&5463!!"3!265#"&=;'2654&#"3�2HQ8<TJ6p�%� %&P��

�
�% 
v�pIggIIggI HR6JT<8Q�`�%&�& 
� 

 %��
��0gIIggIIg�@`"(#5#"&5467!"3!265#"&=3;��?[dEIg]C`��&%�%�& 
� �[_C]gIEd�`&� &% %��
	�@`")59=AEI3#!"&5463!!"3!265#"&=;'35335335!5%!5!5!5!5p�%� %&P��

�
�% 
v���     ���`��`��`��`�`�%&�& 
� 

 %��
�0@ �� @��  `  �  `  `  �@`$(,048;#!"&5463!353353357;!5%!5!5!5!5`&�%� %&@��     �
����`��`��`��`�`�%��%&�&`@ �� @`�
�  `  �  `  `  �@`")-393#!"&5463!!"3!265#"&=;'3'77'p�%� %&P��

�
�% 
v�`@ @�``II�``II`�%&�& 
� 

 %��
��P��``JJ``JJ�@`$(;#!"&5463!3;7'7'7''3`&�%� %&@ 
��`ii�`��iiJ@ @`�%��%&�&�
�jj����jj���`Adk#"3!2654&+.#".#"179:32+#!"&5463!'5#"&=!"3!26=#"&5467>329;'&&@&&,
7#.B�"7
 *8(`%� %&`� �%��

�
�(8$S9)�
v� %%%%%&B.k%4"(8@%&�&��%�
� 

@8(2
8M
��
���`<B:321#!"&5467>321#!"&5463!;.#";;�"7
 *8(��(8$S9&?%� %&@&�9 Aa%K5�
��%4"(88(2
8M#�� %&�&�%�R=<$5K�
�����"7J]d18181463463!###!"&54631"3!265!"&5897"3!2651!"&51%!"3!265#"&=;'�&&`�%%%� %%

�
�@%@

�
�@%���

�
�% 
v� %%�%%%&�& 
� 

&�@
� 

&�@
� 

 %��
������0BH463!;###!"&54634631"3!265!"&53!265!"&5"1%; &@&�%&&� %%%@

�
�@% 
�
�@%
�
�`%�%��%%%&�&&���
� 

&� 

&�
��
�����+2EL3265#"&=!"3%5463!+#!"&546;%;'!"3!265#"&=;'�
�%��
���`&`�%�%� %&��
v��

�
�% 
v�0�P
 %�
`��`&�%`%&�&p�
��
� 

 %��
������&,2%3265#"&=!"3##"&=!"3!26=;%;�%�&��&�� �&��&%�%
���
�`% %�&@��%�&� &%``�
@�
�@`!4;H%#"&546323#!"&5463!!"3!265#"&=;'2654&#"3*-<TT<<T�e�%� %&P��

�
�% 
v��.BB..BB.�T<<TT<.��%&�& 
� 

 %��
���B..BB..B�@`$*7%#"&54632!"3!265#"&=3;2654&#"3*-<TT<<T�u��&%�%�& 
���.BB..BB.�T<<TT<.�&� &% %��
��B..BB..B�@`")33#!"&5463!!"3!265#"&=;'7'373p�%� %&P��

�
�% 
v�p�0��00��0`�%&�& 
� 

 %��
���`�`��`��@`"!"3!265#"&=3;7'373`��&%�%�& 
��Ѐ0��00��0`&� &% %��
�``�`��`����`�'BIZ'!"3!;26=4&+54632354&'9!"&5463!;"&#""#"&=32+"&=463���&%`
�

�/!!/ $���

@%�.B
�v
0�
	�
	u+�&� & 

�
P!//!!7
��
�
�%��B.P
`�
��P	�		�	���`� C#"&=!"3!5467546325';'32+"&=46354632#54&#"3�&��&%@T<
�
���

�

B..B /!!/��%�&� &�	8<T�@
�@
�

�
P/AB.!//!P���`�8AHY%;26=4&#154&''!"3!5!"&5463!;"&#"1"754632#"&=32+"&=463@
�

$���&%`��

@%�.B
@/!!/�v
0�
	�
	  

�
0!7
K�&� & 
�
�%��B.0
`�0!//!0��
��P	�		�	���`� 8A#"&=!"3!546754632';'";26=4&#54&#"34632#�&��&%@T<
�
�� 

�

B..B /!!/��%�&� &�;U@
�p0
�

�
0.BB.!//!0���`� '*.2%'!"3!!'!"&5463!;'#"&=!73535���&%&�`����

@%�P�G�v
P��Ј   ��&� &@�B
�
�%�9���
�����``�  ���`�"%#"&5463!;';!73535��%&@&�pЀ
�p�`�    &�&�%�B���`�
�����``�  ���`�"=DQ%'7'77932654&''!"3!'!"&5463!;.#"9#"&=1"&54632�DDDDDDD�G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTyDDDDDDD#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%'7'77!"&5463!;.#"9;2654&#"3�DDDDDDD��%&@&�)+L8!?
�PIggIIggIyDDDDDDD&�&�%��!8L+9`�
�@gIIggIIg���`�18EL%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632/77(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTLK4d{ #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T8L4d|���`�"/6%!"&5463!;.#"9;2654&#"3/77��%&@&�)+L8!?
�PIggIIggIK4d{ &�&�%��!8L+9`�
�@gIIggIIgXL4d|���`�"=DQ%533##5#5932654&''!"3!'!"&5463!;.#"9#"&=1"&54632� `` `G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�`` `` �#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%533##5#5!"&5463!;.#"9;2654&#"3� `` `?��%&@&�)+L8!?
�PIggIIggI�`` `` �&�&�%��!8L+9`�
�@gIIggIIg���`�18EI%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�� #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�  ���`�"/3%!"&5463!;.#"9;1"&54632'35��%&@&�)+L8!?
�PIggIIgg�� &�&�%��!8L+9`�
�@gIIggIIg�  ���`�	*EL%#"&'7.54632932654&''!"3!'!"&5463!;.#"9#"&=!T<.��T<.�G)Ig5+���&%H��

@%�Ig
	-�v
�-<T��-<T�#gI3Ts�&� & 
�
�%��gI(�
����`�
28%#"&'7'.#"7!"&5463!;.#"9;9gI 8�:!Ig����%&@&�)+L8!?
��8 Ig�gI!:��&�&�%��!8L+9`�
���`�18EOS%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'3#35#5'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTl  `    #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�    @@  ���`�"/9=%!"&5463!;.#"9;1"&54632'3#35#5'35��%&@&�)+L8!?
�PIggIIggy  `    &�&�%��!8L+9`�
�@gIIggIIg�    @@  @@*7DHR%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'353#35#5�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT< @  ` �(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�  @    @@@ -7;%!"&5463!!2.#"9!51"&54632'3#35#5'35���&&`@�&)+L8!�_�PIggIIggy  `   �%@%�%�!8L+9�  �gIIggIIg�    @@  �@`")-159=AEIM3#!"&5463!!"3!265#"&=;'!5%3#7353#7353!53#7353!5p�%� %&P��

�
�% 
v���```  @``  `�```  ``�%&�& 
� 

 %��
���   `@  �`@    �`@    �@` $(,048<;#!"&5463!3;!5%353535353!535353!5`&�%� %&@ 
����``@ @`@ `�``@ ``�%��%&�&�
�   ``   �``     �``     �@`-@GT%#"&5463253#'##3#'/33#!"&5463!!"3!265#"&=;'2654&#"3�
!//!
  �\" ` ` """D��%� %&P��

�
�% 
v��/!!/�``�` ```�%&�& 
� 

 %��
��p�@`06C%#"&5463253#'##3#'/3!"3!265#"&=3;2654&#"3�
!//!
  �\" ` ` """D���&%�%�& 
���/!!/�``�` ```&� &% %��
� ����#3'!3;26=+"&=#!5%5!!�ٌ�F��%�% /!�!/��������@%&@ 0!//!0���������;26=3'!3!!!�%�%ٌ�F������@&%@�����` �@#.<3'!3;26=+"&=#!5!!;26=!!+"&=#!5�ٌ�F��%�% /!�!/�� ����%�%��@/!�!/��@��@%&@ 0!//!0���� ��� %& 0!//!0��` �@#!!!!+"&=#7!#+"&=��� �� �%�%ٌ���%�%@�� �0!//!0 ��@%&@`@�@$147>35#"&=!"3;26=+"&=#!5%57463!!5!3';'���%��
�%�% /!�!/��`&`�`��`9�99�
v�`�%�
�`@%&@ 0!//!0���&�f��� [[[U�
�`@�@#&)0+"&=#463!;#5'5'!"!#7#5#"&=�%�%�
@%��`���&` �@99�9��v
`@&%@�
�%�00�f�&����� [[[U�
�
`@�@
!-4?CGK3!53;265%!'5'!"7#75!463!;#"&=!+"&='!53535��� �/!�!/�� `���&``99`9��
@%���v
� �@��`���@��0!//!@�� �f�&���[[[[�
�%���
��000�    �  	`@�@%)-1<5'5'!"!#7#5463!;#"&=!535355!+"&5�`���&` �@99�9��
@%���v
����`��� %�%00�f�&����� [[[[�
�%���
���    �  ��  %%``� !/'7'#3#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/�h��h`��@&%@� ���  ���0!//!``� !'7'#3'#53!3#3;26=�h��h �ٌ��������%�%�h��h`�`� ���  �@%%@``�`!/'7'#73#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/ h��h����@&%@� ���  ���0!//!``�`!'7'#3'#53!3#3;26=�h��h �ٌ��������%�% h��h��@� ���  �@%%@ `� $!2#!"&5463!'!"3!2654&#!�&%��&&`,?��

 

�l�%�@%%@%��
��

�
 `� '!"3!2654&#!@��&& %&����%��%%�% `� )5463!!2!#!"&5%'!"3!2654&#!@
M?�
��`
��
�@��&& %&�� �
�
@ ��

`��%��%%�% `� 5463!!23!265! &`@�&�`& %�` �%�%@ ��%%` `7J5463!!2!#!"&55463!!2#1512654&#!'!"#'!"3!2654&#! 
M?�
��`
��
@&`@�&%

�l?��
 �@��&& %&���
�
@ ��

`@ %�%�@% 
�
�
 ��%��%%�% `,5463!!23!265!5463!!2#14&#!'&`@�&�`& %�``&`@�&%8(��@�%�%@ ��%%`@ %�%�@%�(8� `� 2!#!"&5!'7'%5463!!2%'!"3!2654&#!�
��
�h��h�@
M?�
�`@��&& %&����

`��h��h" �
�
@��%��%%�% `� !#!"&5!'7'%5463!!2�%��&�h��h� &`@�&��%%`��h��h" �%�%@ `� 1%!"&5!#!7'7%5463!!2%'!"3!2654&#!�
`
��h��h�`
M?�
�`@��&& %&���
`��
 h��h��
�
@��%��%%�% `� %!"&5!#!7'75463!!2�&�%��h��h�@&`@�&`%`��% h��h����%�%@@@=IZ%!"&5!"&#""754&#!'!"3!;26=4&+54632354&'9%5463!!232+"&=463�`
`.B
�&��@��&&�
�

�/!!/ $��
M?�
p�
	�
	�
`AA/P
ի%�%��% 

�
P!//!"6
k�
�
@��	�		�	@@A5463!!23!5467546325!32+"&=46354632#54&#"3&`@�&�`%�T<
�`� 

�

B..B /!!/�@�%�%@ ��%�9<T(�
�

�
P/AB.!//!P@@3<IZ%546315463235!3!"&5463!!212+"&=7354&#"%!54&#!'!"";26=4&+�
B.��
��`&&`@�&$

�
@�/!!/�`
�l?��
�	
�	
��`
0.Ba��
 %@%�%�
7!0
�

 �0!//!�@
�
���	�		�	@@6?5463!!23!5467546325!";26=4&#54&#"34632#&`@�&�`%�T<
�`

�

B..B /!!/�@�%�%@ ��%�9<T(�P
�

�
P.BB.!//!P `� #6C#"&54632!2#!"&5463!'!"3!2654&#!2654&#"3
-<TT<<T���&%��&&`,?��

 

�l<.BB..BB.?T<<TT<.�%�@%%@%��
��

�
��B..BB..B `� $1#"&54632'!"3!2654&#!2654&#"3
-<TT<<T��@��&& %&��P.BB..BB.?T<<TT<.��%��%%�%��B..BB..B  (+/3%!3!"&5463!!2!7!54&#!'!"!'3535��P��
F��&&`@�&`�`&��`
�l?��
�0�   ����
 %@%�%�b�@�@
�
���``�    %!"&5!'%5463!!2!73535`��&�p��&`@�&p�`�   `%`��`�%�%@����``�    6CP%'7'77'1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3PDDDDDDD�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�DDDDDDD(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +7%!"&5!.#"15463!!22654&#"7'7'77���&�)+L8!�_&`@�&PIggIIggIDDDDDDD`%`p!8L+9��%�%@�gIIggIIg�DDDDDDD  *7DK%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3/77�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<K4d{�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T8L4d|  ,3%!"&5!.#"15463!!22654&#"3/77���&�)+L8!�_&`@�&PIggIIggIK4d{`%`p!8L+9��%�%@�gIIggIIgXL4d|  6CP%533##5#51.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3@ `` `-	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�`` `` `(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +8%#53533###!"&5!.#"15463!!22654&#"3@`` `` ���&�)+L8!�_&`@�&PIggIIggI� `` `%`p!8L+9��%�%@�gIIggIIg  *7DH%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'35�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<p�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�    ,0%!"&5!.#"15463!!21"&54632'35���&�)+L8!�_&`@�&PIggIIgg��`%`p!8L+9��%�%@�gIIggIIg�    	$>K32654&'.#"'1.546325!3!"&5463!!2#"&'1!54&#!'!"��-<T%-<T,	
gI��
��x&&`@�&+5gI)G�X`
�l?��
*�T<.*T<.
(Ig���
 %@%�%�T3Ig#�@
�
�  
)5#"&'7'.#"7!"&5!.#"15463!!2�gI 8�:!Ig����&�)+L8!�_&`@�&?8 Ig�gI!:��%`p!8L+9��%�%@@`� -33#!"&5!75463!!2%'!"3!2654&#!3'5�
��
�``�`
M?�
�`@��&& %&��@�@@��

`��``@�
�
@��%��%%�%��@@�@`� !3#!"&5!7%5463!!275#�%��&``�@&`@�&��@@���%%`��``  �%�%@ �@@��@`Udkx5#535#535#535#535#535#535#5#"3!265#"&=#3#3#3#3#3#3##"&54679#!"&5463!';'"32654&#�             `

�
�%�            $/!!/%�%� %&`��
v��~"             
� 

 %�            B,!//!,��%&�&ఐ
��0�@`Y_l5#535#535#535#535#535#535#535#"3!265#"&=##3#3#3#3#3#3##"&54679;"32654&#�              �&%�%�&�             $/!!/%�
��p~"              &� &% %�             B,!//!,�
���@`Rcp32654&'535#535#535#535#535#535#532#!"&546;3#3#3#3#3#3#3"3!2654&#!12#"&546%/!!/$            �(88(��(88(�             �5KK5`5KK5����,!//!,B            8(��(88(`(8             �K5��5KK5`5K��@`Wd5#535#535#535#535#535#535#535#"3!2654&+#3#3#3#3#3#3##"&54679"32654&#              �5KK5`5KK5�             $/!!/%~"              K5��5KK5`5K             B,!//!,�pP 1#".54>32"'%2>54.#"3n"P,8cJ++Jc88cJ++%���2WA&&AW22WA&&AW22+Jc88cJ++Jc88c%��&AW22WA&&AW22WA&��` 3#".54>321"/'2>54.#"3n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp +@533##5#5#".54>327"/72>54.#"3� �� �E$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2 �� �� � %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&��` *?533##5#5#".54>321"/'2>54.#"3� �� �."P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+ �� �� �+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp 48#".54>327"/72>54.#"3!5�$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2� E %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&  ��` 37#".54>321"/'2>54.#"3'!5n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+� 2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�  �@`+I_hy9.54632#"&5'326=>54&#"154>322#!"&54639;54632354.#"!54&#""3!2654&#!�	
 /!!/�&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T`%%�%%� S		@@@!!//!!p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�&��&&@&�@`2;1.54632#"&59"3!2654&#54.#"354632�	
�(88(�(88(&AW22WA&`T<<TS		P8(��(88(@(8p2WA&&AW2pp<TT<p ����+Vr�%9.54632#"&5'326=>54&#"1!2#!"&546354&#"#"&=4>32'4.#"3126=46323"3!2654&#!�	
 /!!/`�(88(� (88(T<<T&AW22WA& !8L++L8!
	gIIg @%%�%%� �S		@@@!!//!!8(��(88(@(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &��&&@& ����@%326=>54&#"14&#"#"&=4>32!2#!"&54635�
	�T<<T&AW22WA&�(88(� (88(�S		S�<TT<��2WA&&AW2�8(��(88(@(8����`�.Ndz�#"&=4&#"!2#!"&546354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'"3!2654&#!T<<T(88(� (88(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%%�%%� �`�<TT<�8(��(88(@(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&��&&@&���`�D%9.54632#"&554.#""3!2654&#!&4=4632326=	
&AW22WA&(88(�(88(��T<<T�S		  2WA&&AW2�8(��(88(@(8�<TT<t##T�``
9=AEIMcl7!54&#!"373!265!%5#54>322#!"&5463937#37#37#37#37#354632354.#"!54&#"�`%� %0H%�%��`0�(&AW22WA&(88(� (88(@0@0@0@0@0@0@0@0@0@�x gIIg !8L++L8!@ T<<T�&&� @@`%% @@�p2WA&&AW2p8(��(88(@(8��@@@@@@@@@@pIggIpp+L8!!8L+pp<TT<
�`` $9B%5##!"&5!%53373373373373373754&#54.#""54632`80h8(� (8��`h0 0@0 0@0 0@0 0@0 0@0�8(&AW22WA&(8�T<<T�@@ (88( @@@@@@@@@@@@`�(8p2WA&&AW2p8(� p<TT<p�``*Lbk�1.54632#"&5'326=>54&#"154>322+".=4639;54632354.#"!54&#"";2>=4&#!	
 /!!/�&AW22WA&(8(F]5�5]F(8(  gIIg !8L++L8!@ T<<T`%#=R.�/Q=#%� S		@@@!!//!!p2WA&&AW2p8(�5]F((F]5�(8pIggIpp+L8!!8L+pp<TT<�&�.R=##=R.�&�``6?1.54632#"&59";2>=4&#54.#"354632	
�(8(F]5�5]F(8(&AW22WA&`T<<TS		P8(�5]F((F]5�(8p2WA&&AW2pp<TT<p@���+Zv�%9.54632#"&5'326=>54&#"1!2+".=46354&#"#"&=4>32'4.#"3126=46323";2>=4&#!�	
 /!!/`�(8(F]5�5]F(8(T<<T&AW22WA& !8L++L8!
	gIIg @%#=R.�/Q=#%� �S		@@@!!//!!8(�5]F((F]5�(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &�.R=##=R.�&@���D%326=>54&#"14&#"#"&=4>32!2+".=4635�
	�T<<T&AW22WA&�(8(F]5�5]F(8(�S		S�<TT<��2WA&&AW2�8(�5]F((F]5�(8����`�2Rh~�#"&=4&#"!2+".=46354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'";2>=4&#!T<<T(8(F]5�5]F(8(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%#=R.�/Q=#%� �`�<TT<�8(�5]F((F]5�(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&�.R=##=R.�&���`�H%9.54632#"&554.#"";2>=4&#!&4=4632326=	
&AW22WA&(8(F]5�5]F(8(��T<<T�S		  2WA&&AW2�8(�5]F((F]5�(8�<TT<t##T�``<R[%5!5!5!5!5!5!4&#!"3!265!5!54>322#!"&54639;54632354.#"!54&#"@�� �� �� %� %%�%�� ��&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T�@ @ @ %&��&% �p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�``)2%!5!5!5!5!5!5!5!4&#54.#""3!26554632`��@��@��@��@8(&AW22WA&(88(�(8� T<<T` @ @ @ (8p2WA&&AW2p8(��(88(�p<TT<p �`#8CN[%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3 %� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



 �`
)65463!2!#"&5463!2+!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



`�%%��8( (88(��(8 �%%`



 ����#8CN[%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



 ����
)65463!2!#"&5463!2+5!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



��%%��8( (88(��(8� �%%�



@�`#8CN[_c%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3!5!5@%� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



�� �` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



�  `  @�`
)6:>5463!2!#"&5463!2+!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� �`�%%��8( (88(��(8 �%%`



�  `   ����#8CN[_c%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3!5!5 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�� �8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



�  `   ����
)6:>5463!2!#"&5463!2+5!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� ���%%��8( (88(��(8� �%%�



�  `  
��`&*.26:>BFJN!#53!53#'#5#"&=!"#463!';'3#3#35#3#3#3#35#3#3#3`�`  �    �%��
 &`��
v�� ` ` ` ` ` ` ` ` ` @@�@@���%�
�`�&ఐ
���� ���� ��� ��� ��� 
��`!%)-159=AE!#53!53#%463!;;3#3#35#3#3#3#35#3#3#3`�`  �  ��&@&��
�  ` ` ` ` ` ` ` ` ` @@�@@���&�%��
���� ���� ��� ��� ���   �`1<IMQUY]aeimq%326=4&+54&#!"#";5!%"&=463!2#5!!2!54632654&#"33335333353353353333533#35@ (88(@%� %@(88( ��@%&�&%� ��
��




��             `   � �8(�(8�%%�8(�(8`` %�%%�&``@
��
�`



�������������
  �`
+/37;?CGKOS5463!2!#"&=463!2+5!%2654&#"33335333353353353333533#35�%�%��  (88(�(88( �``



��             `   � `�%%���8(�(88(�(8``



�������������
� ��'+/37CW^%#53326=#+#53#53#53#"&=3;%5#!53%5#!53%53#5!#53%#5#"&=!"#463!';'�@@  % 
 �@@`@@`@@` % 
  �� @ �� `  �`  � �%��
 &`��
v�   %  
       &  
`@@@@`@@@@�@�@@�@ �%�
�`�&ఐ
�
� ��#'+7COU%#5335##5335##"&=3;%5##5%5335%53#5!#53%5#"&=!"+5326=;`@@ @@�@@ @@� % 
    ��   `  �`  ��&��&`%  
�
�         &  
�@@ @@ @@ @@�@�@@�@ �%�&�`�� % 
 �
@�K%'7'##"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B�Xh��hh�K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @�)-%!2654&'1.#".#"13!'7'5'35B^8,`@'g?.R=#*6^Bh��h  �^B2P<P		3?#=R.O1B^�h��h����@`� K'7'#'#"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B��h��h���K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @`� )-!2654&'1.#".#"13!5'7'#35B^8,`@'g?.R=#*6^Bh��h  ^B2P<P		3?#=R.O1B^�h��h���@�� !EHLP#"&54671.54632>321+'32654&'1.#".#"1;!!73535l�5K9*pP?b.9R)7K5���yB^8,`@'g?.R=#*6^By9�И�Ј    K5-F
	PpH8M7
E-5K�� ^B2P<P		3?#=R.O1B^` ��``�  @�� "%)-32654&'1.#".#"1;!73535�QB^8,`@'g?.R=#*6^BQ��`�   ^B2P<P		3?#=R.O1B^@@���``�  @���@3!2654&'1.#".#"1%#!"&54671<54>32>329�*9K5 5K7)R9.b?Ppy,8^B��B^6*#=R.?g'@`�
F-5KK5-E
7M8HpP	P2B^^B1O.R=#?3		P<@���#!"&54671<54>32>32<,8^B��B^6*#=R.?g'@`�P2B^^B1O.R=#?3		P<`���#(-23'!3;26=+"&=#!5%5!!!'!!'!!'!�ٌ�F��%�% /!�!/���������*��L&&����@&%@ 0!//!0������  @  @  `���#;26=3'!3!!!!'!!'!!'!`%�%ٌ�F���������*��L&&��@&%@������  @  @  �``%#3'3#546;274&+"@��99r�
@
@`&@%���JJ@`

���&&�`�``%#'54&+"`��``�&@%�� ��@`&&`��3�	''7627'7>/&"��SijS7		&		7�Pe ��&4�-;��Si<S7

%

7��Oc� �5&�-��3�
764/.?'�7&47��� �jj���;75&8���� �j���`�`+BI	''76271'!"3!2657>/&"#!"&5463!;?#"&=N��SijS7		&		7�PeC���&%�%�&4s 
� 

@%��� ����v
;��Si<S7

%

7��Oct�&� &%@�5&s���

�
�%��� �а
�`�`/5'?64/&"7'%#!"&5463!;762;NS��Si7		&		7S�ePC%� %&@&��4&�
�;S��Si7

%

7S��cOt��%&�&�%�&5��

��� �#/CJNRVZ^k%9>54&#"!"&5463!;+593267'73265'!"3!75#"&=35'35!5!5!51"&54632�B..B�

@%�
@�

00�@%���&%PP@�v
��������`��`�p!//!!//�(.BB.("
�
�%��
"~00S%@�&� &�PP�0�
��  `  �  `  `  ��/!!//!!/	��� �#/59=AEIV%9>54&#"!"&5463!;+575#"&'1;!35'35!5!5!52654&#"3�B..B�%&@&�%@�00

@
��������`��`�p!//!!//!�(.BB.(B&�&�%��%B�00�5�
  `  �  `  `  ��/!!//!!/�`�!-CGKO\!2654&#!";5.54632975#"&'1#"&5463!2#!'5!5!5352654&#"3��

��

@B..B�00

 @&&�&&�`PP @�� ���0!//!!//!BB
�

�`
B(.BB.(~00~K%�%%�`%�PP��  `  `  `/!!//!!/���!-159F9>54&#"#"&5463!2#!575#"&'1!5!5352654&#"3�B..B@&&�&&�`�00

@@�� ���0!//!!//!B(.BB.(b%�%%�`%b�00�5  `  `  `/!!//!!/	�@�@"&*#5!!#!7!'5!!3'353535'35`����`��� ������� ` @`������ ��@��������������  �  @  �@�@#!35!!!3!#3#353535'35�@�@��@�����@��``   `������ �� �����  �  @  `@�@-5!!!'!!32+"&5463";2654&+`���'Ҍ�F��@�%%�%%

�

�0���� �@��%%%% 



`@�@	!!'!";2654&+`������F�%%�%%�@����%%%%`@�@	
+05:!!'!!32+"&5463";2654&+!'!!'!!'!`������F��@�%%�%%

�

�`���*��L&&�@���� �@��%%%% 



�  @  @  `@�@	"'!!'!";2654&+!'!!'!!'!`������F�%%�%%�`���*��L&&�@����%%%%�  @  @  `��-15!!!'!!32+"&5463";2654&+!5`���'Ҍ�F��@�%%�%%

�

����p������@��%%%% 



@```��!5!!!";2654&+��� �ࠠ ���%%�%%�```�� ����%%%%@@� -#!#!!%!532+"&5463";2654&+�@`@�  ��  � �%%�%%

�

� �� �@����%%%% 



@@� !%5!";2654&+`�  ��`%%�%%� � � ��%%%%@ �3!!7!3!7!!3'5�`�`�``���@��  ���@@�@���`` � ��� �@@�@ �!!775!75#`� �``���@@�� ��``  �� �@@�R�)'Nf3"'4672?64'#.'.'92012#"&546581:12654&'041.'9'.35"&7635"&'1X���5�T
�
	�

�[�!//!!/%1
<IG"5;%' �''�T5��"	�[
	�
	�
`/!!//!E4="8� o(4Sb= -XS�(+C3"'46781:12654&'401.'.'9.35"&7635"&'1X���5�T/,	
<IG#6:%' �''��T5��"bQ	5/
5<"8� o)3Sb= -X�Tl@*7	"'463!#"2?64'1"&54632'2654&#"3���5�T%�
�
	�

�[�!//!!//!@�T5��% 
�[
	�
	��/!!//!!/ �Tl@	"'463!2654&#"3���5�T%�@�T5��%�`4�@%4AN9>3!'"'46;#"2?%#"2?64'1"&54632'2654&#"3�	��*5�T%( 
�
	�]0�
�
	�

�[�!//!!//! �T5�	�% 
�[
	� 
�[
	�
	��/!!//!!/ `.�@*"789%"'463!2654&#"3�%�0�@`��5�T%� %��T�0 �T5��%��Tl@&AN[h533##5#57932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632  `` `(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT `` `` �P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B533##5#55'463!"/>54.#"972654&#"32654&#"3  `` `@%��5L!8L+8pIggIIggI `` `` �@%�T5�L8+L8!��gIIggIIg�Tl@5BO\`932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632'35�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT���P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�  �Tl@)6:'463!"/>54.#"972654&#"31"&54632'35�@%��5L!8L+8pIggIIgg���@%�T5�L8+L8!��gIIggIIg�  �Tl@5BO\c932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632/77�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TTLK4d{�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T8L4d|�Tl@)6='463!"/>54.#"972654&#"32654&#"3/77�@%��5L!8L+8pIggIIggIK4d{�@%�T5�L8+L8!��gIIggIIgXL4d|�Tl@&AN[h%'7'77'932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&546320DDDDDDD�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT�DDDDDDD�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B%'7'77'463!"/>54.#"972654&#"32654&#"30DDDDDDD�@%��5L!8L+8pIggIIggI�DDDDDDD@%�T5�L8+L8!��gIIggIIg����4	"'1&47621"'1&47'12764'1&"127'���&j%&&uB��
	

��5v!!!]!��///�/���&&%j&uB��	
		��5u!]!!!��.�///� �@C%1".54>32"'&4?62"'&4?'2?64'&"2?'S�l??l�SS�l??l�0�&j%&&�B�		
	��5�!!!]!�///�/� ?l�SS�l??l�SS�l?n�&&%j&�B�

		��5� ]!!!�/�///�	� �@	&1;DLa1###.'1>731#.'>731#>799.'3>71#3.'2>54.#"3 Cx..8� �8..xC �8..xC Cx..8� *3�3**3�3*��3**3��3**3pS�l??l�SS�l??l�S 4*3�J`��J�3*4� `J�3*44*3�J��h.wCCw.�.wCCw.Cw..wC Cw..wC��?l�SS�l??l�SS�l?�!�@	)3<FQ%#1%.'3&'>71#11311#>71'.'3>713.'17>71#.'1�D82�J��%+�?4c/7�?43�J�D9/7�?43�J�D9��.8�?42�J�D8!R�4/8�/u@K�02�IK�0/8R�443�JL�0/8��R�53�JL�0/8��R�5� �@Pz��%1>77'>77'>735#.'7'.'7'.'>32''#3771#"&''.546777#31''1!9.'7'.'7'.'35#>77'>77'>72>54.#"3

  

1�HH�1

  

1�HH�1-33-


  


 


  


-33-��S�l??l�SS�l??l�S�(

, ,

(-44-(

, ,

(-44-1HH1
$

' '

$

$

' '

$
1HH1�?l�SS�l??l�SS�l?� �@V��%#"&'9>77'>77'>735#.'7'.'7'.'1>321''#317797>54&'''3#77"671%.546777#3''2&'1 6�OO�6


  


6�OO�6


  


)).81



  



��(-81



  



�2992(

, ,

(2992(

, ,

(+4GN�6
$

' '

$
3}FN�6
$

' '

$
� �@'5J1#"&'>54&'1>32.5467!9.5462>54.#"3	18811�HH�118811�HH�1-33--33-��-33--33=S�l??l�SS�l??l�S�6�NN�6-44-6�NN�6-44-1HH11HH11HH11HH��?l�SS�l??l�SS�l?� �@"1>.#"13267.54>71.54679!>54&' 6�OO�6/!!/6�OO�6/!!/18817@@7��18817@@7�2992BKR++RKB2992BKR++RKB6�NN�63�PP�36�NN�63�PP�3� �@)6CP%1".54>32'2>54.#"32654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:��� �@!.;%1".54>322654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�S`� ?l�SS�l??l�SS�l?�� �@.CXer#"&5467.5463211".54>32'2>54.#"352>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�SL�d::d�LL�d::d�L+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�!8L++L8!!8L++L8!`�� �@.CP]#"&5467.5463211".54>32'2>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�S+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l?�!8L++L8!!8L++L8!`�� �@&/4:@EMbh.'77'>7'73#"&/%'?''57%>.'7!7''>322>54.#"3#'7r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0��*^�'CkkC'�^�\\..FS�l??l�SS�l??l�Sf)z)f�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~^l=.U�0ff0&U.=JJ�?l�SS�l??l�SS�l?�S��S� �@&/D.'77'>7'73#"&/%'?''572>54.#"3r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0�S�l??l�SS�l??l�S�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~�?l�SS�l??l�SS�l?@���*18IMQ3#5463!2#3#!"&=%#5.546753'>54&'#"3!2654&#!3#%3#`��
 
��
��
� 6JJ6 6JJ6)77) )77)��%& %&���``�``  `

`��`

`��Q88Q��Q88Q?**??**?�%� %%�%����@���+29=A3!5.54675!"3#!#!5>54&'5!2#3%>54&'#%35!35@&�6JJ6��%���%��6JJ6�&���@)77) )77)`��`� `%�Q88Q�%`��`%�Q88Q�%`��!?**??**?�����`���+:BJ_##5##5##5##5#53533533533533533##1"&'>32%.1067!510%032>10.#"1�        @@         @@ pKx..xKKx..x��><<> ><<>�@1i�rr�i21i�rr�i2�@@@@@@@@ @@@@@@@@@@ @�% %%��%T+QQ+��+QQ+|KZKKZKKZKKZK`���+:AH##5##5##5##5#53533533533533533##32671.#".1067>10&'�        @@         @@ ��/xIIx//xIIx/ SMMS SMMS�@@@@@@@@ @@@@@@@@@@ @f!!l!!��5nn5��5nn5`���+@U#5##5##5##5##33533533533533535#5#'1210#".10>"1032>10.#�        @@         @@ pr�i21i�rr�i21i�rf�a//`�ff�a//`�f�@@@@@@@@ @@@@@@@@@@ @�KZKKZKKZKKZK ANAANAANAANA`���+@##5##5##5##5#53533533533533533##"1032>10.#�        @@         @@ pr�i21i�rr�i21i�r�@@@@@@@@ @@@@@@@@@@ @@KZKKZKKZKKZK� �@';J[i�%1.5467.'13:77>71.'1.'1>7111>54&'9>7.'>54&'1.54>32#".'.'(=5 N.EVe6
B_wB 3[&-#.6(AXm<
0T")e86_'#/07�+4^PA4s>(.ZEy/:m1��?l�SS�l??l�SI�hGA(R�6,L/N:#>jM,* C}72�I&�7^E)'K" O/$0	.#6zC2�K&| 7I,(0yC�6-	'B#�P S�l??l�SS�l?1UvD� �@/>P`q.5467#*932631.5467.'#*#91>54&'17.'>54&'1.546797>54&'9�*%I�;DVd7
Gh�I=5 N.J]l;oP�3F�9!CycHBu/"T0
�&X16.(/0"?q,(3�Cz2)#.L7 DuV17R�6,L1R; �E7)!B#(-Mh>3)/O "K'(�/&5I�2?�OBKS,(0(>�Nn�C"'2E^k%14&>7.'79>7>79%'7>/&'&"6764/7''>"/&47>9%"32654&#|1G%62F#4\4$3$�4$3$�b�	<?a<���-
NT
!�c(-
G<TT<;UU;�G15&F20"�$4$3�$4$3���=@6=����
-
�!T��
.(
�T<;UU;<Tn�C'59DS%.'1#"&#&45463:3&45463:1'232654&51%%'>'"/&47>yH3U;H3T<G1A/�2F.B���IS8T
!��k�
(-

J�2H;U2I<T!1G/A�F2B.���I�b!T��l�{.(
K� �@Fe"32>54.#".54>32#"&'.#"3267>32#11.#"#"&546323267S�l??l�SS�l??l�SL�d::d�L3`RC8/1+L8!!8L+:78CR`3p?##G
.IggI$H##?@?l�SS�l??l�SS�l?�:d�LL�d:1E)!8L++L8!
)E1p)M# 
gIIg	
!#M� �@'b&.'.#"#"&546323267>7'&'.#"32>7.'.#"#".54>323267>71x?##G
.IggI$H##?GWa5S�l??l�S7eYI87:+L8!!8L+1/8_#M(/X( 
gIIg	
!
)C0?l�SS�l?4H,
!8L++L8!�``%,3%5"&51.1!09#3!5;265!+0%>1Oq*2	�3*pP��� ^B B^�� ]$�$��pP^cMLc_Pp�  `�B^^B6IJ��JH6�`` '%#!5#52651>1!013.1!30� �Pp*2	�`3*qO�$�]$�  �pP^cMLc_Pp��JI66HJ�``%,3<%5"&51.1!09#3!5;265!+0%>1#5#52653Oq*2	�3*pP��� ^B B^�� ]$�$�� @( ��pP^cMLc_Pp�  `�B^^B6IJ��JH6��� %�`` '0%#!5#52651>1!013.1!30#5#52653� �Pp*2	�`3*qO�$�]$� @( �  �pP^cMLc_Pp��JI66HJ�� %� ``(/6:>%3!53535"&51.1!01#3;265!+0%>135!5�`� `�Oq*2	�3*pP���^B B^�� ]$�$�d�����`�pP^cMLc_Pp�@�B^^B6IJ��JH6��@@`@@� ``$+%5#52651>1!013##!5.1!30��Pp*2	�`3*qO�`�@$�]$�`�pP^cMLc_Pp�`����JI66HJ ���-B#>327!#>7'!#".546712>54.#"3`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8! ���-#>323.'+>72>54.#"3`�(( �(-�(-p2WA&&AW22WA&&AW2��4�`x!�`x!�@&AW22WA&&AW22WA& ���-BL#>327!#>7'!#".546712>54.#"357'373`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+YPp  pP ��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8!�BoQ``Qo ���-7#>323.'+>72>54.#"357'373`�(( �(-�(-p2WA&&AW22WA&&AW2YPp  pP ��4�`x!�`x!�@&AW22WA&&AW22WA&�BoQ``Qo`�`ETcr�!#"&=#"&=#5354632154632!54632>323##"&'#"&=7"326=4&#!"326=4&#%"32654&#!"32654&#�`@@�@@p	
	
��	
	
@	
	
�	
	
�p0 0pp0 0p`	�		�		�		�	@	�
	
	�
	
`�`E!#"&=#"&=#5354632154632!54632>323##"&'#"&=�`@@�@@�p0 0pp0 0p*@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>7#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211"326=4&#1�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"�	
	
  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��	�		�	)@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>71#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��`	&/9CMW`lx����1'.''.'75.'1211&"#2372637*5162?1>??>71'.'1895"&#897"#979>717'1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3�	

	[	 	[	


	�!&D�D�D����`@@`$�``��� @+,@p<TT<<TT<5!	&$%" !      ! "$%&	!�
 

� ��>��`>"%%���f� g!"���` 1>1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3eD�D����`@@`$�``��� @+,@p<TT<<TT<~ ��>��`>"%%���f� g!"��`A =LYf!>/.+";267!+"&57.?>;2130&'"+*'4&#"3265#4632#"&5�	#8H((H8#	]9!9]�}`
	*H2)@T.!.T@)2G*l` 
�&%%&`

�0"'F44F'"0 +54,��

�
.BR.!/Q=##=Q/!.RB.	7jj7&&&&



�`A 0=.?>;2!;267!+"&?;2679%4&#"3265�)@T.!.T@)�qHHq�4,

`
 
&%%&�0!/Q=##=Q/!0 9GG9��

�
%%%%� �@-E`x��&'.5467>17167>7>#.7.&47"672632'11&7.'.'61&'.'.>7>76#"&'.314.#"32>5�
-"K(&"
#	: :" .>*[bf42\QC$QX_28mf_)��
	1-ULB/X*IZi:/7dVE%CDZk;8?l�SS�l??l�SS�l?�/`\X(&
&S,=p.$	)SSP''D*\`c2q':/A(8
,	/")U+0 �L)	/=K,;cP9=Qc9,4W?#	\S�l??l�SS�l??l�S� �@2Jbx�.67>54&'.1'.&67"63>32'1.'"32>7>1>7.'&#1'>7.74'1>7.47671�+gq{?7g`V%,fnv<

?s`J"Q-Ocs>$N*>r`K��@xgR*X/IU_2(�1[)#107h	0$":"?�)>'+U)(8#,
9#5 
%J$%B\7��"8?lU=$A[6�
8RkA0Q?.
&
�+-eim55�M4`+
7olh/D'+Y[\,���`�2Wj����>7.54632117'7'#".5467''7762#"&'"'&4?.546329>54&#"5#53#32654&+>7326=#";54&#".2>54.#"352>54.#"32654&#"3�%Z3B..B3Z%'D(-4:d�LL�d:4-(D'cd
#$
%/!!/% ` �O		O%<O-
	-O<%O		O%<O-
	-O<%�Fz[55[zFFz[55[zF8cJ++Jc88cJ++Jc8				_".
-.BB.-
."(D'1�HL�d::d�LH�1'D(�dc
$#
G,!//!,>  �@
	-O<%O		O%<O-		-O<%O		O%<O��5[zFFz[55[zFFz[5@+Jc88cJ++Jc88cJ+				���`�$Vi���762#"&'"'&4?.5463297#".5467''7>71.546327'7''>54&#"5#53#154632>7#"&546;.'1#"&=32#2>54.#"32654&#"3cd
#$
�-4:d�LL�d:4-(D'%Z3B..B3Z%'D(�%/!!/% ` �%<O-	
-O<%O		O%<O-	
-O<%O		�8cJ++Jc88cJ++Jc8				{dc
$#
�1�HL�d::d�LH�1'D(".
-.BB.-
."(D'y,!//!,>  �@-O<%O		O%<O-		-O<%O		O%<O-	
�+Jc88cJ++Jc88cJ+				� ``AVc54632#"&=.54671%7'7'#".54>75#53#2>54.#"32654&#"3�	
	
	'D(-4:d�LL�d:7_�I ` Cw/�Fz[55[zFFz[55[zF				��
	�3
	3�(D'1�HL�d::d�LJ�c=@  @3+��5[zFFz[55[zFFz[5@				� ``BO54632#"&=.54671%.'1535#332>54&'77'2654&#"3�	
	
	/wC ` I�_7:d�LL�d:4-(D'�				��
	�3
	3�+3@  @=c�JL�d::d�LH�1'D(��				��
#.?2654&#"31+"&=46;>74&#'*#0*1013267'p�
�

��

	��--�2<2�� �
 
�
	
���Z
Z�x ���&+"&=46;?6&/&2654&#"3��
�

��X/	

0��$�y
 q-`
	
`����`�-8NYk32+"&/7;0410*1#'7'''&6?6'4"#"7+"&=46;>74&#'*#0*1013267'HX�

�
BL�2<2VX!g	

--
�

��

	��--�	2<2�����
 
�#� �$�$,D$�
	
hZ
Z�8
 
�
	
���Z
Z�m �����_�.9+"&=46;?6&/&'7;26=4&+''&6?6t�
�

��X,	

-r-X7XA
�

�X7�,	

-X*�s
 
w-Y
	
Y�Z-n��
 
�p(Y
	
Z,���@�%.%3'''33'54.#"77754632�=d<no`?}^<=^}>`A!8L++L8!�`p��p`�gIIg[��TST@����@RP+L8!!8L+P��``````@0IggI0���@�#54.#"#7''33/3�!8L++L8!d>ss>�\`�~>&?_\=>�0+L8!!8L+0 ��VV��O` ��#1��`O#���=@M32>54.#"15->32#".546732654&'
2654&#"3�c}:d�LL�d::d�L9��@ 9Fz[55[zFFz[5kU%/!!/%P�����eG-4''44'����z)))"6
6����P



���)63->32#".546732654&'52654&#"3� ��@@(L�d::d�LL�d:jV/!!/���������'44''4)CXg�



�a.@$0<I%9#"&54675#53#%'7'77'7'77'7'772654&#"3?$/!!/%� �i	��8998988�8998988�8998988I�,!//!,ki� ��v898998989899898989989���a.@".:%535#3532654&'%'7'77'7'77'7'77?��i� %/!!/$��8998988�8998988�8998988�v �i�k,!//!,898998989899898989989��@�$0Kn���%9#"&54675#53#%'7'77'7'77546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"32654&#"3�%/!!/%� �j
�9889988�9889988��& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				��,!//!,Ki� ��V899889988998899_ &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�@��@�=Vbn{�546;232#!"&=46;32#!"&546;813!26=89535#3532654&'9%7'7''7'7''2654&#"32654&#"3�& %@

��

@  %%� %% % &@��j� %/!!/%�988998899889988)�				  &% 
 

 
 &�`%&�% &% ��V �i�K,!//!,899889988998899���				�� �"7DQ9.54>32'7#"&'12>54.#"351"&54632'2654&#"3@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5PppPPppPB^^BB^^B�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^�� � -:7#"&'11".54>32'2654&#"352654&#"3@��(b66b(�<iN--Ni<<iN--Ni<PppPPppPB^^BB^^B��`���"" -Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^�� �"7A9.54>32'7#"&'12>54.#"357'373@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5p0`p00p`0�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(�J�@��@��� � *7#"&'12>54.#"357'373@��(b66b(�<iN--Ni<<iN--Ni<p0`p00p`0��`���"" -Ni<<iN--Ni<<iN-�J�@��@����B� *4IVc'.54>32'810"9'9.'77972>54.#"351"&54632'2654&#"3�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5PppPOqqOB^^BB^^B@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^���B�'4A'17'>791".54>32'2654&#"352654&#"3�7|&\3΀|8�2\&�<iN--Ni<;iO--Oi;OqqOPppPB^^BB^^B ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^���B� *4IS'.54>32'810"9'9.'77972>54.#"357'373�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5p0`p00p`0@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(�J�@��@����B�'1'17'>792>54.#"357'373�7|&\3΀|8�2\&�;iO--Oi;<iN--Ni<p0`p00p`0 ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-�J�@��@����^�*?LY926323#".54677>772>54.#"351"&54632'2654&#"3���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5PppPOqqOB^^BB^^B-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(@pPOqqOPp ]CB^^BC]���^�%2?.'1791".54>32'2654&#"352654&#"3"���$Z2����3Y$�<iN--Ni<<hO--Oh<OqqOPppPB^^BB^^BLTH�� (NZH��( ��-Ni<;iN..Ni;<iN-`pPOqqOPp ]CB^^BC]���^�*@J926323#".54677>772>54.#"3157'373���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5p0`p00p`0-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(�I�@��@����^�&0.'1792>54.#"3157'373"���$Z2����3Y$�<hO--Oh<<iN--Ni<p0`p00p`0LTH�� (NZH��( ��-Ni<;iN..Ni;<iN-�I�@��@�` <T_c1233267>7>7#"&'.'.'"&#&!4&+"4&5461546;2#!"&=33!26=!35�
"
-2	$	]gc^B B^��qO Oq&��% 
 
�� �	.K,I@B^^B"��J6`H PppP�`%%@@

@   ` 3>B!4&+"33267>7>7#"&'"&'.'1!#!"&=35i�qO Oq%O!-2%S(?��&��%@��T93@PppP	'/�@%%@   ����!6CGKO9.#"326732654&'%5!#5#"%!#"&5467>3312#"&546357%'%%fBPp��` BfY��^BB^I7���


- �DD��DD�%%=PpP
	8`@@P=m&: B^^B:X@@



`��!llll���� -159>;35!#"&'#"&546321"32654&#357%'fB `@��pPBf%%'



  �DD��DD�=P@@`8	
PpP=%%



`��!llll	` �@8Lck�����?.54>32"67>7>7&'.041>7>7269716322>7.'>7>.'0"17>#1023:1#96'>7.77>7.72799&'.#"#36.67>54&'.9>27.'.5�!?l�SS�l?-(
	,]bf50`_^-
�/_02Q*X/$a9�.C%O2/Z+���
"&(K"-
#. ": :	>CQ\24fb[*)_fm82_XQ$�O+Y[[.T�G%PRU,+XVU*�/m<S�l??l�SF~3
*
" 
(0)j@=`"[D',@l*��.p=,S&
&(X\`/$2c`\*D''PSS)	q(A/:'8 0+U)"/	,
�^/$$$`?�@ 4Og��%>74'9'>7.'9'.74>79%.67>54&'.1'.&67"63>32'1%>7.47671>7>>7>7&'.85>27.'.5{"6-Q"<�F"#8*X/8>
�!-07/a24+gq{?7g`V%,fnv<

?s`J��	0$":"?�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�$T/8"&$T1&CK-bfh45�M,S&�)>'+U)(8#,
9#5 
%J$%B\7�7olh/D'+Y[\,��" 
*
" 
)'/$$$  @:P0'.35.'.'2&#&15065&1506561&410'32613>>10&'.1QC
*'>V]CIWWI))F[[E.4�� !}R<dH((Hd<<dH(�
	
�	��



����o	$�
  @ 7H617#0'.'.'5&150653>>10&'.19.'.'5`IW[E()IW]C')�� !}R<dH((Hd<<dH(�'*))��
	��
	
��o	$�
�
	


��@�@Fb�%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#7<54632#*#73>54&#".54>32#"&'732654&#"   )+Kk Kk�` � '7`�II�`77`�I5b)'a5BuW22WuBBuW2!$�8((88(	"%% \#=R..R=##=R.!=1PppPPp
� gG)+   � `�gGY)b5I�`77`�II�`7"!2WuBBuW22WuB5a(�(88((8 %%"
t=".R=##=R..R=#pPPppP2�@�@Flw%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#732654&#"17'7<54632#*#'7>54&#"7   )+Kk Kk�` � '7`�II�`77`�I5b)H=!.R=##=R..R=#G$�11PppPPp
138((88(5"%%`� gG)+   � `�gGY)b5I�`77`�II�`7"H#=R..R=##=R."=GK1pPPppP21(88((825%%"�`` )>KXe%1".54>32'2>54.#"351".54>32'2654&#"351"&54632'2654&#"3I�`77`�II�`77`�IBuW22WuBBuW22WuB.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7 2WuBBuW22WuBBuW2`#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%�`` )6CP%1".54>32'2>54.#"351"&54632'2654&#"352654&#"3I�`77`�II�`77`�I.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7�#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%��`�(773!267!%!#!"&5!3	7#5%1>101!067130&546101�
2�2
��;@K5�`5K@ @���Hx  ��U7�W/�$$ 5KK5�@ �� �@x8�llT�Ni]SMMzGZ��`�!#!"&5!3!1!0&54610 @K5�`5K@ @���H   xH5KK5�@ x�Tll�8x`_�@!$'5Dj%3265!#!>7.'1362!+977#5%1>101!067130&546101>7>>7>7&'.85>27.'.5�5K�� ��
	��
2}:����Hx  ��U7�W/�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &$� �� �@x8�llT�Ni]SMMzGZ�Z" 
*
" 
)'/$$$`?�@'Mb%3265!#!>297!1!0&54610>7>>7>7&'.85>27.'.5�5K�� ��
,[\^/$G"����H   xH�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &� x�Tll�8x�" 
*
" 
)'/$$$�@@  $3A]y37#130654&'#73>54&#"37#130654&'#73>54&#"1#0&546154&546320!1#0&546154&546320�>@$3Z3$[D''��>@$3Z3$[D''�@�@@ 0000 @�@�@@ 0000 @@`cCUllUCc�())(`@`cCUllUCc�())(��a��a`@0<$55$<0@`a��a`@0<$55$<0@`�@@ #1?53130654&''.54632#53130654&''.54632#��� @�@ �0000����� @�@ �0000�@@ c?a��a?c�!2552!`@@ c?a��a?c�!2552!@ ?CQ^kx�%9.5467.'#130671#0&546154&546320>32#"&'137#'3>54&#"2654&#"352654&#"32654&#"332654&#"3�
[$3Z
�@@ 0000 %/IggI#=x>@D''�<TT<<TT<				 				@				�4&B&9cCUl�a`@0<$55$<0@C7gIIg�@ ())(�T<<TT<<T�				@								@ )6CP]%1#0&546713953'.54632#1"&546322654&#"32654&#"332654&#"3��@ �/;("���0000�IggIIggI				 				@				Q	�a?ca:0R�@@`!2552!��gIIggIIg				@								� �@;?]z14132653#".505#53!#"&=35#330"32>5#535#;26?62;26=4&#!"1%2+"&/&"+"&=463!^BB^`(F]55]F(@� qOPp@�@#=R.EE.R=#   � ^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@ //B^^B ��5]F((F]5]]``PppP    .R=##=R.` ��B^RR^BIggI�T<5KQ##QK5<T� �@"@]z35#34132>5##"&50553;26?62;26=4&#!"1%2+"&/&"+"&=463!2+2&'&"63#"&=463!@�@(F]55]F(`^BB^` �^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@.B8( 9"n"9 (8B.@ ``]]5]F((F]5 ��B^^B//���PB^RR^BIggI�T<5KQ##QK5<T A/(8Q11Q8(/A��`3|���''"#*1"3!26506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>3�00(8K5`&7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>+8(5K&ZlZ??
^'
! l

		&
�

��`Gdw�1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=3!26506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#`&�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#&??
8)	���`K����''"#*1";35335335335335335326506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>31�00(8K5@ @ @ @ @ @  &7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>8(5K            &ZlZ??
F'
! l

		&
�

���`Gd��1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=;35335335335335335326506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#@ @ @ @ @ @  &�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#            &??
8)	`��`A�����''"#*1";#"&5#3!5#5326506.#"#"&#"''#"4&'.+"&'.532677'>74277'461>77'>77'>703267>79#!"&'3267>;.546;:3;2+%243267>7>300101#"&'.1'>39!!�00(8K5@�
 %��&7!HH$1��.21�

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>�`��8(5K@
% @&ZlZ??
F'
! l

		&
�

��@`��` $i��#"&5#3!5#5326506'#0#!;3!!1''1'"+;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=%>3232632#"&'0&'9@�
 &���&�n($D"��;#@ `��b!   �/a�		$P,F\  �(87�#	

$HH!7
	 H(;N@
& @&#@o31..-2
	"T#B0
21O8(	
v??
8)	`���!C3!2654&'14654&#".#"1%#!"&54671<54>32>329�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`��� #!"&54671<54>32>321`*6^B��B^6*#=R.7^/Hg�O1B^^B1O.R=#1)eH`���!I^m}��1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<3	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`���!Wu1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg`���4Q1#!"&5467<54>32.5467>73267'>7*#"&5<5>321)*6^B��B^6*#=R.3L9		T<
Ig*6

/1p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

`��"DSbq��3!2654&'14654&#".#"9%#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!0?N]l#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#`*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!I^m|�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�P	
	
`	
	
`	
	
`	
	
`	
	
`	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	 	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`��"Xv�����9.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�A	
	
`	
	
`	
	
`	
	
`	
	
�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��5Rap��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�A	
	
`	
	
`	
	
`	
	
`	
	
pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`����"DQ^kx�3!2654&'14654&#".#"9%#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��



`



`



`



`



`����!.;HUb#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#`*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�O1B^^B1O.R=#1)eH��



`



`



`



`



`����!I^kx�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"32654&#"32654&#7"32654&#"32654&#7"32654&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�@



`



�



`



`



p	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��



`



`



`



`



@	@		@	Y.-
�		

�
-
.`����'<K[jy�����9#!"&5467<54>321>32'<54&#">329"326=4&#.2?64'14&+";265%2764/&"32654&#"32654&#7"32654&#"32654&#7"32654&##*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
Y



`



�



`



`



yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.�



`



`



`



`



`����!Wu�����1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"32654&#"32654&#7"32654&#"32654&#7"32654&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�1



`



�



`



`



�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��



`



`



`



`



`����5R_ly��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"32654&#"32654&#7"32654&#"32654&#7"32654&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�1



`



�



`



`



pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��



`



`



`



`



`����.R37#737#7##"&54671.54632>321#32654&'1.#".#"1;7"Q�/RI}1>`p0�Tl5K9*pP8[4<T)8K5��B^6*gH/^7.R=#*6^B�Q� ��@`��K5-F
	Pp:/T<

E-5K ^B1OHe)1#=R.O1B^��`����+37#7332654&'1.#".#"1;7"Q�/RI}1�B^6*gH/^7.R=#*6^B�Q� ��`^B1OHe)1#=R.O1B^��`����.Xm|���7#37#32654&'14654&#".#"1;733#"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����1FUet�7#37##"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Qq�B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����`^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����.f�7#37#32654&'14654&#".#"1;733#"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����?]7#37##"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Qq�B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����`^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����"D[s�3!2654&'14654&#".#"9%#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!8Pl#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21`*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!CP]jw��3!2654&'14654&#".#"1%#!"&54671<54>32>329132654&104610#"&5132654&104610#"&57132654&104610#"&5�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��(()'PP 00�(()'PP 00�(()'PP 00�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�2*,"YY!::!*,"YY!::*,"YY!::`���� -:G#!"&54671<54>32>3214610#"&54610#"&574610#"&5`*6^B��B^6*#=R.7^/Hg��PP')((�PP')((�PP')((�O1B^^B1O.R=#1)eH�2"YY",* "YY",* "YY",*
`����!I^kx��������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32132654&104610#"&5132654&104610#"&57132654&104610#"&5"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T��(()'PP 00�(()'PP 00�(()'PP 00P	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��*,"YY!::!*,"YY!::*,"YY!::�	@		@	Y.-
�		

�
-
.	`����&:GTap���1#!"&5467<54>321>32'<54&#">3214610#"&54610#"&574610#"&5"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(��PP')((�PP')((�PP')((0	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��"YY",* "YY",* "YY",*�	@		@	Y.-
�		

�
-
.	`����!Wu������1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3132654&104610#"&5132654&104610#"&57132654&104610#"&5�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI��(()'PP 00�(()'PP 00�(()'PP 00�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg��*,"YY!::!*,"YY!::*,"YY!::`����4Q^kx1#!"&5467<54>32.5467>73267'>7*#"&5<5>3214610#"&54610#"&574610#"&5)*6^B��B^6*#=R.3L9		T<
Ig*6

/1��PP')((�PP')((�PP')((p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

��"YY",* "YY",* "YY",*`����!Cs��3!2654&'14654&#".#"1%#!"&54671<54>32>32954&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$
`���� P��#!"&54671<54>32>32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.`*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$

`����!I^����
+1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.	`����&:j�����1#!"&5467<54>321>32'<54&#">32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.`����!Wu��1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:354&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�Q
	


	

a
	


	

�
	


	

�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��$		$
$		$
$		$
$		$
2$		$
$		$
`����4P���1#!"&5467<54>32.5467>33267'>7*#"&5<5>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�Q
	


	

a
	


	

�
	


	

pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��$		$
$		$
$		$
$		$
2$		$
$		$
`@� X��%#"3!2654&+4&#".#"732654&'14654&#".#"11>7<14632>329.5467<54>32>71<14632>321++#!"&5467932654&+4&#".#"1#"1>329	%
!%�	�5K8)T<4[8Pp*9$	8('
 1
��")6*#=R.9	8('
 1
(/!	
*6^B�/!�!/�%
!%	/)G�%%	
K5-E

<T/:pP	
F-$;(8$'G+1O.R=#(8$-!/'O1B^!//!�%%			#`@� Ty%#!"&54671<14632>327132654&'1.#".#"1>71>32:329>54&'1.#".#"01>321�(/!�!/%8('
 1
*�B^6*gH/^7.R=#*6G/+%=\(
1 
'(8

*?f�-!//!,(8$
1 ^B1OHe)1#=R.O1"<-=&+)-$8(			D6`���Bd5463232+#"&=#"&5463'3!2654&'14654&#".#"9%#!"&54671<54>32>329	
P
	P	
P
	�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P
	P	
P
	P	
=
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`���A#";326=32654&+54&#"%#!"&54671<54>32>329P	
P
	P	
P
	`*6^B��B^6*#=R.7^/Hg�
	P	
P
	P	
O1B^^B1O.R=#1)eH`���"DS3!2654&'14654&#".#"9%#!"&54671<54>32>329";2654&+�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P	
�	
��
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eHS
	
	`���!0#!"&54671<54>32>329";2654&+`*6^B��B^6*#=R.7^/Hg�P	
�	
��O1B^^B1O.R=#1)eHS
	
	`���"DS`3!2654&'14654&#".#"9%#!"&54671<54>32>329%"326=4&#"&54632#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH-	�		�	�
	
	`���.=12654&#"%#!"&54671<54>32>329%"326=4&#
	
	W*6^B��B^6*#=R.7^/Hg��	
	
	
	
�O1B^^B1O.R=#1)eH-	�		�	
`���=EOX`ow���<54671<5<51045465>32>321#!"&'.5<517!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!`6*&<M,7^/Hg*6Z<��=Y  �����L��66KU��j�..��\�m
�
�@, ,�641O*J71)eHO1:OO:(		@		 _	`?		�	`���!(1:DMU>5!!1!.'>321!>7!'.#"1!>71!4671!>7!1!>7#!"&'���Z
	��	�/4��:*:  :
�|��a�	��	�3��1��1  		�
	 `	@@		@�`@�@CKU^fu}��������%1#!"&'.5<5<5467<5<50454651>321>321%!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!<54&#">329"326=4&#.2?64'14&+";265%2764/&�Z<��=Y6*&<M,
U5Ig#*6�� �����L��66KU��j�..��\�m
�
�@, ,�6UT<*D3/(�	
	
�
.
.Z	@		@
��.
.
�:OO:1O*J7-8gIF(O1(		@		 _	`?		��<T,#'
	3	@		@	Y.-
�		

�
-
.`@�@	AKU`ir����>71!!1!>5!1!6454&#"1.#"3.'>321.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!"326=4&#.2?64'14&+";265%2764/&cF��Z���7gI5U
 :�	D*<T(/��-�
����i"	 	�  	F	�1 1� �	
	
�
.
.Z	@		@
��.
.
 @	Ig8-	#,T<	

@	@@		�		 �	@		@	Y.-
�		

�
-
.`@� QYclt������%1#!"&'.5<5<5467<5<5<54651>32.5467>332671%!4&'!1!>7!1!.''3.#"1!.'!"&#9%3.#"!645<'1!.'"#!*'13!267!>7*#"&5<5>321�Z<��=Y6*&<M,3L9		T<
*6�� �����L��66KU��j�..��\�m
�
�@, ,�6dIg*6

/1�:OO:1P*J7

>_
;U		,A%O1(@		 _		`?		��gIJ/$

`@� 	U_it}�>71!!1!>5!1!>7>7#"&5467.#"3.54673:31.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!cF��Z���P
<T		9L3 :�6*gI1/��-�
����i"	 	�  	F	�1 1�  @	#		T<
^>


/JIg

@	@@		�		 �p��)<D/?'?1>7#"&5467"3267%4673:3#"&5/?G''II''I7''II''I��
<T		9LgI>^��6*gIJ/<T�4444Hhhhh�hhhhk		U;
_>IgL9+/JIg*6U;NNN�p��)1/?'?#"&5467>332671/?G''II''I7''II''I��^>IgL9		T<
�4444Hhhhh�hhhhk9LgI>_
;U		=NNN`�`,1>7#"&5467"3267%4673:3#"&5�
<T		9LgI>^��6*gIJ/<T�		U;
_>IgL9+/JIg*6U;`�`#"&5467>33267�^>IgL9		T<
�9LgI>_
;U		
�~B�(7FVeu��1"&54632'2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI<TT<<TT<			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg T<<TT<<T�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.	�~B�*9IXhx�2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.��B�/?O_p�";732654&+'#%6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1�		�]]�

�pp��gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-

	PP
	``@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��B�!1ARgw#&4546321#'"326=4&#1.2?64'14&+";2651!;2654&+"9";732654&+'#2764/&"1�RgIIgR]]]			
�
-
.Y	@		@	��	@		@			�]]�

�pp�G.-
@IggIPP@	@		@	Y.-
�			
	
		O
	PP
	``'
-.��B�*:J[k�6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		�]]�

�pp��IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��A�
.>O_t6454&#"!"326=4&#1.2?64'94&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg^�	
	
�
-.Y	@		@	��	@		@	Y.-
G		�]]�

�pp��IggI@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��B�)8GWfv6454&#"3&4546323"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	
	��B�
+:JYi6454&#"!"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg^�			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI@	@		@	Y.-
�			
	
		�
-.��
	
	�@`
,;L.#"3>32"326=4&#.2?64'1!2764/&""13!26514&#!�^<<^!J//J�	
	
�
-.�P.-
H

@

��`7II7*66*	@		@	Y.-

-.�
	
	�@`%4E.#""326=4&#.2?64'1!2764/&""13!26514&#!�^<<^�	
	
�
-.�P.-
H

@

��`7II7	@		@	Y.-

-.�
	
		 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">32>51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T	B'<T
�
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+'T<! @		@		I.-
�		
	�-.
	 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T.XQJ �
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+%1! @		@		I.-
�		
	�-.
 �MXbr���24.'54&#"463246324632#"&=4&#"3265463246324631%.#"1>75.#"'.#"1>79!9.'.#".#">79%.#".'1�!/K��d
	d��K/!!//!!//!!/


	%%/!!//!!//!�P)'U8 8U')�#sN!0�0!Ns#��
mI.BIIm
B.@%AsV40		04VsA%%%%%%�@

0		0&%�%%%%%
Wx��xW


Ehb;;bhE

2Q W3�Q23W  �O34&#"14&#"4&#"1#"&=463232654&#"4&#"4&#"4>754632`�/!!//!!//!!/%%	


/!!//!!//!!/K��d	
d��K%%%%%%�@%&0		0

�%%%%%%AsV40		04VsA ��&3@M132654&10132654&10132654&10%4610#"&5%4610#"&54610#"&5 (()'PP@(()'PP�(()'PP00 ��00 `00 P13(hh�13(hh��13(hh�EE�EE��EE ��&4610#"&54610#"&54610#"&5 PP')((@PP')((�PP')((P(hh(31�(hh(31�(hh(31���!132654.104>10#"&5�K55K(0((0( $$CCy2GG2YT;;TYEC00CE+..+���4>10#"&�(0((0(K55KyYT;;TY2GG	(#�4'4BJW�!!.77>7>721!.'!7!4&7!#"&'.'%!>7>2!.'!#"&'.''.10103267>106762103261067>10676&'."'1@`��+Qj���J��]7B,+*��iQ+��K	+,B�5ywk&	


.A,,;
@
;,,A.

	&kwy5.� 
`	 h	�

�	'	�9$7797 

 7977$9'#�4@.10103267>106762103261067>10676&'."'�5ywl&	


.A,,;
@
;+,B-


	&kwz4.!9$7797 

 7977$9�� /?7'?'?'?�((HH((H�''II''I�''II''I��??��??��llll�hhhh��hhhh��00��0�� '?'?'?�''II''I�''II''I��??��??��hhhh��hhhh��00��0@�/Uv9#!"&5467<54>32>32>32#'32654&+>54&#".#">3293!2654&'4654&#".#"1@^B��B^6*#=R.#M2"J-B^+9K5@@(88(	K5.F	+(=)/Hg	�K5 5K8)T<4[8Pp*9@1B^^B1O.R=#.=	$-^B	
E.5K 8((8!5K:+2%"eH	�5KK5-E

<T/:pP	
F-@�#C>54&'>54&#".#">329#!"&5467<54>32>321f3G9+^B-J")D6*Pv	$
^B��B^6*#=R.7^/Hg*6@J3.E
	B^-$	+"
#		kN
$`B^^B1O.R=#1)eHO1��@�,@>7>7#"&5467"7.54673:3";732654&+'r
<T		9L+$ (6*gI�~

�]]�

�ppJ.		U;
_>.MB(/JIg!J
	PP
	``��@�.>7>7#"&5467"7";732654&+'k
<T		9L0'y[��

�]]�

�ppR*		U;
_>0QhNR
	PP
	``��@�,@1>7#"&5467"3267%4673:3#"&5"&546;732+'�
<T		9LgI>^��6*gIJ/<T�

�]]�

�pp�		U;
_>IgL9+/JIg*6U;��
	PP
	``��@�-#"&5467>332671"&546;732+'�_>IgL9		T<
�F

�]]�

�pp�9LgI>_
;U		�
	PP
	```���.J4&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%5KK5(88((8 K5 (88(%%% 8(�%%


 %`��/L4&#"34632#!!265%4&#"134632#!!2651#1"&5133126514&#!5!29�K55K@%%%� �5K��K55K@%%&���5K�8((8@


�@�(85KK5%%%@K5�5KK5%%%@K5�`(88(


@8(@��2654&#"3PppPPppPpPPppPPp@��#"&54632�pPPppPPp�PppPPpp@��181"3"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��#"&546322654&#"3 5KK5)77) PppPPppPDK55KD--DDpPPppPPp@��1"&54632'"3PppPPppPB^^BpPPppPPp @^BB^@��2654&#"3'463"&5PppPPppP�K55KpPPppPPp�5K�K5@��12#"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��12#"&5462654&#"3%%5KK5PppPPppP@K55KK55K��pPPppPPp@��1"&54632'2654&#"3PppPPppPB^^BB^^BpPPppPPp ^BB^^BB^@��1"&54632'2654&#"3PppPPppP5KK55KK5pPPppPPp@K55KK55K@��1"32654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��2#"&54632654&#"35KK5%%PppPPppP@K55KK55K��pPPppPPp@��12654&#"72#PppPPppPB^^BpPPppPPp @^BB^@��1"&5463274&#265PppPPpp0K55KpPPppPPp�5K�K5@��1812#2654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��>32#"&'>54&'2654&#"3�5KK5)77) PppPPppP<K55KD--D��pPPppPPp
`��
/=M]n~���#"&546?>54.#"7.54>322654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=/!!/-�Du�YY�uD?l�SS�l?��	
	
�
9
9�\\\\�D\\\\�9
9

#!//!#
��!F%Y�uDDu�Y%F!	B"S�l??l�S"B- 	`		`	FN
O
����
O
N	`�� .>N_o���'!.54>32!>54&'2654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=--��
Du�YY�uD
��-	
	
�
9
9�\\\\�D\\\\�9
9
��
#"H&Y�uDDu�Y&H"#
r@	`		`	FN
O
����
O
N` �`)@M%1".54>32'2>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�H``(88(``H��%%%%` �`)>Ub%1".54>32'2>54.#"352>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�H``(88(``H��%%%%` �`):G132>54.#"4>32#".5!4&#"103265#4632#"&5`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\12#".54>"32>54.#"32>54.#2#".10>3"32654&#V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�8((8$$ %%%%` �`):G14.#"32>'#".54>32!32>10.#"3#"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<� 8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\%1".54>32'2>54.#"352>54.#"3"&5463210#52654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%` �`):G14.#"32>'#".54>32!4&#"10>5##"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<��8((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(88(``HH``%%%%` �`)>O\14>32#".732>54.#"332>54.#"!463210.5332654&#"`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%� `@"&55555'"32654&#3%5�@@ @�``�``�``�	
	
0`S����
��
�
�
�
-	�			��@�� `@	
 55%5%"32654&#3%5��`��@`��	
	
0`;��
��"�
��	�			��@�q����'Rg9#".'10&'.>7>'%>3210&'.'.>76.714.#"32>5Ag�L=o]G"b*D3%X�99$�7<~UHqK$��Bf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`75+ )e9=mZCM+5X=JYd4+ZSG(%$Nam70[N>+^M2k*J1Jbr;<AG'####q����*?>3210&'.'.>76.714.#"32>5qBf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`7]%$Nam70[N>+^M2k*J1Jbr;<AG'####��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5(88((88(`B^
	�	
�K5�		�K55KK55K 8((88((8�^B�0	
0
	�5K
	��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5%%%%`B^

�

�8(�

�K55KK55K@%%%%�^B�@



�(8

��`-:G326=4&+";26=4&#"+"&546;21"&54632'2654&#"3@
	^B@B^^B@B^
	K5@5KK5@5K��5KK55KK5(88((88(P	
B^^B��B^^B	
5KK5@5KK5`K55KK55K 8((88((8��`+9G"+"&546;232654&+";2654&#1%9"&54632'2654&#"31@
8(@(88(@(8

^B@B^^B@B^
��5KK55KK5%%%%@
(88(@(88(

B^^B��B^^B
�K55KK55K@%%%%t`��(5	3!26'&"62#!"&7"326=4&#2654&#"3��$5�5#��<		`�S`







���-@@-.""��  9�
�

�
��



t`��'%&"13!26%"&546327#"&=46312���<��#5�5#�Y






�.""��-@@ 



�

�

` �`)?L%1".54>32'2>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!Lcb66` �`)>Ta%1".54>32'2>54.#"352>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!Lcb66� �@)>KZix�%1".54>32'2>54.#"310>7>10'2764'&""326=4&#4&+";26526=4&#"3;2654&+"S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"07[(("	
	
Q	a
	a	��	
	
��	a
	a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z((r	`		`	��

		��	a		a	R		

	� �@)>S`o~��%1".54>32'2>54.#"352>54.#"310>7>10'2764'&"12#"&=461+"&546;21"&=4632146;2+"&S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"07[(("
	
	8	a	
a	��
	
	��	a	
a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Z((R	`		`	��		

��	a		a	2

		� �@)>M\kz�%1".54>32'2>54.#"310>7>10"326=4&#4&+";26526=4&#"3;2654&+"%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"079	
	
Q	a
	a	��	
	
��	a
	a	/
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z�	`		`	��

		��	a		a	R		

!
;</$%
D	� �@)>Sbq���%1".54>32'2>54.#"352>54.#"310>7>1012#"&=461+"&546;21"&=4632146;2+"&%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"079
	
	8	a	
a	��
	
	��	a	
a	
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Zi	`		`	��		

��	a		a	2

		(
;</$%
D` �`)?K%1".54>32'2>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!LcbqED4#([` �`)>T`%1".54>32'2>54.#"352>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!LcbqED4#([`����'%4&#"32654&7#"&54674632@%%#K55K##^BB^#8((8�Q&%��:$5KK5$:"C'B^^B'C@(88(@����0%4&#"32654&7#"&54674&546329@%%#K55K#"#pPPp#K55K�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����'4%4&#"32654&7#"&546746322654&#"3@%%#K55K##^BB^#8((8`(88((88(�Q&%��:$5KK5$:"C'B^^B'C@(88(��8((88((8@����0=%4&#"32654&7#"&54674&5463292654&#"3@%%#K55K#"#pPPp#K55K(88((88(�Q&%��:$5KK5$:2K+PppP+K 5KK5���8((88((8`����/C%#"&5467<=4632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

�Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<=4632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
@

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
@

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

� Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

� Q&%��:$5KK5$:2K+PppP+K 5KK5��`����.B%#"&5467<5463274&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
`

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����.K%#"&5467<5463274&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
`

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`���7#37##33"1}IR/�QqQ`�0p������`���`���#33�Q`�0p���������r�FWer10&'9'1067.'17.'10#"&1'&>7>7>32903261*#*97.10>3212654&#"3LbfgF
�WXzP
�^W;Mfk"$$"kgM;V_	

b

%%&&�+*P3
	.?E2$	
%ED8)/�  �/)8DE %tnNNnt% n�*

ּko�W�%%%%���r�+=J.'10#"&1'&>73265<'9'.#">3212654&#"3h^W;Mfk"$$"kgM;V_9'(8#

	
<%%&&.ED8)/�  �/)8DE(88(=%tnNNnt%

�%%%%��@�7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;231�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
�@� 7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;2312>54.#"3�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AqL�d::d�LL�d::d�LVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
��:d�LL�d::d�LL�d:	� �@)6CP]jw{%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"335S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







�  � �@+7CO[_%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"35S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


Ӡ ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







�  
� �@)6CP]jw��%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/ � �@+7CO[g%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"2654&#"S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


�!//!!// ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/	� �@?Tan{���'>32.#"#.#"3265133265<57#".54672>54.#"31"&54632!1"&54632%2654&#"3!2654&#"31"&54632'2654&#"3*OBO[00[OBO.2
j
2.
8((8`8((8U:d�LL�d:ES�l??l�SS�l??l�S�%%%%%%%%��



 



�!//!!//!J/%>,,>%/$$ (88((88(3'W/L�d::d�L/W'��?l�SS�l??l�SS�l?�%%%%%%%% 







��/!!//!!/ � �@@LXdp|>323>3217.#"813265133265817#".5467"&54632!"&54632%2654&#"!2654&#"2654&#"&02
j
20jIWd66dWIj8((8`8((8t?l�SS�l?�%%%%%%%%��


-


�!//!!//B#$$#@+F22F+@"(88((88(F)\1S�l??l�S1\)�%%%%%%%% 







��/!!//!!/� �@)6C%1".54>32'2>54.#"32654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@+%".54>322654&#"!2654&#"S�l??l�SS�l??l��


-


 ?l�SS�l??l�SS�l?�







� �@)6CG%1".54>32'2>54.#"32654&#"3!2654&#"3!5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��  ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�  � �@+/%".54>322654&#"!2654&#"!5S�l??l�SS�l??l��


-


��  ?l�SS�l??l�SS�l?�







�  � �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%".54>322654&#"!2654&#""&10326150S�l??l�SS�l??l��


-


�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%2>54.#""&54632!"&54632"15063210&S�l??l�SS�l??l�=





�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�!//!!// ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�<TT<<TT<.BB..BB. ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�<TT<<TT ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6:I%1".54>32'2>54.#"32654&#"3%35326=30+5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���_ (� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   ��( � �@".2%2>54.#"7326=30+5"&54632%3#S�l??l�SS�l??l�4_ (� 


���� ?l�SS�l??l�SS�l?�( 



  � �@)6CNU%1".54>32'2>54.#"32654&#"3!2654&#"3!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



���3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�<H<<H< ��� �@+6%".54>322654&#"!2654&#"032>1S�l??l�SS�l??l��


-


��3_NN^3 ?l�SS�l??l�SS�l?�







�<H<<H<� �@)4;?C%1".54>32'2>54.#"3!0#".0326135335S�l??l�SS�l??l�SL�d::d�LL�d::d�L��3_NN^3+PvuO�k��� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: <H<<H< ��    � �@"&%".54>32032>1%35335S�l??l�SS�l??l���3_NN^3�@��� ?l�SS�l??l�SS�l?@<H<<H<�    � �@,AP2#"&5#5!2#"&5#51".54>32'2>54.#"3'326=30+5�


@@


@0S�l??l�SS�l??l�SL�d::d�LL�d::d�L_ (�@


 


 ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�( � �@+:2#"&5#5!2#"&5#52>54.#"7326=30+5�


@@


@0S�l??l�SS�l??l�4_ (�@


 


 ��?l�SS�l??l�SS�l?�( � �@)-15%1".54>32'2>54.#"3'!5737'S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��j�j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  AHH� �@%".54>32!5737'S�l??l�SS�l??l�� ��j�j ?l�SS�l??l�SS�l?  AHH� �@)-15%1".54>32'2>54.#"3'!535335S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ����� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�       � �@%".54>32!535335S�l??l�SS�l??l�� ����� ?l�SS�l??l�SS�l?       � �@)-1@%1".54>32'2>54.#"335335"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%2>54.#"3#%3#"15063210&S�l??l�SS�l??l�}�� ��QS\\ST]] ?l�SS�l??l�SS�l?    �@ @@ @� �@)-1@%1".54>32'2>54.#"335335"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%".54>3235335"&10326150S�l??l�SS�l??l��݀���S\\ST]] ?l�SS�l??l�SS�l?     ��@ @@ @� �@)8<@MZ%1".54>32'2>54.#"3'"&10326150#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�HH�







� �@!%)5A%".54>32'"&103261507!7'2654&#"!2654&#"S�l??l�SS�l??l�TS\\ST]]1j�$j


-


 ?l�SS�l??l�SS�l?�@ @@ @�HH�







� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)8<@MZ%1".54>32'2>54.#"3'"15063210&#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @aHH�







� �@!%)5A%".54>322150&#"1067!7'2654&#"!2654&#"S�l??l�SS�l??l�TT]]TS\\�j�$j


-


 ?l�SS�l??l�SS�l?@ @@ @aHH�







� �@)-15BO%1".54>32'2>54.#"3'!57!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!57!7'2654&#"!2654&#"S�l??l�SS�l??l�� j�$j


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)-15BO%1".54>32'2>54.#"3'!5737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!5737'2654&#"!2654&#"S�l??l�SS�l??l�� ��jdj��


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)6CPTX%1".54>32'2>54.#"35"1063210&#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%2>54.#"7"1063210&'"&54632!"&54632'3#%3#S�l??l�SS�l??l�SHH<TT<H�





M���� ?l�SS�l??l�SS�l?� `` �







�   � �@)6:G%1".54>32'2>54.#"32654&#"3%35"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���0HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   � `` � �@#/%".54>322654&#"%35"&1032610S�l??l�SS�l??l�=


�̀0HH<TT<H ?l�SS�l??l�SS�l?�



   � `` � �@)6:>KX%1".54>32'2>54.#"35"1063210&#737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �HH�







� �@#'3?%".54>32'210&#"106737'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<HTjdj��


-


 ?l�SS�l??l�SS�l?� `` �HH�







� �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%".54>322654&#"!2654&#""&1032610S�l??l�SS�l??l��


-


�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%2>54.#""&54632!"&54632"1063210&S�l??l�SS�l??l�=





�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CPTX%1".54>32'2>54.#"35"&1032610#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%".54>32"&1032610'2654&#"!2654&#"'35!35S�l??l�SS�l??l�SHH<TT<H�


-


3��`� ?l�SS�l??l�SS�l? `` �







�    � �@)6:>KX%1".54>32'2>54.#"35"&1032610#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` aHH�







� �@#'3?%".54>32"&10326107!7'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<H<j�$j


-


 ?l�SS�l??l�SS�l? `` aHH�







� �@)6CPTX%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#7!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` �HH� �@+7;?%".54>322654&#"!2654&#"210&#"1067!7'S�l??l�SS�l??l��


-


�HH<TT<H�j�$j ?l�SS�l??l�SS�l?�







� `` �HH� �@!6CPY326=35!1".54>32'2>54.#"32654&#"3!2654&#"33#"&5�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�/!!/@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�P!//!� �@ ,8A#5!##"&52>54.#""&54632!"&54632326=�@`@B..BpS�l??l�SS�l??l�=





�/!!/@  P.BB.�?l�SS�l??l�SS�l?�







�P!//!P� �@!6CLP326=35!1".54>32'2>54.#"32654&#"33#"&535�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



�/!!/`�@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



�P!//!0  � �@ ,59#5!##"&52>54.#""&54632326=%3#�@`@B..BpS�l??l�SS�l??l��


�/!!/���@  P.BB.�?l�SS�l??l�SS�l?�



�P!//!P� � �@)6CV%1".54>32'2>54.#"32654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�0``0� �@+=%".54>322654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l��


-


C4$PGFS$4 ?l�SS�l??l�SS�l?�







�0``0� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!35!35`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�Ѐ�`�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/     
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632'3#%3#`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





M����@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�   � �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!'#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�jdj@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632''#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





jdj@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�HH� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!7!7'`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�j�$j@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@#/37=AEKW["32>54.7#"&'35#>;'"&54632#535#53;2##535#53#53"&546327'7S�l??l�SS�l??l���jjl== 


s@@@@�= @@@@0=


?jj@?l�SS�l??l�SS�l?��GH�� �



�   @   ` 



?GG
� �@
#*?Tan}#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/� �@
#*>JV#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





@   `   `  ` @ `�?l�SS�l??l�SS�l?�







� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"335!35S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!P��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �    � �@+7;?%".54>322654&#"!2654&#"2654&#"35!35S�l??l�SS�l??l��


-


�!//!!//q��`� ?l�SS�l??l�SS�l?�







��/!!//!!/�    � �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7!7'S�l??l�SS�l??l��


-


�!//!!//�j�$j ?l�SS�l??l�SS�l?�







��/!!//!!/�HH� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3'#'7S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�jdj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7'S�l??l�SS�l??l��


-


�!//!!//�jj�jj ?l�SS�l??l�SS�l?�







��/!!//!!/�HH.HH� �@)6=D%1".54>32'2>54.#"35"1063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �[ZCD�Z[DC� �@&-%2>54.#"7"1063210&7'7%'7'7S�l??l�SS�l??l�SHH<TT<HZ[[DD��[[DD ?l�SS�l??l�SS�l?� `` �[ZCD�Z[DC� �@)8?F%1".54>32'2>54.#"3'"15063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�[ZCD�Z[DC� �@!(/%2>54.#""15063210&7'7%'7'7S�l??l�SS�l??l�RS\\ST]]O[[DD��[[DD ?l�SS�l??l�SS�l?@ @@ @�[ZCD�Z[DC� �@)-1>K^%1".54>32'2>54.#"335!352654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LP��`�@



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:@    �







�0``0� �@'3E%".54>3235!352654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l���`�@


-


C4$PGFS$4 ?l�SS�l??l�SS�l?`    �







�0``0� �@)-1@%1".54>32'2>54.#"3737'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l�ijj jjeS\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)-1>%1".54>32'2>54.#"3737'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>32737'"&1032610S�l??l�SS�l??l���j�j�HH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>%1".54>32'2>54.#"37!7'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>327!7'"&1032610S�l??l�SS�l??l�j�djdHH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>K%1".54>32'2>54.#"3353351"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    ��/!!//!!/ � �@'%".54>32353352654&#"S�l??l�SS�l??l��݀���!//!!// ?l�SS�l??l�SS�l?    ��/!!//!!/� �@)6CGK%1".54>32'2>54.#"351"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!dj�dj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ �HH� �@#'%".54>32'2654&#"7!7'S�l??l�SS�l??l�S!//!!//�j�dj ?l�SS�l??l�SS�l?�/!!//!!/�HH� �@)-1>K%1".54>32'2>54.#"3737'1"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�_/!!//!!/ � �@'%".54>32737'2654&#"S�l??l�SS�l??l���j�j�!//!!// ?l�SS�l??l�SS�l?AHH�_/!!//!!/� �@)07BI%1".54>32'2>54.#"37''!7''!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�LE[[DD��[[DD�3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�ZZDDZZDD�<H<<H< ��� �@!,%".54>3277'!77'032>1S�l??l�SS�l??l�DD[[��DD[[3_NN^3 ?l�SS�l??l�SS�l?�DDZZDDZZ�<H<<H<� �@)8?F%1".54>32'2>54.#"3'"&10326150#7''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]TF[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @ZZDDZZDD� �@!(/%2>54.#"72610#"&1507''!7''S�l??l�SS�l??l�RT]]TS\\�[[DD��[[DD ?l�SS�l??l�SS�l?�@ @@ @ZZDDZZDD� �@)6=D%1".54>32'2>54.#"35"&1032610#?''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HHE[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �ZZDDZZDD� �@&-%2>54.#"2610#"&10?''!7''S�l??l�SS�l??l�SHH<TT<H�[[DD��[[DD ?l�SS�l??l�SS�l? `` �ZZDDZZDD� �@)-1>%1".54>32'2>54.#"3737'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l�ijj jjdHH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"37!7'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l��jj��jj�HH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"335335"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    �� `` � �@'%2>54.#"3#%3#"1063210&S�l??l�SS�l??l�}�� ��PHH<TT<H ?l�SS�l??l�SS�l?   � `` � �@)-1@%1".54>32'2>54.#"37!7'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l��jj��jj�S\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1@%1".54>32'2>54.#"37!7'"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%".54>327!7'"&10326150S�l??l�SS�l??l�j�djcS\\ST]] ?l�SS�l??l�SS�l?AHH��@ @@ @� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,8'77''/77''72>54.#"7"&54632�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S!//!!//0��?l�SS�l??l�SS�l?�/!!//!!/� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L<TT<<TT<.BB..BB.0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,877'7''77'7''".54>32'2654&#"�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S<TT<<TT0��?l�SS�l??l�SS�l?�/!!//!!/� �@$9N[hu�65'.'..'&&'7>71".54>32'2>54.#"31"&54632'2654&#"352654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%%



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 







� �@#7CO[g&57>7>>7667'.2>54.#""&54632'"&54632'2654&#"!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=(88((88(%%%%


-


(/W	8

8	W/�?l�SS�l??l�SS�l?�8((88((8 %%%% 







� �@$9N[h65'.'..'&&'7>71".54>32'2>54.#"32654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@#7CO&57>7>>7667'.2>54.#""&54632!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=





(/W	8

8	W/�?l�SS�l??l�SS�l?�







� �@f{�����9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#1>3#"&'.'.'.7!#"&'.'.7>7212654&#"3!2654&#"3DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]T��C4

*



*

4C�n



 



z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@G[i����1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150>3#"&'.'.'.7!#"&'.'.7>722654&#"!2654&#"'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\�C4

*



*

4C�n


-


i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@dy�1.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]Tz
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @� �@FZh623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @� �@f{�9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'326=30+5DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�S_ (�z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�( � �@G[j1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"7326=30+5'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�4_ (�i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�( ���.b54&#".#"4&#".#".32>5"&'.765463234632354632354632#�/!)
/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/		!//!�/!,/"G^vH1D*+Jc8�YHOtS2V5jPp��0�2WA&� d`=#81"&'.76546323>714632354632354632d&AX1[s*/N3
p2 2WA&YHOtS2V5�PL��0L0�� �`.b4&#".#".#"54&#".32>5"&'.764632354632354632354632#�/!!/
)
/!!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW20�!//!`		�!//!�,/"G^vH1D*+Jc8�YHOtS2V5J��P00���2WA&�@`@654&#"#4&#".32>54&#"#54&#"#` 0n
1L/
 j?2WA&  0P0��4V
3RuO"1<&AW2��0���-a4&#"54&#"4&#".#".32>5"&'.7646323463234632354632#�/!

/!

/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/ !/	!//!/!�,/"G^vH1D*+Jc8�YGOuR3
V5J��p�������2WA&� _`654632354632#81"&'.764632346323 &AW2Zt*/L1
m0  xx�����2WA&YHOtS2T4G��p��`��1<J�#"3!2654&'2654&'>54&'>54&+>.#"93#"&54632654&#"3132+32+32+32#!0<5261>7>3209`�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$* %�`%/!
/!	(	(!/<}fA3KW#H  � 
�
�`



�   ��� *$RF.6Ys> ` �`1<J%!2654&+532654&+532654&+532654&+>.#"1##3#"&54632654&#"31@�0pPpPp�	+&"&v���&% 



    B~c=.FR$G/� %`%�`



@��1<J�#"&5463!22+#".'.9'3#"32#"&5463132654&+532654&+532654&+532654&#!02132>&'0&9@�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$*`%�%/!
/!	(	(!/<}fA3KW#H  �
�`
�



�`   ��� *$RF.6Ys> ` �`1<J!2+32+32+32+#".'.1##3#"32#"&54631@�0pPpPp�	+&"&v���&% 



`   B~c=.FR$G/�%��%�



@��3n%32654&'2654&'1>54&'>54&+>.#"1#";3067>32132+32+32+32+'#"&5463h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

/!
/!	(	(!/<}fA3KW#H %��%@/G$RF.<cB   @
`
` �`:32+32+32+32+'#"&546;067>32��pPpPp0�

�v&"&+	   @
`
/G$RF.<cB@��3n3221+#".'.1#"&546;73032>&'132654&+532654&+532654&+532654&+#"3h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

�/!
/!	(	(!/<}fA3KW#H %`%@�/G$RF.<cB   @
��
` �`;32654&+532654&+532654&+532654&+#";032>&'1��pPpPp0�

�v&"&+	�   @
��
/G$RF.<cB>����6j.32>=4&#"14&#"54&#".#"#7'7'3"&'.76463234632354632354632#`/b":R'AHL%8cJ+/!
/!
/!(	,�h��h�Zt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�!/	!/	�!/	$h��h� YHOtS2V5j��p��0P�2WA&��`:>3234632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h���p��PpP�2WA&YHOtS2V5:h��h�����7k37'#54&#".#".32>=4&#"14&#"5"&'.76463234632354632354632#��h��h�/!(	!//b":R'AHL%8cJ+/!
/!
Zt*/N2
p1   &AW2�h��h!/	/!��,/"G^vH1D*+Jc8�!/	!/	�� YHOtS2V5j��p��0P�2WA&��`;354632354632#"&'.76463234632!'7'7@  &AX1[s*/N3
p2 h��h��PpP�2WA&YGOuR3
V5J��p0h��h���>m%:32>=4&#"#54&#"#4&#"#4&#".'7'%#".'.7614632>32>321>32`2WA&   1p
2N/$_Eh��h +Jc8%LHA'R:#b//!	(!/
!/
!/ &AW2�P0P��P��5V3RuN>Th��h���8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``;%.'.764632346323546323546327'7`Sm(/N3
p2   #=Q/h��h XCOuR3
V5J��p��PpP�0TA'!h��h�����8g%7'74&#"#4&#".32>=4&#"#54&#"%#".'.7614632>32>321>32�h��h 1p
2N/*tZ2WA& +Jc8%LHA'R:#b//!	(!/
!/
!/�h��hr��P��5V3RuNHY&AW2�P��R8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``954632354632#"&'.76463234632'7'� &AX1[s*/N3
p2 h��h�`pP�2WA&YGOuR3
V5J��p��h��h���.b54&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&� @`24&#"#4&#".32>54&#"#54&#"#@ 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2PpP�����(S��.#".#"1.54632>3254&'1>54&#".#"1.54>3:>3254&#"14&#"54&#".#".32>51"&'.76463234632354632354632#)-
)T<1<T!#gI5Ig#+5!8L+9+L8!5+�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2?)Z.<TT<.Z)�G)IggI)G']7+L8!!8L+7]���".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&��`� Cv>54&#".#"5463214632>54&#"*#".5467>32'4&#"#4&#".32>54&#"#54&#"#�B.#7

/A/!

/!!/#U;&?<T#+5bFG)Ig6*  2p
3N/*s[1XA&  �(.B%B.(N!/!//!x>&<T#T<%?%T3Gf#gI3T���0��5V3RuNHY&AW2PpP ����	Bw3#5377'7#53#554&#"14&#"54&#".#".32>5"&'.76463234632354632354632#1��g� �4�g� ��/!
/!
/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�� �k�� �k���!/	!/	�!/	/!��,/"G^vH1D*+Jc8�YHOtS2V5j��p��0P�2WA&@����	F73#53'7#53#54&#"#4&#".32>54&#"#54&#"#`��g� @��g� @ 1p
2N/*tZ2WA&  U�� �k�� �k{��0��5V2StOHY&AW2PpP$����Bx3#53'7#53#554&#"54&#"54&#".#".32>51"&'.76463234632354632354632#9��g� ��h� ��."

."

.")	
!//b":R'BGL%9cJ*��Zs+/M3
p1   %AX2�� �l��� �k��ʿ!/!/	�!/	/"��,/"G^wG1D+*Jc9�YGOuR3
V5j��p��/O�2WB%D����F3#53'7#53#5%4&#"#4&#".32>54&#"#54&#"#��g� ��h� �� 1p
3M/*tZ2WB%  �� �l��� �k����/��5V
3RuOGY&AW2PpPP ����+Z�.54>321'70"1'7.#"701#'754&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�!8L+Sq!ODIgEN!qSW."

."

."(	
!//b":R'BGL%8dI+��Zt*/N2
p1   &AW22+L8!Sq!NEgIDO!qS���".!/	�!/	/!��,/"G^vH1D*+Id8�YGOuR3
V5j��p��0P�2WA&@����+^.54>321'70"1'7.#"701#'7%4&#"#4&#".32>54&#"#54&#"#�!8L+Sq!ODIgEN!qS7 1p
2N/*tZ2WA&  2+L8!Sq!NEgIDO!qS���0��5V
3RuOGY&AW2PpP~����7n#'73>32>32>321>32#".'.7612>50=4&#"#54&#"#54&#"#4&#".3��h��h�,!/
)!/
!/+Jc8%LHA'R:"b/2WA&   1p
2N/*tZ�h��h$/!�	/!	/!�8cJ+*D1Hv^G"/,� (BW/88�P0PpP��5V2StOHY��`:>32354632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h��АpPpP�2WA&YHOtS2V5:h��h�����6n3'7'7#>32>321>32#".'.7646322>50=4&#"#54&#"#54&#"#4&#".31��g��g�
)!/
!/+Jc8%LHA'R:#b//!,r2WA&   2p
2N/*tZh��h�	/!	/!�8cJ+*D1Hv^G"/,!/%�(BW/77�P0PpP��5V3RuNHY�``;354632354632354632#"&'.764632!'7'7#�   &AX1[s*/N3
p2h��h����pPpP�2WA&YGOuR3
V5Jh��h��`>m%>50=4&#"#54&#"#54&#"#4&#".'7'%#".'.7614632>32>321>32�/R<#   1p
2N/(mSh��h+Jc8%LHA'R:#b//!!/
)!/
!/!*AT-77�P0PpP��5V3RuNDX"h��h���8cJ+*D1Hv^G"/,!//!�		/!.!�@`@;%.'.7646323546323546323546327'7`Sm(/N3
p2   #=Q/h��h@XCOuR3
V5J�АpPpP�0TA'!h��h����`.h54&#"14&#".#"54&#".32>54632354632#"&'.764632354632'7'1�/!

/!)

/!!//b":R'AHL%8cJ+� &AW2Zt*/N2
p1 h��h�".!/	�!//!��,/"G^vH1D*+Jc8P�/WB(YGOuR3
V5j��p��h��hR�@`@954632354632#"&'.764632354632'7'� &AX1[s*/N3
p2 h��hPpP�2WA&YGOuR3
V5J�А�nh��h"��`7g%2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32p2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/ (BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��@`@24&#"#4&#".32>54&#"#54&#"#` 2p
3N/*s[1XA&  p�0��5V3RuNHY&AW2PpP�����!5l�>54.#"5.546321'>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32Z!8L++L8!5+#gIIg	:T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/X="+L8!!8L+7]'G)IggI 9.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��`�"7j>54&#"5.54632:329'>54&#"546324&#"#4&#".32>54&#"#54&#"#J
gIIg5+#T<;U

JB./A/!!/` 2p
3N/*s[1XA&  |+IggI3T%?%<TT<)(.BB.(N!//!NR�0��5V3RuNHY&AW2PpP�����Kz>54&#"546322>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32 T<<TB..BP2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/�.<TT<.Z/AA/�(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!.!� ``F>54&#"546324&#"#4&#".32>54&#"#54&#"#B..B/!!/` 1p
2N/*tZ2WA&  �(.BB.(N!//!��0��5V2StOHY&AW2PpP�����Az�35#5#"&5467".'.764632>32>32>32#952>50=4&#"#54&#"#54&#"#4&#".392654&#"31�H@)7B..B7)p%LHA'R:#b//!!/
)!/
!/+Jc82WA&   2p
2N/*tZ�<TT<<TT< _?*.BB.*?��*D1Hv^G"/,!//!�		/!.!�8cJ+ (BW/77�P0PpP��5V3RuNHY�T<<TT<<T���`�%2e35#5#"&5467>54&#"546322654&#"34&#"#4&#".32>54&#"#54&#"#�H@(8B./A7)�B./A/!!/�;UU;<TT<� 2p
3N/*s[1XA&   _?*.BB.*?�(.BB.(N!//!0T<<TT<<Tp�0��5V3RuNHY&AW2PpP`����-d�.#".'.5463257>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32`:"<T<.
B."6�T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/KT<2L
3.B$3J.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!�� �`1d<54&#".'.5463297>54&#"546324&#"#4&#".32>54&#"#54&#"#�K55KF2%8(#5		�B..B/!!/` 1p
2N/*tZ2WA&  �5KK53J
	
1 (8-"�(.BB.(N!//!��0��5V2StOHY&AW2PpP�����	
O3570&'!7'77'2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32� �dd@}}�}}%cd�2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/���RQQ��QQ��(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!."����`�	
I3570&'!7'77'4&#"#4&#".32>54&#"#54&#"#� �dd@}}�}},cd� 1p
2N/*tZ2WA&  ���RQQ��QQ���0��5V3RuNHY&AW2PpP.��5i.32>=4&#"4&#".#".#"#7'7'"&'.7646323463234632354632#`/b":R'AHL%8cJ+/!

/!)(	!/�h��hZt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�".!/		/!h��h�@YGOuR3
V5j��p��0���2WA&��`;3.32>54&#"#4&#"#4&#"#4&#"1#7'7��2p
3N/*s[1XA&   �h�����5V2StOHY&AW2P0��P��0h��M��6j54&#".#".#".32>=4&#"537'#"&'.7646323463234632354632#�/!)(	!//b":R'AHL%8cJ+/!

�h��h�Zt*/N2
p1   &AW2!/		/!��,/"G^vH1D*+Jc8�".�h��h� YGOuR3
V5j��p��0���2WA&��`;#.#"#4&#"#4&#".32>54&#"#37'a�  2p3N.+s[1XA& �h��h���P��0��5V3RuNHY&AW2P h��h���;i%'7'>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32`h��h/R<#   1p
2N/(mS +Jc8%LHA'R:#b//!	()!/
!/ "h��h��'AT0�P��P��P��5V
3RuOCX�8cJ+*D1Hv^G"/,!/		/!�.!� ``;>54&#"#4&#"#4&#"#4&#".1'7�0Q<#   2p
3N/(oQh��B��'AU0P0��P��0��5V3RuNDW!h�����9h4&#"#4&#".32>=4&#"#4&#"7'7#".'.7614632>32>32>32` 1p
2N/*tZ2WA& h��h +Jc8%LHA'R:"b//!	()!/
!/�P��P��5V2StOHY&AW2�P��h��h"�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``8%4&#"#4&#".32>54&#"#4&#"7'7` 2p
3N/*s[1XA& h��h�r��0��5V3RuNHY&AW2P0��h��h���3b%12>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32p2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/ &AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``24&#"#4&#".32>54&#"#4&#"#` 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2P0�����`�9q��>321>54&#".#".#"54671>32>329>54&#".#".#"1.54>3:>321623212>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32f
.BT<	11	<T)
--�#gI55Ig#+5!8L+99+L8!5+�2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/8B.;.<TT<.[)�G)IggI)G']7+L8!!8L+7]��&AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!���`�0^�>54&#"1.#".#"154632146321>32>54&#*#1.#"*#"1.5467>32'4&#"#4&#".32>54&#"#4&#"#B.

7"#7

/A/!

/!!/
!/#U;?%&?<T#+5bFG))FFb6*� 2p
3N/*s[1XA&  b(.B%%B.(N!/!//!/!N*>&<T##T<%?%T3Gf##fG3T���0��5V3RuNHY&AW2P0�����@�#.8BFJT^hlp5'7'!467%5'7'!467"34&#112#546"354&#3535"34&#12#546"354&#3535@h��h6J��J6`h��h6J��J6��.B�B.!/�/!`P���.B�B.!/�/!`P����h��h�Q8�P�8Q`�h��h�R7��8QA/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@�#-15?CG5'7'!4675'7'!467"354&#3535"354&#3535�h��h6J��J6��h��h6J��J6!/�/!P���!/�/!P���~�h��h�R8��8R`�h��h�R7�O�7R@/!pp!/��  @  �/!pp!/��  @  ���@@!=GQ[eim%>54.#"5.54>325>54.#"54>32'12!46"34&#12#546"354&#3535�:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�<T��T<.B�B.!/�/!`P����.�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+�T<��<T B.��.B /!pp!/ PP�  @  ���@@	=Y12!46"354&#35357>54.#"5.54>325>54.#"54>32�<T��T<!/�/!P����:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�T<��<T@/!pp!/��  @  .�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+���@�#-7AEIS]gko%#4632#7'7%#4632#7'7"34&#12#546"354&#3535"34&#12#546"354&#3535@�T<<T�h��h`�T<<T�h��h��.B�B.!/�/!`P���.B�B.!/�/!`P�����<TT<�P�h��h�<TT<���h��h�A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@`#-15?CG%#4632#7'7%#4632#7'7"354&#3535"354&#3535@�T<<T�h��h`�T<<T�h��h��!/�/!P���!/�/!P�����<TT<�P�h��h�<TT<��h��h�/!pp!/��  @  �/!pp!/��  @  @����&0:>BLV`dh!46323'7'7%12!46"34&#112#546"354&#3535"34&#12#546"354&#3535���T<<T�h��h�N<T��T<.B�B.!/�/!`P���.B�B.!/�/!`P�����`<TT<Ph��h�T<�P�<T A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  @����%)-7;?!46323'7'7%12!46"354&#3535"354&#3535���T<<T�h��h�N<T��T<!/�/!P���!/�/!P�����`<TT<Ph��h�T<�P�<T@/!pp!/��  @  �/!pp!/��  @  >����%/37AKU_cg>32!#'7%"34&#112#546"354&#353512!46"34&#12#546"354&#3535AQ8<T���h��hR.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����6JT<�P�h��h`A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  @����#-7;?>32!#'737"354&#353512!46"354&#3535BR8;U���h��h".�/!P���;U��T<".�/!P����6JT<�P�h��h@/!pp!/��  @  T<��<T@/!pp!/��  @  ��!+5?IMQ>54.#"5.54>3212!46"34&#12#546"354&#3535�,4+Jc88cJ+4,"&AW22WA&"�<T��T<.B�B.!/�/!`P���!%l>8cJ++Jc8>l%, T/2WA&&AW2/T 3T<��<T B.��.B /!pp!/ PP�  @  ��	=12!46"354&#35357>54.#"5.54>32�<T��T<!/�/!P���`,4+Jc88cJ+4,"&AW22WA&"�T<��<T@/!pp!/��  @  A%l>8cJ++Jc8>l%, T/2WA&&AW2/T 	`����%/9=ANp35#5#"&546712!46"34&#12#546"354&#35352654&#"3>54.#"5.54>32 @@)7B..B7)�p<T��T<.B�B.!/�/!`P���P<TT<<TT<�,4+Jc88cJ+4,"&AW22WA&" _?*.BB.*?�T<��<T B.��.B /!pp!/ PP�  @  �T<<TT<<T��%l>8cJ++Jc8>l%, T/2WA&&AW2/T `����"&*7;]#"&5467312!46"354&#35352654&#"3735>54.#"5.54>32 )7B..B7) �P<T��T<!/�/!P���P<TT<<TT<@��,4+Jc88cJ+4,"&AW22WA&"?*.BB.*?�T<��<T@/!pp!/��  @  �T<<TT<<T�  �%l>8cJ++Jc8>l%, T/2WA&&AW2/T ����`	'+/37;@D12!46"34&#12#546"354&#3535357#3!35#7'<T��T<.B�B.!/�/!`P���` �qqj���ࠠjqq�T<��<T B.��.B /!pp!/ PP�  @  ���jqr�    rq	����`	#',012!46"354&#3535357#3!35#7'<T��T<!/�/!P���` �qqj���ࠠjqq�T<��<T@/!pp!/��  @  ���jqr�    rq~����#-7;?3'7'7#!#'73>32'"34&#12#546"354&#3535��h��h���h��h�Q87R�.B�B.!/�/!`P���h��h�h��h6JJ6`B.��.B /!pp!/ PP�  @  ~����#'+3'7'7#!#'73>32'"354&#3535��h��h���h��h�Q87R�!/�/!P���h��h�h��h6JJ6@/!pp!/��  @  ~����#-7AEI3'7'7#!#'73>75'7'9'"34&#12#546"354&#3535��h��h���h��h�H2h��h2H�.B�B.!/�/!`P���h��h�h��h2H�h��h�H2`B.��.B /!pp!/ PP�  @  ~����",04>715'7'3'7'7#!#'737"354&#3535�H2h��h2H�h��h���h��hÏ!/�/!P���2H�h��h�H2h��h�h��h@/!pp!/��  @  ��@	(,0:DNX\`��12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
��@	%/37_�12!46"354&#353512!46"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
@���	(,0:DNX\`�12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%	@���	%/37e12!46"354&#353512!46"354&#35357>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%~����$.26>32!#'7%"34&#12#546"354&#3535�Q8<T���h��hR.B�B.!/�/!`P���6JT<��h��h`B.��.B /!pp!/ PP�  @  ~���� $9>32!#'7%"354&#3535�Q8<T���h��hR!/�/!P���6JT<��h��h@/!pp!/��  @  `����%/37!46323'7'7#'"34&#12#546"354&#3535���T<7R�h��h.B�B.!/�/!`P����<TJ6h��h�B.��.B /!pp!/ PP�  @  `����!%3'7'7#!46329'"354&#3535�h��h��T<7R�!/�/!P���h��h�<TJ6@/!pp!/��  @  �����%/375'7'!467"34&#12#546"354&#3535h��h6J��J6.B�B.!/�/!`P����h��h�R7��8QB.��.B /!pp!/ PP�  @  �����#5'7'!467"354&#3535h��h6J��J6!/�/!P����h��h�R7��8Q?/!pp!/��  @  �����%/37%7'75#4632"34&#12#546"354&#3535 h��h�T<<T�.B�B.!/�/!`P�����h��h�<TT<���B.��.B /!pp!/ PP�  @  �����#%#4632#7'7"354&#3535�T<<T�h��h!/�/!P����<TT<���h��h"/!pp!/��  @  ����	+<M#5353#73+"&=3;26='#353735#%!2#!"&=463"3!26=4&#!   `  � & % 
 
�0       � (88(��(88(%& %&���ࠠ��%&��

�``�@@��`8(�(88(�(8 &�%&�%����	+<#5353#73+"&=3;26=73#5#'#53%"3!26=4&#!   `  � & % 
 
�0       �`(88( (88(���ࠠ��%&��

�``�@@��`8(�(88(�(8����$5FO~#"&=46;5#";5#3%3532654&+5!2#!"&=463"3!26=4&#!32+%";2+"&51#1;2654&+"&546;234&+@@

``&%``@�� @&%` (88(��(88(%& %&�� @

@�&% 

 
 % &% 

 
 % �@
`
 %`&� @�`%%`8(�(88(�(8 &�%&�%`

`%%


&%%


%����$5>l#53#"&=46;#";5%532+#"3!26=4&#!32654&#%32#4&+";2+"&5131;2654&+"&546@@``%&``

@��`%&@ (88( (88(�� @

` % 
 

 %& % 
 

 %&� �&`% 
`
@@@%%`@8(�(88(�(8�@

 %


%%&


%%����!/:GP\e!2#!"&=463"3!26=4&#!##546;2#'"354&+532+#5732654&#532+#732654&# (88(��(88(%& %&��` & % @
`
 �`%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 @%%`� @

 @%%`�@

����)6?KT!2#!"&=463354&+"357"354&+3532654&+732654&#3532654&+32654&# (88(��(88(� % &  
`
 � @&%` @

` @&%` @

�8(�(88(�(8�`�%%�``
  
 �`%%@ @

 �`%% @

����!-6@Y!2#!"&=463"3!26=4&#!532+#732654&##5353#7#"&=46;5#";5#3 (88(��(88(%& %&��`%&@  @

�  `  �@

``&%``@�8(�(88(�(8 &�%&�%�@%%`�@

 �ࠠ�`@
`
 %`&� ����%/H!2#!"&=4633532654&+32654&#35#'#3%#"&=46;5#";5#3 (88(��(88( @&%` @

�`  `   @

``&%``@�8(�(88(�(8��`%% @

 �ࠠ�`@
`
 %`&� ����!+7@KU!2#!"&=463"3!26=4&#!535#3535%532+#732654&#732+5326=4&# (88(��(88(%& %&����� `�`%&@  @

``%&` @

�8(�(88(�(8 &�%&�%�@ �`  @%%`�@

 &`%� �
`
����&/:D!2#!"&=463535#3535%3532654&+32654&#7326=4&+326=4&# (88(��(88(��� `� @&%` @

``&%` @

�8(�(88(�(8�@ �`  �`%% @

 �%`& �
`
����!.[hq!2#!"&=463"3!26=4&#!'#353735#46;2+"&53;2654&+532654&+"#532+#5732654&# (88(��(88(%& %&��P0       & %

& % 
 

  

 
�`%&@  @

�8(�(88(�(8 &�%&�%�`�@@��@%%		%%


 


@%%`� @

����KXa!2#!"&=463'#353735#346;2+32+"&5#;2654&'>54&+"#3532654&+732654&# (88(��(88(P0        
 

  

 
 % &

% &� @&%` @

�8(�(88(�(8�`�@@��@


 


%%		%%�`%%@ @

����!$/<IR!2#!"&=463"3!26=4&#!#73535#5#%'#353735#532+#5732654&# (88(��(88(%& %&���::    `��0       @`%&@  @

�8(�(88(�(8 &�%&�%�Pp@@ �� @`�@@��@@%%`� @

����+8A!2#!"&=46353535#5#%'#353735#3532654&+732654&# (88(��(88(�::    `��0       @ @&%` @

�8(�(88(�(8�PP @@ �� @`�@@��@�`%%@ @

����!2CPW!2#!"&=463"3!26=4&#!32+"&=463";26=4&+'#353735#73#'3 (88(��(88(%& %&�� %& %&

 

 �0       P0 @ @ �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
@`�@@�ਨ������!2?F!2#!"&=463";26=4&+";26=4&+'#353735#'#37# (88(��(88(&% &% 

 

 �0       P0 @ @ �8(�(88(�(8`%`&%`& 
`

`
@`�@@�ਨ������!6CLe!2#!"&=463"3!26=4&#!;26=#+"&=#7532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��% & 
 
 �`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%� &%��

 @@%%`� @

`@
`
 %`&� ����%2;T!2#!"&=463;26=#+"&=#73532654&+732654&##"&=46;5#";5#3 (88(��(88(% & 
 
 � @&%` @

�@

``&%``@�8(�(88(�(8� &%��

 @�`%%@ @

`@
`
 %`&� ����!-8E!2#!"&=463"3!26=4&#!3#53#3#5373#%#5'53753 (88(��(88(%& %&�����`��  V*pp*j @ 00 �8(�(88(�(8 &�%&�%�@ � @ 
V�VVpp````  HH  ����'4"3!26=4&#!3#53#3#5373#%#5'53753(88( (88(�����`��  V*pp*j @ 00 �8(�(88(�(8�@ � @ 
V�VVpp````  HH  @���%-9F!2#!"&=46"3!26=4&##53%3535#53#5##53!'#353735#��(88(� (88(&&�&&� �� @�@  `  �0       �8(�(88(�(8 &�%&�%� ���  @`�``�``�@@��@���)6!2#!"&=46#5#3%3535##5#35335#'#353735#��(88(� (88� ��  @�@`  `  P0       �8(�(88(�(8����  @`�``�``�@@������!Bq�!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�%&`%%

`

�%%


&%%


%%%


&%%


%����1`�!2#!"&=463#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8�

`

%%`&%�%%


&%%


%%%


&%%


%@���&;ITbm!2#!"&=46"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+��(88(� (88(&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
 �8(�(88(�(8 &�%&�%��� &%��

 `�%%��
  
``�%%��
  
@���+9DR]"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+�(88(�(88(��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �8(�(88(�(8����� 

��%& `�%%��
  
``�%%��
  
����!-6epz!2#!"&=463"3!26=4&#!532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&# (88(��(88(%& %&��`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

�8(�(88(�(8 &�%&�%�@%%`�@

 %%


&%%


%&`%� �
`
����%T_i!2#!"&=4633532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&# (88(��(88( @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

�8(�(88(�(8��`%% @

 %%


&%%


%�%`& �
`
����!-;F!2#!"&=463"3!26=4&#!#35#535###546;2#'"354&+ (88(��(88(%& %&��` `  ``` & % @
`
 �8(�(88(�(8 &�%&�%`�  �  ``�%%��
  
����*5"3!26=4&#!#53#3#53'##546;2#'"354&+(88( (88(��` `  ` �` & % @
`
 �8(�(88(�(8�  �  @`�%%��
  
����!1:CP\e!2#!"&=463"3!26=4&#!532+732654&#32654&#7'#353735#532+#732654&# (88(��(88(%& %&��`%

&` @

@@

�0       @`%&@  @

�8(�(88(�(8 &�%&�%�x%		%�@

`@

 `�@@��@@%%`�@

���� )2?KT!2#!"&=46332654&'>54&+32654&#32654&#7'#353735#3532654&+32654&# (88(��(88(`&

%` @

@@

�0       @ @&%` @

�8(�(88(�(8�h%		% @

`@

 `�@@��@�`%% @

����!/:D]!2#!"&=463"3!26=4&#!#'#537353%32+5326=4&##"&=46;5#";5#3 (88(��(88(%& %&��P00      ��`%&` @

�@

``&%``@�8(�(88(�(8 &�%&�%��``�@@���&`%� �
`
`@
`
 %`&� ����)3L!2#!"&=46335#'#5#37%326=4&+326=4&##"&=46;5#";5#3 (88(��(88(P      00��`&%` @

�@

``&%``@�8(�(88(�(8���@@��``��%`& �
`
`@
`
 %`&� ����!-:Cr!2#!"&=463"3!26=4&#!3#53#37532+#5732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&�� ����`@`%&@  @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@ � @ @@%%`� @

 %%


&%%


%����)2a!2#!"&=46335#535#35#73532654&+732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88( ``����� @&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8� @ � ��`%%@ @

 %%


&%%


%����'3=G!2#!"&=46"3!26=4&#3535#3#35#535#535#35353535#3535��(88(�`(88(&%�&%�� @�� `  `��� ``�� `�8(�(88(�(8 &�%&�%`��  �  �  @@ �` @ �` ����#-7!2#!"&=463535#3#35#535#535#35353535#3535��(88(�`(88h @�� `  `��� ``�� `�8(�(88(�(8���  �  �  @@ �` @ �` ����!1BJy!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��   %%


&%%


%���� 19h!2#!"&=463";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
��   %%


&%%


%����!-6BNW!2#!"&=463"3!26=4&#!532+#732654&#53#5##537532+#732654&# (88(��(88(%& %&��`%&@  @

�  `  �`%&@  @

�8(�(88(�(8 &�%&�%�@%%`�@

@`�``�` @%%`�@

����%1=F!2#!"&=4633532654&+32654&##5#35335#3532654&+32654&# (88(��(88( @&%` @

�`  `  @ @&%` @

�8(�(88(�(8��`%% @

@`�``�@�`%% @

����!-6C!2#!"&=463"3!26=4&#!532+#732654&##5'53753 (88(��(88(%& %&��``%&@  @

� @ 00 �8(�(88(�(8 &�%&�%�@%%`�@

````  HH  ����%2!2#!"&=4633532654&+32654&#75#'5#3 (88(��(88(` @&%` @

�@ 00 @ �8(�(88(�(8��`%% @

``  HH  ``����!B!2#!"&=463"3!26=4&#!+"&=46;2#4&+";2653 (88(��(88(%& %&��`& %& & 
 

 
 �8(�(88(�(8 &�%&�%�%&`%%

`

����1"3!26=4&#!+"&=46;2#4&+";2653(88( (88(��`& %& & 
 

 
 �8(�(88(�(8�%&`%%

`

����*;Lz�7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!";2+"&51#1;2654&+"&546;234&##536% &% 

 
,"�� (88(��(88(%& %&��@&% 

 
 % &% 

 
 %�� D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%@%%


&%%


%� �����*;io+"&=46;2''#"&=46;2'"3!26=4&#!32#4&+";2+"&5131;2654&+"&546#536 %& %

 
,"��(88( (88(��@ % 
 

 %& % 
 

 %&�� D&`%&`	
`

`
," 8(�(88(�(8`%


%%&


%%� �����!/8HQZ!2#!"&=463"3!26=4&#!##532##'32654&#532+732654&#32654&# (88(��(88(%& %&�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8 &�%&�%�`�%%`�@

Xx%		%�@

`@

����'7@I"3!26=4&#!##532##'32654&#532+732654&#32654&#(88( (88(�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8�`�%%`�@

Xx%		%�@

`@

����!BOXdm!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537532+#5732654&#532+#732654&# (88(��(88(%& %&��& %& & 
 

 
  `%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�%&`%%

`

`@%%`� @

 @%%`�@

����1>GS\!2#!"&=463#+"&=46;234&+";26573532654&+732654&#3532654&+32654&# (88(��(88(� 
 

 
 & &% &  @&%` @

` @&%` @

�8(�(88(�(8�

`

%%`&%`�`%%@ @

 �`%% @

����!)BP[!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#33##546;2#'"354&+ (88(��(88(%& %&��@ @�@@

``&%``@�` & % @
`
 �8(�(88(�(8 &�%&�%`��  `@
`
 %`&� `�%%��
  
����1?J!2#!"&=4633535##"&=46;5#";5#33354&+"357"354&+ (88(��(88(@ @�@@

``&%``@� % &  
`
 �8(�(88(�(8���  `@
`
 %`&� `�%%�``
  
����!-8BL!2#!"&=463"3!26=4&#!'373#'#'32+5326=4&#535#3535 (88(��(88(%& %&��@ 00 @@ 00 �`%&` @

@�� `�8(�(88(�(8 &�%&�%�pTTppTT�&`%� �
`
@@ �` ����'1;!2#!"&=463373'7#'##326=4&+326=4&#535#3535 (88(��(88(@ 00 @@ 00 �`&%` @

@�� `�8(�(88(�(8�pTTppTT�%`& �
`
@@ �` ����!,6GXy!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&++"&=46;2#4&+";2653 (88(��(88(%& %&��`%&` @

� %& %&

 

  & %& & 
 

 
 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

����%6Gh!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+#+"&=46;234&+";265 (88(��(88(`&%` @

�&% &% 

 

   
 

 
 & &% &�8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%����!1BMW_!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#33535# (88(��(88(%& %&��@ %& %&

 

 �`%&` @

� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
��  ���� 1<FN!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#33535# (88(��(88(@&% &% 

 

 �`&%` @

� @��8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
��  ����!-3b!2#!"&=463"3!26=4&#!'373#'#%#537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%����"P"3!26=4&#!'373#'#%#53732#4&+";2+"&5131;2654&+"&546(88( (88(��@@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�8(�(88(�(8�pTTppTT  �%


%%&


%%@���*4DUv�!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT@���$4Efr!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#��(88(� (88(`&%` @

�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT����!.7CLT!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#!3535# (88(��(88(%& %&��`%&@  @

��`%&@  @

` @��8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

��  ����&2;C!2#!"&=4633532654&+732654&#3532654&+32654&#!3535# (88(��(88(� @&%` @

�� @&%` @

` @��8(�(88(�(8��`%%@ @

 �`%% @

��  ����!/:iu~!2#!"&=463"3!26=4&#!##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&# (88(��(88(%& %&��` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 %%


&%%


%@@%%`�@

����)Xdm!2#!"&=463354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&# (88(��(88(� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�8(�(88(�(8�`�%%�``
  
 %%


&%%


%@�`%% @

����!-N}!2#!"&=463"3!26=4&#!#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%`�  �  �%&`%%

`

�%%


&%%


%����=l!2#!"&=463#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+ (88(��(88(@ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �8(�(88(�(8��  �  �

`

%%`&%�%%


&%%


%����!/:EOW!2#!"&=463"3!26=4&#!##546;2#'"354&+%32+5326=4&#!3535# (88(��(88(%& %&��@` & % @
`
 �`%&` @

` @��8(�(88(�(8 &�%&�%�`�%%��
  
 &`%� �
`
��  ����)4>F!2#!"&=463354&+"357"354&+%326=4&+326=4&#!3535# (88(��(88(@ % &  
`
 �`&%` @

` @��8(�(88(�(8�`�%%�``
  
 �%`& �
`
��  ����!-:@!2#!"&=463"3!26=4&#!'373#'#%'#353735##53 (88(��(88(%& %&��@@ 00 @@ 00 0       � �8(�(88(�(8 &�%&�%�pTTppTT�`�@@�� �����)/"3!26=4&#!'373#'#%73#5#'#53#53(88( (88(��@@ 00 @@ 00 0       @� �8(�(88(�(8�pTTppTT�`�@@�� �����!.;A!2#!"&=463"3!26=4&#!#5'53753'#353735##53 (88(��(88(%& %&��` @ 00 p0       � �8(�(88(�(8 &�%&�%�```  HH  @`�@@�� �����*0"3!26=4&#!#5'5375373#5#'#53#53(88( (88(��` @ 00 p0       @� �8(�(88(�(8�```  HH  @`�@@�� �����!-!2#!"&=463"3!26=4&#!53#5##53 (88(��(88(%& %&��@  `  �8(�(88(�(8 &�%&�%�`�``�`����"3!26=4&#!53#5##53(88( (88(��@  `  �8(�(88(�(8�`�``�`����!-9E!2#!"&=463"3!26=4&#!3#53#37'373#'#73#53#3 (88(��(88(%& %&�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8 &�%&�%�@ � @ pTTppTT`@ � @ ����(4"3!26=4&#!3#53#37'373#'#73#53#3(88( (88(�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8�@ � @ pTTppTT`@ � @ ��`�!/:AM!2#!"&=463"3!26=4&#!##546;2#'"354&+73#'3#35#535#� (88(��(88(%& %&��` & % @
`
 �0 @ @ � `  `�8(�(88(�(8 &�%&�%�`�%%��
  
���� �  �  ��`�)0<"3!26=4&#!##546;2#'"354&+73#'3#53#3#53�(88( (88(��` & % @
`
 �0 @ @ � `  ` �8(�(88(�(8�`�%%��
  
����   �  ����!,6BK[l!2#!"&=463"3!26=4&#!32+5326=4&#532+#732654&#%32+"&=46";26=4&+ (88(��(88(%& %&��`%&` @

``%&@  @

�` %& %&

 

 �8(�(88(�(8 &�%&�%@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
����%1:J[!2#!"&=463326=4&+326=4&#3532654&+32654&#%";26=4&#";26=4&+ (88(��(88(�`&%` @

` @&%` @

�`&% &% 

 

 �8(�(88(�(8`�%`& �
`
 �`%% @

 %`&%`& 
`

`
@���*4DU]i!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&+33535#'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

 � @�@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT@���$4EMY!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+33535#373'7#'#��(88(� (88(`&%` @

�&% &% 

 

 � @�@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT@���+1`l!2#!"&=46"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#��(88(� (88(&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00 �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%ppTTppTT@���!O["3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#�(88(�(88(�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �8(�(88(�(8�pTTppTT  �%


%%&


%%ppTTppTT����!1BMW�!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 �`%&` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%���� 1<Fu!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 �`&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%����!.7CL{!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

 %%


&%%


%����&2;j!2#!"&=4633532654&+732654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �8(�(88(�(8��`%%@ @

 �`%% @

 %%


&%%


%����!,6GX`!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&+33535# (88(��(88(%& %&��`%&` @

� %& %&

 

 � @��8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  ����%6GO!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+33535# (88(��(88(`&%` @

�&% &% 

 

 � @��8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  ����!)5=!2#!"&=463"3!26=4&#!3535#'373#'#%3535# (88(��(88(%& %&��@ @�@ 00 @@ 00  @��8(�(88(�(8 &�%&�%`��  PpTTppTT���  ����$,!2#!"&=4633535#373'7#'#3535# (88(��(88(@ @�@ 00 @@ 00  @��8(�(88(�(8���  PpTTppTT ��  ����!/8@J!2#!"&=463"3!26=4&#!##532##'32654&#33535#535#3535 (88(��(88(%& %&��: `%%@&Z@

� @�� `�8(�(88(�(8 &�%&�%�`�%%`�@

��  @@ �` ����'/9!2#!"&=4633'2654&+35532654&#33535#535#3535 (88(��(88(:@&@%%` @

� @�� `�8(�(88(�(8�``%%�``@

��  @@ �` ����!.1<C!2#!"&=463"3!26=4&#!'#353735##73535#5#73#'3 (88(��(88(%& %&��P0       �::    `0 @ @ �8(�(88(�(8 &�%&�%�`�@@��Pp@@ �� ������� +2!2#!"&=463'#353735#53535#5#'#37# (88(��(88(P0       �::    `0 @ @ �8(�(88(�(8�`�@@��PP @@ �� �������!+18!2#!"&=463"3!26=4&#!535#3535#53?3#'3 (88(��(88(%& %&�� �� `� �0 @ @ �8(�(88(�(8 &�%&�%�@ �` ` �������� '"3!26=4&#!3##53##53?3#'3(88( (88(�� `` ��@� �0 @ @ �8(�(88(�(8� `� � ��������!.;D]!2#!"&=463"3!26=4&#!'#353735#532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��P0       @`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%�`�@@��@@%%`� @

`@
`
 %`&� ����*3L!2#!"&=463'#353735#3532654&+732654&##"&=46;5#";5#3 (88(��(88(P0       @ @&%` @

�@

``&%``@�8(�(88(�(8�`�@@��@�`%%@ @

`@
`
 %`&� ����*;LT7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!3535#�% &% 

 
,"� (88(��(88(%& %&��` @�D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%`��  ����*;C+"&=46;2''#"&=46;2'"3!26=4&#!#53##� %& %

 
,"�(88( (88(��`@�@ D&`%&`	
`

`
," 8(�(88(�(8�  �����!.:EO!2#!"&=463"3!26=4&#!'#353735##35#535#732+5326=4&# (88(��(88(%& %&��p0       ` `  `�`%&` @

�8(�(88(�(8 &�%&�%�`�@@�� �  �   &`%� �
`
����)4>!2#!"&=463'#353735##35#535#7326=4&+326=4&# (88(��(88(p0       ` `  `�`&%` @

�8(�(88(�(8�`�@@�� �  �   �%`& �
`
����!Ngs|!2#!"&=463"3!26=4&#!46;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&# (88(��(88(%& %&��& %

& % 
 

  

 
 @

``&%``@@`%&@  @

�8(�(88(�(8 &�%&�%�%%		%%


 


@@
`
 %`&� @@%%`�@

����>Wcl!2#!"&=463346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&# (88(��(88( 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�8(�(88(�(8�


 


%%		%%@@
`
 %`&� @�`%% @

`���-8DNX!2#!"&=46"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535��(88(�`(88(&%�&%��` & % @
`
 � `  `��� ``�� `�8(�(88(�(8 &�%&�%�`�%%��
  
�  �  @@ �` @ �` `���(4>H!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535��(88(�`(88� % &  
`
 � `  `��� ``�� `�8(�(88(�(8�`�%%�``
  
�  �  @@ �` @ �` ����!/:HSt!2#!"&=463"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653 (88(��(88(%& %&��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8 &�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

����)7Bc"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653(88( (88(��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8�`�%%��
  
``�%%��
  
�%&`%%

`

����!/=HO!2#!"&=463"3!26=4&#!#'#5373537##546;2#'"354&+73#'3 (88(��(88(%& %&��00      �` & % @
`
 �0 @ @ �8(�(88(�(8 &�%&�%��``�@@��``�%%��
  
��������,7>"3!26=4&#!#'#5373537##546;2#'"354&+73#'3(88( (88(��00      �` & % @
`
 �0 @ @ �8(�(88(�(8��``�@@��``�%%��
  
��������!+7CL!2#!"&=463"3!26=4&#!75#3357#35#535#532+#732654&# (88(��(88(%& %&��@�����@ `  `�`%&@  @

�8(�(88(�(8 &�%&�%��  �  ��  �   @%%`�@

����&2;!2#!"&=46375#3357#35#535#3532654&+32654&# (88(��(88(@�����@ `  `� @&%` @

�8(�(88(�(8��  �  ��  �   �`%% @

����!1BJR!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#!3535# (88(��(88(%& %&��@ %& %&

 

 � @� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��  ��  ���� 19A!2#!"&=463";26=4&#";26=4&+33535#!3535# (88(��(88(@&% &% 

 

 � @� @��8(�(88(�(8`%`&%`& 
`

`
��  ��  ����!)BL!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#375#335 (88(��(88(%& %&��@ @�@@

``&%``@`������8(�(88(�(8 &�%&�%`��  `@
`
 %`&� @�  �  ����1;!2#!"&=4633535##"&=46;5#";5#375#335 (88(��(88(@ @�@@

``&%``@`������8(�(88(�(8���  `@
`
 %`&� @�  �  ����!,6C\!2#!"&=463"3!26=4&#!32+5326=4&#'#353735##"&=46;5#";5#3 (88(��(88(%& %&��`%&` @

�0       �@

``&%``@�8(�(88(�(8 &�%&�%@&`%� �
`
@`�@@��@
`
 %`&� ����%2K!2#!"&=463326=4&+326=4&#'#353735##"&=46;5#";5#3 (88(��(88(`&%` @

�0       �@

``&%``@�8(�(88(�(8`�%`& �
`
@`�@@��@
`
 %`&� ����!-[k|!2#!"&=463"3!26=4&#!#35#535#7";2+"&51#1;2654&+"&546;234&#;2+"&=46";26=4&+ (88(��(88(%& %&��@ `  `�&% 

 
 % &% 

 
 %� %& %&

 

 �8(�(88(�(8 &�%&�%`�  �   %%


&%%


%&`%&`% 
`

`
����J[l!2#!"&=463#35#535#7";2+"&51#1;2654&+"&546;234&#3";26=4&+";26=4&+ (88(��(88(@ `  `�&% 

 
 % &% 

 
 %�&% &% 

 

 �8(�(88(�(8��  �   %%


&%%


%%`&%`& 
`

`
����!/8FQ_h!2#!"&=463"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&# (88(��(88(%& %&��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8 &�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

����'5@NW"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&#(88( (88(��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8�`�%%`�@

``�%%��
  
``�%%`�@

����!:FP!2#!"&=463"3!26=4&#!#"&=46;5#";5#37#35#535#535#3535 (88(��(88(%& %&��@

``&%``@` `  `��� `�8(�(88(�(8 &�%&�%�@
`
 %`&� `�  �  @@ �` ����)5?!2#!"&=463#"&=46;5#";5#37#35#535#535#3535 (88(��(88(�@

``&%``@` `  `��� `�8(�(88(�(8�@
`
 %`&� `�  �  @@ �` @`	+Dahx#5353#73+"&=3;26='#353735#'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46�  `  � & % 
 
�0       ��&%�%(88(� 
� 

@%��(88(��v
` &%��&%��ࠠ��%&��

�``�@@��``�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@�`"2<Q^%#!"&5463!;!"3!;"3!26=4&##5353#73+"&=3;26=73#5#'#53�%� %&@&���(88( �
���%& %&�  `  � & % 
 
�0       �@%&�&�%@8(�(8�
�&�%&�%��ࠠ��%&��

�``�@@��@`$AHXa��3532654&+%5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=463!2#!"&5732+%";2+"&51#1;2654&+"&546;234&+#"&=46;5#";5#3� @&%` ���&%�%(88(� 
� 

@%��(88(��v
�% &%��&`@

@�&% 

 
 % &% 

 
 % �@

``&%``@��`%%``�&� &%@8(�(8�`@

�
�%@8(�(8��
���&%�&%�

`%%


&%%


%�@
`
 %`&� @�`"2KW`�%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#3%3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[@

``&%``@�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� @�`%% @

 %%


&%%


%
@`5<LZeqz��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �`%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 @%%`�@

 @%%`�@

	@�`"2@KW`lu%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 � @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �`%% @

 �`%% @

@`5<LXak�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5353#7#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 �ࠠ�`@
`
 %`&� @�`"2>GQj%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#35#'#3%#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `   @

``&%``@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �ࠠ�`@
`
 %`&� 	@`5<LVbkv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535%532+#732654&#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%��� `�`%&@  @

``%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �`  @%%`�@

 &`%� �
`
@�`"2<HQ\g%#!"&5463!;!"3!;!2#!"&=46535#3535%3532654&+32654&#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%��� `� @&%` @

``&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�@ �`  �`%% @

 �%`& �
`
@`5<LY���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#46;2+"&53;2654&+532654&+"#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       & %

& % 
 

  

 
�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@%%		%%


 


@%%`�@

@�`"2?lx�%#!"&5463!;!"3!;!2#!"&=46'#353735#346;2+32+"&5#;2654&'>54&+"3532654&+32654&#�%� %&@&���(88( �
��� &%��&%k0        
 

  

 
 % &

% &� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@


 


%%		%%�`%% @

	@`5<LOZgs|5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#73535#5#%'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�::    `��0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�Pp@@ �� @`�@@��@@%%`�@

@�`"25@MYb%#!"&5463!;!"3!;!2#!"&=4653535#5#%'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%�::    `��0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�PP @@ �� @`�@@��@�`%% @

@`5<L\mz�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+'#353735#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&% %& %&

 

 �0       P0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
@`�@@�ਨ��@�`"2CTah%#!"&5463!;!"3!;!2#!"&=46";26=4&+";26=4&+'#353735#'#37#�%� %&@&���(88( �
��� &%��&%&% &% 

 

 �0       P0 @ @ �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
@`�@@�ਨ��@`5<Lamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46;26=#+"&=#7532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%% & 
 
 �`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&� &%��

 @@%%`�@

`@
`
 %`&� @�`"2GS\u%#!"&5463!;!"3!;!2#!"&=46;26=#+"&=#73532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%% & 
 
 � @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&� &%��

 @�`%% @

`@
`
 %`&� @`5<LXcp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#3#5373#%#5'53753����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�����`��  V*pp*j @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ 
V�VVpp````  HH  @�`"2>IV%#!"&5463!;!"3!;"3!26=4&#3#53#3#5373#%#5'53753�%� %&@&���(88( �
���%& %&������`��  V*pp*j @ 00 �@%&�&�%@8(�(8�
�&�%&�%�@ � @ 
V�VVpp````  HH  `5<LRZfs!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&##53%3535#53#5##53!'#353735#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� �� @�@  `  �0        8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%� ���  @`�``�``�@@���`"28@LY%#!"&5463!;!"3!;!2#!"&=46#5#3%3535##5#35335#'#353735#`%� %&@&��`(88(��
��`�&&� &&�� ��  @�@`  `  P0       �@%&�&�%@8(�(8�
�%�&%�&����  @`�``�``�@@��@`5<Lm��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

�%%


&%%


%%%


&%%


%@�`"2S��%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%�%%


&%%


%%%


&%%


%
`5<LShv���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%��� &%��

 `�%%��
  
``�%%��
  
	�`"29N\gu�%#!"&5463!;!"3!;"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+`%� %&@&��`(88(��
��`&&�&&��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%��� 

��%& `�%%��
  
``�%%��
  
	@`5<LXa���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 %%


&%%


%&`%� �
`
@�`"2>Gv��%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&+�%� %&@&���(88( �
��� &%��&% @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 %%


&%%


%�%`& �
`
@`5<LXfq5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535###546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ `  ``` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  ``�%%��
  
@�`"2>LW%#!"&5463!;!"3!;"3!26=4&##53#3#53'##546;2#'"354&+�%� %&@&���(88( �
���%& %&� `  ` �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%`  �  @`�%%��
  

@`5<L\en{��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+732654&#32654&#7'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%

&` @

@@

�0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�x%		%�@

`@

 `�@@��@@%%`�@

	@�`"2BKTamv%#!"&5463!;!"3!;!2#!"&=4632654&'>54&+32654&#32654&#7'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%`&

%` @

@@

�0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�h%		% @

`@

 `�@@��@�`%% @

@`5<LZep�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#537353%32+5326=4&+#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k00      ��`%&` @

@�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@���&`%� �
`
`@
`
 %`&� @�`"2@KVo%#!"&5463!;!"3!;!2#!"&=4635#'#5#37%326=4&+326=4&+#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k      00��`&%` @

@�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&���@@��``��%`& �
`
`@
`
 %`&� @`5<LXdm�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37532+#732654&#7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`@`%&@  @

�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ @@%%`�@

 %%


&%%


%@�`"2>JS�%#!"&5463!;!"3!;!2#!"&=4635#535#35#73532654&+32654&#7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%;``����� @&%` @

�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&� @ � ��`%% @

 %%


&%%


%`5<LT`jt!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#3535#3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%�� @�� `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%`��  �  �  @@ �` @ �` �`"2:FPZ%#!"&5463!;!"3!;!2#!"&=463535#3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&Z @�� `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&`��  �  �  @@ �` @ �` @`5<L\mu�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��   %%


&%%


%@�`"2BS[�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��   %%


&%%


%	@`5<LXamy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#53#5##537532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

@`�``�` @%%`�@

@�`"2>GS_h%#!"&5463!;!"3!;!2#!"&=463532654&+32654&##5#35335#3532654&+32654&#�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `  @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��`%% @

@`�``�@�`%% @

@�`5<LXan5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5'53753����&%�%�(88(� 
� 

@%���(88(`��v
� &%��&%{`%&@  @

� @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

````  HH  @�`"2>GT%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#75#'5#3�%� %&@&���(88(��
��� &%��&%{ @&%` @

�@ 00 @ �@%&�&�%@8(�(8�
�%�&%�&��`%% @

``  HH  ``@�`5<Lm32+#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#+"&=46;2#4&+";2653��(88(�%� %&`� ��(88( �%��

�
�
v��%& %&�& %& & 
 

 
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�%&`%%

`

@�`"2S%#!"&5463!;!"3!;"3!26=4&#+"&=46;2#4&+";2653�%� %&@&���(88(@�
���%& %&�& %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�%&`%%

`

@�`*C`gw��%7'>=4&+";267'#"&=46;2'5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46";2+"&51#1;2654&+"&546;234&##53�% &% 

 
,"'���&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%[&% 

 
 % &% 

 
 %�� �	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@%%


&%%


%� �@�`"2I]��%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2''32#4&+";2+"&5131;2654&+"&546#53�%� %&@&���(88(@�
���%& %&� %& %

 
,"� % 
 

 %& % 
 

 %&�� �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�%


%%&


%%� �	@�`5<LZcs|�5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#532+732654&#32654&#����&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%� `%%@&Z@

``%

&` @

@@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

Xx%		%�@

`@

@�`"2@IYbk%#!"&5463!;!"3!;"3!26=4&###532##'32654&#532+732654&#32654&#�%� %&@&���(88(@�
���%& %&�z `%%@&Z@

``%

&` @

@@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

Xx%		%�@

`@

	@`5<Lmy���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
  `%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

`@%%`�@

 @%%`�@

@�`"2S_ht}%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";26573532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &  @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%`�`%% @

 �`%% @

@`5<LTm{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#33##546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@�` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� `�%%��
  
@�`"2:Sal%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#33354&+"357"354&+�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@� % &  
`
 �@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� `�%%�``
  
@`5<LXcnx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#'32+5326=4&+535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%@ 00 @@ 00 �`%&` @

@��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�&`%� �
`
@@ �` @�`"2>IT^%#!"&5463!;!"3!;!2#!"&=46373'7#'##326=4&+326=4&+535#3535�%� %&@&���(88( �
��� &%��&%@ 00 @@ 00 �`&%` @

@��� `�@%&�&�%@8(�(8�
�%�&%�&�pTTppTT�%`& �
`
@@ �` 	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

@�`"2=HYj�%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+#+"&=46;234&+";265�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

   
 

 
 & &% &�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
��  @�`"2BS^iq%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+33535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
��  @`5<LX^�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%#537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 `� �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT  �%%


&%%


%@�`"2>Dr%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%
`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT	�`"2=HXi��%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT	@`5<LXamv~5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

` @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

��  @�`"2>GS\d%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#!3535#�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

` @��@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

��  	@`5<LZe���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 %%


&%%


%@@%%`�@

@�`"2@Kz��%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 %%


&%%


%@�`%% @

@`5<LXy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  �%&`%%

`

�%%


&%%


%@�`"2>_�%#!"&5463!;!"3!;!2#!"&=46#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&`�  �  �

`

%%`&%�%%


&%%


%	@`5<LZep{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+%32+5326=4&+!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[` & % @
`
 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 &`%� �
`
��  @�`"2@KVai%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+%326=4&+326=4&+!3535#�%� %&@&���(88( �
��� &%��&%[ % &  
`
 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �%`& �
`
��  @`5<LXek5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�`�@@�� �@�`"2>KQ%#!"&5463!;!"3!;"3!26=4&#'373#'#%73#5#'#53#53�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 0       @� �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT�`�@@�� �@`5<LYfl5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#5'53753'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @ 00 p0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�```  HH  @`�@@�� �@�`"2?LR%#!"&5463!;!"3!;"3!26=4&##5'5375373#5#'#53#53�%� %&@&���(88( �
���%& %&�@ @ 00 p0       @� �@%&�&�%@8(�(8�
�&�%&�%�```  HH  @`�@@�� �@`5<LX5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4653#5##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[  `   `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�``�`@�`"2>%#!"&5463!;!"3!;"3!26=4&#53#5##53�%� %&@&���(88( �
���%& %&�  `  �@%&�&�%@8(�(8�
�&�%&�%�`�``�`@`5<LXdp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37'373#'#73#53#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`�@ 00 @@ 00 ���` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ pTTppTT`@ � @ @�`"2>JV%#!"&5463!;!"3!;"3!26=4&#3#53#37'373#'#73#53#3�%� %&@&���(88( �
���%& %&�����`�@ 00 @@ 00 ���`�@%&�&�%@8(�(8�
�&�%&�%�@ � @ pTTppTT`@ � @ @`5<LZelx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+73#'3#35#535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �0 @ @ � `  ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
���� �  �  @�`"2@KR^%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+73#'3#53#3#53�%� %&@&���(88( �
���%& %&��` & % @
`
 �0 @ @ � `  ` �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
����   �  
@`5<LWbnw��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+532+#732654&#%32+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&` @

@�`%&@  @

�` %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
	@�`"2=HT]m~%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+3532654&+32654&#%";26=4&#";26=4&+�%� %&@&���(88( �
��� &%��&%�`&%` @

@� @&%` @

�`&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 �`%% @

 %`&%`& 
`

`

`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&+33535#'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

 � @�@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT	�`"2=HXiq}%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+33535#373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

 � @�@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT`5<LX^��!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�pTTppTT  �%%


&%%


%ppTTppTT�`"2>Dr~%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#`%� %&@&��`(88(��
��`&&�&&�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%ppTTppTT	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%@�`"2BS^i�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%	@`5<LXamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

 %%


&%%


%@�`"2>GS\�%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

 %%


&%%


%	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

 � @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
��  @�`"2=HYjr%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+33535#�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

 � @��@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  @`5<LT`h5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#'373#'#%3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@ 00 @@ 00  @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  PpTTppTT���  @�`"2:FN%#!"&5463!;!"3!;!2#!"&=463535#373'7#'#3535#�%� %&@&���(88( �
��� &%��&%[ @�@ 00 @@ 00  @��@%&�&�%@8(�(8�
�%�&%�&`��  PpTTppTT ��  @`5<LZcku5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#33535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

� @�� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

��  @@ �` @�`"2@IQ[%#!"&5463!;!"3!;!2#!"&=463'2654&+35532654&#33535#535#3535�%� %&@&���(88( �
��� &%��&%U@&@%%` @

� @�� `�@%&�&�%@8(�(8�
�%�&%�&�``%%�``@

��  @@ �` @`5<LY\gn5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##73535#5#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       �::    `0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��Pp@@ �� ���@�`"2?BMT%#!"&5463!;!"3!;!2#!"&=46'#353735#53535#5#'#37#�%� %&@&���(88( �
��� &%��&%k0       �::    `0 @ @ �@%&�&�%@8(�(8�
�%�&%�&�`�@@��PP @@ �� ���@`5<LV\c5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535#53?3#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;�� `� �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �` ` ����@�`"2<BI%#!"&5463!;!"3!;"3!26=4&#3##53##53?3#'3�%� %&@&���(88( �
���%& %&�`` ��@� �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%� `� � ����@`5<LYen�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       @`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@@%%`�@

`@
`
 %`&� @�`"2?KTm%#!"&5463!;!"3!;!2#!"&=46'#353735#3532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k0       @ @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@�`%% @

`@
`
 %`&� @`*C`gw%7'>=4&+";267'#"&=46;2'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#V% &% 

 
,"g���&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @��	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  @�`"2I]e%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2'7#53##�%� %&@&���(88( �
���%& %&�� %& %

 
,"�@�@ �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�  �@`5<LYep{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##35#535#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�0       ` `  `�`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@�� �  �   &`%� �
`
@�`"2?KVa%#!"&5463!;!"3!;!2#!"&=46'#353735##35#535#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%�0       ` `  `�`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�`�@@�� �  �   �%`& �
`
@`5<Ly���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4646;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%& %

& % 
 

  

 
 @

``&%``@@`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%%		%%


 


@@
`
 %`&� @@%%`�@

@�`"2_x��%#!"&5463!;!"3!;!2#!"&=46346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&#�%� %&@&���(88( �
��� &%��&% 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�


 


%%		%%[@
`
 %`&� @�`%% @

	`5<LZeq{�!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%��` & % @
`
 � `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�`�%%��
  
�  �  @@ �` @ �` �`"2@KWak%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&� % &  
`
 � `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
�  �  @@ �` @ �` 	@`5<LZes~�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 ` & % @
`
  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
``�%%��
  
�%&`%%

`

@�`"2@KYd�%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653�%� %&@&���(88( �
���%& %&�`` & % @
`
 ` & % @
`
  & %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

@`5<LZhsz5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#5373537##546;2#'"354&+73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�00      �` & % @
`
 �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@��``�%%��
  
����@�`"2@NY`%#!"&5463!;!"3!;"3!26=4&##'#5373537##546;2#'"354&+73#'3�%� %&@&���(88( �
���%& %&�p00      �` & % @
`
 �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%��``�@@��``�%%��
  
����@`5<LVbnw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4675#3357#35#535#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[�����@ `  `�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��  �  ��  �   @%%`�@

@�`"2<HT]%#!"&5463!;!"3!;!2#!"&=4675#3357#35#535#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%[�����@ `  `� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��  �  ��  �   �`%% @

@`5<L\mu}5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��  ��  @�`"2BS[c%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#!3535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��  ��  @`5<LTmw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#375#335����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@`����� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� @�  �  @�`"2:S]%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#375#335�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@`������@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� @�  �  @`5<LWbo�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+'#353735##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@�0       �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
@`�@@��@
`
 %`&� @�`"2=HUn%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+'#353735##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%`&%` @

@�0       �@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
@`�@@��@
`
 %`&� @`5<LX���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+;2+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  `�&% 

 
 % &% 

 
 % � %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �   %%


&%%


%&`%&`% 
`

`
@�`"2>m~�%#!"&5463!;!"3!;!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+3";26=4&+";26=4&+�%� %&@&���(88( �
��� &%��&%[ `  `�&% 

 
 % &% 

 
 % �&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&`�  �   %%


&%%


%%`&%`& 
`

`

@`5<LZcq|��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&###546;2#'"354&+##532##'32654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

�` & % @
`
 � `%%@&Z@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

``�%%��
  
``�%%`�@

	@�`"2@IWbpy%#!"&5463!;!"3!;"3!26=4&###532##'32654&###546;2#'"354&+##532##'32654&#�%� %&@&���(88( �
���%& %&� `%%@&Z@

�` & % @
`
 � `%%@&Z@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

@`5<Leq{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#"&=46;5#";5#37#35#535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�@

``&%``@` `  `��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@
`
 %`&� `�  �  @@ �` @�`"2KWa%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#37#35#535#535#3535�%� %&@&���(88( �
��� &%��&%�@

``&%``@` `  `��� `�@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� `�  �  @@ �` �	5	!!!�������r��s���s����� �	7!53!7%"&54632�``�``�%%%%��``�`���```%%%%`'#'3!53!3�����@�@�`� ��� ����@	���'!!3#3#3#3#3#3#!!333!�@���������������@����@@�������������@���@@@#5!3!265!!!!!!!!3#!!���%`(8���@����������@�����@%8( ����@@@@@@@@�����2'7>%''`B^@�@1��@ P�<�@8��^B1@�@� ��@P��@8����7'.'7#%5���@�@�;2c����������N@@�@�@��2;N��������������6$3#*10��Q�c��|H�0�@�d8�O�������	6	&7>%811.54632#"&'0>781>7���'P�f��
iiN98((88(	��9s��
���P��'�
��s9	(88((8��9Nii
���9234.234.7.54632#"&'%?�7j30W&%;`e��G�225`Fz�@��%%%	��@@�`;%&W03j7��e�`522�G]�zF�@@�`�	%%%���@����%&"'1;0232677'764'#5�&j&�y�k�(
�
�j�z�%%��m�m�*�%%�z�j�'�
�k�y�&j&�em�m�*���a�6.'32>7>&'#"&'32>7>'aK\j77j\KHYe55eYH~!|F)N!

,TJ="
"�E�wl//lw�E+XXV).L66L.)VXX+��>K-?'@�5*0�A���)-#54&#!"3!26=3!#";2654&+5!5!�&�@&&�&��� 

�

 @�@���@&&�&&@��
��

@
@�@�!-48181!8181!5!"3!2654&##"&54632!537������&&�&&�8((88((8@��@�@�@&�&&&�(88((88�����������,<HO#54&#!";3!2654&#8181!81!"81!8181!81#"&54632!537@@&��&&@&�&&�&@��&�����8((88((8@��@�@@&&�&@&&&@��@&��(88((88�������@+?C32>54.#"#.#!"#"3!2654&".54>32#530!8L++L8!!8L++L8!��$0�0$�&&�&&�&;gM--Mg;;gM--Mg���`+L8!!8L++L8!!8L50PP0&��&&@&��-Mg;;gM--Mg;;gM-�@���	L#32654&!";74.#".54>32.'>54&'>5 @@
�

@�P��jj��P4F),Aq�VV�qA,)F4��@
�

��
�@j��PP��j.X)9*L;'�
*V�qAAq�V*
�D';L*9)X.���*3#".54>32#".54>32�@#=R..R=##=R./S�#=R..R=##=R./S�� !:,,:!!:,pr�!:,,:!!:,p@@(,.#"32>7>54.'
�6qvy??yvq66qvy??yvq6��@�� )TY[//[YT))TY[//[YT)�����	@@"!#535#535#53!!#535#535#53%��������@����������@��@�������������������@@+/4632#"&%4632#"&54&#!"3!26=!5!�^BB^^BB^��^BB^^BB^&��&&�&����B^^BB^^BB^^BB^^�`&&��&&`��������'3?K[!"3!2654&"&54632"&54632"&54632"&54632"&54632.#!"463`�B^^BB^^��(88((88((88((88�(88((88�(88((88((88((88X:�B^I7&^B�B^^BB^�@8((88((8�8((88((8�8((88((8�8((88((8�8((88((8�7I^B�:X}&@����".#"32>72#"&5463�#Wcn:j��PP��j:ncW#��@))))
)B/P��jj��P/B)M�))))��2�!.'1897!5.'>&2IeF--FeI{j�f
Q.�.Q
f�jd6aWM!!MWa6\ɋ&GX|&&|XG&������O">7>54.#".'.#"3267>7!5.'32>54.#,N'8" 8K**K8 "8'N,+K8!!8K+,N
))3�3))
N,+K8!!8K+7"

(YN-+L8""8L+-NY(

"!8M++M9 #
 8_L8&&8L_8 
# 9M++M8!���@�	��@@����"F[e�4.'81#0130412>5"&'.'.5467>7>32467#*10232.'?>'"&'.'.5467>7>32#0SE~�ii�~ES0#�				��$B&3773&B$t�Rv	vK�c90AE"Q./Q"EB0:c�L�� .wBBw.!

!.wBBw. 6'K#_X_#K���
0B
....
��$EQ2.#"'>3%>32.#"1.#"'>7>324632#"&�O�4Z#]55]#Z4�O�;.hs|@@|sh.[$T\c33c\T$�(LGC[6~��MM��~6[CGL(*UWZ--ZWU��%%%%�<5Z#((#Z5<E-F//F-[$8&&8$�)17[6T::T6[71)		��%%%%���%Do4.#"!'>.54632'>54&#".54>32''>54.#".54>32P��jj��P1Y{I�I{Y1��%%3,:K55K:,KDW(F]55]F(WDK�I/P: 2WuBBuW2 :P/I<dH(Gy�]]�yG(Hd<�j��PP��jS�}_  _}�(%%;;	F.5KK5.F	�O5aJ,,Ja5O����;O`5BuW22WuB5`O;�SkE]�~JJ~�]EkSp-AU4632#"&>54&'.54>7#.54>7>54.�K55KK55K&>,,>&!''!��'!&>,,>&!'�$4!6W>"">W6!4$�6W>"">W6!4$$4�5KK55KKN;HT..TH;4�SS�4��S�4;HT..TH;4�S@zn`("]o~DD~o]"(`nzp"]o~DD~o]"(`nz@@zn`����
.2654&#"#".=##!5#5>=�B^^BB^^"#=R..R=#@(E]6�@�6]E(^B�B^^B��B^`.R=##=R.``8bM1�@@�1Mb8`@����&!"&5463!!"3!181"389!5!��`(88(`��5KK5� 

`��@��8((8K5�5K��@

@@H@#'8#";2654&#53%#";2654&#537?>'.�

�
-��`�

�
-���� ���@
�@

�
�@�
�@

�
�@OW��	W;��@�'-%5#35#3#35#3#35#3#35#3##!53!5@@�@�@�@�@�@�@�@@@@��@��@�@@���@@���@@���@@��@@@���@@����#!"3!2654&!!!!!!!!!!`�(88((88H�@�����@��@��@��@�8(��(88(@(8����@@@@@�@����'1!"3!2654&!!!!!!4632#"&#"!54&`�(88((88H�@�����@��@@8((88((8��(8@8�8(��(88(@(8���@@@@�(88((888&@@&@����!7.'.'.#!"3!2654&''#5#!"&54630:1;�-3')�!//!�!/�%
�)�	� 		���
��3-/!��!//!p)'6)�
%��		`	�
@����"8K.'.'.#!"3!2654&''#5#!"&54630:1;.#!"463!.�-3')��!//!`!/�%
�)o	��		s�s
��')��!/%	�[3-/!� !//!�)'6)�
%�		�	�
�/!� ,.	@����!7ESa.'.'.#!"3!2654&''#5#!"&54630:1;!"&5463!2'!"&5463!2'!"&5463!2�-3')�!//!�!/�%
�)�	� 		���
�@

�

�@

�

�@

�
�3-/!��!//!p)'6)�
%��		`	�
�



�



�



@����+3I%!575#"&546327.'.'.#!"3!2654&''#5#!"&54630:1;@����8((88((8V-3')�!//!�!/�%
�)�	� 		���
�@�@����(88((88�3-/!��!//!p)'6)�
%��		`	�
@����#9a.'.'.#!"3!2654&'1'#5#!"&54630:1;..#"326=%.#"32654&'�-3')�!//!�!/�%
�)o	� 		���
���!5KK55K!5KK55K�3-/!��!//!p)'6)�
%��		`	�
G@�8((88(�3�8((88(@
@����$:
.'.'.#!"3!2654&''#5#!"&54630:1;�@��-3')�!//!�!/�%
�)�	� 		���
�@��[3-/!��!//!p)'6)�
%��		`	�
@����%;?C.'.'.#!"3!2654&'9'#51#!"&54630:1;!!%7'�-3')�!//!�!/�%
�)o	� 		���
�@��@���3-/!��!//!p)'6)�
%��		`	�
��������
@����%;?CGKOSW[jn.'.'.#!"3!2654&'9'#51#!"&54630:1;3#;##3#;##3#;##3#;#;26=4&+5##5�-3')�!//!�!/�%
�)o	� 		���
��������������������������P����3-/!��!//!p)'6)�
%��		`	�
@@@@@@@@���@�@@���!!!%#35!#!35!��@�����e�@��e��@������e������ee���@���
47=#54&+"#!'#58138154&+3#!35#"3!!#!35!��&�&����@
@ ��� @

 ��@e��@@@&&@��@@��
@���@@
��
��[e�@���
	
%	7%	7��V�����g��g��g��g���������3�3�3�3�@!!����@��@@@
%!!!@������ ���@��@��@'!!##5#53533@��@��������������@�����@	'!!!5!@��@�����������@�@'!!'333@��@�ࠀ����������@'!!###@��@�ࠀ��������"���!"27>54&"&54632��0�$�(���(88((88��$(�d�0���8((88((8"���.!"27>54&"&54632#"2?��0�$�(���(88((88�x P0�$�(��$(�d�0���8((88((8� �$(�d@@#'+/37;?3#3#3#3#3#3#3#3#3#3#73#73#%3#%3#'3#%3#���@@�@@�@@@@�@@��  �  �  ��@@�@@�@@@@@@@@�������@��������������������������@@@@@@@@@@@@@@9���"&*.26:>BFJNRVZ^bfjnrvz~��������������������������!!1!3#%!!1!3#!!1!3#3#;##3#;##3#;##3#3#;##3#;##3#;##3#;#3#%3#73#'3#%3#;#73#;#73#;#73#;#73#3#%3#73#;#73#73#3#%3#73#73#;#73#3#%3#;#73#;##3#73#73#@�@�����@�@������@�@�����@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@�@@��@@@@@�@@@@@@@@@@�@@@@@@@@@@@@@@@@@@@@��@@@@@@@@�@@@@@@@@��@@@@@�@@@@@@@@@@@��@@@@@@@@@@@�@@�@@�@@��@�������@������@�@������@@@@@@@@@@@@@@@@@@@�@@@@@@�@@�@@�@@�@�@@@�@@@@�@�@@@�@@@@�@�@�@@�@@@@@@@����,1''#"&546?'&"7>322764'	@����J !%6 J@��J !%6 J@T���������J 6%! J��@J 6%! JT@���������0%#"&54632#"&54632!4&+33!5!"&585�8((88((8�8((88((8�%��0K5�% (88((88((88((88x�%@�d45K@%����';?C"32>54.".54>32535#5##3#3353+53#53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0��@����@��@@�@@�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<��@@@��@@@��������'r"32>54.".54>32&+"&'32654&+532654&+>;27>'.+"#";#";;2676&'�c��KK��cc��KK��cP�i<<i�PP�i<<i�o
-�2	�

��

�	2�-
J+�:X#

  

#X:�+J�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<$

@

$%+I7

@

7I+%����'V"32>54.".54>327#532654&+546327>'.#"#";!2654&#�c��KK��cc��KK��cP�i<<i�PP�i<<i�0�`

`8(,
J+B^ 

  

�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<�

 (8%+^B 

�

����'b"32>54.".54>322654&+76&'&'.#";#";326=32654&+53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0

D_ee_D

``

`

`

``�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<`

����

@

`

`

@@@#'+/!"3!2654&!2!546!"&5!%3#73#73#���(88(@(88��@
��M��
���@@�@@�@@@8(��(88(@(8@
``
��
 ��
����������#'+;G!"3!2654&!5!%!"3!2654&!5!5!5!!"3!2654&##5#53533���&&@&&��@��&&@&&��@��@���&&@&&�@��@��&��&&@&�@�&��&&@&��@�@�&��&&@&���@�����/?N\"32>54.4632#"&1'>54&'79.#"'>32.546773267#"&j��PP��jj��PP����pPPppPPp^�	

	��I11I'V..V�ޱ	

	��I11I'V..V�P��jj��PP��jj��P�PppPPpp[I11I'V..V'I�	

	���I11I'V..V'���	

	�����)#"&'.54676.#"130>54.�0 00`00PP0$HTB<*-I[//���0<H<>TV@0PP00`00 0VT><H<0���//[I-*<BTH$���:.546'.#"&'&67>781>31:3:31281�biS!f==f!Sib%If�[[�fI%�*a	&$$8$#

#$8$$&	a*>&.##.&>@����#'+!2#"&5463!54631323#3#3#3#���5KK55KK5���K5�5K�@````````���K55KK55K�@5KK5��@�@�@�@!"3!2654&!7!	%���(88(@(88�������ggg�����@8(��(88(�(8�Z����&�6nn��"�����#35%7'7 ``���'i�``��@�@�``����'���``@@�@���@�"10>54."&54632BuW2dxddxd2WuBPppPPpp�2WuBx�̂��xBuW2�pPPppPPp���@�'3"10>54.".54>32'4632#"&BuW2dxddxd2WuB)G55G))G55G�I33II33I�2WuBx�̂��xBuW2��5G))G55G))G5�3II33II����!*'.5!"&'&676#!2	 � 

�
�@	��p
^�@��
�@
@
������!$2"32>54.4>32.5
"&'%#j��PP��jj��PP����Aq�VR�8�d�4<�nIR�8��4<Aq�V�P��jj��PP��jj��P�V�qA<4��d8�RIn�<4��8�RV�qA���%%%@���@���������� �@����%%%
%%%%�����`@`��������������Rf��f]��]R]x] @�%+2#5267>54&'.#"33>!3�]�zFFz�]G�225522�GG�2&2	���Nv����Fz�]]�zF`522�GG�22552&_4�Q�g;���@����-%'3"32>54.".54>32�Ӏ��j��PP��jj��PP��jP�i<<i�PP�i<<i�����P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���"32>54.'3j��PP��jj��PP��)Ӏ�Z�P��jj��PP��jj��P���Z@����'7EK"32>54.".54>32>54&#"1%.#">#!5]�zFFz�]]�zFFz�]K�a99a�KK�a99a�\
pP.P2[QE��P.Pp
EQ[�@@Fz�]]�zFFz�]]�zF��9a�KK�a99a�KK�a9�0Pp)"
'6E(�")pP0(E6'���@���:]%4.54&'.'4654&#"3267>5041.#".'.'>7>32O`P!2@$&&)F3P`P<k�V<%%<V�k<�(_4I22I4_(8:

:8 JPU++UPJ 8:

:8�lhHPT
*K=+
$$4GZ1TPHhl3)&&)361DD1			
		
			@���� A5354&+"332>54.#"&'.5467>7326'�%�%�Q�g<Aq�VV�qA<g�q-u@@u-.00.+p==p+.00.�A@%%@AFo�RV�qAAq�VR�oF��.00.-u@@u-,0��:0,-u@@u-����#'373#73#73#3#73#73#3#73#73#%3##5!#5#!!!@����������������������������������@���@��@@�����������@��������@@@@��@��#'!!!";!32654&"&54632!!����&&��&&��%%%%%�����@&��&�&@&�%%%%�@@@�@#'+/37;?C!"3!2654&3##5%3##5%3##5'3#3##53!5!#535#535#53@�&&&&�&���������������@@��@@@@�������@&��&&�&��@����@����@����@�������@�@��
!!!!!'@����� @@���������@@@@
4&#!"#!5!5!7!81!81�&��&��������&&����@@���@�#!"3!2654&!!"&546327!!�@(88(�(88�x��%%%%��8(��(88(@(80 ��%%%%�����@� !"3!2654&"&54632#%!!��&&@&&�� ��@�&��&&�&�.��@����!"3!2654&"&54632%!! ��(88(�(88��


��@�8(��(88(@(8� 



`���/O.'7'&"#132>7>54.#".'.5467>32�B�J�@� �@�-YVS(6qvy??yvq6�)TY[//[YT))TY[//[YT)�	�@�@�	)TY[//[YT))TY[//[YT��6v??v66v??v���!/=	.#!"3!2654&##'#5!'!"&5463!2!"&5463!2��
�@
�%�%<�������@

�
3��

@
4@����%% 0��+�ի



�



���!	.#!"3!2654&##'#5!��
�@
�%�%<������4@����%% 0��+���!3!265	35!37!@���
�
������[@J@���`

������@@�!3!265!5#	7!@���
�
����@@�[@J@���`

�������@@���	###
-'%����H�[�[H�����Ha��aHi������33	3
-5%�������%�[�[%����pcm��mc�������!!!3#!3!3��������@@K5�������@5@@7!265!%3#!!��Pp�p�@@���@@pPPp�@�����+A"32>=4.".532>=".532>=j��PP��jj��PP��jj��PP��jj��PP��jj��PP��jj��PP���,:!�!:,,:!�!:,��,:!�!:,,:!�!:,��,:!�!:,,:!�!:,�!"'!'>32>54.#5d\R#���5�PP�i<"0U(@-P��j�'7#����4<<i�P+QIA`#Vbl9j��P� 7.54>32!.#"-@(U0"<i�PP�5���#R\d5j��P�9lbV#`AIQ+P�i<<4���#7'P��@����
>.	6�+&8�������FO@M��e�����������5	5&&>@�����8&+iOF��������e��Mr�����75	5.7+&8�������FOi�M��e��������r@����%	>&''������8&+iOF�ɸ����e��Mr������"2#"&'5>54&'.54>j��PP��j()Z]`03M,F1P���Aq�VV�qA)3
W4HR\1V�qA����!N%#"&'#".54>322.#"*#"&'5>54&'.54>@$4Y )<iN--Ni<<iN-��h��R%Q*H�359()Z]`03M,F1P��;"8(#(F]55]F((F]5*Kx?n�U1-/{D"@)3
W4HR\1V�qA����$H12#"&'5>54&'.54>3.'#"&'2>7>7>54&5�c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.���3W">7>3:3267>7>54&'.'.#512#"&'5>54&'.54>)O&#>253/ )O&#>2552>#&O)j��PP��j()Z]`03M,F1P��

")d6;3.		


")d66d)"

�Aq�VV�qA)3
W4HR\1V�qA����!n%#"&'#".54>32>7>3:3"&'5>54&'.54>32.'.'.'.#"@$4Y )<iN--Ni<<iN-��253/ ()Z]`03M,F1P��jh��RC"	2(>#&O))O&#>;"8(#(F]55]F((F]5*K�)d6;3.		
�)3
W4HR\1V�qA?n�U*N "



"����3X|">7>3233267>7>54&'.'.#512#"&'5>54&'.54>3.'#"&'2>7>7>54&5�&I"!9-0./&I"!9-00-9!"I&c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF@%Z05..	%Z10Z%�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.@�@%5>54.#"!4.@5K$NHHN$K5Q�g;�;g��5�J<iN--Ni<J�5-CW00WC-����A%5>54.#"!4.>7.'.5467>7.#"!>75K$NHHN$K5Q�g;�;g���*e9	P9
OZHN$K5Q�g;
�5�J<iN--Ni<J�5-CW00WC-)
*Y-Aw20<:E-Ni<J�5-CW0
	���2>%4>7>54.#"!."32>54.##5#53533�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid�@��@��9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-����@�����26%4>7>54.#"!."32>54.!5!�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid��@�9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-��@���#	'!5.'5>54.#"!���`@�`��@2�K5K$NHHN$K5Q�g;�`��`@�``s&5�J<iN--Ni<J�5-CW0���4632#"&#'#"!4&@pPPppPPp�#�J``J�#`  PppPPpp��lt``���pP��@Pp@=2#".5'4>3">!2#".5'4>3">�.R=##=R..R=#Fz�]@u-	I.R=##=R..R=#Fz�]@u-	#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@=".54>32#5267>7!".54>32#5267>7 .R=##=R..R=#Fz�]@u-	��.R=##=R..R=#Fz�]@u-	@#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@����";W>54&'!!>54.'4>75.51!.=467>7!!.�4U=!��!=U44U=!z!=U4��9S66S9�9S66S9�661�f1666M�M�!^s�H  H�s^!!^s�H  H�s^!�@FhMdMhFFhMdMhF"G@G3 2G@GxKLw8��#/BUht4632#"&4632#"&4632#"&4632#"&81463281#"&5%81463281#"&581463281#"&54632#"&�K55KK55KK55KK55K�%%%%p%&&%��%%%%��&%%& 9'(88('9X****@5KK55KK;5KK55KK�%%%%�%%&&V%%%%p%%&& '99'(88(��**** ���:r.'.'.'.7>7>7>7>7:3265<51'.'.'.'.7>7>7>7>19$#T.-a11_,-O!!46!"N++Z..Y))K1	%f3I((U**S'&E,.C%%O''M$#@)

!�2c-.R"#57#"Q-,^//\++M  24! L)4%�(G.1G&'Q))P%%B+
-A$#K&$3����
-?Pbp�����"&=4632"&=4632"&/&676#"&/&676#"&/.7>"&/.7>#%#"&546;2%81#"&54638132#"&'&6?6#"&'&6?6#"&'.?>#"&'.?>#####�Y-Yf	Z
Z	�7�*�
_��
�o����

���

�$			�m�

��7
		Y	 		Yf
Z
Z�#�##�#�J����-�-��	���Z
*Y*��Z
Z��$	Y

$	ZuZ
Z��!�	 �
x�

����*4C467'7.%>54&'7.'>75#"&'3267'��*;&r'-�-'r&;*��Ep!�RgyB��!pEBygRTC##Cr7}CC}7r�		<07h_T#�+o>>o+�#T_h70<	1S;<:cL1œ;S�1Lc:��!!����'Z"32>54.2#".54>#".'.54>7813267>4&'7j��PP��jj��PP��j5]F((F]55]F((F]fGMT++TMG/  /C11110{CC{01111C/  /�P��jj��PP��jj��P�(F]55]F((F]55]F(��/  /GMT++TMGC2{�{2/33/2{�{2CGMT++TMG9����)6BObn4632#"&81463281#"&4632#"&4632#"&5%4632#"&4632#"&581463281#"&5!#"&54632�K55KK55K�>++>>++>g8('88'(8��2$$22$$2��. !--! .i****w&%%&�C00DD00C@5KK55KK��+>>++>>�(88('88I$22$$22$p!--! ..0****&&%%0DD00CC��F#/;GS%4632#"&4632#"&%4632#"&4632#"&4632#"&%4632#"&4632#"&�8((88((8�`8((88((8@8((88((8�:8((88((8L8((88((8��8((88((8L8((88((8 (88((88�(88((88((88((88N(88((88��(88((88((88((88t(88((88���8".'.5467>732>54&'.'7#3c\T$$8&('%h?+3U!Aq�VV�qA!U3+?h%'(&8$$T\c3@&8$$T\c3I�=;_VM11q;V�qAAq�V;q11MV_;=�I3c\T$$8&���3">3232654.2>7#".54&#"i��RCq�UV�qA8((8P��ji��RCq�UV�qA8((8P���N��h[�vDFz�](88(j��P�N��h[�vDFz�](88(j��P���D�1812233332323023323:323232013023181263623263263>7>7>7>7627267>7261263>7>7>7>7>3>7>7>7>7>7>7>7>7>7>7>7465>7>7467465>7465465645045>5465<5645645<12650451814&5&454&54&5.'.'.'.'&4'4&'.'4&54&5.'.'.'.'.5.'.'.'.'.'.'.'.'.'.'"&'"&#.'.'.#.#.#.'"&#"&#0"#.#"&#*#&"#&"#*#4&#0"#181"#"#"#"#"""#"##0107041465>7467465>7461465>7>7>7465>5>7>7>7>7>7>7>7>7>7>7>7263>7>7263627263>3623623021627:3:7:3263:3:3:323:323021209>720222321233322110109011"#"#""##"#"1*#"*#**#"#*#*#*#&"#*#&"#0"10"9"&'.'"&'"&#.'"&1"&#.#.'.'.#.'.'.'"&'.'.'.'.'.'.'.'.'4&5.'.'4&5&4'4&5.5&45"41<1&4'<5<'<54&5<5<5<5645<5645041049.'	
%	


	%	
&


		$J


#





"


�	



	%	
&	



	%	
%A





"





#���-!7.#"3267>7#".54>327���7�MM�76::67�MM�7	`#Vbl:j��PP��j5d\R#�@�6::67�MM�76::6	T(A-P��jj��P'7#����)7ES!!%!!#!!!#"3!26533!2654&#"&546;2#"&546;2#"&546;2@������x8���8**0*�*0**�����@

@
o���@@@���*��**x��**0*��



�



�@



����"6%'.>54.#"326776&".54>32��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����"6B%'.>54.#"326776&".54>32##33535#��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]������Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����������"6:%'.>54.#"326776&".54>32!!��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]����Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(@����
!7')'7''77'7�`��`����`�������`����`�����`�������`����`��`�`��`�����
!'7''77'7)7'@���`����`����`��`����`����`����`��`����`�� ���`�����
''7'!7��`������`����`��`���`��������
''7'!7���`����`����`��`���������!-";535353732>54."&54632�BuW2�{%@���S6BuW22Wu(88((88�2WuB�{�%@��S	
2WuBBuW2��8((88((8����$)9'./.35353535676&'"'&4?62�e5e9��F�� ����	�6���.8-���-
	��		-
		�e5e�6����@��GF9��.7-���-			
-		��	����##54&+"#"3!2654&%46;2!PqO�Oq �\&�&��OqqO�� ��&&�����#2#54&+"32#!"&5463!5463Oq�&�&���qO�qO��&&�� ��Oq����'%>54.#""/3267?6&�3-Ni<*�f6�-Ni<%D�3e��D%<iN-�6f�*<iN-�3e3�37OS54&+"#3;26=!5534&+"!!;26=35#534&+"#3;26=!5!53�����@������@�����������@����@�����������������@����37OS326=4&+5##";33#26=4&+##";35'3#26=4&+5##";3'3#��������������������������@�@�������@������@������6J.>7'#".5#&'>323467>7.'".54>32�	/#e2(G5�

>HM#e%
	.#e2(G5�

>IL$d%
�Z+K9  9K++K9  9K^#LI>�
5G)2#.	�
$#LH?�5G(1#.	�$m 9K++K9  9K++K9 ���0<��%7'./#'737>77'>?5'.'"&546325'.'7'.'7'.'7'./#'''77737>77'>77'>77'>?"&54632l)-:	@	:-)FF)-:	@	:-)FF�%%%%C9C'.8
;%@%;
8.'C9CC9C'.8
;%@%;
8.'C9C��:QQ::QQ�:-)FF)-:	@	:-)FF)-:	@	�%%%%�@%;
8.'C9CC9C'.8
;%@%;
8.'C9CC9C'.8
;%kQ::QQ::Q����%&"'!'#72?64'��'�.���DΠθ.(q�.�.�DΠθ'��q(	����/3'#3#3#5#3#3#%37'	&"2?64''7�@��@@��@@�@���@@@�@�@2��(<|(<��@��@���@@�@@@���@�@�N|<(��<(R�@����)#54&#!"#"3!2654&%!!##5#53533��&�&�5KK55KK������������&&�K5�5KK55K���@��������=5#.'3'#4&1>54&#"0#'3#3#73326737#>7�%�F>:�pPPp�:>F�%��|F>:p,�JJ�,p:>F|�@7a(�OppO���(a7@"A���:EE:�A"����"32>54&'7.#�]�zFFz�]]�zF@SgyB��Fz�]]�zFFz�]6e-�7\A$�@���N7!!3"&5463:37.54632:3:3.54632#*##"&5467'*#*##�����(88(h8((8h�	8((88(�	8((8hh8(@���8((8�(88(�*(88((8��(88(��(8@7!!3#3#3#3#�������������������@����@���@#'7;#";2654&#3#";2654&#3#";2654&#3 �

�

��@�

�

��@�

�

��@
��

@
���
�@

�
�@@
��

@
����$0<5!#3267#"!4&+5>7326=#"&=3%#"&'>=3@���pP"g=@5KK5@=g"Pp���0Dt
�D0
t���Pp2D
�K55K�
D2pP��D0@@9t0D9@@����*:TX\`d>7>76&'.#".'.#"#3!3#'>32#>%&67>312&"'.'.'!!5!5!!!7!5!
 -%K 1=2-:,%	+$�@@�b1 !S&34�q	 
)3O���@��@��@�
<"<"2}11y,&s,��@��N !.+k	

O3)��� ���� ����@�)8.#!"#"3!2654&+>7>54&%!!<5467
�$/,"T/`

@

`/T",/����		1r<O�8+9��



H9+8�O<r(Y//Y(���}@#>'.#!"#"3!2654&+!'y	�@	9`

@

`�d��d

�r��



~������7;#54.#"32>=32654&%.'>7>32#"&#53��<i�PP�i<<i�PP�i<�%%��"		",k99k,"		",k99k����`!:,,:!��!:,,:!`%@%>				��� ����5";26'>54.!####;;26'3265#�(F4T@ $ $ @T4F]5((5
S$ $S
�#=R.Oy��&&yO.R=#��@��@�`
�&&
����=.#">30030&73267>7>7>74&'�)hu�BQ�|c" ##���s_��D/
�*K"X�/)5+<V=:2"5M1/m>7zAk��NHvW$S.$T`k;�j()$`4(TRO#���	#0>	1%5�����Ccp,���@@����
�bH2taA��@@���S2!.54>>5#53.'#53.'.'#5.#"#53#3#333>j��P&Fa;�;aF&P���-ZUj@#R-@  @-R#@jUZ-	�%6%�	�P��jH�s^!!^s�Hj��P��CJO)@"@@	#2FUUF2#	@@"@)OJC����5G"32>54.>54.'>7>32#"&7+"&=4673j��PP��jj��PP����	2F)8.7�MM�7.8)F2	.j99j�

@

 �P��jj��PP��jj��P��1/UF5?s/6::6/s?5FU/1  �@

@�
����6%7>726376&/."?065>??6&'��g
�"@'ag�!
@'�
2	,�'A"�gb'@
!�
h��	3	O����2&67>10>'6.'.1.'A3 (+(
%C^,
'�]B�%a[C	9N((&	8jQ@k�9?hRD!RPE/���Lu�(q u�R<}yq20L.+QPQ+<h`[.D���� %532654&#!";3!26%53!��� 

��

 ��7Ij�jI���



��[���Y��@����7!#"&5!32>5#"&'.'33267>=3��@pPPp@�@Fz�]]�zF�5�KK�549$o#(%&`55`&%(#o$94���PppP@��]�zFFz�]��59955�JE��5`&%((%&`59��J�5@����	
-13!265#3#3#3#3#54&+"#"!54&!#53�&@&�@@�@@�@@�@@����@������&&�����@��@��@�@PPPP?@����
!!%5!!7!5!#53��@����@@����@�����@@�@@#;!54&#!"!"3!2654&%81!81!#+"&=!+"&=#5!��&�&�&&�&&���@�
@
��
@
���@&&@&��&&@&@@�`

``

`@���'''.3?5!����۬&Z&�ۀI��@��@�I�۬&Z&��ۀ����@�@'+#54&#!"332654&'!32654&'3%53��&��&@Q	K55K	b	K55K	Q���`��&&�@!5KK5!!5KK5!������!###!!%3�@�� � ��@ @�� � @����6����4632#"&%'#%37�8((88((8�J�n@�nJ�<��<�`(88((88��<��<���W��a����)5?JU#.'5##335>73'#.'5"&54632#>3.'5>73e
=\uC�Cu\=
ee
=\uC�Cu\=
e�d>)(G9(��%%%%[)>d	(9G�d>)(G9(	Y)>d	(9G(Cu\=
ee
=\uC�Cu\=
ee
=\uC�)>d	(9G�%%%%Yd>)(G9(��)>d	(9G(�d>)(G9(	@����	%0%6&>7%��@�@����	0c�zz�c0	�H�H���G9��9G�^���;;���^�����	!	!�������������@����-1#"&'.5467>7532>54.%3#�2.00.-u@@u-.00.2EvU0Fz�]]�zF0Uv����-�"-u@@u-.00.-u@@u-"�Sp�L]�zFFz�]L�pS��Y�''7''7'2?>[�f�[�sWWs3�D$F-�B�9yuk�[�f�[�sW�Ws��+kuy9�B�-F@����"06!4&#"!"3!2654&%2#"&546!33!26=3'7%���K55K��

@
�S%%%%���
�
��@�:�:@5KK5
��

@
@%%%%��`

`�e�:r�:@���)%!!!!!!'#5#53#575#53#535#535#5�����������@@@�����������������@��2@�<2@��@@@@@���!!%!!!!%!!!!%!!����������������������������������#/!!!!!!4632#"&4632#"&4632#"&������������K55KK55KK55KK55KK55KK55K������@5KK55KK��5KK55KK��5KK55KK���UY]ae%#54&#!5326=4&+";!"#";26=4&+5!#";26=4&+5!#";26=4&#53#5353#53�B.�����.B����܀�����������.B����B.���������������@���@�@@�!!!!!!@����������@�@�@`!!!!!!75'�������������@�@�@��@��@`!!!!!!7�����������@�@����@`!!!!!!7�����������@�@�����$4&'.#".#".#"3!26L9&AU19a!7 8N	(G55G(�Hf.>^0U?$1*N7
4G((G5f@(/.#".#".#";732654&''3533{&AU19a!7 8N	(G55G([��oHfL9������X0U?$1*N7
4G((G5��fH>^�(���@�&->54&#".#".#";!532654&#5#7|^B
d@Be$5]F((F]5��B^L������>	B^:KN<(F]55]F(��^B;X����"(>54&#".#".#"3!2654&'77|^B
d@Be$5]F((F]5`B^L��@`�@�	B^:KN<(F]55]F(^B;X�@`�@�#'#!5!!##	���ࠀ��@��  ���@@�@���� �
7!!%!5!!5!%	##����`  �@@�@@��� ����	33!!#53����`� �@���������@��!!#53	##� �@���`����@����@����%,8DKSYdou~����"32>54.>73##>73!#53'5#'>7>7#>7#>73.'373#..'.'.'53'537.'3#7#.'%>7#>3.'.>73�c��KK��cc��KK����
p���
p�	���
&��&
�u�	���
�1��	�
&P&
���	Qp
�@`& :�{: &`)`& :y: &`�K��cc��KK��cc��K��A!!@@A!!@@!�@�+)R+�)��!@��@!!A��@��+)R+�)��!@�!A@!�,M)#F)M,#�
,M)#3)M,#���c"32>54."&'>=4&#".5.+".5467326?>=>323:3j��PP��jj��PP��j/Y)�
*TB)�

n,F3u�A!5c,F&IQY�P��jj��PP��jj��P�@`
%,%
�	7�O_j94`,�M	
G&&GE_wF 1#S����/\"&'.46?>32"'&4?64'.#"#"&'.46?62326?64'&4762#�
#$$#�#Y11Y##$$#X,X))33�))
�1Y##$$#X,X))33�))+#$$#�#Y1D$Z^Z$�"%%"$Z^Z$W+X)t)�)t)+��%"$Z^Z$W+X)t)�)t)+$Z^Z$�"%��� 3#267#"&'.#">32��@>ff>>ff�#d9Hw!!wH9d#��}�b�~]}H'27>4&'."01267871'01"&'.46787162"'&47�A��(((s(�!""!"UXT"�g/////v{v/A��"TXT!"!!"�(r)((�z
'


EyA��(r)((�"TXU"!""!�g/v{v/////A��"!!"!TXT"�(()r(�z

&
E�=I"32>7.#"&'.'>7>732>54&'1#"&54632T��j$$j��TT��j$$j���.KK.8�CC�8.KK.(F]55]F(�8((88((8/TvGGvT//TvGGvT/�M--M$&&$M--M,5]F((F]5,6(88((88��NZ#5##3353#"&'.'>7>732>5<1.'.#"32>7.'%2#"&546�������K.8�CC�8.KK.(F]55]F()F3 T��j$$j��TT��j$
 1�@(88((88@������!-M$&&$M--M,5]F((F]5.@O,/TvGGvT//TvG2
~8((88((8�@'P!!!5.#"32>7.'!2#"&546#"&'.'>7>732>54&'������ T��j$$j��TT��j$N0�:(88((88�8�CC�8.KK.(F]55]F(.KK.@�@|/TvGGvT//TvG8a'8((88((8��$&&$M--M,5]F((F]5,M--M�&7C`&".#"3267642.546>7>7.'%4&'32>7#"&'32>7.'�(�'R+T��j$X6�		`�� 1
z%8��K.=(B���'5]F(>E.KK.8�C9M-`2T��j$"c=��/TvG>i(�(`(��%z
1 (8�-M,)K=F)F'��(F]�EM--M$&M/TvGCq*���@�	�@@��@�������
	'!7!@@���@@@��@������@
���
)7FTcr��%2#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?"32>54."&54632%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-=5]F((F]55]F((F]5B^^BB^^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.�(F]55]F((F]55]F(�`^BB^^BB^���"32>54.4>3".j��PP��jj��PP���<i�PP�i<�P��jj��PP��jj��P�P�i<�<i�
���(6DR`n}�"32>54.22#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?5]F((F]55]F((F]5B^^B%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-�(F]55]F((F]55]F(�`@^BB^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.���
%
%%7'?������<<<<��*��pp��*33A��3�����`���v��$��$�����
%
%%'������<<<<�p��*�33A��3�����`���;�$��v���
%
%%������<<<<33A��3�����`����".#">54.�(J?22?J(8bI*f��NJ��i*Ib�2A""A2*Ib8q���po���m8bI*��� 2.54>32'7>3�8bI*i��JN��f*Ib8-R"N�`�><�*Ib8m���op���q8bI*&|�����]@����#"&54632#"333334&@8((88((8�%@P P@%`(88((88�%��������@%����&#"&546327'.#!"733333'7@8((88((8�1���1o&�{@ @{�&o`(88((88�8#��$�Z���@��@�Z����)D#"&54632#"&54632#"333334&7'.#!"733333'78((88((8@8((88((8���%@P P@%�1���1o&�{@ @{�&o`(88((88((88((88�%��������@%�#��$�Z���@��@�Z����';GS2>54.#"2#".54>2>7#".''4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�V+UQL#7Vo??oV7#LQU�%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�	 CtV11VtC �(88((88((88((88���+?"32>54.2#"&546!2#"&546".'32>7j��PP��jj��PP��V%%%%��%%%%�?oV7#LQU++UQL#7Vo�P��jj��PP��jj��P�8((88((88((88((8��1VtC  CtV1���'3?Q2>54.#"2#".54>4632#"&%4632#"&#".'7326j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%@R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��2#9))9#21<<���+>"32>54.2#"&546!2#"&546".'73267#j��PP��jj��PP��V%%%%��%%%%�,QF:Rf==fR:FQ,�P��jj��PP��jj��P�%%%%%%%%��)9#21<<12#9)���'3?L2>54.#"2#".54>4632#"&%4632#"&##"&=!5j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%�@8((8�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�@`(88(`@���,8"32>54.2#"&546##"&=!5!'"&54632j��PP��jj��PP����%%%%�@8((8�@%%%%�P��jj��PP��jj��P�%%%%��`(88(`@�%%%%���'3?R2>54.#"2#".54>4632#"&%4632#"&'>32.#"j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�N2#9))9#21<<1���+="32>54.2#"&546!2#"&546.#"'>32j��PP��jj��PP��V%%%%��%%%%�f==fR:FQ,,QF:�P��jj��PP��jj��P�%%%%%%%%��1<<12#9))9#���';GY2>54.#"2#".54>>7#".'64632#"&%".54632.j��PP��jj��PP��jV�qAAq�VV�qAAq�u4]J6:Xq@,SI<GU^�%%%%��2
8((8
2@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��
"-8 ?mP.*<$	q(88((88!!���1F"32>54.2#"&5462.#"&6546".'67>7#j��PP��jj��PP��V%%%%��-98##89�,SI<GU^14]J6:Xq@�P��jj��PP��jj��P�8((88((88''��*<$	

"-8 ?mP.���'5=AIk�2>54.#"2#".54>;2>=.'.53#535381267>323267>54&#"3!81267>323267>54&#"j��PP��jj��PP��jV�qAAq�VV�qAAq��(F]5�5]F(�@$�����$���**D00D�**D00D@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�`@5]F((F]5@�F&����&F,	$$			0DD0			$$			0DD0		���4V]ah"32>54.2#"&'.#"#81"&'.546!2#"&'.#"#81"&'.54633.3753j��PP��jj��PP��V0D**D��0D**D0��)G3�@�3G�P��jj��PP��jj��P�D0						0DD0						0D���/AP���-PA/���'IY2>54.#"2#".54>2+"&5#+"&=46;235463267#"&'7j��PP��jj��PP��jV�qAAq�VV�qAAq�v
&�&�&�&
�
�
`Ft"6:FQ,$E"4@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�
`&&&&`

  
�D8!#9)7
���$F"32>54."&'73267#+"&5#+"&=46;23546;2j��PP��jj��PP��j$E"4Ft"6:FQ,@&�&�&�&
�
�
�
�P��jj��PP��jj��P��7
D8!#9)�&&&&`

  

���'9Up2>54.#"2#".54>.#"'>32#"&5<1>7>36!>20#"&5467.'.j��PP��jj��PP��jV�qAAq�VV�qAAq�f==fR:FQ,,QF:


	%%4+
�
+4%%	


@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�S1<<12#9))9#�
	
%%$0







0$%%
	���.I["32>54.>7>36#"&5<%>20#"&5467.'..#"'>32j��PP��jj��PP��*4+



	%%��
+4%%	


�f==fR:FQ,,QF:�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�1<<12#9))9#��7Jv�"&5<1>7>36#%.7>20#"&5467.'267#".'734&'.#".'32>54&'>".54>32�%4+



	%��


+4%%	
�=fR:FQ,,QF:Rf=
[: INT,,TNI :[
#  #P��jj��P#  #�V�qAAq�VV�qAAq�%$0




	
%�




0$%%
	�_<12#9))9#21<�"A:X''X:A"7d(8�Ej��PP��jE�8(d��Aq�VV�qAAq�VV�qA��+Fat4&'.#".'32>54&'>>7>36#"&5<%>20#"&5467.'.".'73267#
[: INT,,TNI :[
#  #P��jj��P#  #�@4+



	%%��
+4%%	


,QF:Rf==fR:FQ,�"A:X''X:A"7d(8�Ej��PP��jE�8(d��$0




	
%%e



0$%%
	��)9#21<<12#9)���'3?K2>54.#"2#".54>4632#"&4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�*K55KK55K%%%%��%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��5KK55KK�(88((88((88((88���+7"32>54."&54632"&54632"&54632j��PP��jj��PP����%%%%�5KK55KK�%%%%�P��jj��PP��jj��P�@8((88((8��K55KK55K�8((88((8	���'3?LXdqu2>54.#"2#".54>#"&54632'2#"&5467"32654&##"&54632'2#"&5467"32654&#!!j��PP��jj��PP��jV�qAAq�VV�qAAq�*



 (88((88(B^^BB^^B`



 (88((88(B^^BB^^B���@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��


S8((88((8@^BB^^BB^�


S8((88((8@^BB^^BB^�@@���+7;G#"&54632#"&54632"32>54.4632#"&!5!7"&54632�



@



�j��PP��jj��PP����8((88((8�� (88((88 






�P��jj��PP��jj��P�`(88((88��@�8((88((8���'3?Z2>54.#"2#".54>4632#"&%4632#"&3&'.#&6767>'j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%VA96>xH%"#A96>xH%"#@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��6a8>%"?#6a8>%"?#���+E"32>54.2#"&546!2#"&546&'.#&6767>'3j��PP��jj��PP��V%%%%��%%%%�>xH%"#A96>xH%"#A9�P��jj��PP��jj��P�%%%%%%%%��8>%"?#6a8>%"?#6a���'3?C2>54.#"2#".54>32654&#"32654&#"!!j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�e@���#/"32>54.!5!2#"&546!2#"&546j��PP��jj��PP���@%%%%��%%%%�P��jj��PP��jj��P�@�%%%%%%%%���'3?Qb2>54.#"2#".54>4632#"&%4632#"&&"3>5&'!62#.56j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%$P b\B.L"��P b\B.L@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�P"@& "P"@& ���+S"32>54.2#"&546!2#"&546"&'.5#.56762467627&j��PP��jj��PP��V%%%%��%%%%� b\B.L"PP"K/B\b�P��jj��PP��jj��P�%%%%%%%%�Y$$"@& "$$" &@"���'+7C2>54.#"2#".54>'4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�@�K5%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�L�L�%%%%%%%%���+0"32>54.2#"&5464632#"&'%j��PP��jj��PP��V%%%%�[%%%%K��K�P��jj��PP��jj��P�%%%%@%%%%�5L�L����'3I^2>54.#"2#".54>#"&54632"&'&""'&4762#!"&'&""'&4762j��PP��jj��PP��jV�qAAq�VV�qAAq��K55KK55K�6

		"j"		@6

		"j"		@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��B^^BB^^
		

!!

		

!!

���(4I"32>54."'&4762#"&'&""&54632#"&'&""'&4762j��PP��jj��PP����

		"j"		6�5KK55KK�6

		"j"	�P��jj��PP��jj��P��		

!!

��^BB^^BB^�		

!!
���/=GKUt�.#&3265<1.'"32>54.3!267#"&'7546;#"&533532#>=4&#!".54>32"032654&'>7>'.n+



	%%4�j��PP��jj��PP����	
�
	8�OO�8	pp	��@p		H/!� !/08Aq�VV�qA8�+4%%	



�




	
%%$0P��jj��PP��jj��P��0880H`	�		���	`		
`!//!`
	8�OV�qAAq�VO��

0$%%
	


���	
+Faq;5#"73#%#326=4&"32>54.>7>36#"&5<%>20#"&5467.'.#!"&=463!2	pp	���0pp		�j��PP��jj��PP��*4+



	%%��
+4%%	


B/!� !//!�!/0`	�		���	`	�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�5!//!`!//!	���'5C^lz��2>54.#"2#".54>#"&546;2!#"&546;2"&'.#""'&47>32"&=4632"&=4632%"&=4632"&=4632j��PP��jj��PP��jV�qAAq�VV�qAAq�v�

�
�3�

�
�%!!%

		MM		z






�3






@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��







�(		




@

@
�
@

@
�
@

@
�
@

@
���!/=Xft�"32>54.#"&=46325#"&=46327#"&546;2#"&'.#""'&47>327#"&=46325#"&=46327#"&546;2j��PP��jj��PP����







 �

�

%!!%

		MM	�







 �

�
�P��jj��PP��jj��P� 

@

�

@

`



�1		


e

@

�

@

`



@����>J�54&#".#".#"54&#"'.#"21#"3!26=4&+7>5#"&546325!.546322127>54632326546323265463232654632�8(


+!

!8((8�
(8�-

�

,I@



T����
�













`�(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�>J�%32654&'>54&'>54&'32654&#!7>54&#""154&+";26=3%"&546323'>3213!2#!"32#"32+"32+��(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�8(


+!

!8((8�
(8�-

��

,I@



T�"
�













@����>J�#"&'#"&'#"&'#"&5#"&54672417#"&=463!2+4&#"326'!32672617623265463232654632326=46323265�8(


+!

!8((8�
(8�-

�

,I@



T����
�













 �(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



�>J�%#"&5467.5467.5467#"&5463!'.5463221546;2+"&=#%2654&#"#7.#"1#!"3!2#"32#";2#"3`�(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



8(


+!

!8((8�
(8�-

��

,I@



T�"
�













����!/	!5"3!26'1.#1#"&54632'"&=4632����
�K%3f3%�K
@%%%%@%%%%c��W]��,@@,g��%%%%e%�%%�%���(=AE"32>7>54.'.#512#".54>3#3#*PKD--DKP**PKD--DKP*j��PP��jj��PP��*����`-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P�@�������8M3#2#575!57"32>7>54.'.#512#".54>���%������*PKD--DKP**PKD--DKP*j��PP��jj��PP���@%��@�@��-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P���#!4&+"!"3!;265!26=4&�
�
��

`
�
`
@`

��
�
��

`
�
@@3!26=4&#!"
�

�@
 �

�
���-A46;2+"&5!535#533"32>54.".54>32�  ��@@�@�j��PP��jj��PP��jV�qAAq�VV�qAAq�� �P@�@��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���'3"32>54.".54>32'77'7j��PP��jj��PP��jV�qAAq�VV�qAAq�J��`��`��`���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���`��`��`�����(4A.#"32>7>54.'>32467#".5j$T\c33c\T$$8&&8$$T\c33c\T$$8&&8$&!��/q>O�i<�&!/q>O�i<*$8&&8$$T\c33c\T$$8&&8$$T\c33c\T$��>q/!&<i�O>q/��!&<i�O����S%81	81>76&/.81	81.'&81	817>781	816?>'.���7�	���	�7���	77	��77	���7�	���	�7���	 @	'	`� ���@� ���*V
%7	''��s�������!Y�R�Y*����������X�Y�X@����
048>334&+"33#%5#";5#54&+326=4&#26#535#53	7��@&�&@��@�&&���&��&@�����`�R�`���&&�����@&��&@@``&�@&`&&ƀ@���@ F�.@���!5!55!3!%!#���@�������@@��@�����������@��@����5!5!5!%!#!!5��@�������@�@��������@���������'*"32>54.".54>32
j��PP��jj��PP��jV�qAAq�VV�qAAq������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA������'+/"32>54.".54>323#3#j��PP��jj��PP��jV�qAAq�VV�qAAq��ꀀ���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`��������'+"32>54.".54>32!!j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`�����'*."32>54.".54>32%3#j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*.2#".54>2>54.#"%#3j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*-2>54.#"2#".54>'7'7j��PP��jj��PP��jV�qAAq�VV�qAAq�����@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�����������'*-"32>54.".54>32j��PP��jj��PP��jV�qAAq�VV�qAAq��������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA@��@���@@@	����@�����@�@!!!!�@���@��@���@�@!!��@��`� @@���� ��@�@@��`�`` %��@``@�����@���@�@73��@@����@��@��@�@@��@���@�@#������@@@�`��@�����@��`@�@%3�@��@��@�@@��@@@#���@@�`�����`@@7!!	!�����@~#C\w%"&'&47>54.'&4762#'"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>z	!3""3!((=))=(	�
1111'/  /	�	(,--,��s

s�			&(!LSZ..ZSL!(([el88le[(Z'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
p~8S%"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>�
1111'/  /	�	(,--,��s

s�			�'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
G~3%"&'&47>4&'&4762"&/#"&546;7>%	(,--,��s

s�			�(MPM(,qtq,��
@
�
��
�~%"&/#"&546;7>��s

s�			�
@
�
��
�~*#'#57'5373"&/#"&546;7>�UkkUkkUkkUk�K�s

s�			UUkkUkkUkkUk�@�
@
�
��
~&##5#53533"&/#"&546;7>���������s

s�			��������
@
�
��
~!!"&/#"&546;7>�`�s

s�			����
@
�
��
���!	!3!5	5!#�����������������������2.#"34>32!#".'7!732>5z#U`j8j��P`Aq�V.WOE�`�&Aq�V.WOE����#U`j8j��P&>+P��jV�qA$3 �`���V�qA$3 ����&>+P��j��';P%"&/#"&'.5467>327>32'3267>54&'.#"%"326?'.#0X"ff"X00X""$$""X00X"ff"X00X""$$""X�5555g��555gg5�$"gg"$$""X00X""$$"gg"$$""X00X""$�55f�55ff���`%#'737'#"'.+3#326?;7'e��e��
	��	
������
	��	
��������
	��	
����
	��	
������7	7	! ��� ����  ����	!!!�  � �� ����		 ��� ����� ������	!!� ���������		!���� ���� �� ����!!!���� �����	'	� ��@ ���  ���!! ����  � �@m@!%32654&#!"1326=326764m���%%��!%%		�%%
��%%��
		
6�mm	&"2?3265326764'm��6��6�%%�		-@��6��%%e�
		
6�S�@"732654&'.#1!";27�%%
��%%��
		
6S�%%�!%%��		@S�-%64'&"!"3!2m@��6��%%e�
		
6S@6@6�%%�		�@�@"#"3!267>514&#".#"��%%�!%%��		��%%
�%%�
		
6�m�	"'&476246327>32m��6��6�%%�		S��@6�e%%���
		
6�@�-"	54&#"31!2654&+>54&'&"��%%
�%%�
		
6-���%%��!%%		SS�-%&4762!2#!"���@6�e%%���
		
6S@6@6�%%�		���'-32>54.#"#".54>327	7P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-"32>54.".54>32'	j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ����'-4.#"32>%4>32#".7	'P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-2>54.#"2#".54>'	7'j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z����3#!3#!!'7%!5!5�@@�@@@@��@����@������@�������@�
"&*.33'3#73#73#3#73#73#'3#%3##5%!!�@���� ``�``�@@�@@```�``�@@@@���@������@@@@@`�`@@@@�`@`��@��@�
"&*.##7#5%!!3#73#73#3#73#73#'3#%3#@��������@��``�``�@@�@@```�``�@@@@��������@���@@@@`�`@@@@�`@` ����%@D%##7!"&'&47#"&5463!232#.#"326?37>'%7#@������	��

	��

]�		�		7�7	��LL�����	N

	��

n�

��		nn	��� ����%@C%##7!"&'&47#"&5463!232#.#"326?37>'%7@������	��

	��

]�		�		7�7	��LL����@	N

	��

���

��		nn	��� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������@
`


��
�
�
�


�
@� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������
`


��

�
�


�
@� ���
%##7'!!!!!!3#@���� @����@@��������@�@�@� ���
%##7!!!!!!3#@���� @����@@���������@�@�@��@�@/:EIT_%"&=##"&546;5#"&54632354632+3232654&#!"326=735#732654&#"%";54&�B^�^BB^^B``B^^BB^�^BB^^B``B^^�8((88(�@(88((8@���`(88((8��(88(`8@^B``B^^BB^�^BB^^B``B^^BB^�^BB^`(88((88((88(`@�@8((88(`8((8`(8�@^7(%!"&5#"&'&6762+%!46;'32���
�
@

@
���
S��S
@
`		@		��		��
@`
��
�@"&/'.7>32���	

	�

�	
��
		
�
	@��&%!"&'!"&5463!232#!"&5463!2��	���

@	��

��

@
�
	-


	��

@



���!"3!2654&'7��5KK55KK��Z�3Z�K5�5KK55K���Z�2Z���!"3!2654&!!��5KK55KK5��K5�5KK55K�����'3"32>54.".54>324632#"&j��PP��jj��PP��jP�i<<i�PP�i<<i���pPPppPPp�P��jj��PP��jj��P��<i�PP�i<<i�PP�i<�PppPPpp���"32>54."&54632j��PP��jj��PP��j5KK55KK�P��jj��PP��jj��P��K55KK55K���'"32>54.".54>32j��PP��jj��PP��jP�i<<i�PP�i<<i��P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���7'!5##3!3535#!@�@��@�������@��@@��@�����������@@�����#37Gm�#";26=4&326=4&+"73##";26=4&#53%#";26=4&7#"&'.=4&#!";23!2654&#!"&'.=4.+"&'.5467>3!2;2@�&&�&&f�&&�&&�����&&�&&���&&�&&&@@u-.0K5�5KK5@@u-.0K55KK
		
�
		
<i�P@
		

		

		
<i�P@
		
@&�&&�&�&�&&�&����&�&&�&��@&�&&�&�0.-u@@5KK5�5K0.-u@@5KK55K��
		

		
@P�i<
		

		

		
@P�i<
		
���/?OSW[_cgkosw{��+"&=46;2+"&=46;2+"&=46;2+"&=46;275#'#37353#3#3#3#3#3#3#%3#'3#'3#3#73#%3#'3#�``@``��``@``�p0pp0pp0pp0�@@@@@@@@@@@��@@@@��������@�������������```�````p0pp0pp0pp0��@����@���@��@@@@@�@@@@@@@.��9Ua}.'>'./.'.>767>&81'.'&67>7>"&54632&'81.'.7>76�AFDP�
��
�PDFADFA��AFD�@44�


s44'8| 0'��T'0��|8''RK=7'��'7=KRQ$$6#$6 



��$$6$#6���B"326554.>7>32#".'.'.'>7j��P�K55K�P����2!KQW,,WQK!22!KQW,,WQK!2�,:!`����%%@�`!:,�
				

				
e����%"&#"3.54670
!37#73267 DhFq�m5IH
eJ KxY=l�,�4-U&.P=�;a}AM;&7�o����#��	7k	��f�a%81#5467>7>323267>54&'.'.#"#3+!5#"&58132!5"&5��	





':.S$$8~~	&�D1�8%&E!X�=n

(

"
<&#w<H��6(
88&SN&,�,$
88A�\�v%"&'.5461.+"#"&#"+";21#">326&#"&'.'546;>54&+"&=4>3281#">326&#WL
@#,!EgC!<NI
-F-*G,L�
�%5"/GI
-F-*G,+@$=C!"6`�P.1]I,<%$@$�!
51YD(Pv�L<%$�	%3'3#7#%'#3!53#����������@������@���������@@@��@����	%'7!55'#3!53#����@@������@@��������@���@@@��@���@!######5!@������������������@�$>54.#!!2>54&32+#32� (F]5���5]F(D��e*<<)f���,>>�"T/5]F(��(F]5FtFK55K��K55K�@�3#".533267>5!!��2WuBBuW2�I((I������`<iN--Ni<��`88������#3!53#5������@�@��@�@@@�=##"&'.5332654&#!5!.'.5467>32#4&#"32�50,q>>q,05�rNNrrN�,0550,q>>q,05�rNNrrN;n+�@A"5b$!$$!$b54LL44L@$b55b$!$$!$b54LL44L!���3%!7!5>54.#"!!5.54>32�@��1R<!7`�II�`7!<R1��@FvU/P��jj��P/UvF@���H_p>P�g;;g�P>p_H��!Sl�G]�zFFz�]G�lS���%73!5	5!#'.#!	!26�,&@�@L���,"6:�ja��WB�_��J�L�'7"����8���#3#73#%3#73#%3#!3!!#!������������� ��@ ���@@@@@@@@@@�@��������@�����3#575#53#'#	373�����܈����������2@�<2@�n����������%3#575#53#'#	373�����܈���������22@�<2@�R������P��
@?!3#33#7#"&546;2654&+";2+";2654&'.�::r��r�H:�:d���@

�

�(8

%@

�

�(8

%�����������



8(!




8(!
P��
@?!3#33#7%#"&546;2654&+";2+";2654&'.�::r��r�H:�:����@

�

�(8

%@

�

�(8

%������������



8(!




8(!
��0%7!3#33#B::r��r�H:�����������"!#!!3!%3#'3#%3#73#%@����@��@���������������@���@����@�����@@@@@@@�����7!!!#!5!''7'77@����ѷ�����"��>��>��>��@���@�����>��>��>��
@#'!5!!5!5#!5!!%!!=!!!!5!����@���������@��@��@������������������
�#'!5!!5!5#!5!!%!!5!!!!5!����@����������������@��������������������#'/37?CH3#73#%#535#53#73#%3#33#73#%#535#53#73#%3#3!!1!������@��@�@�������@��@�����@��@�@�������@������@�@@@@�@�@�@@@��@@��@@@@�@�@�@@@��@@@���������!####".54>�����5]F((F]�������(F]55]F(���"333335	5]F((F]5�������(F]55]F(�������@���"333335	5]F((F]5������(F]55]F(���������������"&'.5467>323267>54&'.'.'.5467>7.'.5467>321#"&'.5467>54&'.#"#>54&'.'.'�%>
	

		
	4%<P-	
F(&?

	




,?X-		E)2$#

:+!%$
6($@2
	
				

-)F58) &$>1
	

	')K!47*
%%?�23
2!/�!!!!!!!!!!�����������@���@����!!!!!!!!!!�������������@���@����!!!!!!!!!!��������������@���@����!!!!!!!!!!�������@�@�@�@��!!!!!!!!!!����������������@�@�@�@����!!!!!!!!!!%�����������������@�@�@�@�����@@
0>3	"!3>7>7!!S�z���`�`0���~!O,�F@�@<H<��7Zs��	/��
V@��
!!!'!'7�@����@ @�@��`�����@���@��@���`��� ��%	%'	7'@`@��`�`��@`��`@@`��`����`� W�)%	%'	7''@`@��`�`��@`��F�F�`@@`��`����`�i�@�#!!!!!###53535#5#5333#53@���@��@@@@@@@@@@@��������@��@@@@@@@@@@�@���3"%>54&'%32654&#".#"326732654&`";�Q�;"B^^BB^�Q;"B^^B";�^BB^^�

�^BB^^B
�^BB^�
B^^BB^���#/9!"3!2654&!2	>3<5.5!"&'77#7'7U�VGddG�Gdd�d
���
@��@�	�ZZ�	@���dG�VGddG�Gd���I�@�ۺ	@�ii�@	�������+!"3!2654&2	>3!*#'	'*#!U�VGddG�GddG������V�������V�dG�VGddG�Gd���-�9�c�0��������!"3!2654&'7	7U�VGddG�Gdd�N�II��I��dG�VGddG�Gd��N�����
�Z��0����'2<"32>54.!2	>3<5.5!"&'777'7j��PP��jj��PP����
���
@��@�	�ZZ�	<���P��jj��PP��jj��P���I�@�ۺ	@�ii�@	��������-gu%#".'&632>767&&76&7>'%3>76&'.=4&'.#"267>32326767#"&5463�*elo5J��s2
	6x��E.aca/.]1|		-

��9	-$i-,YL8

x8#'
5�2:JkNAW3|-#(uBK0 2H-2#

5!z%XJ1	0+�=m*",H7

&$0eK``&4!-$? 2'O-
����,!#".54>327.#"32>54&'
##DkLAtV22VtAKe�!MV_4j��QQ��jo��G	�LD03WvCCvW33�2#P��jj��PJ��m)���9!"3!2654&".54>32.#"3267#5!#���(88(@(88�@P�h<<h�PM�2hK82VA%%AV2ra�j5`�S�8(��(88(@(8��<i�PP�i<5/e&&BX22XB&{*�R�c8���="32>54.".54>32.#"3267#5!#j��PP��jj��PP��bP�h<<h�PM�2hK82VA%%AV2ra�j5`�S�P��jj��PP��jj��P��<i�PP�i<5/e&&BX22XB&{*�R�c8�)53#".54>327.#"32>54&'!%#5##3353F�Ra*I7  7I*/@X+mBDvY33YvDFtR-���``````�p$i!7K++K7!!U(-3YvDDvY3/UuF
	`````���5A!"3!2654&".54>32.#"3267#53###5#53533���(88(@(88��5]F((F]54V"F3%B]]BLA��#A[7@@@@@@�8(��(88(@(8�(F]55]F($C_CC_SX

7\B%@@@@@���9E"32>54.".54>32.#"3267#53##5#53533j��PP��jj��PP���5]F((F]54V"F3%B]]BLA��#A[7�@@@@@�P��jj��PP��jj��P�(F]55]F($C_CC_SX

7\B%@@@@@@F����%"3>54.##5#53#5#53\�xEIz�We�t>Ex�[@%��@%���Fx�[W�qB�3���U[�xF�(8`��(8`���!'!	��E����(���޹"@��@@���	������35#"#3337#546`��.R=#���� ��#=R.`���`
���#!"3!#53546;#"3#!2654&���(88(���qO��&� � (88�8(��(8��@Oq�&@��@8(@(8���+H!"3!2654&46;2+"&52#"&5461#!"&51332>54&'3���(88(@(88��
�

�
�OqpPOqp�
�@
F2WuBBuW2F�8(��(88(@(8�

�

 pPOqpPOq��

� BuW22WuB!����?�.#"%31812>54.1"&/7'.54>32#.'&"'.'.'&67>7>76&'.'.#&"#"7>7>'.'i$S[b3i��P""H
7{@i��P&7�u9m1�+
 !Cr�W+QLE. Cr�W�	D		
	
8$$
	$/!8N0$(;
+$8%P��iC�:��GP��i3b[S�	)�2s<W�sB.ELQ+W�rC<!
	" 6			G		2//N-<?

#"���)@V"32>54.'.&'&67>7'.&'&67>7.&'&67>j��QQ��jj��QP���-fq{D
I�}q2
8
4~��<F���<	
=���;"D���G
	
(�Q��jj��QQ��jj��Q�!


&�
		 )
.% 
�%)

"/*
(
	���)"32>54./#"&/&67%6j��PP��jj��PP���T�=

,~��P��jj��PP��jj��P���t
	_<�'
�@G>7.#".'.'#"&'#"&'32>54&5>7= !0C$P-+M9!A{n`'
3*1aH


kE6�J
#LQV,�ߘN5�
<%$!9L,"9N066\Lt>R*0#
m��h
7 ?����@#".5463207>54.#".'#27>72675�&0T>#)%
CQ9U78Y> 0F,%[1,SF7�nug0HTU ? �!@\::;66?@&^,;\@!)Hb:8hXFJ16��׋���aBa{Dz���o!"3!2654&0"'.101#0&'.10&7>1701076&10&'.#&67>3267>106761702���(88(@(88�]0*p="<.e"	-	
 #	j  5,*+�8(��(88(@(8�3C:?#_V<	26 ^%6:,	;65+G)''
���!2>53.53267.'�Z�rA-CoQ-�Z�rA-CoQ-Y.@N-7|BC|6,O@.�Z��_/ZSL! g��UCZ��_/ZSL! g��UC��1[QE!!EQ[1�9:Up}��%.'&>76.7>'&076&'.32>54&'.17616716&.7161676&''.7>'.7>7&676&�?sY8)Nm?@sY7)Nl

~NJ[e1$8'Ky�Ph�zBP,�2�E0c$$�D!

!
�e7.
-
><y.=@�7>/E)*N?+/D**N?+k5#!'>$E0$JIG"?eF&7Uf0;D
68+
((e/B�%


! F�E	((�556i7::g���*7"32654&234.#234$#�8PP89PP�0\VO""4#�j����-�š����P88PP88P��#5""NV]0���j\ă�ҫ�u����)5!"3!2654&"&546324&'.#52#34.#52���(88(@(88�O$33$$33�.++p=Y�uD~�S��m��g�8(��(88(@(8��2$$33$$2=p+,.}Du�Ym��S}g��X(;?0&'.'."90"1010102>7>7>106=4&1
�;5~kHHk~5;

CtsVHk~6:

�����NNh>N>gO
Og>N>h�� ����
	�=e���� Cg�0417#*054&'.1&"#"7>5>=7>7>7>57'./##16?2?57.'.67>7>7>54&''.'.467>%3'4&'.#"3%.#7>7>5.'%.'.'.'&22>72>7263>7>7>76&'%"&'0&4&5'5##54&#"&'.=37>?3&'.#"#33067>76%&'.5467>7>3267>?3X/ 	
E"
5
\

)�	
^0
K^�!H"!6
 ,l	
	.��

5B.Pk|>k���""0�{T)*szu-OK;
#1(		
��5.h25ET

-
T
TG-TT '	
b	-!.X)"

%A�	
	VRL$3H22G+�:
"
GM>4M�))
R����
2��خ?
	�a(*1JrA"$
BFY/
��
K[U1Q6:	�)E^		��/^a*�RJ"-0
R8@���B9O	K/,�YKd@(��.Mf:YX���
	
C��ƒ7w��

�k,?
"&:m�5a -	
%(2mY0#-$ '=I14)
!����	!373#5#!3#3#``��� �������``�``��� �� `�ࠀ�@���z:#"&'.'.#"'>7>763267>76&#">4M24aXP%,L)1(#0&K%2L<J&0  #"(&7HZ5OJ�%YftADfD"SRL�KSS>"B"+.QX^uON332N,,	>\<fd���H!"3!2654&#"&'.'.#"'>7>763267>76&#">���(88(@(88j%8$&F@: 7$#6%6+5
#hM96�8(��(88(@(8��@JT/1I1<;7n6<<-0";@DU98$%%8 YWJH���,!"3!2654&&'.'&67676���(88(@(88���<%XXD#K�$
		�8(��(88(@(8��rTQTF/N>m@�N,,&��'4>32#".%4>32#".#=R..R=##=R..R=#@#=R..R=##=R..R=#�.R=##=R..R=##=R..R=##=R..R=##=R�� 4"32654&'12#".54>4>32#". 5KK55KK5.R=##=R..R=##=R�#=R..R=##=R..R=# K55KK55K`#=R..R=##=R..R=#�.R=##=R..R=##=R���'!"3!2654&"&54632!"&54632���(88(@(88�XB^^BB^^~B^^BB^^�8(��(88(@(8�`^BB^^BB^^BB^^BB^���+"32>54."&54632!"&54632j��PP��jj��PP����B^^BB^^~B^^BB^^�Q��jk��QQ��jk��Q�`^BB^^BB^^BB^^BB^���$8Rbq�".54>32#.>7.'*3267%>7>7.'#12>7.'>7.#"64&'1j��QQ��jj��QQ��j�0I^4%>1!��!]�Q&7�L-V(�0Y�T	
R�|Q*gGn�L6-.O?+F .6tk:�S4� ;Y=6iT85-@Q��jj��QQ��jj��Q�
;iS7
?KT.��?Wl; YS?+1nH[\&*PJC~
0WD,?O\3P-DX1+j	3;�$29 	N�8q�'<R���2#!!267>54&'.'.'.+267>7>7>54&'.+3%3267>73#"&'.'.'.5467>7>7>32!7.#"3.''!!))

 +
		$)��)			��
	

$���)!
n
(B'0%			$03$���%
		����
		%(3*v�			���

#

�
	


);		&10&		
+30�
$�>���+;?g��>54&'.'.'.+3267.+3267>7>7>54&'!"3!2654&3#+32%!3267>73#"&'.'.'.5467>7>7>32'"3.'.#�
		ir
zx
	���(88(@(88���Ё

"��"
			#���!Z!6'
&)�

�
		�		xl	�

-8(��(88(@(8��3��		

 

)!O'	"/

('

		
#)�


��=�5#!33?!5#'=�X�Ƭ��X:���������r�������!03267>7>7>54&'.'.'.#"1!2654&#!"6?>1>32#"&'5467>32#"&'&32>54.#"5.'&"173267>732676&/76&'.'.#""7>323267>'.'.#1.'&#"&'.'.'.'0&1.13267>706764'�$5A""B5%

$5B""CH�

�
$'d87d&'**&&f7%G44R;*J7  7J*)K�	!$	$&%%		%%R-[#$M$)O&9B'+[/C	A$%P))O%$A,
2  K)+[0/[+)K 6$





$6A""A6$




/�|


%'))'&d77c'&*�03;Q
 7J*)J6 E$�#3
8	"#
$%
%%
%%�

%		*�,,A#"0	
6*J  22 1�@5P\4632#"&7."1'&267>'7>7>4&'"&5<132676&/>32#"&54632�8((88((8� SVS  �(�E	�
'JNJ$�#A!!!!��8OC#	@8OO8�B^^BB^^�(88((88�!!!!A#��	{	Ez2h'$_/�  SVS ��O84		E2O88O�^BB^^BB^���KWc%2676&/>32#"&'2#!"&=267>'7>7>4&'."1'463!4&#"326%4632#"&0&
B	8OO86NH1GddG�VGdy%JNJ$�#A!!!! SVS  �/�dG�+^BB^^BB^�8((88((8|E,O88OK60DdG�VGddG�Q0_%$_/�  SVS !!!!A#��
�Gd��B^^BB^^B(88((88���7!'!'1%''%5�� ����@����� ��؈``�������������N��L^��^���+q%.5467>7>5467>7>376"&'1'.'.5467>7>7>5>7667>7>32#"'.&'1_-14$*#*5Fx(%
�׫�	�4

/
B2B		(-Ht	
-�>(9?	c
�E6&
	#6 GE;,,*.
)
:\	 
YI/ 
%3W:.	���W"65<'&1.1&61167>7.5467.70>32>17>54.#j��P4]�LjB'#'&("]+TB)CJA!!AJC)CS+L�]4P��j�P��jT��^
	6 T,2;
"
8^I*E	I51		15I	E*J]80#4L
_�Tj��P���!##!!�������������U8�">7>76&'.'.'.'.'.#".'.'&67>7>7>7>7>767>7>7>7>76F{iT#/	;$MNP()RRQ'Cx%	J`uD*YWT'8	"		$9
,+
)#*		
8�E8U5Xo9A�H			
'	
N=
	##E"<yfI
��/ 			<	<
9

	
++$L'	
	+$���/!"3!2654&+"&546;2+"&546;2���(88(@(88��&�&&�&�&�&&�&�8(��(88(@(8�&&&&��&&@&&���	DO_s�%4&'.5463:3.#":3261607'.1&603261607>53267.5>54&'"32>54.".54>32� 9O0��$3�K2^REH�T<IH�&�s7"@�
u+F2��j��PP��jj��PP��j]�zFFz�]]�zFFz��8fWE�#L)#1*(.4,>'�k���n}':4��
	
B(��DT_41Z(MP��jj��PP��jj��P�@Fz�]]�zFFz�]]�zF���7So627'..#"7'&47%4&#"&7627>'>56&/"/732654&'%"'&4?'32676?'
Ee+r8L38Q=..�e��Q84M:y.�e�Fe.2Eu,�e�Fe/z;	K29PD2���Ee,-<P91J8s,�e�f+
1BP91K
:z.�e�F�9PD2.�e�Ff.x:N4��8s+�e�Fe./?P94M��Fe,u8J19P=-,�e���9"32>54.#".'&6726323267>323j��PP��jj��PP���<Se77eS<~OO~	�P��jj��PP��jj��P��5Y@$$@Y5 MaaM
	���-;#"&'14.+"3!2>=4&%32+"&546!"&5463!2�:(4YyE�Ey[44[yEfEzZ4'�g�&&�&&���&&�&&@&EuU14ZxE��ExZ44ZxE�0�&&&&�&&&&���/?O!"3!2654&#!".54>;2;2'#!"&51463!2+"&5146;2���(88(@(88H'D[3��4[D''D[4~3[C'+�&�&&&�&�&&�&�8(��(88(@(8�x3[C''C[33[C'$AX3$�&&&&&&&&���@�13267#"&'.'.'.5#5>7>7>73!!@
&'9&!:9$0.�?"

���-5


�			#5#g�
,A(�����A!"3!2654&#"&'.'.'.=#5>7>7>733#3267���(88(@(88�)(! 
`,		
d��5�8(��(88(@(8��


%�d
-�~�%	pj����(1>7'.'"'9891758*jdS0/>NR""IGA*3**fcS@AsJ���
j��79xun/		?���'�M�����".'>32<5'"&#.'"&#8181"#"#=>7465>=.'.'.'.'.'.'./326?8181>7>?3267D��}<=|��DC��|==|���



$)*+)$

z	������"		����	W

)
'&&8'22'8&&'
)

=DFFD=���P~��%'.'&23267>'.%6.3>723267>7>7>7!.7%81&6768140581.81.'##*#.'.'#.'467>7>7>7>323'.'.'>5816&#"81.'<'81&676818>m'-F

V0
*g9CP����+�


<33J
 60&�3((>

 		G'9'#) %		
?/@" #%M78Q�

+_�ۍ���?"JNR*#F!	(%	
*]/&MQV0�>ZT>	#.5#
7 �!8

	+
.
f
'88'
GhdG ;�����(5467.'&#"&7>327>7>7".'>'67k-u<jY1Aq""
6! O21<;;;35H %!*3+� 'T#+R�a`B"5.E:;���//U(*N/6Y1O:|!V-+!V,+ ���(6esy������%8184018'818!"3!8181!2654&4632#"&5!.'01#".'.7>3267&656&'.+>7>7!"&=4632"#26:3*#7:10":3*%.>7>"#26"#269���&&��&&��



��2b\U%

!JPT,	_1!��


��`
7�G*QLH��
�%&��&&�&�

@

�` @ #3!

,Y|T2_�/�
@

@
��It
0;	$!.
�@����
6Yk~"32654&!"32654&31326=3326=265!%.'76&'&'.#"'.!5#%"&5463818123"&546381812#�&&&&��&&&&F8(&&�&&(8��>E5 	 -- 	 5E>��


�



@&�&&&&�&&&��(8�&&��&&�8(`@Bm#@	@@	@#mB  @







���*?O.#*>32>7.'3267#"&''2.'.#">381%#"&'3267'3�$E!	*I
Z.S%=[$		
tZr4*_6V,T'Hf �:X#]A''V0X0U'�,V)Ee!\.d4+X-���&\`TO��4-'�&="���(������%%!%%!�@��@����84��vJ�@@�@Hx��5;��#)/5".#"0:32654&#37'##'7337'#37'#|'?P.+r�r7MM7�  P  �  p  �+J7 �mJ54K����ࣝ�����@@@@���!<!"3!2654&#'73#'73#'73*1.5467>32>32���(88(@(88��  p  p  y^p^$Kn
-@@�8(��(88(@(8�@````��������YeJ?--@���z�"&#*'<7.'623''>54&'.'.'.#"812'623.#"465.'3267"&#*#3267>54&'"&5463232654&/.54>32#"&#"#�����u
�5!!M+-_1.E#9i()+4"!M+-_1* H%9i()+�&�w 7!g58#�]5*CU+(RB+&/$_/2< q]?=\=��
����,1_-+M!"4+)(i9%F 
*1^-+M!"4,()h:$G �d0i0#	&Z/0D+%2W'a3'D1��@0kw���4632#"&%4632#"&6#"&'.7>32674&#".'732654&#"'&.#"32>54&'>2#"&5464632.".54>32.'>32%%%%�%%%% 	

"a//a"

	 H''H}K5$;1wAL�
2(88(-
�g@t0;$5K+!Fz�]]�zF!+���&)�M�e::e�MM�e::e�K)&@%%%%%%%%n
 	  	 
	5K$"�*$8((80
�!$K5'?&BuW22WuB&?k��&+ �`&CX33XC&&CX33XC&y+& ���!#5373� @�I��I������H��9����##"&/#"&'.'.'"&'.546323267>32#7'.'.'"&'.546323267>32#7>54&'"&5467>323267>32#>54&'"&546323267>32�	

�t��




 
�_X


;:
	


	Ni�
		
�
�.���		
	���� 	
wm	 ��j
���3!"3!2654&#3'"&54632#4&#"#3>32���(88(@(88����@%%%%�%%��:"<T�8(��(88(@(8���@%%%%�%%��O4^B@�@'33>32#4&#"#!3##"&54632��YCGV0�GH&������8((88((8@[!:)Hb9��1dY7��@���(88((88��K%'0#"&5463232654&/.546327.#"#"&/.#"3269�&TD=N[5NA%,GjLm�OLK&-'*.uiZO�?IO-#><YV&1DY;AbC""A_>ca�fDbUlXY@u+J8 JXGO	 !"%OFH`<L
%!S@v9O2'LmFCfF#>���U!"3!2654&"&/.#"32610#".54>3232654&/.54632.#"���(88(@(88݆r!9D/OD5<J TW6S9:V9fr "KN46'F@7qEO\g(%!'"BBEv�8(��(88(@(8�iKf9MM_JV<Y7=Z:=`B#Sdf9I 	C4T?=F!E?LA���!!!!��@�����@���@�@@�� 5"#"&=332654632'54&#".=7326=3&qOOq�&&qOOqR.&�qO(F4.R&&��&�OqqO��&&OqmE>>"��Oq6L-||%)&����0E!"3!2654&"#"&=332654632'54&#".=7326=3T�XGeeG�Gee�e&qOOq�&&qOOqR.&�qO(F4.R&&��eG�XGeeG�Ge��&�OqqO��&&OqmE>>"��Oq6L-||%)&����!3!!!77773���@���q��6D6�N�8;@����@�|�}�t��t�f�ID�|^".7>10&5463232654&#"'.54>32#"&'032>54.#\�yF*Kh=
/!
)!;PgR^j*0&JmH9dJ*"=U2"9"
B"\�yFFy�\|Fy�\F�lRI
HL<$/=%O(!/qZPewJ8
$h05aJ-'E]7:dK+ZA

Fx�\\�yF���r"32>54."&'>7>132>54.#"67>76&'.54632#"&7>54&#"10.54>32#j��QQ��jj��QQ��j"B
"9"2U="*Jd9HmJ&0*j^RgP;!)
!/
=hK*Fy�\\�yFFy�\�Q��jj��QQ��jj��Q�D	BZ+Kd:7^D'-Ja41h$
8JwePZq/!(O%=.$;MH
ISk�G\�yFFy�\\�yF���1U!"3!2654&#"&'&4?041'&47>;2031#8+"&'0.5>1>;2���(88(@(88�qouKo
K&,$��o
1;1M[K
p�8(��(88(@(8�f	��	
�CN@�N��	ZlZ���
	O����#F"8;2670>7.1.+%"001;26764'"0764'.#�d�
�0;2& �lczgBNB�
�G
����
UhY7B7
��׸y�x
}B��� @"17467162311312671!1"#15<51.#1"1!2>51p\�].�5IY"����5IY"�cH\�].�4f�b���Qd�����Qd��c4f�b%�]�*.#!"326?32676&#";#"!T	��%
	�"���%%�(�
	��f%�!
	��%%�
	�%b����)?Tj10326170674&1'0&'6170676&1'0&'&10'>10&'&01074&1'0&0617>&1007>170&'a
�g
#�	%�#	t�	j	��2 �$	
	'�@ �	�3$��
NaG
��E+Z-	K

(���m	�"
	8D	�!
6$�\����=+#;26?>;2>76&''.#!";>;2>7>56&'�Il�WM6A�<jT;
	c$}R����1]ExaC	 �OyR*���<aG5Z"�(%��9
EnQ	<V%���%1A'>32!"&#"%!>54&'4632#"&.5467326�#Xfr=F�r]"�^.RC0�&O��i�*%��mMMmmMMm�]�uC" �O#�,H2$B]84H+z+_1i��Rk K*7`$�MmmMMmm��Y��`D8��CT�����0&'.110&'&*#:1810"0&'&'6.'67021>6'.'.'>7>7<56&'.'8181818181>7>7>746381041>78140504104104581<5<5818#041818181.#89&""&'>76"16&".'.'0"1041006706727:3>7>&1�>KSZ@'<OL
&5qhX\#4$C0%

	
		"k!4":
	
	#!T`k8).��?rL�'=(+o-UH.'|%$8�j"R3
3
	$
	




$
!0+/N`E3#[C)f;:W<"&�Ԥ���M9AKT3>54&'6&'."&#">76732>7##"&'.=!%>32!.'>&67��'CWh8		M�qP1kD5Zv:/�a-d6H�mQ�[77[��~kJJk��%%i?Di�� *aAHoK=o1M'2YzH>\!4ZŲ�./-OmA-99-/tIffI]Z;8W�� RIv' 	����3>7!67&'.5&>7!0.#1Gy�mAwgU  �}��>%r��@7\B%"B^:$
k"VUP�rZ!�Y�}L;V9;}Ekcf*,�&	K_m7Gx`KJ:CRC.H[0<���#'+/37;?CGK����������37;?CGKPTX\aejnrv{����������������"32>54.'/////:#62>>>><&4.7'.'7'.535#4677'>77'>77'>77'>77'>77'>77'2633523777.'7'.'.'..*37"???0?7'''''"#5#"&#7'.'7'.'7'.'7%7777#3''7''7''7'7'77'7'7'7'7'''7%'7'7!7'%'77'%'7'7''7''7'7'7'7''7'7j��PP��jj��PP��TF=�V�#=JFP	P#0/``/0#P	P%
%
CD
6
5*`44`+65
���
%
%>�V�#!%
%
CD
6
5*`44`+65
^�
%
%P	P#00``00#P	P_E�@����%%H%%�s���***+�)YY�YY�-.Y..��^^l^^��^^r^^��..^..��YY6Y�7+�*�����%%W%%������P��jj��PP��jj��P�'�#=JF=�V�
6
5*`44`+65
DD
%
%P	P#00``00#P	P%
%
�
?JF
DD
%
%P	P#00``00#P	P%
%
�^
6
5*`44`+65���^^��^^e.-��..KYY��YY"*�*7�LK%%�%%���������%%f%�����*�*�YY<YY��.0-��^^^���!U9.'>54.'>1013267#*'.54>30232.#",?(1]N;0S=""=S0;N]1'@,�W*33+DMV.8h-"NV^1f��LP��j1]VN!-h8.VMD�9kaV#

Bc~GG~cB

#Vak9!2�SS�2#:) 0"T��gj��P"0!):#@����KUbs����.'".'.'>706'4&/.+""3267>73267>7>'4&'>7>72.5063>7>71%#"&'>32.'.'.#!"3!2654&'1'#5#!"&54630:1;J
-#8

/

 ,8M2;�:,d"
��,"	#1

O	*3Y'�0 
Y-3')�!//!�!/�%
�)o	� 		���
�s


I)�
$lF ?3	9	RX

�8	83f*#40�K#7 5
�3-/!��!//!p)'6)�
%��		`	�
@����
%@I_.6>&1&.>76>7>7.#.'.'.#!"3!2654&'1'#5#!"&54630:1;�-k+4j%$j3+i-4a*)XXS"'G�6>$/h4 K%�-3')�!//!�!/�%
�)o	� 		���
��')�!	 &1!3y3-/!��!//!p)'6)�
%��		`	�
@����*3I3##33#%.'.'.#!"3!2654&'1'#5#!"&54630:1;�,3BkM:oqmLDe��-3')�!//!�!/�%
�)o	� 		���
���>��>�/��\�3-/!��!//!p)'6)�
%��		`	�
@����)2H#'#35#7377.'.'.#!"3!2654&'1'#5#!"&54630:1;�``����22o����-3')�!//!�!/�%
�)o	� 		���
�@����\K��3-/!��!//!p)'6)�
%��		`	�
@����*.#!"3!2654&'!!2#"6=4&
 
��



)�@_R �

�

�


�@

@
 
������
�

�
=����%!!!/33?!!=RprR�z�O
���r}~
�x6
��ffg���t��@@�Z""�Vq=����%!'5%!/#7!'!7!=RprR�z����F��
}r���d
�
����ffg���RR�9�""Z�@@[tq�����!!!'7#%�"��D"�'����)�Қ��p��^^UϚ�����D	&">32>32#"&5467'#"&5467.5467'2764'�A6hO	(8�	(88((8�$8((8$$N���6���hN8(	�8((88(	���
2(88(2


2	O��6�A�6���{$),158	&"3267>54&''7'5'#'%5%777��@�@�		��.����f��@��f�������������P+������+*��ooo���o��o�ަZ�����o��o��Z����p"#76764'&"5>54&#"'6&'&"7#.#"32673&27>'732654&'52764'.'332654&#�%��&P�8((8�P&��%(88(%��&P�8((8�P&��%(88( �P&��%(88(%��&P�8((8�P&��%(88(%��&P�8((8��� 54632#"&5"32>54..54>7E11EE11E�j��PP��jj��PP���9_D%%D_9:_D%%D_:�1EE11EE1P��jj��PP��jj��P�A!_s�HH�s_!!_s�HH�s_!�q��_<���������
	���
	����
	�@� `@ �@`@@@� �@@@��@��@ �����`@� `@��`@@-��@
�����@��`
``���� �@�@@@@����C���������������������k��l�U ��:�PS &Z%@���@� �@	�A%��������������@@@@@@@@@@@@  ��@@````@@``ss����������``������������������������������������������������������������������������������������������������������������``````````          @@������������  ������@@����    @@  ��  ��@@@@@@@@``����``������``````@@@@RS��``����������������������@@````��nn��������    ``@@����������������������������������``������``��������``````````````````````````````````````````````````````��``����������    ��('������``@@@@@@@@@@@@@@@@``````````��qq����tt``����```@`@`@`@`@`@``��������������������������������������������������������������������������������������������������������������������������������������������``@`@`@`>����������� @$D @~���������������`���.�M���������������@@>@��``��~~~~@@~~``������������������������@@��@@������������������������������������@@��������������������@@@@����������������������``������������������@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@��@���@�@@@@@@@@@@""@��@ @@���@@@����@��@8 9@@@�� 
OD@@@6@@Y@@@���S~��@�@@@@�������@@   ���@���S@@      ��@.e�@@���PP��@  
F?
	�r�j�@9@@DO�b\@@@@@==(<D���
\�@��D�@ !�"�$%�(,)4*P+<,T-�/P0`2p3�55�7t8�:�=? @0ATCJ(K�L�NHO�Q�SLT�WY�[�]H^�`�a�b�d�fgijXk�mpo�p�r<s�v�w�y�{�|�}�~�������������4���������H������t���������d�p�\� ���8�<�����h����L�8à�����������L��΄����x�|֤��،٬���tݘ�d�@�������\��l������|��������t�����p��D	�L
��4�p�0�`���|��(,����x� <!4!�"H"�"�"�##8#l#�#�$$�%X%�&�'�(D))�**H+D+�,�-|.0.�/p00�101�2`2�3`44�67$8�9�:�;�<�=�>�?�@�A�B�CtD�E�G HDH�I0JJ�KpLL�MPNHOO�P(P�QXR8R�S�T�U�VpWW�X�YpZ|[t[�\D]]�^�_8_�`@`�a@a�bHcctd|eXf<f�hh�i�j�k�k�l�m$m�npoLo�p�q8rTstt�u�vDww�xTx�y�zl{\||�}(~~���8�����������|�(������T�H��|���x�����<� ���p���l���L����d�8���`���h�����x�l����t����t� �����x����x�T������0�4�H�8���\����h��D���<���P��8��H���P��x�8�,�����T�L�������Ì�t�Hƀ�l�t�h�4ʸ˄����t�$΄�(Ϩ��H����Ҽ������֨�D���Tذ�p�ڠ�ی���@܌ݤ�d��p�\�������l��8�\� ����������H� �������H�$������|�H���\�������H�p<��	d
�d ��Tx0������ !4!�"�##�$�%t&4'�)T*4*�+�, -0-�.�/|0|1822�3�4�5t6$8�:�;�<|=�?(@4AA�BC|D�E�F�G�H�J(KlM�OhQ�S�VHXX�Y$Z�\]H^0_�`�cddf\g�i\jdl�n�p�rr�slu8v�xyz�{�}}�� ������P�H�|�\�,�����������t�������T�h����0�����0�������d�����0�p���p�<�|���L����T�������h���DÄ�D�Ő�H��ǔ�XȈȸ��pɴ��Lʜ���<ˌ��� �d̸����ѰҰ�p�d�$������P���ڜ�<��ܜ�X��|�L�P��X��X�$�$��$��h� ����t�0������������X�����(�H��<�x@��H$��`\�	�
T<��

�� �(�<�d���<��dH���l�h\� �!`!�"�#�$�%D&8&�'�(�)|* ++�-(.4/�0�2,384�5�6�7P8h9$:<:�;�<H==�>�?d@@�ADA�BhB�C�DD�E\F0F�G�HH�I`J(J�KxLL�M0M�N`OO�P8P�QpQ�R�S�T�U`V�W�Y$Z\\^\_�`�b4cPdXd�ff�g�h<i�jXk�lxm�n4oTo�qq�r�s�t�uTvlwxx�z�{�}}���D�D�l��4��������h�x�����������(�����������������d���(�4�����l�������������������|�`��D�L����t�����t�\���d���(���@���X���p�����TäİŐ�x�8�������̐�|�<�@����h�$Ҽ�Dՠ�׸���ڴ�H�X�<�4��$����h����H���D����<�0�������8�p�|�x�H�H��p�����8�x������|4�t���(��	�
���
��D���\�X��D�XL���4 p!�"h#$$P%P&(&�'�(H) )�*�+<,,,�.,/<0P1822�3�4�6�89�:�<=(>�?�A(BxC�D�F0GHH�I�KLM<N0P(Q�SpT�VlW�YY�[h\�^_8`�bcDd0e�g4h�i�j�k�l�m�ohp�rDsdt�v8w�x�y�z�|�~|����D�������������$���������������H�x�`�����,�x��T���8����0����4�T�0�h�\���x���T�����0�D�����@����ô��X�\Ȝɘ�����(� τФ�PӸ�<�|׼ظ��X٘�ڜ��Tی�8���h�ޘ�(����������$��p����8�0�� ���P���l����������\��������(�`������D���T�,���l��������xP`�|��4�D�	,	�

�
���
�H���0��d ��H��8x0��8x��`@H��t  � �!�"T#T$x%�(8)*+,,,�-X99�:�;$;�<�==l=�=�>p?8?�@@�AhBDC E E�F@F�GpG�H�H�I�JLK�L0L�M\NN�OO�P�QpRRxS$S�TT�UU�U�V4W,W�W�XHX�YdY�ZDZ�[�\\\\�\�]L]�^`^�_4_�_�`bc0dDd�e�fhghhXi�i�i�k�k�m|m�n4npn�o8o�pp�q�r�slt$t�u�v�w<x<yz�{�|�}d~���<���h��P� �(�����L�d�X� �������0�t��l���X���@�����t������l�0��D���H�����t���� ���@������4�`������0�\�������l���H���(�t����p��������D�l�����(�����`���0���������8���(�����p������P�L���,�����@���<������H��Ę���Lǜ���(Ȝ��4���x���T˨�̼�xͰ�,Έ�ϨЈ��� �t�<ӌ���0�|���4՜��8ֈ�ט�T���l�0ۈ�ܰ�`�ް�p���(�l�����,���<�l����T����4��H�$��,���@���H�0�H��������X���d�p�p		�
�T�
���`����H0<<�PD� �!"#@$,$�%�&$'H((�+,,�2�3p5�6�7�8\8�9H9�::�;�<�=|��<�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK!��"hvhvfonts/icomoon.woffnu&1i�wOFFvhvOS/2``ecmaph\\�r�xgasp�glyf�=|=|_.�head?H66�|�hhea?�$$
�)hmtx?�||�{t�locaZ ��P��maxpt�  ��namet����J	�postvH  �������3	@�6���@�@ @ �c�6���� �������� h��797979���%5EQ]!2654&#!"&5463!2326=4&#!"3!2654&#!"#!"&5463!232654&#"32654&#"0�		�@		�			�`$`���	��		`	��



�



@			�		�		��`������		�		��






��@�-1AK7265463!232654&#!""3!2654&#!!!"3!26=4&#!"&=!p			%�$	g		�		�����	6�5	"�`!�	��		�'$�	�	�@		�	�@��	&.5 	0"
����(8<LV7!326=!2654&#!"463!2#!"&57!2654&#!"!!"3!26=4&#!5463!200		0��	�		��	P		�		� @%	�	% �``�0		0��@�		�@		0	@		��	@���%0		.&B �� �/3?!2654&#!"463!2#!"&57!2654&#!"!!32654&#"0��@	�		�@	P@		��		 ��



@��`�		�`		p	�		� 	�@`


��`�/3?M!2654&#!"463!2#!"&57!2654&#!"!!32654&#"32654&+"0�			�	0�		�@		��`�



0�		�		@��`�		�`		p	�		�`	���`


				���&,>LZhv�!2650450&54&'8581.'*1&"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"0���@�̼� 	��	�`	��		�`		�		�`		�		�		�		�`		�		�`		@� �`���	�%�p						�								��				�				��@� &9GUcq������7!265<14&14&/.#0&#0"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"3;#!"&=4&#"3!265<14&14&/.#"4#0"+"3"&=32654&+"32654&+"32654&+"32654&+"0@������	�`	p�	��
p�		��		�		��		�		�		�		��		�		��		'��	��
		@��		�	���		�		�		�		�		�		�		�		@`���I�	�	���		 ��				�								��				�				`���		 		 `�		�	���				�				�				�				���AMS���!26=041>7326764/>54&'04150450&54&'8581.'*1&"#!"3#"&54632#"&5%463!;.#"!"3!!"3!!"3!2033267#!"&532654&+"!2654&#!"0��$5+��@gIIggIIg��̼� 	��),M��		1��		��		HN,)	�`	��		�		�		�`		@���N-7\P �`�IggIIgg���	�%0"		1		1		#�		�				�				����-O_iw���!2654&+";2#!"&546;2654&+"2654&+"3!2654&+";!!26=4&#!"'!#!"&5!2654&#!"7!2654&#!"!2654&#!"!2654&#!"0 �		����		��		@		�		@		0���@#	�`	#���`		��		`		��		`		��		`		��		@�		���		��`			�					� �@#�		�#����				�				�				�				��>�+/?CQ_m{������%2654&#"#"&54&#"!2654&#!"!!!26=4&#!"7!!!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!2654&#!"!"3!2654&!2654&#!"!021812654&#"#"&54&#!"!0!"&5�#					(�@		��		 ��		�		� �		@		��		@		��		@		��		@		��		@		��@		��		��		@		��@		��		A\L66L�]A�		�[6L #P		��	P		��  	 		��	 ��	�		�	�`�				`				`				`				`				 				@				 				�]AP��6LL6P��A]�

L6B	��`�'1?M[iw��2654&#!"326=46;#"&=4&#"3!2#!%4&#"32632654&+"732654&+"32654&+"32654&+"732654&+"32654&+"���		��		���0@				���		�		�		�		�		�		�		�		�		�		�		�		@�%		%�`		���0@		��		W				�				�				�				�				�				�� �-=KYgu���������!".#!"3!2673!2654&!"&5463!2%#!"&5463!2"32654&2654&#"!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&��

�

���H�P				��				'��		�		��		�		��		�		��		�		��		�		��		�		9��		�		��		�		��		�		��		�		��		�		��		�		�����@����	��		@	��	@		��	�				�								��				�				�								�								��				�				�				��@�-7GKYgu���"#!"&54&#"3!2654&!"3!26=4&!5463!22654&#!"3!!!2654&#!"!2654&#!"!2654&#!"32654&#"32654&#"32654&#"0		� 			�	'� 	 	�	�	�		�`		���0�		� 		�		� 		�		� 		��



�



�



�	��		�		���	@�		��		��			�	� �				�				�				�










	��@���������4&#"#!"&54&#"3!26";326=3326=3326=3326=32654&+532654&+54&#"#54&#"#54&#"#54&#"#";%#5##5#3#32!546;2654&+"3!26=4&+"#2654&#!"354&#"32626=4&#"@			� 			��P		0		�		�		�		0		00		0		�		�		�		0		0�� �����	�		�	 	�		�		��		P								`		��		`		��		p		pp		pp		pp		p		�		�		��		��		��		�		����������			�		�						0�		�				�		�	���� �+Y{"3!2654&#"#!"&54&%!"3!2654&&"?326?326=4&5.'"&+";?32676&/>=4&#"	�			��		���		@		�d�
���		�		y��
���		�`	�� 		��		 	`				���
���y		�		��qq
tS		St
���+7Gdx!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>3281!'.#81"'&!0��`	�		�`	p&&&&


�
�		� 		��|Z�@�Cp�-��@��`�		�`		@&&&&`



�	�		��	 ���ub}`�LI		j���� �+7Gat�7!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>32!'.#81"'&""3!2654&+";2#!"&=4&0@��	@		��	 &&&&


�=�		�@		��|:�`�#p�-�	@				��		@ ��P		��		�&&&&`



� 	`		��	 ���uB}@�m(		k����	@			��			����(ADR`n|���������#"3!2654&#46;#"&!+32&"3267%>54&'%#";2654&'32654&+"#";2654&#";2654&#";2654&#";2654&#";2654&32654&+"732654&+"32654&+"32654&+"32654&+"32654&+"#";2654&�@����������Y	 ����@		@		G@		@		G@		@		@		@		@		@		@		@		@		@		Y@		@		@		@		@		@		@		@		@		@		@		@		G@		@		��`��0��@��@��`���������D�				`				�				�				�				�				�				`				�				�				�				�				�				`				��@�H\����#"&=4&#!"+";2654&+"&5!32>54&'!+";2654&".54>32".#".#!546;26=463!2;226=4&+"326=46;2"32>54.".54>32��.A?��F:0�!//!�		�Aq�VV�qA�		�!//��O�i<<i�OO�i<<i�)L`o<<o`L���9(+5?2.'9��	�			�		w<hO--Oh<<hO--Oh<5]F((F]55]F((F]; BC >/!��!/		�%P+V�qAAq�V+P%�p		/!@!/��<i�OO�i<<i�OO�i<@3S;!!;S3�G -0 G�	  		 		 	�-Oh<<hO--Oh<<hO-��(F]55]F((F]55]F(��@�SWay��#54&+";2#4&#!"#546;2654&+"#";2654&+"&=!+";2654&!!463!2"!54&#"3!2654&732654&#"32654&#"P@		@	�	� 	�	@		@P�		�		�		����@��	�	��	�@			�		�



�



�p			p0		��p			p�@			pp			� ��0		��@	��		�			�






��@�7AKi"#!"&54&#"3!2654&!"3!3!26=!26=4&#!"&=!%!5463!2"326=463!2326=4&#0		� 			�	'� 	�`�	�<	��	���	�	��			`			�	�`		�		�`�	@�	pp	���		p �		�		�		�		�����;Nav"#!"&54&#"3!2654&26=4&#!"326=463!2!"32>=4&#".=463!2267265.#"'&�		��			`	�y	��			`		g��h��ts٩g^��qsѡ_	`	��.	1\1
	3�	��		�		���	�	``		`		`	@�!I>((>I!��<8''8<�		�0
	
����&��26=4&+'.3:7%7>/32"32#!"&=46;26=4&#!"&546;3:7%>'.0"#!"3!26=4&#"#!"&53!2#"3!26=4&32654&#"	V�/�+K
�		��	�0""�`	C�}�+55+�		�0"!���



�	5:��4	5	�		��	�"" �5+�@+5�		�"v
����


��@�+AW���"3!2654&#!"&54&!"#!"3!2654&3!232654&#!"%"3265463!2654&#!>764'&"4&#".'.7>7>'.!"3!3267>732653267>76&'.'!2654&#%>32>"'&47>70	@		��		�		�`		�	�)	�			�`	�			@		��s
$$#j#
		)r

$		S'�n		+	$$--
		)q
$		R'�		��
""
r&bNr&�	��			�		��			�	�		��

		��

			�a	%f%##				�Y=* 
*76	

%f%	��		
>* 
*75
	�

L-l��L-l����/@P`#>54&+"#>54&+"3!2654&+"#"&546;2#3"&546;2#+"&546;2@f�f� ��`p		�		�		�		�	�		�	p����``����\	`		��		�		�`	���		�		����CGWg2654&+54&#"!54&#"#";#";3265!326532654&+!!4&#!"3!26%463!2#!"&�		�		��		�		��		�		 		�		� �� `����@	�		��	`		�		��		�		��		��		��				 �� ����`�		�`		���%GT4&#!"3265463!2#!"3!26"3!265732654&#!";#!"&5463!�`			�		��		 �0�			�		��		�		���		 		�`			D���					��			��@�+AWgk#"326=46;2654&!#";2326=4&"+";26=4&!";2654&+"&=4&%26=4&+"373#�			�		��		�					�		�	��	�		�		�		�		����		�						�		��	�			�		�			�	�	�		�	�����BFLQ[e!2654&#!"463!2#!"&57:3%267>5764/&"013'#5%';62'0��`	�		�`	`@Cu�)x��e�"��7KN��I���$�@	T��W��l�@��`�		�`		A`Fu*�x����v!��
&M��K���@%�V	FQ��l��� �+7CO[gu���!"3!2654&#!"&5463!2"32654&"&54632"32654&"&54632"32654&"&54632'2654&#""326=4&"32654&2654&#"�`,,�,,�`��&&&&


�&&&&


��&&&&



								�				�				�,��,,�,�@�p&&&&`



�`&&&&`



&&&&`



�	 		��	�	`		`	`	�@		�	��	�		�@	����EU_"3267>767>54&#"'.'.#"&'.54&#%54&#!"3!26'!5463!20		#hhXVef#
		
%smORpu%
	P��	`	 ��	 	�	�bO_YY_O	�		�b_jUUj_�	P��		�			������47o�����4&#!"3!26554&#!"3!26=4.'>!#0&1'54&#"01#54>7>54&'.=!7!"3267>7>764'.#.'3!2654&#!"3"326=4&'"326=4&�
�~

�
!	��	(;CE:&	@	)<CE:&����D@.I�		�I*=ED@. *=EZ��P,'L�$?�<���

�~

A								�				�t		t;dP;<Pa:t		s;dP;<Pa����6Ld;c�		�d9`L85Lc<dd9`L8�1B	>+	�3!.��				�	 		 	`	 		 	
����2;?CGKPZd"#"3!2654&+54.4>32#54&#"#)54632#7!#7!#73#7#53!"&=!!5463!2�BuW20!//!�!//!02Wu��-Oh<<hO-`qOOq`���^BB^נ��R���R����ɠ��	��� @����2WuB`/!�@!//!�!/`BuW2��<hO--Oh<``OqqO``B^^B��������������PP����
Yd|�"32654&&"#!";32654&#"&'.'332654&#"&'.'323267>54&'46;#"&5.+"&#81"+!2>72654&#"�				@	$b��z�D#11#m/$`=		6U(`3 		(�z��c$��ll@&g��{�k0{��f%�p				�	� 		�	'F=*2$��#1n/$$		(a4		'
*>F
��{V�@�G=)�)=G��	V		��	��`�I"676&'.5>73267>54&'.'&4&#�k�j6Rrz(
0vhG8`�X	��u-Y�Y
KuR1`�� 	�3>5��f�zSQs�\;	13*�0		H��|@-84		
*0+��k�yK�	��/�
iv��2654&#!"3!"32676&'.'&67>;326=4&5>5323267>76&'.#.5!"3!26=4&#!5463!20		��		 ��OQ
+4631)
M60DXU		_cM06M)3476+QOPI^YOS@�@%	�	% �``�				 -K) C?52;?";��Q[7P		P	7[Q0;">?6:BB)K-��IuU44TuI0��%0		.&B ��n�o}!"3!23265..#!!2!0&'.54&#"30:1267>'.'>76&'.#!"3!23"#4&#"326���		`*		!
��P"k�E		&���	%-)

),&	��

.1''2-��				�	� 	"		�;��-��
			AB9
AKH			SR=
4HK���		� 		���Xr���833:7%23267201%>'.'&"?.%54&#"6&'&%676&/&"3267>54.#"2.54>4&#"326"&54632(\\ ��
���==��		��=
=���
�� ]R`O*Id99dI*O`R3X@%=QPOQ>%@X�T<<TT<<T�.BB..BB>^^�
0Y
O���
�VX

XV�
��O
Y��
�S��Y9dI**Id9W��T�%@X3I�yWYx�H3X@%�<TT<<TT4B..BB..B��`�z�4&#"#"3267>32#"&'.#";>54&'.54632326=>3232654&#"#"&'40154&+8#.5467>5:;23267>32#"&'.#"+.5467>54&#"#"&=>3232654&#"#"&'546;029>54&'.54632�MTJZ	
�8U)GH'V7�
G<;G
~4A

" 5XP0 (	
B3~	5~*+!	,4E(	!),~
	NTIZ	�)D	
' 4[\4 &	F'�
I;;F
C/NE8!"
M3w
	B>?P	�6S	*33*	I9�OMSM
s:L
"!8
@&t 	F:@<
�$>	
"!.OE8!"
	A(�
aNNR	
w*6
	*33*	��@� .?M_p����!"3!2674&'.#!"&'!%2654&#"#023>'.!2654&#"3:12676&'&267>'&"&32676&#";2654&!2654&#!"!32654&+"�`�`����{w{��				�	 
	 	�				�	 	
 	���
0��
�� �		�		�y		�		�g�		�		�	#$���L	 		��	
 	
��	 		��	 
	��

`
��|��
`
��				 								����?ES&"3!2654&'>7>323267%&"32676&'%!62%!2654&#!"�(��Z��'�q���
*����q'3���a 		��		�

����^;�����i
	��9�
�L�Hc�				����
3BYe4&#"32654&#"3263!26=4&#!"01!"&/7>3.#!"3!26?>54&'%!2#!5�				��rp
�

�E
��Eqr��
�E

�
r���qr�D00	��		�"		"		6ZX	�	�WZ�Q	�	ZHWZ���_�38FPb��.'&"3:?3:373:7%>764''7%'81'81'7%'041/%.3263>'#"326?3326=33267>/54&##546;2o����0������$�.�:�L�Xa��5����`%��I		I��% �`v�yosVC����WioQ;�o�?(3��vB� �j%*�
��		��
�(&` ��@��2>J����?>03261>?>?6326?>/.?>?>70654&1././&6?6&/././.'0&#"1&/&01'46146?>?6&/&4?>?>?>30632126?601#"&#'.#0#"&1"&/./.#"&/.?>/./.50&52654&#"2#"&546+"012?201:326?46?2?>/46?>3267067>16&/"&/46?>/."&/.754&'0&'.1*#""&/.7>/<1732637>?>30301?:121001#"1/.#"##10&'.#0&156&/.#"*3'0617>/4&/.5067>506132672654&#"72#"&546v
-	&
I
	


	I	&	-
S

S
-	&
I
	

	I
&	-
S

SVT-%	I	I	$-
TT-%I	I	$-
T�IggIIggI<TT<<TT<

4*
:

	
) 	<

4*
:

	
) 	
*	
		9*
	4<

*	
	9*
	4<
�(88((88(&&&&		I
&	-
S

S
-&I
	


	
I
&	-
S

S
-	&I
	

WI	$-
TT-%	I
I	$-
TT-%	I
�gIIggIIg@T<<TT<<T&

	)
 	;
	4*
9

	)
 	;
	4*9
8*	4<

*	
	

8*	4<

*	
	
�8((88((8�&&&&���Ew��267'32>54&'7>=3023>75323:7>5<=4&+".#"3267>;2#"#"#".54>2654&#"72#"&546�k���JtQ+�``
|	�Z*CwY33YwC'�|	p	p	�&IiB=kP..Pk.BB..BB.!//!!//�=��
��5Vm8 BI�
����3YwCCwY3lw	�	�	�LB&2bM/.Pk==kP.�4B..BB..B�/!!//!!/-��>�X267>54&'&67>'.7>7>3201227>54&'.#0"1"3�0b$*z+�b�!\!��+�5jJ**I�#� U11V��!!8<-%%55*+�O�! ))��+05<! ?sI+*J��V11V !�� LMI������:r�2326?>54&'.#"01"7>'&6?>32'&>'.#"&'.546?>656&'&302126?&"326764`6�45��)(�0	|	�)(�0	!@�56���P���65�F$6�()�	�I&8�()�	�65���P�
��@�1=Iav��!"2?>3!2"/&"3267>54&#4&#"326'4632#"&%"3267>54&#!"'&47>3!2"32654&"&54632��%*
*
@	�=U
U	
�/%&&%`



��%�@
N

���Q�>���
@�&&&&


�++	��	�AU
U�&B�&&&&


-�<(���&B0��	�AM�	0&&&&`



����q��"0232676&'%.75045.'.'.54>32"&"1'&27>75<54015467241>54.#2676&'%&:&:32676&/`?~e>?>-��0999[r:;sZ8J'1��
	-@?=d~A�	���	��1[�RP�31%	98
/40zHJwS,,RwK_r!5/ 
%15�RS�[0�P::/.���2d�%&"3267%>54&"'%.5467%>32&"'%.5467>'.3267%>54&'&"'%.5467>'.3267%>54&'��&o&��q00q&��^��r((r
��[��
q00q
��[��
q00q���! �

� !T��	�				�	{
		��		
! �� !�	��	 !��! ���?DINWe3!:7>781401>7<14654&5405.'0&#'&"3!"7	777326=7%46?>'.5	�e��w)�u#��	����%�N��!7XT
@W��U�l�l/	6$x�

u��@
��@$�%�N�Kd�!��
�	V��Q��l�l����E�������0326764'.'764'&".'764'&".#.?>02764'.#&&".'&"33126?>/&"#81"&'0&'764'&".'764'3:3%267>57>54&/&"01'#5	';62'7 7M-23%st�
5L.
.K61��3

-J5
����tt%3�J@#u�*x��e�!�7K�M�	J|����H@	T��W��k�l26K.

33%tt�
!:N/
.N:!���3

,L8 		�,���ut%3�`&u

�x����R!�
&�N�Kl��@�zV	FQ��l�l����M����>5.'&.#"26?>3267>'3267>'.'""/&4?2?#"&'&'764/&&67>3267>'&67>"'&"38126?64'&"'&"326?326764/764''7�7x+(�� )L*p1o*&E(q )L*p0p�0*]@#
��$ V)^1*]@#
�# V)^���A
-��@-�`@`��KI)I�+)u6��+v7p2p
	)u6q,u7p0p�0_*T ��
.j$ 
_)3_*T �
.j$ 
_(��@��0(@��0p`@`��4I)I	���=Vbn���%2654&#"72#"&54632>54.#"&'4&'.	32#"&'.54&'.'32654&#"#"&546323267>54&'&67>'.#"3267>5467>764'&"#"&5463267>7732654&#"0.BB..BB.!//!!//�\D,N:" 9O.jR�
Ej}9<S�.�aqOgkK:L	ZB3tcF%B..BB..B�/!!//!!/t*WF,	��
@-AN��2.O9 ":N,D\

	 L:KkgO$:
� B..BB..B�/!!//!!/#N<<":N,,H5Lt��m,0M$�
S^IKk23G$/X3)b~�d�
.BB..BB.!//!!// 
'az�^��
VO�kU�	5H,,N:"<;_ 2J31kKI^
>

����6;E|3267.#!";21'"32654&'4&'.'.5463!!5!2!>830#"&54674016417>54&#81#"&'5!+"�$$��$$�	:
6,,7#*�3���!>��d%%G���<1 $&$$��$#?@

4??4		
6G"~~b��%��55GD0!CC9M=���3J^r�"326733267>54&'.'4&'>54.	"'.5467>32%".54>32"32>54.".54>32PE{[55[{EAt-E			

		

	��,E)/5[{2		����?oR00Ro??oR00Ro?2WA&&AW22WA&&AW2+L8!!8L++L8!!8L�5[{EE{[5/)E		��	

		

	E-tAE{[5�f��		0Ro??oR00Ro??oR0 &AW22WA&&AW22WA&�@!8L++L8!!8L++L8!����_��26=326=4&+";'3#326732673267>'>764'&"'>54&#".'&"2326762#".'&47>374632#"&53267#"&'p			@		

  ���/e56e.��,D
LK54KL
D,�c
-u@At.
)DKP*)QJD	�8'(88('8,
K@"!@	0	`		`	0	�@�f��
!B	�35JJ53�	B!��
�-11-(..(�(77('88't���@�HT`lx".#"%>54&#".#"32654&'326732654&'32654&##"&54632"&54632"&54632"&54632�(8��	
$
��8((8�	
(88((8�	$
"8((8	
(88(��&&&&&&&&�&&&&f&&&&�8(%
�?�	
(88(%
��8((88(%
`�
(88($
�8((8�`&&&&�&&&&��&&&&`&&&&����7AO]7#"3!26=4&+5>=4&#"#".=4&#"!546;2"326'6&#"&54632�_%	@	%a0R=#

!8K++K8!

#<R/�����<UU<<UU3A..CC..A��%0		.&�)AU0<

<+L9!!9L+<

<0UA)� �V=��=VV=|=V��/BB/|/BB/����
��4&#!"3!2667>772013!2654&#!.5467>54&5>7>'.&'&""'.'&67>764'4&'3223267>54.#"&5.%.#"32:3267>54.�	��		@	�i
.7
))A;A�		�F=5F/



	!
C!
$
	SSQ-_X?Lgg<e	
OC'[>		9R#:/	!3>0				�'1%	(B=6�A+H		:"9|1AQ6@ 
*
/(H{)!Al7[wABz]:z�G=?l:�		9RoG#k^bn$MvY>
��V�
1Ng2654&#!"33!2676&''.=4&+"##!"&'&6713267>3253.#"#"&'#74>0		��		�,2�2,�	�	�&��&
�4--4-&�
��8-4-&', �				��%0

0$>3FS'�		�*ZK1��T

"

��"���D�%3O`��M�.<HT.#"3!832676&'#!"&'&67>322654&#""32654&"&54632�F''F�xN3
2N�xw@*��*@�88��				&&&&


a.11.�\/\&$(($%].���L'�&))&�['K$	@		��	P&&&&`



����A��6?>32'&:3267021061263461647<124176&'&.#"4&+"&'&673263>/4&1&4#.#"4181.#0"1*#?;265%6&/.#764'&"01326764/%267�b
c11�~� �@$$@E	�%9�4@�~�G.�	�@B9%��E`_DI.Hk�
�"$$"�� �v-)-,)��	D#4�� ��+U"!%
6"T)��#CF`^D$!��]�my732>=326764/.#"#"2?!2654&#!5>54&#"!"3!.=326764/.#"272#"&546FM��[[��MG`aGDs�R		��)7B..B7)��		R�sDGcb
!//!!//cF[��MM��[G
`a
GS�vJ_		�>*.BB.*>�		��Jv�SG
ba
=/!!//!!/��{��67>7>7>74&'.'4&'.5467>5>30213:7>'.'.'.'>7>54&'.'#":GLD7#;
,G^66^G*B)7DJG9	ANQ-6
)C

0Oi<:hO2:$	7-ROA?.=&V#Z57
=jO./Pm>.=g!	#U%;-5D);'#j>7
CuW31UsBA5[!';,E5��{��"3:7>'.'.'.'67>5.'.54.'0"#81"767>7>7>74&'.&'>54>3021'�7DJG9	ANQ)5sk!$+Lg;<iO.$!�Z4(
ROA:GLD7An ")F_65[C&" dS)#U%;-5D)5#	;MWRDxY44XuCRWMF!2,E5.=&U#$QWR<jO/.Pl?RWQ

���vy����"!#"3267>5.#!"!'32654&#!";1.#"32>7!#"3267>5.+32>54.%#.'!7".54>327!#!".54673267>'>32#�.V%�3-		&:	��Z�c�		��		Jmb"K)E{[55[{ECwZ6c.		':	~�w4%5[{EE{[55[{�^���)9"}��>L��?oR00Ro?$D�22Rk<`?oR0E9��!M)?oR00Ro?`N$		 E	��				��5[{EE{[52VuC#		 B��<EO*E{[55[{EE{[5��N��T+OF:���'��v0Ro??oR0��=iN,0Ro?L�*��
0Ro??oR0����*3Kb4&'.#!"#&3!26=4&#>5!5463!2!.#"#"&/.54673267>32#".'�!��  6^�K�$	�
%}K\4��� �9.,LY%$PFEP$,!R@LY%$PF,7XuC<jT<
�6�..�6G�uL��$		&Lu�G��)v/$!!

/|*��$!@f?3Tl9����&7GWhx��4.#"02183326720183>5!.54632!.54674&'>%467.5>54&'";26=4&#+"&=3�7p�qq�p7��������),

,)W))W�� %!RG1^a @ a^1GR!% ��ad32"6B!.dS6%!B6"23da6Sd��	`		`	��LqK%%KqLW��``��WC�~ff~�C�XX�9wpb%"bqy9q�"�``�"�q9yqb"%bpw9_z$zV2hc\&%[eh2��&\ch2Vz$z_2he[�	``	p		P���'7A�2>54.#"2#".54>"3!26=4&#!5463!2'01326=041>72764/&"#"&'.546764/&"�E{[55[{EFz[55[zF?nS00Sn??oR00RoQ$	�
% �� 
�	
M�9&0
9�PP�99<<91%+ /CJP)5[{EE{[55[{EE{[5�0Ro??oR00Ro??oR0��%0		.&B �3		3;4%19<<99�PP�9
1&EJP)+TMG- ����6Bfr~���������	738126732673812676&'>'.#".#".#""&'>7467>7>7.'.'..'>77>77>7.'.>54&'.'>7>7.'#"&'>7>72.'.'>%2.'>>32.7#81"&'&672654&#"72#"&546S=<]88]<=S-JJ-S=<]88]<=S-JJ-�,M$K%%K$M�-00--00-22(<$"�<"$�22'<$"��$<"5F37	%?=3�3F3=?%	7��,M$K%%K$M�zF37	%?=3[?%	73F3=W!//!!//!�!"]nn]"!*�OO�*!"]nn]"!*�OO�*�aR		Ra�66668**))� <	
F< 
�**))� <	
+
	< 9"L)4@s�%s@4)L"�aR		Ra�"L)4@s%��4)L"%s@8/!!//!!/����.:F"3267>54.#.54>32"32654&"&54632�O�i<p�vv�q<i�Oty]7`�II�`7]ytOqqOOqqOB^^BB^^�=h�Pw�nm��yP�h=�%t��fI�_88_�IhȤrqOOqqOOq��^BB^^BB^���*6BNZfr~��"0212676&''.7>3#%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"54&+"021812>'"&'.54>313B]]BB]^C5KK55KK4�



�



� 







��



�







�@



�	�4]F(&$$]34]F(�-R!$>R.�$=Q`]AC^]AC^��K55JK55J�






�


�3


3


�3


�


�3


Q�	(E\44^$%'(E\�#  R-.Q<#�.Q<#	��@�@d�������&.'.##"&'&3267>7:3267>=>54&'4.#"3267>732>"&'"54&'.54>32#"32654&"&546327"32654&"&54632%"32654&"&54632u^WW"7>\-
1fC
-T>Bc�O��oqS#7E!�FCq��I� D1g A6"N��jh��KD}�j&&&&


�&&&&


�3&&&&


�]F>]z !
$/�,g5Qm2\�tBCt�[7]N?�LM	:i���
8F�:IW3T�l>=k�VS�a5�&&&&`



`&&&&`



]&%%&`



����0Z".'.#"3267>7>54.#.'.54>3227>7>32`;o--o;BuW2/!/��mm��/!/2WuB�*��qq��*=7-Oh<5d(!!(d5<hO-7=�+(##(+2WuB-QLJ&8�rNNr�8&JLQ-BuW2��1tkSSkt1H�S<hO-'$++$'-Oh<S�H��@�S.#"3!2>54.!".54>;2654&+">32326=81?<m�e]�wG3N5/Oh::iO..J\L�3]F* @`@0		0;i�`g�b0		$OB+)F] P�uFAs�\BQZ'=nT19Xl3>lQ2��,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3��@�y.#";2654&+".54>;2654&+">32326=81+"&5326764/&"2?;2>54.?<m�e]�wG3N5/Oh:�		�3]F* @`@0		0;i�`g�b0		$OB+)F]4�NB���
�U[�:iO..J\ P�uFAs�\BQZ'=nT1		,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3BN������I[U9Xl3>lQ2��@�}.#"7>32326=85#!".54>;2654&+54632'&"326?64'&"4.#"3!2>54.'?;m�e0-g�b0		%OB*(E]6�0\H,?`B0		0gYQo�
�

�
�#<R/3S: ?`@!%IlF=iM-1L[)!O�tFJv�K0		0#CdC9dI*#DfC1aN0		@YhpQ�`|
��
|�/S<# :T3B8Sh57mV6/Ro@LpK'��;�Y����&"&#76&'&#76&'&#4.#"32>733267>/33267>/3633267>/76&'".54>32#4.#"32>734.#"32>73#".54>32##.#"32673#".54>32#3#"&54632#&9L-9K39KQ��jj��QQ��jf��UK93K9-LGG��c��LL��cc��L`=h�OO�i<<i�OK�fA`P���)E]55]F((F]51WC,`<]zEI�`77`�II�_8`�J55KK5,Db';K*.R=##=R..R<$`pJ
1(88('8P

[E[E[j��PQ��jj��QK��d[E[E[UU��L��cc��LK��cP�h<<i�OO�i<6_�J^�yF�5]F((F]55]F("=R/CuW17`�II�`77`�I5KK55K6*)F4#=R..R=##=Q/ $8((88(

�����'U[ch2>54.#"2#".54>32673267>54&!6&'."!&!>2.'j��QQ��jj��QQ��jc��KK��cc��KK��]��/H1
���,bdb,���
1H/RJ�@���&QTQ&��JRAQ��jj��QQ��jj��Q�K��cc��KK��cc��K����DQ[2
6��
2[QD-Q�/X��%����/�Q���+;B4&#!4&#"32>%4>73!#".5%!2654.#"!�	�P	`�~IG|�d\��K��Aq�W	�Hv�T]�tB�	I~�`		U�pC�`�	�	I~�_d�|GK��^W�tG�O	T�rCBt�]O	`�~I	�?	�Dp�U
�����(6DRcu������"32>54.#".54>3226=4&#"#";2654&;2654&+"%26764/&"&"326764/64'&"326?326?64'&"#&736=4&#.54673'267>'764'&"&3'>32"'&47j��QQ��jj��QQ��jc��LL��cc��LL��S��@@�@@��22�00 33��00W����UU=		

$

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K@@���33��00�22�J00RP�
<UUF
s$$���%/:JTboy�������������32>7465<'4654.#".'>7373.'>7>32#"..'>73267!467.#".'>774&'>7'.'#"&'>32.'>7#467.'.'3>7.'>74&'>7.'%.'>#46T��gg��TQ��jj��QD#�3,%'�-::	""(Bl!@!(4<<��<<!@!lB(
#D�(Bl!@@::	""�!@!lB(�D#D'%,,$D*=h(*D$(h=�').j$D*=h�	*D$(h�'�.�g��MM��gj��QQ��j�#H$1]�C{5
,c5�@gI''Ig�vT
T�(~'T..T'�%D 'D�
Tv(�T�,X+1m:�T�(vT

@gI''Ig:
Tv(�t+X,:m1�$H#
*]1�
5{C5ct
<a"L2�"a<
2L�>s3
;�M,
<a"Lc"a<
2L�
3s>M����';p����32>54.#"2#".54>2>54.#"326=2#";#54&#".532654&+>726?32654&'76&'..#"374632#"&7.'7Q��jj��QQ��jj��Qc��LL��cc��LL��cV�qAAq�VV�qAAq�6		K�g@0		2<i�O		J�_72		0;^zF��(8��	(8��&&&&�@
Y�V�j��QQ��jj��QQ��vL��cc��LL��cc��L��Aq�VV�qAAq�VV�qA0		27_�J		O�i<2		0@g�K		Fz^;���8(��8(	��&&%%�Y@�
=C���}!3D���+@Tbv����326?64'&"326?64'&"&"326764/326764/&"326781>7>7>7>781>4&'.'.'.'.'."8181>762818181818181"'"&'.'.'.'&47>78181>7>7'>7645.'&47.'.'7.'.'7:7>7"%'>7>7.'.'7'.'&"'62>7'>7>7>"&'&3267>'.3267>'.4676&'&>4&'.3267>232676&'."7�_^�^_
@
XX�XX-"5&P))P&
	2%	'.
&PRP&

2%2	
������T 
�

J0�J		J?�U.	J


�!$
�

J
*yJ
		J?��	J

�!.�7x|x7
:�BB�:
�P!""!  
z!""!
  �V7x|x7:���:
g_^
�#^
^�XX�"
X
X�	
&PRP&
.'%2	
&PRP&5"%11
		


?�@J		ZJ?�@J		
�*
J

�#Y��p!�

J	. 0J

�
 G��-�

J	.!�  
"!!"
�:���:
7x|x7
�:���:
7x|x7
�  
"!!"
���'=IUamy���2>54.#"2#".54>326764/54&#"%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"j��QQ��jj��QQ��jc��LL��cc��LL����		�{







��







�







 



��



@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�g
��

�






s


��


s


��


�


��


����2>54.#"3267>'.'.'.'&67>7>323267>7>7>7>7263.'.'.30216>'.'.'.'.#"&'>7>7>7>76&'&"#.'3:3>5.&'.'.'.'>7j��QQ��jj��QQ���


2o<9l0;p2%C(&@"6v@/N9#&[4&R+'N&		$J%)N$7_( 8L/



2o<9l0;p2%C(
&@"6v@/N9#&[4&R+"C!	$J%)N$7_( 8L/@Q��jj��QQ��jj��Q�9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L					R5;naR9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L				R5;naR���'c�2>54.#"2#".54>67>'.'.'.7>763267>54&'.!67>'.'.'.7>763267>54&'.j��QQ��jj��QQ��jc��LL��cc��LL��F


	#=:#4"7



	#=:#4"7
@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�k
			9.D�=KP$5G


			9.D�=KP$5G

���Th4&#"!"3!3265!2654&#!!#.'54&#""#";3326=>532654&#".54>32 		��		0		/		���T@f�L		R�pEP		NAq�V		P�g<R		�O�i<<i�OO�i<<i��		��		��		/		L�f@R		P<g�P		V�qAP		REp�R		�`<i�OO�i<<i�OO�i<����'A[q��"32>54.".54>32"326=4>;2654&#!#";2326=4.54&#"326764'76&'&3267%.3267>'�]�yGGy�]]�yGGy�]V�qAAq�VV�qAAq���2WA&		!8L+		�		+L8!		&AW��		���`
`
`�Gy�]]�yGGy�]]�yG��Aq�VV�qAAq�VV�qA�&AW2"		"+L8!				!8L+"		"2WA&���

��
���
�
�
�
�����;{32654&+"326=&'&32>7>54.'"'.54>7>676&'.#";26781>=4&#T�		�			"4$$4"3{��B.]/2b]T%$8&&8$�f	"4$$4"2y��BF���4%8&&8%�		�	@			�		�"NV]00]VN"3B&8%$T\c33c\T$��	�"NW\00]VO"1B	
F5$T\b43c\S%		�	�����(4@LXq"32>54.#".54>322654&#"72#"&5462654&#"72#"&546#"&'.326764'&"j��QQ��jj��QQ��jc��LL��cc��LL����&&&&


m&&&&


7(o;=p(.}DB|-�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�&&&&`



`&&&&`



��,12-3761�����(DP\ht"32>54.#".54>32"67>32326764'.#'2654&#"72#"&5462654&#"72#"&546j��QQ��jj��QQ��jc��LL��cc��LL��^C{.)n<=o).}D�&&&&


m&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��Ke71,01-38j&&&&`



`&&&&`



�����(X"32>54.#".54>32#&#&73736'536'56&#5>3627>'56&'";#"#54&+53267>=46;j��QQ��jj��QQ��jc��LL��cc��LL��
UR)0

0
b	P

P9
(&NN
A	00!:D�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�U75
`
�

�
`
0`
^"=>
��
>E64=�����(|�"32>54.#".54>32>76&'..#".'.#"""1'&32>5<5>764'.#"&'>7>'.#"&'267>54&'.'>76&'.5467267>'.546327>77263j��QQ��jj��QQ��jc��LL��cc��LL���
+2H5`"		%8
&W-JuR+

7'HiB.1	$#

*m;4$!
�Q��jj��QQ��jj��Q� K��cc��KK��cc��K~
H24+
	0	'

	7Yr:94eP1

	!'+1
$4
�����'fs�"32>54.".54>324&+*#*#"3267.#"32654&'.'.'&65>5>54&'3265"&54632#"&54632%#54&#"#&73326=3654&j��QQ��jj��QQ��jc��KK��cc��KK��"
�5LL5	
B]]BB^
3
�4II44JJ4'88''88cK
	N

N
K

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�
@..@	E11EE1,/'
�11##11##1&----[L
	P

L

L

�����'@Wdp"32>54.".54>32"3232654&'.#5"3232654.#"32654&#"&54632j��QQ��jj��QQ��jc��KK��cc��KK����

6Y !

&$%e=

V�l=

Bu�]0&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��K!

   Y6

=e%%&�

<k�U

\�tA��&&&&`

�����'w�"32>54.".54>32#56&+"7&3267>7>'56&'&"#"&'.'.5&4=36'56&#&3267#"&'.'./.'56&+5>7>7>7373j��QQ��jj��QQ��jc��KK��cc��KK��-p
S
	
0
o

o




/	3
o�Q��jj��QQ��jj��Q� K��cc��KK��cc��K_p
	W
 �,
		MN
`
a
^%

�
:

o
@�����(GS_os��".#&;26=067>32;26'56&##54&#"#36?>32"32654&"&54632#";2654&#3"32>54.".54>32p
	`		`

	
d
`3qB"	
A>		]�&&&&


!_

_

@@�j��QQ��jj��QQ��jc��KK��cc��KK��B
��		�
�		�SD���!
	�?
	
#Q�&&&&`



?��		`
��?�Q��jj��QQ��jj��Q� K��cc��KK��cc��K	�����'I��q��"32>54.".54>32.#"3267>781>54&'.'.'"&'"&#*#*"#".'.'.'>7>7>7>7>7>7>7>7>7>7>7263>7'2""#4&5.'"4'.'.'.'.'.'"4#>010"#'"&#"&'>7<5233232381263263>7>3>7>3.5461>7>7>7>7>7>7>7>7467>7>7>7>7>3&7.'<#.'267263623:3223j��QQ��jj��QQ��jc��KK��cc��KK��X%`61BU2-"T,64J$" 	
		
	
�+O	


	 P		
8	@1~
	

			

"$a



	4n�	
		



2"�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�'*
	rG:i%W7"1[$�F%
�

		
		5U�
	 T.�!%=k=�c`�"32654&"&54632%'764/&"'.+"'&"2?;26?2?64/7>=4&''.#'4&'&'7>'./572676&/77>5736?3�B^^BB^^B6MM66MMP]:�J�J�9\\9�J�J�:]jBwT
�
TwAiiAwT�
TwAjp^BB^^BB^��M66MM66M�J�9\\9�J�J�:]]:�J��
TwAiiAwT
�TwAiiAwT�	�Im!^n�������64'&.#"6&'&"32673267>'32673267>76&'.'>54&'3267%624&'&47'.'&67>32%&'&67>32#".54>32'.'>762%"32>54.#".54>32'54&#"326764/`(()s) D%$E(t())
$3

D#$C	 2$�v!\!5S!!�

x


l3WtCBuW22WuBCtW3S5!]!  ��6_G**G_66`G))G`60V@%%@V01U@%%@U#NJP(s))((()s( D$+OG<	





	<GO+$E�!!T5 ]!�q
	
	

8CuW22WuCBuW22Wu[5T!!!] f)G`66_G**G_66`G)�%@V01U@%%@U10V@%��OJ�8o|���.#!'.'.'./.'#.'#"&+";1!'>?>'##81'!"&/#'0&/#"&546;2322!21"32654&#"&54632%"32654&"&54632��t�$%X$X�j5e
�{
f
.o�*�
�#$33$$33$!!  $33$$33$  !!�
E%%M�#�Sj�		�dZ
5��3$$33$$3�!!!!�3$$33$$3�!!!!��42'+0=FZht}2654&#"352"5463%!"3!2654&#!5!!2654&#"352"546&"326?'#";2654&2654&#"72"546�


4����i��3

�
JGX[�PP/



�

%U��������8


'�
HG
XY�


'lA��,CGKVafj|���%!"&5463!2#!"3!2654&#"&54632#5!32+!#"&546;%#33#7627764'&"3#53#"&/&4762#"&/&4762#"&/&4762#"&'&4?62#��3**f

���

**���

�$

G�{��kHH/B<���NJ<

���llll�LLfLL�LL�$$A**

��

*��*H
�.�
��$�R���C;��/�J<


��A$$�$�LLeLL�LMG$$��{16;@��������"0010;26?0&5061463>7>54.##'37#'37#'37#54632654&#""&#.#81"381812#.'.'.54>3226=4&#"3326764/&"4&+";26326?64'&"&"326764/7#";2654&#'26?64'&"3/1U@%/+'q'+0%@V0-Z`	ms
�
�
;C				
C'+ 8K+*K8 +'v				�FF>	c		c	>GF�FF�c		c		�FG�%@V07`"��"`70V@%�{,,;;�"�							
�"U1*K8  8K*1U�	c		c	SFF�				�FFFG�				�FF	U,��'+0<FR\2654&#"352"5463%!"3!2654&#!5!!2654&#"72"54632654&#"72"5463���		>		�������1n	��		>	����O���333 } ;t��"32654&'>54.#2.'.54>3#"&54670317067467>7>7>7>7>74&#"3265!4632#"&53ZC'1<DR�ba�RD<1&CZ3,N;"%6==6%";N-�nVWnH@
@H*[?@[[@?[��H32II23H}'CZ3$bmr46"-==-#54rna$3ZC' ":N-%jtp+!!+ptj%-N:"�-00)		
		)�@ZZ@@ZZ@3HH33HH3 E�&
)Zf��%26=4&#"#26=4&#"#26=4&#"#'.#"#76&'.#"#"3!267>=4&##!"&5!#!"&=46;7>!'&6763226=4&#"�qpʙN,�-O�+#7++7&,Q��6�6w���YPfOY�����������~
,FG,+*/��*+</*+�:���*�||�*�����k|�%Khv����!546;267>'.=4632;2%!54&+"&'.7>=4&#"+"!"&'.=+"&5463!2#%!5!37>"&=4632#"&=4632#"&=4632#"&54632|�`'�;)*;�'��]�
((�L�\#T

;

�m���9>
P



J



J

	
9x�(	+*;;*+(�"d
%''$
d��?G

		��
"��}
u"
�

�

�

�

T

T
���wUjt~26?>54&/.+54&#"#";#";32654&'532676&/7>'.+53#"&5467326=!'7!%764/!!�__�		�TT�__�@XaFGaX@�TT�L=<MD6	7COEE��PPo�QDDoOO��|_^			TT	 _
_�3$'55'$3�	TT	 ��''%<<%E
EPO\EDOP:Y\�)BO.'>54&'.#"3267326764/'#"&'.5467>32%34>35"_(,/,-r?>r-,//,-r><m,��$(h98h((++((h89h((++(�K!8L*0VA%o+m<?r,-//-,r??r,,0,)��)++)(g99h((++((h99g(�+K9 %@V1
��#�&7;JZjv�%"32654&"&5463232654&+"3!"3!2654&#!!'32654&+"3%!"3!2654&#!"&5463!22654&#"72#"&546

1//�e

���w�~~	"�:%%�&&�:��}uN



&P
��

Q
��-G		�%��&&R%�nRX&P�_
)Ll!"3!2654&'!"3!2654&'!"3!2654&7!":1!3:7>=3021>54&##*1#"'.#!0"#"&5463!2�b		�		�b		�		�b		�		��*'&��X&'$f	��c��				h				g	

	�(��'��'(��	����S���@DQim4&'<'4"1.'"&#0"1!"01"#8813!267201647465
0"1/0"1%!22320120126162?!%7%%���=��&���GC���֘GG!�!�&����� ����75�� 77���9�&h�E
!HSXj!"3!2654&!"3!2654&!!#4&#!"#"833!26?>7>54&#463!2!!'!7!"&'.5463!2#���Rt��

;

���6�Q:CI
����:�!F(D��xH�	��

h	��H�K��
SI
�

���v((IZ�! ;S..1270>7>4&"'.467>7>2#1"1#"&514638�+mro--orm+----
qePm�o---Z��

��$##$"UZX$++$XZU####��		+=		P8+,((((,+-ptp-q}dl�n-ptp����		^#Y\X#"#!''!#"#X\Y		=+		8P@ &O.#".#"31!2>54.1!"&5467>'.5463067>32#=0Mc8+PC6
<T.:!8L+@2WA&4GW��<T&"!	
/!
nA+M<%$>QgI7_G(,=%T<^:+L8!&AW2,N?*�mT<&B"!/;G6J,"b?Ig����.K.'%'.#"326?3267>'7>''.#"6&/%>?� ��t	$$	t�� 
�-
		��		
-�
��-�				�-�
tt
�.'��''��&}}&�'�!��}}!�(��(�
% �@"6i}������.#"3267>7>4&'.'"&'.467>2.'.#"32654&'>7>7>4&'"&'.467>22654&#"72#"&5462+"&546372+"&546372+"&5463%6#"&57>?�A�AA�A		A�AA�A	

	@�@@�@5iii54iji42e3�]]�3e3>g���hh���g_		

&		`

�		`

`		`

��		x
	
��

5jji5

5jij5�N



2eed3



3ded�		M���M	

	M���M��

J���J

J���]@				��				`				`				�		
=		Y
���=T_s�4.#1"&5463021281#"&51.#"326?!2676&'#"&/.546?4210#7">5!%+5467>32"&5463021281#"&514.#1`-Oi;		BtW2		��#		 d�$$d�1�@�c

�d
.�����

�*	���

\�zF

=h�O;iO-		3VuB		�1�HdP�d 9���d�
c����W	�

�@	�

Gy�]

O�h=` !19#"54&#!"3!26=;2654&"&5463!2#%#'5'573�
	W8(��(88(`(8W	
&&��

`

 � � 
V((88(�(88('U	
&%��


�
� ��
@����%/9DTYin~�.+54&#!"#"#313!26526=#%463!2!#!"&5!7!5463!232654&+"3#32654&+"3#32654&+"3#�7&`8(��(8`&7&K55K&��
@
��&�&�@�
�
��@

@

@@�@

@

@@�@

@

@@�%5 (88( 4&F%��5KK5 %Fz

 �%% ` @

�`
�

�`
��`��@
�

�`
��`��@
�

�`
��`�����-FY%.'>7>.'.#"3!2676&'%"/.7>32>?3267�,NkA0=
	*$*tEEt*$*	
=0AkN,"�"��9�9
"1	$>X::X>$	1��(Hd=O..O<dG*5$(<�6&isr.6785.rsi&6�<($((�
BB
+ahl53eO11Oe35mga�!%

$"���-Zx�";26?326=326=732>54.#"&'#"#"#5817.54>32#.'.7>7>54&.'>7�BuW2�{
&`
.K%@%L:BuW22WuB#Ba	
@&K
	-[u/(F]55]F((F]5�A&!.A&!.c#>	##>	#�2WuB:�{
`&
.&@&KL2WuBBuW2��a	
K%@
	-[u/B#5]F((F]55]F(8&A-!
%A.!	T=##	>##	���!1EY"13267132>54.#"&54675%".54>322#"#"&54>�P�i<��B/)([1P�i<<i���"
(���BuW22WuBBuW22WuB		Pp		#=R�=h�O1Z)��*/B<h�PO�h=�J
!(���2WuBBuW22WuBBuW2 
	qO		.R=#���l��
'.'76&/.#"./.+"'.#"326?;26?>7326?>/>?>=4&''.#"#'.'.'.#"'7>'.'./57>7>76&/73267>7>?3326?"32>54.".54>32"32654&"&54632�c	8
>		T
$W$
S			>8	cc	8>			S
$X$
T		>
8	co	8>S
	X	
S>8	bb	8>S
	W	
S>8	bb��.R=##=R..R=##=R.)G55G))G55G)5KK55KK5(88((88*
S.>	
8	bb	8
	>.S

$W$
T->	
8	cc	8
	>-T
$W$�	"S>8bb8>S"	W	!S>8bb8>S!	W#=R..R=##=R..R=#�\5G))G55G))G5DK55KK55K�8((88((8`3Mg"32>54.'.7>'2#"1#"&5146%/.#!"3!2654&#!"&546?>3!25]F((F]55]F((F]]4�<<34�<<
�		(8		K�,0��0,�#-8(@(8-
��
�9
@
9��(F]55]F((F]55]F(��<
44�<<34��		8(		5K�n!!n6#� (88(�#6��

��		�@�@'3?.#!"3!26764#!"&5463!2'"32654&"&54632�:!��5KK5`!:�J�	��&&`	�
�(88((88(%%&& K5�5K JG�%&�%s8((88((8�%&&%�����4=Xk54.#"";2>=4&%4>32#54&#"#%!54632+".=463:3!:322#"&'.5463 -Ni<<iN-(8-Ni<�<iN-8��#=R..R=#@^BB^@`�K55K�#=R.�.R=#
 � 
��&

& �<iN--Ni<�8(�<iN--Ni<�(8�.R=##=R.��B^^B����5KK���.R=##=R.�

`%11%���`�'/6M_"3267>54..'0417'.'3"&'7!.'.54>322#"#"&546I�`7&560*ef)074&7`�
�	��
�q
�z��6-Oh<<hO-6�		B^		q�7`�I0cb`-����-`bc0I�`7��@	�
( 48p1<hO--Oh<0q83�		^B		Oq����&6EM_t�.#"01"93261%>7>.'.'81<''.'.''.#7>#"&5465767.'.'7>7646'.'.#7>32�(c4+M���KB.	�")&�S
/�'	
!1"
�Ή.�M)�"9w�>! 0�46*vz6*#'c456'L!m(+�����.BG�!V\Z&�Z*.,V�q
1
��v	
�
�(z9( @s#37�/6.W#'+6!E$";@@#(,/258;>BEIMQ'.#!"3267>54&#7?#'73;7'3'3'3#33!37'7%#�	
��
	�
	�		�
�Q�GWAQ�QAWG�PP� ��WOArp=�G���=p1O��N���qfq���WJ��JW���	

	�		�#�	!;IACCAI;5�q��w�AA�3	<33_A �w���P��P V=��=V���5E!"3!2654&!!7!"3!3!2654&/5!2654&#!"&5463!2`�@

�

�@�@��(88(@�

@

�@(88
��

@
 
�@

�
� ��8(��(8'

'8(�(8� 

�

�����4O2654&#"2#"&5467"3021265>54.#0&'.54>32OqqOOqqOB^^BB^^BO�i<@cu45tc@<i�K,m`B2WuBBuW2B`n,�qOPppPOq`^BB^^BB^�<h�PT���<<���TP�h<�D2���NBuW22WuBN���3�CXn��<'40'045.#""1"00132>7<16056454654&".'>32#2#1"#"&54638'"32>54."&54632�#l��PP��k##k��PP��l#�D�ta !`t�DC�t`!!`t�C

(8
	K5.R=##=R..R=##=R.OqqOOqq�CpQ--QpCBpQ..QoC��%C_9:^C%%C^::^C%�		8(

5K`#=R..R=##=R..R=#�`qOOqqOOq�Dm2#"#"&54>7"081326>732>54.#"&'*#">7<54&'.54>32		@tX4		8aHj��P ;S20&F;)2j��PP��j-	
6#	
,F1Gy�]]�yGGy��		5F&		.Q=$�<i�P2\QE+T$*(
<i�PP�i<�@
00:CK&BuW22WuBBuW2�#DS.#!"3!26=4&#!"&=!!";;26?3267>'.##"#'.+!��#��#�K55K?&�&����n�.	�	.�n5/�/�]�]q��	�5KK5�	�&&�� �
��]]�
��]]`��@����'+/48<'.#!";3!2674&5326=4&%!!'!7!!!'!7!5!�'!��!'#&!@%�%@!&#�C@ ��`��$$$$'��@`�uu%`&��!!@&`$b`��``�@��``@`���`�'7G!"3!2654&#!"&=!5!!5!5463!2+"&5146;2+"&5146;2�(88((88
�
@��@��

�	`		`	 	 		 	�8(��(88(@(8�`

@ � @

				��

		���0>LZhv��������!"#"3!2654&#!"&546;3265463!2"&5463!2#%"&5463!2#%"&5463!2#2#!"&5463%2#!"&5463%2#!"&54632#!"&5463%2#!"&5463%2#!"&5463%2#!"&5463!2#!"&54637326=4&+"73#��@(8 (8K55K8&�&
 


�
��				�				�				��		�				�				�		`		�				�				�				��		`		��		�

�
-���8(@8(��5KK5 (8��&&�
��



��	

	`	

	`	

	��
		
`
		
`
		
�
		
`
		
`
		
�
		
`
		
�
�

�
�� $'7!"3!2654&#!"&57326?'7#"&'463!2��5KK55KK�����&�&��

����f

�f&&�f K5�`5KK5�5K���P��&&�i	

	i�����3&&�����Sc���.'>54.#".+";267:13021;267267>'>76&'>76&'>?<54&'+"&546;2#*1"30232#*1"30232#*1"302321+"&#.'0&5467>7>546322"32654&"&54632��g-8'8.Q
!`(88(`-;9pC�(9			

,/�;
`

`
�*$		$$)($		,)3#		
�Bnd*7I,E
�U��				q/$+N<#8'1�*8(�(8
0++ '%B��



1#		-3		/&		$	



�FQX)Y?94;"��@				 ����/CIO[g!"3!2654&#!"&5463!2#!"3!2654&'.#".#"!7!'7#2654&#"72#"&546`�@5KK5�5KK&�@&&�&`��

�

hS�h����X�nV�hX(88((88(&&&&�K5�5KK55K��&&&&
��

@
 �Dq^x�͓��f
��a�T@8((88((8�&&&&���&.<JXft����'.#!"3!2654&#!"&5463!1;'#"&515%"&546;2#"&546;2#463!2#!"&2#!"&54632#!"&54632#!"&54632#!"&54637326=4&+"73#�	
�`(88(@(8
6
��

�8(�` %��0		�		�		�		�	�		��	�		� 		�		� 		�		� 		�		� 		�

�
-���	
8(�(88(`
�|


�(8 &�� 				`				P				�				`				`				 				@
�

�
�������#/;GS~����4632#"&4632#"&'4632#"&%4632#"&4632#"&4632#"&4632#"&7"#./.#!"3!26?>7232654&#!.#"!'3267'".54>32#"&'.546?62�







�



�



��









�	&.$�#,)/-'-$$.(	&&�C #Q,,P$� #Q,,Q#�5]F((F]55]F((F]iN;��


��


�






{



��
�*J��+o@>m+�� L+&%���,�(F]55]F((F]55]F(�aG����'.4;.#"38126?3267>76&'	./81	%.'�	�@�v	C6��s����^�����
�����		d�	n|�	�l�Mi���m�����)7����/KYg�54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>328181%54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281814&#"326=>54&4632.#"#"&=326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281818((8##8((8##�

@

<


	


	�8((8##8((8##�

@

<


		

	��8((8##8((8##�

@

<


	


	�a(88(aB''B�(88(�B''Bw

C�

��





�a(88(aB''B�(88(�B''Bw

C�

��





��(88(�B''Ba(88(aB''B�

�=��

C�





����1F��3V	.7>7>7>7>7>7>76&.'>7.'.".'>3267>74&'.'&".'.#"7>7"'.'.'.#"267>73267>5.'.'>7>76&'.'&'.'.7467>7#.'>7>7:620"1"'.717>7>71>?4676211&'&47467>7� 	&%^36m.'6
@ 	&%^36m.'6��(PPP("���"(PPP("���"�	



	!
			�
	�




u



m@		#>%<E.(X2#��		#>%<E.(X2#��(PPP(n}j}n(PPP(n}j}n�	
			


	 					
A�



�


@����+Ig{���"32>54.#".=32>75101#".5049532>75101#".5049532>7".54>324632#"&54632#"&54632#"&Q��OO��QQ��OO��/<i�PP�i<Qfu;;ufQ<i�PP�i<Qfu;;ufQ<i�PP�i<Wen77neW��P�i<<i�PP�i<<i��











�3N6��6N33N6`6N3��4''4x'

'H4''4x'

'H4''4n##'44''44'� 


�


�


	���GS_c.#*.#"3267>7>53:7%.#"3267>7>534&'&'&676%&'&6765%�	��>#(.F`>(.F>#(.F
_>).F�
9h;:9h;%:g;:9h;1�� �`$��:&>1:;&"^�|:&>1:;&"�	�Y +*W!**WM +*W!**W�```���DR`t��"'#!"32;26=4&=405>7063>78181>7332>54.#46732+.%46;#"&#4&'313#1"&546;267.#"&'32654&+>32 1N(tB��6JJ6&%�& =i&M17T88T7�[&&[��&��&@�	`'&&-U%%U-y0NQ6JJ6QN0!:,,:�?4O_]CC]&��%% 
�\J4>M�SS�M�@08((80(8228�( !�
�8((8"'Q))Q'"��}c]CC]c}<i�PP�i<�!1M[g4&'%.#"32>57>#"&53267%%"#*'%.5467%623:4632#"&52#"&546* �_�` ** V&U�``�U&V *���
���`��



 &&%%�"4``4""4�� :,,: 4��EE>>```�

��

@f&&f���/Gbnz������.#"3021267>7326?>54&'"#"&'.7>?"/7.'.'%'&4?622654&#"72#"&546"32654&"&5463232654&#"72#"&5464632#"&4632#"&�.�M�!
%	�
-���h
�2eed2�K.
9.H�B)7-
���!//!!//!�!//!!//!�<&&&&@


M







I.	�
%-�m
�
-���P	.6���-9s
H'm6
-�
�/!!//!!/� /!!//!!/��`&&&&



�


�



���-2HVdu���#.'7>'..#"#"3!26=7>54&+7%2.#"#>.#"#>32'"#>32#.'"#>32.##!"&='463!2405&67>'8140181&45463201#"&'81"0%04#&67>'8181041&45463281#"&'1041'&05&67>'81401814&5463201#"&'818�V�	�ASa5As\?V!/p/!`!/p/���0YK<5DP,3]J4!9Sh�O11O#b?;_�%
';##;'
%Lv!/AP-N}nE@	��	�	`	�?


		
�
	

	
�

	
		 LJ.K6,Mj=/!	}!//!}	!/�2E)%>-"<R07]E'�*66*8HA3##�[E)G3UB;K��0		0�		y:-	;.	:.
;.	�:-	;.	��+2C'.#!"32673!2653267>?6&%#"&''!'7332673�	��	�@&@&@��
A**A
�`��`@��
U88U
����
&��w&&��&[$$��@�@��)77)����T�$J�14.10.132>76.'#".5467>'10>7067'#"&#.7>''.''.'#"&546?>?>?�A(/'/VS>$%.SvIk�P''E0V_�<_B#%3 '&

e0"
H
G@	
 		"1	@=�@^<hM-wGS�Y/����`8iQ1%=Q-=���<�=r(@R)An8G�`4p]=*<@<O^0`O-[ZV(�"7z.#\,86$).J %bW		qo.1,"Q3#L7.A : A!�,D"'&47>4&'."2764'&""'&4762"&'.467>2�****��

		[!  !!SVR!�2///�/�P��		

_/�///�-!RVS! !! �+jnj+,+jnj+��		

Z!RVS!!  !�7/�///�P��

		_///�/�2 !! !SVS �****
���(,048<JN\j'.'54&#!"313!26526=4&!5#73;#73#73#%546?>;#"&#3#4&+"#!7+'32�`&��%`	
8(&�&(8
������F!I��I@�jF����`
[�;
@���
�
��`
;�[
`Z��&&��
 (8�`&&�8( 3���`������  
���
@��@

���`
��
���+VZ^bfjnrvz#54&#"#54&#"#54&#"#"3!2654&##!"&546;326=3326=3326=323#3#3#73#3#3#3#3#3#��

�

�

�#22#V#22#
��

�

�

�

�
� ����������������`@

@@

@@

@2#�
#22#�#2��

�
@

@@

@@

@
�`@`@`````�```����(AEIPi�4632#"&%81=4&#!"3!26=81>4&!2.#154&#!".5463!5!!5!"&'5#!"&53!2!"3!7!"&5463!267>7461%%%%�8(�pIggI@Ig000���

�`
B.p�`��`���
�B.��.B9 �
��B^^B )��(88( 	@%%%%��`(8gI��IggI0$flfd
��

~(.B` @  @ ��.BB.�
@^BB^@8((87%B%����(5BNZr�����&>76..7>'&676&'.7>'7&676&.7>71"01&'&67>71>0#&'&67>7>'0"1&'&67#>7>1'.73>7816''.7>706161'.7>76016�b˵�'(M�cb˵�'(M��9V~C"#~��VV}D""��V�0

1
	$

SI�?JJ�?�2)b11*a�G-(?nkD>c
6Z83Q��(?H-
2>dlC3QY8
�(M�cb˵�'(M�cb˵���"��VV~C"#~��VV}D"�
1
	0
Y

�?JJ�?IJ���a12)b11*,1H?+Ik
bD=Y
P8E
?+1GucCIkOQ7
=Y
 `DT`l�.+";26=4&'#537'.+54&#!"31;326733267326=4&"&5463!2#"&54632!"&546327+.#"#.#"#"&=!26=32 

�
� `��*�8(� (88(8(%
D--D
�D--D
%(8�h

�

�&&%%�%%&&�
%
D--D
�
D--D
%
�(8��R
�

0	B��%�@(88(��(8`(8)77))77)8(�I
`

��
��&&&&&&&&�
)77))77)
`8(��	����(2;ENV_it~�����"32>54.#.'>7.'>70"#502.'.'>7:.'>7#>.'3.'>75*17>7'.'53'5>7##>3.'.'>73�g��NN��gg��NN��H� <19�B(BC"$-I#H&6Bu.7=|&H#I-�7.uB%=%O)��&I"�7;k+36 W"CB(�3+k; 6"I&��)O%���< �9<�8-!�8�!-�N��gg��NN��gg��N� 5e/
$7���!U2
�^&c;
�<-!4[*�
;c&�!-<%[\
�2`��1n:�f
2&
+M �
2U!�
&2
 M+)�:n1��
,`2$
/e5N��=s4BIQ*��4s=*QIB���� $(,04!2#!"&546"3!2654&#!3#735!5%35!5��%&�`%&

�

�` ``  ������%��%%�% 
��

�
@`@  �  �  ��  ����#!2#!"&54635!3535!5!5��%&�`%&:��`@ ����%��%%�%`  ``   �  @  ��`-148<ENRVZ!#37#7?4&#!"!732#!"&57546;3'375!'9>5!7%9!5!5!5���HH6lG$h
� 
fR��mm�%`&�`%`%��>>|�0�p00�������4�����`��`�@?? ]

��Z�``%lT�@%%�Tl%66�U++U*+���������`W  `  `  ��`+.26:'463!2!37!'''7/53!265''!5!5!5ii
�
k��&9�9�7F�����Fz`%�&`zImmc��`��`�`Z

��Z 11<����<g�T�@%%�T�g�``�  `  `  ����!$	#!"&54677"3!2654&#	!�ff
�`
&%�&%��������7��

�)%��%%�%������7%"3!2654&#����&%�&%b����`%��%%�%��`		3!265#!"&5	��``����
�
 &�`%��6���0��D�\

��\%%�`����`	'%%#!"&5	�..����&�`%�������C�@%%�`����`(,/37@I#37#74&#!"732#!"&57546;3'375!'9>5!7%96l�
� 
�Hwmm�%`&�`%`%��>>|�0�p00�������4���

���``%lT�@%%�Tl%66�U++U*+���������`��`)'''7/53!265'7"374&#!�F�����Fz`%�&`z��mm��
Ȏ�
� <<����<g�T�@%%�T�g�`` 
����
����	),.5467!'7!77"3!2654&#	!����������VV�Z&%�&%����������������KK%��%%�%������
'''7'7%"3!2654&#>�TT�����@&%�&%�HH������%��%%�%��`
%	3!2653!	#'%9!9.5�p%�&���@`�����4�`���@%%������)��`�����`
	3!2651'''7'7%�p%�&b�TT����`���@%%��^�HH������@���	 +.1594&'17''!7!"&5463!2!17'	!!'3535@��G0��VV��-@�%&�%��`�*��f@����0�   ��xxQCKK�Ll%�%%���7��������``�  @��� $('7'%77!"&5463!2'7!73535�q�������TTzK�-%&�%P__�`�   a������HHi%�%%����a���``�  @���4?BPW54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31/77@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<K4d{��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T8L4d|@���(5<'7'%77!"&5463!2.#"92654&#"3/77�D�������TTN		�%&�%5[�IggIIggIK4d{�;������HHC+)%�%%�2)��gIIggIIgXL4d|@���)@KN\'7'7754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"310DDDDDDD4�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<DDDDDDD
��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A'7'77/7'%77!"&5463!2.#"92654&#"30DDDDDDD�D�������TTN		�%&�%5[�IggIIggIDDDDDDD�;������HHC+)%�%%�2)��gIIggIIg@���	#1HSV32654&'.#"54&'1>3:9''!.54679!"&5463!2#"&'17'	!��-<T%-<T��^N/�gVV����%&�%7IgI3T����f@����T<.*T<.	��Q$-mYKK�!�%�%%�^<Ig5+������@���	<#"&'.#"/7'%77!"&5463!2.#"9�gI :�: Ig%D�������TTN		�%&�%5[�: IggI :�;������HHC+)%�%%�2)@���)@KN\533##5#5754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31  `` `��^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<@`` `` ���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A#53533##/7'%77!"&5463!2.#"92654&#"3 `` `` �D�������TTN		�%&�%5[�IggIIggI  `` `�;������HHC+)%�%%�2)��gIIggIIg@���4?BPT54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31'35@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<p���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T�  @���(59'7'%77!"&5463!2.#"91"&54632'35�D�������TTN		�%&�%5[�IggIIgg���;������HHC+)%�%%�2)��gIIggIIg�   @!506610'&#&106610'9�yy��yOs �cn�e_v�kp�6666��44#�0+!��.+ / @3>610'&1 sOy��yy�p���#44`5566 `5!!#!'7���   ��������  �� `3!'7! ర���pర  �`5
#% ��`  P����2��  �`3-  ��@���� �`
5!!#!��   ������  �� � �`3!!� ���p�`@@�@
32'46"74&+��(8��8(%��%�@8(�`���(8 &����S%@@�@
"74&#�(8��8(@8(�`���(8@ @ 5C533##5#59>54&'54&+"7#'46;2979"&54632` `` `�C]]C8(�(8�� ��%�%C]]C<TT<<TT `` `` �dEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T@ @)6533##5#5'46;2&"#"3:71'2654&#"3` `` `���8(�(8+L8!!8L+IggIIggI `` `` �����(88(!8L++L8!gIIggIIg@ @)7;9>54&'54&+"7#'46;2979"&54632'35�C]]C8(�(8�� ��%�%C]]C<TT<<TT��adEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T�  @ @*.'46;2&"#"3:71'1"&54632'35���8(�(8+L8!!8L+IggIIgg��A�����(88(!8L++L8!gIIggIIg�  `���1CTX.10>32.#"1032>10&'10#"&'7#"&'7267>57'.#"7467>3%SP1f�l:,`�^.JK�:l�f1PSKJ.^�`,�K5$`5K$��  #2kFTF<H<[*6FTFk2*[<H<�5K$`K5$���  `���,4;?.10>32.#"32>10&'#"&'7#7'"	SP1f�l:V5K��:l�f1PS�K5}$``$`��  #2kFTFVK5�6FTFk2�5K}$``$ ��  `���+9GU9210#".10>"1032>10.#19"&54632'2654&#"3152654&#"31l�f11f�ll�f11f�l`�^..^�``�^..^�`5KK55KK5(88((88(



�FTFFTFFTFFTF <H<<H<<H<<H<��K55KK55K 8((88((8@



`���!.;1210#".10>2654&#"351"&54632'2654&#"3l�f11f�ll�f11f�l5KK55KK5(88((88(



�FTFFTFFTFFTF��K55KK55K 8((88((8@



@ �`	%%!!%7'33' � ������ � �g��jj��g��@�@���������@ �`	%%!!���@��@���@�@�����`�`,BP^###5.54>32#"&'1'353537.'9%4.#"32>51'9#"&546324&#"32651Q�``�Q	+Jc88cJ++Jc80���``p�$9�&AW22WA&&AW22WA&@8((88((8 %%%%Q�``�Q08cJ++Jc88cJ+	��p``�9$�2WA&&AW22WA&&AW2P(88((88(%%%%`�`+###5.54>32#"&'14&#"3265Q�``�Q	+Jc88cJ++Jc808((88((8Q�``�Q08cJ++Jc88cJ+	O(88((88(s �` GUc	2?7'77'732654&#"'"'&47.54>32#"&'19"&54632'2654&#"31!�i



UO0O`?0?�7PppPPp�0P`P<9�
#=R..R=##=R.4Y@`�5KK55KK5(88((88(�i


UO0O`?0?�pPPppP7��0P`P<9�4.R=##=R..R=#
Y@`@K55KK55K 8((88((8s �`&3'"'&47.54>32#"&'12654&#"3�0P`P<9�
#=R./Q=##=Q/4Y@`�5KK55KK50P`P<9�4.R=##=R..R=#
Y@`@K55KK55K `$(,0;3!53546;2!#!"&53!265!33333'"354&+����%�%�` 8(��(8 %`%� ` ` ` �
�
�   %% @��(88(` ��%%@@����
  
 `!%03!53546;2!#!"&533333'"354&+����%�%�` 8(��(8� ` ` �
�
�   %% @��(88(``����
  
�``$(,0;3##!"&5#53546;233!265!33333'"354&+�@8(��(8@�%�%@�@%`%� ` ` ` �
�
�� ��(88(` @%&@ ��%&`@�� �� �� �
@@
�``!%03##!"&5#53546;2333333'"354&+�@8(��(8@�%�%@�� ` ` �
�
�� ��(88(` @%&@`�� �� �� �
@@
��@�	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�P?oR00Ro??oR00Ro?8cJ++Jc88cJ++Jc8 � �  �0Ro??oR00Ro??oR0 +Jc88cJ++Jc88cJ+`��@�+%1".54>32'5#3#35'2654&#"3?oR00Ro??oR00Ro/`@@�P�0Ro??oR00Ro??oR0�� �  �� �@	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�PS�l??l�SS�l??l�SL�d::d�LL�d::d�L� �  �?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�� �@+%1".54>32'5#3#352654&#"3S�l??l�SS�l??l�C`@@�P ?l�SS�l??l�SS�l?�� �   � @@"0#!!"&5463!#";#"&';"3!0&5461 �� ��(8/!0�0
% 0����`��8(p!/ ��`��%�� @@%%"&5463!#";!!0&5461!";# (8/!0� �� 0  8(p!/ �`��`� @@%38%#"&546;5!"3!37#"&5;'!01!"&5463'@��!/8(�@�``�� %
00�� �@@ � /!��(8���`��```��%0����@@� @@).#!#"&546;5!";#"&5463!01#'7����!/8( 0�P`` @@��`� /!��(8���``���@@3`����?]x�'?64/&"7'%#!"&546;46;46;232132762'54&+#!"&5#"3!2657%#"3!26=4&+54&+"32654&#"31NS��Si7		&		7S�ePC%� %% & 8( (8 & %s4&� 
 &��& 

�
�� @��@

 

@% &P				S��Si7

%

7S��cOt��%&�%%(88(%&`s&5��
%%
�`

 � �@�
 

 
 %& 				`����=Xe	''762754&+81#!"&=81#"3!2657>/&"%546;232#!"&=46;32654&#"3N��SijS7		&		7�PeC% &��% %%�%�&4s��& %@

��

@P				��Si<S7

%

7��Oct`& %& %�`&%@�5&s� &% 
 

 
				���`�5Vq~�%533##5#5!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3� `` `��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<�`` `` �&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T���`�5P]j%#53533##4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"32654&#"3�`` `` `% &��% %%!!8L+)��& %@

��

@P				�IggIIggI` `` `0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg���`�)Jer�%!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3'35(��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<p�&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T�  ���`�)DQ^b4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"31"&54632'35% &��% %%!!8L+)��& %@

��

@P				�IggIIgg��0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg�  ��� �=Xe546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �=J546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�& %@

��

@  %%� %% % &�				  &% 
 

 
 &�`%&�% &%  				��� �#Fan%'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				�h��hb &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �#FS%'7'#546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�h��h @& %@

��

@  %%� %% % &�				�h��hb &% 
 

 
 &�`%&�% &%  				��� �#Fan'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				@h��h��  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �&I546;232#!"&=46332654&#"3##!"&=#";'7'32654&�& %@

��

�				� &��% %%�h��h�%%  &% 
 

 
				  && %�`&`h��h��%�&��� �=Xel546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"37''�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				(��x�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				����x���� �=JQ546;232#!"&=46;32#!"&546;813!26=89'2654&#"37''�& %@

��

@  %%� %% % &�				(��x�  &% 
 

 
 &�`%&�% &%  				����x�	��� �=Xeimquy546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5!5!5!5!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				���`��`��`��`�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�  `  `  `  `  ��� �=JNRVZ^546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5!5!5!5!5�& %@

��

@  %%� %% % &�				���`��`��`��`�  &% 
 

 
 &�`%&�% &%  				�  `  `  `  `  
��� �=Xeimquy}���546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5%3#7353#7353!53#7353!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				0�```  @``  `�```  `  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��   `@  �`@    �`@    ��� �=JNRVZ^bfjn546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5%353535353!535353!5�& %@

��

@  %%� %% % &�				0�``@ @`@ `�``@ `  &% 
 

 
 &�`%&�% &%  				��   ``   �``     �``     �@� &-3!546;%!54&#!"!"&5463!2#?#"�
�%��`�
��
�0%&`&��v
`� 
�%  `

`��&`&%�@�0�
��@� 3!546;%5463!2!546;�%�&�� &`&�  
�`� &�%  `&%`���
�� 4?M%#53533##'!"&5!.#"74&#!"3!32654&'15463!2!9"&54632 `` `` ��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT� `` ` 
�gI(��&&��&#gI3T3`

`��T<<TT<<T��  +8%#53533###!"&5!.#"95463!2!2654&#"3 `` `` ��_&�)+L8!�&`&� �IggIIggI� `` `&��!8L+9@`&&`��gIIggIIg�� (3AE%!"&5!.#"74&#!"3!32654&'15463!2!9"&54632'35��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT��`
�gI(��&&��&#gI3T3`

`��T<<TT<<T�  �� ,0%!"&5!.#"95463!2!1"&54632'35��_&�)+L8!�&`&� �IggIIgg��@&��!8L+9@`&&`��gIIggIIg�  �@� &-159=3!546;%!54&#!"!"&5463!2#?#"!5!5!5!5�
�%��`�
��
�0%&`&��v
�@ �� ��`��``� 
�%  `

`��&`&%�@�0�
��  `  `  `  �@�  $(,!#"!"&55463!2!546;%!5!5!5!5��&�@%&`&�  
��� �� ��`��``��%�&`&%`���
�  `  `  `  
�@� &-159=AEIMQ%!"&5463!2#3!546;%!54&#!"7#"35%3#7357!5%3#73535%3#735��0%&`&��
�%��`�
��
�v
���``  `���``  `���``  @&`&%�@� � 
�%  `

`��
�   `@  �   `@  �   `@  �@�  $(,048<@!#"!"&55463!2!546;%35%35357!5%353535%3535��&�@%&`&�  
�� �`@ `���`@ `���`@ `��%�&`&%`���
`   ``   �   ``   �   ``   �@� &-43!546;%!54&#!"!"&5463!2#?#"'7''�
�%��`�
��
�0%&`&��v
���w�`� 
�%  `

`��&`&%�@�0�
�}��w��@� #!#"!"&55463!2!546;7''��&�@%&`&�  
��K��w�`��%�&`&%`���
3��w��@� &-159=3!546;%!54&#!"!"&5463!2#?#"3#7353#735�
�%��`�
��
�0%&`&��v
�``  @``  `� 
�%  `

`��&`&%�@�0�
�����`@  �@�  $!#"!"&55463!2!546;%3535��&�@%&`&�  
���   `��%�&`&%`���
���  �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!5!5�        %�%%� %         
�

� 
        ``�� ` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `  �  	�@`@DH3#53#3#3#3#53#%!"3#3#3#3#3#3#3!2654&#!5!7!5!�@@@@@@@@@@@@`� %@@@@@@@@@@@@%�%%`��  ��`� � � `   � �&  ` ` ` ` `  &&�&�� ` �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!!735�        %�%%� %         
�

� 
        � �� �` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `��``	�@`DH3#3#53#3#53#53#3#!"3#3#3#3#3#3#3!2654&#!5!�@@@@@@@@@@@@��`� %@@@@@@@@@@@@%�%%`�� � � �   � � @` &  ` ` ` ` `  &&�&����@`-V[32#!"&=35#535#535#535#535#535#546;7#3#33!2654&#!"#3#3#3#33'�@

� 
            
�``�     %�%%� %        @�@@@
� 

  ` ` ` ` `  
��``�� ` `  &&�&&  ` ` ` ��@@�@`!%)-159=AEJ32#!"&546;73535353535353535353535357�@%%� %%�``��@@@@@@@@@@@@@@@@@@@@@@@@`&� &&�&�```��  �    �  �      �    �  �    �@@S�  ` A5332#!"&546;533533533##5##5##5#"3!2654&+#5�  %%� %%  ` ` `` ` `  

�

  @  &�`%&�%             
�`

�
  �  �33#73#73#%3#!0"##5##5##5##5*1"3!2654&�  �  �  ��  � ` ` ` %%�%%�@@@@@@@@@@@@@@@%�`&%�&�  ` AEIMQUY5332#!"&546;533533533##5##5##5#"3!2654&+#5!5!5!5!5!5!5�  %%� %%  ` ` `` ` `  

�

  ����`��`��`��`��`�@  &�`%&�%             
�`

�
  �  `  `  `  `  `  �  �#'+/37;?CGK0"##5##5##5##5*1"3!2654&!5!5!5!5!5!5!5!5!5!5!5!%3#73#73#73#� ` ` ` %%�%%;�`��`��`��`��`��`��`  �  �  �  @@@@@@@@@%�`&%�&�` @ @ @ @ @ �@@@@@@@�  ` AEIMQUY]ae5332#!"&546;533533533##5##5##5#"3!2654&+#5!5%3#7353#7353!53#7353!5�  %%� %%  ` ` `` ` `  

�

  ��```  @``  `�```  `@  &�`%&�%             
�`

�
  �   `@  �`@    �`@    �  �?CGKOSW3#73#73#73#3#53#53#0"##5##5##5##5*1"3!2654&#535#535#53!5!5!5!5!5!   �  �  �  ��      � ` ` ` %%�%%��``````@����@@@@@@@�� � �  @@@@@@@@%�`&%�&��`@`@`�� � � �@`")3#!"&5463!!"3!265#"&=;'p�%� %&P��

�
�% 
v�`�%&�& 
� 

 %��
��@`!"3!265#"&=3;`��&%�%�& 
�`&� &% %��

�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`��`��`��`�`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@` $(,04;#!"&5463!3;!35'35!5!5!5!5!5`&�%� %&@ 
��������`��`��`��`�`�%��%&�&�
  `  �  `  `  `  `  
�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`@����` ���`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@`"&*.4;#!"&5463!35'35!5!5!5!5!5;`&�%� %&@�ࠠ����`@����` ���`
�`�%��%&�&�  `  �  `  `  `  `  ��
�@`+2%'7'#3#!"&5463!!"3!265#"&=;'h��h p�%� %&P��

�
�% 
v��h��hb`�%&�& 
� 

 %��
��@`!%37'7!"3!265#"&=3; h����&%�%�& 
��b��h��Z&� &% %��
�@`+2%#"&5463!;+7'7!"3!265'##"&=�

@%�
�h��hp��&%�%��v
 
�
�%��
@h��h��@&� &%@�0�
��@`!%#"&5463!;+7'7;�%&@&�%�h��h�
�&�&�%��%`h��h��`�
�@`'.33;#!"&546;77!"3!265'##"&=%3'`%�
� 

 ``p��&%�%��v
��@@@�%��

�
��``` &� &%@�0�
���@@�@`"3;#!"&546;7#73;`&�%� %& ``�@@�
�`�%��%&�&��``���@@3�
�@`*159=5##!3#!"&5463!!"3!265#"&=;'3#3#73#`���p�%� %&P��

�
�% 
v���``�``�``�`����%&�& 
� 

 %��
��� ���@` $;#!"&5463!3;357335`&�%� %&@ 
�� ` ` ``�%��%&�&�
������� `���@`")CRb3#!"&5463!!"3!265#"&=;'53326=33#535.5714632#"&57"326=4&#1p�%� %&P��

�
�% 
v�� /!!/ 7)@�@)7@0	
	
`�%&�& 
� 

 %��
��00!//!00*?A  A?*���	�		�	�@`,2AQ!"3!265#"&=53326=33#535.5;14632#"&57"326=4&#1`��&%�%�&� /!!/ 7)@�@)7�
���0	
	
`&� &% %���00!//!00*?A  A?*0�
���	�		�	�@`/BIM#5;##5353#5;#'#5;#3#!"&5463!!"3!265#"&=;'!���� �� ������ ����P�%� %&P��

�
�% 
v���` @@@`@@@@@@@�@@@��%&�& 
� 

 %��
���@��@`28<#373##5335#'#373#'#373#;#!"&5463!3;!�� �� �� �� �� �� �� ��@&�%� %&@ 
�� ` @@@`@@@�@@@�@@@��%��%&�&�
`�@��@`-@GTa.#"3265.#"326=3#!"&5463!!"3!265#"&=;'1"&5463271"&54632�
!//!!/��
!//!!/��%� %&P��

�
�% 
v�����/!!//!0@�/!!//!���%&�& 
� 

 %��
��P �@`06CP#"&546325%#"&54632!"3!265#"&=3;2654&#"3%2654&#"3��/!!//!
 /!!//!
`��&%�%�& 
��P�2�!//!!/�@��!//!!/P&� &% %��
� �@`")-159=AEIMQUY]3#!"&5463!!"3!265#"&=;'!!3535%35353535353535353535p�%� %&P��

�
�% 
v�����``����                   `�%&�& 
� 

 %��
�����@������  @  @  @  @    @  @  @  @  �@` $(,048<@DHL;#!"&5463!3;!3535%35353535353535353535`&�%� %&@ 
���������                   `�%��%&�&�
���` ������  @  @  @  @    @  @  @  @  �@`"),03#!"&5463!!"3!265#"&=;'
77'p�%� %&P��

�
�% 
v�� �� ��`�%&�& 
� 

 %��
��p���]]�@`;#!"&5463!3;%%7'`&�%� %&@ 
��@ ���`�%��%&�&�
��]�]]�@`#6=!!377#53#5'3#!"&5463!!"3!265#"&=;'�_@�� ]Fg*` {F��%� %&P��

�
�% 
v�e �dBn `)�AZ�%&�& 
� 

 %��
��@`,!"3!265#"&=3;!!377#53#5'`��&%�%�& 
���_@�� ]Fg*` {F`&� &% %��
��e �dBn `)�A�@`29F#5#"&54673#!"&5463!!"3!265#"&=;'2654&#"3�2HQ8<TJ6p�%� %&P��

�
�% 
v�pIggIIggI HR6JT<8Q�`�%&�& 
� 

 %��
��0gIIggIIg�@`"(#5#"&5467!"3!265#"&=3;��?[dEIg]C`��&%�%�& 
� �[_C]gIEd�`&� &% %��
	�@`")59=AEI3#!"&5463!!"3!265#"&=;'35335335!5%!5!5!5!5p�%� %&P��

�
�% 
v���     ���`��`��`��`�`�%&�& 
� 

 %��
�0@ �� @��  `  �  `  `  �@`$(,048;#!"&5463!353353357;!5%!5!5!5!5`&�%� %&@��     �
����`��`��`��`�`�%��%&�&`@ �� @`�
�  `  �  `  `  �@`")-393#!"&5463!!"3!265#"&=;'3'77'p�%� %&P��

�
�% 
v�`@ @�``II�``II`�%&�& 
� 

 %��
��P��``JJ``JJ�@`$(;#!"&5463!3;7'7'7''3`&�%� %&@ 
��`ii�`��iiJ@ @`�%��%&�&�
�jj����jj���`Adk#"3!2654&+.#".#"179:32+#!"&5463!'5#"&=!"3!26=#"&5467>329;'&&@&&,
7#.B�"7
 *8(`%� %&`� �%��

�
�(8$S9)�
v� %%%%%&B.k%4"(8@%&�&��%�
� 

@8(2
8M
��
���`<B:321#!"&5467>321#!"&5463!;.#";;�"7
 *8(��(8$S9&?%� %&@&�9 Aa%K5�
��%4"(88(2
8M#�� %&�&�%�R=<$5K�
�����"7J]d18181463463!###!"&54631"3!265!"&5897"3!2651!"&51%!"3!265#"&=;'�&&`�%%%� %%

�
�@%@

�
�@%���

�
�% 
v� %%�%%%&�& 
� 

&�@
� 

&�@
� 

 %��
������0BH463!;###!"&54634631"3!265!"&53!265!"&5"1%; &@&�%&&� %%%@

�
�@% 
�
�@%
�
�`%�%��%%%&�&&���
� 

&� 

&�
��
�����+2EL3265#"&=!"3%5463!+#!"&546;%;'!"3!265#"&=;'�
�%��
���`&`�%�%� %&��
v��

�
�% 
v�0�P
 %�
`��`&�%`%&�&p�
��
� 

 %��
������&,2%3265#"&=!"3##"&=!"3!26=;%;�%�&��&�� �&��&%�%
���
�`% %�&@��%�&� &%``�
@�
�@`!4;H%#"&546323#!"&5463!!"3!265#"&=;'2654&#"3*-<TT<<T�e�%� %&P��

�
�% 
v��.BB..BB.�T<<TT<.��%&�& 
� 

 %��
���B..BB..B�@`$*7%#"&54632!"3!265#"&=3;2654&#"3*-<TT<<T�u��&%�%�& 
���.BB..BB.�T<<TT<.�&� &% %��
��B..BB..B�@`")33#!"&5463!!"3!265#"&=;'7'373p�%� %&P��

�
�% 
v�p�0��00��0`�%&�& 
� 

 %��
���`�`��`��@`"!"3!265#"&=3;7'373`��&%�%�& 
��Ѐ0��00��0`&� &% %��
�``�`��`����`�'BIZ'!"3!;26=4&+54632354&'9!"&5463!;"&#""#"&=32+"&=463���&%`
�

�/!!/ $���

@%�.B
�v
0�
	�
	u+�&� & 

�
P!//!!7
��
�
�%��B.P
`�
��P	�		�	���`� C#"&=!"3!5467546325';'32+"&=46354632#54&#"3�&��&%@T<
�
���

�

B..B /!!/��%�&� &�	8<T�@
�@
�

�
P/AB.!//!P���`�8AHY%;26=4&#154&''!"3!5!"&5463!;"&#"1"754632#"&=32+"&=463@
�

$���&%`��

@%�.B
@/!!/�v
0�
	�
	  

�
0!7
K�&� & 
�
�%��B.0
`�0!//!0��
��P	�		�	���`� 8A#"&=!"3!546754632';'";26=4&#54&#"34632#�&��&%@T<
�
�� 

�

B..B /!!/��%�&� &�;U@
�p0
�

�
0.BB.!//!0���`� '*.2%'!"3!!'!"&5463!;'#"&=!73535���&%&�`����

@%�P�G�v
P��Ј   ��&� &@�B
�
�%�9���
�����``�  ���`�"%#"&5463!;';!73535��%&@&�pЀ
�p�`�    &�&�%�B���`�
�����``�  ���`�"=DQ%'7'77932654&''!"3!'!"&5463!;.#"9#"&=1"&54632�DDDDDDD�G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTyDDDDDDD#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%'7'77!"&5463!;.#"9;2654&#"3�DDDDDDD��%&@&�)+L8!?
�PIggIIggIyDDDDDDD&�&�%��!8L+9`�
�@gIIggIIg���`�18EL%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632/77(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTLK4d{ #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T8L4d|���`�"/6%!"&5463!;.#"9;2654&#"3/77��%&@&�)+L8!?
�PIggIIggIK4d{ &�&�%��!8L+9`�
�@gIIggIIgXL4d|���`�"=DQ%533##5#5932654&''!"3!'!"&5463!;.#"9#"&=1"&54632� `` `G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�`` `` �#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%533##5#5!"&5463!;.#"9;2654&#"3� `` `?��%&@&�)+L8!?
�PIggIIggI�`` `` �&�&�%��!8L+9`�
�@gIIggIIg���`�18EI%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�� #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�  ���`�"/3%!"&5463!;.#"9;1"&54632'35��%&@&�)+L8!?
�PIggIIgg�� &�&�%��!8L+9`�
�@gIIggIIg�  ���`�	*EL%#"&'7.54632932654&''!"3!'!"&5463!;.#"9#"&=!T<.��T<.�G)Ig5+���&%H��

@%�Ig
	-�v
�-<T��-<T�#gI3Ts�&� & 
�
�%��gI(�
����`�
28%#"&'7'.#"7!"&5463!;.#"9;9gI 8�:!Ig����%&@&�)+L8!?
��8 Ig�gI!:��&�&�%��!8L+9`�
���`�18EOS%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'3#35#5'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTl  `    #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�    @@  ���`�"/9=%!"&5463!;.#"9;1"&54632'3#35#5'35��%&@&�)+L8!?
�PIggIIggy  `    &�&�%��!8L+9`�
�@gIIggIIg�    @@  @@*7DHR%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'353#35#5�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT< @  ` �(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�  @    @@@ -7;%!"&5463!!2.#"9!51"&54632'3#35#5'35���&&`@�&)+L8!�_�PIggIIggy  `   �%@%�%�!8L+9�  �gIIggIIg�    @@  �@`")-159=AEIM3#!"&5463!!"3!265#"&=;'!5%3#7353#7353!53#7353!5p�%� %&P��

�
�% 
v���```  @``  `�```  ``�%&�& 
� 

 %��
���   `@  �`@    �`@    �@` $(,048<;#!"&5463!3;!5%353535353!535353!5`&�%� %&@ 
����``@ @`@ `�``@ ``�%��%&�&�
�   ``   �``     �``     �@`-@GT%#"&5463253#'##3#'/33#!"&5463!!"3!265#"&=;'2654&#"3�
!//!
  �\" ` ` """D��%� %&P��

�
�% 
v��/!!/�``�` ```�%&�& 
� 

 %��
��p�@`06C%#"&5463253#'##3#'/3!"3!265#"&=3;2654&#"3�
!//!
  �\" ` ` """D���&%�%�& 
���/!!/�``�` ```&� &% %��
� ����#3'!3;26=+"&=#!5%5!!�ٌ�F��%�% /!�!/��������@%&@ 0!//!0���������;26=3'!3!!!�%�%ٌ�F������@&%@�����` �@#.<3'!3;26=+"&=#!5!!;26=!!+"&=#!5�ٌ�F��%�% /!�!/�� ����%�%��@/!�!/��@��@%&@ 0!//!0���� ��� %& 0!//!0��` �@#!!!!+"&=#7!#+"&=��� �� �%�%ٌ���%�%@�� �0!//!0 ��@%&@`@�@$147>35#"&=!"3;26=+"&=#!5%57463!!5!3';'���%��
�%�% /!�!/��`&`�`��`9�99�
v�`�%�
�`@%&@ 0!//!0���&�f��� [[[U�
�`@�@#&)0+"&=#463!;#5'5'!"!#7#5#"&=�%�%�
@%��`���&` �@99�9��v
`@&%@�
�%�00�f�&����� [[[U�
�
`@�@
!-4?CGK3!53;265%!'5'!"7#75!463!;#"&=!+"&='!53535��� �/!�!/�� `���&``99`9��
@%���v
� �@��`���@��0!//!@�� �f�&���[[[[�
�%���
��000�    �  	`@�@%)-1<5'5'!"!#7#5463!;#"&=!535355!+"&5�`���&` �@99�9��
@%���v
����`��� %�%00�f�&����� [[[[�
�%���
���    �  ��  %%``� !/'7'#3#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/�h��h`��@&%@� ���  ���0!//!``� !'7'#3'#53!3#3;26=�h��h �ٌ��������%�%�h��h`�`� ���  �@%%@``�`!/'7'#73#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/ h��h����@&%@� ���  ���0!//!``�`!'7'#3'#53!3#3;26=�h��h �ٌ��������%�% h��h��@� ���  �@%%@ `� $!2#!"&5463!'!"3!2654&#!�&%��&&`,?��

 

�l�%�@%%@%��
��

�
 `� '!"3!2654&#!@��&& %&����%��%%�% `� )5463!!2!#!"&5%'!"3!2654&#!@
M?�
��`
��
�@��&& %&�� �
�
@ ��

`��%��%%�% `� 5463!!23!265! &`@�&�`& %�` �%�%@ ��%%` `7J5463!!2!#!"&55463!!2#1512654&#!'!"#'!"3!2654&#! 
M?�
��`
��
@&`@�&%

�l?��
 �@��&& %&���
�
@ ��

`@ %�%�@% 
�
�
 ��%��%%�% `,5463!!23!265!5463!!2#14&#!'&`@�&�`& %�``&`@�&%8(��@�%�%@ ��%%`@ %�%�@%�(8� `� 2!#!"&5!'7'%5463!!2%'!"3!2654&#!�
��
�h��h�@
M?�
�`@��&& %&����

`��h��h" �
�
@��%��%%�% `� !#!"&5!'7'%5463!!2�%��&�h��h� &`@�&��%%`��h��h" �%�%@ `� 1%!"&5!#!7'7%5463!!2%'!"3!2654&#!�
`
��h��h�`
M?�
�`@��&& %&���
`��
 h��h��
�
@��%��%%�% `� %!"&5!#!7'75463!!2�&�%��h��h�@&`@�&`%`��% h��h����%�%@@@=IZ%!"&5!"&#""754&#!'!"3!;26=4&+54632354&'9%5463!!232+"&=463�`
`.B
�&��@��&&�
�

�/!!/ $��
M?�
p�
	�
	�
`AA/P
ի%�%��% 

�
P!//!"6
k�
�
@��	�		�	@@A5463!!23!5467546325!32+"&=46354632#54&#"3&`@�&�`%�T<
�`� 

�

B..B /!!/�@�%�%@ ��%�9<T(�
�

�
P/AB.!//!P@@3<IZ%546315463235!3!"&5463!!212+"&=7354&#"%!54&#!'!"";26=4&+�
B.��
��`&&`@�&$

�
@�/!!/�`
�l?��
�	
�	
��`
0.Ba��
 %@%�%�
7!0
�

 �0!//!�@
�
���	�		�	@@6?5463!!23!5467546325!";26=4&#54&#"34632#&`@�&�`%�T<
�`

�

B..B /!!/�@�%�%@ ��%�9<T(�P
�

�
P.BB.!//!P `� #6C#"&54632!2#!"&5463!'!"3!2654&#!2654&#"3
-<TT<<T���&%��&&`,?��

 

�l<.BB..BB.?T<<TT<.�%�@%%@%��
��

�
��B..BB..B `� $1#"&54632'!"3!2654&#!2654&#"3
-<TT<<T��@��&& %&��P.BB..BB.?T<<TT<.��%��%%�%��B..BB..B  (+/3%!3!"&5463!!2!7!54&#!'!"!'3535��P��
F��&&`@�&`�`&��`
�l?��
�0�   ����
 %@%�%�b�@�@
�
���``�    %!"&5!'%5463!!2!73535`��&�p��&`@�&p�`�   `%`��`�%�%@����``�    6CP%'7'77'1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3PDDDDDDD�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�DDDDDDD(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +7%!"&5!.#"15463!!22654&#"7'7'77���&�)+L8!�_&`@�&PIggIIggIDDDDDDD`%`p!8L+9��%�%@�gIIggIIg�DDDDDDD  *7DK%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3/77�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<K4d{�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T8L4d|  ,3%!"&5!.#"15463!!22654&#"3/77���&�)+L8!�_&`@�&PIggIIggIK4d{`%`p!8L+9��%�%@�gIIggIIgXL4d|  6CP%533##5#51.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3@ `` `-	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�`` `` `(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +8%#53533###!"&5!.#"15463!!22654&#"3@`` `` ���&�)+L8!�_&`@�&PIggIIggI� `` `%`p!8L+9��%�%@�gIIggIIg  *7DH%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'35�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<p�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�    ,0%!"&5!.#"15463!!21"&54632'35���&�)+L8!�_&`@�&PIggIIgg��`%`p!8L+9��%�%@�gIIggIIg�    	$>K32654&'.#"'1.546325!3!"&5463!!2#"&'1!54&#!'!"��-<T%-<T,	
gI��
��x&&`@�&+5gI)G�X`
�l?��
*�T<.*T<.
(Ig���
 %@%�%�T3Ig#�@
�
�  
)5#"&'7'.#"7!"&5!.#"15463!!2�gI 8�:!Ig����&�)+L8!�_&`@�&?8 Ig�gI!:��%`p!8L+9��%�%@@`� -33#!"&5!75463!!2%'!"3!2654&#!3'5�
��
�``�`
M?�
�`@��&& %&��@�@@��

`��``@�
�
@��%��%%�%��@@�@`� !3#!"&5!7%5463!!275#�%��&``�@&`@�&��@@���%%`��``  �%�%@ �@@��@`Udkx5#535#535#535#535#535#535#5#"3!265#"&=#3#3#3#3#3#3##"&54679#!"&5463!';'"32654&#�             `

�
�%�            $/!!/%�%� %&`��
v��~"             
� 

 %�            B,!//!,��%&�&ఐ
��0�@`Y_l5#535#535#535#535#535#535#535#"3!265#"&=##3#3#3#3#3#3##"&54679;"32654&#�              �&%�%�&�             $/!!/%�
��p~"              &� &% %�             B,!//!,�
���@`Rcp32654&'535#535#535#535#535#535#532#!"&546;3#3#3#3#3#3#3"3!2654&#!12#"&546%/!!/$            �(88(��(88(�             �5KK5`5KK5����,!//!,B            8(��(88(`(8             �K5��5KK5`5K��@`Wd5#535#535#535#535#535#535#535#"3!2654&+#3#3#3#3#3#3##"&54679"32654&#              �5KK5`5KK5�             $/!!/%~"              K5��5KK5`5K             B,!//!,�pP 1#".54>32"'%2>54.#"3n"P,8cJ++Jc88cJ++%���2WA&&AW22WA&&AW22+Jc88cJ++Jc88c%��&AW22WA&&AW22WA&��` 3#".54>321"/'2>54.#"3n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp +@533##5#5#".54>327"/72>54.#"3� �� �E$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2 �� �� � %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&��` *?533##5#5#".54>321"/'2>54.#"3� �� �."P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+ �� �� �+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp 48#".54>327"/72>54.#"3!5�$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2� E %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&  ��` 37#".54>321"/'2>54.#"3'!5n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+� 2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�  �@`+I_hy9.54632#"&5'326=>54&#"154>322#!"&54639;54632354.#"!54&#""3!2654&#!�	
 /!!/�&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T`%%�%%� S		@@@!!//!!p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�&��&&@&�@`2;1.54632#"&59"3!2654&#54.#"354632�	
�(88(�(88(&AW22WA&`T<<TS		P8(��(88(@(8p2WA&&AW2pp<TT<p ����+Vr�%9.54632#"&5'326=>54&#"1!2#!"&546354&#"#"&=4>32'4.#"3126=46323"3!2654&#!�	
 /!!/`�(88(� (88(T<<T&AW22WA& !8L++L8!
	gIIg @%%�%%� �S		@@@!!//!!8(��(88(@(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &��&&@& ����@%326=>54&#"14&#"#"&=4>32!2#!"&54635�
	�T<<T&AW22WA&�(88(� (88(�S		S�<TT<��2WA&&AW2�8(��(88(@(8����`�.Ndz�#"&=4&#"!2#!"&546354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'"3!2654&#!T<<T(88(� (88(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%%�%%� �`�<TT<�8(��(88(@(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&��&&@&���`�D%9.54632#"&554.#""3!2654&#!&4=4632326=	
&AW22WA&(88(�(88(��T<<T�S		  2WA&&AW2�8(��(88(@(8�<TT<t##T�``
9=AEIMcl7!54&#!"373!265!%5#54>322#!"&5463937#37#37#37#37#354632354.#"!54&#"�`%� %0H%�%��`0�(&AW22WA&(88(� (88(@0@0@0@0@0@0@0@0@0@�x gIIg !8L++L8!@ T<<T�&&� @@`%% @@�p2WA&&AW2p8(��(88(@(8��@@@@@@@@@@pIggIpp+L8!!8L+pp<TT<
�`` $9B%5##!"&5!%53373373373373373754&#54.#""54632`80h8(� (8��`h0 0@0 0@0 0@0 0@0 0@0�8(&AW22WA&(8�T<<T�@@ (88( @@@@@@@@@@@@`�(8p2WA&&AW2p8(� p<TT<p�``*Lbk�1.54632#"&5'326=>54&#"154>322+".=4639;54632354.#"!54&#"";2>=4&#!	
 /!!/�&AW22WA&(8(F]5�5]F(8(  gIIg !8L++L8!@ T<<T`%#=R.�/Q=#%� S		@@@!!//!!p2WA&&AW2p8(�5]F((F]5�(8pIggIpp+L8!!8L+pp<TT<�&�.R=##=R.�&�``6?1.54632#"&59";2>=4&#54.#"354632	
�(8(F]5�5]F(8(&AW22WA&`T<<TS		P8(�5]F((F]5�(8p2WA&&AW2pp<TT<p@���+Zv�%9.54632#"&5'326=>54&#"1!2+".=46354&#"#"&=4>32'4.#"3126=46323";2>=4&#!�	
 /!!/`�(8(F]5�5]F(8(T<<T&AW22WA& !8L++L8!
	gIIg @%#=R.�/Q=#%� �S		@@@!!//!!8(�5]F((F]5�(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &�.R=##=R.�&@���D%326=>54&#"14&#"#"&=4>32!2+".=4635�
	�T<<T&AW22WA&�(8(F]5�5]F(8(�S		S�<TT<��2WA&&AW2�8(�5]F((F]5�(8����`�2Rh~�#"&=4&#"!2+".=46354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'";2>=4&#!T<<T(8(F]5�5]F(8(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%#=R.�/Q=#%� �`�<TT<�8(�5]F((F]5�(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&�.R=##=R.�&���`�H%9.54632#"&554.#"";2>=4&#!&4=4632326=	
&AW22WA&(8(F]5�5]F(8(��T<<T�S		  2WA&&AW2�8(�5]F((F]5�(8�<TT<t##T�``<R[%5!5!5!5!5!5!4&#!"3!265!5!54>322#!"&54639;54632354.#"!54&#"@�� �� �� %� %%�%�� ��&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T�@ @ @ %&��&% �p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�``)2%!5!5!5!5!5!5!5!4&#54.#""3!26554632`��@��@��@��@8(&AW22WA&(88(�(8� T<<T` @ @ @ (8p2WA&&AW2p8(��(88(�p<TT<p �`#8CN[%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3 %� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



 �`
)65463!2!#"&5463!2+!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



`�%%��8( (88(��(8 �%%`



 ����#8CN[%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



 ����
)65463!2!#"&5463!2+5!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



��%%��8( (88(��(8� �%%�



@�`#8CN[_c%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3!5!5@%� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



�� �` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



�  `  @�`
)6:>5463!2!#"&5463!2+!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� �`�%%��8( (88(��(8 �%%`



�  `   ����#8CN[_c%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3!5!5 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�� �8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



�  `   ����
)6:>5463!2!#"&5463!2+5!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� ���%%��8( (88(��(8� �%%�



�  `  
��`&*.26:>BFJN!#53!53#'#5#"&=!"#463!';'3#3#35#3#3#3#35#3#3#3`�`  �    �%��
 &`��
v�� ` ` ` ` ` ` ` ` ` @@�@@���%�
�`�&ఐ
���� ���� ��� ��� ��� 
��`!%)-159=AE!#53!53#%463!;;3#3#35#3#3#3#35#3#3#3`�`  �  ��&@&��
�  ` ` ` ` ` ` ` ` ` @@�@@���&�%��
���� ���� ��� ��� ���   �`1<IMQUY]aeimq%326=4&+54&#!"#";5!%"&=463!2#5!!2!54632654&#"33335333353353353333533#35@ (88(@%� %@(88( ��@%&�&%� ��
��




��             `   � �8(�(8�%%�8(�(8`` %�%%�&``@
��
�`



�������������
  �`
+/37;?CGKOS5463!2!#"&=463!2+5!%2654&#"33335333353353353333533#35�%�%��  (88(�(88( �``



��             `   � `�%%���8(�(88(�(8``



�������������
� ��'+/37CW^%#53326=#+#53#53#53#"&=3;%5#!53%5#!53%53#5!#53%#5#"&=!"#463!';'�@@  % 
 �@@`@@`@@` % 
  �� @ �� `  �`  � �%��
 &`��
v�   %  
       &  
`@@@@`@@@@�@�@@�@ �%�
�`�&ఐ
�
� ��#'+7COU%#5335##5335##"&=3;%5##5%5335%53#5!#53%5#"&=!"+5326=;`@@ @@�@@ @@� % 
    ��   `  �`  ��&��&`%  
�
�         &  
�@@ @@ @@ @@�@�@@�@ �%�&�`�� % 
 �
@�K%'7'##"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B�Xh��hh�K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @�)-%!2654&'1.#".#"13!'7'5'35B^8,`@'g?.R=#*6^Bh��h  �^B2P<P		3?#=R.O1B^�h��h����@`� K'7'#'#"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B��h��h���K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @`� )-!2654&'1.#".#"13!5'7'#35B^8,`@'g?.R=#*6^Bh��h  ^B2P<P		3?#=R.O1B^�h��h���@�� !EHLP#"&54671.54632>321+'32654&'1.#".#"1;!!73535l�5K9*pP?b.9R)7K5���yB^8,`@'g?.R=#*6^By9�И�Ј    K5-F
	PpH8M7
E-5K�� ^B2P<P		3?#=R.O1B^` ��``�  @�� "%)-32654&'1.#".#"1;!73535�QB^8,`@'g?.R=#*6^BQ��`�   ^B2P<P		3?#=R.O1B^@@���``�  @���@3!2654&'1.#".#"1%#!"&54671<54>32>329�*9K5 5K7)R9.b?Ppy,8^B��B^6*#=R.?g'@`�
F-5KK5-E
7M8HpP	P2B^^B1O.R=#?3		P<@���#!"&54671<54>32>32<,8^B��B^6*#=R.?g'@`�P2B^^B1O.R=#?3		P<`���#(-23'!3;26=+"&=#!5%5!!!'!!'!!'!�ٌ�F��%�% /!�!/���������*��L&&����@&%@ 0!//!0������  @  @  `���#;26=3'!3!!!!'!!'!!'!`%�%ٌ�F���������*��L&&��@&%@������  @  @  �``%#3'3#546;274&+"@��99r�
@
@`&@%���JJ@`

���&&�`�``%#'54&+"`��``�&@%�� ��@`&&`��3�	''7627'7>/&"��SijS7		&		7�Pe ��&4�-;��Si<S7

%

7��Oc� �5&�-��3�
764/.?'�7&47��� �jj���;75&8���� �j���`�`+BI	''76271'!"3!2657>/&"#!"&5463!;?#"&=N��SijS7		&		7�PeC���&%�%�&4s 
� 

@%��� ����v
;��Si<S7

%

7��Oct�&� &%@�5&s���

�
�%��� �а
�`�`/5'?64/&"7'%#!"&5463!;762;NS��Si7		&		7S�ePC%� %&@&��4&�
�;S��Si7

%

7S��cOt��%&�&�%�&5��

��� �#/CJNRVZ^k%9>54&#"!"&5463!;+593267'73265'!"3!75#"&=35'35!5!5!51"&54632�B..B�

@%�
@�

00�@%���&%PP@�v
��������`��`�p!//!!//�(.BB.("
�
�%��
"~00S%@�&� &�PP�0�
��  `  �  `  `  ��/!!//!!/	��� �#/59=AEIV%9>54&#"!"&5463!;+575#"&'1;!35'35!5!5!52654&#"3�B..B�%&@&�%@�00

@
��������`��`�p!//!!//!�(.BB.(B&�&�%��%B�00�5�
  `  �  `  `  ��/!!//!!/�`�!-CGKO\!2654&#!";5.54632975#"&'1#"&5463!2#!'5!5!5352654&#"3��

��

@B..B�00

 @&&�&&�`PP @�� ���0!//!!//!BB
�

�`
B(.BB.(~00~K%�%%�`%�PP��  `  `  `/!!//!!/���!-159F9>54&#"#"&5463!2#!575#"&'1!5!5352654&#"3�B..B@&&�&&�`�00

@@�� ���0!//!!//!B(.BB.(b%�%%�`%b�00�5  `  `  `/!!//!!/	�@�@"&*#5!!#!7!'5!!3'353535'35`����`��� ������� ` @`������ ��@��������������  �  @  �@�@#!35!!!3!#3#353535'35�@�@��@�����@��``   `������ �� �����  �  @  `@�@-5!!!'!!32+"&5463";2654&+`���'Ҍ�F��@�%%�%%

�

�0���� �@��%%%% 



`@�@	!!'!";2654&+`������F�%%�%%�@����%%%%`@�@	
+05:!!'!!32+"&5463";2654&+!'!!'!!'!`������F��@�%%�%%

�

�`���*��L&&�@���� �@��%%%% 



�  @  @  `@�@	"'!!'!";2654&+!'!!'!!'!`������F�%%�%%�`���*��L&&�@����%%%%�  @  @  `��-15!!!'!!32+"&5463";2654&+!5`���'Ҍ�F��@�%%�%%

�

����p������@��%%%% 



@```��!5!!!";2654&+��� �ࠠ ���%%�%%�```�� ����%%%%@@� -#!#!!%!532+"&5463";2654&+�@`@�  ��  � �%%�%%

�

� �� �@����%%%% 



@@� !%5!";2654&+`�  ��`%%�%%� � � ��%%%%@ �3!!7!3!7!!3'5�`�`�``���@��  ���@@�@���`` � ��� �@@�@ �!!775!75#`� �``���@@�� ��``  �� �@@�R�)'Nf3"'4672?64'#.'.'92012#"&546581:12654&'041.'9'.35"&7635"&'1X���5�T
�
	�

�[�!//!!/%1
<IG"5;%' �''�T5��"	�[
	�
	�
`/!!//!E4="8� o(4Sb= -XS�(+C3"'46781:12654&'401.'.'9.35"&7635"&'1X���5�T/,	
<IG#6:%' �''��T5��"bQ	5/
5<"8� o)3Sb= -X�Tl@*7	"'463!#"2?64'1"&54632'2654&#"3���5�T%�
�
	�

�[�!//!!//!@�T5��% 
�[
	�
	��/!!//!!/ �Tl@	"'463!2654&#"3���5�T%�@�T5��%�`4�@%4AN9>3!'"'46;#"2?%#"2?64'1"&54632'2654&#"3�	��*5�T%( 
�
	�]0�
�
	�

�[�!//!!//! �T5�	�% 
�[
	� 
�[
	�
	��/!!//!!/ `.�@*"789%"'463!2654&#"3�%�0�@`��5�T%� %��T�0 �T5��%��Tl@&AN[h533##5#57932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632  `` `(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT `` `` �P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B533##5#55'463!"/>54.#"972654&#"32654&#"3  `` `@%��5L!8L+8pIggIIggI `` `` �@%�T5�L8+L8!��gIIggIIg�Tl@5BO\`932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632'35�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT���P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�  �Tl@)6:'463!"/>54.#"972654&#"31"&54632'35�@%��5L!8L+8pIggIIgg���@%�T5�L8+L8!��gIIggIIg�  �Tl@5BO\c932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632/77�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TTLK4d{�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T8L4d|�Tl@)6='463!"/>54.#"972654&#"32654&#"3/77�@%��5L!8L+8pIggIIggIK4d{�@%�T5�L8+L8!��gIIggIIgXL4d|�Tl@&AN[h%'7'77'932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&546320DDDDDDD�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT�DDDDDDD�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B%'7'77'463!"/>54.#"972654&#"32654&#"30DDDDDDD�@%��5L!8L+8pIggIIggI�DDDDDDD@%�T5�L8+L8!��gIIggIIg����4	"'1&47621"'1&47'12764'1&"127'���&j%&&uB��
	

��5v!!!]!��///�/���&&%j&uB��	
		��5u!]!!!��.�///� �@C%1".54>32"'&4?62"'&4?'2?64'&"2?'S�l??l�SS�l??l�0�&j%&&�B�		
	��5�!!!]!�///�/� ?l�SS�l??l�SS�l?n�&&%j&�B�

		��5� ]!!!�/�///�	� �@	&1;DLa1###.'1>731#.'>731#>799.'3>71#3.'2>54.#"3 Cx..8� �8..xC �8..xC Cx..8� *3�3**3�3*��3**3��3**3pS�l??l�SS�l??l�S 4*3�J`��J�3*4� `J�3*44*3�J��h.wCCw.�.wCCw.Cw..wC Cw..wC��?l�SS�l??l�SS�l?�!�@	)3<FQ%#1%.'3&'>71#11311#>71'.'3>713.'17>71#.'1�D82�J��%+�?4c/7�?43�J�D9/7�?43�J�D9��.8�?42�J�D8!R�4/8�/u@K�02�IK�0/8R�443�JL�0/8��R�53�JL�0/8��R�5� �@Pz��%1>77'>77'>735#.'7'.'7'.'>32''#3771#"&''.546777#31''1!9.'7'.'7'.'35#>77'>77'>72>54.#"3

  

1�HH�1

  

1�HH�1-33-


  


 


  


-33-��S�l??l�SS�l??l�S�(

, ,

(-44-(

, ,

(-44-1HH1
$

' '

$

$

' '

$
1HH1�?l�SS�l??l�SS�l?� �@V��%#"&'9>77'>77'>735#.'7'.'7'.'1>321''#317797>54&'''3#77"671%.546777#3''2&'1 6�OO�6


  


6�OO�6


  


)).81



  



��(-81



  



�2992(

, ,

(2992(

, ,

(+4GN�6
$

' '

$
3}FN�6
$

' '

$
� �@'5J1#"&'>54&'1>32.5467!9.5462>54.#"3	18811�HH�118811�HH�1-33--33-��-33--33=S�l??l�SS�l??l�S�6�NN�6-44-6�NN�6-44-1HH11HH11HH11HH��?l�SS�l??l�SS�l?� �@"1>.#"13267.54>71.54679!>54&' 6�OO�6/!!/6�OO�6/!!/18817@@7��18817@@7�2992BKR++RKB2992BKR++RKB6�NN�63�PP�36�NN�63�PP�3� �@)6CP%1".54>32'2>54.#"32654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:��� �@!.;%1".54>322654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�S`� ?l�SS�l??l�SS�l?�� �@.CXer#"&5467.5463211".54>32'2>54.#"352>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�SL�d::d�LL�d::d�L+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�!8L++L8!!8L++L8!`�� �@.CP]#"&5467.5463211".54>32'2>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�S+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l?�!8L++L8!!8L++L8!`�� �@&/4:@EMbh.'77'>7'73#"&/%'?''57%>.'7!7''>322>54.#"3#'7r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0��*^�'CkkC'�^�\\..FS�l??l�SS�l??l�Sf)z)f�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~^l=.U�0ff0&U.=JJ�?l�SS�l??l�SS�l?�S��S� �@&/D.'77'>7'73#"&/%'?''572>54.#"3r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0�S�l??l�SS�l??l�S�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~�?l�SS�l??l�SS�l?@���*18IMQ3#5463!2#3#!"&=%#5.546753'>54&'#"3!2654&#!3#%3#`��
 
��
��
� 6JJ6 6JJ6)77) )77)��%& %&���``�``  `

`��`

`��Q88Q��Q88Q?**??**?�%� %%�%����@���+29=A3!5.54675!"3#!#!5>54&'5!2#3%>54&'#%35!35@&�6JJ6��%���%��6JJ6�&���@)77) )77)`��`� `%�Q88Q�%`��`%�Q88Q�%`��!?**??**?�����`���+:BJ_##5##5##5##5#53533533533533533##1"&'>32%.1067!510%032>10.#"1�        @@         @@ pKx..xKKx..x��><<> ><<>�@1i�rr�i21i�rr�i2�@@@@@@@@ @@@@@@@@@@ @�% %%��%T+QQ+��+QQ+|KZKKZKKZKKZK`���+:AH##5##5##5##5#53533533533533533##32671.#".1067>10&'�        @@         @@ ��/xIIx//xIIx/ SMMS SMMS�@@@@@@@@ @@@@@@@@@@ @f!!l!!��5nn5��5nn5`���+@U#5##5##5##5##33533533533533535#5#'1210#".10>"1032>10.#�        @@         @@ pr�i21i�rr�i21i�rf�a//`�ff�a//`�f�@@@@@@@@ @@@@@@@@@@ @�KZKKZKKZKKZK ANAANAANAANA`���+@##5##5##5##5#53533533533533533##"1032>10.#�        @@         @@ pr�i21i�rr�i21i�r�@@@@@@@@ @@@@@@@@@@ @@KZKKZKKZKKZK� �@';J[i�%1.5467.'13:77>71.'1.'1>7111>54&'9>7.'>54&'1.54>32#".'.'(=5 N.EVe6
B_wB 3[&-#.6(AXm<
0T")e86_'#/07�+4^PA4s>(.ZEy/:m1��?l�SS�l??l�SI�hGA(R�6,L/N:#>jM,* C}72�I&�7^E)'K" O/$0	.#6zC2�K&| 7I,(0yC�6-	'B#�P S�l??l�SS�l?1UvD� �@/>P`q.5467#*932631.5467.'#*#91>54&'17.'>54&'1.546797>54&'9�*%I�;DVd7
Gh�I=5 N.J]l;oP�3F�9!CycHBu/"T0
�&X16.(/0"?q,(3�Cz2)#.L7 DuV17R�6,L1R; �E7)!B#(-Mh>3)/O "K'(�/&5I�2?�OBKS,(0(>�Nn�C"'2E^k%14&>7.'79>7>79%'7>/&'&"6764/7''>"/&47>9%"32654&#|1G%62F#4\4$3$�4$3$�b�	<?a<���-
NT
!�c(-
G<TT<;UU;�G15&F20"�$4$3�$4$3���=@6=����
-
�!T��
.(
�T<;UU;<Tn�C'59DS%.'1#"&#&45463:3&45463:1'232654&51%%'>'"/&47>yH3U;H3T<G1A/�2F.B���IS8T
!��k�
(-

J�2H;U2I<T!1G/A�F2B.���I�b!T��l�{.(
K� �@Fe"32>54.#".54>32#"&'.#"3267>32#11.#"#"&546323267S�l??l�SS�l??l�SL�d::d�L3`RC8/1+L8!!8L+:78CR`3p?##G
.IggI$H##?@?l�SS�l??l�SS�l?�:d�LL�d:1E)!8L++L8!
)E1p)M# 
gIIg	
!#M� �@'b&.'.#"#"&546323267>7'&'.#"32>7.'.#"#".54>323267>71x?##G
.IggI$H##?GWa5S�l??l�S7eYI87:+L8!!8L+1/8_#M(/X( 
gIIg	
!
)C0?l�SS�l?4H,
!8L++L8!�``%,3%5"&51.1!09#3!5;265!+0%>1Oq*2	�3*pP��� ^B B^�� ]$�$��pP^cMLc_Pp�  `�B^^B6IJ��JH6�`` '%#!5#52651>1!013.1!30� �Pp*2	�`3*qO�$�]$�  �pP^cMLc_Pp��JI66HJ�``%,3<%5"&51.1!09#3!5;265!+0%>1#5#52653Oq*2	�3*pP��� ^B B^�� ]$�$�� @( ��pP^cMLc_Pp�  `�B^^B6IJ��JH6��� %�`` '0%#!5#52651>1!013.1!30#5#52653� �Pp*2	�`3*qO�$�]$� @( �  �pP^cMLc_Pp��JI66HJ�� %� ``(/6:>%3!53535"&51.1!01#3;265!+0%>135!5�`� `�Oq*2	�3*pP���^B B^�� ]$�$�d�����`�pP^cMLc_Pp�@�B^^B6IJ��JH6��@@`@@� ``$+%5#52651>1!013##!5.1!30��Pp*2	�`3*qO�`�@$�]$�`�pP^cMLc_Pp�`����JI66HJ ���-B#>327!#>7'!#".546712>54.#"3`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8! ���-#>323.'+>72>54.#"3`�(( �(-�(-p2WA&&AW22WA&&AW2��4�`x!�`x!�@&AW22WA&&AW22WA& ���-BL#>327!#>7'!#".546712>54.#"357'373`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+YPp  pP ��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8!�BoQ``Qo ���-7#>323.'+>72>54.#"357'373`�(( �(-�(-p2WA&&AW22WA&&AW2YPp  pP ��4�`x!�`x!�@&AW22WA&&AW22WA&�BoQ``Qo`�`ETcr�!#"&=#"&=#5354632154632!54632>323##"&'#"&=7"326=4&#!"326=4&#%"32654&#!"32654&#�`@@�@@p	
	
��	
	
@	
	
�	
	
�p0 0pp0 0p`	�		�		�		�	@	�
	
	�
	
`�`E!#"&=#"&=#5354632154632!54632>323##"&'#"&=�`@@�@@�p0 0pp0 0p*@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>7#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211"326=4&#1�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"�	
	
  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��	�		�	)@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>71#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��`	&/9CMW`lx����1'.''.'75.'1211&"#2372637*5162?1>??>71'.'1895"&#897"#979>717'1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3�	

	[	 	[	


	�!&D�D�D����`@@`$�``��� @+,@p<TT<<TT<5!	&$%" !      ! "$%&	!�
 

� ��>��`>"%%���f� g!"���` 1>1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3eD�D����`@@`$�``��� @+,@p<TT<<TT<~ ��>��`>"%%���f� g!"��`A =LYf!>/.+";267!+"&57.?>;2130&'"+*'4&#"3265#4632#"&5�	#8H((H8#	]9!9]�}`
	*H2)@T.!.T@)2G*l` 
�&%%&`

�0"'F44F'"0 +54,��

�
.BR.!/Q=##=Q/!.RB.	7jj7&&&&



�`A 0=.?>;2!;267!+"&?;2679%4&#"3265�)@T.!.T@)�qHHq�4,

`
 
&%%&�0!/Q=##=Q/!0 9GG9��

�
%%%%� �@-E`x��&'.5467>17167>7>#.7.&47"672632'11&7.'.'61&'.'.>7>76#"&'.314.#"32>5�
-"K(&"
#	: :" .>*[bf42\QC$QX_28mf_)��
	1-ULB/X*IZi:/7dVE%CDZk;8?l�SS�l??l�SS�l?�/`\X(&
&S,=p.$	)SSP''D*\`c2q':/A(8
,	/")U+0 �L)	/=K,;cP9=Qc9,4W?#	\S�l??l�SS�l??l�S� �@2Jbx�.67>54&'.1'.&67"63>32'1.'"32>7>1>7.'&#1'>7.74'1>7.47671�+gq{?7g`V%,fnv<

?s`J"Q-Ocs>$N*>r`K��@xgR*X/IU_2(�1[)#107h	0$":"?�)>'+U)(8#,
9#5 
%J$%B\7��"8?lU=$A[6�
8RkA0Q?.
&
�+-eim55�M4`+
7olh/D'+Y[\,���`�2Wj����>7.54632117'7'#".5467''7762#"&'"'&4?.546329>54&#"5#53#32654&+>7326=#";54&#".2>54.#"352>54.#"32654&#"3�%Z3B..B3Z%'D(-4:d�LL�d:4-(D'cd
#$
%/!!/% ` �O		O%<O-
	-O<%O		O%<O-
	-O<%�Fz[55[zFFz[55[zF8cJ++Jc88cJ++Jc8				_".
-.BB.-
."(D'1�HL�d::d�LH�1'D(�dc
$#
G,!//!,>  �@
	-O<%O		O%<O-		-O<%O		O%<O��5[zFFz[55[zFFz[5@+Jc88cJ++Jc88cJ+				���`�$Vi���762#"&'"'&4?.5463297#".5467''7>71.546327'7''>54&#"5#53#154632>7#"&546;.'1#"&=32#2>54.#"32654&#"3cd
#$
�-4:d�LL�d:4-(D'%Z3B..B3Z%'D(�%/!!/% ` �%<O-	
-O<%O		O%<O-	
-O<%O		�8cJ++Jc88cJ++Jc8				{dc
$#
�1�HL�d::d�LH�1'D(".
-.BB.-
."(D'y,!//!,>  �@-O<%O		O%<O-		-O<%O		O%<O-	
�+Jc88cJ++Jc88cJ+				� ``AVc54632#"&=.54671%7'7'#".54>75#53#2>54.#"32654&#"3�	
	
	'D(-4:d�LL�d:7_�I ` Cw/�Fz[55[zFFz[55[zF				��
	�3
	3�(D'1�HL�d::d�LJ�c=@  @3+��5[zFFz[55[zFFz[5@				� ``BO54632#"&=.54671%.'1535#332>54&'77'2654&#"3�	
	
	/wC ` I�_7:d�LL�d:4-(D'�				��
	�3
	3�+3@  @=c�JL�d::d�LH�1'D(��				��
#.?2654&#"31+"&=46;>74&#'*#0*1013267'p�
�

��

	��--�2<2�� �
 
�
	
���Z
Z�x ���&+"&=46;?6&/&2654&#"3��
�

��X/	

0��$�y
 q-`
	
`����`�-8NYk32+"&/7;0410*1#'7'''&6?6'4"#"7+"&=46;>74&#'*#0*1013267'HX�

�
BL�2<2VX!g	

--
�

��

	��--�	2<2�����
 
�#� �$�$,D$�
	
hZ
Z�8
 
�
	
���Z
Z�m �����_�.9+"&=46;?6&/&'7;26=4&+''&6?6t�
�

��X,	

-r-X7XA
�

�X7�,	

-X*�s
 
w-Y
	
Y�Z-n��
 
�p(Y
	
Z,���@�%.%3'''33'54.#"77754632�=d<no`?}^<=^}>`A!8L++L8!�`p��p`�gIIg[��TST@����@RP+L8!!8L+P��``````@0IggI0���@�#54.#"#7''33/3�!8L++L8!d>ss>�\`�~>&?_\=>�0+L8!!8L+0 ��VV��O` ��#1��`O#���=@M32>54.#"15->32#".546732654&'
2654&#"3�c}:d�LL�d::d�L9��@ 9Fz[55[zFFz[5kU%/!!/%P�����eG-4''44'����z)))"6
6����P



���)63->32#".546732654&'52654&#"3� ��@@(L�d::d�LL�d:jV/!!/���������'44''4)CXg�



�a.@$0<I%9#"&54675#53#%'7'77'7'77'7'772654&#"3?$/!!/%� �i	��8998988�8998988�8998988I�,!//!,ki� ��v898998989899898989989���a.@".:%535#3532654&'%'7'77'7'77'7'77?��i� %/!!/$��8998988�8998988�8998988�v �i�k,!//!,898998989899898989989��@�$0Kn���%9#"&54675#53#%'7'77'7'77546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"32654&#"3�%/!!/%� �j
�9889988�9889988��& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				��,!//!,Ki� ��V899889988998899_ &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�@��@�=Vbn{�546;232#!"&=46;32#!"&546;813!26=89535#3532654&'9%7'7''7'7''2654&#"32654&#"3�& %@

��

@  %%� %% % &@��j� %/!!/%�988998899889988)�				  &% 
 

 
 &�`%&�% &% ��V �i�K,!//!,899889988998899���				�� �"7DQ9.54>32'7#"&'12>54.#"351"&54632'2654&#"3@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5PppPPppPB^^BB^^B�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^�� � -:7#"&'11".54>32'2654&#"352654&#"3@��(b66b(�<iN--Ni<<iN--Ni<PppPPppPB^^BB^^B��`���"" -Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^�� �"7A9.54>32'7#"&'12>54.#"357'373@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5p0`p00p`0�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(�J�@��@��� � *7#"&'12>54.#"357'373@��(b66b(�<iN--Ni<<iN--Ni<p0`p00p`0��`���"" -Ni<<iN--Ni<<iN-�J�@��@����B� *4IVc'.54>32'810"9'9.'77972>54.#"351"&54632'2654&#"3�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5PppPOqqOB^^BB^^B@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^���B�'4A'17'>791".54>32'2654&#"352654&#"3�7|&\3΀|8�2\&�<iN--Ni<;iO--Oi;OqqOPppPB^^BB^^B ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^���B� *4IS'.54>32'810"9'9.'77972>54.#"357'373�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5p0`p00p`0@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(�J�@��@����B�'1'17'>792>54.#"357'373�7|&\3΀|8�2\&�;iO--Oi;<iN--Ni<p0`p00p`0 ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-�J�@��@����^�*?LY926323#".54677>772>54.#"351"&54632'2654&#"3���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5PppPOqqOB^^BB^^B-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(@pPOqqOPp ]CB^^BC]���^�%2?.'1791".54>32'2654&#"352654&#"3"���$Z2����3Y$�<iN--Ni<<hO--Oh<OqqOPppPB^^BB^^BLTH�� (NZH��( ��-Ni<;iN..Ni;<iN-`pPOqqOPp ]CB^^BC]���^�*@J926323#".54677>772>54.#"3157'373���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5p0`p00p`0-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(�I�@��@����^�&0.'1792>54.#"3157'373"���$Z2����3Y$�<hO--Oh<<iN--Ni<p0`p00p`0LTH�� (NZH��( ��-Ni<;iN..Ni;<iN-�I�@��@�` <T_c1233267>7>7#"&'.'.'"&#&!4&+"4&5461546;2#!"&=33!26=!35�
"
-2	$	]gc^B B^��qO Oq&��% 
 
�� �	.K,I@B^^B"��J6`H PppP�`%%@@

@   ` 3>B!4&+"33267>7>7#"&'"&'.'1!#!"&=35i�qO Oq%O!-2%S(?��&��%@��T93@PppP	'/�@%%@   ����!6CGKO9.#"326732654&'%5!#5#"%!#"&5467>3312#"&546357%'%%fBPp��` BfY��^BB^I7���


- �DD��DD�%%=PpP
	8`@@P=m&: B^^B:X@@



`��!llll���� -159>;35!#"&'#"&546321"32654&#357%'fB `@��pPBf%%'



  �DD��DD�=P@@`8	
PpP=%%



`��!llll	` �@8Lck�����?.54>32"67>7>7&'.041>7>7269716322>7.'>7>.'0"17>#1023:1#96'>7.77>7.72799&'.#"#36.67>54&'.9>27.'.5�!?l�SS�l?-(
	,]bf50`_^-
�/_02Q*X/$a9�.C%O2/Z+���
"&(K"-
#. ": :	>CQ\24fb[*)_fm82_XQ$�O+Y[[.T�G%PRU,+XVU*�/m<S�l??l�SF~3
*
" 
(0)j@=`"[D',@l*��.p=,S&
&(X\`/$2c`\*D''PSS)	q(A/:'8 0+U)"/	,
�^/$$$`?�@ 4Og��%>74'9'>7.'9'.74>79%.67>54&'.1'.&67"63>32'1%>7.47671>7>>7>7&'.85>27.'.5{"6-Q"<�F"#8*X/8>
�!-07/a24+gq{?7g`V%,fnv<

?s`J��	0$":"?�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�$T/8"&$T1&CK-bfh45�M,S&�)>'+U)(8#,
9#5 
%J$%B\7�7olh/D'+Y[\,��" 
*
" 
)'/$$$  @:P0'.35.'.'2&#&15065&1506561&410'32613>>10&'.1QC
*'>V]CIWWI))F[[E.4�� !}R<dH((Hd<<dH(�
	
�	��



����o	$�
  @ 7H617#0'.'.'5&150653>>10&'.19.'.'5`IW[E()IW]C')�� !}R<dH((Hd<<dH(�'*))��
	��
	
��o	$�
�
	


��@�@Fb�%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#7<54632#*#73>54&#".54>32#"&'732654&#"   )+Kk Kk�` � '7`�II�`77`�I5b)'a5BuW22WuBBuW2!$�8((88(	"%% \#=R..R=##=R.!=1PppPPp
� gG)+   � `�gGY)b5I�`77`�II�`7"!2WuBBuW22WuB5a(�(88((8 %%"
t=".R=##=R..R=#pPPppP2�@�@Flw%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#732654&#"17'7<54632#*#'7>54&#"7   )+Kk Kk�` � '7`�II�`77`�I5b)H=!.R=##=R..R=#G$�11PppPPp
138((88(5"%%`� gG)+   � `�gGY)b5I�`77`�II�`7"H#=R..R=##=R."=GK1pPPppP21(88((825%%"�`` )>KXe%1".54>32'2>54.#"351".54>32'2654&#"351"&54632'2654&#"3I�`77`�II�`77`�IBuW22WuBBuW22WuB.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7 2WuBBuW22WuBBuW2`#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%�`` )6CP%1".54>32'2>54.#"351"&54632'2654&#"352654&#"3I�`77`�II�`77`�I.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7�#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%��`�(773!267!%!#!"&5!3	7#5%1>101!067130&546101�
2�2
��;@K5�`5K@ @���Hx  ��U7�W/�$$ 5KK5�@ �� �@x8�llT�Ni]SMMzGZ��`�!#!"&5!3!1!0&54610 @K5�`5K@ @���H   xH5KK5�@ x�Tll�8x`_�@!$'5Dj%3265!#!>7.'1362!+977#5%1>101!067130&546101>7>>7>7&'.85>27.'.5�5K�� ��
	��
2}:����Hx  ��U7�W/�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &$� �� �@x8�llT�Ni]SMMzGZ�Z" 
*
" 
)'/$$$`?�@'Mb%3265!#!>297!1!0&54610>7>>7>7&'.85>27.'.5�5K�� ��
,[\^/$G"����H   xH�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &� x�Tll�8x�" 
*
" 
)'/$$$�@@  $3A]y37#130654&'#73>54&#"37#130654&'#73>54&#"1#0&546154&546320!1#0&546154&546320�>@$3Z3$[D''��>@$3Z3$[D''�@�@@ 0000 @�@�@@ 0000 @@`cCUllUCc�())(`@`cCUllUCc�())(��a��a`@0<$55$<0@`a��a`@0<$55$<0@`�@@ #1?53130654&''.54632#53130654&''.54632#��� @�@ �0000����� @�@ �0000�@@ c?a��a?c�!2552!`@@ c?a��a?c�!2552!@ ?CQ^kx�%9.5467.'#130671#0&546154&546320>32#"&'137#'3>54&#"2654&#"352654&#"32654&#"332654&#"3�
[$3Z
�@@ 0000 %/IggI#=x>@D''�<TT<<TT<				 				@				�4&B&9cCUl�a`@0<$55$<0@C7gIIg�@ ())(�T<<TT<<T�				@								@ )6CP]%1#0&546713953'.54632#1"&546322654&#"32654&#"332654&#"3��@ �/;("���0000�IggIIggI				 				@				Q	�a?ca:0R�@@`!2552!��gIIggIIg				@								� �@;?]z14132653#".505#53!#"&=35#330"32>5#535#;26?62;26=4&#!"1%2+"&/&"+"&=463!^BB^`(F]55]F(@� qOPp@�@#=R.EE.R=#   � ^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@ //B^^B ��5]F((F]5]]``PppP    .R=##=R.` ��B^RR^BIggI�T<5KQ##QK5<T� �@"@]z35#34132>5##"&50553;26?62;26=4&#!"1%2+"&/&"+"&=463!2+2&'&"63#"&=463!@�@(F]55]F(`^BB^` �^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@.B8( 9"n"9 (8B.@ ``]]5]F((F]5 ��B^^B//���PB^RR^BIggI�T<5KQ##QK5<T A/(8Q11Q8(/A��`3|���''"#*1"3!26506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>3�00(8K5`&7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>+8(5K&ZlZ??
^'
! l

		&
�

��`Gdw�1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=3!26506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#`&�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#&??
8)	���`K����''"#*1";35335335335335335326506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>31�00(8K5@ @ @ @ @ @  &7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>8(5K            &ZlZ??
F'
! l

		&
�

���`Gd��1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=;35335335335335335326506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#@ @ @ @ @ @  &�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#            &??
8)	`��`A�����''"#*1";#"&5#3!5#5326506.#"#"&#"''#"4&'.+"&'.532677'>74277'461>77'>77'>703267>79#!"&'3267>;.546;:3;2+%243267>7>300101#"&'.1'>39!!�00(8K5@�
 %��&7!HH$1��.21�

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>�`��8(5K@
% @&ZlZ??
F'
! l

		&
�

��@`��` $i��#"&5#3!5#5326506'#0#!;3!!1''1'"+;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=%>3232632#"&'0&'9@�
 &���&�n($D"��;#@ `��b!   �/a�		$P,F\  �(87�#	

$HH!7
	 H(;N@
& @&#@o31..-2
	"T#B0
21O8(	
v??
8)	`���!C3!2654&'14654&#".#"1%#!"&54671<54>32>329�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`��� #!"&54671<54>32>321`*6^B��B^6*#=R.7^/Hg�O1B^^B1O.R=#1)eH`���!I^m}��1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<3	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`���!Wu1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg`���4Q1#!"&5467<54>32.5467>73267'>7*#"&5<5>321)*6^B��B^6*#=R.3L9		T<
Ig*6

/1p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

`��"DSbq��3!2654&'14654&#".#"9%#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!0?N]l#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#`*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!I^m|�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�P	
	
`	
	
`	
	
`	
	
`	
	
`	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	 	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`��"Xv�����9.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�A	
	
`	
	
`	
	
`	
	
`	
	
�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��5Rap��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�A	
	
`	
	
`	
	
`	
	
`	
	
pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`����"DQ^kx�3!2654&'14654&#".#"9%#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��



`



`



`



`



`����!.;HUb#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#`*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�O1B^^B1O.R=#1)eH��



`



`



`



`



`����!I^kx�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"32654&#"32654&#7"32654&#"32654&#7"32654&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�@



`



�



`



`



p	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��



`



`



`



`



@	@		@	Y.-
�		

�
-
.`����'<K[jy�����9#!"&5467<54>321>32'<54&#">329"326=4&#.2?64'14&+";265%2764/&"32654&#"32654&#7"32654&#"32654&#7"32654&##*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
Y



`



�



`



`



yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.�



`



`



`



`



`����!Wu�����1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"32654&#"32654&#7"32654&#"32654&#7"32654&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�1



`



�



`



`



�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��



`



`



`



`



`����5R_ly��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"32654&#"32654&#7"32654&#"32654&#7"32654&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�1



`



�



`



`



pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��



`



`



`



`



`����.R37#737#7##"&54671.54632>321#32654&'1.#".#"1;7"Q�/RI}1>`p0�Tl5K9*pP8[4<T)8K5��B^6*gH/^7.R=#*6^B�Q� ��@`��K5-F
	Pp:/T<

E-5K ^B1OHe)1#=R.O1B^��`����+37#7332654&'1.#".#"1;7"Q�/RI}1�B^6*gH/^7.R=#*6^B�Q� ��`^B1OHe)1#=R.O1B^��`����.Xm|���7#37#32654&'14654&#".#"1;733#"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����1FUet�7#37##"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Qq�B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����`^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����.f�7#37#32654&'14654&#".#"1;733#"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����?]7#37##"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Qq�B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����`^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����"D[s�3!2654&'14654&#".#"9%#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!8Pl#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21`*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!CP]jw��3!2654&'14654&#".#"1%#!"&54671<54>32>329132654&104610#"&5132654&104610#"&57132654&104610#"&5�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��(()'PP 00�(()'PP 00�(()'PP 00�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�2*,"YY!::!*,"YY!::*,"YY!::`���� -:G#!"&54671<54>32>3214610#"&54610#"&574610#"&5`*6^B��B^6*#=R.7^/Hg��PP')((�PP')((�PP')((�O1B^^B1O.R=#1)eH�2"YY",* "YY",* "YY",*
`����!I^kx��������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32132654&104610#"&5132654&104610#"&57132654&104610#"&5"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T��(()'PP 00�(()'PP 00�(()'PP 00P	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��*,"YY!::!*,"YY!::*,"YY!::�	@		@	Y.-
�		

�
-
.	`����&:GTap���1#!"&5467<54>321>32'<54&#">3214610#"&54610#"&574610#"&5"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(��PP')((�PP')((�PP')((0	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��"YY",* "YY",* "YY",*�	@		@	Y.-
�		

�
-
.	`����!Wu������1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3132654&104610#"&5132654&104610#"&57132654&104610#"&5�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI��(()'PP 00�(()'PP 00�(()'PP 00�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg��*,"YY!::!*,"YY!::*,"YY!::`����4Q^kx1#!"&5467<54>32.5467>73267'>7*#"&5<5>3214610#"&54610#"&574610#"&5)*6^B��B^6*#=R.3L9		T<
Ig*6

/1��PP')((�PP')((�PP')((p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

��"YY",* "YY",* "YY",*`����!Cs��3!2654&'14654&#".#"1%#!"&54671<54>32>32954&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$
`���� P��#!"&54671<54>32>32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.`*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$

`����!I^����
+1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.	`����&:j�����1#!"&5467<54>321>32'<54&#">32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.`����!Wu��1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:354&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�Q
	


	

a
	


	

�
	


	

�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��$		$
$		$
$		$
$		$
2$		$
$		$
`����4P���1#!"&5467<54>32.5467>33267'>7*#"&5<5>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�Q
	


	

a
	


	

�
	


	

pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��$		$
$		$
$		$
$		$
2$		$
$		$
`@� X��%#"3!2654&+4&#".#"732654&'14654&#".#"11>7<14632>329.5467<54>32>71<14632>321++#!"&5467932654&+4&#".#"1#"1>329	%
!%�	�5K8)T<4[8Pp*9$	8('
 1
��")6*#=R.9	8('
 1
(/!	
*6^B�/!�!/�%
!%	/)G�%%	
K5-E

<T/:pP	
F-$;(8$'G+1O.R=#(8$-!/'O1B^!//!�%%			#`@� Ty%#!"&54671<14632>327132654&'1.#".#"1>71>32:329>54&'1.#".#"01>321�(/!�!/%8('
 1
*�B^6*gH/^7.R=#*6G/+%=\(
1 
'(8

*?f�-!//!,(8$
1 ^B1OHe)1#=R.O1"<-=&+)-$8(			D6`���Bd5463232+#"&=#"&5463'3!2654&'14654&#".#"9%#!"&54671<54>32>329	
P
	P	
P
	�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P
	P	
P
	P	
=
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`���A#";326=32654&+54&#"%#!"&54671<54>32>329P	
P
	P	
P
	`*6^B��B^6*#=R.7^/Hg�
	P	
P
	P	
O1B^^B1O.R=#1)eH`���"DS3!2654&'14654&#".#"9%#!"&54671<54>32>329";2654&+�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P	
�	
��
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eHS
	
	`���!0#!"&54671<54>32>329";2654&+`*6^B��B^6*#=R.7^/Hg�P	
�	
��O1B^^B1O.R=#1)eHS
	
	`���"DS`3!2654&'14654&#".#"9%#!"&54671<54>32>329%"326=4&#"&54632#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH-	�		�	�
	
	`���.=12654&#"%#!"&54671<54>32>329%"326=4&#
	
	W*6^B��B^6*#=R.7^/Hg��	
	
	
	
�O1B^^B1O.R=#1)eH-	�		�	
`���=EOX`ow���<54671<5<51045465>32>321#!"&'.5<517!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!`6*&<M,7^/Hg*6Z<��=Y  �����L��66KU��j�..��\�m
�
�@, ,�641O*J71)eHO1:OO:(		@		 _	`?		�	`���!(1:DMU>5!!1!.'>321!>7!'.#"1!>71!4671!>7!1!>7#!"&'���Z
	��	�/4��:*:  :
�|��a�	��	�3��1��1  		�
	 `	@@		@�`@�@CKU^fu}��������%1#!"&'.5<5<5467<5<50454651>321>321%!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!<54&#">329"326=4&#.2?64'14&+";265%2764/&�Z<��=Y6*&<M,
U5Ig#*6�� �����L��66KU��j�..��\�m
�
�@, ,�6UT<*D3/(�	
	
�
.
.Z	@		@
��.
.
�:OO:1O*J7-8gIF(O1(		@		 _	`?		��<T,#'
	3	@		@	Y.-
�		

�
-
.`@�@	AKU`ir����>71!!1!>5!1!6454&#"1.#"3.'>321.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!"326=4&#.2?64'14&+";265%2764/&cF��Z���7gI5U
 :�	D*<T(/��-�
����i"	 	�  	F	�1 1� �	
	
�
.
.Z	@		@
��.
.
 @	Ig8-	#,T<	

@	@@		�		 �	@		@	Y.-
�		

�
-
.`@� QYclt������%1#!"&'.5<5<5467<5<5<54651>32.5467>332671%!4&'!1!>7!1!.''3.#"1!.'!"&#9%3.#"!645<'1!.'"#!*'13!267!>7*#"&5<5>321�Z<��=Y6*&<M,3L9		T<
*6�� �����L��66KU��j�..��\�m
�
�@, ,�6dIg*6

/1�:OO:1P*J7

>_
;U		,A%O1(@		 _		`?		��gIJ/$

`@� 	U_it}�>71!!1!>5!1!>7>7#"&5467.#"3.54673:31.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!cF��Z���P
<T		9L3 :�6*gI1/��-�
����i"	 	�  	F	�1 1�  @	#		T<
^>


/JIg

@	@@		�		 �p��)<D/?'?1>7#"&5467"3267%4673:3#"&5/?G''II''I7''II''I��
<T		9LgI>^��6*gIJ/<T�4444Hhhhh�hhhhk		U;
_>IgL9+/JIg*6U;NNN�p��)1/?'?#"&5467>332671/?G''II''I7''II''I��^>IgL9		T<
�4444Hhhhh�hhhhk9LgI>_
;U		=NNN`�`,1>7#"&5467"3267%4673:3#"&5�
<T		9LgI>^��6*gIJ/<T�		U;
_>IgL9+/JIg*6U;`�`#"&5467>33267�^>IgL9		T<
�9LgI>_
;U		
�~B�(7FVeu��1"&54632'2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI<TT<<TT<			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg T<<TT<<T�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.	�~B�*9IXhx�2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.��B�/?O_p�";732654&+'#%6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1�		�]]�

�pp��gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-

	PP
	``@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��B�!1ARgw#&4546321#'"326=4&#1.2?64'14&+";2651!;2654&+"9";732654&+'#2764/&"1�RgIIgR]]]			
�
-
.Y	@		@	��	@		@			�]]�

�pp�G.-
@IggIPP@	@		@	Y.-
�			
	
		O
	PP
	``'
-.��B�*:J[k�6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		�]]�

�pp��IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��A�
.>O_t6454&#"!"326=4&#1.2?64'94&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg^�	
	
�
-.Y	@		@	��	@		@	Y.-
G		�]]�

�pp��IggI@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��B�)8GWfv6454&#"3&4546323"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	
	��B�
+:JYi6454&#"!"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg^�			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI@	@		@	Y.-
�			
	
		�
-.��
	
	�@`
,;L.#"3>32"326=4&#.2?64'1!2764/&""13!26514&#!�^<<^!J//J�	
	
�
-.�P.-
H

@

��`7II7*66*	@		@	Y.-

-.�
	
	�@`%4E.#""326=4&#.2?64'1!2764/&""13!26514&#!�^<<^�	
	
�
-.�P.-
H

@

��`7II7	@		@	Y.-

-.�
	
		 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">32>51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T	B'<T
�
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+'T<! @		@		I.-
�		
	�-.
	 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T.XQJ �
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+%1! @		@		I.-
�		
	�-.
 �MXbr���24.'54&#"463246324632#"&=4&#"3265463246324631%.#"1>75.#"'.#"1>79!9.'.#".#">79%.#".'1�!/K��d
	d��K/!!//!!//!!/


	%%/!!//!!//!�P)'U8 8U')�#sN!0�0!Ns#��
mI.BIIm
B.@%AsV40		04VsA%%%%%%�@

0		0&%�%%%%%
Wx��xW


Ehb;;bhE

2Q W3�Q23W  �O34&#"14&#"4&#"1#"&=463232654&#"4&#"4&#"4>754632`�/!!//!!//!!/%%	


/!!//!!//!!/K��d	
d��K%%%%%%�@%&0		0

�%%%%%%AsV40		04VsA ��&3@M132654&10132654&10132654&10%4610#"&5%4610#"&54610#"&5 (()'PP@(()'PP�(()'PP00 ��00 `00 P13(hh�13(hh��13(hh�EE�EE��EE ��&4610#"&54610#"&54610#"&5 PP')((@PP')((�PP')((P(hh(31�(hh(31�(hh(31���!132654.104>10#"&5�K55K(0((0( $$CCy2GG2YT;;TYEC00CE+..+���4>10#"&�(0((0(K55KyYT;;TY2GG	(#�4'4BJW�!!.77>7>721!.'!7!4&7!#"&'.'%!>7>2!.'!#"&'.''.10103267>106762103261067>10676&'."'1@`��+Qj���J��]7B,+*��iQ+��K	+,B�5ywk&	


.A,,;
@
;,,A.

	&kwy5.� 
`	 h	�

�	'	�9$7797 

 7977$9'#�4@.10103267>106762103261067>10676&'."'�5ywl&	


.A,,;
@
;+,B-


	&kwz4.!9$7797 

 7977$9�� /?7'?'?'?�((HH((H�''II''I�''II''I��??��??��llll�hhhh��hhhh��00��0�� '?'?'?�''II''I�''II''I��??��??��hhhh��hhhh��00��0@�/Uv9#!"&5467<54>32>32>32#'32654&+>54&#".#">3293!2654&'4654&#".#"1@^B��B^6*#=R.#M2"J-B^+9K5@@(88(	K5.F	+(=)/Hg	�K5 5K8)T<4[8Pp*9@1B^^B1O.R=#.=	$-^B	
E.5K 8((8!5K:+2%"eH	�5KK5-E

<T/:pP	
F-@�#C>54&'>54&#".#">329#!"&5467<54>32>321f3G9+^B-J")D6*Pv	$
^B��B^6*#=R.7^/Hg*6@J3.E
	B^-$	+"
#		kN
$`B^^B1O.R=#1)eHO1��@�,@>7>7#"&5467"7.54673:3";732654&+'r
<T		9L+$ (6*gI�~

�]]�

�ppJ.		U;
_>.MB(/JIg!J
	PP
	``��@�.>7>7#"&5467"7";732654&+'k
<T		9L0'y[��

�]]�

�ppR*		U;
_>0QhNR
	PP
	``��@�,@1>7#"&5467"3267%4673:3#"&5"&546;732+'�
<T		9LgI>^��6*gIJ/<T�

�]]�

�pp�		U;
_>IgL9+/JIg*6U;��
	PP
	``��@�-#"&5467>332671"&546;732+'�_>IgL9		T<
�F

�]]�

�pp�9LgI>_
;U		�
	PP
	```���.J4&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%5KK5(88((8 K5 (88(%%% 8(�%%


 %`��/L4&#"34632#!!265%4&#"134632#!!2651#1"&5133126514&#!5!29�K55K@%%%� �5K��K55K@%%&���5K�8((8@


�@�(85KK5%%%@K5�5KK5%%%@K5�`(88(


@8(@��2654&#"3PppPPppPpPPppPPp@��#"&54632�pPPppPPp�PppPPpp@��181"3"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��#"&546322654&#"3 5KK5)77) PppPPppPDK55KD--DDpPPppPPp@��1"&54632'"3PppPPppPB^^BpPPppPPp @^BB^@��2654&#"3'463"&5PppPPppP�K55KpPPppPPp�5K�K5@��12#"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��12#"&5462654&#"3%%5KK5PppPPppP@K55KK55K��pPPppPPp@��1"&54632'2654&#"3PppPPppPB^^BB^^BpPPppPPp ^BB^^BB^@��1"&54632'2654&#"3PppPPppP5KK55KK5pPPppPPp@K55KK55K@��1"32654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��2#"&54632654&#"35KK5%%PppPPppP@K55KK55K��pPPppPPp@��12654&#"72#PppPPppPB^^BpPPppPPp @^BB^@��1"&5463274&#265PppPPpp0K55KpPPppPPp�5K�K5@��1812#2654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��>32#"&'>54&'2654&#"3�5KK5)77) PppPPppP<K55KD--D��pPPppPPp
`��
/=M]n~���#"&546?>54.#"7.54>322654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=/!!/-�Du�YY�uD?l�SS�l?��	
	
�
9
9�\\\\�D\\\\�9
9

#!//!#
��!F%Y�uDDu�Y%F!	B"S�l??l�S"B- 	`		`	FN
O
����
O
N	`�� .>N_o���'!.54>32!>54&'2654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=--��
Du�YY�uD
��-	
	
�
9
9�\\\\�D\\\\�9
9
��
#"H&Y�uDDu�Y&H"#
r@	`		`	FN
O
����
O
N` �`)@M%1".54>32'2>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�H``(88(``H��%%%%` �`)>Ub%1".54>32'2>54.#"352>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�H``(88(``H��%%%%` �`):G132>54.#"4>32#".5!4&#"103265#4632#"&5`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\12#".54>"32>54.#"32>54.#2#".10>3"32654&#V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�8((8$$ %%%%` �`):G14.#"32>'#".54>32!32>10.#"3#"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<� 8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\%1".54>32'2>54.#"352>54.#"3"&5463210#52654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%` �`):G14.#"32>'#".54>32!4&#"10>5##"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<��8((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(88(``HH``%%%%` �`)>O\14>32#".732>54.#"332>54.#"!463210.5332654&#"`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%� `@"&55555'"32654&#3%5�@@ @�``�``�``�	
	
0`S����
��
�
�
�
-	�			��@�� `@	
 55%5%"32654&#3%5��`��@`��	
	
0`;��
��"�
��	�			��@�q����'Rg9#".'10&'.>7>'%>3210&'.'.>76.714.#"32>5Ag�L=o]G"b*D3%X�99$�7<~UHqK$��Bf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`75+ )e9=mZCM+5X=JYd4+ZSG(%$Nam70[N>+^M2k*J1Jbr;<AG'####q����*?>3210&'.'.>76.714.#"32>5qBf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`7]%$Nam70[N>+^M2k*J1Jbr;<AG'####��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5(88((88(`B^
	�	
�K5�		�K55KK55K 8((88((8�^B�0	
0
	�5K
	��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5%%%%`B^

�

�8(�

�K55KK55K@%%%%�^B�@



�(8

��`-:G326=4&+";26=4&#"+"&546;21"&54632'2654&#"3@
	^B@B^^B@B^
	K5@5KK5@5K��5KK55KK5(88((88(P	
B^^B��B^^B	
5KK5@5KK5`K55KK55K 8((88((8��`+9G"+"&546;232654&+";2654&#1%9"&54632'2654&#"31@
8(@(88(@(8

^B@B^^B@B^
��5KK55KK5%%%%@
(88(@(88(

B^^B��B^^B
�K55KK55K@%%%%t`��(5	3!26'&"62#!"&7"326=4&#2654&#"3��$5�5#��<		`�S`







���-@@-.""��  9�
�

�
��



t`��'%&"13!26%"&546327#"&=46312���<��#5�5#�Y






�.""��-@@ 



�

�

` �`)?L%1".54>32'2>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!Lcb66` �`)>Ta%1".54>32'2>54.#"352>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!Lcb66� �@)>KZix�%1".54>32'2>54.#"310>7>10'2764'&""326=4&#4&+";26526=4&#"3;2654&+"S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"07[(("	
	
Q	a
	a	��	
	
��	a
	a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z((r	`		`	��

		��	a		a	R		

	� �@)>S`o~��%1".54>32'2>54.#"352>54.#"310>7>10'2764'&"12#"&=461+"&546;21"&=4632146;2+"&S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"07[(("
	
	8	a	
a	��
	
	��	a	
a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Z((R	`		`	��		

��	a		a	2

		� �@)>M\kz�%1".54>32'2>54.#"310>7>10"326=4&#4&+";26526=4&#"3;2654&+"%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"079	
	
Q	a
	a	��	
	
��	a
	a	/
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z�	`		`	��

		��	a		a	R		

!
;</$%
D	� �@)>Sbq���%1".54>32'2>54.#"352>54.#"310>7>1012#"&=461+"&546;21"&=4632146;2+"&%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"079
	
	8	a	
a	��
	
	��	a	
a	
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Zi	`		`	��		

��	a		a	2

		(
;</$%
D` �`)?K%1".54>32'2>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!LcbqED4#([` �`)>T`%1".54>32'2>54.#"352>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!LcbqED4#([`����'%4&#"32654&7#"&54674632@%%#K55K##^BB^#8((8�Q&%��:$5KK5$:"C'B^^B'C@(88(@����0%4&#"32654&7#"&54674&546329@%%#K55K#"#pPPp#K55K�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����'4%4&#"32654&7#"&546746322654&#"3@%%#K55K##^BB^#8((8`(88((88(�Q&%��:$5KK5$:"C'B^^B'C@(88(��8((88((8@����0=%4&#"32654&7#"&54674&5463292654&#"3@%%#K55K#"#pPPp#K55K(88((88(�Q&%��:$5KK5$:2K+PppP+K 5KK5���8((88((8`����/C%#"&5467<=4632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

�Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<=4632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
@

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
@

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

� Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

� Q&%��:$5KK5$:2K+PppP+K 5KK5��`����.B%#"&5467<5463274&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
`

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����.K%#"&5467<5463274&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
`

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`���7#37##33"1}IR/�QqQ`�0p������`���`���#33�Q`�0p���������r�FWer10&'9'1067.'17.'10#"&1'&>7>7>32903261*#*97.10>3212654&#"3LbfgF
�WXzP
�^W;Mfk"$$"kgM;V_	

b

%%&&�+*P3
	.?E2$	
%ED8)/�  �/)8DE %tnNNnt% n�*

ּko�W�%%%%���r�+=J.'10#"&1'&>73265<'9'.#">3212654&#"3h^W;Mfk"$$"kgM;V_9'(8#

	
<%%&&.ED8)/�  �/)8DE(88(=%tnNNnt%

�%%%%��@�7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;231�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
�@� 7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;2312>54.#"3�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AqL�d::d�LL�d::d�LVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
��:d�LL�d::d�LL�d:	� �@)6CP]jw{%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"335S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







�  � �@+7CO[_%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"35S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


Ӡ ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







�  
� �@)6CP]jw��%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/ � �@+7CO[g%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"2654&#"S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


�!//!!// ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/	� �@?Tan{���'>32.#"#.#"3265133265<57#".54672>54.#"31"&54632!1"&54632%2654&#"3!2654&#"31"&54632'2654&#"3*OBO[00[OBO.2
j
2.
8((8`8((8U:d�LL�d:ES�l??l�SS�l??l�S�%%%%%%%%��



 



�!//!!//!J/%>,,>%/$$ (88((88(3'W/L�d::d�L/W'��?l�SS�l??l�SS�l?�%%%%%%%% 







��/!!//!!/ � �@@LXdp|>323>3217.#"813265133265817#".5467"&54632!"&54632%2654&#"!2654&#"2654&#"&02
j
20jIWd66dWIj8((8`8((8t?l�SS�l?�%%%%%%%%��


-


�!//!!//B#$$#@+F22F+@"(88((88(F)\1S�l??l�S1\)�%%%%%%%% 







��/!!//!!/� �@)6C%1".54>32'2>54.#"32654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@+%".54>322654&#"!2654&#"S�l??l�SS�l??l��


-


 ?l�SS�l??l�SS�l?�







� �@)6CG%1".54>32'2>54.#"32654&#"3!2654&#"3!5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��  ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�  � �@+/%".54>322654&#"!2654&#"!5S�l??l�SS�l??l��


-


��  ?l�SS�l??l�SS�l?�







�  � �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%".54>322654&#"!2654&#""&10326150S�l??l�SS�l??l��


-


�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%2>54.#""&54632!"&54632"15063210&S�l??l�SS�l??l�=





�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�!//!!// ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�<TT<<TT<.BB..BB. ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�<TT<<TT ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6:I%1".54>32'2>54.#"32654&#"3%35326=30+5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���_ (� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   ��( � �@".2%2>54.#"7326=30+5"&54632%3#S�l??l�SS�l??l�4_ (� 


���� ?l�SS�l??l�SS�l?�( 



  � �@)6CNU%1".54>32'2>54.#"32654&#"3!2654&#"3!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



���3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�<H<<H< ��� �@+6%".54>322654&#"!2654&#"032>1S�l??l�SS�l??l��


-


��3_NN^3 ?l�SS�l??l�SS�l?�







�<H<<H<� �@)4;?C%1".54>32'2>54.#"3!0#".0326135335S�l??l�SS�l??l�SL�d::d�LL�d::d�L��3_NN^3+PvuO�k��� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: <H<<H< ��    � �@"&%".54>32032>1%35335S�l??l�SS�l??l���3_NN^3�@��� ?l�SS�l??l�SS�l?@<H<<H<�    � �@,AP2#"&5#5!2#"&5#51".54>32'2>54.#"3'326=30+5�


@@


@0S�l??l�SS�l??l�SL�d::d�LL�d::d�L_ (�@


 


 ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�( � �@+:2#"&5#5!2#"&5#52>54.#"7326=30+5�


@@


@0S�l??l�SS�l??l�4_ (�@


 


 ��?l�SS�l??l�SS�l?�( � �@)-15%1".54>32'2>54.#"3'!5737'S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��j�j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  AHH� �@%".54>32!5737'S�l??l�SS�l??l�� ��j�j ?l�SS�l??l�SS�l?  AHH� �@)-15%1".54>32'2>54.#"3'!535335S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ����� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�       � �@%".54>32!535335S�l??l�SS�l??l�� ����� ?l�SS�l??l�SS�l?       � �@)-1@%1".54>32'2>54.#"335335"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%2>54.#"3#%3#"15063210&S�l??l�SS�l??l�}�� ��QS\\ST]] ?l�SS�l??l�SS�l?    �@ @@ @� �@)-1@%1".54>32'2>54.#"335335"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%".54>3235335"&10326150S�l??l�SS�l??l��݀���S\\ST]] ?l�SS�l??l�SS�l?     ��@ @@ @� �@)8<@MZ%1".54>32'2>54.#"3'"&10326150#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�HH�







� �@!%)5A%".54>32'"&103261507!7'2654&#"!2654&#"S�l??l�SS�l??l�TS\\ST]]1j�$j


-


 ?l�SS�l??l�SS�l?�@ @@ @�HH�







� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)8<@MZ%1".54>32'2>54.#"3'"15063210&#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @aHH�







� �@!%)5A%".54>322150&#"1067!7'2654&#"!2654&#"S�l??l�SS�l??l�TT]]TS\\�j�$j


-


 ?l�SS�l??l�SS�l?@ @@ @aHH�







� �@)-15BO%1".54>32'2>54.#"3'!57!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!57!7'2654&#"!2654&#"S�l??l�SS�l??l�� j�$j


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)-15BO%1".54>32'2>54.#"3'!5737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!5737'2654&#"!2654&#"S�l??l�SS�l??l�� ��jdj��


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)6CPTX%1".54>32'2>54.#"35"1063210&#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%2>54.#"7"1063210&'"&54632!"&54632'3#%3#S�l??l�SS�l??l�SHH<TT<H�





M���� ?l�SS�l??l�SS�l?� `` �







�   � �@)6:G%1".54>32'2>54.#"32654&#"3%35"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���0HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   � `` � �@#/%".54>322654&#"%35"&1032610S�l??l�SS�l??l�=


�̀0HH<TT<H ?l�SS�l??l�SS�l?�



   � `` � �@)6:>KX%1".54>32'2>54.#"35"1063210&#737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �HH�







� �@#'3?%".54>32'210&#"106737'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<HTjdj��


-


 ?l�SS�l??l�SS�l?� `` �HH�







� �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%".54>322654&#"!2654&#""&1032610S�l??l�SS�l??l��


-


�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%2>54.#""&54632!"&54632"1063210&S�l??l�SS�l??l�=





�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CPTX%1".54>32'2>54.#"35"&1032610#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%".54>32"&1032610'2654&#"!2654&#"'35!35S�l??l�SS�l??l�SHH<TT<H�


-


3��`� ?l�SS�l??l�SS�l? `` �







�    � �@)6:>KX%1".54>32'2>54.#"35"&1032610#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` aHH�







� �@#'3?%".54>32"&10326107!7'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<H<j�$j


-


 ?l�SS�l??l�SS�l? `` aHH�







� �@)6CPTX%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#7!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` �HH� �@+7;?%".54>322654&#"!2654&#"210&#"1067!7'S�l??l�SS�l??l��


-


�HH<TT<H�j�$j ?l�SS�l??l�SS�l?�







� `` �HH� �@!6CPY326=35!1".54>32'2>54.#"32654&#"3!2654&#"33#"&5�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�/!!/@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�P!//!� �@ ,8A#5!##"&52>54.#""&54632!"&54632326=�@`@B..BpS�l??l�SS�l??l�=





�/!!/@  P.BB.�?l�SS�l??l�SS�l?�







�P!//!P� �@!6CLP326=35!1".54>32'2>54.#"32654&#"33#"&535�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



�/!!/`�@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



�P!//!0  � �@ ,59#5!##"&52>54.#""&54632326=%3#�@`@B..BpS�l??l�SS�l??l��


�/!!/���@  P.BB.�?l�SS�l??l�SS�l?�



�P!//!P� � �@)6CV%1".54>32'2>54.#"32654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�0``0� �@+=%".54>322654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l��


-


C4$PGFS$4 ?l�SS�l??l�SS�l?�







�0``0� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!35!35`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�Ѐ�`�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/     
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632'3#%3#`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





M����@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�   � �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!'#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�jdj@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632''#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





jdj@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�HH� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!7!7'`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�j�$j@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@#/37=AEKW["32>54.7#"&'35#>;'"&54632#535#53;2##535#53#53"&546327'7S�l??l�SS�l??l���jjl== 


s@@@@�= @@@@0=


?jj@?l�SS�l??l�SS�l?��GH�� �



�   @   ` 



?GG
� �@
#*?Tan}#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/� �@
#*>JV#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





@   `   `  ` @ `�?l�SS�l??l�SS�l?�







� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"335!35S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!P��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �    � �@+7;?%".54>322654&#"!2654&#"2654&#"35!35S�l??l�SS�l??l��


-


�!//!!//q��`� ?l�SS�l??l�SS�l?�







��/!!//!!/�    � �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7!7'S�l??l�SS�l??l��


-


�!//!!//�j�$j ?l�SS�l??l�SS�l?�







��/!!//!!/�HH� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3'#'7S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�jdj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7'S�l??l�SS�l??l��


-


�!//!!//�jj�jj ?l�SS�l??l�SS�l?�







��/!!//!!/�HH.HH� �@)6=D%1".54>32'2>54.#"35"1063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �[ZCD�Z[DC� �@&-%2>54.#"7"1063210&7'7%'7'7S�l??l�SS�l??l�SHH<TT<HZ[[DD��[[DD ?l�SS�l??l�SS�l?� `` �[ZCD�Z[DC� �@)8?F%1".54>32'2>54.#"3'"15063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�[ZCD�Z[DC� �@!(/%2>54.#""15063210&7'7%'7'7S�l??l�SS�l??l�RS\\ST]]O[[DD��[[DD ?l�SS�l??l�SS�l?@ @@ @�[ZCD�Z[DC� �@)-1>K^%1".54>32'2>54.#"335!352654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LP��`�@



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:@    �







�0``0� �@'3E%".54>3235!352654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l���`�@


-


C4$PGFS$4 ?l�SS�l??l�SS�l?`    �







�0``0� �@)-1@%1".54>32'2>54.#"3737'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l�ijj jjeS\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)-1>%1".54>32'2>54.#"3737'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>32737'"&1032610S�l??l�SS�l??l���j�j�HH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>%1".54>32'2>54.#"37!7'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>327!7'"&1032610S�l??l�SS�l??l�j�djdHH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>K%1".54>32'2>54.#"3353351"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    ��/!!//!!/ � �@'%".54>32353352654&#"S�l??l�SS�l??l��݀���!//!!// ?l�SS�l??l�SS�l?    ��/!!//!!/� �@)6CGK%1".54>32'2>54.#"351"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!dj�dj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ �HH� �@#'%".54>32'2654&#"7!7'S�l??l�SS�l??l�S!//!!//�j�dj ?l�SS�l??l�SS�l?�/!!//!!/�HH� �@)-1>K%1".54>32'2>54.#"3737'1"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�_/!!//!!/ � �@'%".54>32737'2654&#"S�l??l�SS�l??l���j�j�!//!!// ?l�SS�l??l�SS�l?AHH�_/!!//!!/� �@)07BI%1".54>32'2>54.#"37''!7''!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�LE[[DD��[[DD�3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�ZZDDZZDD�<H<<H< ��� �@!,%".54>3277'!77'032>1S�l??l�SS�l??l�DD[[��DD[[3_NN^3 ?l�SS�l??l�SS�l?�DDZZDDZZ�<H<<H<� �@)8?F%1".54>32'2>54.#"3'"&10326150#7''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]TF[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @ZZDDZZDD� �@!(/%2>54.#"72610#"&1507''!7''S�l??l�SS�l??l�RT]]TS\\�[[DD��[[DD ?l�SS�l??l�SS�l?�@ @@ @ZZDDZZDD� �@)6=D%1".54>32'2>54.#"35"&1032610#?''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HHE[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �ZZDDZZDD� �@&-%2>54.#"2610#"&10?''!7''S�l??l�SS�l??l�SHH<TT<H�[[DD��[[DD ?l�SS�l??l�SS�l? `` �ZZDDZZDD� �@)-1>%1".54>32'2>54.#"3737'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l�ijj jjdHH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"37!7'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l��jj��jj�HH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"335335"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    �� `` � �@'%2>54.#"3#%3#"1063210&S�l??l�SS�l??l�}�� ��PHH<TT<H ?l�SS�l??l�SS�l?   � `` � �@)-1@%1".54>32'2>54.#"37!7'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l��jj��jj�S\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1@%1".54>32'2>54.#"37!7'"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%".54>327!7'"&10326150S�l??l�SS�l??l�j�djcS\\ST]] ?l�SS�l??l�SS�l?AHH��@ @@ @� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,8'77''/77''72>54.#"7"&54632�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S!//!!//0��?l�SS�l??l�SS�l?�/!!//!!/� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L<TT<<TT<.BB..BB.0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,877'7''77'7''".54>32'2654&#"�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S<TT<<TT0��?l�SS�l??l�SS�l?�/!!//!!/� �@$9N[hu�65'.'..'&&'7>71".54>32'2>54.#"31"&54632'2654&#"352654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%%



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 







� �@#7CO[g&57>7>>7667'.2>54.#""&54632'"&54632'2654&#"!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=(88((88(%%%%


-


(/W	8

8	W/�?l�SS�l??l�SS�l?�8((88((8 %%%% 







� �@$9N[h65'.'..'&&'7>71".54>32'2>54.#"32654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@#7CO&57>7>>7667'.2>54.#""&54632!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=





(/W	8

8	W/�?l�SS�l??l�SS�l?�







� �@f{�����9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#1>3#"&'.'.'.7!#"&'.'.7>7212654&#"3!2654&#"3DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]T��C4

*



*

4C�n



 



z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@G[i����1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150>3#"&'.'.'.7!#"&'.'.7>722654&#"!2654&#"'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\�C4

*



*

4C�n


-


i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@dy�1.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]Tz
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @� �@FZh623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @� �@f{�9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'326=30+5DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�S_ (�z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�( � �@G[j1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"7326=30+5'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�4_ (�i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�( ���.b54&#".#"4&#".#".32>5"&'.765463234632354632354632#�/!)
/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/		!//!�/!,/"G^vH1D*+Jc8�YHOtS2V5jPp��0�2WA&� d`=#81"&'.76546323>714632354632354632d&AX1[s*/N3
p2 2WA&YHOtS2V5�PL��0L0�� �`.b4&#".#".#"54&#".32>5"&'.764632354632354632354632#�/!!/
)
/!!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW20�!//!`		�!//!�,/"G^vH1D*+Jc8�YHOtS2V5J��P00���2WA&�@`@654&#"#4&#".32>54&#"#54&#"#` 0n
1L/
 j?2WA&  0P0��4V
3RuO"1<&AW2��0���-a4&#"54&#"4&#".#".32>5"&'.7646323463234632354632#�/!

/!

/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/ !/	!//!/!�,/"G^vH1D*+Jc8�YGOuR3
V5J��p�������2WA&� _`654632354632#81"&'.764632346323 &AW2Zt*/L1
m0  xx�����2WA&YHOtS2T4G��p��`��1<J�#"3!2654&'2654&'>54&'>54&+>.#"93#"&54632654&#"3132+32+32+32#!0<5261>7>3209`�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$* %�`%/!
/!	(	(!/<}fA3KW#H  � 
�
�`



�   ��� *$RF.6Ys> ` �`1<J%!2654&+532654&+532654&+532654&+>.#"1##3#"&54632654&#"31@�0pPpPp�	+&"&v���&% 



    B~c=.FR$G/� %`%�`



@��1<J�#"&5463!22+#".'.9'3#"32#"&5463132654&+532654&+532654&+532654&#!02132>&'0&9@�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$*`%�%/!
/!	(	(!/<}fA3KW#H  �
�`
�



�`   ��� *$RF.6Ys> ` �`1<J!2+32+32+32+#".'.1##3#"32#"&54631@�0pPpPp�	+&"&v���&% 



`   B~c=.FR$G/�%��%�



@��3n%32654&'2654&'1>54&'>54&+>.#"1#";3067>32132+32+32+32+'#"&5463h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

/!
/!	(	(!/<}fA3KW#H %��%@/G$RF.<cB   @
`
` �`:32+32+32+32+'#"&546;067>32��pPpPp0�

�v&"&+	   @
`
/G$RF.<cB@��3n3221+#".'.1#"&546;73032>&'132654&+532654&+532654&+532654&+#"3h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

�/!
/!	(	(!/<}fA3KW#H %`%@�/G$RF.<cB   @
��
` �`;32654&+532654&+532654&+532654&+#";032>&'1��pPpPp0�

�v&"&+	�   @
��
/G$RF.<cB>����6j.32>=4&#"14&#"54&#".#"#7'7'3"&'.76463234632354632354632#`/b":R'AHL%8cJ+/!
/!
/!(	,�h��h�Zt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�!/	!/	�!/	$h��h� YHOtS2V5j��p��0P�2WA&��`:>3234632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h���p��PpP�2WA&YHOtS2V5:h��h�����7k37'#54&#".#".32>=4&#"14&#"5"&'.76463234632354632354632#��h��h�/!(	!//b":R'AHL%8cJ+/!
/!
Zt*/N2
p1   &AW2�h��h!/	/!��,/"G^vH1D*+Jc8�!/	!/	�� YHOtS2V5j��p��0P�2WA&��`;354632354632#"&'.76463234632!'7'7@  &AX1[s*/N3
p2 h��h��PpP�2WA&YGOuR3
V5J��p0h��h���>m%:32>=4&#"#54&#"#4&#"#4&#".'7'%#".'.7614632>32>321>32`2WA&   1p
2N/$_Eh��h +Jc8%LHA'R:#b//!	(!/
!/
!/ &AW2�P0P��P��5V3RuN>Th��h���8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``;%.'.764632346323546323546327'7`Sm(/N3
p2   #=Q/h��h XCOuR3
V5J��p��PpP�0TA'!h��h�����8g%7'74&#"#4&#".32>=4&#"#54&#"%#".'.7614632>32>321>32�h��h 1p
2N/*tZ2WA& +Jc8%LHA'R:#b//!	(!/
!/
!/�h��hr��P��5V3RuNHY&AW2�P��R8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``954632354632#"&'.76463234632'7'� &AX1[s*/N3
p2 h��h�`pP�2WA&YGOuR3
V5J��p��h��h���.b54&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&� @`24&#"#4&#".32>54&#"#54&#"#@ 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2PpP�����(S��.#".#"1.54632>3254&'1>54&#".#"1.54>3:>3254&#"14&#"54&#".#".32>51"&'.76463234632354632354632#)-
)T<1<T!#gI5Ig#+5!8L+9+L8!5+�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2?)Z.<TT<.Z)�G)IggI)G']7+L8!!8L+7]���".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&��`� Cv>54&#".#"5463214632>54&#"*#".5467>32'4&#"#4&#".32>54&#"#54&#"#�B.#7

/A/!

/!!/#U;&?<T#+5bFG)Ig6*  2p
3N/*s[1XA&  �(.B%B.(N!/!//!x>&<T#T<%?%T3Gf#gI3T���0��5V3RuNHY&AW2PpP ����	Bw3#5377'7#53#554&#"14&#"54&#".#".32>5"&'.76463234632354632354632#1��g� �4�g� ��/!
/!
/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�� �k�� �k���!/	!/	�!/	/!��,/"G^vH1D*+Jc8�YHOtS2V5j��p��0P�2WA&@����	F73#53'7#53#54&#"#4&#".32>54&#"#54&#"#`��g� @��g� @ 1p
2N/*tZ2WA&  U�� �k�� �k{��0��5V2StOHY&AW2PpP$����Bx3#53'7#53#554&#"54&#"54&#".#".32>51"&'.76463234632354632354632#9��g� ��h� ��."

."

.")	
!//b":R'BGL%9cJ*��Zs+/M3
p1   %AX2�� �l��� �k��ʿ!/!/	�!/	/"��,/"G^wG1D+*Jc9�YGOuR3
V5j��p��/O�2WB%D����F3#53'7#53#5%4&#"#4&#".32>54&#"#54&#"#��g� ��h� �� 1p
3M/*tZ2WB%  �� �l��� �k����/��5V
3RuOGY&AW2PpPP ����+Z�.54>321'70"1'7.#"701#'754&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�!8L+Sq!ODIgEN!qSW."

."

."(	
!//b":R'BGL%8dI+��Zt*/N2
p1   &AW22+L8!Sq!NEgIDO!qS���".!/	�!/	/!��,/"G^vH1D*+Id8�YGOuR3
V5j��p��0P�2WA&@����+^.54>321'70"1'7.#"701#'7%4&#"#4&#".32>54&#"#54&#"#�!8L+Sq!ODIgEN!qS7 1p
2N/*tZ2WA&  2+L8!Sq!NEgIDO!qS���0��5V
3RuOGY&AW2PpP~����7n#'73>32>32>321>32#".'.7612>50=4&#"#54&#"#54&#"#4&#".3��h��h�,!/
)!/
!/+Jc8%LHA'R:"b/2WA&   1p
2N/*tZ�h��h$/!�	/!	/!�8cJ+*D1Hv^G"/,� (BW/88�P0PpP��5V2StOHY��`:>32354632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h��АpPpP�2WA&YHOtS2V5:h��h�����6n3'7'7#>32>321>32#".'.7646322>50=4&#"#54&#"#54&#"#4&#".31��g��g�
)!/
!/+Jc8%LHA'R:#b//!,r2WA&   2p
2N/*tZh��h�	/!	/!�8cJ+*D1Hv^G"/,!/%�(BW/77�P0PpP��5V3RuNHY�``;354632354632354632#"&'.764632!'7'7#�   &AX1[s*/N3
p2h��h����pPpP�2WA&YGOuR3
V5Jh��h��`>m%>50=4&#"#54&#"#54&#"#4&#".'7'%#".'.7614632>32>321>32�/R<#   1p
2N/(mSh��h+Jc8%LHA'R:#b//!!/
)!/
!/!*AT-77�P0PpP��5V3RuNDX"h��h���8cJ+*D1Hv^G"/,!//!�		/!.!�@`@;%.'.7646323546323546323546327'7`Sm(/N3
p2   #=Q/h��h@XCOuR3
V5J�АpPpP�0TA'!h��h����`.h54&#"14&#".#"54&#".32>54632354632#"&'.764632354632'7'1�/!

/!)

/!!//b":R'AHL%8cJ+� &AW2Zt*/N2
p1 h��h�".!/	�!//!��,/"G^vH1D*+Jc8P�/WB(YGOuR3
V5j��p��h��hR�@`@954632354632#"&'.764632354632'7'� &AX1[s*/N3
p2 h��hPpP�2WA&YGOuR3
V5J�А�nh��h"��`7g%2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32p2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/ (BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��@`@24&#"#4&#".32>54&#"#54&#"#` 2p
3N/*s[1XA&  p�0��5V3RuNHY&AW2PpP�����!5l�>54.#"5.546321'>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32Z!8L++L8!5+#gIIg	:T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/X="+L8!!8L+7]'G)IggI 9.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��`�"7j>54&#"5.54632:329'>54&#"546324&#"#4&#".32>54&#"#54&#"#J
gIIg5+#T<;U

JB./A/!!/` 2p
3N/*s[1XA&  |+IggI3T%?%<TT<)(.BB.(N!//!NR�0��5V3RuNHY&AW2PpP�����Kz>54&#"546322>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32 T<<TB..BP2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/�.<TT<.Z/AA/�(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!.!� ``F>54&#"546324&#"#4&#".32>54&#"#54&#"#B..B/!!/` 1p
2N/*tZ2WA&  �(.BB.(N!//!��0��5V2StOHY&AW2PpP�����Az�35#5#"&5467".'.764632>32>32>32#952>50=4&#"#54&#"#54&#"#4&#".392654&#"31�H@)7B..B7)p%LHA'R:#b//!!/
)!/
!/+Jc82WA&   2p
2N/*tZ�<TT<<TT< _?*.BB.*?��*D1Hv^G"/,!//!�		/!.!�8cJ+ (BW/77�P0PpP��5V3RuNHY�T<<TT<<T���`�%2e35#5#"&5467>54&#"546322654&#"34&#"#4&#".32>54&#"#54&#"#�H@(8B./A7)�B./A/!!/�;UU;<TT<� 2p
3N/*s[1XA&   _?*.BB.*?�(.BB.(N!//!0T<<TT<<Tp�0��5V3RuNHY&AW2PpP`����-d�.#".'.5463257>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32`:"<T<.
B."6�T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/KT<2L
3.B$3J.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!�� �`1d<54&#".'.5463297>54&#"546324&#"#4&#".32>54&#"#54&#"#�K55KF2%8(#5		�B..B/!!/` 1p
2N/*tZ2WA&  �5KK53J
	
1 (8-"�(.BB.(N!//!��0��5V2StOHY&AW2PpP�����	
O3570&'!7'77'2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32� �dd@}}�}}%cd�2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/���RQQ��QQ��(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!."����`�	
I3570&'!7'77'4&#"#4&#".32>54&#"#54&#"#� �dd@}}�}},cd� 1p
2N/*tZ2WA&  ���RQQ��QQ���0��5V3RuNHY&AW2PpP.��5i.32>=4&#"4&#".#".#"#7'7'"&'.7646323463234632354632#`/b":R'AHL%8cJ+/!

/!)(	!/�h��hZt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�".!/		/!h��h�@YGOuR3
V5j��p��0���2WA&��`;3.32>54&#"#4&#"#4&#"#4&#"1#7'7��2p
3N/*s[1XA&   �h�����5V2StOHY&AW2P0��P��0h��M��6j54&#".#".#".32>=4&#"537'#"&'.7646323463234632354632#�/!)(	!//b":R'AHL%8cJ+/!

�h��h�Zt*/N2
p1   &AW2!/		/!��,/"G^vH1D*+Jc8�".�h��h� YGOuR3
V5j��p��0���2WA&��`;#.#"#4&#"#4&#".32>54&#"#37'a�  2p3N.+s[1XA& �h��h���P��0��5V3RuNHY&AW2P h��h���;i%'7'>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32`h��h/R<#   1p
2N/(mS +Jc8%LHA'R:#b//!	()!/
!/ "h��h��'AT0�P��P��P��5V
3RuOCX�8cJ+*D1Hv^G"/,!/		/!�.!� ``;>54&#"#4&#"#4&#"#4&#".1'7�0Q<#   2p
3N/(oQh��B��'AU0P0��P��0��5V3RuNDW!h�����9h4&#"#4&#".32>=4&#"#4&#"7'7#".'.7614632>32>32>32` 1p
2N/*tZ2WA& h��h +Jc8%LHA'R:"b//!	()!/
!/�P��P��5V2StOHY&AW2�P��h��h"�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``8%4&#"#4&#".32>54&#"#4&#"7'7` 2p
3N/*s[1XA& h��h�r��0��5V3RuNHY&AW2P0��h��h���3b%12>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32p2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/ &AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``24&#"#4&#".32>54&#"#4&#"#` 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2P0�����`�9q��>321>54&#".#".#"54671>32>329>54&#".#".#"1.54>3:>321623212>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32f
.BT<	11	<T)
--�#gI55Ig#+5!8L+99+L8!5+�2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/8B.;.<TT<.[)�G)IggI)G']7+L8!!8L+7]��&AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!���`�0^�>54&#"1.#".#"154632146321>32>54&#*#1.#"*#"1.5467>32'4&#"#4&#".32>54&#"#4&#"#B.

7"#7

/A/!

/!!/
!/#U;?%&?<T#+5bFG))FFb6*� 2p
3N/*s[1XA&  b(.B%%B.(N!/!//!/!N*>&<T##T<%?%T3Gf##fG3T���0��5V3RuNHY&AW2P0�����@�#.8BFJT^hlp5'7'!467%5'7'!467"34&#112#546"354&#3535"34&#12#546"354&#3535@h��h6J��J6`h��h6J��J6��.B�B.!/�/!`P���.B�B.!/�/!`P����h��h�Q8�P�8Q`�h��h�R7��8QA/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@�#-15?CG5'7'!4675'7'!467"354&#3535"354&#3535�h��h6J��J6��h��h6J��J6!/�/!P���!/�/!P���~�h��h�R8��8R`�h��h�R7�O�7R@/!pp!/��  @  �/!pp!/��  @  ���@@!=GQ[eim%>54.#"5.54>325>54.#"54>32'12!46"34&#12#546"354&#3535�:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�<T��T<.B�B.!/�/!`P����.�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+�T<��<T B.��.B /!pp!/ PP�  @  ���@@	=Y12!46"354&#35357>54.#"5.54>325>54.#"54>32�<T��T<!/�/!P����:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�T<��<T@/!pp!/��  @  .�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+���@�#-7AEIS]gko%#4632#7'7%#4632#7'7"34&#12#546"354&#3535"34&#12#546"354&#3535@�T<<T�h��h`�T<<T�h��h��.B�B.!/�/!`P���.B�B.!/�/!`P�����<TT<�P�h��h�<TT<���h��h�A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@`#-15?CG%#4632#7'7%#4632#7'7"354&#3535"354&#3535@�T<<T�h��h`�T<<T�h��h��!/�/!P���!/�/!P�����<TT<�P�h��h�<TT<��h��h�/!pp!/��  @  �/!pp!/��  @  @����&0:>BLV`dh!46323'7'7%12!46"34&#112#546"354&#3535"34&#12#546"354&#3535���T<<T�h��h�N<T��T<.B�B.!/�/!`P���.B�B.!/�/!`P�����`<TT<Ph��h�T<�P�<T A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  @����%)-7;?!46323'7'7%12!46"354&#3535"354&#3535���T<<T�h��h�N<T��T<!/�/!P���!/�/!P�����`<TT<Ph��h�T<�P�<T@/!pp!/��  @  �/!pp!/��  @  >����%/37AKU_cg>32!#'7%"34&#112#546"354&#353512!46"34&#12#546"354&#3535AQ8<T���h��hR.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����6JT<�P�h��h`A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  @����#-7;?>32!#'737"354&#353512!46"354&#3535BR8;U���h��h".�/!P���;U��T<".�/!P����6JT<�P�h��h@/!pp!/��  @  T<��<T@/!pp!/��  @  ��!+5?IMQ>54.#"5.54>3212!46"34&#12#546"354&#3535�,4+Jc88cJ+4,"&AW22WA&"�<T��T<.B�B.!/�/!`P���!%l>8cJ++Jc8>l%, T/2WA&&AW2/T 3T<��<T B.��.B /!pp!/ PP�  @  ��	=12!46"354&#35357>54.#"5.54>32�<T��T<!/�/!P���`,4+Jc88cJ+4,"&AW22WA&"�T<��<T@/!pp!/��  @  A%l>8cJ++Jc8>l%, T/2WA&&AW2/T 	`����%/9=ANp35#5#"&546712!46"34&#12#546"354&#35352654&#"3>54.#"5.54>32 @@)7B..B7)�p<T��T<.B�B.!/�/!`P���P<TT<<TT<�,4+Jc88cJ+4,"&AW22WA&" _?*.BB.*?�T<��<T B.��.B /!pp!/ PP�  @  �T<<TT<<T��%l>8cJ++Jc8>l%, T/2WA&&AW2/T `����"&*7;]#"&5467312!46"354&#35352654&#"3735>54.#"5.54>32 )7B..B7) �P<T��T<!/�/!P���P<TT<<TT<@��,4+Jc88cJ+4,"&AW22WA&"?*.BB.*?�T<��<T@/!pp!/��  @  �T<<TT<<T�  �%l>8cJ++Jc8>l%, T/2WA&&AW2/T ����`	'+/37;@D12!46"34&#12#546"354&#3535357#3!35#7'<T��T<.B�B.!/�/!`P���` �qqj���ࠠjqq�T<��<T B.��.B /!pp!/ PP�  @  ���jqr�    rq	����`	#',012!46"354&#3535357#3!35#7'<T��T<!/�/!P���` �qqj���ࠠjqq�T<��<T@/!pp!/��  @  ���jqr�    rq~����#-7;?3'7'7#!#'73>32'"34&#12#546"354&#3535��h��h���h��h�Q87R�.B�B.!/�/!`P���h��h�h��h6JJ6`B.��.B /!pp!/ PP�  @  ~����#'+3'7'7#!#'73>32'"354&#3535��h��h���h��h�Q87R�!/�/!P���h��h�h��h6JJ6@/!pp!/��  @  ~����#-7AEI3'7'7#!#'73>75'7'9'"34&#12#546"354&#3535��h��h���h��h�H2h��h2H�.B�B.!/�/!`P���h��h�h��h2H�h��h�H2`B.��.B /!pp!/ PP�  @  ~����",04>715'7'3'7'7#!#'737"354&#3535�H2h��h2H�h��h���h��hÏ!/�/!P���2H�h��h�H2h��h�h��h@/!pp!/��  @  ��@	(,0:DNX\`��12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
��@	%/37_�12!46"354&#353512!46"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
@���	(,0:DNX\`�12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%	@���	%/37e12!46"354&#353512!46"354&#35357>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%~����$.26>32!#'7%"34&#12#546"354&#3535�Q8<T���h��hR.B�B.!/�/!`P���6JT<��h��h`B.��.B /!pp!/ PP�  @  ~���� $9>32!#'7%"354&#3535�Q8<T���h��hR!/�/!P���6JT<��h��h@/!pp!/��  @  `����%/37!46323'7'7#'"34&#12#546"354&#3535���T<7R�h��h.B�B.!/�/!`P����<TJ6h��h�B.��.B /!pp!/ PP�  @  `����!%3'7'7#!46329'"354&#3535�h��h��T<7R�!/�/!P���h��h�<TJ6@/!pp!/��  @  �����%/375'7'!467"34&#12#546"354&#3535h��h6J��J6.B�B.!/�/!`P����h��h�R7��8QB.��.B /!pp!/ PP�  @  �����#5'7'!467"354&#3535h��h6J��J6!/�/!P����h��h�R7��8Q?/!pp!/��  @  �����%/37%7'75#4632"34&#12#546"354&#3535 h��h�T<<T�.B�B.!/�/!`P�����h��h�<TT<���B.��.B /!pp!/ PP�  @  �����#%#4632#7'7"354&#3535�T<<T�h��h!/�/!P����<TT<���h��h"/!pp!/��  @  ����	+<M#5353#73+"&=3;26='#353735#%!2#!"&=463"3!26=4&#!   `  � & % 
 
�0       � (88(��(88(%& %&���ࠠ��%&��

�``�@@��`8(�(88(�(8 &�%&�%����	+<#5353#73+"&=3;26=73#5#'#53%"3!26=4&#!   `  � & % 
 
�0       �`(88( (88(���ࠠ��%&��

�``�@@��`8(�(88(�(8����$5FO~#"&=46;5#";5#3%3532654&+5!2#!"&=463"3!26=4&#!32+%";2+"&51#1;2654&+"&546;234&+@@

``&%``@�� @&%` (88(��(88(%& %&�� @

@�&% 

 
 % &% 

 
 % �@
`
 %`&� @�`%%`8(�(88(�(8 &�%&�%`

`%%


&%%


%����$5>l#53#"&=46;#";5%532+#"3!26=4&#!32654&#%32#4&+";2+"&5131;2654&+"&546@@``%&``

@��`%&@ (88( (88(�� @

` % 
 

 %& % 
 

 %&� �&`% 
`
@@@%%`@8(�(88(�(8�@

 %


%%&


%%����!/:GP\e!2#!"&=463"3!26=4&#!##546;2#'"354&+532+#5732654&#532+#732654&# (88(��(88(%& %&��` & % @
`
 �`%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 @%%`� @

 @%%`�@

����)6?KT!2#!"&=463354&+"357"354&+3532654&+732654&#3532654&+32654&# (88(��(88(� % &  
`
 � @&%` @

` @&%` @

�8(�(88(�(8�`�%%�``
  
 �`%%@ @

 �`%% @

����!-6@Y!2#!"&=463"3!26=4&#!532+#732654&##5353#7#"&=46;5#";5#3 (88(��(88(%& %&��`%&@  @

�  `  �@

``&%``@�8(�(88(�(8 &�%&�%�@%%`�@

 �ࠠ�`@
`
 %`&� ����%/H!2#!"&=4633532654&+32654&#35#'#3%#"&=46;5#";5#3 (88(��(88( @&%` @

�`  `   @

``&%``@�8(�(88(�(8��`%% @

 �ࠠ�`@
`
 %`&� ����!+7@KU!2#!"&=463"3!26=4&#!535#3535%532+#732654&#732+5326=4&# (88(��(88(%& %&����� `�`%&@  @

``%&` @

�8(�(88(�(8 &�%&�%�@ �`  @%%`�@

 &`%� �
`
����&/:D!2#!"&=463535#3535%3532654&+32654&#7326=4&+326=4&# (88(��(88(��� `� @&%` @

``&%` @

�8(�(88(�(8�@ �`  �`%% @

 �%`& �
`
����!.[hq!2#!"&=463"3!26=4&#!'#353735#46;2+"&53;2654&+532654&+"#532+#5732654&# (88(��(88(%& %&��P0       & %

& % 
 

  

 
�`%&@  @

�8(�(88(�(8 &�%&�%�`�@@��@%%		%%


 


@%%`� @

����KXa!2#!"&=463'#353735#346;2+32+"&5#;2654&'>54&+"#3532654&+732654&# (88(��(88(P0        
 

  

 
 % &

% &� @&%` @

�8(�(88(�(8�`�@@��@


 


%%		%%�`%%@ @

����!$/<IR!2#!"&=463"3!26=4&#!#73535#5#%'#353735#532+#5732654&# (88(��(88(%& %&���::    `��0       @`%&@  @

�8(�(88(�(8 &�%&�%�Pp@@ �� @`�@@��@@%%`� @

����+8A!2#!"&=46353535#5#%'#353735#3532654&+732654&# (88(��(88(�::    `��0       @ @&%` @

�8(�(88(�(8�PP @@ �� @`�@@��@�`%%@ @

����!2CPW!2#!"&=463"3!26=4&#!32+"&=463";26=4&+'#353735#73#'3 (88(��(88(%& %&�� %& %&

 

 �0       P0 @ @ �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
@`�@@�ਨ������!2?F!2#!"&=463";26=4&+";26=4&+'#353735#'#37# (88(��(88(&% &% 

 

 �0       P0 @ @ �8(�(88(�(8`%`&%`& 
`

`
@`�@@�ਨ������!6CLe!2#!"&=463"3!26=4&#!;26=#+"&=#7532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��% & 
 
 �`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%� &%��

 @@%%`� @

`@
`
 %`&� ����%2;T!2#!"&=463;26=#+"&=#73532654&+732654&##"&=46;5#";5#3 (88(��(88(% & 
 
 � @&%` @

�@

``&%``@�8(�(88(�(8� &%��

 @�`%%@ @

`@
`
 %`&� ����!-8E!2#!"&=463"3!26=4&#!3#53#3#5373#%#5'53753 (88(��(88(%& %&�����`��  V*pp*j @ 00 �8(�(88(�(8 &�%&�%�@ � @ 
V�VVpp````  HH  ����'4"3!26=4&#!3#53#3#5373#%#5'53753(88( (88(�����`��  V*pp*j @ 00 �8(�(88(�(8�@ � @ 
V�VVpp````  HH  @���%-9F!2#!"&=46"3!26=4&##53%3535#53#5##53!'#353735#��(88(� (88(&&�&&� �� @�@  `  �0       �8(�(88(�(8 &�%&�%� ���  @`�``�``�@@��@���)6!2#!"&=46#5#3%3535##5#35335#'#353735#��(88(� (88� ��  @�@`  `  P0       �8(�(88(�(8����  @`�``�``�@@������!Bq�!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�%&`%%

`

�%%


&%%


%%%


&%%


%����1`�!2#!"&=463#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8�

`

%%`&%�%%


&%%


%%%


&%%


%@���&;ITbm!2#!"&=46"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+��(88(� (88(&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
 �8(�(88(�(8 &�%&�%��� &%��

 `�%%��
  
``�%%��
  
@���+9DR]"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+�(88(�(88(��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �8(�(88(�(8����� 

��%& `�%%��
  
``�%%��
  
����!-6epz!2#!"&=463"3!26=4&#!532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&# (88(��(88(%& %&��`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

�8(�(88(�(8 &�%&�%�@%%`�@

 %%


&%%


%&`%� �
`
����%T_i!2#!"&=4633532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&# (88(��(88( @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

�8(�(88(�(8��`%% @

 %%


&%%


%�%`& �
`
����!-;F!2#!"&=463"3!26=4&#!#35#535###546;2#'"354&+ (88(��(88(%& %&��` `  ``` & % @
`
 �8(�(88(�(8 &�%&�%`�  �  ``�%%��
  
����*5"3!26=4&#!#53#3#53'##546;2#'"354&+(88( (88(��` `  ` �` & % @
`
 �8(�(88(�(8�  �  @`�%%��
  
����!1:CP\e!2#!"&=463"3!26=4&#!532+732654&#32654&#7'#353735#532+#732654&# (88(��(88(%& %&��`%

&` @

@@

�0       @`%&@  @

�8(�(88(�(8 &�%&�%�x%		%�@

`@

 `�@@��@@%%`�@

���� )2?KT!2#!"&=46332654&'>54&+32654&#32654&#7'#353735#3532654&+32654&# (88(��(88(`&

%` @

@@

�0       @ @&%` @

�8(�(88(�(8�h%		% @

`@

 `�@@��@�`%% @

����!/:D]!2#!"&=463"3!26=4&#!#'#537353%32+5326=4&##"&=46;5#";5#3 (88(��(88(%& %&��P00      ��`%&` @

�@

``&%``@�8(�(88(�(8 &�%&�%��``�@@���&`%� �
`
`@
`
 %`&� ����)3L!2#!"&=46335#'#5#37%326=4&+326=4&##"&=46;5#";5#3 (88(��(88(P      00��`&%` @

�@

``&%``@�8(�(88(�(8���@@��``��%`& �
`
`@
`
 %`&� ����!-:Cr!2#!"&=463"3!26=4&#!3#53#37532+#5732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&�� ����`@`%&@  @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@ � @ @@%%`� @

 %%


&%%


%����)2a!2#!"&=46335#535#35#73532654&+732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88( ``����� @&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8� @ � ��`%%@ @

 %%


&%%


%����'3=G!2#!"&=46"3!26=4&#3535#3#35#535#535#35353535#3535��(88(�`(88(&%�&%�� @�� `  `��� ``�� `�8(�(88(�(8 &�%&�%`��  �  �  @@ �` @ �` ����#-7!2#!"&=463535#3#35#535#535#35353535#3535��(88(�`(88h @�� `  `��� ``�� `�8(�(88(�(8���  �  �  @@ �` @ �` ����!1BJy!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��   %%


&%%


%���� 19h!2#!"&=463";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
��   %%


&%%


%����!-6BNW!2#!"&=463"3!26=4&#!532+#732654&#53#5##537532+#732654&# (88(��(88(%& %&��`%&@  @

�  `  �`%&@  @

�8(�(88(�(8 &�%&�%�@%%`�@

@`�``�` @%%`�@

����%1=F!2#!"&=4633532654&+32654&##5#35335#3532654&+32654&# (88(��(88( @&%` @

�`  `  @ @&%` @

�8(�(88(�(8��`%% @

@`�``�@�`%% @

����!-6C!2#!"&=463"3!26=4&#!532+#732654&##5'53753 (88(��(88(%& %&��``%&@  @

� @ 00 �8(�(88(�(8 &�%&�%�@%%`�@

````  HH  ����%2!2#!"&=4633532654&+32654&#75#'5#3 (88(��(88(` @&%` @

�@ 00 @ �8(�(88(�(8��`%% @

``  HH  ``����!B!2#!"&=463"3!26=4&#!+"&=46;2#4&+";2653 (88(��(88(%& %&��`& %& & 
 

 
 �8(�(88(�(8 &�%&�%�%&`%%

`

����1"3!26=4&#!+"&=46;2#4&+";2653(88( (88(��`& %& & 
 

 
 �8(�(88(�(8�%&`%%

`

����*;Lz�7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!";2+"&51#1;2654&+"&546;234&##536% &% 

 
,"�� (88(��(88(%& %&��@&% 

 
 % &% 

 
 %�� D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%@%%


&%%


%� �����*;io+"&=46;2''#"&=46;2'"3!26=4&#!32#4&+";2+"&5131;2654&+"&546#536 %& %

 
,"��(88( (88(��@ % 
 

 %& % 
 

 %&�� D&`%&`	
`

`
," 8(�(88(�(8`%


%%&


%%� �����!/8HQZ!2#!"&=463"3!26=4&#!##532##'32654&#532+732654&#32654&# (88(��(88(%& %&�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8 &�%&�%�`�%%`�@

Xx%		%�@

`@

����'7@I"3!26=4&#!##532##'32654&#532+732654&#32654&#(88( (88(�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8�`�%%`�@

Xx%		%�@

`@

����!BOXdm!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537532+#5732654&#532+#732654&# (88(��(88(%& %&��& %& & 
 

 
  `%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�%&`%%

`

`@%%`� @

 @%%`�@

����1>GS\!2#!"&=463#+"&=46;234&+";26573532654&+732654&#3532654&+32654&# (88(��(88(� 
 

 
 & &% &  @&%` @

` @&%` @

�8(�(88(�(8�

`

%%`&%`�`%%@ @

 �`%% @

����!)BP[!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#33##546;2#'"354&+ (88(��(88(%& %&��@ @�@@

``&%``@�` & % @
`
 �8(�(88(�(8 &�%&�%`��  `@
`
 %`&� `�%%��
  
����1?J!2#!"&=4633535##"&=46;5#";5#33354&+"357"354&+ (88(��(88(@ @�@@

``&%``@� % &  
`
 �8(�(88(�(8���  `@
`
 %`&� `�%%�``
  
����!-8BL!2#!"&=463"3!26=4&#!'373#'#'32+5326=4&#535#3535 (88(��(88(%& %&��@ 00 @@ 00 �`%&` @

@�� `�8(�(88(�(8 &�%&�%�pTTppTT�&`%� �
`
@@ �` ����'1;!2#!"&=463373'7#'##326=4&+326=4&#535#3535 (88(��(88(@ 00 @@ 00 �`&%` @

@�� `�8(�(88(�(8�pTTppTT�%`& �
`
@@ �` ����!,6GXy!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&++"&=46;2#4&+";2653 (88(��(88(%& %&��`%&` @

� %& %&

 

  & %& & 
 

 
 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

����%6Gh!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+#+"&=46;234&+";265 (88(��(88(`&%` @

�&% &% 

 

   
 

 
 & &% &�8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%����!1BMW_!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#33535# (88(��(88(%& %&��@ %& %&

 

 �`%&` @

� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
��  ���� 1<FN!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#33535# (88(��(88(@&% &% 

 

 �`&%` @

� @��8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
��  ����!-3b!2#!"&=463"3!26=4&#!'373#'#%#537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%����"P"3!26=4&#!'373#'#%#53732#4&+";2+"&5131;2654&+"&546(88( (88(��@@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�8(�(88(�(8�pTTppTT  �%


%%&


%%@���*4DUv�!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT@���$4Efr!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#��(88(� (88(`&%` @

�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT����!.7CLT!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#!3535# (88(��(88(%& %&��`%&@  @

��`%&@  @

` @��8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

��  ����&2;C!2#!"&=4633532654&+732654&#3532654&+32654&#!3535# (88(��(88(� @&%` @

�� @&%` @

` @��8(�(88(�(8��`%%@ @

 �`%% @

��  ����!/:iu~!2#!"&=463"3!26=4&#!##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&# (88(��(88(%& %&��` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 %%


&%%


%@@%%`�@

����)Xdm!2#!"&=463354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&# (88(��(88(� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�8(�(88(�(8�`�%%�``
  
 %%


&%%


%@�`%% @

����!-N}!2#!"&=463"3!26=4&#!#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%`�  �  �%&`%%

`

�%%


&%%


%����=l!2#!"&=463#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+ (88(��(88(@ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �8(�(88(�(8��  �  �

`

%%`&%�%%


&%%


%����!/:EOW!2#!"&=463"3!26=4&#!##546;2#'"354&+%32+5326=4&#!3535# (88(��(88(%& %&��@` & % @
`
 �`%&` @

` @��8(�(88(�(8 &�%&�%�`�%%��
  
 &`%� �
`
��  ����)4>F!2#!"&=463354&+"357"354&+%326=4&+326=4&#!3535# (88(��(88(@ % &  
`
 �`&%` @

` @��8(�(88(�(8�`�%%�``
  
 �%`& �
`
��  ����!-:@!2#!"&=463"3!26=4&#!'373#'#%'#353735##53 (88(��(88(%& %&��@@ 00 @@ 00 0       � �8(�(88(�(8 &�%&�%�pTTppTT�`�@@�� �����)/"3!26=4&#!'373#'#%73#5#'#53#53(88( (88(��@@ 00 @@ 00 0       @� �8(�(88(�(8�pTTppTT�`�@@�� �����!.;A!2#!"&=463"3!26=4&#!#5'53753'#353735##53 (88(��(88(%& %&��` @ 00 p0       � �8(�(88(�(8 &�%&�%�```  HH  @`�@@�� �����*0"3!26=4&#!#5'5375373#5#'#53#53(88( (88(��` @ 00 p0       @� �8(�(88(�(8�```  HH  @`�@@�� �����!-!2#!"&=463"3!26=4&#!53#5##53 (88(��(88(%& %&��@  `  �8(�(88(�(8 &�%&�%�`�``�`����"3!26=4&#!53#5##53(88( (88(��@  `  �8(�(88(�(8�`�``�`����!-9E!2#!"&=463"3!26=4&#!3#53#37'373#'#73#53#3 (88(��(88(%& %&�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8 &�%&�%�@ � @ pTTppTT`@ � @ ����(4"3!26=4&#!3#53#37'373#'#73#53#3(88( (88(�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8�@ � @ pTTppTT`@ � @ ��`�!/:AM!2#!"&=463"3!26=4&#!##546;2#'"354&+73#'3#35#535#� (88(��(88(%& %&��` & % @
`
 �0 @ @ � `  `�8(�(88(�(8 &�%&�%�`�%%��
  
���� �  �  ��`�)0<"3!26=4&#!##546;2#'"354&+73#'3#53#3#53�(88( (88(��` & % @
`
 �0 @ @ � `  ` �8(�(88(�(8�`�%%��
  
����   �  ����!,6BK[l!2#!"&=463"3!26=4&#!32+5326=4&#532+#732654&#%32+"&=46";26=4&+ (88(��(88(%& %&��`%&` @

``%&@  @

�` %& %&

 

 �8(�(88(�(8 &�%&�%@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
����%1:J[!2#!"&=463326=4&+326=4&#3532654&+32654&#%";26=4&#";26=4&+ (88(��(88(�`&%` @

` @&%` @

�`&% &% 

 

 �8(�(88(�(8`�%`& �
`
 �`%% @

 %`&%`& 
`

`
@���*4DU]i!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&+33535#'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

 � @�@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT@���$4EMY!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+33535#373'7#'#��(88(� (88(`&%` @

�&% &% 

 

 � @�@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT@���+1`l!2#!"&=46"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#��(88(� (88(&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00 �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%ppTTppTT@���!O["3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#�(88(�(88(�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �8(�(88(�(8�pTTppTT  �%


%%&


%%ppTTppTT����!1BMW�!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 �`%&` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%���� 1<Fu!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 �`&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%����!.7CL{!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

 %%


&%%


%����&2;j!2#!"&=4633532654&+732654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �8(�(88(�(8��`%%@ @

 �`%% @

 %%


&%%


%����!,6GX`!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&+33535# (88(��(88(%& %&��`%&` @

� %& %&

 

 � @��8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  ����%6GO!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+33535# (88(��(88(`&%` @

�&% &% 

 

 � @��8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  ����!)5=!2#!"&=463"3!26=4&#!3535#'373#'#%3535# (88(��(88(%& %&��@ @�@ 00 @@ 00  @��8(�(88(�(8 &�%&�%`��  PpTTppTT���  ����$,!2#!"&=4633535#373'7#'#3535# (88(��(88(@ @�@ 00 @@ 00  @��8(�(88(�(8���  PpTTppTT ��  ����!/8@J!2#!"&=463"3!26=4&#!##532##'32654&#33535#535#3535 (88(��(88(%& %&��: `%%@&Z@

� @�� `�8(�(88(�(8 &�%&�%�`�%%`�@

��  @@ �` ����'/9!2#!"&=4633'2654&+35532654&#33535#535#3535 (88(��(88(:@&@%%` @

� @�� `�8(�(88(�(8�``%%�``@

��  @@ �` ����!.1<C!2#!"&=463"3!26=4&#!'#353735##73535#5#73#'3 (88(��(88(%& %&��P0       �::    `0 @ @ �8(�(88(�(8 &�%&�%�`�@@��Pp@@ �� ������� +2!2#!"&=463'#353735#53535#5#'#37# (88(��(88(P0       �::    `0 @ @ �8(�(88(�(8�`�@@��PP @@ �� �������!+18!2#!"&=463"3!26=4&#!535#3535#53?3#'3 (88(��(88(%& %&�� �� `� �0 @ @ �8(�(88(�(8 &�%&�%�@ �` ` �������� '"3!26=4&#!3##53##53?3#'3(88( (88(�� `` ��@� �0 @ @ �8(�(88(�(8� `� � ��������!.;D]!2#!"&=463"3!26=4&#!'#353735#532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��P0       @`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%�`�@@��@@%%`� @

`@
`
 %`&� ����*3L!2#!"&=463'#353735#3532654&+732654&##"&=46;5#";5#3 (88(��(88(P0       @ @&%` @

�@

``&%``@�8(�(88(�(8�`�@@��@�`%%@ @

`@
`
 %`&� ����*;LT7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!3535#�% &% 

 
,"� (88(��(88(%& %&��` @�D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%`��  ����*;C+"&=46;2''#"&=46;2'"3!26=4&#!#53##� %& %

 
,"�(88( (88(��`@�@ D&`%&`	
`

`
," 8(�(88(�(8�  �����!.:EO!2#!"&=463"3!26=4&#!'#353735##35#535#732+5326=4&# (88(��(88(%& %&��p0       ` `  `�`%&` @

�8(�(88(�(8 &�%&�%�`�@@�� �  �   &`%� �
`
����)4>!2#!"&=463'#353735##35#535#7326=4&+326=4&# (88(��(88(p0       ` `  `�`&%` @

�8(�(88(�(8�`�@@�� �  �   �%`& �
`
����!Ngs|!2#!"&=463"3!26=4&#!46;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&# (88(��(88(%& %&��& %

& % 
 

  

 
 @

``&%``@@`%&@  @

�8(�(88(�(8 &�%&�%�%%		%%


 


@@
`
 %`&� @@%%`�@

����>Wcl!2#!"&=463346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&# (88(��(88( 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�8(�(88(�(8�


 


%%		%%@@
`
 %`&� @�`%% @

`���-8DNX!2#!"&=46"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535��(88(�`(88(&%�&%��` & % @
`
 � `  `��� ``�� `�8(�(88(�(8 &�%&�%�`�%%��
  
�  �  @@ �` @ �` `���(4>H!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535��(88(�`(88� % &  
`
 � `  `��� ``�� `�8(�(88(�(8�`�%%�``
  
�  �  @@ �` @ �` ����!/:HSt!2#!"&=463"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653 (88(��(88(%& %&��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8 &�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

����)7Bc"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653(88( (88(��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8�`�%%��
  
``�%%��
  
�%&`%%

`

����!/=HO!2#!"&=463"3!26=4&#!#'#5373537##546;2#'"354&+73#'3 (88(��(88(%& %&��00      �` & % @
`
 �0 @ @ �8(�(88(�(8 &�%&�%��``�@@��``�%%��
  
��������,7>"3!26=4&#!#'#5373537##546;2#'"354&+73#'3(88( (88(��00      �` & % @
`
 �0 @ @ �8(�(88(�(8��``�@@��``�%%��
  
��������!+7CL!2#!"&=463"3!26=4&#!75#3357#35#535#532+#732654&# (88(��(88(%& %&��@�����@ `  `�`%&@  @

�8(�(88(�(8 &�%&�%��  �  ��  �   @%%`�@

����&2;!2#!"&=46375#3357#35#535#3532654&+32654&# (88(��(88(@�����@ `  `� @&%` @

�8(�(88(�(8��  �  ��  �   �`%% @

����!1BJR!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#!3535# (88(��(88(%& %&��@ %& %&

 

 � @� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��  ��  ���� 19A!2#!"&=463";26=4&#";26=4&+33535#!3535# (88(��(88(@&% &% 

 

 � @� @��8(�(88(�(8`%`&%`& 
`

`
��  ��  ����!)BL!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#375#335 (88(��(88(%& %&��@ @�@@

``&%``@`������8(�(88(�(8 &�%&�%`��  `@
`
 %`&� @�  �  ����1;!2#!"&=4633535##"&=46;5#";5#375#335 (88(��(88(@ @�@@

``&%``@`������8(�(88(�(8���  `@
`
 %`&� @�  �  ����!,6C\!2#!"&=463"3!26=4&#!32+5326=4&#'#353735##"&=46;5#";5#3 (88(��(88(%& %&��`%&` @

�0       �@

``&%``@�8(�(88(�(8 &�%&�%@&`%� �
`
@`�@@��@
`
 %`&� ����%2K!2#!"&=463326=4&+326=4&#'#353735##"&=46;5#";5#3 (88(��(88(`&%` @

�0       �@

``&%``@�8(�(88(�(8`�%`& �
`
@`�@@��@
`
 %`&� ����!-[k|!2#!"&=463"3!26=4&#!#35#535#7";2+"&51#1;2654&+"&546;234&#;2+"&=46";26=4&+ (88(��(88(%& %&��@ `  `�&% 

 
 % &% 

 
 %� %& %&

 

 �8(�(88(�(8 &�%&�%`�  �   %%


&%%


%&`%&`% 
`

`
����J[l!2#!"&=463#35#535#7";2+"&51#1;2654&+"&546;234&#3";26=4&+";26=4&+ (88(��(88(@ `  `�&% 

 
 % &% 

 
 %�&% &% 

 

 �8(�(88(�(8��  �   %%


&%%


%%`&%`& 
`

`
����!/8FQ_h!2#!"&=463"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&# (88(��(88(%& %&��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8 &�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

����'5@NW"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&#(88( (88(��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8�`�%%`�@

``�%%��
  
``�%%`�@

����!:FP!2#!"&=463"3!26=4&#!#"&=46;5#";5#37#35#535#535#3535 (88(��(88(%& %&��@

``&%``@` `  `��� `�8(�(88(�(8 &�%&�%�@
`
 %`&� `�  �  @@ �` ����)5?!2#!"&=463#"&=46;5#";5#37#35#535#535#3535 (88(��(88(�@

``&%``@` `  `��� `�8(�(88(�(8�@
`
 %`&� `�  �  @@ �` @`	+Dahx#5353#73+"&=3;26='#353735#'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46�  `  � & % 
 
�0       ��&%�%(88(� 
� 

@%��(88(��v
` &%��&%��ࠠ��%&��

�``�@@��``�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@�`"2<Q^%#!"&5463!;!"3!;"3!26=4&##5353#73+"&=3;26=73#5#'#53�%� %&@&���(88( �
���%& %&�  `  � & % 
 
�0       �@%&�&�%@8(�(8�
�&�%&�%��ࠠ��%&��

�``�@@��@`$AHXa��3532654&+%5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=463!2#!"&5732+%";2+"&51#1;2654&+"&546;234&+#"&=46;5#";5#3� @&%` ���&%�%(88(� 
� 

@%��(88(��v
�% &%��&`@

@�&% 

 
 % &% 

 
 % �@

``&%``@��`%%``�&� &%@8(�(8�`@

�
�%@8(�(8��
���&%�&%�

`%%


&%%


%�@
`
 %`&� @�`"2KW`�%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#3%3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[@

``&%``@�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� @�`%% @

 %%


&%%


%
@`5<LZeqz��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �`%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 @%%`�@

 @%%`�@

	@�`"2@KW`lu%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 � @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �`%% @

 �`%% @

@`5<LXak�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5353#7#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 �ࠠ�`@
`
 %`&� @�`"2>GQj%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#35#'#3%#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `   @

``&%``@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �ࠠ�`@
`
 %`&� 	@`5<LVbkv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535%532+#732654&#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%��� `�`%&@  @

``%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �`  @%%`�@

 &`%� �
`
@�`"2<HQ\g%#!"&5463!;!"3!;!2#!"&=46535#3535%3532654&+32654&#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%��� `� @&%` @

``&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�@ �`  �`%% @

 �%`& �
`
@`5<LY���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#46;2+"&53;2654&+532654&+"#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       & %

& % 
 

  

 
�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@%%		%%


 


@%%`�@

@�`"2?lx�%#!"&5463!;!"3!;!2#!"&=46'#353735#346;2+32+"&5#;2654&'>54&+"3532654&+32654&#�%� %&@&���(88( �
��� &%��&%k0        
 

  

 
 % &

% &� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@


 


%%		%%�`%% @

	@`5<LOZgs|5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#73535#5#%'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�::    `��0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�Pp@@ �� @`�@@��@@%%`�@

@�`"25@MYb%#!"&5463!;!"3!;!2#!"&=4653535#5#%'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%�::    `��0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�PP @@ �� @`�@@��@�`%% @

@`5<L\mz�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+'#353735#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&% %& %&

 

 �0       P0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
@`�@@�ਨ��@�`"2CTah%#!"&5463!;!"3!;!2#!"&=46";26=4&+";26=4&+'#353735#'#37#�%� %&@&���(88( �
��� &%��&%&% &% 

 

 �0       P0 @ @ �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
@`�@@�ਨ��@`5<Lamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46;26=#+"&=#7532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%% & 
 
 �`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&� &%��

 @@%%`�@

`@
`
 %`&� @�`"2GS\u%#!"&5463!;!"3!;!2#!"&=46;26=#+"&=#73532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%% & 
 
 � @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&� &%��

 @�`%% @

`@
`
 %`&� @`5<LXcp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#3#5373#%#5'53753����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�����`��  V*pp*j @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ 
V�VVpp````  HH  @�`"2>IV%#!"&5463!;!"3!;"3!26=4&#3#53#3#5373#%#5'53753�%� %&@&���(88( �
���%& %&������`��  V*pp*j @ 00 �@%&�&�%@8(�(8�
�&�%&�%�@ � @ 
V�VVpp````  HH  `5<LRZfs!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&##53%3535#53#5##53!'#353735#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� �� @�@  `  �0        8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%� ���  @`�``�``�@@���`"28@LY%#!"&5463!;!"3!;!2#!"&=46#5#3%3535##5#35335#'#353735#`%� %&@&��`(88(��
��`�&&� &&�� ��  @�@`  `  P0       �@%&�&�%@8(�(8�
�%�&%�&����  @`�``�``�@@��@`5<Lm��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

�%%


&%%


%%%


&%%


%@�`"2S��%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%�%%


&%%


%%%


&%%


%
`5<LShv���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%��� &%��

 `�%%��
  
``�%%��
  
	�`"29N\gu�%#!"&5463!;!"3!;"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+`%� %&@&��`(88(��
��`&&�&&��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%��� 

��%& `�%%��
  
``�%%��
  
	@`5<LXa���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 %%


&%%


%&`%� �
`
@�`"2>Gv��%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&+�%� %&@&���(88( �
��� &%��&% @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 %%


&%%


%�%`& �
`
@`5<LXfq5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535###546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ `  ``` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  ``�%%��
  
@�`"2>LW%#!"&5463!;!"3!;"3!26=4&##53#3#53'##546;2#'"354&+�%� %&@&���(88( �
���%& %&� `  ` �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%`  �  @`�%%��
  

@`5<L\en{��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+732654&#32654&#7'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%

&` @

@@

�0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�x%		%�@

`@

 `�@@��@@%%`�@

	@�`"2BKTamv%#!"&5463!;!"3!;!2#!"&=4632654&'>54&+32654&#32654&#7'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%`&

%` @

@@

�0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�h%		% @

`@

 `�@@��@�`%% @

@`5<LZep�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#537353%32+5326=4&+#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k00      ��`%&` @

@�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@���&`%� �
`
`@
`
 %`&� @�`"2@KVo%#!"&5463!;!"3!;!2#!"&=4635#'#5#37%326=4&+326=4&+#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k      00��`&%` @

@�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&���@@��``��%`& �
`
`@
`
 %`&� @`5<LXdm�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37532+#732654&#7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`@`%&@  @

�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ @@%%`�@

 %%


&%%


%@�`"2>JS�%#!"&5463!;!"3!;!2#!"&=4635#535#35#73532654&+32654&#7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%;``����� @&%` @

�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&� @ � ��`%% @

 %%


&%%


%`5<LT`jt!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#3535#3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%�� @�� `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%`��  �  �  @@ �` @ �` �`"2:FPZ%#!"&5463!;!"3!;!2#!"&=463535#3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&Z @�� `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&`��  �  �  @@ �` @ �` @`5<L\mu�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��   %%


&%%


%@�`"2BS[�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��   %%


&%%


%	@`5<LXamy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#53#5##537532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

@`�``�` @%%`�@

@�`"2>GS_h%#!"&5463!;!"3!;!2#!"&=463532654&+32654&##5#35335#3532654&+32654&#�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `  @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��`%% @

@`�``�@�`%% @

@�`5<LXan5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5'53753����&%�%�(88(� 
� 

@%���(88(`��v
� &%��&%{`%&@  @

� @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

````  HH  @�`"2>GT%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#75#'5#3�%� %&@&���(88(��
��� &%��&%{ @&%` @

�@ 00 @ �@%&�&�%@8(�(8�
�%�&%�&��`%% @

``  HH  ``@�`5<Lm32+#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#+"&=46;2#4&+";2653��(88(�%� %&`� ��(88( �%��

�
�
v��%& %&�& %& & 
 

 
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�%&`%%

`

@�`"2S%#!"&5463!;!"3!;"3!26=4&#+"&=46;2#4&+";2653�%� %&@&���(88(@�
���%& %&�& %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�%&`%%

`

@�`*C`gw��%7'>=4&+";267'#"&=46;2'5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46";2+"&51#1;2654&+"&546;234&##53�% &% 

 
,"'���&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%[&% 

 
 % &% 

 
 %�� �	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@%%


&%%


%� �@�`"2I]��%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2''32#4&+";2+"&5131;2654&+"&546#53�%� %&@&���(88(@�
���%& %&� %& %

 
,"� % 
 

 %& % 
 

 %&�� �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�%


%%&


%%� �	@�`5<LZcs|�5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#532+732654&#32654&#����&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%� `%%@&Z@

``%

&` @

@@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

Xx%		%�@

`@

@�`"2@IYbk%#!"&5463!;!"3!;"3!26=4&###532##'32654&#532+732654&#32654&#�%� %&@&���(88(@�
���%& %&�z `%%@&Z@

``%

&` @

@@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

Xx%		%�@

`@

	@`5<Lmy���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
  `%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

`@%%`�@

 @%%`�@

@�`"2S_ht}%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";26573532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &  @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%`�`%% @

 �`%% @

@`5<LTm{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#33##546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@�` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� `�%%��
  
@�`"2:Sal%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#33354&+"357"354&+�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@� % &  
`
 �@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� `�%%�``
  
@`5<LXcnx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#'32+5326=4&+535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%@ 00 @@ 00 �`%&` @

@��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�&`%� �
`
@@ �` @�`"2>IT^%#!"&5463!;!"3!;!2#!"&=46373'7#'##326=4&+326=4&+535#3535�%� %&@&���(88( �
��� &%��&%@ 00 @@ 00 �`&%` @

@��� `�@%&�&�%@8(�(8�
�%�&%�&�pTTppTT�%`& �
`
@@ �` 	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

@�`"2=HYj�%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+#+"&=46;234&+";265�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

   
 

 
 & &% &�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
��  @�`"2BS^iq%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+33535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
��  @`5<LX^�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%#537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 `� �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT  �%%


&%%


%@�`"2>Dr%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%
`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT	�`"2=HXi��%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT	@`5<LXamv~5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

` @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

��  @�`"2>GS\d%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#!3535#�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

` @��@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

��  	@`5<LZe���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 %%


&%%


%@@%%`�@

@�`"2@Kz��%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 %%


&%%


%@�`%% @

@`5<LXy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  �%&`%%

`

�%%


&%%


%@�`"2>_�%#!"&5463!;!"3!;!2#!"&=46#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&`�  �  �

`

%%`&%�%%


&%%


%	@`5<LZep{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+%32+5326=4&+!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[` & % @
`
 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 &`%� �
`
��  @�`"2@KVai%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+%326=4&+326=4&+!3535#�%� %&@&���(88( �
��� &%��&%[ % &  
`
 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �%`& �
`
��  @`5<LXek5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�`�@@�� �@�`"2>KQ%#!"&5463!;!"3!;"3!26=4&#'373#'#%73#5#'#53#53�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 0       @� �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT�`�@@�� �@`5<LYfl5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#5'53753'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @ 00 p0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�```  HH  @`�@@�� �@�`"2?LR%#!"&5463!;!"3!;"3!26=4&##5'5375373#5#'#53#53�%� %&@&���(88( �
���%& %&�@ @ 00 p0       @� �@%&�&�%@8(�(8�
�&�%&�%�```  HH  @`�@@�� �@`5<LX5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4653#5##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[  `   `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�``�`@�`"2>%#!"&5463!;!"3!;"3!26=4&#53#5##53�%� %&@&���(88( �
���%& %&�  `  �@%&�&�%@8(�(8�
�&�%&�%�`�``�`@`5<LXdp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37'373#'#73#53#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`�@ 00 @@ 00 ���` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ pTTppTT`@ � @ @�`"2>JV%#!"&5463!;!"3!;"3!26=4&#3#53#37'373#'#73#53#3�%� %&@&���(88( �
���%& %&�����`�@ 00 @@ 00 ���`�@%&�&�%@8(�(8�
�&�%&�%�@ � @ pTTppTT`@ � @ @`5<LZelx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+73#'3#35#535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �0 @ @ � `  ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
���� �  �  @�`"2@KR^%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+73#'3#53#3#53�%� %&@&���(88( �
���%& %&��` & % @
`
 �0 @ @ � `  ` �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
����   �  
@`5<LWbnw��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+532+#732654&#%32+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&` @

@�`%&@  @

�` %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
	@�`"2=HT]m~%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+3532654&+32654&#%";26=4&#";26=4&+�%� %&@&���(88( �
��� &%��&%�`&%` @

@� @&%` @

�`&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 �`%% @

 %`&%`& 
`

`

`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&+33535#'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

 � @�@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT	�`"2=HXiq}%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+33535#373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

 � @�@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT`5<LX^��!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�pTTppTT  �%%


&%%


%ppTTppTT�`"2>Dr~%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#`%� %&@&��`(88(��
��`&&�&&�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%ppTTppTT	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%@�`"2BS^i�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%	@`5<LXamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

 %%


&%%


%@�`"2>GS\�%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

 %%


&%%


%	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

 � @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
��  @�`"2=HYjr%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+33535#�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

 � @��@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  @`5<LT`h5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#'373#'#%3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@ 00 @@ 00  @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  PpTTppTT���  @�`"2:FN%#!"&5463!;!"3!;!2#!"&=463535#373'7#'#3535#�%� %&@&���(88( �
��� &%��&%[ @�@ 00 @@ 00  @��@%&�&�%@8(�(8�
�%�&%�&`��  PpTTppTT ��  @`5<LZcku5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#33535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

� @�� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

��  @@ �` @�`"2@IQ[%#!"&5463!;!"3!;!2#!"&=463'2654&+35532654&#33535#535#3535�%� %&@&���(88( �
��� &%��&%U@&@%%` @

� @�� `�@%&�&�%@8(�(8�
�%�&%�&�``%%�``@

��  @@ �` @`5<LY\gn5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##73535#5#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       �::    `0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��Pp@@ �� ���@�`"2?BMT%#!"&5463!;!"3!;!2#!"&=46'#353735#53535#5#'#37#�%� %&@&���(88( �
��� &%��&%k0       �::    `0 @ @ �@%&�&�%@8(�(8�
�%�&%�&�`�@@��PP @@ �� ���@`5<LV\c5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535#53?3#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;�� `� �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �` ` ����@�`"2<BI%#!"&5463!;!"3!;"3!26=4&#3##53##53?3#'3�%� %&@&���(88( �
���%& %&�`` ��@� �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%� `� � ����@`5<LYen�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       @`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@@%%`�@

`@
`
 %`&� @�`"2?KTm%#!"&5463!;!"3!;!2#!"&=46'#353735#3532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k0       @ @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@�`%% @

`@
`
 %`&� @`*C`gw%7'>=4&+";267'#"&=46;2'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#V% &% 

 
,"g���&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @��	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  @�`"2I]e%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2'7#53##�%� %&@&���(88( �
���%& %&�� %& %

 
,"�@�@ �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�  �@`5<LYep{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##35#535#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�0       ` `  `�`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@�� �  �   &`%� �
`
@�`"2?KVa%#!"&5463!;!"3!;!2#!"&=46'#353735##35#535#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%�0       ` `  `�`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�`�@@�� �  �   �%`& �
`
@`5<Ly���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4646;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%& %

& % 
 

  

 
 @

``&%``@@`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%%		%%


 


@@
`
 %`&� @@%%`�@

@�`"2_x��%#!"&5463!;!"3!;!2#!"&=46346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&#�%� %&@&���(88( �
��� &%��&% 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�


 


%%		%%[@
`
 %`&� @�`%% @

	`5<LZeq{�!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%��` & % @
`
 � `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�`�%%��
  
�  �  @@ �` @ �` �`"2@KWak%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&� % &  
`
 � `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
�  �  @@ �` @ �` 	@`5<LZes~�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 ` & % @
`
  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
``�%%��
  
�%&`%%

`

@�`"2@KYd�%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653�%� %&@&���(88( �
���%& %&�`` & % @
`
 ` & % @
`
  & %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

@`5<LZhsz5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#5373537##546;2#'"354&+73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�00      �` & % @
`
 �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@��``�%%��
  
����@�`"2@NY`%#!"&5463!;!"3!;"3!26=4&##'#5373537##546;2#'"354&+73#'3�%� %&@&���(88( �
���%& %&�p00      �` & % @
`
 �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%��``�@@��``�%%��
  
����@`5<LVbnw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4675#3357#35#535#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[�����@ `  `�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��  �  ��  �   @%%`�@

@�`"2<HT]%#!"&5463!;!"3!;!2#!"&=4675#3357#35#535#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%[�����@ `  `� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��  �  ��  �   �`%% @

@`5<L\mu}5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��  ��  @�`"2BS[c%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#!3535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��  ��  @`5<LTmw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#375#335����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@`����� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� @�  �  @�`"2:S]%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#375#335�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@`������@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� @�  �  @`5<LWbo�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+'#353735##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@�0       �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
@`�@@��@
`
 %`&� @�`"2=HUn%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+'#353735##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%`&%` @

@�0       �@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
@`�@@��@
`
 %`&� @`5<LX���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+;2+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  `�&% 

 
 % &% 

 
 % � %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �   %%


&%%


%&`%&`% 
`

`
@�`"2>m~�%#!"&5463!;!"3!;!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+3";26=4&+";26=4&+�%� %&@&���(88( �
��� &%��&%[ `  `�&% 

 
 % &% 

 
 % �&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&`�  �   %%


&%%


%%`&%`& 
`

`

@`5<LZcq|��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&###546;2#'"354&+##532##'32654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

�` & % @
`
 � `%%@&Z@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

``�%%��
  
``�%%`�@

	@�`"2@IWbpy%#!"&5463!;!"3!;"3!26=4&###532##'32654&###546;2#'"354&+##532##'32654&#�%� %&@&���(88( �
���%& %&� `%%@&Z@

�` & % @
`
 � `%%@&Z@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

@`5<Leq{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#"&=46;5#";5#37#35#535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�@

``&%``@` `  `��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@
`
 %`&� `�  �  @@ �` @�`"2KWa%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#37#35#535#535#3535�%� %&@&���(88( �
��� &%��&%�@

``&%``@` `  `��� `�@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� `�  �  @@ �` �	5	!!!�������r��s���s����� �	7!53!7%"&54632�``�``�%%%%��``�`���```%%%%`'#'3!53!3�����@�@�`� ��� ����@	���'!!3#3#3#3#3#3#!!333!�@���������������@����@@�������������@���@@@#5!3!265!!!!!!!!3#!!���%`(8���@����������@�����@%8( ����@@@@@@@@�����2'7>%''`B^@�@1��@ P�<�@8��^B1@�@� ��@P��@8����7'.'7#%5���@�@�;2c����������N@@�@�@��2;N��������������6$3#*10��Q�c��|H�0�@�d8�O�������	6	&7>%811.54632#"&'0>781>7���'P�f��
iiN98((88(	��9s��
���P��'�
��s9	(88((8��9Nii
���9234.234.7.54632#"&'%?�7j30W&%;`e��G�225`Fz�@��%%%	��@@�`;%&W03j7��e�`522�G]�zF�@@�`�	%%%���@����%&"'1;0232677'764'#5�&j&�y�k�(
�
�j�z�%%��m�m�*�%%�z�j�'�
�k�y�&j&�em�m�*���a�6.'32>7>&'#"&'32>7>'aK\j77j\KHYe55eYH~!|F)N!

,TJ="
"�E�wl//lw�E+XXV).L66L.)VXX+��>K-?'@�5*0�A���)-#54&#!"3!26=3!#";2654&+5!5!�&�@&&�&��� 

�

 @�@���@&&�&&@��
��

@
@�@�!-48181!8181!5!"3!2654&##"&54632!537������&&�&&�8((88((8@��@�@�@&�&&&�(88((88�����������,<HO#54&#!";3!2654&#8181!81!"81!8181!81#"&54632!537@@&��&&@&�&&�&@��&�����8((88((8@��@�@@&&�&@&&&@��@&��(88((88�������@+?C32>54.#"#.#!"#"3!2654&".54>32#530!8L++L8!!8L++L8!��$0�0$�&&�&&�&;gM--Mg;;gM--Mg���`+L8!!8L++L8!!8L50PP0&��&&@&��-Mg;;gM--Mg;;gM-�@���	L#32654&!";74.#".54>32.'>54&'>5 @@
�

@�P��jj��P4F),Aq�VV�qA,)F4��@
�

��
�@j��PP��j.X)9*L;'�
*V�qAAq�V*
�D';L*9)X.���*3#".54>32#".54>32�@#=R..R=##=R./S�#=R..R=##=R./S�� !:,,:!!:,pr�!:,,:!!:,p@@(,.#"32>7>54.'
�6qvy??yvq66qvy??yvq6��@�� )TY[//[YT))TY[//[YT)�����	@@"!#535#535#53!!#535#535#53%��������@����������@��@�������������������@@+/4632#"&%4632#"&54&#!"3!26=!5!�^BB^^BB^��^BB^^BB^&��&&�&����B^^BB^^BB^^BB^^�`&&��&&`��������'3?K[!"3!2654&"&54632"&54632"&54632"&54632"&54632.#!"463`�B^^BB^^��(88((88((88((88�(88((88�(88((88((88((88X:�B^I7&^B�B^^BB^�@8((88((8�8((88((8�8((88((8�8((88((8�8((88((8�7I^B�:X}&@����".#"32>72#"&5463�#Wcn:j��PP��j:ncW#��@))))
)B/P��jj��P/B)M�))))��2�!.'1897!5.'>&2IeF--FeI{j�f
Q.�.Q
f�jd6aWM!!MWa6\ɋ&GX|&&|XG&������O">7>54.#".'.#"3267>7!5.'32>54.#,N'8" 8K**K8 "8'N,+K8!!8K+,N
))3�3))
N,+K8!!8K+7"

(YN-+L8""8L+-NY(

"!8M++M9 #
 8_L8&&8L_8 
# 9M++M8!���@�	��@@����"F[e�4.'81#0130412>5"&'.'.5467>7>32467#*10232.'?>'"&'.'.5467>7>32#0SE~�ii�~ES0#�				��$B&3773&B$t�Rv	vK�c90AE"Q./Q"EB0:c�L�� .wBBw.!

!.wBBw. 6'K#_X_#K���
0B
....
��$EQ2.#"'>3%>32.#"1.#"'>7>324632#"&�O�4Z#]55]#Z4�O�;.hs|@@|sh.[$T\c33c\T$�(LGC[6~��MM��~6[CGL(*UWZ--ZWU��%%%%�<5Z#((#Z5<E-F//F-[$8&&8$�)17[6T::T6[71)		��%%%%���%Do4.#"!'>.54632'>54&#".54>32''>54.#".54>32P��jj��P1Y{I�I{Y1��%%3,:K55K:,KDW(F]55]F(WDK�I/P: 2WuBBuW2 :P/I<dH(Gy�]]�yG(Hd<�j��PP��jS�}_  _}�(%%;;	F.5KK5.F	�O5aJ,,Ja5O����;O`5BuW22WuB5`O;�SkE]�~JJ~�]EkSp-AU4632#"&>54&'.54>7#.54>7>54.�K55KK55K&>,,>&!''!��'!&>,,>&!'�$4!6W>"">W6!4$�6W>"">W6!4$$4�5KK55KKN;HT..TH;4�SS�4��S�4;HT..TH;4�S@zn`("]o~DD~o]"(`nzp"]o~DD~o]"(`nz@@zn`����
.2654&#"#".=##!5#5>=�B^^BB^^"#=R..R=#@(E]6�@�6]E(^B�B^^B��B^`.R=##=R.``8bM1�@@�1Mb8`@����&!"&5463!!"3!181"389!5!��`(88(`��5KK5� 

`��@��8((8K5�5K��@

@@H@#'8#";2654&#53%#";2654&#537?>'.�

�
-��`�

�
-���� ���@
�@

�
�@�
�@

�
�@OW��	W;��@�'-%5#35#3#35#3#35#3#35#3##!53!5@@�@�@�@�@�@�@�@@@@��@��@�@@���@@���@@���@@��@@@���@@����#!"3!2654&!!!!!!!!!!`�(88((88H�@�����@��@��@��@�8(��(88(@(8����@@@@@�@����'1!"3!2654&!!!!!!4632#"&#"!54&`�(88((88H�@�����@��@@8((88((8��(8@8�8(��(88(@(8���@@@@�(88((888&@@&@����!7.'.'.#!"3!2654&''#5#!"&54630:1;�-3')�!//!�!/�%
�)�	� 		���
��3-/!��!//!p)'6)�
%��		`	�
@����"8K.'.'.#!"3!2654&''#5#!"&54630:1;.#!"463!.�-3')��!//!`!/�%
�)o	��		s�s
��')��!/%	�[3-/!� !//!�)'6)�
%�		�	�
�/!� ,.	@����!7ESa.'.'.#!"3!2654&''#5#!"&54630:1;!"&5463!2'!"&5463!2'!"&5463!2�-3')�!//!�!/�%
�)�	� 		���
�@

�

�@

�

�@

�
�3-/!��!//!p)'6)�
%��		`	�
�



�



�



@����+3I%!575#"&546327.'.'.#!"3!2654&''#5#!"&54630:1;@����8((88((8V-3')�!//!�!/�%
�)�	� 		���
�@�@����(88((88�3-/!��!//!p)'6)�
%��		`	�
@����#9a.'.'.#!"3!2654&'1'#5#!"&54630:1;..#"326=%.#"32654&'�-3')�!//!�!/�%
�)o	� 		���
���!5KK55K!5KK55K�3-/!��!//!p)'6)�
%��		`	�
G@�8((88(�3�8((88(@
@����$:
.'.'.#!"3!2654&''#5#!"&54630:1;�@��-3')�!//!�!/�%
�)�	� 		���
�@��[3-/!��!//!p)'6)�
%��		`	�
@����%;?C.'.'.#!"3!2654&'9'#51#!"&54630:1;!!%7'�-3')�!//!�!/�%
�)o	� 		���
�@��@���3-/!��!//!p)'6)�
%��		`	�
��������
@����%;?CGKOSW[jn.'.'.#!"3!2654&'9'#51#!"&54630:1;3#;##3#;##3#;##3#;#;26=4&+5##5�-3')�!//!�!/�%
�)o	� 		���
��������������������������P����3-/!��!//!p)'6)�
%��		`	�
@@@@@@@@���@�@@���!!!%#35!#!35!��@�����e�@��e��@������e������ee���@���
47=#54&+"#!'#58138154&+3#!35#"3!!#!35!��&�&����@
@ ��� @

 ��@e��@@@&&@��@@��
@���@@
��
��[e�@���
	
%	7%	7��V�����g��g��g��g���������3�3�3�3�@!!����@��@@@
%!!!@������ ���@��@��@'!!##5#53533@��@��������������@�����@	'!!!5!@��@�����������@�@'!!'333@��@�ࠀ����������@'!!###@��@�ࠀ��������"���!"27>54&"&54632��0�$�(���(88((88��$(�d�0���8((88((8"���.!"27>54&"&54632#"2?��0�$�(���(88((88�x P0�$�(��$(�d�0���8((88((8� �$(�d@@#'+/37;?3#3#3#3#3#3#3#3#3#3#73#73#%3#%3#'3#%3#���@@�@@�@@@@�@@��  �  �  ��@@�@@�@@@@@@@@�������@��������������������������@@@@@@@@@@@@@@9���"&*.26:>BFJNRVZ^bfjnrvz~��������������������������!!1!3#%!!1!3#!!1!3#3#;##3#;##3#;##3#3#;##3#;##3#;##3#;#3#%3#73#'3#%3#;#73#;#73#;#73#;#73#3#%3#73#;#73#73#3#%3#73#73#;#73#3#%3#;#73#;##3#73#73#@�@�����@�@������@�@�����@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@�@@��@@@@@�@@@@@@@@@@�@@@@@@@@@@@@@@@@@@@@��@@@@@@@@�@@@@@@@@��@@@@@�@@@@@@@@@@@��@@@@@@@@@@@�@@�@@�@@��@�������@������@�@������@@@@@@@@@@@@@@@@@@@�@@@@@@�@@�@@�@@�@�@@@�@@@@�@�@@@�@@@@�@�@�@@�@@@@@@@����,1''#"&546?'&"7>322764'	@����J !%6 J@��J !%6 J@T���������J 6%! J��@J 6%! JT@���������0%#"&54632#"&54632!4&+33!5!"&585�8((88((8�8((88((8�%��0K5�% (88((88((88((88x�%@�d45K@%����';?C"32>54.".54>32535#5##3#3353+53#53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0��@����@��@@�@@�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<��@@@��@@@��������'r"32>54.".54>32&+"&'32654&+532654&+>;27>'.+"#";#";;2676&'�c��KK��cc��KK��cP�i<<i�PP�i<<i�o
-�2	�

��

�	2�-
J+�:X#

  

#X:�+J�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<$

@

$%+I7

@

7I+%����'V"32>54.".54>327#532654&+546327>'.#"#";!2654&#�c��KK��cc��KK��cP�i<<i�PP�i<<i�0�`

`8(,
J+B^ 

  

�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<�

 (8%+^B 

�

����'b"32>54.".54>322654&+76&'&'.#";#";326=32654&+53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0

D_ee_D

``

`

`

``�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<`

����

@

`

`

@@@#'+/!"3!2654&!2!546!"&5!%3#73#73#���(88(@(88��@
��M��
���@@�@@�@@@8(��(88(@(8@
``
��
 ��
����������#'+;G!"3!2654&!5!%!"3!2654&!5!5!5!!"3!2654&##5#53533���&&@&&��@��&&@&&��@��@���&&@&&�@��@��&��&&@&�@�&��&&@&��@�@�&��&&@&���@�����/?N\"32>54.4632#"&1'>54&'79.#"'>32.546773267#"&j��PP��jj��PP����pPPppPPp^�	

	��I11I'V..V�ޱ	

	��I11I'V..V�P��jj��PP��jj��P�PppPPpp[I11I'V..V'I�	

	���I11I'V..V'���	

	�����)#"&'.54676.#"130>54.�0 00`00PP0$HTB<*-I[//���0<H<>TV@0PP00`00 0VT><H<0���//[I-*<BTH$���:.546'.#"&'&67>781>31:3:31281�biS!f==f!Sib%If�[[�fI%�*a	&$$8$#

#$8$$&	a*>&.##.&>@����#'+!2#"&5463!54631323#3#3#3#���5KK55KK5���K5�5K�@````````���K55KK55K�@5KK5��@�@�@�@!"3!2654&!7!	%���(88(@(88�������ggg�����@8(��(88(�(8�Z����&�6nn��"�����#35%7'7 ``���'i�``��@�@�``����'���``@@�@���@�"10>54."&54632BuW2dxddxd2WuBPppPPpp�2WuBx�̂��xBuW2�pPPppPPp���@�'3"10>54.".54>32'4632#"&BuW2dxddxd2WuB)G55G))G55G�I33II33I�2WuBx�̂��xBuW2��5G))G55G))G5�3II33II����!*'.5!"&'&676#!2	 � 

�
�@	��p
^�@��
�@
@
������!$2"32>54.4>32.5
"&'%#j��PP��jj��PP����Aq�VR�8�d�4<�nIR�8��4<Aq�V�P��jj��PP��jj��P�V�qA<4��d8�RIn�<4��8�RV�qA���%%%@���@���������� �@����%%%
%%%%�����`@`��������������Rf��f]��]R]x] @�%+2#5267>54&'.#"33>!3�]�zFFz�]G�225522�GG�2&2	���Nv����Fz�]]�zF`522�GG�22552&_4�Q�g;���@����-%'3"32>54.".54>32�Ӏ��j��PP��jj��PP��jP�i<<i�PP�i<<i�����P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���"32>54.'3j��PP��jj��PP��)Ӏ�Z�P��jj��PP��jj��P���Z@����'7EK"32>54.".54>32>54&#"1%.#">#!5]�zFFz�]]�zFFz�]K�a99a�KK�a99a�\
pP.P2[QE��P.Pp
EQ[�@@Fz�]]�zFFz�]]�zF��9a�KK�a99a�KK�a9�0Pp)"
'6E(�")pP0(E6'���@���:]%4.54&'.'4654&#"3267>5041.#".'.'>7>32O`P!2@$&&)F3P`P<k�V<%%<V�k<�(_4I22I4_(8:

:8 JPU++UPJ 8:

:8�lhHPT
*K=+
$$4GZ1TPHhl3)&&)361DD1			
		
			@���� A5354&+"332>54.#"&'.5467>7326'�%�%�Q�g<Aq�VV�qA<g�q-u@@u-.00.+p==p+.00.�A@%%@AFo�RV�qAAq�VR�oF��.00.-u@@u-,0��:0,-u@@u-����#'373#73#73#3#73#73#3#73#73#%3##5!#5#!!!@����������������������������������@���@��@@�����������@��������@@@@��@��#'!!!";!32654&"&54632!!����&&��&&��%%%%%�����@&��&�&@&�%%%%�@@@�@#'+/37;?C!"3!2654&3##5%3##5%3##5'3#3##53!5!#535#535#53@�&&&&�&���������������@@��@@@@�������@&��&&�&��@����@����@����@�������@�@��
!!!!!'@����� @@���������@@@@
4&#!"#!5!5!7!81!81�&��&��������&&����@@���@�#!"3!2654&!!"&546327!!�@(88(�(88�x��%%%%��8(��(88(@(80 ��%%%%�����@� !"3!2654&"&54632#%!!��&&@&&�� ��@�&��&&�&�.��@����!"3!2654&"&54632%!! ��(88(�(88��


��@�8(��(88(@(8� 



`���/O.'7'&"#132>7>54.#".'.5467>32�B�J�@� �@�-YVS(6qvy??yvq6�)TY[//[YT))TY[//[YT)�	�@�@�	)TY[//[YT))TY[//[YT��6v??v66v??v���!/=	.#!"3!2654&##'#5!'!"&5463!2!"&5463!2��
�@
�%�%<�������@

�
3��

@
4@����%% 0��+�ի



�



���!	.#!"3!2654&##'#5!��
�@
�%�%<������4@����%% 0��+���!3!265	35!37!@���
�
������[@J@���`

������@@�!3!265!5#	7!@���
�
����@@�[@J@���`

�������@@���	###
-'%����H�[�[H�����Ha��aHi������33	3
-5%�������%�[�[%����pcm��mc�������!!!3#!3!3��������@@K5�������@5@@7!265!%3#!!��Pp�p�@@���@@pPPp�@�����+A"32>=4.".532>=".532>=j��PP��jj��PP��jj��PP��jj��PP��jj��PP��jj��PP���,:!�!:,,:!�!:,��,:!�!:,,:!�!:,��,:!�!:,,:!�!:,�!"'!'>32>54.#5d\R#���5�PP�i<"0U(@-P��j�'7#����4<<i�P+QIA`#Vbl9j��P� 7.54>32!.#"-@(U0"<i�PP�5���#R\d5j��P�9lbV#`AIQ+P�i<<4���#7'P��@����
>.	6�+&8�������FO@M��e�����������5	5&&>@�����8&+iOF��������e��Mr�����75	5.7+&8�������FOi�M��e��������r@����%	>&''������8&+iOF�ɸ����e��Mr������"2#"&'5>54&'.54>j��PP��j()Z]`03M,F1P���Aq�VV�qA)3
W4HR\1V�qA����!N%#"&'#".54>322.#"*#"&'5>54&'.54>@$4Y )<iN--Ni<<iN-��h��R%Q*H�359()Z]`03M,F1P��;"8(#(F]55]F((F]5*Kx?n�U1-/{D"@)3
W4HR\1V�qA����$H12#"&'5>54&'.54>3.'#"&'2>7>7>54&5�c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.���3W">7>3:3267>7>54&'.'.#512#"&'5>54&'.54>)O&#>253/ )O&#>2552>#&O)j��PP��j()Z]`03M,F1P��

")d6;3.		


")d66d)"

�Aq�VV�qA)3
W4HR\1V�qA����!n%#"&'#".54>32>7>3:3"&'5>54&'.54>32.'.'.'.#"@$4Y )<iN--Ni<<iN-��253/ ()Z]`03M,F1P��jh��RC"	2(>#&O))O&#>;"8(#(F]55]F((F]5*K�)d6;3.		
�)3
W4HR\1V�qA?n�U*N "



"����3X|">7>3233267>7>54&'.'.#512#"&'5>54&'.54>3.'#"&'2>7>7>54&5�&I"!9-0./&I"!9-00-9!"I&c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF@%Z05..	%Z10Z%�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.@�@%5>54.#"!4.@5K$NHHN$K5Q�g;�;g��5�J<iN--Ni<J�5-CW00WC-����A%5>54.#"!4.>7.'.5467>7.#"!>75K$NHHN$K5Q�g;�;g���*e9	P9
OZHN$K5Q�g;
�5�J<iN--Ni<J�5-CW00WC-)
*Y-Aw20<:E-Ni<J�5-CW0
	���2>%4>7>54.#"!."32>54.##5#53533�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid�@��@��9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-����@�����26%4>7>54.#"!."32>54.!5!�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid��@�9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-��@���#	'!5.'5>54.#"!���`@�`��@2�K5K$NHHN$K5Q�g;�`��`@�``s&5�J<iN--Ni<J�5-CW0���4632#"&#'#"!4&@pPPppPPp�#�J``J�#`  PppPPpp��lt``���pP��@Pp@=2#".5'4>3">!2#".5'4>3">�.R=##=R..R=#Fz�]@u-	I.R=##=R..R=#Fz�]@u-	#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@=".54>32#5267>7!".54>32#5267>7 .R=##=R..R=#Fz�]@u-	��.R=##=R..R=#Fz�]@u-	@#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@����";W>54&'!!>54.'4>75.51!.=467>7!!.�4U=!��!=U44U=!z!=U4��9S66S9�9S66S9�661�f1666M�M�!^s�H  H�s^!!^s�H  H�s^!�@FhMdMhFFhMdMhF"G@G3 2G@GxKLw8��#/BUht4632#"&4632#"&4632#"&4632#"&81463281#"&5%81463281#"&581463281#"&54632#"&�K55KK55KK55KK55K�%%%%p%&&%��%%%%��&%%& 9'(88('9X****@5KK55KK;5KK55KK�%%%%�%%&&V%%%%p%%&& '99'(88(��**** ���:r.'.'.'.7>7>7>7>7:3265<51'.'.'.'.7>7>7>7>19$#T.-a11_,-O!!46!"N++Z..Y))K1	%f3I((U**S'&E,.C%%O''M$#@)

!�2c-.R"#57#"Q-,^//\++M  24! L)4%�(G.1G&'Q))P%%B+
-A$#K&$3����
-?Pbp�����"&=4632"&=4632"&/&676#"&/&676#"&/.7>"&/.7>#%#"&546;2%81#"&54638132#"&'&6?6#"&'&6?6#"&'.?>#"&'.?>#####�Y-Yf	Z
Z	�7�*�
_��
�o����

���

�$			�m�

��7
		Y	 		Yf
Z
Z�#�##�#�J����-�-��	���Z
*Y*��Z
Z��$	Y

$	ZuZ
Z��!�	 �
x�

����*4C467'7.%>54&'7.'>75#"&'3267'��*;&r'-�-'r&;*��Ep!�RgyB��!pEBygRTC##Cr7}CC}7r�		<07h_T#�+o>>o+�#T_h70<	1S;<:cL1œ;S�1Lc:��!!����'Z"32>54.2#".54>#".'.54>7813267>4&'7j��PP��jj��PP��j5]F((F]55]F((F]fGMT++TMG/  /C11110{CC{01111C/  /�P��jj��PP��jj��P�(F]55]F((F]55]F(��/  /GMT++TMGC2{�{2/33/2{�{2CGMT++TMG9����)6BObn4632#"&81463281#"&4632#"&4632#"&5%4632#"&4632#"&581463281#"&5!#"&54632�K55KK55K�>++>>++>g8('88'(8��2$$22$$2��. !--! .i****w&%%&�C00DD00C@5KK55KK��+>>++>>�(88('88I$22$$22$p!--! ..0****&&%%0DD00CC��F#/;GS%4632#"&4632#"&%4632#"&4632#"&4632#"&%4632#"&4632#"&�8((88((8�`8((88((8@8((88((8�:8((88((8L8((88((8��8((88((8L8((88((8 (88((88�(88((88((88((88N(88((88��(88((88((88((88t(88((88���8".'.5467>732>54&'.'7#3c\T$$8&('%h?+3U!Aq�VV�qA!U3+?h%'(&8$$T\c3@&8$$T\c3I�=;_VM11q;V�qAAq�V;q11MV_;=�I3c\T$$8&���3">3232654.2>7#".54&#"i��RCq�UV�qA8((8P��ji��RCq�UV�qA8((8P���N��h[�vDFz�](88(j��P�N��h[�vDFz�](88(j��P���D�1812233332323023323:323232013023181263623263263>7>7>7>7627267>7261263>7>7>7>7>3>7>7>7>7>7>7>7>7>7>7>7465>7>7467465>7465465645045>5465<5645645<12650451814&5&454&54&5.'.'.'.'&4'4&'.'4&54&5.'.'.'.'.5.'.'.'.'.'.'.'.'.'.'"&'"&#.'.'.#.#.#.'"&#"&#0"#.#"&#*#&"#&"#*#4&#0"#181"#"#"#"#"""#"##0107041465>7467465>7461465>7>7>7465>5>7>7>7>7>7>7>7>7>7>7>7263>7>7263627263>3623623021627:3:7:3263:3:3:323:323021209>720222321233322110109011"#"#""##"#"1*#"*#**#"#*#*#*#&"#*#&"#0"10"9"&'.'"&'"&#.'"&1"&#.#.'.'.#.'.'.'"&'.'.'.'.'.'.'.'.'4&5.'.'4&5&4'4&5.5&45"41<1&4'<5<'<54&5<5<5<5645<5645041049.'	
%	


	%	
&


		$J


#





"


�	



	%	
&	



	%	
%A





"





#���-!7.#"3267>7#".54>327���7�MM�76::67�MM�7	`#Vbl:j��PP��j5d\R#�@�6::67�MM�76::6	T(A-P��jj��P'7#����)7ES!!%!!#!!!#"3!26533!2654&#"&546;2#"&546;2#"&546;2@������x8���8**0*�*0**�����@

@
o���@@@���*��**x��**0*��



�



�@



����"6%'.>54.#"326776&".54>32��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����"6B%'.>54.#"326776&".54>32##33535#��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]������Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����������"6:%'.>54.#"326776&".54>32!!��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]����Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(@����
!7')'7''77'7�`��`����`�������`����`�����`�������`����`��`�`��`�����
!'7''77'7)7'@���`����`����`��`����`����`����`��`����`�� ���`�����
''7'!7��`������`����`��`���`��������
''7'!7���`����`����`��`���������!-";535353732>54."&54632�BuW2�{%@���S6BuW22Wu(88((88�2WuB�{�%@��S	
2WuBBuW2��8((88((8����$)9'./.35353535676&'"'&4?62�e5e9��F�� ����	�6���.8-���-
	��		-
		�e5e�6����@��GF9��.7-���-			
-		��	����##54&+"#"3!2654&%46;2!PqO�Oq �\&�&��OqqO�� ��&&�����#2#54&+"32#!"&5463!5463Oq�&�&���qO�qO��&&�� ��Oq����'%>54.#""/3267?6&�3-Ni<*�f6�-Ni<%D�3e��D%<iN-�6f�*<iN-�3e3�37OS54&+"#3;26=!5534&+"!!;26=35#534&+"#3;26=!5!53�����@������@�����������@����@�����������������@����37OS326=4&+5##";33#26=4&+##";35'3#26=4&+5##";3'3#��������������������������@�@�������@������@������6J.>7'#".5#&'>323467>7.'".54>32�	/#e2(G5�

>HM#e%
	.#e2(G5�

>IL$d%
�Z+K9  9K++K9  9K^#LI>�
5G)2#.	�
$#LH?�5G(1#.	�$m 9K++K9  9K++K9 ���0<��%7'./#'737>77'>?5'.'"&546325'.'7'.'7'.'7'./#'''77737>77'>77'>77'>?"&54632l)-:	@	:-)FF)-:	@	:-)FF�%%%%C9C'.8
;%@%;
8.'C9CC9C'.8
;%@%;
8.'C9C��:QQ::QQ�:-)FF)-:	@	:-)FF)-:	@	�%%%%�@%;
8.'C9CC9C'.8
;%@%;
8.'C9CC9C'.8
;%kQ::QQ::Q����%&"'!'#72?64'��'�.���DΠθ.(q�.�.�DΠθ'��q(	����/3'#3#3#5#3#3#%37'	&"2?64''7�@��@@��@@�@���@@@�@�@2��(<|(<��@��@���@@�@@@���@�@�N|<(��<(R�@����)#54&#!"#"3!2654&%!!##5#53533��&�&�5KK55KK������������&&�K5�5KK55K���@��������=5#.'3'#4&1>54&#"0#'3#3#73326737#>7�%�F>:�pPPp�:>F�%��|F>:p,�JJ�,p:>F|�@7a(�OppO���(a7@"A���:EE:�A"����"32>54&'7.#�]�zFFz�]]�zF@SgyB��Fz�]]�zFFz�]6e-�7\A$�@���N7!!3"&5463:37.54632:3:3.54632#*##"&5467'*#*##�����(88(h8((8h�	8((88(�	8((8hh8(@���8((8�(88(�*(88((8��(88(��(8@7!!3#3#3#3#�������������������@����@���@#'7;#";2654&#3#";2654&#3#";2654&#3 �

�

��@�

�

��@�

�

��@
��

@
���
�@

�
�@@
��

@
����$0<5!#3267#"!4&+5>7326=#"&=3%#"&'>=3@���pP"g=@5KK5@=g"Pp���0Dt
�D0
t���Pp2D
�K55K�
D2pP��D0@@9t0D9@@����*:TX\`d>7>76&'.#".'.#"#3!3#'>32#>%&67>312&"'.'.'!!5!5!!!7!5!
 -%K 1=2-:,%	+$�@@�b1 !S&34�q	 
)3O���@��@��@�
<"<"2}11y,&s,��@��N !.+k	

O3)��� ���� ����@�)8.#!"#"3!2654&+>7>54&%!!<5467
�$/,"T/`

@

`/T",/����		1r<O�8+9��



H9+8�O<r(Y//Y(���}@#>'.#!"#"3!2654&+!'y	�@	9`

@

`�d��d

�r��



~������7;#54.#"32>=32654&%.'>7>32#"&#53��<i�PP�i<<i�PP�i<�%%��"		",k99k,"		",k99k����`!:,,:!��!:,,:!`%@%>				��� ����5";26'>54.!####;;26'3265#�(F4T@ $ $ @T4F]5((5
S$ $S
�#=R.Oy��&&yO.R=#��@��@�`
�&&
����=.#">30030&73267>7>7>74&'�)hu�BQ�|c" ##���s_��D/
�*K"X�/)5+<V=:2"5M1/m>7zAk��NHvW$S.$T`k;�j()$`4(TRO#���	#0>	1%5�����Ccp,���@@����
�bH2taA��@@���S2!.54>>5#53.'#53.'.'#5.#"#53#3#333>j��P&Fa;�;aF&P���-ZUj@#R-@  @-R#@jUZ-	�%6%�	�P��jH�s^!!^s�Hj��P��CJO)@"@@	#2FUUF2#	@@"@)OJC����5G"32>54.>54.'>7>32#"&7+"&=4673j��PP��jj��PP����	2F)8.7�MM�7.8)F2	.j99j�

@

 �P��jj��PP��jj��P��1/UF5?s/6::6/s?5FU/1  �@

@�
����6%7>726376&/."?065>??6&'��g
�"@'ag�!
@'�
2	,�'A"�gb'@
!�
h��	3	O����2&67>10>'6.'.1.'A3 (+(
%C^,
'�]B�%a[C	9N((&	8jQ@k�9?hRD!RPE/���Lu�(q u�R<}yq20L.+QPQ+<h`[.D���� %532654&#!";3!26%53!��� 

��

 ��7Ij�jI���



��[���Y��@����7!#"&5!32>5#"&'.'33267>=3��@pPPp@�@Fz�]]�zF�5�KK�549$o#(%&`55`&%(#o$94���PppP@��]�zFFz�]��59955�JE��5`&%((%&`59��J�5@����	
-13!265#3#3#3#3#54&+"#"!54&!#53�&@&�@@�@@�@@�@@����@������&&�����@��@��@�@PPPP?@����
!!%5!!7!5!#53��@����@@����@�����@@�@@#;!54&#!"!"3!2654&%81!81!#+"&=!+"&=#5!��&�&�&&�&&���@�
@
��
@
���@&&@&��&&@&@@�`

``

`@���'''.3?5!����۬&Z&�ۀI��@��@�I�۬&Z&��ۀ����@�@'+#54&#!"332654&'!32654&'3%53��&��&@Q	K55K	b	K55K	Q���`��&&�@!5KK5!!5KK5!������!###!!%3�@�� � ��@ @�� � @����6����4632#"&%'#%37�8((88((8�J�n@�nJ�<��<�`(88((88��<��<���W��a����)5?JU#.'5##335>73'#.'5"&54632#>3.'5>73e
=\uC�Cu\=
ee
=\uC�Cu\=
e�d>)(G9(��%%%%[)>d	(9G�d>)(G9(	Y)>d	(9G(Cu\=
ee
=\uC�Cu\=
ee
=\uC�)>d	(9G�%%%%Yd>)(G9(��)>d	(9G(�d>)(G9(	@����	%0%6&>7%��@�@����	0c�zz�c0	�H�H���G9��9G�^���;;���^�����	!	!�������������@����-1#"&'.5467>7532>54.%3#�2.00.-u@@u-.00.2EvU0Fz�]]�zF0Uv����-�"-u@@u-.00.-u@@u-"�Sp�L]�zFFz�]L�pS��Y�''7''7'2?>[�f�[�sWWs3�D$F-�B�9yuk�[�f�[�sW�Ws��+kuy9�B�-F@����"06!4&#"!"3!2654&%2#"&546!33!26=3'7%���K55K��

@
�S%%%%���
�
��@�:�:@5KK5
��

@
@%%%%��`

`�e�:r�:@���)%!!!!!!'#5#53#575#53#535#535#5�����������@@@�����������������@��2@�<2@��@@@@@���!!%!!!!%!!!!%!!����������������������������������#/!!!!!!4632#"&4632#"&4632#"&������������K55KK55KK55KK55KK55KK55K������@5KK55KK��5KK55KK��5KK55KK���UY]ae%#54&#!5326=4&+";!"#";26=4&+5!#";26=4&+5!#";26=4&#53#5353#53�B.�����.B����܀�����������.B����B.���������������@���@�@@�!!!!!!@����������@�@�@`!!!!!!75'�������������@�@�@��@��@`!!!!!!7�����������@�@����@`!!!!!!7�����������@�@�����$4&'.#".#".#"3!26L9&AU19a!7 8N	(G55G(�Hf.>^0U?$1*N7
4G((G5f@(/.#".#".#";732654&''3533{&AU19a!7 8N	(G55G([��oHfL9������X0U?$1*N7
4G((G5��fH>^�(���@�&->54&#".#".#";!532654&#5#7|^B
d@Be$5]F((F]5��B^L������>	B^:KN<(F]55]F(��^B;X����"(>54&#".#".#"3!2654&'77|^B
d@Be$5]F((F]5`B^L��@`�@�	B^:KN<(F]55]F(^B;X�@`�@�#'#!5!!##	���ࠀ��@��  ���@@�@���� �
7!!%!5!!5!%	##����`  �@@�@@��� ����	33!!#53����`� �@���������@��!!#53	##� �@���`����@����@����%,8DKSYdou~����"32>54.>73##>73!#53'5#'>7>7#>7#>73.'373#..'.'.'53'537.'3#7#.'%>7#>3.'.>73�c��KK��cc��KK����
p���
p�	���
&��&
�u�	���
�1��	�
&P&
���	Qp
�@`& :�{: &`)`& :y: &`�K��cc��KK��cc��K��A!!@@A!!@@!�@�+)R+�)��!@��@!!A��@��+)R+�)��!@�!A@!�,M)#F)M,#�
,M)#3)M,#���c"32>54."&'>=4&#".5.+".5467326?>=>323:3j��PP��jj��PP��j/Y)�
*TB)�

n,F3u�A!5c,F&IQY�P��jj��PP��jj��P�@`
%,%
�	7�O_j94`,�M	
G&&GE_wF 1#S����/\"&'.46?>32"'&4?64'.#"#"&'.46?62326?64'&4762#�
#$$#�#Y11Y##$$#X,X))33�))
�1Y##$$#X,X))33�))+#$$#�#Y1D$Z^Z$�"%%"$Z^Z$W+X)t)�)t)+��%"$Z^Z$W+X)t)�)t)+$Z^Z$�"%��� 3#267#"&'.#">32��@>ff>>ff�#d9Hw!!wH9d#��}�b�~]}H'27>4&'."01267871'01"&'.46787162"'&47�A��(((s(�!""!"UXT"�g/////v{v/A��"TXT!"!!"�(r)((�z
'


EyA��(r)((�"TXU"!""!�g/v{v/////A��"!!"!TXT"�(()r(�z

&
E�=I"32>7.#"&'.'>7>732>54&'1#"&54632T��j$$j��TT��j$$j���.KK.8�CC�8.KK.(F]55]F(�8((88((8/TvGGvT//TvGGvT/�M--M$&&$M--M,5]F((F]5,6(88((88��NZ#5##3353#"&'.'>7>732>5<1.'.#"32>7.'%2#"&546�������K.8�CC�8.KK.(F]55]F()F3 T��j$$j��TT��j$
 1�@(88((88@������!-M$&&$M--M,5]F((F]5.@O,/TvGGvT//TvG2
~8((88((8�@'P!!!5.#"32>7.'!2#"&546#"&'.'>7>732>54&'������ T��j$$j��TT��j$N0�:(88((88�8�CC�8.KK.(F]55]F(.KK.@�@|/TvGGvT//TvG8a'8((88((8��$&&$M--M,5]F((F]5,M--M�&7C`&".#"3267642.546>7>7.'%4&'32>7#"&'32>7.'�(�'R+T��j$X6�		`�� 1
z%8��K.=(B���'5]F(>E.KK.8�C9M-`2T��j$"c=��/TvG>i(�(`(��%z
1 (8�-M,)K=F)F'��(F]�EM--M$&M/TvGCq*���@�	�@@��@�������
	'!7!@@���@@@��@������@
���
)7FTcr��%2#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?"32>54."&54632%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-=5]F((F]55]F((F]5B^^BB^^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.�(F]55]F((F]55]F(�`^BB^^BB^���"32>54.4>3".j��PP��jj��PP���<i�PP�i<�P��jj��PP��jj��P�P�i<�<i�
���(6DR`n}�"32>54.22#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?5]F((F]55]F((F]5B^^B%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-�(F]55]F((F]55]F(�`@^BB^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.���
%
%%7'?������<<<<��*��pp��*33A��3�����`���v��$��$�����
%
%%'������<<<<�p��*�33A��3�����`���;�$��v���
%
%%������<<<<33A��3�����`����".#">54.�(J?22?J(8bI*f��NJ��i*Ib�2A""A2*Ib8q���po���m8bI*��� 2.54>32'7>3�8bI*i��JN��f*Ib8-R"N�`�><�*Ib8m���op���q8bI*&|�����]@����#"&54632#"333334&@8((88((8�%@P P@%`(88((88�%��������@%����&#"&546327'.#!"733333'7@8((88((8�1���1o&�{@ @{�&o`(88((88�8#��$�Z���@��@�Z����)D#"&54632#"&54632#"333334&7'.#!"733333'78((88((8@8((88((8���%@P P@%�1���1o&�{@ @{�&o`(88((88((88((88�%��������@%�#��$�Z���@��@�Z����';GS2>54.#"2#".54>2>7#".''4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�V+UQL#7Vo??oV7#LQU�%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�	 CtV11VtC �(88((88((88((88���+?"32>54.2#"&546!2#"&546".'32>7j��PP��jj��PP��V%%%%��%%%%�?oV7#LQU++UQL#7Vo�P��jj��PP��jj��P�8((88((88((88((8��1VtC  CtV1���'3?Q2>54.#"2#".54>4632#"&%4632#"&#".'7326j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%@R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��2#9))9#21<<���+>"32>54.2#"&546!2#"&546".'73267#j��PP��jj��PP��V%%%%��%%%%�,QF:Rf==fR:FQ,�P��jj��PP��jj��P�%%%%%%%%��)9#21<<12#9)���'3?L2>54.#"2#".54>4632#"&%4632#"&##"&=!5j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%�@8((8�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�@`(88(`@���,8"32>54.2#"&546##"&=!5!'"&54632j��PP��jj��PP����%%%%�@8((8�@%%%%�P��jj��PP��jj��P�%%%%��`(88(`@�%%%%���'3?R2>54.#"2#".54>4632#"&%4632#"&'>32.#"j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�N2#9))9#21<<1���+="32>54.2#"&546!2#"&546.#"'>32j��PP��jj��PP��V%%%%��%%%%�f==fR:FQ,,QF:�P��jj��PP��jj��P�%%%%%%%%��1<<12#9))9#���';GY2>54.#"2#".54>>7#".'64632#"&%".54632.j��PP��jj��PP��jV�qAAq�VV�qAAq�u4]J6:Xq@,SI<GU^�%%%%��2
8((8
2@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��
"-8 ?mP.*<$	q(88((88!!���1F"32>54.2#"&5462.#"&6546".'67>7#j��PP��jj��PP��V%%%%��-98##89�,SI<GU^14]J6:Xq@�P��jj��PP��jj��P�8((88((88''��*<$	

"-8 ?mP.���'5=AIk�2>54.#"2#".54>;2>=.'.53#535381267>323267>54&#"3!81267>323267>54&#"j��PP��jj��PP��jV�qAAq�VV�qAAq��(F]5�5]F(�@$�����$���**D00D�**D00D@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�`@5]F((F]5@�F&����&F,	$$			0DD0			$$			0DD0		���4V]ah"32>54.2#"&'.#"#81"&'.546!2#"&'.#"#81"&'.54633.3753j��PP��jj��PP��V0D**D��0D**D0��)G3�@�3G�P��jj��PP��jj��P�D0						0DD0						0D���/AP���-PA/���'IY2>54.#"2#".54>2+"&5#+"&=46;235463267#"&'7j��PP��jj��PP��jV�qAAq�VV�qAAq�v
&�&�&�&
�
�
`Ft"6:FQ,$E"4@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�
`&&&&`

  
�D8!#9)7
���$F"32>54."&'73267#+"&5#+"&=46;23546;2j��PP��jj��PP��j$E"4Ft"6:FQ,@&�&�&�&
�
�
�
�P��jj��PP��jj��P��7
D8!#9)�&&&&`

  

���'9Up2>54.#"2#".54>.#"'>32#"&5<1>7>36!>20#"&5467.'.j��PP��jj��PP��jV�qAAq�VV�qAAq�f==fR:FQ,,QF:


	%%4+
�
+4%%	


@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�S1<<12#9))9#�
	
%%$0







0$%%
	���.I["32>54.>7>36#"&5<%>20#"&5467.'..#"'>32j��PP��jj��PP��*4+



	%%��
+4%%	


�f==fR:FQ,,QF:�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�1<<12#9))9#��7Jv�"&5<1>7>36#%.7>20#"&5467.'267#".'734&'.#".'32>54&'>".54>32�%4+



	%��


+4%%	
�=fR:FQ,,QF:Rf=
[: INT,,TNI :[
#  #P��jj��P#  #�V�qAAq�VV�qAAq�%$0




	
%�




0$%%
	�_<12#9))9#21<�"A:X''X:A"7d(8�Ej��PP��jE�8(d��Aq�VV�qAAq�VV�qA��+Fat4&'.#".'32>54&'>>7>36#"&5<%>20#"&5467.'.".'73267#
[: INT,,TNI :[
#  #P��jj��P#  #�@4+



	%%��
+4%%	


,QF:Rf==fR:FQ,�"A:X''X:A"7d(8�Ej��PP��jE�8(d��$0




	
%%e



0$%%
	��)9#21<<12#9)���'3?K2>54.#"2#".54>4632#"&4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�*K55KK55K%%%%��%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��5KK55KK�(88((88((88((88���+7"32>54."&54632"&54632"&54632j��PP��jj��PP����%%%%�5KK55KK�%%%%�P��jj��PP��jj��P�@8((88((8��K55KK55K�8((88((8	���'3?LXdqu2>54.#"2#".54>#"&54632'2#"&5467"32654&##"&54632'2#"&5467"32654&#!!j��PP��jj��PP��jV�qAAq�VV�qAAq�*



 (88((88(B^^BB^^B`



 (88((88(B^^BB^^B���@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��


S8((88((8@^BB^^BB^�


S8((88((8@^BB^^BB^�@@���+7;G#"&54632#"&54632"32>54.4632#"&!5!7"&54632�



@



�j��PP��jj��PP����8((88((8�� (88((88 






�P��jj��PP��jj��P�`(88((88��@�8((88((8���'3?Z2>54.#"2#".54>4632#"&%4632#"&3&'.#&6767>'j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%VA96>xH%"#A96>xH%"#@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��6a8>%"?#6a8>%"?#���+E"32>54.2#"&546!2#"&546&'.#&6767>'3j��PP��jj��PP��V%%%%��%%%%�>xH%"#A96>xH%"#A9�P��jj��PP��jj��P�%%%%%%%%��8>%"?#6a8>%"?#6a���'3?C2>54.#"2#".54>32654&#"32654&#"!!j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�e@���#/"32>54.!5!2#"&546!2#"&546j��PP��jj��PP���@%%%%��%%%%�P��jj��PP��jj��P�@�%%%%%%%%���'3?Qb2>54.#"2#".54>4632#"&%4632#"&&"3>5&'!62#.56j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%$P b\B.L"��P b\B.L@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�P"@& "P"@& ���+S"32>54.2#"&546!2#"&546"&'.5#.56762467627&j��PP��jj��PP��V%%%%��%%%%� b\B.L"PP"K/B\b�P��jj��PP��jj��P�%%%%%%%%�Y$$"@& "$$" &@"���'+7C2>54.#"2#".54>'4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�@�K5%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�L�L�%%%%%%%%���+0"32>54.2#"&5464632#"&'%j��PP��jj��PP��V%%%%�[%%%%K��K�P��jj��PP��jj��P�%%%%@%%%%�5L�L����'3I^2>54.#"2#".54>#"&54632"&'&""'&4762#!"&'&""'&4762j��PP��jj��PP��jV�qAAq�VV�qAAq��K55KK55K�6

		"j"		@6

		"j"		@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��B^^BB^^
		

!!

		

!!

���(4I"32>54."'&4762#"&'&""&54632#"&'&""'&4762j��PP��jj��PP����

		"j"		6�5KK55KK�6

		"j"	�P��jj��PP��jj��P��		

!!

��^BB^^BB^�		

!!
���/=GKUt�.#&3265<1.'"32>54.3!267#"&'7546;#"&533532#>=4&#!".54>32"032654&'>7>'.n+



	%%4�j��PP��jj��PP����	
�
	8�OO�8	pp	��@p		H/!� !/08Aq�VV�qA8�+4%%	



�




	
%%$0P��jj��PP��jj��P��0880H`	�		���	`		
`!//!`
	8�OV�qAAq�VO��

0$%%
	


���	
+Faq;5#"73#%#326=4&"32>54.>7>36#"&5<%>20#"&5467.'.#!"&=463!2	pp	���0pp		�j��PP��jj��PP��*4+



	%%��
+4%%	


B/!� !//!�!/0`	�		���	`	�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�5!//!`!//!	���'5C^lz��2>54.#"2#".54>#"&546;2!#"&546;2"&'.#""'&47>32"&=4632"&=4632%"&=4632"&=4632j��PP��jj��PP��jV�qAAq�VV�qAAq�v�

�
�3�

�
�%!!%

		MM		z






�3






@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��







�(		




@

@
�
@

@
�
@

@
�
@

@
���!/=Xft�"32>54.#"&=46325#"&=46327#"&546;2#"&'.#""'&47>327#"&=46325#"&=46327#"&546;2j��PP��jj��PP����







 �

�

%!!%

		MM	�







 �

�
�P��jj��PP��jj��P� 

@

�

@

`



�1		


e

@

�

@

`



@����>J�54&#".#".#"54&#"'.#"21#"3!26=4&+7>5#"&546325!.546322127>54632326546323265463232654632�8(


+!

!8((8�
(8�-

�

,I@



T����
�













`�(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�>J�%32654&'>54&'>54&'32654&#!7>54&#""154&+";26=3%"&546323'>3213!2#!"32#"32+"32+��(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�8(


+!

!8((8�
(8�-

��

,I@



T�"
�













@����>J�#"&'#"&'#"&'#"&5#"&54672417#"&=463!2+4&#"326'!32672617623265463232654632326=46323265�8(


+!

!8((8�
(8�-

�

,I@



T����
�













 �(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



�>J�%#"&5467.5467.5467#"&5463!'.5463221546;2+"&=#%2654&#"#7.#"1#!"3!2#"32#";2#"3`�(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



8(


+!

!8((8�
(8�-

��

,I@



T�"
�













����!/	!5"3!26'1.#1#"&54632'"&=4632����
�K%3f3%�K
@%%%%@%%%%c��W]��,@@,g��%%%%e%�%%�%���(=AE"32>7>54.'.#512#".54>3#3#*PKD--DKP**PKD--DKP*j��PP��jj��PP��*����`-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P�@�������8M3#2#575!57"32>7>54.'.#512#".54>���%������*PKD--DKP**PKD--DKP*j��PP��jj��PP���@%��@�@��-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P���#!4&+"!"3!;265!26=4&�
�
��

`
�
`
@`

��
�
��

`
�
@@3!26=4&#!"
�

�@
 �

�
���-A46;2+"&5!535#533"32>54.".54>32�  ��@@�@�j��PP��jj��PP��jV�qAAq�VV�qAAq�� �P@�@��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���'3"32>54.".54>32'77'7j��PP��jj��PP��jV�qAAq�VV�qAAq�J��`��`��`���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���`��`��`�����(4A.#"32>7>54.'>32467#".5j$T\c33c\T$$8&&8$$T\c33c\T$$8&&8$&!��/q>O�i<�&!/q>O�i<*$8&&8$$T\c33c\T$$8&&8$$T\c33c\T$��>q/!&<i�O>q/��!&<i�O����S%81	81>76&/.81	81.'&81	817>781	816?>'.���7�	���	�7���	77	��77	���7�	���	�7���	 @	'	`� ���@� ���*V
%7	''��s�������!Y�R�Y*����������X�Y�X@����
048>334&+"33#%5#";5#54&+326=4&#26#535#53	7��@&�&@��@�&&���&��&@�����`�R�`���&&�����@&��&@@``&�@&`&&ƀ@���@ F�.@���!5!55!3!%!#���@�������@@��@�����������@��@����5!5!5!%!#!!5��@�������@�@��������@���������'*"32>54.".54>32
j��PP��jj��PP��jV�qAAq�VV�qAAq������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA������'+/"32>54.".54>323#3#j��PP��jj��PP��jV�qAAq�VV�qAAq��ꀀ���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`��������'+"32>54.".54>32!!j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`�����'*."32>54.".54>32%3#j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*.2#".54>2>54.#"%#3j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*-2>54.#"2#".54>'7'7j��PP��jj��PP��jV�qAAq�VV�qAAq�����@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�����������'*-"32>54.".54>32j��PP��jj��PP��jV�qAAq�VV�qAAq��������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA@��@���@@@	����@�����@�@!!!!�@���@��@���@�@!!��@��`� @@���� ��@�@@��`�`` %��@``@�����@���@�@73��@@����@��@��@�@@��@���@�@#������@@@�`��@�����@��`@�@%3�@��@��@�@@��@@@#���@@�`�����`@@7!!	!�����@~#C\w%"&'&47>54.'&4762#'"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>z	!3""3!((=))=(	�
1111'/  /	�	(,--,��s

s�			&(!LSZ..ZSL!(([el88le[(Z'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
p~8S%"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>�
1111'/  /	�	(,--,��s

s�			�'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
G~3%"&'&47>4&'&4762"&/#"&546;7>%	(,--,��s

s�			�(MPM(,qtq,��
@
�
��
�~%"&/#"&546;7>��s

s�			�
@
�
��
�~*#'#57'5373"&/#"&546;7>�UkkUkkUkkUk�K�s

s�			UUkkUkkUkkUk�@�
@
�
��
~&##5#53533"&/#"&546;7>���������s

s�			��������
@
�
��
~!!"&/#"&546;7>�`�s

s�			����
@
�
��
���!	!3!5	5!#�����������������������2.#"34>32!#".'7!732>5z#U`j8j��P`Aq�V.WOE�`�&Aq�V.WOE����#U`j8j��P&>+P��jV�qA$3 �`���V�qA$3 ����&>+P��j��';P%"&/#"&'.5467>327>32'3267>54&'.#"%"326?'.#0X"ff"X00X""$$""X00X"ff"X00X""$$""X�5555g��555gg5�$"gg"$$""X00X""$$"gg"$$""X00X""$�55f�55ff���`%#'737'#"'.+3#326?;7'e��e��
	��	
������
	��	
��������
	��	
����
	��	
������7	7	! ��� ����  ����	!!!�  � �� ����		 ��� ����� ������	!!� ���������		!���� ���� �� ����!!!���� �����	'	� ��@ ���  ���!! ����  � �@m@!%32654&#!"1326=326764m���%%��!%%		�%%
��%%��
		
6�mm	&"2?3265326764'm��6��6�%%�		-@��6��%%e�
		
6�S�@"732654&'.#1!";27�%%
��%%��
		
6S�%%�!%%��		@S�-%64'&"!"3!2m@��6��%%e�
		
6S@6@6�%%�		�@�@"#"3!267>514&#".#"��%%�!%%��		��%%
�%%�
		
6�m�	"'&476246327>32m��6��6�%%�		S��@6�e%%���
		
6�@�-"	54&#"31!2654&+>54&'&"��%%
�%%�
		
6-���%%��!%%		SS�-%&4762!2#!"���@6�e%%���
		
6S@6@6�%%�		���'-32>54.#"#".54>327	7P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-"32>54.".54>32'	j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ����'-4.#"32>%4>32#".7	'P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-2>54.#"2#".54>'	7'j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z����3#!3#!!'7%!5!5�@@�@@@@��@����@������@�������@�
"&*.33'3#73#73#3#73#73#'3#%3##5%!!�@���� ``�``�@@�@@```�``�@@@@���@������@@@@@`�`@@@@�`@`��@��@�
"&*.##7#5%!!3#73#73#3#73#73#'3#%3#@��������@��``�``�@@�@@```�``�@@@@��������@���@@@@`�`@@@@�`@` ����%@D%##7!"&'&47#"&5463!232#.#"326?37>'%7#@������	��

	��

]�		�		7�7	��LL�����	N

	��

n�

��		nn	��� ����%@C%##7!"&'&47#"&5463!232#.#"326?37>'%7@������	��

	��

]�		�		7�7	��LL����@	N

	��

���

��		nn	��� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������@
`


��
�
�
�


�
@� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������
`


��

�
�


�
@� ���
%##7'!!!!!!3#@���� @����@@��������@�@�@� ���
%##7!!!!!!3#@���� @����@@���������@�@�@��@�@/:EIT_%"&=##"&546;5#"&54632354632+3232654&#!"326=735#732654&#"%";54&�B^�^BB^^B``B^^BB^�^BB^^B``B^^�8((88(�@(88((8@���`(88((8��(88(`8@^B``B^^BB^�^BB^^B``B^^BB^�^BB^`(88((88((88(`@�@8((88(`8((8`(8�@^7(%!"&5#"&'&6762+%!46;'32���
�
@

@
���
S��S
@
`		@		��		��
@`
��
�@"&/'.7>32���	

	�

�	
��
		
�
	@��&%!"&'!"&5463!232#!"&5463!2��	���

@	��

��

@
�
	-


	��

@



���!"3!2654&'7��5KK55KK��Z�3Z�K5�5KK55K���Z�2Z���!"3!2654&!!��5KK55KK5��K5�5KK55K�����'3"32>54.".54>324632#"&j��PP��jj��PP��jP�i<<i�PP�i<<i���pPPppPPp�P��jj��PP��jj��P��<i�PP�i<<i�PP�i<�PppPPpp���"32>54."&54632j��PP��jj��PP��j5KK55KK�P��jj��PP��jj��P��K55KK55K���'"32>54.".54>32j��PP��jj��PP��jP�i<<i�PP�i<<i��P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���7'!5##3!3535#!@�@��@�������@��@@��@�����������@@�����#37Gm�#";26=4&326=4&+"73##";26=4&#53%#";26=4&7#"&'.=4&#!";23!2654&#!"&'.=4.+"&'.5467>3!2;2@�&&�&&f�&&�&&�����&&�&&���&&�&&&@@u-.0K5�5KK5@@u-.0K55KK
		
�
		
<i�P@
		

		

		
<i�P@
		
@&�&&�&�&�&&�&����&�&&�&��@&�&&�&�0.-u@@5KK5�5K0.-u@@5KK55K��
		

		
@P�i<
		

		

		
@P�i<
		
���/?OSW[_cgkosw{��+"&=46;2+"&=46;2+"&=46;2+"&=46;275#'#37353#3#3#3#3#3#3#%3#'3#'3#3#73#%3#'3#�``@``��``@``�p0pp0pp0pp0�@@@@@@@@@@@��@@@@��������@�������������```�````p0pp0pp0pp0��@����@���@��@@@@@�@@@@@@@.��9Ua}.'>'./.'.>767>&81'.'&67>7>"&54632&'81.'.7>76�AFDP�
��
�PDFADFA��AFD�@44�


s44'8| 0'��T'0��|8''RK=7'��'7=KRQ$$6#$6 



��$$6$#6���B"326554.>7>32#".'.'.'>7j��P�K55K�P����2!KQW,,WQK!22!KQW,,WQK!2�,:!`����%%@�`!:,�
				

				
e����%"&#"3.54670
!37#73267 DhFq�m5IH
eJ KxY=l�,�4-U&.P=�;a}AM;&7�o����#��	7k	��f�a%81#5467>7>323267>54&'.'.#"#3+!5#"&58132!5"&5��	





':.S$$8~~	&�D1�8%&E!X�=n

(

"
<&#w<H��6(
88&SN&,�,$
88A�\�v%"&'.5461.+"#"&#"+";21#">326&#"&'.'546;>54&+"&=4>3281#">326&#WL
@#,!EgC!<NI
-F-*G,L�
�%5"/GI
-F-*G,+@$=C!"6`�P.1]I,<%$@$�!
51YD(Pv�L<%$�	%3'3#7#%'#3!53#����������@������@���������@@@��@����	%'7!55'#3!53#����@@������@@��������@���@@@��@���@!######5!@������������������@�$>54.#!!2>54&32+#32� (F]5���5]F(D��e*<<)f���,>>�"T/5]F(��(F]5FtFK55K��K55K�@�3#".533267>5!!��2WuBBuW2�I((I������`<iN--Ni<��`88������#3!53#5������@�@��@�@@@�=##"&'.5332654&#!5!.'.5467>32#4&#"32�50,q>>q,05�rNNrrN�,0550,q>>q,05�rNNrrN;n+�@A"5b$!$$!$b54LL44L@$b55b$!$$!$b54LL44L!���3%!7!5>54.#"!!5.54>32�@��1R<!7`�II�`7!<R1��@FvU/P��jj��P/UvF@���H_p>P�g;;g�P>p_H��!Sl�G]�zFFz�]G�lS���%73!5	5!#'.#!	!26�,&@�@L���,"6:�ja��WB�_��J�L�'7"����8���#3#73#%3#73#%3#!3!!#!������������� ��@ ���@@@@@@@@@@�@��������@�����3#575#53#'#	373�����܈����������2@�<2@�n����������%3#575#53#'#	373�����܈���������22@�<2@�R������P��
@?!3#33#7#"&546;2654&+";2+";2654&'.�::r��r�H:�:d���@

�

�(8

%@

�

�(8

%�����������



8(!




8(!
P��
@?!3#33#7%#"&546;2654&+";2+";2654&'.�::r��r�H:�:����@

�

�(8

%@

�

�(8

%������������



8(!




8(!
��0%7!3#33#B::r��r�H:�����������"!#!!3!%3#'3#%3#73#%@����@��@���������������@���@����@�����@@@@@@@�����7!!!#!5!''7'77@����ѷ�����"��>��>��>��@���@�����>��>��>��
@#'!5!!5!5#!5!!%!!=!!!!5!����@���������@��@��@������������������
�#'!5!!5!5#!5!!%!!5!!!!5!����@����������������@��������������������#'/37?CH3#73#%#535#53#73#%3#33#73#%#535#53#73#%3#3!!1!������@��@�@�������@��@�����@��@�@�������@������@�@@@@�@�@�@@@��@@��@@@@�@�@�@@@��@@@���������!####".54>�����5]F((F]�������(F]55]F(���"333335	5]F((F]5�������(F]55]F(�������@���"333335	5]F((F]5������(F]55]F(���������������"&'.5467>323267>54&'.'.'.5467>7.'.5467>321#"&'.5467>54&'.#"#>54&'.'.'�%>
	

		
	4%<P-	
F(&?

	




,?X-		E)2$#

:+!%$
6($@2
	
				

-)F58) &$>1
	

	')K!47*
%%?�23
2!/�!!!!!!!!!!�����������@���@����!!!!!!!!!!�������������@���@����!!!!!!!!!!��������������@���@����!!!!!!!!!!�������@�@�@�@��!!!!!!!!!!����������������@�@�@�@����!!!!!!!!!!%�����������������@�@�@�@�����@@
0>3	"!3>7>7!!S�z���`�`0���~!O,�F@�@<H<��7Zs��	/��
V@��
!!!'!'7�@����@ @�@��`�����@���@��@���`��� ��%	%'	7'@`@��`�`��@`��`@@`��`����`� W�)%	%'	7''@`@��`�`��@`��F�F�`@@`��`����`�i�@�#!!!!!###53535#5#5333#53@���@��@@@@@@@@@@@��������@��@@@@@@@@@@�@���3"%>54&'%32654&#".#"326732654&`";�Q�;"B^^BB^�Q;"B^^B";�^BB^^�

�^BB^^B
�^BB^�
B^^BB^���#/9!"3!2654&!2	>3<5.5!"&'77#7'7U�VGddG�Gdd�d
���
@��@�	�ZZ�	@���dG�VGddG�Gd���I�@�ۺ	@�ii�@	�������+!"3!2654&2	>3!*#'	'*#!U�VGddG�GddG������V�������V�dG�VGddG�Gd���-�9�c�0��������!"3!2654&'7	7U�VGddG�Gdd�N�II��I��dG�VGddG�Gd��N�����
�Z��0����'2<"32>54.!2	>3<5.5!"&'777'7j��PP��jj��PP����
���
@��@�	�ZZ�	<���P��jj��PP��jj��P���I�@�ۺ	@�ii�@	��������-gu%#".'&632>767&&76&7>'%3>76&'.=4&'.#"267>32326767#"&5463�*elo5J��s2
	6x��E.aca/.]1|		-

��9	-$i-,YL8

x8#'
5�2:JkNAW3|-#(uBK0 2H-2#

5!z%XJ1	0+�=m*",H7

&$0eK``&4!-$? 2'O-
����,!#".54>327.#"32>54&'
##DkLAtV22VtAKe�!MV_4j��QQ��jo��G	�LD03WvCCvW33�2#P��jj��PJ��m)���9!"3!2654&".54>32.#"3267#5!#���(88(@(88�@P�h<<h�PM�2hK82VA%%AV2ra�j5`�S�8(��(88(@(8��<i�PP�i<5/e&&BX22XB&{*�R�c8���="32>54.".54>32.#"3267#5!#j��PP��jj��PP��bP�h<<h�PM�2hK82VA%%AV2ra�j5`�S�P��jj��PP��jj��P��<i�PP�i<5/e&&BX22XB&{*�R�c8�)53#".54>327.#"32>54&'!%#5##3353F�Ra*I7  7I*/@X+mBDvY33YvDFtR-���``````�p$i!7K++K7!!U(-3YvDDvY3/UuF
	`````���5A!"3!2654&".54>32.#"3267#53###5#53533���(88(@(88��5]F((F]54V"F3%B]]BLA��#A[7@@@@@@�8(��(88(@(8�(F]55]F($C_CC_SX

7\B%@@@@@���9E"32>54.".54>32.#"3267#53##5#53533j��PP��jj��PP���5]F((F]54V"F3%B]]BLA��#A[7�@@@@@�P��jj��PP��jj��P�(F]55]F($C_CC_SX

7\B%@@@@@@F����%"3>54.##5#53#5#53\�xEIz�We�t>Ex�[@%��@%���Fx�[W�qB�3���U[�xF�(8`��(8`���!'!	��E����(���޹"@��@@���	������35#"#3337#546`��.R=#���� ��#=R.`���`
���#!"3!#53546;#"3#!2654&���(88(���qO��&� � (88�8(��(8��@Oq�&@��@8(@(8���+H!"3!2654&46;2+"&52#"&5461#!"&51332>54&'3���(88(@(88��
�

�
�OqpPOqp�
�@
F2WuBBuW2F�8(��(88(@(8�

�

 pPOqpPOq��

� BuW22WuB!����?�.#"%31812>54.1"&/7'.54>32#.'&"'.'.'&67>7>76&'.'.#&"#"7>7>'.'i$S[b3i��P""H
7{@i��P&7�u9m1�+
 !Cr�W+QLE. Cr�W�	D		
	
8$$
	$/!8N0$(;
+$8%P��iC�:��GP��i3b[S�	)�2s<W�sB.ELQ+W�rC<!
	" 6			G		2//N-<?

#"���)@V"32>54.'.&'&67>7'.&'&67>7.&'&67>j��QQ��jj��QP���-fq{D
I�}q2
8
4~��<F���<	
=���;"D���G
	
(�Q��jj��QQ��jj��Q�!


&�
		 )
.% 
�%)

"/*
(
	���)"32>54./#"&/&67%6j��PP��jj��PP���T�=

,~��P��jj��PP��jj��P���t
	_<�'
�@G>7.#".'.'#"&'#"&'32>54&5>7= !0C$P-+M9!A{n`'
3*1aH


kE6�J
#LQV,�ߘN5�
<%$!9L,"9N066\Lt>R*0#
m��h
7 ?����@#".5463207>54.#".'#27>72675�&0T>#)%
CQ9U78Y> 0F,%[1,SF7�nug0HTU ? �!@\::;66?@&^,;\@!)Hb:8hXFJ16��׋���aBa{Dz���o!"3!2654&0"'.101#0&'.10&7>1701076&10&'.#&67>3267>106761702���(88(@(88�]0*p="<.e"	-	
 #	j  5,*+�8(��(88(@(8�3C:?#_V<	26 ^%6:,	;65+G)''
���!2>53.53267.'�Z�rA-CoQ-�Z�rA-CoQ-Y.@N-7|BC|6,O@.�Z��_/ZSL! g��UCZ��_/ZSL! g��UC��1[QE!!EQ[1�9:Up}��%.'&>76.7>'&076&'.32>54&'.17616716&.7161676&''.7>'.7>7&676&�?sY8)Nm?@sY7)Nl

~NJ[e1$8'Ky�Ph�zBP,�2�E0c$$�D!

!
�e7.
-
><y.=@�7>/E)*N?+/D**N?+k5#!'>$E0$JIG"?eF&7Uf0;D
68+
((e/B�%


! F�E	((�556i7::g���*7"32654&234.#234$#�8PP89PP�0\VO""4#�j����-�š����P88PP88P��#5""NV]0���j\ă�ҫ�u����)5!"3!2654&"&546324&'.#52#34.#52���(88(@(88�O$33$$33�.++p=Y�uD~�S��m��g�8(��(88(@(8��2$$33$$2=p+,.}Du�Ym��S}g��X(;?0&'.'."90"1010102>7>7>106=4&1
�;5~kHHk~5;

CtsVHk~6:

�����NNh>N>gO
Og>N>h�� ����
	�=e���� Cg�0417#*054&'.1&"#"7>5>=7>7>7>57'./##16?2?57.'.67>7>7>54&''.'.467>%3'4&'.#"3%.#7>7>5.'%.'.'.'&22>72>7263>7>7>76&'%"&'0&4&5'5##54&#"&'.=37>?3&'.#"#33067>76%&'.5467>7>3267>?3X/ 	
E"
5
\

)�	
^0
K^�!H"!6
 ,l	
	.��

5B.Pk|>k���""0�{T)*szu-OK;
#1(		
��5.h25ET

-
T
TG-TT '	
b	-!.X)"

%A�	
	VRL$3H22G+�:
"
GM>4M�))
R����
2��خ?
	�a(*1JrA"$
BFY/
��
K[U1Q6:	�)E^		��/^a*�RJ"-0
R8@���B9O	K/,�YKd@(��.Mf:YX���
	
C��ƒ7w��

�k,?
"&:m�5a -	
%(2mY0#-$ '=I14)
!����	!373#5#!3#3#``��� �������``�``��� �� `�ࠀ�@���z:#"&'.'.#"'>7>763267>76&#">4M24aXP%,L)1(#0&K%2L<J&0  #"(&7HZ5OJ�%YftADfD"SRL�KSS>"B"+.QX^uON332N,,	>\<fd���H!"3!2654&#"&'.'.#"'>7>763267>76&#">���(88(@(88j%8$&F@: 7$#6%6+5
#hM96�8(��(88(@(8��@JT/1I1<;7n6<<-0";@DU98$%%8 YWJH���,!"3!2654&&'.'&67676���(88(@(88���<%XXD#K�$
		�8(��(88(@(8��rTQTF/N>m@�N,,&��'4>32#".%4>32#".#=R..R=##=R..R=#@#=R..R=##=R..R=#�.R=##=R..R=##=R..R=##=R..R=##=R�� 4"32654&'12#".54>4>32#". 5KK55KK5.R=##=R..R=##=R�#=R..R=##=R..R=# K55KK55K`#=R..R=##=R..R=#�.R=##=R..R=##=R���'!"3!2654&"&54632!"&54632���(88(@(88�XB^^BB^^~B^^BB^^�8(��(88(@(8�`^BB^^BB^^BB^^BB^���+"32>54."&54632!"&54632j��PP��jj��PP����B^^BB^^~B^^BB^^�Q��jk��QQ��jk��Q�`^BB^^BB^^BB^^BB^���$8Rbq�".54>32#.>7.'*3267%>7>7.'#12>7.'>7.#"64&'1j��QQ��jj��QQ��j�0I^4%>1!��!]�Q&7�L-V(�0Y�T	
R�|Q*gGn�L6-.O?+F .6tk:�S4� ;Y=6iT85-@Q��jj��QQ��jj��Q�
;iS7
?KT.��?Wl; YS?+1nH[\&*PJC~
0WD,?O\3P-DX1+j	3;�$29 	N�8q�'<R���2#!!267>54&'.'.'.+267>7>7>54&'.+3%3267>73#"&'.'.'.5467>7>7>32!7.#"3.''!!))

 +
		$)��)			��
	

$���)!
n
(B'0%			$03$���%
		����
		%(3*v�			���

#

�
	


);		&10&		
+30�
$�>���+;?g��>54&'.'.'.+3267.+3267>7>7>54&'!"3!2654&3#+32%!3267>73#"&'.'.'.5467>7>7>32'"3.'.#�
		ir
zx
	���(88(@(88���Ё

"��"
			#���!Z!6'
&)�

�
		�		xl	�

-8(��(88(@(8��3��		

 

)!O'	"/

('

		
#)�


��=�5#!33?!5#'=�X�Ƭ��X:���������r�������!03267>7>7>54&'.'.'.#"1!2654&#!"6?>1>32#"&'5467>32#"&'&32>54.#"5.'&"173267>732676&/76&'.'.#""7>323267>'.'.#1.'&#"&'.'.'.'0&1.13267>706764'�$5A""B5%

$5B""CH�

�
$'d87d&'**&&f7%G44R;*J7  7J*)K�	!$	$&%%		%%R-[#$M$)O&9B'+[/C	A$%P))O%$A,
2  K)+[0/[+)K 6$





$6A""A6$




/�|


%'))'&d77c'&*�03;Q
 7J*)J6 E$�#3
8	"#
$%
%%
%%�

%		*�,,A#"0	
6*J  22 1�@5P\4632#"&7."1'&267>'7>7>4&'"&5<132676&/>32#"&54632�8((88((8� SVS  �(�E	�
'JNJ$�#A!!!!��8OC#	@8OO8�B^^BB^^�(88((88�!!!!A#��	{	Ez2h'$_/�  SVS ��O84		E2O88O�^BB^^BB^���KWc%2676&/>32#"&'2#!"&=267>'7>7>4&'."1'463!4&#"326%4632#"&0&
B	8OO86NH1GddG�VGdy%JNJ$�#A!!!! SVS  �/�dG�+^BB^^BB^�8((88((8|E,O88OK60DdG�VGddG�Q0_%$_/�  SVS !!!!A#��
�Gd��B^^BB^^B(88((88���7!'!'1%''%5�� ����@����� ��؈``�������������N��L^��^���+q%.5467>7>5467>7>376"&'1'.'.5467>7>7>5>7667>7>32#"'.&'1_-14$*#*5Fx(%
�׫�	�4

/
B2B		(-Ht	
-�>(9?	c
�E6&
	#6 GE;,,*.
)
:\	 
YI/ 
%3W:.	���W"65<'&1.1&61167>7.5467.70>32>17>54.#j��P4]�LjB'#'&("]+TB)CJA!!AJC)CS+L�]4P��j�P��jT��^
	6 T,2;
"
8^I*E	I51		15I	E*J]80#4L
_�Tj��P���!##!!�������������U8�">7>76&'.'.'.'.'.#".'.'&67>7>7>7>7>767>7>7>7>76F{iT#/	;$MNP()RRQ'Cx%	J`uD*YWT'8	"		$9
,+
)#*		
8�E8U5Xo9A�H			
'	
N=
	##E"<yfI
��/ 			<	<
9

	
++$L'	
	+$���/!"3!2654&+"&546;2+"&546;2���(88(@(88��&�&&�&�&�&&�&�8(��(88(@(8�&&&&��&&@&&���	DO_s�%4&'.5463:3.#":3261607'.1&603261607>53267.5>54&'"32>54.".54>32� 9O0��$3�K2^REH�T<IH�&�s7"@�
u+F2��j��PP��jj��PP��j]�zFFz�]]�zFFz��8fWE�#L)#1*(.4,>'�k���n}':4��
	
B(��DT_41Z(MP��jj��PP��jj��P�@Fz�]]�zFFz�]]�zF���7So627'..#"7'&47%4&#"&7627>'>56&/"/732654&'%"'&4?'32676?'
Ee+r8L38Q=..�e��Q84M:y.�e�Fe.2Eu,�e�Fe/z;	K29PD2���Ee,-<P91J8s,�e�f+
1BP91K
:z.�e�F�9PD2.�e�Ff.x:N4��8s+�e�Fe./?P94M��Fe,u8J19P=-,�e���9"32>54.#".'&6726323267>323j��PP��jj��PP���<Se77eS<~OO~	�P��jj��PP��jj��P��5Y@$$@Y5 MaaM
	���-;#"&'14.+"3!2>=4&%32+"&546!"&5463!2�:(4YyE�Ey[44[yEfEzZ4'�g�&&�&&���&&�&&@&EuU14ZxE��ExZ44ZxE�0�&&&&�&&&&���/?O!"3!2654&#!".54>;2;2'#!"&51463!2+"&5146;2���(88(@(88H'D[3��4[D''D[4~3[C'+�&�&&&�&�&&�&�8(��(88(@(8�x3[C''C[33[C'$AX3$�&&&&&&&&���@�13267#"&'.'.'.5#5>7>7>73!!@
&'9&!:9$0.�?"

���-5


�			#5#g�
,A(�����A!"3!2654&#"&'.'.'.=#5>7>7>733#3267���(88(@(88�)(! 
`,		
d��5�8(��(88(@(8��


%�d
-�~�%	pj����(1>7'.'"'9891758*jdS0/>NR""IGA*3**fcS@AsJ���
j��79xun/		?���'�M�����".'>32<5'"&#.'"&#8181"#"#=>7465>=.'.'.'.'.'.'./326?8181>7>?3267D��}<=|��DC��|==|���



$)*+)$

z	������"		����	W

)
'&&8'22'8&&'
)

=DFFD=���P~��%'.'&23267>'.%6.3>723267>7>7>7!.7%81&6768140581.81.'##*#.'.'#.'467>7>7>7>323'.'.'>5816&#"81.'<'81&676818>m'-F

V0
*g9CP����+�


<33J
 60&�3((>

 		G'9'#) %		
?/@" #%M78Q�

+_�ۍ���?"JNR*#F!	(%	
*]/&MQV0�>ZT>	#.5#
7 �!8

	+
.
f
'88'
GhdG ;�����(5467.'&#"&7>327>7>7".'>'67k-u<jY1Aq""
6! O21<;;;35H %!*3+� 'T#+R�a`B"5.E:;���//U(*N/6Y1O:|!V-+!V,+ ���(6esy������%8184018'818!"3!8181!2654&4632#"&5!.'01#".'.7>3267&656&'.+>7>7!"&=4632"#26:3*#7:10":3*%.>7>"#26"#269���&&��&&��



��2b\U%

!JPT,	_1!��


��`
7�G*QLH��
�%&��&&�&�

@

�` @ #3!

,Y|T2_�/�
@

@
��It
0;	$!.
�@����
6Yk~"32654&!"32654&31326=3326=265!%.'76&'&'.#"'.!5#%"&5463818123"&546381812#�&&&&��&&&&F8(&&�&&(8��>E5 	 -- 	 5E>��


�



@&�&&&&�&&&��(8�&&��&&�8(`@Bm#@	@@	@#mB  @







���*?O.#*>32>7.'3267#"&''2.'.#">381%#"&'3267'3�$E!	*I
Z.S%=[$		
tZr4*_6V,T'Hf �:X#]A''V0X0U'�,V)Ee!\.d4+X-���&\`TO��4-'�&="���(������%%!%%!�@��@����84��vJ�@@�@Hx��5;��#)/5".#"0:32654&#37'##'7337'#37'#|'?P.+r�r7MM7�  P  �  p  �+J7 �mJ54K����ࣝ�����@@@@���!<!"3!2654&#'73#'73#'73*1.5467>32>32���(88(@(88��  p  p  y^p^$Kn
-@@�8(��(88(@(8�@````��������YeJ?--@���z�"&#*'<7.'623''>54&'.'.'.#"812'623.#"465.'3267"&#*#3267>54&'"&5463232654&/.54>32#"&#"#�����u
�5!!M+-_1.E#9i()+4"!M+-_1* H%9i()+�&�w 7!g58#�]5*CU+(RB+&/$_/2< q]?=\=��
����,1_-+M!"4+)(i9%F 
*1^-+M!"4,()h:$G �d0i0#	&Z/0D+%2W'a3'D1��@0kw���4632#"&%4632#"&6#"&'.7>32674&#".'732654&#"'&.#"32>54&'>2#"&5464632.".54>32.'>32%%%%�%%%% 	

"a//a"

	 H''H}K5$;1wAL�
2(88(-
�g@t0;$5K+!Fz�]]�zF!+���&)�M�e::e�MM�e::e�K)&@%%%%%%%%n
 	  	 
	5K$"�*$8((80
�!$K5'?&BuW22WuB&?k��&+ �`&CX33XC&&CX33XC&y+& ���!#5373� @�I��I������H��9����##"&/#"&'.'.'"&'.546323267>32#7'.'.'"&'.546323267>32#7>54&'"&5467>323267>32#>54&'"&546323267>32�	

�t��




 
�_X


;:
	


	Ni�
		
�
�.���		
	���� 	
wm	 ��j
���3!"3!2654&#3'"&54632#4&#"#3>32���(88(@(88����@%%%%�%%��:"<T�8(��(88(@(8���@%%%%�%%��O4^B@�@'33>32#4&#"#!3##"&54632��YCGV0�GH&������8((88((8@[!:)Hb9��1dY7��@���(88((88��K%'0#"&5463232654&/.546327.#"#"&/.#"3269�&TD=N[5NA%,GjLm�OLK&-'*.uiZO�?IO-#><YV&1DY;AbC""A_>ca�fDbUlXY@u+J8 JXGO	 !"%OFH`<L
%!S@v9O2'LmFCfF#>���U!"3!2654&"&/.#"32610#".54>3232654&/.54632.#"���(88(@(88݆r!9D/OD5<J TW6S9:V9fr "KN46'F@7qEO\g(%!'"BBEv�8(��(88(@(8�iKf9MM_JV<Y7=Z:=`B#Sdf9I 	C4T?=F!E?LA���!!!!��@�����@���@�@@�� 5"#"&=332654632'54&#".=7326=3&qOOq�&&qOOqR.&�qO(F4.R&&��&�OqqO��&&OqmE>>"��Oq6L-||%)&����0E!"3!2654&"#"&=332654632'54&#".=7326=3T�XGeeG�Gee�e&qOOq�&&qOOqR.&�qO(F4.R&&��eG�XGeeG�Ge��&�OqqO��&&OqmE>>"��Oq6L-||%)&����!3!!!77773���@���q��6D6�N�8;@����@�|�}�t��t�f�ID�|^".7>10&5463232654&#"'.54>32#"&'032>54.#\�yF*Kh=
/!
)!;PgR^j*0&JmH9dJ*"=U2"9"
B"\�yFFy�\|Fy�\F�lRI
HL<$/=%O(!/qZPewJ8
$h05aJ-'E]7:dK+ZA

Fx�\\�yF���r"32>54."&'>7>132>54.#"67>76&'.54632#"&7>54&#"10.54>32#j��QQ��jj��QQ��j"B
"9"2U="*Jd9HmJ&0*j^RgP;!)
!/
=hK*Fy�\\�yFFy�\�Q��jj��QQ��jj��Q�D	BZ+Kd:7^D'-Ja41h$
8JwePZq/!(O%=.$;MH
ISk�G\�yFFy�\\�yF���1U!"3!2654&#"&'&4?041'&47>;2031#8+"&'0.5>1>;2���(88(@(88�qouKo
K&,$��o
1;1M[K
p�8(��(88(@(8�f	��	
�CN@�N��	ZlZ���
	O����#F"8;2670>7.1.+%"001;26764'"0764'.#�d�
�0;2& �lczgBNB�
�G
����
UhY7B7
��׸y�x
}B��� @"17467162311312671!1"#15<51.#1"1!2>51p\�].�5IY"����5IY"�cH\�].�4f�b���Qd�����Qd��c4f�b%�]�*.#!"326?32676&#";#"!T	��%
	�"���%%�(�
	��f%�!
	��%%�
	�%b����)?Tj10326170674&1'0&'6170676&1'0&'&10'>10&'&01074&1'0&0617>&1007>170&'a
�g
#�	%�#	t�	j	��2 �$	
	'�@ �	�3$��
NaG
��E+Z-	K

(���m	�"
	8D	�!
6$�\����=+#;26?>;2>76&''.#!";>;2>7>56&'�Il�WM6A�<jT;
	c$}R����1]ExaC	 �OyR*���<aG5Z"�(%��9
EnQ	<V%���%1A'>32!"&#"%!>54&'4632#"&.5467326�#Xfr=F�r]"�^.RC0�&O��i�*%��mMMmmMMm�]�uC" �O#�,H2$B]84H+z+_1i��Rk K*7`$�MmmMMmm��Y��`D8��CT�����0&'.110&'&*#:1810"0&'&'6.'67021>6'.'.'>7>7<56&'.'8181818181>7>7>746381041>78140504104104581<5<5818#041818181.#89&""&'>76"16&".'.'0"1041006706727:3>7>&1�>KSZ@'<OL
&5qhX\#4$C0%

	
		"k!4":
	
	#!T`k8).��?rL�'=(+o-UH.'|%$8�j"R3
3
	$
	




$
!0+/N`E3#[C)f;:W<"&�Ԥ���M9AKT3>54&'6&'."&#">76732>7##"&'.=!%>32!.'>&67��'CWh8		M�qP1kD5Zv:/�a-d6H�mQ�[77[��~kJJk��%%i?Di�� *aAHoK=o1M'2YzH>\!4ZŲ�./-OmA-99-/tIffI]Z;8W�� RIv' 	����3>7!67&'.5&>7!0.#1Gy�mAwgU  �}��>%r��@7\B%"B^:$
k"VUP�rZ!�Y�}L;V9;}Ekcf*,�&	K_m7Gx`KJ:CRC.H[0<���#'+/37;?CGK����������37;?CGKPTX\aejnrv{����������������"32>54.'/////:#62>>>><&4.7'.'7'.535#4677'>77'>77'>77'>77'>77'>77'2633523777.'7'.'.'..*37"???0?7'''''"#5#"&#7'.'7'.'7'.'7%7777#3''7''7''7'7'77'7'7'7'7'''7%'7'7!7'%'77'%'7'7''7''7'7'7'7''7'7j��PP��jj��PP��TF=�V�#=JFP	P#0/``/0#P	P%
%
CD
6
5*`44`+65
���
%
%>�V�#!%
%
CD
6
5*`44`+65
^�
%
%P	P#00``00#P	P_E�@����%%H%%�s���***+�)YY�YY�-.Y..��^^l^^��^^r^^��..^..��YY6Y�7+�*�����%%W%%������P��jj��PP��jj��P�'�#=JF=�V�
6
5*`44`+65
DD
%
%P	P#00``00#P	P%
%
�
?JF
DD
%
%P	P#00``00#P	P%
%
�^
6
5*`44`+65���^^��^^e.-��..KYY��YY"*�*7�LK%%�%%���������%%f%�����*�*�YY<YY��.0-��^^^���!U9.'>54.'>1013267#*'.54>30232.#",?(1]N;0S=""=S0;N]1'@,�W*33+DMV.8h-"NV^1f��LP��j1]VN!-h8.VMD�9kaV#

Bc~GG~cB

#Vak9!2�SS�2#:) 0"T��gj��P"0!):#@����KUbs����.'".'.'>706'4&/.+""3267>73267>7>'4&'>7>72.5063>7>71%#"&'>32.'.'.#!"3!2654&'1'#5#!"&54630:1;J
-#8

/

 ,8M2;�:,d"
��,"	#1

O	*3Y'�0 
Y-3')�!//!�!/�%
�)o	� 		���
�s


I)�
$lF ?3	9	RX

�8	83f*#40�K#7 5
�3-/!��!//!p)'6)�
%��		`	�
@����
%@I_.6>&1&.>76>7>7.#.'.'.#!"3!2654&'1'#5#!"&54630:1;�-k+4j%$j3+i-4a*)XXS"'G�6>$/h4 K%�-3')�!//!�!/�%
�)o	� 		���
��')�!	 &1!3y3-/!��!//!p)'6)�
%��		`	�
@����*3I3##33#%.'.'.#!"3!2654&'1'#5#!"&54630:1;�,3BkM:oqmLDe��-3')�!//!�!/�%
�)o	� 		���
���>��>�/��\�3-/!��!//!p)'6)�
%��		`	�
@����)2H#'#35#7377.'.'.#!"3!2654&'1'#5#!"&54630:1;�``����22o����-3')�!//!�!/�%
�)o	� 		���
�@����\K��3-/!��!//!p)'6)�
%��		`	�
@����*.#!"3!2654&'!!2#"6=4&
 
��



)�@_R �

�

�


�@

@
 
������
�

�
=����%!!!/33?!!=RprR�z�O
���r}~
�x6
��ffg���t��@@�Z""�Vq=����%!'5%!/#7!'!7!=RprR�z����F��
}r���d
�
����ffg���RR�9�""Z�@@[tq�����!!!'7#%�"��D"�'����)�Қ��p��^^UϚ�����D	&">32>32#"&5467'#"&5467.5467'2764'�A6hO	(8�	(88((8�$8((8$$N���6���hN8(	�8((88(	���
2(88(2


2	O��6�A�6���{$),158	&"3267>54&''7'5'#'%5%777��@�@�		��.����f��@��f�������������P+������+*��ooo���o��o�ަZ�����o��o��Z����p"#76764'&"5>54&#"'6&'&"7#.#"32673&27>'732654&'52764'.'332654&#�%��&P�8((8�P&��%(88(%��&P�8((8�P&��%(88( �P&��%(88(%��&P�8((8�P&��%(88(%��&P�8((8��� 54632#"&5"32>54..54>7E11EE11E�j��PP��jj��PP���9_D%%D_9:_D%%D_:�1EE11EE1P��jj��PP��jj��P�A!_s�HH�s_!!_s�HH�s_!�q��_<���������
	���
	����
	�@� `@ �@`@@@� �@@@��@��@ �����`@� `@��`@@-��@
�����@��`
``���� �@�@@@@����C���������������������k��l�U ��:�PS &Z%@���@� �@	�A%��������������@@@@@@@@@@@@  ��@@````@@``ss����������``������������������������������������������������������������������������������������������������������������``````````          @@������������  ������@@����    @@  ��  ��@@@@@@@@``����``������``````@@@@RS��``����������������������@@````��nn��������    ``@@����������������������������������``������``��������``````````````````````````````````````````````````````��``����������    ��('������``@@@@@@@@@@@@@@@@``````````��qq����tt``����```@`@`@`@`@`@``��������������������������������������������������������������������������������������������������������������������������������������������``@`@`@`>����������� @$D @~���������������`���.�M���������������@@>@��``��~~~~@@~~``������������������������@@��@@������������������������������������@@��������������������@@@@����������������������``������������������@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@��@���@�@@@@@@@@@@""@��@ @@���@@@����@��@8 9@@@�� 
OD@@@6@@Y@@@���S~��@�@@@@�������@@   ���@���S@@      ��@.e�@@���PP��@  
F?
	�r�j�@9@@DO�b\@@@@@==(<D���
\�@��D�@ !�"�$%�(,)4*P+<,T-�/P0`2p3�55�7t8�:�=? @0ATCJ(K�L�NHO�Q�SLT�WY�[�]H^�`�a�b�d�fgijXk�mpo�p�r<s�v�w�y�{�|�}�~�������������4���������H������t���������d�p�\� ���8�<�����h����L�8à�����������L��΄����x�|֤��،٬���tݘ�d�@�������\��l������|��������t�����p��D	�L
��4�p�0�`���|��(,����x� <!4!�"H"�"�"�##8#l#�#�$$�%X%�&�'�(D))�**H+D+�,�-|.0.�/p00�101�2`2�3`44�67$8�9�:�;�<�=�>�?�@�A�B�CtD�E�G HDH�I0JJ�KpLL�MPNHOO�P(P�QXR8R�S�T�U�VpWW�X�YpZ|[t[�\D]]�^�_8_�`@`�a@a�bHcctd|eXf<f�hh�i�j�k�k�l�m$m�npoLo�p�q8rTstt�u�vDww�xTx�y�zl{\||�}(~~���8�����������|�(������T�H��|���x�����<� ���p���l���L����d�8���`���h�����x�l����t����t� �����x����x�T������0�4�H�8���\����h��D���<���P��8��H���P��x�8�,�����T�L�������Ì�t�Hƀ�l�t�h�4ʸ˄����t�$΄�(Ϩ��H����Ҽ������֨�D���Tذ�p�ڠ�ی���@܌ݤ�d��p�\�������l��8�\� ����������H� �������H�$������|�H���\�������H�p<��	d
�d ��Tx0������ !4!�"�##�$�%t&4'�)T*4*�+�, -0-�.�/|0|1822�3�4�5t6$8�:�;�<|=�?(@4AA�BC|D�E�F�G�H�J(KlM�OhQ�S�VHXX�Y$Z�\]H^0_�`�cddf\g�i\jdl�n�p�rr�slu8v�xyz�{�}}�� ������P�H�|�\�,�����������t�������T�h����0�����0�������d�����0�p���p�<�|���L����T�������h���DÄ�D�Ő�H��ǔ�XȈȸ��pɴ��Lʜ���<ˌ��� �d̸����ѰҰ�p�d�$������P���ڜ�<��ܜ�X��|�L�P��X��X�$�$��$��h� ����t�0������������X�����(�H��<�x@��H$��`\�	�
T<��

�� �(�<�d���<��dH���l�h\� �!`!�"�#�$�%D&8&�'�(�)|* ++�-(.4/�0�2,384�5�6�7P8h9$:<:�;�<H==�>�?d@@�ADA�BhB�C�DD�E\F0F�G�HH�I`J(J�KxLL�M0M�N`OO�P8P�QpQ�R�S�T�U`V�W�Y$Z\\^\_�`�b4cPdXd�ff�g�h<i�jXk�lxm�n4oTo�qq�r�s�t�uTvlwxx�z�{�}}���D�D�l��4��������h�x�����������(�����������������d���(�4�����l�������������������|�`��D�L����t�����t�\���d���(���@���X���p�����TäİŐ�x�8�������̐�|�<�@����h�$Ҽ�Dՠ�׸���ڴ�H�X�<�4��$����h����H���D����<�0�������8�p�|�x�H�H��p�����8�x������|4�t���(��	�
���
��D���\�X��D�XL���4 p!�"h#$$P%P&(&�'�(H) )�*�+<,,,�.,/<0P1822�3�4�6�89�:�<=(>�?�A(BxC�D�F0GHH�I�KLM<N0P(Q�SpT�VlW�YY�[h\�^_8`�bcDd0e�g4h�i�j�k�l�m�ohp�rDsdt�v8w�x�y�z�|�~|����D�������������$���������������H�x�`�����,�x��T���8����0����4�T�0�h�\���x���T�����0�D�����@����ô��X�\Ȝɘ�����(� τФ�PӸ�<�|׼ظ��X٘�ڜ��Tی�8���h�ޘ�(����������$��p����8�0�� ���P���l����������\��������(�`������D���T�,���l��������xP`�|��4�D�	,	�

�
���
�H���0��d ��H��8x0��8x��`@H��t  � �!�"T#T$x%�(8)*+,,,�-X99�:�;$;�<�==l=�=�>p?8?�@@�AhBDC E E�F@F�GpG�H�H�I�JLK�L0L�M\NN�OO�P�QpRRxS$S�TT�UU�U�V4W,W�W�XHX�YdY�ZDZ�[�\\\\�\�]L]�^`^�_4_�_�`bc0dDd�e�fhghhXi�i�i�k�k�m|m�n4npn�o8o�pp�q�r�slt$t�u�v�w<x<yz�{�|�}d~���<���h��P� �(�����L�d�X� �������0�t��l���X���@�����t������l�0��D���H�����t���� ���@������4�`������0�\�������l���H���(�t����p��������D�l�����(�����`���0���������8���(�����p������P�L���,�����@���<������H��Ę���Lǜ���(Ȝ��4���x���T˨�̼�xͰ�,Έ�ϨЈ��� �t�<ӌ���0�|���4՜��8ֈ�ט�T���l�0ۈ�ܰ�`�ް�p���(�l�����,���<�l����T����4��H�$��,���@���H�0�H��������X���d�p�p		�
�T�
���`����H0<<�PD� �!"#@$,$�%�&$'H((�+,,�2�3p5�6�7�8\8�9H9�::�;�<�=|��<�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK!xU��0�0�fonts/fontawesome-webfont.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="fontawesomeregular" horiz-adv-x="1536" >
<font-face units-per-em="1792" ascent="1536" descent="-256" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode=" "  horiz-adv-x="448" />
<glyph unicode="&#x09;" horiz-adv-x="448" />
<glyph unicode="&#xa0;" horiz-adv-x="448" />
<glyph unicode="&#xa8;" horiz-adv-x="1792" />
<glyph unicode="&#xa9;" horiz-adv-x="1792" />
<glyph unicode="&#xae;" horiz-adv-x="1792" />
<glyph unicode="&#xb4;" horiz-adv-x="1792" />
<glyph unicode="&#xc6;" horiz-adv-x="1792" />
<glyph unicode="&#xd8;" horiz-adv-x="1792" />
<glyph unicode="&#x2000;" horiz-adv-x="768" />
<glyph unicode="&#x2001;" horiz-adv-x="1537" />
<glyph unicode="&#x2002;" horiz-adv-x="768" />
<glyph unicode="&#x2003;" horiz-adv-x="1537" />
<glyph unicode="&#x2004;" horiz-adv-x="512" />
<glyph unicode="&#x2005;" horiz-adv-x="384" />
<glyph unicode="&#x2006;" horiz-adv-x="256" />
<glyph unicode="&#x2007;" horiz-adv-x="256" />
<glyph unicode="&#x2008;" horiz-adv-x="192" />
<glyph unicode="&#x2009;" horiz-adv-x="307" />
<glyph unicode="&#x200a;" horiz-adv-x="85" />
<glyph unicode="&#x202f;" horiz-adv-x="307" />
<glyph unicode="&#x205f;" horiz-adv-x="384" />
<glyph unicode="&#x2122;" horiz-adv-x="1792" />
<glyph unicode="&#x221e;" horiz-adv-x="1792" />
<glyph unicode="&#x2260;" horiz-adv-x="1792" />
<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
<glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
<glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
<glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf082;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
<glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
<glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf0d4;" d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585 h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0d5;" horiz-adv-x="2304" d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62 q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
<glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf110;" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
<glyph unicode="&#xf116;" horiz-adv-x="1792" />
<glyph unicode="&#xf117;" horiz-adv-x="1792" />
<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
<glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
<glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
<glyph unicode="&#xf16c;" d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
<glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
<glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
<glyph unicode="&#xf194;" d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179 q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
<glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
<glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
<glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
<glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
<glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
<glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
<glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
<glyph unicode="&#xf1a0;" d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5 t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
<glyph unicode="&#xf1a1;" horiz-adv-x="1792" d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1a2;" d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
<glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
<glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
<glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
<glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
<glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
<glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
<glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
<glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
<glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
<glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
<glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
<glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
<glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
<glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
<glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
<glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
<glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
<glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
<glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1bd;" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
<glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
<glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
<glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
<glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
<glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
<glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
<glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
<glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
<glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
<glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
<glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
<glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
<glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
<glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
<glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
<glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5 t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
<glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
<glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
<glyph unicode="&#xf1d4;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
<glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
<glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
<glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
<glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
<glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
<glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
<glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
<glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
<glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
<glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
<glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
<glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
<glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
<glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
<glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
<glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
<glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1ed;" d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
<glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
<glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
<glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
<glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16 t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76 q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59 t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489 l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66 q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
<glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
<glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
<glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
<glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
<glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
<glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
<glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
<glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
<glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
<glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
<glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
<glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
<glyph unicode="&#xf20d;" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
<glyph unicode="&#xf20e;" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
<glyph unicode="&#xf210;" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
<glyph unicode="&#xf211;" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
<glyph unicode="&#xf212;" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" />
<glyph unicode="&#xf213;" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
<glyph unicode="&#xf214;" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" />
<glyph unicode="&#xf215;" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
<glyph unicode="&#xf216;" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
<glyph unicode="&#xf217;" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf218;" horiz-adv-x="1664" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf219;" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
<glyph unicode="&#xf21a;" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
<glyph unicode="&#xf21b;" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
<glyph unicode="&#xf21c;" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
<glyph unicode="&#xf21d;" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf21e;" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" />
<glyph unicode="&#xf221;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
<glyph unicode="&#xf222;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5 q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf223;" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf224;" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf225;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf226;" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" />
<glyph unicode="&#xf227;" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
<glyph unicode="&#xf228;" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
<glyph unicode="&#xf229;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5 t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22a;" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22b;" horiz-adv-x="2048" d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5 t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5 t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22c;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22d;" horiz-adv-x="1280" d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123 t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
<glyph unicode="&#xf22e;" horiz-adv-x="1792" />
<glyph unicode="&#xf22f;" horiz-adv-x="1792" />
<glyph unicode="&#xf230;" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
<glyph unicode="&#xf231;" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
<glyph unicode="&#xf232;" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
<glyph unicode="&#xf233;" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
<glyph unicode="&#xf234;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
<glyph unicode="&#xf235;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
<glyph unicode="&#xf236;" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" />
<glyph unicode="&#xf237;" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
<glyph unicode="&#xf238;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
<glyph unicode="&#xf239;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
<glyph unicode="&#xf23a;" horiz-adv-x="1792" d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116 q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
<glyph unicode="&#xf23b;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
<glyph unicode="&#xf23c;" horiz-adv-x="2296" d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 4 5 8q16 18 60 23h13q5 18 19 30t33 8 t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-106 2 -211 0v1q-1 -27 2.5 -86 t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34l3 9v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4l-10 -2.5t-12 -2 l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-2 0 -3 -0.5t-3 -0.5h-3q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130t-73 70 q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -2 -1 -5t-1 -4q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
<glyph unicode="&#xf23d;" horiz-adv-x="2304" d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
<glyph unicode="&#xf23e;" horiz-adv-x="1792" d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348 t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23 t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512 q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
<glyph unicode="&#xf240;" horiz-adv-x="2304" d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113 v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf241;" horiz-adv-x="2304" d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf242;" horiz-adv-x="2304" d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf243;" horiz-adv-x="2304" d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf244;" horiz-adv-x="2304" d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23 v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf245;" horiz-adv-x="1280" d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
<glyph unicode="&#xf246;" horiz-adv-x="1024" d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
<glyph unicode="&#xf247;" horiz-adv-x="2048" d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128 h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
<glyph unicode="&#xf248;" horiz-adv-x="2304" d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256 v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
<glyph unicode="&#xf249;" d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
<glyph unicode="&#xf24a;" d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf24b;" horiz-adv-x="2304" d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5 t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88 t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90 t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24c;" horiz-adv-x="2304" d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294 t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24d;" horiz-adv-x="1792" d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113 zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf24e;" horiz-adv-x="2304" d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64 q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91 t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5 t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
<glyph unicode="&#xf250;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5 t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf251;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
<glyph unicode="&#xf252;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
<glyph unicode="&#xf253;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196 h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf254;" d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87 t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9 h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
<glyph unicode="&#xf255;" d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25 q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27 t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21 q72 69 174 69z" />
<glyph unicode="&#xf256;" horiz-adv-x="1792" d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33 t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52 h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
<glyph unicode="&#xf257;" horiz-adv-x="1792" d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668 q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17 t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5 q0 -42 -23 -78t-61 -53l-310 -141h91z" />
<glyph unicode="&#xf258;" horiz-adv-x="2048" d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32 q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68 q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
<glyph unicode="&#xf259;" horiz-adv-x="2048" d="M816 1408q-48 0 -79.5 -34t-31.5 -82q0 -14 3 -28l150 -624h-26l-116 482q-9 38 -39.5 62t-69.5 24q-47 0 -79 -34t-32 -81q0 -11 4 -29q3 -13 39 -161t68 -282t32 -138v-227l-307 230q-34 26 -77 26q-52 0 -89.5 -36.5t-37.5 -88.5q0 -67 56 -110l507 -379 q34 -26 76 -26h694q33 0 59 20.5t34 52.5l100 401q8 30 10 88t9 86l116 478q3 12 3 26q0 46 -33 79t-80 33q-38 0 -69 -25.5t-40 -62.5l-99 -408h-26l132 547q3 14 3 28q0 47 -32 80t-80 33q-38 0 -68.5 -24t-39.5 -62l-145 -602h-127l-164 682q-9 38 -39.5 62t-68.5 24z M1461 -256h-694q-85 0 -153 51l-507 380q-50 38 -78.5 94t-28.5 118q0 105 75 179t180 74q25 0 49.5 -5.5t41.5 -11t41 -20.5t35 -23t38.5 -29.5t37.5 -28.5l-123 512q-7 35 -7 59q0 93 60 162t152 79q14 87 80.5 144.5t155.5 57.5q83 0 148 -51.5t85 -132.5l103 -428 l83 348q20 81 85 132.5t148 51.5q87 0 152.5 -54t82.5 -139q93 -10 155 -78t62 -161q0 -30 -7 -57l-116 -477q-5 -22 -5 -67q0 -51 -13 -108l-101 -401q-19 -75 -79.5 -122.5t-137.5 -47.5z" />
<glyph unicode="&#xf25a;" horiz-adv-x="1792" d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5 q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5 v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32 v-384h32z" />
<glyph unicode="&#xf25b;" d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181 v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46 q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5 q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308 q0 -53 37.5 -90.5t90.5 -37.5h668z" />
<glyph unicode="&#xf25c;" horiz-adv-x="1973" d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5 t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141 q13 0 22 -8.5t10 -20.5z" />
<glyph unicode="&#xf25d;" horiz-adv-x="1792" d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109 t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640 q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf25e;" horiz-adv-x="1792" d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78 q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5 t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376 q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
<glyph unicode="&#xf260;" horiz-adv-x="2048" d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
<glyph unicode="&#xf261;" horiz-adv-x="1792" d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf262;" horiz-adv-x="2304" d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57 t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197 t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5 t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5 t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5 q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
<glyph unicode="&#xf263;" horiz-adv-x="1280" d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5 t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94 q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
<glyph unicode="&#xf264;" d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32 q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5 zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf265;" horiz-adv-x="1720" d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33 l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
<glyph unicode="&#xf266;" horiz-adv-x="2304" d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540 q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81 l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
<glyph unicode="&#xf267;" horiz-adv-x="1792" d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 t191 -286t71 -348z" />
<glyph unicode="&#xf268;" horiz-adv-x="1792" d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
<glyph unicode="&#xf269;" horiz-adv-x="1792" d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
<glyph unicode="&#xf26a;" horiz-adv-x="1792" d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339 q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z " />
<glyph unicode="&#xf26b;" horiz-adv-x="1792" d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606 q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
<glyph unicode="&#xf26c;" horiz-adv-x="2048" d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf26d;" horiz-adv-x="1792" d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 q-68 175 -180 287z" />
<glyph unicode="&#xf26e;" d="M1401 -11l-6 -6q-113 -114 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6 q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13 q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 32 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249 q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 32.5 -6t30.5 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183 q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46 t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
<glyph unicode="&#xf270;" horiz-adv-x="1792" d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
<glyph unicode="&#xf271;" horiz-adv-x="1792" d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
<glyph unicode="&#xf272;" horiz-adv-x="1792" d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf273;" horiz-adv-x="1792" d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf274;" horiz-adv-x="1792" d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23 t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf275;" horiz-adv-x="1792" d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
<glyph unicode="&#xf276;" horiz-adv-x="1024" d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q61 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249 q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
<glyph unicode="&#xf277;" horiz-adv-x="1792" d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768 q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
<glyph unicode="&#xf278;" horiz-adv-x="2048" d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173 v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
<glyph unicode="&#xf279;" horiz-adv-x="1792" d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472 q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
<glyph unicode="&#xf27a;" horiz-adv-x="1792" d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37 t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf27b;" horiz-adv-x="1792" d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5 t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51 t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
<glyph unicode="&#xf27c;" horiz-adv-x="1024" d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
<glyph unicode="&#xf27d;" horiz-adv-x="1792" d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
<glyph unicode="&#xf27e;" d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
<glyph unicode="&#xf280;" d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
<glyph unicode="&#xf281;" horiz-adv-x="1792" d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5 l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44 t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106 q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
<glyph unicode="&#xf282;" horiz-adv-x="1792" d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53 q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
<glyph unicode="&#xf283;" horiz-adv-x="2304" d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
<glyph unicode="&#xf284;" horiz-adv-x="1792" d="M1549 857q55 0 85.5 -28.5t30.5 -83.5t-34 -82t-91 -27h-136v-177h-25v398h170zM1710 267l-4 -11l-5 -10q-113 -230 -330.5 -366t-474.5 -136q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q244 0 454.5 -124t329.5 -338l2 -4l8 -16 q-30 -15 -136.5 -68.5t-163.5 -84.5q-6 -3 -479 -268q384 -183 799 -366zM896 -234q250 0 462.5 132.5t322.5 357.5l-287 129q-72 -140 -206 -222t-292 -82q-151 0 -280 75t-204 204t-75 280t75 280t204 204t280 75t280 -73.5t204 -204.5l280 143q-116 208 -321 329 t-443 121q-119 0 -232.5 -31.5t-209 -87.5t-176.5 -137t-137 -176.5t-87.5 -209t-31.5 -232.5t31.5 -232.5t87.5 -209t137 -176.5t176.5 -137t209 -87.5t232.5 -31.5z" />
<glyph unicode="&#xf285;" horiz-adv-x="1792" d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
<glyph unicode="&#xf286;" horiz-adv-x="1792" d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96 q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h16v393q-32 19 -32 55q0 26 19 45t45 19t45 -19t19 -45q0 -36 -32 -55v-9h272q16 0 16 -16v-224q0 -16 -16 -16h-272v-128h16q16 0 16 -16v-112h128 v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96q16 0 16 -16z" />
<glyph unicode="&#xf287;" horiz-adv-x="2304" d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96 q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5 t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
<glyph unicode="&#xf288;" horiz-adv-x="1792" d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348 t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf289;" horiz-adv-x="2304" d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22 q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5 q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13 q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
<glyph unicode="&#xf28a;" d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83 t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20 q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5 t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
<glyph unicode="&#xf28b;" d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103 t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf28c;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
<glyph unicode="&#xf28d;" d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf28e;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
<glyph unicode="&#xf290;" horiz-adv-x="1792" d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf291;" horiz-adv-x="2048" d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5 t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416 q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441 h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
<glyph unicode="&#xf292;" horiz-adv-x="1792" d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12 q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311 q15 0 25 -12q9 -12 6 -28z" />
<glyph unicode="&#xf293;" d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5 t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
<glyph unicode="&#xf294;" horiz-adv-x="1024" d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
<glyph unicode="&#xf295;" d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5 t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf296;" horiz-adv-x="1792" />
<glyph unicode="&#xf297;" horiz-adv-x="1792" />
<glyph unicode="&#xf298;" horiz-adv-x="1792" />
<glyph unicode="&#xf299;" horiz-adv-x="1792" />
<glyph unicode="&#xf29a;" horiz-adv-x="1792" />
<glyph unicode="&#xf29b;" horiz-adv-x="1792" />
<glyph unicode="&#xf29c;" horiz-adv-x="1792" />
<glyph unicode="&#xf29d;" horiz-adv-x="1792" />
<glyph unicode="&#xf29e;" horiz-adv-x="1792" />
<glyph unicode="&#xf500;" horiz-adv-x="1792" />
</font>
</defs></svg> PK!u�u���fonts/fontawesome-webfont.eotnu&1i����LPj��^FontAwesomeRegular$Version 4.4.1 2015&FontAwesome RegularBSGP݈��������Y�D
M�Fx���>��ޝ�Ə)[1ɵH��-A)F��ٜ1�f�i��)׺U'�&an;c)2nb$�'3��JV䂡@ꯔ��y|����[���\A�X�FCp���-B̄���V�ܭ�U_^d�V/�����Hv��s�rx9�*c�N%]72F�b�-�$}3�*>q5N6�d狲{*���q%}�B�H$��Mx�{���2ꎟ
}
��d�!������ �C_�	u��gƒ�K�.�~E���y:G*#
Ot�5ap��O��Ҍ��)�	�Щ?HV�C�i��`�@'��@���8��(�P��@��Ee�fԌ6��aG���u�?e$k
DYy�C��6��$FLf��V�2v�㵦Ukl��I��&�\β�[/*�d!�� l 1�D� X̨
�CH?�d.�	}���XB�s�H�'_��5 �D���3�˼�Pȏjmx׉ ��@��
����v�{�KI�J�VЕ4��p�%�Q��H,�� ¾L��|�ݍ��9��@_�NS%��3hԳ̫�G|E��H oǙFz�����k�_vȍ2&����䅐�Z�ۚ�I�I;2H�!�#nR5Q���>YT��!�~��J�Zf�<s�3K7�ϕ�R//a@���sƵ#�2'19�用y��/+q�T,f�O��_�К���
q�З�����h��BX�R)<��&m���(�.�Nf����B[�x�3���x��7�B��nFJ��eћo�����;Ml��=��(�Lj<,��(4^�Q�8Ӓ�@7���{��wÛ�.�Vk:���H U�]*�CK��o�r�Z
=~��r�J���fQ.�Yu�ˡ|$:$���lL�)e�`�yP%n��MpJ�-�L0*W(�)Q~�^k�L�k�1�1��{?$ˇÅ	<���9�Rc7]�yo7����$��h$��W��/y�	/���
��:#r8H�A@LY�gRhq��j�4�m����4,�,z���V�	%�C�*]1�V��3=���B̋���<��9	f�S�z��	Xa�
��&���?\%$X�5��b��/��?wQ;7[�y+�õ�B ��w
4xM��M�(�2)���K�P�J91q����d@ް����[<q�O�YH�]w�ߑ�N-8���'j�U"��q�U���Hu^u��4�	G�ſ1ps��\m
@�~�nA�b��`�{��3pQ��."&�:\y��L;�Bp#"����q ʏ
X8`�q��-X`hx@9�dDD�'P:*U|�pUߤC��s��Ɋ���$J�lȫ�3�@A�"�p��pa�.��0U�+�2e���v�S�f�,���a��'�O�lb��IH�#�tR�|eu�&��l��9dEp`�
jC�r�1�%8���f:fZGHr���vG�Hxz��	��,�Ws��k��|'
T7�%0|���:��r��u.V�	;��	
�sR�胝f(�RO�eCL��(��a��=A�2���gVUZ6�s�9̌<^+����F�n�[Ҁ.���i�bW{��<�n��� �/��4z0�c:ok��s_�06���t��JN�6ک'�� ��ӫ̺�~��ڱ��a��uJ@�.�u�x�Ao�Xʂ
�y���#s�A�^:Q9%`�w�v��%�[3�=;��:�C

?͢�D�"�[�N��j/ꡂa����]hAh9�<B���7�&�l�F�(�-`oA�I�}
=����y%&�b��.��K��p�C�u�>��~���#Ki�w��躛�jz�d�%>����a�ĸ:)�ˏՠ��פS�`@`�'�`����/�>��í#npib?X`_�U��ʃ(��7��W�,�G
� �H݂A
�v��q��ߥ��KE��e�Y��b�f[<����',y����j}��G�c-\��\�w�.�<=����K�+z��>jܠ�"B���'<��Kf�)�O�9Ő<�ĜQ��\{-C'���*n�՚���һ�����)
������I�U��v	 #��8�8���O�J�ZV��èm��̃��h��"����
d?͊�A�E}#>��k��D��e(	�Db�I:J�j)ƴ�=�+can����L/��6b�V�HN}t�/�Ӡ�vP�C��2!G���
\�""�� �L⿅e���(nWI+;�\M	$܎��~�У��Gu���"���0�
�X��]-�[O���g73�g�f��PE��_�4\�e[m]S:�Ř��eћ��G;8�Y����
,�3���`�����2'�5����Y��7�1ߘLL�>54V9
P��.���V�I�-U�x9~Ht�=�%'��n��g��	<��*3F��'��y���?��#[/��Js�c����$�O��eH�H#�F��'��Lq'�k�o�s!�h�G<Ƚ�|�4���t1B���Z��ap�q	WӞ�|�:��櫌�S��mG���h��N
�糃��D1H�V������Ƶ�w���
�� �W��鈢���2?J�ă�0�(8ZJ!�Vb�;���^�*�I���Qi��u���Y��`s�j�F �����T�����*�
i1�@��q�J�ly�$q؉Ű
�q��X����0�@]��0&����Rw3l]y�T8���t��y�JFtiY��S��NmU�&��S���2���n��R����RU��Ҋ�[�� #����-?�Ӹ}�y�w���
:�h�:
�H�G� 0���_c`�p��L�JB��"j��$2�c:���
��G2Ə�W�o�b�h`�/%���6)�ύ!l�ܢ��X/�����I8�]^�o���
����{
�������]���d��r^���O1u���,4�,R[�T�?�?*?����Kĉ���լf;��f�ާ���4���51���ЭN�3����V�)'`�P61wT�,��c�r-���MSP�TX�
�Ͳ`,�Bt�,9uB��N0/g
�� ��[�\y�0����tS�x�\�h)_B.F��7o[~��7�\�m𲇂���;�X�}�6Ą�Q"�y��"A`�=ZI�6�T'��l���O!k��\���W�#{z͉�����%��'R�։ ۈ]򗌆��C���ѩ��M�:�>_.�(4_���ƃ�|#�*�+�k��[�2��L2u�$B��9�-4�.(�e����5,=����@�B�!�{��ZE�D-(�%��2gsLi��h��[#�ϟ�>-��@�;:�cEa�kJ�=��F2υ'�D���
��t���G�uM�ޫ�B�z(	�C���a�(��"%������
s�2�����K�$ﻺ^o�O	V{��Yᵖ:��
���4Iя5�%on�m]��
���\:�D����P��;/
/ȸe���E��-w^��&9:�~g�C�
7��Bnl,�w��k�f'�>�>�I	�
�I��f�3�^5�_j�����B�@5.�@5���Gq�H!R�=	�O�[�aDgA@���T�ɧ7.�J�VxB���FuHG�1"��* ��h����B�ON��8�U)� Em*�	ȩ0l�
�l�F	k�,!�!I 3��
�H�n�<������6�@�Yq�zk
��3Ģ3)�Q5���H�[	B
�h���B,�Z�ı,��4Z���_�+C�
����df��)]F"k<J�Lp�N6
�������KNzT�H���׭��1���`��4����Z/8����W*܎���ׯ*��sҞb
��z�$x.���r��-���T�p��X	�K��GQa6M��{��N;��M��b��<EJڕԅR$�]���h���(�����{x�b_*�B3�.@RE����,uCiP	ka��	�A�K�c��0e/zM�_ �wI��x	���77��H����q�ID;Q�����+8zE��ѹ���80Y�
�xK3�#\KL6R�y���B���J�00����a�X���N6
���>=Z�ǹi4@ᯘV`�T*d7����i��.�G���e]O��Z<b�Dz5�~i�����ؓ��o�R��.' y�R�L�b��O��(v[�[�&�`�(�A0R@<�.�U�D��)��3�.�qc��Ÿ�m˜���y�l��tT���=G���l����_�*���z���P�����s�d����m >v�{T�m�Fc&�pUq���_
�8(z駪jD9�XQ�Ѥ7��,��	CK�M�o�9��C��H�2g:�d��]�Q�Snj31jn��Hx��Y!��l�,���Y`O��<�@Gh0�
)KA�ʘa�$̑��p��2HCݸ�z�E3���gs��7hc�<8P�)1�"� x-%��/�Ϝb�|v�~6^��A��d�ǑN�S'�>�=Ba'�^ً�[.��k�ܲ�[�bG���:ë��G��E�Km&��!<7>�$C�SA
u��v�J�T��-�=�c�����*d��X7yҵ7؟��ɵJ��*6�F��vg=�璚)N���t|:'��LQ�\6Չ֯�&�lņ��(��n�He��(���3��<�gϮ>g	Q`��8!,,5�ށ��ٳ�81
���szW��/���s���i	!������1�;4��$g��3��^���w�"�Jt���������B06�p�M+2xINP�=��&*��T��뽒�sZ/�Z-���0�j��g�Y��SU���_s����`��Uc��`�aD��>�WЦv`�w,����A
.����j�׍�*B�ǐ��AKXm�l����{�C�@L�F���啴�5��<�<��%v�*u�p����K��I&���}*l��R{_ ~ʟ�0���ï��	�h��A��/�>��t�'u]Mڭ�h*��x���
�!%�M�V�J]�e
��l.`��4\�/��g��߂��:��F��M"�Gqi��w�2�'�C(e�3P�{��0�R��$<���#-M��8@"�tÎ�RjuGk_-�`�,t�I����ԺQ�g���4�c�(�cl̠�h��L8E�)�iݩf�����m�m�3	ʻc��	����(�\���ѓ��@�4����Y�M'�Du`�
���,�e��|�KE��L�����~��%��6�����DUf�&����m��@��x�T&w���V�,/'B��J"����YC:-��!����c�v�kb>ۂ�b>���{�d�-��@���WU�8Aڼ�RXX�b��m���F2!Xt�6M������ۑ~B���
��J�6�\]��~���`�x�^t�a4	�\�N�,7����'�	�\7���A�;ҁ��H�
�"��f��p���#��夶`:��I��DfT��6�p�#MH�4�^��=[��!q(Su�r�m�?W���Q[�Э1�����\`X����g
1�����3>���J��J��T�
*�]U�#��թ^\d 4e��K�o]D,�3sb�=�O�6��2�Q���n�D(5�)�k��p�_��hs�CⅧ��‰[��ԥR8��1�d�9)$F�Xˁ�P��x!]N��Q�Sw��4�����,I���pG#��(4G��a��Q$b�8��6�Gь8���	��ũc�`�t�e�[�9���O�#�
$2L)N�n�4ګ�dBY.һ��ޒ�G=�hB���x�Al�aRU���ܶ.�98�ЀqL�<��&��܁j��Ԕ�L��.��ǃ9�i���2�	yRkҳ��T��/�1�31�'�����@h�c
hy�-)�ܘ��Ь��K;(���M�U�}N��L��@OHOB$��gKӸ���M�Q�4T��;�`�K�7J�Z�(~�Kk�k���(N�����0Ma%��eh�l���$��Y��3�H]����SuO+�'	V{;I,SC+��J("�O�R���I���V��4[F>� !�ΛQ��3��a$4�da?(�aٺN�!��Eg�sWmo�>F�!Jђ4�{T4�A	(�^��+42/�h���5"m�/)��E掚���	c�U�!�`�S-�ꄳ�� @N�ѓe'�G돂��n�)4�VUN�y��(@�HUJD��B@NPvEW����|��4b��!��8�hU�}(��t���0C�L/-7�΍r��wQ�����ae��ª#mᥳ�����g$:�s�C+Q�_�y�G�n�L����F�@/@p�s�Xt�PC��;v�#;?�4��x�&�q��4߳ѻ��2�?
��m
��#Q�G����Hy�M���
>
�/��9j:ݼ��Bu�T�kMN�mW��s�e md�#3��ƨS�TA�h��q�S��������4�w����CŔ ̅����	P��]�#�C, *@B(�볂ܡ}�=�>�yQ1`��_g���%|&,x��#Θ�sQ���Z����bC�LS=��ps��<7�Yv���4nզI�a2�:;��t!� ��H���/C
�|9�iB�/J����g�u���
������y���`�fp�2�ل����7���I����u΂s��`�M\s���݀�0˳�+��8��E�g����;]cGؾ�P�L��%�|��/�ȉ�a}���T�9hi��
��R��fݻ�m#J�զh(7)���0��O�y}1�v*�z�@(]����U%6_��q�a(�Aj�gE
� �'��fN#~�Q�lG)/-�pS�5�}�M*A,���]�SM�����C��k�v�8O��{�M�%�7˝8��,Q�@�8hG�/Y�t�"�,Y
`�4D
�-�V~p�՚c�A2ߝǡ�4?a��L��;šR�����kY�z5��=���h<�GVp��ɘ{4�52I�cJ�
K�SP�[j��H��<Ci�w�R*���L�2�Zi��&:���t�Oa+�H��8G���C�ѕ)�rb$�Z(@"'��C���!�����h��y-���	,�XV&G��q8�]�1Ζ�yy��;�p��^�d"
��%&_�!���(�ݤ#��l����$g���?ŜH9MV��$�-3{�����:��я���
�GQKr�.�~�!�"/1��@P��+~�XT(��@a\�
���8����4z� ��@ph�Y�40�U�]8�S��Ff��n�Gq�����ŀ�P��1�Y1����b�n,	�y/;@*��K{5�ऩ�A�)?�Tg��w6X�	�$D�ZC���<@��F^S�bTd�0�(��i��+�]�M{��H��/�"#��p�O*ܐ�'���z �Ca� m�`ժ��ɀ*���HI�p���
�Ä����)3��t�j��g(�z�hE���I��RgX�M��PkJD���z4�xD�w`�ҧ㼻)>o�<8k��ɑ��S��1 #�(�����%�A%(�V���^��<�#K�q�?Z��<8�:�s�F<�<��:9i���i�G���@G��OI ���"��%�P͜#���H�B��)�2���K´%T�����F��:��?�ʼ�?뇶��II]1��
	P�1FMHN���=��4QXc'�ZE.e����etE��6�2	y����`�"�CFQ#k�q�x9r�>�d=�@L�\�H,e�BE��	��oj_��U�@�eɏ�).����qe|)�ϵ-��Wً�p����-�P��.\D#��芳w����$N@ΌFBQ�<�8�FuY�V <!2�{ox���n3w�B�:���>;��,���ӄ!�L���Gg+�-��Oh�ű� ����AE<�`((u���
����*z�N�3b �%u"nrBuŃd��� ���|�̙�4�\U�}�������HY�E���P�Q��$�F���)�ؤ�SC<R낗4���0�@_��#��J,��l>�e�CCmP�ㄊWt$A�\�����W�3R�(<�2s�̋�ST��#�F9ncI����4UR�K�3�$�M��"Q-�	.���j 5������L����>?�-"ZG=�
.�q
����`0��N����7�� �p�'Š;���C_s0	�ѐe]���W�v��p"ʛF����l+�,ƏB�<���H�F�R�������`�x�����-G��qq�\�����r[�D
{��m���� 
	��1�,������s&���D�{P�n�PT��ػ<�N`�`���lT���d�vd��W�m���ѷs/�')!��c�ōt"���\I:ޑ����T�\�Pmi�$�"/����;������}�k�)�mz���������]�lo�Ĕ��o�s|���M�3G����	'%�RU88N�3@���)�I�vbe�g��/Y֕,�P�R�0ͶL8K%�u(�We�Wq��%��K@S�%}�X��Ϸ[�N�+�|��R�j�2�!���E�ύ�ԋ�q"����b$�z��n0�S�p��'u4�q���s�B��d�����g�̀��+i�z�y�ڠ��Hc"�T�Z�A�QM���������m	���)iM�("��NL����6yV�\�$�Kl%�>h�H�����nwg4>\�ATRY�E��J�$��m`"��#&G2|b$<Qr5�YvA���頔$�/�WR���JO߾�(Vq�=�c.������ٽ+���x��#HN{�w'�����x� ��?<�������ݾ5��)�P��r���2@�آ޳�IK����B�S�I�)P����_�@����0 #���	�P�"6Ә� �����(�h�fÅ�:�lNk��g���s���A5{#rl5-�g��rcEgQ۱}ۦK�
�m���.S��5�s���)R4*�#�~i�"��ɏ���
(�R31�-��8���L`�Z}�TvW����j�=-5��-5���z<��A�P��&��Mvm������-M�^����I������uz�d���R�*�B���Ț��ڒKrB�BmX����`��Q�Z@�Ċ*�B�VH^)rn3�H'�w�@�'n���V�^[��374���S}N��D�y�Dž
E03��J1������\˪jxXdڟ�D�g%�ph�E�K[=�h>�Nx�k8?�v��_�o���W�f3
&#Ӥ�di��HaZ�Lr��~f(:'҇�w��p4o�f`�0Y�'[����Є��X]�4�V�/VƲ���Ro�3�J�ȓz1w��Ofވ�Ǡ����bDI
3� ,���s���C!�)}dt��z��)�`�t.�=!�݀O�,ʞ��0�Պ�[������W�OY�%1t�ls�PN�|%6��;���"R�y�6A�aĩ��e
c�uP�S,�%|��~��$y	�=�����[��49e�es*�ZI&#��̚]ll�!E�
��ղK�qNn���㈳4�'I�h��N�-Ģ ���z䍣K�$Q^�sp��UIN-6Dl�R��g!@�h��@;%����Gf�	�0(������qL�'3��Z��;�{]�gC�¦��?I7�Ei�T.L<F7^YN�oY�(C2�n�	l��),K�}o�j*삙.z |8~2�����=���:��U��!jI}���j��փ��Di����)O��;���h>��_$JI�}TX����c~��v<��%RPb�2O�"6�}�u�T���;�a��Gu��(�
3F��y�=�b΂UΒ(]�$��f���*P�N'���@?I�rS8�}J��P��l��sKu�����SNӐ[�l��P��ٺg����f��&����[����Eke��O9KW��a҈;��1@Is'�̊��((iI>?��#�#o�4�F&Q.�:�.����P?ۋ��ʾ4�}����R��8�����K�k4�P���)B��1z����;�᧑����Lު�r�_yPZ�Rd��Ư7��fHºw@���z`X��we0������#�QhR��9�?M���ɷ�e���o���iH1������*LI?/��A9ݒ��i�oO��;��N�ܹ��s�i$��(�˷�1"�e ���g�
�����|��	�V`o>�7�#���P<�t��f���بV��7I�Q�Xy}墘�4���]	�"%6�Z!8�)s�B���g�eԾ��ZG/�
vA�0�[bo��P=��ŗ�K�	���s./���3�2�%��$�GtV��$�&b�K�"���G���W�����a1�`�i�Ws��L0j̭�/h��Y�n7��{Ҏ�K7�lƷ^"L1���"�)�k�X;f��DT�ي�	��dQ%�g�F�AW�g���}�H�P���b�@b�����hY�7��`Eg�8��0�^S8t��
��#乸,�࿴��
{��פ�[(��_�Z`{��~|�mLv���A
����hO��W))�68�o����G�U�wL�j&��T8��
�uJ��\z���?��]?v=/`^�aF�I�D6�$p�?MXa�W(����=��M�=���.o1��ʈ�DS&�)����Q�y]�F�U�n�$����P8�S%v�T���S��M��E~�3]�c�	v�~Y���L�УzQ*��@�9�%p2<��7��A�-�"1t��`�/<�rEg'�@�H��}\�>_��W(���?��	$p	+�XKz�(GkGi��g�0�!�R8*��_�*�$�Ƅ1{:��~I�p(pو��j_ҧM�!!����˵m:k�y����i���㯗�zѢ�\�T�㩥V�BpNf����B5w\e��rP�6�ȥ�?�����������9��U7��k�6��q�B��~`l
c+xn
^\,/f)SD=ô꒰_�ݲaF�p��q���L�$1�U�r���8&��������,^he�?Y_^lK{]��b����>(�Q[��������>k���A����/�*��ʄ��9��(���xK�U,t�d�
�!i2R= ,C&$��m�EB���JL�B�y|H�/%��*�s�{��zw�@��tX�Փ�,���.�Mt�d��P��|�_B�O|mr�&�T~հ�ī-`�ZJId���+(&�ߴ*4,��=�gз�@�fFc��<z(Pu��%�usm$���٣�Be�v�ݯJƒ(2�//���1�}���C�3��hk�U(�N�9!��Â�?��*Z*�C:J�(5;��vY-	��H����а(�q�Ұ܅.7��@W4�6™Jb��ێ*̝�����^�"D4�V�I���VN��@fiW5�q�
C�=M~�y�����0�����R�W�~�����h�'$"t�&(�Y�%2��LR�ѻ����Y4�r��|F&���n��`�y!��iS����AP5��j��8�q<_�;�p�Y=0�ݐAb?�G���M4!��cFQt�KU�kM�|�8Zm˸��'P�y�Ļn��)Йg\0C>�!<y�d�#D���.	�F���H��!4<��
�<������	�4��ӽ7�,���b(��x�S��F��밸�e��1C�r���jR�<��FpБ^���J��%��}�Di��
�ٸ
�����'�4iدؼ�K��>��	��=eFy��3�r����Xy?*�X�}�X�*JF�ݩ1�z�;X�.��,��>�k�G�X'DZ�G.����PY���Y�q�
�/g,$	0�,�(�urS��K�i��Ɣ%9P�Q��h�+/�x�I
)ǟ<�XB���Ma9�%���a'<g_��&��[�����I�ES��:��\N��K	��Y�2REyg0��Z|5��B�I���U`�0E�#���ˌ'�f����~Q�|Ƴ�7�pCga��%�j���X�Ή�s�e��E��]x���aDMg4�m����'!��N�"�����%�&�Ih}�M+�F_~kne��I�K�"�MdzW�&��C�Zt8�L�3‹�`J����؅���c^�����n��T���F�g�`0�G�z��br��k�k�*�
ǹ�N��X�q����`a����1\���}]u?͎
D�$�j'��K�J�/~_�y��O�,�G��cǗ~$�F+VI��٨��"���G�)G94?J`�7"y��^��p�H@ė=���Hj]V%�p�
}&��*g�n%]���Z����#�ٱ�;�/ .l6�W�!�vX��˼S��˲~ �W��c�Ղ�{�8��)s���6��ct4���Zq?Z:#<�}�p_�����J�e`�!��܌u4>Kf��x�0��yM/�#�+��s1�d� (b�f��đ�QuJ��� �6-j�fƼ^R�[^;�t����L�
9d��¶s���a�h5,hB����		;E� �͢��Bf<^�f u�#�}$�3����l����5X�m1�!� /l�NА���j�9��m�GAP���E-�d����,�~p���J��`w8�q�Z�aL�
W�TTԖ�
�ǘȘ��"�����2Y�cwO�벞!�uπ�X���#0�C~��_1�V�Sv,�u� (�`�$���cM��O>�$�����%�Ͱb�G��MP�&sp�0d�C�NV����q�m��'Ő�!72R�����A$�����˞1���;�����l�p$����(0@�O?�F��cԐɹ�g���v3mOE�e|�����o�~X6ms�'SO�%�v��j�����wb`)&9�H;c�r�(x:r�:{[��f(d��<'�����ܧ���ƕS��+%�UU���|(1i������9�S�|�C��P�tP "�Bu��!��3�栾��l��뎊������a����������>����1'((ăw��:�@��f�A	h���W�7Z�`,/��T�#����8aeT��J_���1���̍-ŋxH	�[��S�����y��۴\T���TLG�:LL�h�,MG֧��G�H[c�]>�� �O����l��u4"8���ԭ��=U*��
<`Yf$µ��.@9"}��D9тq�"�t8�k�'4�{�F҄����V_�@�bh��C�с(��q�l�u�>���啢��N6�/YqUsi��~8���(By=ApY�z���,´\t�V�5��2y�+}�a���B����=1.XC�X�����}�
�2�
`�V_4�(�"��4��ݕJ�PBZ0���"����_�O�&d��e��6@�M�0�C�1๢�$Վ����GM�if{�?^�d�1��"�lsś]���R6`��@[���$�zQ�{�9Ev����[���:e�'�KJ�hd��
���ƌ	ٝ�:��,�`��İ$'���ъ�,��g��"��)����~f\�9\?��50N��Tlӫ���^�����H����-(2!�)}�o��G�_���}�y�"�o��sZ���#L(@�܀�fC�y������$��~I�όL
��e8���ڞ8_��[�ȅ7��[��Y$�V�
E[��sڱE3ʌ}�J'�-,�8X̸� �'X�(d7���R�Ч����d��J�����W)t\�ޠ�c8�7ya#�B�^��_�bG��[�f� �+c����+�G:���!C*�Z�:�HC�P�	���[.�G������H4�C#�T _݆J
�c�A��c��j4�e���8�Z�	�&�i�QQ*��̀��&���}|U�D���\X儴�J�_N�K��%��@��6#[xsK,�^ `�B)�8��Q��}�f�B�������oA��6��G��UG�FVB �jQ!x3��vӺ�k�3нE��3`�,t�H�+�Y�����?]���Sa���r�"�s��Ĉ���nh�E�nˆ�"��a�G!G�͢%���9�TĢ�2����=�H!��<qH	�yLA�D�u{M�.�G򹴋A@5h�.�{�b#�l����Xk�8�$���M�;
DZ't�9�H����7*�d�x��N�zz����̥f0�t�҄[T�la��fF$w�ۯY�ql�¾���[	ޅ"NyP��r��;q<���a�:�i�_�1����T*���,r��t>�ò�tV�D�+��o~�l�;��(O	��p��8U�b�T���T�;Q9&˔�܁�*�6B�7o�4��0����ۙ�ٚ�
��R�o/?X�H&�J=���d�>��	Yt�S��H�.BW+F��ܨ��RR���됕�D���R�Y~����v�m����s�$�^��j�¶��F��݇��<�rH"K�a8�XQ�`���ZX�w�4�O�/��K�Z�_�O��-�����/���dD���,�&�l��
q���K�]C�A�ъ�P�|�4��A~�� �B���&W����+f��A��m�e���ۿ�Ւ�N���@]�˛��S�1���<���E��a���6�%��uv�rx���z�RV�ьKr�UF;��=�Y���x�p��
?��/� G�3�,��1ADvP�,�W�]d굿s�k�@�jϥ������M	��zP��ِ`��A�cs�d|�7d�aH1u��#��'�5&=T�G-���Ƙˊ�2P
�<7���n��q�t5�V���(i��'�e��ߕN`��#<�9��4ы����|p\�|*v�QA�~m�u�>�G(�Xk����]�6X�*T��� ��<?j�mu�
C(�MATm8ji�[Q��(�q6_���>hs�l��q=0�6�\��Ѳ�0��g�k�!�
�H���AR��L)�\���d���D�""������K^5�w�Q��1����P����$���d�_�ݹa�����8TDl��0�
�D+&�F2�%��h��6���g�
�Ґ�a��`�;K �#���ss�~�|��K�V����q��j���T��u�����C��-fr��`�C��X�5�F���?l���%���
Q��8�� ;��)��cNH�{�@�r�t=K^��)]�X�0�Y���q?�	�w�x�XdLJ"�\�8��f5�_��\c1H#|�����
7��$`���/���Z��
���n������i6}$���k���7��*ܩ�J�ph�nբH�5�O;�$m��9�w�A����N��#�����XW9<z�K0\�W<�pDI��܉�M3��-���VC��M�촟o�>#��vĨe�o�ۮ���`��{��p���)s�~m�p��_���[d`Dw	����ؤ�/���$��6?��#b�&��e�g�
��ޒn̥�PW�6�6�5��mf�Ā��.�Gͬa|EHM^Pjp��/$@2b�k=v�s�p���t��5p|��Vf1e�~\��Dt��Kd��P�V6��Ӂn��:*RVR*|��<tm�����&�����%yǷ�8X@���Q�$B��o�*Ru.��*Y�^4,���)��ә�s�V���J�a�����1�ӥ�6�h�\�M����X
�u����bh�QJ'��LN'�(����ȱ��Y2HG-�CiO�L�"�)�����
Y�h| k���_��J���Dׯ��T���7L���U��#d2IK��ABR�
���J-55���*�E��t`�#<05´W�x4Ϗl\�n�S��(�0`�~��a��(�_�$�iH��ۄyrX��-���u:7t1jY	��>�`8�2�:�i��p7:ټx�)Ѕ'%/�O��z��t��B��$Ӆ�bZ��=��x����OG��1g���}�eQ3�s��p/��P�L�'���,�v8~ͼ�یp�#Q�l�a2�0���c���	��2d����T�!'u%��\����;����$�FL	�:15�)�Ȁ��"i�"�_:�����$�+�<�H)�җz[����rq8-]�|�
���D!�c��S�NqmH��ə�<W�7���#��-�F,�qk��OP�&��X��h�l��ڵ�~.�7d�57���l��K��\�@�������y�'��R��,0���*nV��!J&��ew�շ� �t�t����#�AԎ��b�t*+���^�q�RY
U���10A�p#*�Xj�i��2*���0���|e'��I�L�0�2X3�	�#0�Ia�9�/[�3ݯĝ0�;�fEޠd�w� Á�)sX�P(Vx�gt8�
:� � �L��f-�7�eu��>�Y����ޚ�z�?�<��������Fc��+)�Q�iY~U<�@�:��_1#���m�05 bp��x��1�C!�sV�rvв)&
؅(��i��-�M,�s��5���Ei�Q��Z���y�L9_ɐ,��m���n�A���);~��f��b)�@q�}C��^p;�/����A�S&�9�:�����8$������G�s�.� K��[����J��C���oO�l������X�r�o-S0�CR��i �Y`(��e{=���*`@�R�-�t�������:�"�N�~�0�_kx���c��T������6u�%�d7&�C!׋�Y9��2_���9��M]�< -�y=(�'�ua�2	Z�0��a�W�?�#fhX��YG7�Z k�1��`��D��k�A�ݠHJXPH"�7-V�+s5y]|g� ���x�p��cFL~&(/�)�Em�0����R4}�t�@�aW�S�q�z��i~�t�O��v&���j����>�'�Ʌ���t"��S�5�ý;�t�ū�����4R��,l%v=��x+�~yb�D�K�o4��L�
�L�B$jG*��q�R �t�$�W�Y."ΫY����xH��8#�����C9�pm��9�H�=��Sn�rrz>���*��2��z�S�~d�C���3Z�b=�oQ�X�j,YEHGN�y��c\�~T�6�Ď��j[�݃�/*�'��[�Q��T�`!�@/
�(�,ˑ�}Dl�H��"W6����̉�`[
�#�y�=6���|2�lM\�k�p�k�e�wւ�l�S8Bp��Oդ���!��0�#F�{��@��ci�qP����)2(h�ɑ�-G�b��Qh?y�7�EZ�~ˑ�e�Gx�.��B6)'aj�Kʀ��߂}���R��.� C�<N��2�y��U˿x.�1B~�	7�6Ѻ�|K��WQ�ZÜ+c<����l]뛤!��}0�5NT	pHH�$t����r��ʅK+�	{�[Ze`�BX��m ���8�4�Nr�TJ��8�(g��H	��Y�B�P2:6�	��ҙ���J��I��HP�޺#?�Oe÷@R�)r<�e�2��v��꺭�K͸Bh���ݎ����I�9�8A1u�c6�����h�sJ� [p�?qeC�"�&+�	|�$�v@4�B@G���e�=��%UDas�m<��;֛r���
f��9E�a���|X�J��T��8�y��-�}��!��8�y0p�,a��C��.C����O7�*�d�5%�0����LP49%�q�q�(��O��
�volV�`��
</�ZYI�tI=��K�N唇�h� ]@W)�
�Ywi��^_�H��M-��Pc��V��Z�Ȫ�bq$�-�K�U�t�GU$�DTX�S+�y�17����u;��5�G�ѹ���D�c!M.ob��]gTJ�e��$t�\��g���G�!?̧��J�%�xN)~r���%������������s5a)�����^�n���Pc�.mib�31�& �A��N�i�I�\�G���f�H3�yI��u.��^8���1/��`�g��ۤ��Y�3�K ��T��,G�$h��|>�X�c�]C	����S���)ƌ��M��'�#,�S=�:��'��`H�S�?�u321D
S
hn��@�G�e�v&h���U[d0��֦����֗9�P	��%@�����a�0=� 7Ơ����*lLz�d(!B��5�ϒ%-:��u�g|6�OHQ�T	��O�/=	��aA˔r�� }�M������<:�T	������m�N'���������	D�+a�l�J��̋�.���Tl��0n2M�� �l'�[��̀��T��0X�D_k��▵v���
�8�Q/sRN��
������@("(�OZ��j�o� �YgjRѰ����%�R���J�z�*�[{��d�Zz��C"�#�Q��V��@0�d���R!\-3���H2U| /Qb��D:��t�ÒJ��R��ŏG����糊箊��N�"s9��Ìp#�(�0��?)pN%�dX���P[3��P/[-Gr~,�Q��]̷�5�t
���Jnʗ ғ<r�5j���|>�6jρ`L�+�n���E�{!�YL�_��q��-q;�#gAY��X�˅��X63h��DN�OU��ا`59�������J�#&����6���~X��M�1P�&`�pI"3&���C�o�Af��^��:�ZY��J�Ɨ8ZD��[	D��B���B
l�ư
�ިB�+��͠�V�[v�L
dU���dt
��
�����mīD �1*��u�3m����Ik����[xJ�S��"���nUm�/�wH����zzm�/R�.����B��5��~��v�:��D(*��\��V���$8��_�m��$0�W��C��d(�:k3��=w\*싕m���/{�����}C����hb����Ɣ��-(�<�)~
8NwV>.%pD��~��A�ێ,<4-wPB-��	~��-�W�uBX�K`(�
�$��4��-��~��nB�&�Oa*8Q2�z��
g�
12Q�_Dvl-��Dr���T���քᕟ�~'���q:5����j���&="��%&�|�Y����&~[�,���a��I2��8�D��PO�Rs�FX���;�Da1dz�f��!Wi�4i��ց,�M�V�����^#!Nj�ʕ��ogT���8��Pm'�M�7��@�v���t �D�MbL���M�]�Q�B|�1�	�����"Esl�<D�.y ������&B��?�5N�#�׊�n!�mD��^��^	��jɂ�����V"������$Okt}Ŕ@�\G�V~CC��ר�.Q�n���v�eTOJ�{��D���hh9��5;`
|h֠�I
��:����:��왻=��n�כس�����������:���1��s0�?Z-�N�P=,J�4;��w�~(�x�=0�&X\
c�#���
Z�*���!�A&^����al$��sU٭Iwa�H�/>�̼��=��r`��d��	�N�J�[}𢐴&Rr�x�_����<�t����r��G���d	�6��Yg�	�F��'�şi�d���)���:�Ȭ�q6]���En�K������Z`H@$��j�.�Z���7@�9��`�AԪ1�9es���1��*�ar	~)Z���΃�����Ch��-���Ę�������r�(ͮ �g!̙��� �0��Pàmۑ@��P/��!wd���F�0C*H�J@� �q���	�	ȕ;'����J+�;/c$7sAl�*���~�S1`Җ������=K0eI�=��3n�d����	�2)�e��,
3cp�B�b!��9$ݨ��i;�0s�p���8� _���d�	X!9� A�.3�
��PBD��'Q�E��JZ�LH"r��D��2��:|��62�r$�c�I�g�A(=$�r���x�7���L�Q��P�X�i��m�|	ㄢ����y���na��]�׳�$���:#�O38��=����
)���Y��Υ2�t�����[��$��E��		�@���\�d�-�]�務�O@0Wv?f�"G �Љ2b��q��D�8�K���ΰ����!�
1��i�((b��Wv�c�o�8?�`� 8&)^ɜ�k��k��&X&i*D�_��D+Q��>�
OI�ϓ�%^EϾN����q�0����D��U�̺��=
�ؙ2��+�xxɓ���<�O��`L;���_���a�KK���:/=�v�A�l:�ح�:��������r�u�n�ⷌ��5����e�_DwS!Dq`�P���M��x�Y���:�Y6�b[�i���ڥ�A8PT�XB�T�f+#�?���Yq��Y(�8ӄ���*{��O�$�/?VK��*� HO�…����4@V�1��gW���J�{p�Ul��]�o%#�w�@�o��	�$7�[Ez�
��r�
&�ʢ|	H�X��./M��Ne�n)<e�$�Zi�R$��upo���]/�Ϣ�y�+���N��sD�†M��9QH���,0P&8���G��yv��)����(��J��!�zAR�|��Om��>tO�6�g�>t�5 t&NiM!:V�����aA
F��9Ddԑ,ţ�i�ht=z��D:�G�Nr��0<ņ-F�5�j!�m�s(T	����W+0�2Ѵ�hd����)�U�A~o�v� r\����x�
8��nb�%��>/� �����Z��]ˡ)ac�pRS���c@>�--+$���c�੦�r%�P ����llӺ�6�C�C�PI���̿���1���jIxy�r�r�abB�i��aO�q�X?<�Z�b��`\O��d�R��	�I��)3����C�����wS?I�o�0B����n&Ņb�yn��J8Z{n,�C~���:�E�t����+�|IK(V-�]��uA?�.��úx̠���z�ø�\
�D�>C^�w��w�C���=���XL
�Z1V!�b*1��	�/)J�P���jM̘=�t@�rХ&[c�+g	��Nͽ�Z��šR1"6�]�"�g�#���(����͞��ц��
l+h�R��Ͼ�+�eC!�$KH����u�Y	O���)n���յlh�<"��,bL�՗��ج��OuY�X7˦���'��W\`���0�#�����ů;��3���`#Q�d��S�x�5��)"w�x2>��H`���g>�<`�R	f�����َp�،j�.Tɯ��|k^��L��Z�]��V��%�u;В�'�.�ZE��N`aCp�q�	�|���`פ��Lq�revu�RN���j-�+`�Z6+G D���_�9G��'�*;��t8��&%G��=ݙȺ��MBL�~��vd+��.�G��Y��T*�;�� w�+idf�~��{���}l?�6J/�S�9y=f�4):�'��
.�T��b�����/�6�I��p�A��a5Q8?&�Ց�+hyhO�9D@s
����+���W%���d��K�9�&{F����#3E�h���T�2�|/ג��E��T��t~a�ذx�������Wi㴻��e⼍���*��'2��mۨ��|�K�s`����4y�9|���T��$\�	F��ҟ�.hJM�O�l��L7��*���j�Pw�r�K��M�%G��M��]\/��6���:�}�Ċ��|\���M�"�f��KM��d�P���6�}��Ӱ��O��D�5y��հ�C'�z�`�pOڀ�Wal��@���=�O�
�%-�EO�EܘA�N�t}��M��I�]�%���7+�<�փp����F#hBd��}��M��7��*����[���
#f�#��5�6���p�i���Ά�qj�1\��:�1��ڂ�M�V�"'���H�kr7w�חnn��MX�! D�Z���Xr�Aw�|��_��>R�Gܠ%���К
��G�m1�	{>%��:_��J��eL�@b�ԯa��*)_2�DǛ+�R�@��5�G��RD���<9,a[C�n
q�+�1uWpS0�s����=x㎊B����狮��o��+CGa'{�� �
W�+�xg5�t̙=�8c�[�#֓ɸ��:Ƨ�	Y<�/��B�'"w���2�ur�M<�j]F��n�$5�W_�]��:��W1t$�\L��gal:fdy1{�,��X���g3bi�~7v���	�L��S"��Ԁ�C�6�<�{�Ga�%��2M�q�"δw�3���CI�?u4���"�Ϫ��\מRm��Vv*�a��~%�z��1����>�B�6p,4g̓�^?2�
�z��@�������
����F��Ar�.�fw�
��).�*.k�ܘ�u
�y�{o�P=�p֒��e4�I�7�t�����,##
lޗe:I/�4�
���[�jDZ�jw"�8���
������&?+�N�ͪ�x���d��%R���#��%�B�o�§�Aݒ�٘�?<&��,"�[�q��R@e3��L5�Q�|[||�l44H�E�Q.l�����u���`a��POlS�����1�B���XVJ9�f�J��ԙg�FKJL䁭��&߈���D����_�0�D�=ro�ܽ<���
M��G�yPK�F`��8ӕ�I�� ��Z��O ���_	a�b9�j7|J~��h=�ů%L�Y���-�/�A��f	b0��xz�.�cI�`���7�Yp��,�4�&{�M,;e�� �tF%�q"�&�_Y_rA �m�,�jS{.���y�@ҷ�:���of�sp)�w��B�_w���;@��0R��l0#/C@�,���Y�9����,]蒅�l
�]�	ٹ����]Okޤ�K�n��լ4a�>�Oc��;o�T�ň��^��Kqq�8F�ĭE����v�����a=E�`������3{�篅��=�k�mgq�h��RI�,QI����[��ʳլԇ�ðC	��a�2�]���j�j<��+�,��n2�1�#"�F
�4/#��&A _��l5�޳�&�8Xΐf��3�Gp]F̥�J6@`1q��Ņ���'�&v�*��0�$�:��W�ήm�Ts��
�?��$�S��liF*�-�Tp9S
�P�"ۿ�si�Z�ײz�`��N�E���;�d'̮��.�zq|/�8\�C�r�/��i=���4`�Y�ݒe��0�lN��>z`ҕ�װ��k�9�V�㟽e�y��0�+~H�PSM�I�ݴ(����`�f�}B蕬�5�l���<��]
� �!�K�
������4�\.`�dF��k!��n�j~�`�P���)T���Dœ��&��I�(X(8|�&V+["O��+9a\~��%l�z�\s���.��GW�Q�G�3%�Tno�(ʑ�!����_`��G���H7U�Vh��(�cP���,�x����	����m�7"@��:T���Ų����8�к��G�������Gݑ�c�+�Hق�s1fբ�T�ȼ���5��m�_�`����R_���ܗ��<�k��YLt��,ϙ�����/�ޗX`���\̀�����V�ȍ�f|�rd�^g�&@���b~<G�p9��⬺E�`s:��I���	��Fy%o�ڀ��$Yt|P�����Q�В@�펽����Az�,�TL�]b�,�
3O歚+Ƥ40z�{�T���m9��!��R�,�Ƴ�X~���N.*�P	~m�k
9,s,��Ǔdž�]_���1#��89�i��/�ňg�� �H!��doe:d��ͣ�
"�R�#V��ˤ�ޏX�#*���)8�j�/���9�%�e?�2\���N���N�Lj�&f���k��6��v\�g���!r�˛-�I��P���(�Y�k�
?RE3+�@�b.N}ZdL�"LV"@ԝ�o���lr}Z���^セ�Y�7r��h�	G�bm�J�$ET�9JAy����8aѭ�!�O$[��^[
l:�ON���@�
��7[_��`�%�ّa�^D���rb���~1�G��`,1��[���3�g��������������vJ+ώ���y\�&��d� �ąq�wє��F��(	�6NY�-����O
T�\
�~�[���Ss}����C�}=.DY�V�t)\{��/͝RL�s���>�{hP��\�~c�7���l:M���"���X{_�=�s��:��8�����΀N]�>�ә�wt�v�G�~7��T@y���WJ��1�P#���� ��$�?7`����zx��`z��?r�L��2Xej��i�A&Т�:Cd�4�v�^.4��x'�J)X��lId���:��$-�c��L�b8���:d��$@��?�50�p,Gf�⛋*F���a�j�f��<@���5��b(��$W5
��lsGcR]��c��"K<�O��^�C�&!��\�@b8� �F��|�5���-�*5a�3����(���
*�l����(�>V�1���UOX�ּ�C\3���DŲ�l�ڐ"�qf�K�)��W��DB-�:DOo�ڝ�[
�(	!9���<C 节�+�5��~-��mX`$K=a�!5X�'O'�r�y�P��%�jdԺ$Ws-�슠������J��tat-3��G�*z��a����:;����[�H'	���-EF^;��]�2JDg�
�$Xznp䝢v�wcv.�ɓva��)�[����n�`� M!�N�_śk�:��\JF�q%+=�1����Q4Ar6�ē)8�Kf���
 9�JA��b$N�
Kx#�u:MZ �R]j ������"�5K�P,X��I!�	s��^�*c�J�T�Ud�b�s2�΀\6�ޟ���iQ�tD�B�e�B�bB�v:���>2vO��ݮ��U��^$+ ��H桄m�t��'�A�CH��U6�=���]��;{�!I�0���o�?V����(B��F�b�^�H��2jqF5��c�|r07WB}֤$6�B䥌(m	����0t��8,�4bUm�9@CpT�dҝ���O���A�B+��Z�lȨ�k|*ǻs�ow�;��5��,N��O�R
���ւx6q�_SE����iT���S#"o�0+h>9��k;�!7@Ĉ-S1��r�jL�������1����k�=����,=���N��'��V�e
4PbR�m�M��6�N�z$2����p~�ֻ��(:�$?����E����H�Z�����8y�Y��e���0�恀��͈e�};��݊�Jw�#G���ќ�WG94��˜�d�&ʞ�.c�����#c���~�o�2��:b��@��8y&Zhs|�g[Q�d`�y�լ[̔�d���`�������[���߮6�,�>���F�����
{L��͌mZQb�:��q���jUNL�2����rS��Aƨ��Jȍ�34�`5����ܯ�,�U�r�X��JE��et��h�f��g�a���h��%���}���"K��-
�T;*��"B�y����sݬ�����#@x�E�J�AA�ck�����@L�|' �'۟ �&��~8?�3e�,2݇��+���A�:ukX�2�F��K�_!��qKL�~��f�d�!ۦ65��g� Ub� O>�#Cx�zP��(��ٯ����0�����dЕa5.��x� ��^�pj����wU�=1��]��m�[z�ֵ�Pq���^~'��@5'���j���Nӽ`q���WŦ�/��٪{E}:�?��:�l|&1
�>x/�EX$l�Ϥ>?a�ݣme�c����0���DS�pT"�CY��MЄ��:Ѕ����샂�ԫ���E�ٻN��M`���
Ir�I:��2�h�]��-5n��԰u+������ƃ���C�ٖvҖt�5 A	�1��ֺ���u�l������A�w�yA6�Ty>,W��ŖƐ)K
�گY��մ�H�Ec &�jP`��n�?~��	��
������<Fօ<*�Y<�UV�%]5���<���mN���$�5S����F߀�q�8�g:���8�N=@��޼'���jZmrTm��r/n��
1�AS�����>�@�^���~��Y��*�G ��͋Cͣ!���q	)UX:1h$�.{���9&���-�Y`A`C��8 ��m��f�/�1\r.�U��8�Y/��x��	��/��	mʁ
X��\:��*�������R������=ˑ�T0ژ�)Ӓ��_�&���t�xU�
�&`��|-���u�oN3K�LR���tH��9�Z7Eaa��*/'-RkO<���>��g8����
��j��W�@��*�F�\!
H��7ҚƄ�d�2M%��2���@��Ɩ���P���j`P_��/��_�MQ�3�p�h�������k;�� �5	
�˚ �1�S�
�i���eՆ`Y�X�9"b�as�fd9]�-�$}(��,ô�E.�Qb�x�)ǢȂ��灒���a��-y�<�0�[�$,2%��QM@	���Á)���{!�ߥR?D�'�`�1�$:	H>�vC�ʼn����6,�H:�1��G����z&+h�`��+��
{��
���<�1��z
-���2){-}!�#��]P�(�<��>�w-�xب��J�?���0jF���#D���V��M�

���3)�	��aݨ?���X��O��4FV����}:@�4G�flS�]{���b��rx�Ċ�4�c���e9�+�W��(\�Yi���Ue��K�u�*s�N�x���&�ʱN�8z I����a�D�#���U#e;�MU�{��\�h]�v�T���a��`���!(m��Dӽ���H�"���Al�=
�7���O&h������I��[���C�ԓ�|�x� U��V„�p�r?e���
(&�Lv�6����
���m?�ۄ,)XY�j�ռ���
o��qu�u�p�w���� {�6d=S�#;i���Y���~¹E�0\Oe�TB����*yZq�TrP��0�p���HP_D�g�9�+�cu�ۉUeEm�;a^�c�"����8}�A�9�7�D7l�.e|<е"L�܀JA-jCqH
��B���`�M��)��s�g?���g;`b��h�e��N����W�J��Q�_[�a��vw�t�F��߉��p�O�]w�{~��^W

�ߣɋ��|_�]��un!!�i�m;��0��$Y(Ţ$`I �5�rZ���ӊb6C+f֤�� C��c�c���x
|�N8��:i*I�3'�JJg;�w3�S�[�Pq#�O��r!�D��F�����+��Hm�1,CNh<<��xs�"+5��H�����H��������/et�� �qr�~�+��d8�C�w(��2"an1>$�p
K�������.ǘD?�Tc�����"���F8#�!������6+���eV���p@4��X���gM�k)h���詵�����2Ǥ�4���<2��zQ��9�C�v�?�<({�W�'�o�<��%'���0�ܮ.%_��J�_�ś�~�Z����(�[�
��;M�@T܏f�e_�ț�<17�X��D��$���o"��c��I���Q'U3%��TTT��^���0�Q�))lÓ�.�	�L+��A#�o�"!��3]-�R�(��	d3�fP�Hត̡{3��!�6^��R���WW
q��m~H?������~י�7��?���P�"�r���h����/�8�qЇ"�eP<��@���V��)F^|�D��0����G���]�CqN�F���Ȫ=�.��}U��^m����X��^9=��b�5esZC�S5q�tk1��fh}ꤋ+k�]���G\g��8��=u&a���`%w2�c�K�,mC�vՄ )��@``Td<1s�w

��d7zz�1)��ȡ���x�N��pA^���<�-x�rC���J�r��E=�7�9�L ��$��Do����މ���?W_⽫h!'�����7�Lq�_(f9!�Z��*�L��bm��w|�R[-����]��Ұ��*
\m^��@U��*q�2�⎏�g�5�@t�`��dM[��l�3��O���ħCl�6O�[���BQ���k��";��"�:�g�Ѩ�jf���-.�J�^$rJxP�52-�c������I���o�Fm�@,vn��@��
$��V%�{.��p(��ҥ�����:I��nk[�D��q.@�>��\������v�$�5ͬ��}pOũ����~{
-�ɨA��t�&��u�W�����UM_d������+_����UI���n�j��M^pSK�
�m������E�A5/a/9CO�V���cR��?�=R��$�3��H��A��/P�$�����f����`�967��	&� ��[+<�.�܂��j�F��u��:gWTN��z�Z�V�Pܕ����+�ͅP7�V�֬Ό�b�p~�o�3ӗj�Œl��*��zAJ��U0U)�d�`DZ(a�
`�?jKjn u!��+@�:��<P�H�6�]���ƚ�˅K��.6��L�V����!I!$j��4K�*���"�H7�i��	ݰ�;4�m���\Ѐl��w	2ϟ�}:�;H��X5�f�Zt��ପ{�x?a�'b��Z@�UE��J�C���5<[���wP�~c=D�(H��D2�!_�=A�����^��侫T��^�`��X��i8G�RЯg���;ޒ�h~zD�ǫLR�X��C	�#�{�1ˎ]�b0Dṅ��l"�� Ha�r`���Rh0�������qTD=��C��ű
�
�BQ�����'��VJ�����1�%�Z�R�ύ
���(���j�۽�3gzY79P���)n>3Ÿ�G� �1���#���s0����� �I�������O>f�NM�H�����j!6&����.�������LyG���1�D`&Y�3s.�"ɔ��� 6��"��x����1�I�!uxE��^�_s�7�4ua�O#��&�I�yo!+
�H���@G�@xr�7ի&�j���`�*�Q٤�(����{B���hX*��u1�V��<�"$nN\��- &b6��f89����w6�>np�鰠����p�>3�b+*���<��N���A7����ZAhzWq��Ђ[ds��T&�g��g�G	��A�8KCu��	�蹲�"W<���ܿ���7R9�5$��
��$��S��
��AY[x:�����6C$T��!����	ѷ��9��\�9F4�Yy�Y5��0��t�Qޓ�ߌ��1��`m����G�7��+� 5֑̠�u��ѐ�r@F1���lH���Y^����4��l��cN�w�k�e�R��'�����-T��k�\��ժ/��3Ҟ�<"h�!����ļ���%=PQnn��O@��aN�����@j�'����)ֹ�C�Ct�%���!ȯ�Ϋ@�J9�����v���`	�l	A���u��7ƉR�^3��i�"���,��� R�N&�g�2�S,`<I�}
%�|*Ɲ�4�H<��C��⳹��g$�>�Bj�͚�&��v��bKS��p¬�=�R��,f2G�R��d��&��N�}�@�?ÆE���E����)��!$�u�a����<V�*��%'5��6ڑ�'���u�u]j[�Pl[��JP`N1|z:&E!S,�Z��a�+D�j��D���]Bsy�����NCIĐ��*�05��K��Z"�|�
�����v�Z�Փ`�&��{�kݳ?�U��'��v���Ԏ���@,� 8�h��Z�-��g�"QK4:m�����e��?�5'�e���8�Y����h�@c��r.d)��1��CM��^KZF��	�k§P��ӘC��U-�)�,�O_a@3YHެ���Ƣ#"J���<�?z+�¸B���Y)��꟩�a��
��Sp�4j��zv ����hB�+�g��������%�#L���)����H	�+b����в�	{Y����sM�K6�u��!(�8�,���ˍ�00`��VȦ��mM�J��_����r�����r��ד���+h?9�5l\�Tx��'�Կ�O����n[x�u?2Dp��Eh���|�g���W�O��i��ص�s����C/V��N�WB��/���~� �刽٪)#Í���X}��M����e�+���1��+��ʡ��+X�[�;\!��8�P�![�����>F>b�r�<��E�`U���q5����A;>I�&s�тZ�1a�#�����3EJU�,��ī���*P��ߒ�J���,v��J�˷6-�=�ydJqM3
�e���G+Q%Y��w��Ȳ���$�.��7	����V���Hi/}Nt��&5��۬ƓB���Ҕ���䩸+�V�4�M��@fk~o�5#_!I
��i�~�4<o
@�dMyW؀B�o����|�w���� ��ԁ��K���m��ߐ���u^�@�jW#��A��n/�M��� ��D�He �l�:��KO(�.�)��)N�ޏ&B���͘���`��L+�����	e5���Â�Qߠ�=�nyfؼ^��8�� p�p|!ߏ8ԝ0��F�7��2�&�(����<�7��*
z�\REƿ��P�P$�*�sYQ�6d��IV��$��wjЪ��[9���՞�iަE�!��MA)ă�A�%�:M�@�pM�����I�+���G�N��ĩ�ߔJqK-��@PI��UUQ]Dr��$���7>>�C�����-�\e���c�>p��n�C��qvv�BwnH��X�Kfw�T����ŏSw%uc؊[O���ɠH�f�$�
`!q�4�8Vl\���u�Unii��	����H��3�q�\V��;Iq�p-x"�X�Â=\?$�|���}�dz����˦<�*�@�����P1=��㐶h�Y�6^��q�����D�Վ\����7����d)/�L��膄�,D��n��V��2i��w�J���-�g@K�Y���A����l?�*�� /�=�.�|��9ՙ ��
�q0�tu��<��\�r��d��p8�?]%��Xe��-!��g	���zx�6?�庍ϧ��t4��
(�(��̍_�D��0ۖ��|����Sɰ��֙|܂bpG�K�_��|ɇHmk�#K�G*�:z��5�]�k31���O,1�6�frt�,ll��*rv["~U=�xUz3�W�NL`��zA�Uv�y���5V'q|L
L�a|:)���k
,�������36�&K��)��Bz׋�K�M1�Ż���SC|��M��2����jɚ$ͤ�@D�[k�H a<R뜡gsx�D�S�D�!����5�A�r��?lW
K��d��&8c�51�1	S�EWw�d��x
����C�d�v�.m59J:fJ�
�z�fɬ'�O��cҩ�'������1Ъ��b��P�=�(E��[��CH�<|^+/	0����>��VBB��T4�r�$M�t
�1���e7���;v�SZg@tȨ�E��G��8�P2�f;�1��fq���
��W w�C�l�-x���v�\
�.H�$0	!��X�B5���.^7+��������y1�i�F)��V^A���M=\���������30��0�_���~/���G�ŀ���`���7<�U�&�m���
�ǛI�[�d�t���[�ӿx�!`��p0r�˹<�̣[��̈Rx4c[�?��ƹ����?S��%DP�I��R�2����b;"ih��;F���	���|Y4,����R8Y�D"M5V�=������E�d=n�a:%q�V0*2�#>�o��3�����r6r�C�ڮ��S�L�J�jf'�܂f��Z�#7Q�|+h���Yn�%������6z=��e���X�Db�؈M_��8�
J�z�Y���
5�������g�GN6���ޯ9��6$;�Y+M���F8��7٩S�Q�70�I�e�$6�_9��84�z(�J��d$�h?�!M��#A���
f3� t�a��os<��ˤ�fx1�+l�p�[��Sb�ӡ���딀�
�tW""����#RUr	��'V����=k��cL2YS���ęN��d��
L,�U�3"��k<���::?�P�ҙX��,l�/n�Ha�8��&��c�}!��u���>��!��M���-��f�=;�J��@�7!m~3�`)V�.���w��ܰx8f� ���H���gD�c�."���.�i�		@ GD;�)���g�n]g�	y�
��r�;�	��^tA
u���W��G$�zE��dȷ��2/6k�}R*P�Q�C�T�;�w���Pđ�d�֦b�|A��>�?n�]�y��@Ff�"�A�oWZ��	КoNO����&��	6W	��`��`���z�R	5��ԁBWIEaU���»=�����I1��j�c�2Ȇo�KC#��]?'D�\�dM��������B����^�|�ӿ����8�u�>;����Ymǀ�P���ʈ�u���u��'�X<%E�c��V��7��3пwAAQ�K���Fhq�m��3d�k�'�ɥa,��0bl�Mhg�ٻY�wQ�2��"--���zl�h��r	�y�	v@���z0#}� �X1I6���
�:HL��D��0�WWY�QG�#1	�-��.��1��)QS�E4��$��-ďNFz$�2��4Ϟ��zN�X�W��p�DE��T{Y0dQ�#
M��I�,����f�U?��O��/���O>p�n��;�t�{�KF4A3�	�l
	��^

�[�ʍ�[�<h��#���ĥ_P�_�Upo�<���Y�}��e~�r%3��F��.B�7�RY@�z���F�"�@�{o�
Hl�,��9� ����~Y,���O�%J��*2��2�;#1�zi���Ѓ`Ү}��k��0�(A���\C���yhV-#hˀ�O�fa`;)`w ��c����Mh���8�^a~f즭]��۵\4
SVV9�!#����"G^��l�ҙ���
��뚦<)t9ͫ����
����#K��/J��䑱5ƒ��l�X@��V�Q$%I��{���g(���;�E1�߂B2��ؾ�N���$��C��$��vb�Χ�2("b���a[X�ƻ���e#�(��$;{5a��:^��{%���y<�%�}C	���2@����7�!=�t*�&��U��)�j�8��r{Ydž�q�G�
��ܣ��u7��S������	���Zw�v]p��,e�ו�a�ԡҪTXb���FnZ�G�Z��*r�Jd��;XQUH�WS>rD����Z�ԔԮ���a��`4�����_��P�÷����&A,eW��⅌�Kn�8�6�0������5��
�B9w�|�j��{�d*����V��j�(�yz��Q�]:�u�+p��p*-����s(x��0�8x)���o�@\0vH1�������^�M����c?�>r��%�'�3	�w��I"����
��o�����2�d�2Xp��2j�[N����BIAm`$%�p��VÀ�\8�CD(=(σ���(
��n�eF6�n�¡��9�l���vё�|�xOb��H0����9s��u��9��m�R�]�L�˗(sx��ll���25r�
<��eѪb��bpJ�%mj�>3
���� .»�m����g)FH�8�0b9�(��Q�}f�7|%��6�t#��]�CK0���̠cV�@�
��!-rR�k��1rg�C%��&a(�2r�^��f���t3����k��� o!�Y$���������p���۪�E�#ȡo;���f�����ǰ1a���ea����@6+�v�����ZM
���1V��]���H�;}�	D�O*�h~ �@�E$w;�1{�r~��J�6����kyG9������,�WHv�a�z�Fe�%����f��5�T�%u	�]��'tVPth7�K)%N�EX���R;�
I_�ۑ
V백��f�;FL�"@Z�HT-�+No�pŹ#�I&��AȓMy�w�'�3�[h"�xXae:�h���CWW���"`3T����1�-�M�܉��!��Y_6�/l�-�9`C?����CT�{��d�`?��IE�5���V�"Fy��g�DRQۃ����� �n+�kz��`������a���w-劔��.Ue���i����0
�Os�V0�J��S�P�����ޕ7��
U�xz�������+��QԬߍ`�:#��!�5�c���h��H:F���h3r��sm��.0�-J�(�0�R��F8�v��~���:�6F:�е�9%���@,�,u���H�\��Z��NZ.'���LoZ����i�-JF&h��B\��šw��ӝ�;�%'�%��S�ښg�=qGQ���,N��"����g�U�>�÷M�����1‚�Ke�]5l���(a@`Za���X5ӄtkV�o�����d�*
���a��4�8�dV��4z���1c��9)�À�@@�bZ#�X�ȧ�+�kj�
���q�aW�C�ιz���t��
�9�TI?a�GA�����|��B��wKq�T�%BZ�~�ټ�;��,hjW��H��i�>D�M��~��V�մ?��ޱ����b�'e�!�.#nV�e|<#���p#�b�%'=G�ӎŃn�\���
�(*H.����8:Eι�9�;LF��?�+Ig/y]��������Dz%rAZÔ��f����\}�!C*�����W@u��ղ*�ɱ��v)��Z����ΐ8�Vn;ֆ|��P�T�춮	o�ڊ�^�<�WY�%A��,@D�ן�T�
�I�`��yjB�<o�{@�}C!߯Ê�����u�;�U�4�N,���37�
4l[��!��I�v��cQ�p�?���T��W����s);�n���'R�яgZ1�g
=��²�SH�%�Ko�k�lQ$]Swri����I/�C 3K��Fhξ�b˾N��1i�<<l�?�k���_�����~��ǭ���*��X[��X���lF��?��M�9c��+��1q�*�<ih��yד��}ɫ���O[��zW���k���! %���OOB��xxό�$�R��O�q�������H	 O66��|����n)��G�Ξ��v�t@z�>�W%���8ՉO�VG��5k�7�n"Đ��D���ƂF�t�$�<h�t��_��O�:��h͘+�.�7�f��浟�z"��#����V�ij��U���H(�܃��R�2�T|K���>��
M�}6�@���3\�
�˸�mF�3M1���>���|HgM����6P��{�,��Բ�U%3��
`�{��pl�PD$�?2ɇ%@ԓ6J"$��a3����/�|�Z����Q��9W�M�
;n����)#
Ő�k)Ґ��9�F�7�I��5�F����q�l5jJ�J%9�Bm��J89c�#	B���6r�����@'��3�7DO�ǢIy�r�6�V2�e�>�7r��X��9���BΧ*6y��F��Ү���,Q$_�O��a�Fwv�6���b=xJ��H:���E�Sz��܎�H}4�1�����zg�\��D1�>�����5{T�	b�L^;��v86E�q�&��zz=���IΙ���Xta�`���|b�#6���#���e�U���W��4��'2*��Һ`b��{S&�@��qJz�Y��#��g@R"S����Z��%f'f��(
���DI�$"@�&����Bc[J��\UB�<e���kv�#�}=AyK�K:l�xځF��CR���s��w�\$ミFTٰ���
/�I��c(4\|$���^�O��l��~hԣ���c�L�[�4ߥ
i�:_
�$� p�m��5�ڸx�S�N�@P=#7�j�B>N|��<�N�d{�2��Fk����NC0���!��-}�BAڟ�r���W*�iJd�/j̙��q3ݢ0��2��ڶ�md�m"Bz@��fl��[Q"̀(�Z%�Z+e�/�s'�qT`�%*��Е��2Յ��WV2�%8�"g���bz*L1R�����ݜы#l�9�b����^%oo��W�S�8iEx�"�� UG��:�P�ʵ�ĥ�@I�+�Q'?h�y��4�>�G�������|���_o#�*�jcd�@�DŖ�:��K[B�C���S���ʢB@e8�+���U��"�O`k��86�n�K��K&�W�im;��\ґ޷"U��"��rs�“���s5���(��N��N���3W��.Ȏ� @C(��z�Q��Gd��@�̰ɖ2p$0��}n�wbµ�Rr�
��C��6>�]�j ŏ)�GJSȐ��D�֒�-n��C�]A�x3��
���cL��h��q���'���o,��܊?�y�9�]yZ�j\`o��t$/����#�w��
	a
�
�RŁd�o�`��ɃX�œ(�
(nBɋ�N+�n*n��mjZ�
�X����00����m�::�o}¤�$�rv7BĒ�B ��=	)�L1@J��j 1�B��V2Gj�l��`�t��l���ɻ��W{��D�p��O�쀁2]�D���@^�/pa˓�c~��cH
Q�������pdiT�x����R��WHM7�꠰]"�ΐU��ͣIcd�X����
�#v7������q:"��С
�U���-�RdB�0���
?@vh�#��_���@%�ǿM0zd�ٍ�:�0.��!,�0��Un!��{H��B3r���5�j�]���N�ףdLYQ�lw�l��|S�6�N�"�"�o��J��;�]��x��<-��p%���D^��̦����*$�z�nF�3W����z��4
v۶�<�r�=��j�c�*l?�D?|b��Þ� \0СSQ���$�������Qf���0�
��l��=c�i2.��ioKx~.��=+%�۸�g)����R ������z`��?�_�kЎ`.��
پk�C��_�E���H�g�*qx�4� ��6A�	��;Խ��ˮ>4FOR��$xIP����\��ÊV�eeb���;�*I��H���D������v��_#r`�!�g�*�#"m�i�����^����i?1шs��1�M�0&��Ɏ��h�t��87�2&�e�G�jq��i���%hTE�^�$������.C����T��U�@(��åxcw~��ڨ���\A��p�p�6�F���Vp���5Ŷ	C�)B�O�v�|�g��e�bNvdW8B���+ud�ȫ�,J�Y�Q�n�ߋU�_�2u����?g�y�Z)��_B�شOe��!J�q=]� ˏWP�4F�!�R"b	�	ҭ�LO�L�%>&��
��p�i����0��ѳݢvtm	Mꦲ��b/P�C��@��o�	����"`CX��^M����J�Բ���I�ԁ��t���P�q�x���,�p�F�DJ��J��"_3�V��U'�� ������q��N�e��Ƴ�DN�(L�`$�א����q*�Vo"�Y���_ى�c�
��*�ʾ�9)'j/PPk�k�fEedr�h�M)לj��X��(��'SYj<*�}ki�L�|��^l��a�q+
t�фlnq�@eh��^ �����޾t�ɶ�ǨA�d�f��d.�S��8��&?v�hLU�Ss�VB3G~MM-hC Qo'	FY������|D�
�d��l2|,S��{�s��g��0![�(ؒ
;њ�
7J�V����ϒ�0+)��{;S��݃� ���L�c�ȌO����M��Yh�=
�#�����G�a�$��@�Q�����Ҍ^�'�@o=�!m����a��=�Ҿ�7/^ ��WҐ;a-i���Ģ@��G����<jv���RD�2���٠m5�e(�B�H]�Rp�7A>D������%']���K/���W>��C�F�Ԯ�d�2�ǩ]��rW�3�5X���R�X���	M�۬�&A,*���	��a)_}�t'����"k�
�:����d�a�}�1�?D�45�Ӊ`�
�a׹��ۙ���F� =�Z�W�Y,�=PKOH>5���COݻG0��;)A@��c!��Y��ގ7� Rjљ���}��1z�>��VPa �0,+=�oޣ���Q>
F��
賱�]M\���y腽�<?,�^q�%�c���a��g�}h�	=��pH���g��}O�&CZLP�j~h���-쉿X�4`��y(�=(�K�j���Y�z��E�U��P�ە�ɳJ�7�ɡ�r(��
��m��2���3�g��
׳��0^���_�(������X�*��]���4?�|E-�'��Q���
�-��6�_\=�����x>��Q;��r:�z7��%zi��a�&�Mߩ�R
e�9Ä�[����n���9��ϕ�#�*{��X晴ڃ�����Ն9N`Y�Yz%3f������m�$�0F7���7`/�B�!V*G�@Žjoc0ߘ�H֛C�!>8�
2Ơ�	��H��{rg*��������#���⠻�C����v�ɘ5�(<��m��ŧ�D8� ��K8A��h79�C��y�ţ���)���ѡ��m�0��� lP�z1�e��@�7%r2eUZ[�<�/�@��/�V�N�PF�Yb����2Ũ�_��3�_�|�n��fhHXr�T�o
�����*4 B"�rq��	��>[ ��'�Pr%�ii�‚'�F4ٽR�=!�9!��S��O�$���l/,Ǘ�61����f��x7�,o���b�O!c$�}��K�.�A�:e<�O�t�	(��B�����S;F &5G� ����y'!���Jۿ>k�y�3L&^�-��c��[WG�`�i)��n�����W��;�/��a��O��GT�^�Q�ؿ���U\��)B
~�(j�)0��qI��
�nRN (�vK,(�+�ΕH�t�Ҟ&m,1H4D�2O<�1�)�JS��@~�
�$�L|��݈�*G4�l�!5y�doa([�bT��%��w���J3- avN�$�y<k�hI�ebI4�Zx��.)�Ù=��B���*=Ab�ߏ�б����w�N���q�1V���#�_�x?��i�p`�Af��w�@�*��E��|�g��da�g��C�1z��(�ؕ̾�*�[���4�~���	� ��~�"X;p��h��j��P�@-�(k�F�F�a� ��	��aG�Y4i�Dj2x4B��y(����4g�s�h�i0ͺc
�މ�ǐ�1s��S�g�ߥ�0��
��%�����[hp}񽄲��I9��VF x�9�0�_�D��.���ut�*;��;��z���Ox�C�}F�|{B��T���WUMpȹ���`LY�	��ܢo_�f*Mi{�j��-�p�H��
��1mO�f��V�1&o�K,�9����]�nt�v����&0i�ل�r�C~E��"O�ڦ��E88ףT���< �8�	,@9j��ͫ�ȴ�$z=M&�ŋ�YB|R2��c���s��4T`���b;��i���!	��3l6$�K\W��7�/	�e� ��Q6Y�aU��E������{KU�_�m<WO�y;�
i
��g�b>�'�=F�uB�ܾ6W���[�"G��Rkf�P�&fκt�/�GT��
� �y����ʾ���)��l�筮!A�� y�%��ʇa�e�$3�u�Q�1b|�ܰ�N�4@�S۽���	�!i���z�����
�>���4AYq���b��ZezHh/��Рa�
�FV�����)aFRn�L��'�%]��Q�=�ny�0�֤K�4�b%��xс)�!e%�9>-�;b�[X�V��Ƌrʱ<h6��$�%�!�Ed���$K���T[4�.D��FDG9r�.���֌b#�H�+��,,���:q�3��P�0[����q8uQ'�|(/�$_Y�W��*Uy�S
[���
K*�+H�CbmqSb>�%5�1^��?���ˠ�q�x�%A��_�&�ZE��u��Bn����`�������JF�gR~/l��OoAR�>p���vQ�.�?
���F�i��⍌#?<Cу�20�(��5jH�z4f6�wID��dAT<��(�� 1���D?�Ka9�H�&poPP�,�'�\���v:{Y^||�
j�PItg��Z�P�e8%G�u�n��~��d�(<LiyշJS�N5�B�Y�] ���G��*��	Zd�l1���d��jeV���r�;��wVUR���ܜ��*��WT�l�!�e��(d/���uY����k.�#���g�ġ���ě���f#�"گHZ��L$	��MP�o���ٳg@�^1{sq��	���<i�GT}@�	�5�dS�"v�x�k<W�:[H���{��iO��$�!�E��N@���LrUoO�,�7L�Fl�t�
c��L���z��Z��w���	�'õpğ�x�U�fű
�e�DtMP������������@V
n�j�3�1����x�eH�"X:�K��D!
��y�3�<9)V,J�
���UL�U�#R��oe-?G��7�̀���'��"��@B�piT��ӊ�X�b!�GN�7���������g�������^|�Y�#M\kÞs�L�"��:�L�>�ŕ×���b����M��҇pb�lU쁽�YR(M?� N(E4��⌓��뽥����m�[�}���Zm��n��[��7Q{�tA�_��_g/��rH�I�I��G0
�B�Q:�g[���j���=F�AsG�@G�޷�ᛴ=�.��(��7�fo��U��ui��<m�S�hU���ՂI�}�S������+Z�hJ�b�Ul,����2�N��E4��Ş2�h�͘i/P��)L�
�K�đ�I�|aI�Ya�
�0� 4������	����Y
�;��X#'9�w�~�s!��*��Ѐu=�qa���3E�o�c�<9BDM�3�u[k�Ûqkj;h�z��!�C�-�������
�D��e���������6M�:��!y�3����ڡ9^��PD��L�o:��i[�g^?>��ƃ�5�q�O�8��8�
��Y�(Y!��"�Wl�<��c��%8Z�
M��ݫ���p�#��n���v�Gs��E$�$W��PMǞYvf�6Q;ł-��x�3��iZ��Vٞ���ZB�ҏyM2���Dp'�~0i�J^�"l�)�JH�>�R��,@�+�����3����E)
��`�PH���՗�\UQ��F��i����5)/�5hȄA���d:奺��nhw�6��;ʟЎZN��2?o2<1L���l�¾�R�҃���a��V3Ի��D�P:�c�P%�`�}�V��[O�5���_�
uT���v�J�F�a)����
d��gO��	��$�c9����.�>��]?mfс;@�}��tC�>FKό�.w[3���Ǐ@��dD-�'�h�r��S�m�x��8D["15��Z=��6^��4as�M���������&z�	�%l�KyH<���D�`��d��`3+@]k�*5�g��
������pu�C�R���ڝPLP�j�W��L5�bi'���l�����n&29�b�RMRt19x��L�2p��}��
FZd�����K;���u�=g1(��XM�,��pN+��/�����՞�V.k��*��;Rj��ߵ@yaAy)��a�B��� <z���k�Ǿi}��Eゼz�e�a��X#�|�NC�9�z'v4(	P�i�Gm��;Q�,W�ߔ
�R�^Ʃk�ȿ��f5|���3�FO1'.��l�&o9�Z���=J��^�Eߕ1ц��d�`4���D���j��qu
�i;�@`�Ơ#�{C�Љ
kgq"u�+uK��4�)�>5�<w��m�9�݊!��R\�6+L�	֑H0!���A.��t�E��3B���1e��@3Q��*9�=E�l�/ٽP���2��;�f_i���<��A
��J��Y9(�0ކR��$�}'m%�TO1B�������h���$����=�4����.h�� ��'��!A��q�RR �j�$'���b:�&րi,��v��A�3Vݼ;fvM�exFP�<��%�6L<��/�֏�9n�n�t��0f sF���4�}����Uq>��hW�]q
�,����]�G�&_��$=��m���AA�3���!$tc�煄7Pnst�	�4Z\"�x,o��M/9W�H0$pMR��ؙSe�������p��3�ˮgZ^nB��4o	X*E�"l
}R����;�p��Emȟ��{�'i��s<-6�Mr�ɷZ�k�"v�F�xM/dP��Ҙ.�B��~�� /�Ӂ�D[3�yf�;-�Wh̹.<�uXj0�R�T�|W:rɁ�
����o
��f�V#��G1+!�T1���=r^��i���-�`1�9!W�roS6�%EX�����<����,���ϥ��&��k�>V��Z9K���f�Qї�ѢY`��u>�
��]�bwC:۱^l9t�Ţ֬����_"�V�7c+��bjsZ����ɐ%X�z��45G/�a�z���Q�J�2f���C�WWN��U�e
0�<ס/���2��%J!4�V�b����� t�&ǚ�eʂϽ(�����vNBro�G7�^��\��J@$9!�wTХ:@�H�\��[ �ͺ�J�*�xOp5��a�`��6�r��ڋ�N���9��,/Lzk 
��a)�������.^�iK�d`p4ZsC{1�b�}���(k(_��p�(�_��*��D�܇>{@� ���B
��ֹ���X����}�T	cU:�Pc?����a�Z�������*	1�P�!��������|yc%�C�������U�|��.l�
�i�����*Y�KK{N@�o^>j=��ȼYW��,���Ӱ8��g T=�d��g��(;ϲk|1����|��@����ͳC�kjʹ`)�m}Z��ZB��4K!�����-k�:T�H�t��Fgp.��xō��4[��Ƈ�Q��U�Iζ[�?w2'f^�Ճ괜ԆWZ1�e�q�.@�"'���tA���W�N�
��Ԙ���?��Qp�IBd�y.�;��.I��'0u�d�Qx8���WЄJs�>��
`�nQ΂tt�זQ²~��E�ƍ>��]�d&5�ȳ�4��_��Um��2L���Ϛ`�����2g��>�q\(���e���7&�DG|}~�]t84�
�eA�[��Y����ITxo�� -���;�b��]| ������8����`��u��t��u�8������W���ab�O�خ�f�(qII>o'���RM���K���p>8�G�롖E�ű�X�1�*�f�]�I���h�X��40��.(��{7�~d��( ��eّ�п�X�y?A�R-�����E{T
Q׻H���mF�z)�;���O<�u��@�l���?��_�qK�����
�f�2�( H�>
0@G#�f�ѱ��jmZ9 ���#���
�\sc��H��w&G��Z��%[4���Mf��
�A�+m�U�T���e:���U���sO&
_l�.O���L�WQJ
B$���t�}�厇�T���X5J��2d���k�zŒw���USk?Ǖ�����iKm{s��뷃���
�
�������uq�ʞ,�t7m5�ʏ����j��-�*���\\�ٕE�*������1����b�%ND���N"�� \ٲ���C�8�"�� Fx���D�`�
NbE��#P��T����G�7��v�v��!�5��O�p�h�q�m�f��7W"%����cc�M�o3p,Od8
��I�{�֭���,��8�?w�%��r6xy7�֫ i����2�J��Z���E�@�	����X��FaD��/���y�F�\��a5̔�ۏ�����o��ՠ���I6�O~�ʘBD�S�'��a��o�1��x�uda�_����2��^""'	����k�I�9�B�m���,{ҭyC�RߤpX�47��J�W�]���8B�3�"��rtK�ڝ|�͸�E���;�l2���eE�-��
��ᖌ�͹�G���!��<B��&�
ଵ�ܾݝ6�)���Ly.!p6[p򴞤&��5(uɭ{S��t+sȏw+��[<�~�wH����
�]h�k��*�"
b���T�o�u|���)��b�91G=�
�|��u^A�%�6�f�����C:�qw�a�4�-L_�!#�s��NIi1�T}��BԷ�&��$�x�i4�'�̠�7�q�bTJGYa��3�<'����/I�X��C�
M����:v�!�<�|���m)����?եJ���v��bߵ�ī�K:�	|9������TPw������SK�ӻ:�#x��4���N�z:�T�=�Ue.[o
tE�`Mx��%�U3NzO/�Mp������	���@۵���E��d�>��K���i����K���T|�m��o� ���}�g$�\�&��b�\��e��ܗ0�������@~�����h����{@(.:
!�d�z"�5w#I/J��$ZA'`UT��]we�}�������E�b�6�b!2T�c�Y�M+�;Tk�˳�ً��T{2�{F3L��s��W�o�����d��8�}�
U&�D��$t\h���y��Js��ǣ���+jF�<�	���8�;���F�C��l�:�3\��ǎE��wS:М��j6ZJ�$('玊Á�;5�7�y8�o�j?�W)��s:��0�Լ���^TzŸ�����·��HX��>l�����sRc}?�^�7��a�#��uhOhI4�v}��L��XVZA��E'`q)��9�G�E�a(_U��R�H움��Q��',xd�N�1lg�|:h%)��a^�)�;��
�AA�-_���	�P9�*�:\��c۟Q��o'�� -�F)	
(+	,ɂA�0x��Y557X��#�@\�p�|ͱ)�o�&^�_�>OF��P�j�=S���Z�?ҜCYZT�ռL�e�����]�ʼn�?��S���x�M-���K<�[)x&�X��j4��5��,%�ZN��?��ɵj�Su���fK������M.�`"&Vs�4(A�J3�w��&�A��b"��Xd])�B۳��J��I��v=��)
I�sx�6�nVU�LO��"0;��c���rPP{ڠ�V�"i�R�j��f�F3>5����6��.q���Qd&���q�i�s�����F��%�^p�lr�F2]�V
�P��/
ِdB1H�`�@"Mo�̛�1��~1&��	���LG��|V�|
b�(4� ��P�3*eB�)߾��G�g?�#u;	|i�S*W�rlP��hu"՚����:�4&�r����8M%�E�UX���C��K&�fA�&�xR�V;��f4�K��*�@e�D���C��<�Z楴%	]J]v���^>��D�1�����S��Ɠ'9‹/�f"�c����U��6���j"��g�}Ƞ�w~�O�L+.�8���X�Y��
~*�}�Q
�ђq��`�"(��P+Y����t����� ��6d4���p��0%#�\�ƒ,���n	_E�(�o�9�u�A�
�.���ұL���{|ڱBz��t)���PY�8~t@�����j�i��K�iEh�*D]���A���%�;�8��cT��dSp+;3�oa��5!ZC�B�V�,�B��g��L��
���\n�
z6�k4|�b�3P�c4ߥ�z9���L0xs	:dc.�����Q�Y`Y��R��|QcjAg�U2yA/�B!B7q���uyXuo@�
 �[4 X�EG,��PIf��x��u��S��*ƪ�25YiVՎ�7�DS�-z}��'�ԡh.�}x�S����[�tLR��B�g���&=7b*:D��%@�-@�x�ar����P����ؔ��G����,��,�Ȟ�?O��uH�ijd�����J��EBKY���0��|�`L$M���䔇�ڮ�c�e�
Q�R>�^#�٭��l�:A
v�N�����g�2h�%�ӽf\��;ͼ/��
�+�����
��dÝ~$z�`�_.(���@�I�Q�J6���<lh렖��k���܌��i������&������a�
�V����,Z��BMT(��5c"I��2��3��KȊ`�;x�a�q�
#a�`��i���;�@����6� ��g��g��)zZ�Z8���Կ@�P�OF�NT�1��%�y%FH�ӥB�k���vg��$Ѵ��V�Iu�v�р�-'D��*��E5TY�O$���-��Pl ����ź��~�-!���z�j�ze��jB�#]���N��O
,y�c�0�f��`c��S+�'��W��}
�k��!�s�E�([|\\�q x^M�^�x�J��4(�K���H�%Aװ��$����R+����m`���l��	���,����e�T��y�����IbrtP�few��g�@/�`�J�-�L���ف���t�P
����_Z|1�R����(s3l(X	�;Ԃ��M7?�I��L��#Mj^��b��{x)�#ν��M�g�7�pc��n �i��Y�0�'��ܒ)Lv��R6�䁰 qy�hL��=��A`��@=T��`$u@��&,!ٹ������k��j\�!�<ʫY{�[#��W���
LW{-����~�� I%�����<��jܩ�f�$Q���+�<�o˂_�j�xɜ��R��� �	D[���8Y�(!���; D~ck��Cᅮ���FV�Ui~�8�QQs����̽,�ay�Ӯr����1CbΩ$y���)�&��h1���c)���ӷ&2ůN�j��ku�p�C�$�Y_�@q�:ВV�a慦�ԙ���
�;H���!�H�s�{����Y'�-E+��v���Q����y�L̘�A9�K����r���fY��w�=��J�;��bS$̒�X�]���ⅉI�ֆ�5��d�:5�t�h��d�.	�bdq)���Bhn�<�~{�P�D�����b��Z!�1�y �H|(�,@�.�%�=<0
�Y�ޅ�5�+G�C�q7�L�Y(X����@�N��%j ���k$u"&>�}t�<�t^�V����hLۏ�7��m0@uA��5:�����1<d���z�cy�h�0�-�#�M6H
�
>7Ö��)=��d�)�1�#�]=�����Ɩ��n�)a���q8P��-�v2B�-��u��!�Au�^�@�8tUӕ��0����?��Na�:8t��\12^4k��
;���}��\���a?���>�CB|%!H�'���D�����q<+CK�XD���('�`tdbQ��R#
B�T����b�9���+�}/�`�^�`�G�Q�ZfS?���&tV���^��e2|����fe�u�I߻�,�G�M��2T�
j�(�Y�."�P+
��F��R�L���rE�#H�p[�W��K�w�1뒷���|a�R�\����02ڈ���I�w��̇B6I8���o(x L�)�u����+�L"TԐtY:ҊV����s0���g�]?N�A`��Ț%��I8����qJa�GlhL~9a�Fz�]E�q��J���zi,�
#��1��fB���7i���K��g�a�u�
Zȁ^J�2U�R��p?lK��H�9�g�bl�t�p�8���<&��7B���O�?]9�j)$¹^��Ő�<��E�R��1�_=���uJ�$H��.`��G�jMo�>�켗d����
��[b����X^!s=�H�:�A �� ؝���n��5��қ����\��ۢ��Z���Y���B�kg~m�2u�\��9�7����
x�ڢ���@R�˛!S
�O8�8����L(ָ�E$X������y)q�T�^�&��&�V�4?�b�Tew�����f�Q��l��ŵu������I�4r������TD��ʿ�$����Q l��
�	%J���2�0lr`�g�II�Tl<��%l.97֎�zyB��'q�Y��q'i4�Ԋ�S�{�@�d�֌7�N�R���kd���T��/ߍ`#����Q�t64?�m��׀��u�Hؚ�6Y�ԇ�j����|3ٗ=b�l&ɶhƖ����94A�W(�>��}�i"����y�� n��Y�|�53��X�1�\�cV�k���i����(���K��l�G����Ma@�]�A7T� nц/_�{��G<n��������K`L<K��2X���դ�<�=���Z���M;����L����ޟ�R�Myқȧ&��	9t��V]�g�<�^hj���>�g��_7�g�2M`+zƑض
�H�~�*���~(�+J�ή:�A���x��
�^�?�F�[G�dJP<ߪ��=)�|�+�#�Ц�9�'_��[�z�9
����&$��T�|S_;Q�y�&�X�
��|H�1�%���%:����N��8s���Q\�����[��fȭ(Qh����]��H�I�Ń�(��Y�1�W�Ղ�3i�d[E��s�=�e0_Ā�L�[{�,���8���%���Gn�qI��)������!�c���L@+���I�I��mY��"|v�.�'�=b3Yᮄ��1�++�����a@��,�1�j�…��Cw�ء���=#\8-����R�'�@,\Sǝ���u7ƛ^_�����*��q)�Ƨ�M8<��=�B蟝�:J������V����^�d.��H�V�Iۮ2�[��mA<�Fi歚�o�z�M�0X�)g�R�<gȵM�k$Ӱf�D�17���	h�%�p�x#+���ʨ�7��λ�x�(�A-��O�bU��~6	)8�ܩ��	>��!,QV�=����-��[33i�r�����tDa��a!�ƽR#,fD'�eF ����k�ӹƦ6��P2�D���m���QP킶�>��v�r�E��-�`�%�v�Y2G�v�����#���
�֜f<�����h}�'��mD�aO��C��+��Y�y���Ea�����۳��(#Ah�U��J�z��$3�7���-�J&�p�$ӛ�@`X��QL�SY�Mz��Ljx6��.={��
�5V��;��l�<�NF��ZI�-Wo�g�ܴ���R�lr���q�R�	:�U-�Z�c�^�ꍱ;��&�xg��P.n$�Y�"'��"&�|�"��ɰ;�U�Kƫҟ�?^M\-����=t��
0G%��"�~_J�/cm����j7�|{ty�^��y���s�D�.�̩�|؞������Sf�����>{�����UjA�`��q��[ c�ކ[� 8�"�lG�!������ՅKOY*���P����h\m�܏�I����TR&��݉����;�{N�[d��=�>>��Y�����v'^0@"na�g7�*�"L�QYG�g��!驨.���$��0�P�ȉJբH��4ӷ5o���Tʅ�	7���iArw��-+�r��4H����L�Eݭ�y|w����Je-�=�|
ߴE�#SS
�G�(fh�û.�-k0�Y��	���\ݝƘ���)D<,~�vl8�:�D�a��0k5����;�|�]?����:���؍fӧ��Z��n� y�'��ƌU�0i�:��.�X�ᖪo��z�����+�U��49�
Y��F��2�X��̌;�I\7����$��B��آnۅ��k���qH���ݑ2���w�W��`���t������2U�IT����m�9�`�M�'L��j�k����^�b�<��	�J�Խ�����u�8��|�"��G��5_q�G�\�A|G�mk1W<\����*>>�`
`"эK�8��(
�����qܢ�r���U�'p��Zh�O��%T����|o�0��V�a17*�[���%A��BC���¤X�8�Y��J�P!f@_ndi;g�=�@HN_�PU��c�]�d0N\E��#��M��B����'�*�����9��X�=�z�"���P��=K���-��KKX��s��܎��/���4~]�BK��qܞ�ࢠ�\�ӟxsZ��F5Q��D:�i䈦����:-�1P�	��%8���R>�KT��`�
�������"9�a8S�f�H6eK�g��?�A��AJX���[�P7�R<NZa�vn� ��X�
d�|��c]v���*rαw�$
��^Do�������,��$��JB�/Ӗ	(�f��0b�K�t4�06�
0aě�Nʕ�����1��
���20'Qk�+��'����pTU׊��� a`�v^>�'{�頝��$ǐ��?n����%׍c�DяE��!���~Z�!������IVw/��}0��*���`���y���3�̰s|߾b@j��"h�L�)ϙB���Wݱ��W�Mp�ל8V�omk�s��V�p��Ź�{��$p��#�i��
�{H�A�B��%�0%P׾�2ZJk��X|��7�)�!�I����N��[4�#Kj���neUZ2�=��i,,e�`��y9,-�R\"��e�];XYgL0�+Dn�;l�g�����6E{� Ф�{;�\a�v'���������m�Q�T{�}QAԾqIQ}�A'q��q�&�ݔ��F����;���F{�#2aP�O���E��!�;�n�4��t��
U������v�BP9�G�]�1���fnH9����h&�I���X
:�c@�wr"I��QF@-�{\�	�$���yB��7�fk�/�O�`�K����d%��G�i>Z]QT,"�%l��lC �Y�F��F\-�����M���_��n�K�۴^��y�B?���
�Yl<��|�`�o��K$��󱝎v+���C$��̘�z��gCe�疤��T$(�s����Yӫ̌���:���|v�?~�Kʏ����}ȸJF��^"�,��"�Ǐ�Jʰz�h5E�U{V����#��ib�x��GT�ؐ�I�Nؕmy�9��]���qEw�I��55��^�BzJ��RfHZ�Y;, �gq��D���ޙX�	m��Cn�<���Lq�6ɭ��Ta'�X�Zo��L^'��1����#(�� |�B+�LK��rva��>�5�f|3��.�xF��s����֖Z$mO��gw������Ơ�����r(4��b�a�_Z�{Apl��
���e�Z�ܥ	��g��UHF��.<�L7�A"�-V櫖�����
�q^l"E]\��k�`&���+�眢�4	@�������|��i0˓�þqӪ�N���䵈Ph��2�ݯ��LA�m.��O��y�&�n���]QS؋F������
j��YH�'��@&z3p��P6�Dϯ;�q��[�z���>�%�tT��[�D8�~*��P�O9ia�W�C�o��,1���6ԗӾ��Ax��2�{��>ͩ_f��\H�kEo��7;�8����L`�ZASe���1b��Ր�%`�;���$�D�#4�>��\��aL
�G)��Fz�A�y�'���4.2�S�T
�	5Yn̚US-;qys�n2�aSTƓeȄ��6;+�jx����`Z�%��k�.*�vܣq��ك�P���6U��ϫ�θ�i<)^�n��%�;�&ʠ;k�^`.(w���:Dk���|���D���̬q9�N���X��nO��j�AH�1 ��S�黸�r��5�6]9ҽ/+�3��b(b�����y�pf�z,v�A�}�x�.�ŸF[)�E�7]��+�?��M�Ȯ�l6iC���D��Hǒ@kR�
9k4��MJ���t'�ƐS80kd����Q�O����ܩ&�ZO����í��F�ax{+�H�Z��+@�8=�|�O�<E��G��� @0Ҙ{(��Pxc�[��F�!���]�:G=ُ	L�ggbv�^�l����u߹E� ~g��tN�P�Bq���Dr�����H|t�r^.A��Q��ƚ�ͅ��
�Ƹ9����K�>�v�x�F����?�tށx��?.~���fA�>E?�9Uݱ�m'�?�2҂�U��NZ	��]�%��dR�/@��ټ��:�腾)�
�A9/g�un�}�
�{��%9J��ˡ�� S�IK:�
H@�)t=*���9����II��:G�&�K��f�GnqH��ǃ���{�s�]bl�^|^݊Z%6�̙��Ov���q�9�
x���J�Е����,n-��\�0�`'���$CCS��fK�+��@&�L���㞇������*��Ax�%$C����bx0��n�Ap��/oa��IJ�t"7P���%�̓k9���0�rۉcś��Ôͬ#`�C��VUaIf�
E�a��fшXU���]/�L�2���0"RAr�1#�-�n�W5s�dۭH�U�"�W:2��y��D'�4�䉈�����IUȦ�$�E$����b5�!P�.[�n�G��x�*O ���
�����8ْ_�/�Q_,�iV�����ƺ�n6���AW)ǯ�%D�|L��k����&m��b…e8�	��r$�8���*�S�x0ak!I�Fqi�
����عU���H�P�-0���8��J��42�����%E0���U%���e������ht�/{���I�j|'iP#������+y .��&o�=HL�g��J�l�r �M��^��O���N��W�Y�*�}�叼�񜶉^\��2��\C?�[�u111&G���ރ��?�
"44D�C�˚�͸��ؒ<g#�ߚ���"1�
�T9XP�CdF�=��m�Κ^�I�%y��`��5�ir1*�6 ���z����ӧc���gS�R%R��:tЅX2��2�������P�d�,�:�u��C����O���)���sP_7x~P0�9�#B\F��+�h�{އ��V[��`��NH���R�b�y�%R�P�Hs�x����e/��"~0g"L�ԉ�����]���]�R��֒JKoC�:�Jg�=\ؤ�+t��j�=��+f�gl��i^
��;�H^|�&�k4 ��,)!���=y_e3NEA2
����7��$rl*F�.�SO7��f����9C��3ũ�
��b��P�3-�r�<1ԊN� ���m��y�~���R��\wX:=U��_|&�����Ѥak�^�Ә40	�!���C��lU�5q�?:ݥ4�����!�,X�0��Q���_ �
x�!H��q'��&k�]�X,�j��O)�ۮ�Q$��v\�#�!��)����	��_�)'�XZ������<Q59b3��e�EONm�v0�;����p�L<�7��oF�̮��ƃ;�%	�W���g�s`mB�}���\�/�n���h�ܨT��,�P_��JP+����1(Du	u�V(O�]����.V5�6��/|��Z��
"Xb�%�Ÿ�K|����.����ṁXe B[/b�]7�B�1����l2�;��ͻ�Q�b����{Q��1�m��dB*�X=5��Ŕ��I��6�M�'����m�1S9�1�M�! /g��Ф�2a�gf��49�����K1�/)�B߷�7��ۡ%Q��9��I^„]f�����s�B�������Å�AOc-G7��B
	��*D�p�i��" %�S��%L#t&d=��XG�/��dY �I��k�U�r�U����7�hk#,y8���>�R�l|й��{*8GMN/@�4f�J�Ҋx���$f_JU���̌�I�J�	A	n���,��΁AI��O��tP�����#8��w�0�c�ıYŧ��s��y��o��S���e��@����P�1q63�w���?NP
�L%^%�
����*ר�|����$]à�Čy��%6�#����w)�#��¹��d���P~&"�cL9*�
�-��v���t%��W���a���8z�Q��
�o8�q��ܬykɇ�l	V?bт�S��K4�G��a�'���Rj:_\;�h����?��}·Q��2G�gZ�	p��f~���wװ
��A�m��K���z
x��N(�
�u��Hm�I+�b0L�>M:IR]���_�н�Rj
�x����Fk��ѫA���CmA&��Ep��kVH����O��dq�˙��~�oZiG�;��*������ؕ��(�y�XQ���0B��o:j�{Aҟg/��ZA3��bjȴ�:�@؏S��KK�k����rܖ�*�&d�m-#Q�I�7F���Sr{.;�x���Dnt����4���4�����N���P�:Xx�`�
foYP��V���!(�����1��Hyg�5�5����ՠQ���B����+9MH��a���
@�zr&�j:�ɓ�;�š��]F��`B������_I	�Is����oVE��"9�ǂa�W}0ua���;/_�n�_��H��I�䜾��Q�A�I��"#
h�Kcn�|Sƿ$�)O}���P��c���g��jfh���ɒ~�''�����Q��eS�^>��Ha}��@��Z����ѭ�� ג��??��( UԆ��PNg|G{��!��%g�D`6<'��B��1�>��5e�����1u*)l�_Ე�Y�lz��(�E4�2�:iQb��܍��"�	����"BO(<&�
�!��vL���8E䉩�6�ψ����+��'+"_�o���]�yis�ٺ��7����l�=B?�}���P�� ��`}��pm-��c�nK�B��MQp�ȂrE���G�U�kMaoK>�L�H�2(0NZɐ	�T�g74;�9]�Mdz�03v�̭�я��/�LA�5
)}+�0�k�
�Y/Q���#��ء�Z�ڵ�x�y�d�D�G6������1l���4^%yo������qS�٪"�Hc�\Oâl랦G���S��[.��6f^�����kMz��${z7�}�F]8
�dX�C׏"(# ���NS��� �q�h6���ih��@��-�9�4�P[���/ޜO��{կM����q��ְ�}{��2V.�|*��w�9f}����9�v�<���C*�t[;ȭj�~P�.Q�a��s��)*A����P0���MpFI�;3�f�%&e`��[���9qXB= �q:��xE�,�C�,�c�qs�^��n����ò�E��7��$�J�U,73gx��E��a�B�F#���T
�\Hh�����ܝ�Ce-5a�"�4s��[��b����+��H��T��4Q�&��I�S��	]�F�Z�cX��:�Б��A�0�r4˱�3�^#&Ph5Jr���b2��W��2}tXn/?d��Ht��c.�ÀO��E"}Eʑܔ�,���C@�jo3~t�kgKJ��!"�en/�g���+�S� �����!�+)h���P5�C�'�L�5!>+g��
e�c�:w��Ii��ˬ��d�	J���4�yaB1�Bo���9��f�tE<��%n��g�ܝJ��`�q/,;���O�39&T�8c�=���L�)��OM����w�	�AQ6�U6SH�*:q0ڃ_B�k�١س�_P�Mk�.m�sx�`�r���,Mp1l��c;$�:	o�7�PUq*�x^���cp��֨���.-<�N:�OzP����3�,Ԑ�ٙ8�Ră�l�4!h���^���,��&�]�hL��l�ܷaͬ�L�¨%c�*
: ���2PPY� 8I�kGRKPE��Ag���B&��6
J	)�m�xC"p%��-4b*���X�8�auWj��P�Qf���!�V�⬔Ç֡�5ČE�����ɔ�7���X��yq��jRNHw�݄!��6���4#���p㴆���t)���(�����,n�m�>86$�6�P�������H�8�{��1�:�9�V9+\R�cb�t�'�����-�!�B���GN��L����Tȝ�
K�̪�f[s2L����=A��!�0�HZ��m�:�\P�;�ۑZ
��zW=r&�y�jt��E���u�B/�R�����~���8���i�aᖺ�..��w��K"���
�"Q��r���(D]��g�&���4�# U>�V�›&��)�j�7lqF�%���|Gd��'r��P�8V�ĩ��Y�a���w�I�Ȁ�<L���Qo�Ɉd��W�&6�
X5FOP��/(�
?��Yg]D!���,���2��)�~JY����#�U��;.A��QS4�t���$����RK�ε�n�튫�
���q��)�9t��߹>�|G-~f���H�J��6��-�*��%�J@� K��`���H��]���qׯC�|q
�d���[�)ى%�&?�L���`/+�
QQ�6I��cs[:�U����v&�{ɯ�@8��1&$mKg��^얨�2D��	�\��K�f��n�O?~�����<nx<�d�r�����F=�q
h9�<Tǹ�j�O8��Z򆩍���R7�R�-�Br��+f�j'%�qiN�}jM��7����̏T&`�r�|�����W�(2���G�iO	G���1X&~˛���D�c��D+%8��8�a�f��f@	�iX��u둚�㿞�:��4|��9/�
+��}�8��TOOӟTD �P�'6d(=~���\��tB�s�S�A�̣�j}O����e���R�`�6��`�	���E���B��1�v������ �|
}O%��I��T�9�
�s����6��T�NԳL
�Y�!	��Q��If�Ml�&��J�n�1�h06�Zxھע�!��l��.����\$��|�R��`�>�݈��N��eJ�mZўL5E@Ϻ�f�K�2
ꚳ�^h���l94	����C�o�G=��%mzfY�A����{
��ٵ)n=n��׷ۜo�"g���ƪb�\�K����ٌ�l��NXd����\p�"��0�앶x��-pDaݷ,$���F�ȴ�#H̷͢�ėEE�0̯m��ړ�,��غ���L��E^d.�戇<�L���4��J@�L�dpG{t���$��'�ؾf�U'U��!�BSE��5ɗ��l��>��|Y��D�"B��A�ZXF�ǚ�E��Y��g�1��%���-T��,4�����no��4��aT����T(?�%�D��l���<�0��	iֳ���C��`�~�Hsr*7\*���T�ɘ4�T����T;pA0/X���jQDN�a��.b��E#��T���&�
l)���veS�.�[$:ב@|=Q��dk��ToN�h7�r0>%m2c�ܛĖ��)��u��‚�ai���o"�Sx���[�q�w��-}���i`$�rsp�l��:		0��NoDe�Hw�I�A�NS�.:<����֖j7��WN
yd���b�7�ߋQ����Q0�|�y��u�O<���tT��w�����%����(fz�5ݽo�/�7�ZY�8��
�
5��%/<�ZvVZ	ȣN�h�+cV���(�qQ0��v��>;��3]9�@+�mj�$�m~�Lۄ���4�����C��0��D;u�g�z�Z�T߫U��qF*�AD�%q�!�)
�)��6�.�Kj�T�u���sm������*�S����7�r:;'��~�>;�Ʈ7s���*��Ի�+�h0�h~D�T-�cU'H���l5��<���M�G)��L��j��iAA���T����%ȫX�����3�f�2&�-��<�eGjEʇ5�L����^^Xw����Y�>��):(�k��w�&�`�mEM�gH�����`N��"���$_m�5��;N(Z�g�h#�Sg�S:��3�i�A�����s4�
�������V;Q����P"��2��Ǘ�%c�Cw��5�M��1�/.�xJsp����J.�(�?��@<f !��q����
(M��	����;;#�D��+���R:��������9W�S�h�K�*2 ��Ϙp�o��%�1����*�;��$7���~T�D�/E}0�pµ�Qu�~�)��k-[���c-ޞR�ԣ��S��k4ޞ,#�ø����{�<����#��%f��[mK��klUy�nF��L� X�����H| J��=�����M�I|���8�����V��œ�8"�U���8{�����ְ,K�9"�W�9�:�m�AG��k��
�ٯC�Z�g�(I�P�����"��eg1#��`�[@Si�x�A��QƮ��*'9�)7e𿠟���\e��(�z(�n�EC^
��Yqo�ue���D��d�+�aK�W��vO���D������eD���P�H�KK��L26�E��,S'����Eh�a�;P�	���}m4B���&N��Dq,�����E=���DQ}"� wW�X�fWf�_"���4絬�{33q�1�$�Ϙ( �����h��u⺑bڰ`����tX��6Y�g����݃o 
������h8��,ˀ��4�c*"���.	�z<-jSt�G��я��醈k���.��W
��<��4�{ȢI�)
�|��w���gtR4�)�~�j`��4�Ig�I���;,�ݟ��ެl���'dЫb��Ɲ��@�(R�0SQ���$�=mьq"�j������$��W/���r6*}l�JZ���!�7Kc�C��9Pؠ,|,#�Ԃ����F��X�Wb����!��*���H��\[8E�����Eݪ��Z]�M<U.��O/2e��Ŏ��6+3�*�M̢B(fc"L}QsGF�#�/��Ȧ�ə�D0�X
�;�
0݃䌏�4��[���$��B
�a�fǢ��;	4Í�qx��0�����-�	ą��Ŭ
�\��j�!#'����Vc�ifxBM�sB�igU!X������iK+�_o,�;`Td���D�Ed��0(���_d�U=d܄3��)A�C�#�OYw����F����s�2��C��0Ţ��
T�KwC��y�x�B+"���ݬ���'!0
u�!8���!:��rX�jR�.��]�W����A��y�9+ߧ�k�Gm�p���S�&���)|5xYyaޛ��|���ܑ��⿦d�fMc��\<��, F�я�8^+�Fɵ��R �?�) |�,�t\X�HGS/e�N�[_H ����Ԕ��f��Kd��:�]g�I���x���X3���!�B��o�R�0d���D|d/T�(�`&�1���Ծ�l��M,Kq3�ᙇ�W����DZ�����DE{�.|x4S�=�"�za��8{���(����`�d�>%p�l�Y�s\v���c%$V&�[T����?h4�)�2|�LB�^h�E�X��E�p��	 ��PNG.C1٢��U1M�R-43���Y����߫���i���?-	�Rѣ��
u�`	.KK(Kq��Q}��z�(w3���j��Z���pǂ���pӇ@SWL��-l����/=zQw���e��p�hj(�U�W�W��e�]�l��k�*{+}��k��B�
�l�VK���T|
J�R��d�XJ�$D	��pi&���H�G���u�acƚ��v���}�,�l"wlX�,*�[����at@wlE6W�z"��;�#]ޛ�׮�09�P)�kR�>a��f6��J"P1���)+�a뗶uE�f���>PZ�1��URJ"xp@~�-Ѯ���޻g��b�>��d1�<��Jg��+�ƣ�M/�Ƅ(I��y'Z�t�Y*����`X����K
h٠	.\5��wΈ�:'
��Jt6-�VI#1��u�Z����_f7�<-v�|��|$Q��i��5��#�2:� Zl��-­����J�D�M��/��;ń
��t�<s�'3T��Ԑ�e��bOGx`��%H��o�(�Ƭ�l�.	
Y�����޾�-Q�z�n`�|�O��
Ǭ^n|�)�.������6Že���d!���B���9�7��������i^�"a�h\�iH���B^��D�[w���W��*�S���,��0�i!ҥ,!��j��no֞g-(�V�Ty��
E$��-�	�&�\i�ا�6��*��X;@��z�\ԛ��z\/4gꫫ�@�b<��ZV�cA>�n�6��N?�>r�΃N����,�=�A?���}������i��;a���!?;^TF�$ ����VX�A��;�1M�7olj��#��}74m�}�)g��M�HԹճrE�}�����)K�%�iWH����_nQ�s���z�%�7gr�[N� ��z3��²{��S�)�Z_+%��ܚR��DWfX�J�KQ�ca(t��h��~%��������������?�"�o#ɻFaR�����\��wN�؏��Z���h��� �$�U\�Tw=.D�
��$$j���]�#�[KW;�L3Iq�(�<��_ Uuw,^p>����fN��B'd7wx�:#��zY���au�t�xP22w�i�����wg����ܾ�E^oH�f��C�|�W���ڸ�|v�m>���	p��‰�$�uf nkI��&q�rrd�lѽ�>�n]w{2'���6ɰ<�<���i��A�Ld�����C��9�+���*o|}A5�����
�a�
y?Y����>ߐ <��L����Okr�+�AH_�3�i�'sE���	�s������`�5t3O/����m�/wn�mmpҠ:9�47��Nι���qͥv'�2��w\7�����B��~@�к�5�Î,|�ۉ?��b���B��7ױ�A5��B
tZƀ�����:���Ή�cP�!_d �x�Y�Y�q�,���B=?[ɩl��xj7KO�'���O�܁3����F+exG���>��,>_�^*xB��m</�iNa���:x1���ޡL�$B��#6ILaJ*ac.����1�A/$0�RR�E��Ts���H�G�onk����ȭ�����c�/���+��R
9���wWPx/%\l8���$��
�(���O=2hN><��B�CZY��-�����|A��,���{	KٜF��#�<@1<�b9�؍��a��{a��`bv�ʡ�8�����R'4�ю��&���m0��;�i�˟v��B��G��}��#l"ZOLi\S�&ڏሕ�$�M�]�q<8�F!(�$X$n�s��=ks��&+��CM���˙��p�M��D��`��'“��c�\�$�G.����$ՙ5F<!���s.��Pշ��V�j��y���b:����ƫ����u�ZlC~Q�?���Oi����\�����v�7��b�&urk�.7�SQ�W�8,�q}�Pv�lHc��=$D��L���7F�a�ũ�Kic�w�fhB��
����M_H �2ʹjABʻl��P8�+��b�{����䤟��+�F�T_mïU����Y2��/ɥ;.3���vt��Mz����0��ul���0�j
�]�%���VÈ�Ш�B�6��pqZ�Z���v�S�����O�c�4���Հ�j97�1zR
�KjK�i{�r!��U���wfa�y=�k�6f�D�9��0��)J�ĻAb��!���T���K�����r�@�Atɑ,	�!��l�-w��b�Q�ޭ_�Q׶5܄`����;d��
�{U�nC�PV�ā�9A2��5��T��2�a.X��T@pm~����&|�.~<�ZIa1M!~BJ�S[�Pȳ�;~9{4X;�$J�9�54/�S��
�򄥆P��*��0^�"��o�����G�[��T��Qw�"���z�_[���H��榋�������T�l[���$��>�������55�7 �j��6�)�y���Dxi`~=	>��}"�/�i%��}d{�'�yLd��Q$��c[
�f�	6�����j�T-!�.'�����V��5&��K�������}&3�OG����m 2=�L��!s�,�D���=��l��$$72w����I0sr;u/,�
����6���!�%���9��%��rC��~e�†b S�U!�Y`2�����G���-��C���E���5d=kCkOc�������F'mZM�W����>�g��;�í�d�D3×���M8�<m� {�#\���SdM]E�?���t�����Y�c��&ˈp�&J\P�c$y���p]i�G�U"��7RoO�����rH`=�XM�5�P�<�g-�lLVʦ�C
����3貀N�؜l������vյ��е-��=����kE�R舁�ʺ��Pf~)1��B�.���b�(��G��u�8@���e���5)G1����gw�'Ǜ�&�p�rxdA'c�(_�
�����
�@��P�^&I{�b�,���=�o�9��Yr$*oe�ؑ�~C��������v0
����H�2nc�&^��7/�L)�NPAk�=il�C���t�����"���8<r|�t�<��q/I<N���Z�{��dJ��{b7�0��tY��5��")�O4g��G._�d��х�ߣB�R��� DТ�E��|��w�c"�u�̕Hz2���pQ��zr�����s�f-3�T骊�`�<�δ���㓰�(�@䱝��E��8e�
�dc�:aKT}�|���B�H�<0f�.�s�~z5�ထ�m�N��.�|��)��
�Q�>&�7/!$�������FYf��{H�2�tT��k��2�R�4[�4�%��x�0���q~�I�+z�Y��Sab�4���e	�a8p!���[�€�]3�Ƞ��jt�T�u��R��d�V�v�=\���5��K����Wΰ��C�-U�Ҿe�<[m#{���&�䪧����6(�"J4W�0}�lY����Z�Sh��ݳI]ڎWZS�чC�74xF�U�z�q��5��$NU�TZ��D�A�D��BM�閍U@s&��1[7P�C�H<x�kM��
�i|���85G�hF��W\那�=�� ߀�Q��9���P��ל8�u'r�4e��qjwˊ�bD�%�$�k�9��lݯ1t�0xj�4N��r��]V�(��
q�-�e��%qV�*i�@�Ơ�׺?�F�1H����ţ��E�]�Zb��Y�}դ,0��y�3��|���L	N�XW�>�EKHFJ޷"�^�DB�3��p�V��|��pj������H����A��`~�cr��i�p&���6�9��]����'������?�H|)��*s�jb�P�O֑�9F	;<�/w|s��[�v�3�=U�!�֗�f8[߿)���]u�ִʼnz�	G�����Z�&�;Z�,�����Ұlyy!��W�4,.�j��6�[�dgc�_�{�a�X{�>8w��f]k�0@ؗ���g˴@D}"rv���wqTSHi�e�`+��c;i�7�qg(��"�u1\*�	�A>���]��إ�Uڂb��R�Rk��JՋ��]
���-vTQ.>W��PP�E
hT�[��rF3��k2��W�lƹEC 2���T�&�`�~7V�
,�
Ki
)˵Żs����°�KD8;oaN���1_�@�JW_��pVԝkH�H���P,�>�q4&"1��\�-f�tq�4ì����yq�1hk�����[��j܃ZN\��!
b}�����3���3�-O��OYB����f�Z��6��߲�B�
��cۅ&c����0�ό��+���`���p�_1n���6�Q�EZ�p�9�Ŵ&�^%Y�Yl!g���|���bIܱ��$�;��'R	yA�L&�/{����֮��`�&(�=׸�V�����xu8n0�~�EҦo�7"]U�6O�"��vk�$%����%-���~{}�`�+�M��l�3ڟa�%��!b�`q<�-�/�/BhIဝ��K�&6��l��$��זZ\� P�:�?fW���r1���ާ����Mh��2���P@[��Ԧ0�8�_���P�	��D@j�l���'o��5L�D�"Aj5���3~�"ښ*�������+�R�]�M��@e���DlK@��!b��8q`t�y!:Ir�@��*z�S:
���(U6B��Z�s����M���魼t�*�s�
�kc��K�Q�t\�%9��q��S��b��w�F��f����3K8���}Eٍ`����.�OP�J����KPWh���z0]�D�j��0����XAdwѫ��wf��9�!�I��Ȳ6�'�V��Vp���pI7U�?J��H���-�-�ßw2��g�,a�5L��`��e���p�V�����Br���[�%�zUu����
��.n(=&[��X?}߯�$�8�ѻ�B��2L�I�6�{�G)�� l��u��эú��L��c���/H0A�'����ɹ��
L��|�DH���-8�:���d�������(��|f���k��#��BJ!��[;��>{��k�]~��C����y�+z�>c����'kT�֔��`d@0��`Y0�vJ�:7^'����؉G�,05�?���иJ��Xz��%��:����|��'O�[*��t>f��X$��
��������~����Y���P�(�pgN3_�.P�!�`���<x�H@�5W�ګi��E	j�m��5T�#�p���B�:'��PD#DMPe_����<smO�p��D��������1�C4�er�� p�R>T"���Hhɼ�쏒D"�)5 Gi湁����/IX>��y8p��Aփ�GGp郆��6f(��#AJ3iH�Q�#,F#��0+��݊�.������*�T�Ao���)LP���@"��!
*8U��qa♅{
��)@T��hB�E'
y^$�B@��G��b%tI(��a=�f�D����&�HH�A="AD*�K ��懿M�:��h?��a����[
z�6
z���	��M	�	T
~
o��l��`��2т� ��
��HUh�r�pt ���(�I��A�� �
�$�4x
`	�q�p@N�Gp	�����.d�P�G�u�_��b�������o�>��O���������?|����_�c��ۿZ����*�w�?ɟ7�]�g�Vx_��3�zYꯣ>������>}b���/k=�C�޾�aҮ��ü�&v��W�K��ɯ�f9��S���&��y�qh�o�k��5�6x&��]���[<'��mտKt&�-�� ��;�&�v��
�m�l����m�~Ǜo�`���k���#�UB���9�E�gP^e�{u��[n�y�n+L�f:����+��a..��G��!\��e󌋍ƍ�@w�Q�vY�"u�T�Q+�dPv�@�!�c�&w`�f��uO(F�jh0
�9�a�U&�Yb$��je}Ac���L�W�t�; ���]���g2�I�<ㅀ�?�#�����f���Q��+��H<^2��l:.����Ba�c��ӈ�B,�Q�^�G�靲`�aϱ�ƣ9ˊ�Q�cP�v���e��K?�pN%00,2ȟ��}M��}��K������B�
��)MG���ti�g�P��va��b/	�*Z �H5�R��E0�u�����G[89��p/f]�҅-��:
d)�#���l�'~����'�U(6-(j�0`�TtӤ��p���ƣ�Ǘ�^X�*
��8�r��bk����L!��n3����χ���~F��3�0���Ne�/��~D�)x5P�@o�3�0|�G���y�mB���¡(�@k�~���.�a��F�n����P��!���
_�{�+������f��@'}�}��b��
2Õt�dF�DK�g8m6��E��鎕�yWZ�"	E�a�L�k�(z�Cq���0�v�u�&O�P��Ŗ!�u�ƶ��K5�ƐMٳ��&�F�{�I����=X;�+ʂ_�3�M:#��㑎�\��=���ߘ4��h"_�?H���V��Ú7�x�x�i"����(m�Ţs�N Jz��7�W$�[���~-yH��Nq�@�"���u����S�t����av�½���Mi�Yb,z��1h���b��-�"��I~%��x�K���6��%�F��=�~�dP�MKC�|���^H�Dj�����M�>�X���i�h��H]�r�%f�-��%lY�VW|��v�E�by�[��I�[_�T�x�V��XM�L����T�au<�������0���K�!'[��¬-���I(u먶t��-E"��iM���K{��BN�x�-�"�s�����)gzP�5�Ea����9��)*�O��Zxp�;LvH���cx�k��.T��
�>�ZR1���ǐ)��
���tM���,�7z�W4���RS��C����eT�`��6SŲlFd�N�2,�o��b�'�z\�&��*
D騊�M��Ce���|�=<9r��(R������U������V:J֗��8��J���$f�З�V8�һ��$�w�ث�u@�[Jx��ы�J~�Q9;��a`��`)wF3�I4元���_ q���1Q2?뛉9'�b�|�:P6�A���@Y��8���i���ǚ�x���Q�Z�g��aMW4x(��]�W'�����鉐11�P�����C��F(���[��*��.E�A^S�+��	_x:b�`��T@ـ`�$SE:".'W����#�+�I�;���<����6d-�O����3�Bs��eٸ\���%8t<�.�?��^p�z4�N�hd�lxr���\nF�=�/�^F��h�ݺy~66�įMtܝ8Ŵ��s���`�l��H�&�j�ׂ����g���ŘQ	��4�#�ɫ�ۈ�9�aEl���Gh��B�3�*�
N|�4�	r�oHY�࿂BJ��jJŭ���GW����*Q�CU����y��$&���m�Z`-�	P�i9�m���+Wð$�(��@�X�� ǒ~��$#��yM�EH��vM��p�'�a8	O�'gk��\�J��[4�faI��\�Dž��'T��`0;K`?PQ�U�$����Y�,�:aC�ˍi6�c	�2��E�v٩�gp�b"ΞX�-2�]B�՝�AT�Yi�^U`	^�)����Bb��zm|	&	
)jJl���OQq��$SΡe=E������=�Q#>
�b��aJ�w�]��v8����g{`�QO�Q��BK
/�I�[��+&̓"R|x»�
_�S��}x��آ|RD�|f1��
�1��{�?S@��0A�?Tӕ�r�x�D����gNo|�錼�8N�n����F�	�����A���
8����V
c�#���t��}��N%-��_��	"гh�ϼ�ݿ�_���dG��<3|�{�������y���0.<�����`�i^���@JtR{��,����ݯ�|lס��WH��ah���c�Y��{���r՜V�#!�Ia�����qZ7ו�U0����0D���l��B�ݢ�Ȭ�[��l٬[E`�V*��_r����U��8!^Q��P�XV��XR|*���e��%fZJ�xPr�,|�-��|p@�^�y>4,�����ʅ�M�T��A�G���
=�鱃�0r��P���j� �`:D'��'\!4��߅'���g�|���櫪X���@.ʋ���Z�~�q��Abӑ'T�0��'=�Cy��!���u��Dݸ|�s�2�ف|5~U�m�L��Q�%	��j4ǁt5 �(�[L��=ަZis���T��G��/`#��Zhr��r�>$�'�[@��pq-3�cV�E�ĝ�d��g��w���e7p���԰p�[<�p[�;�N��
$��{�r9�M��I�xQ"�v�)7�
�i&�[/�0hڗYo�Y�R����h`@�
o-�BR2�g@���+��"j��c��SId�YK�?p,�#����k�h)�J)BY���IfG�C�� LPK!" ��l5l5	index.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app             = JFactory::getApplication();
$doc             = JFactory::getDocument();
$user            = JFactory::getUser();
$this->language  = $doc->language;
$this->direction = $doc->direction;

// Getting params from template
$params = $app->getTemplate(true)->params;

// Detecting Active Variables
$option   = $app->input->getCmd('option', '');
$view     = $app->input->getCmd('view', '');
$layout   = $app->input->getCmd('layout', '');
$task     = $app->input->getCmd('task', '');
$itemid   = $app->input->getCmd('Itemid', '');
$sitename = $app->get('sitename');
$menu = $app->getMenu();
$active = $menu->getItem($itemid);

/* Get params */
$bt_layout = $bt_logo = $pageclass = $page_heading = '';
$bt_logo_1= '';
if(isset($active->id)){
	$params_menu = $menu->getParams( $active->id );
	$pageclass = $params_menu->get( 'pageclass_sfx' );
	$page_heading = $params_menu->get( 'page_heading' );

	if( $params_menu->get('bt_logo') ){
		$bt_logo = $params_menu->get('bt_logo');
	} else {
		$bt_logo = $this->params->get('logoFile');
	}

	if( $params_menu->get('bt_logo_1') ){
		$bt_logo_1 = $params_menu->get('bt_logo_1');
	} elseif( $this->params->get('logoFile_2') ) {
		$bt_logo_1 = $this->params->get('logoFile_2');
	} else {
		$bt_logo_1 = 'templates/' . $this->template . '/images/logo.png';
	}

	if( $params_menu->get('bt_layout') ){
		$bt_layout = $params_menu->get('bt_layout');
	} else {
		$bt_layout = $this->params->get('bt_layout');
	}

	if( $params_menu->get('bt_bgheader') ){
		$bgHeader = JUri::root() .$params_menu->get('bt_bgheader');
	} else {
		$bgHeader = JUri::root() .$this->params->get('bt_bgheader');
	}
} else {
	$bt_logo = $this->params->get('logoFile');
	$bt_layout = $this->params->get('bt_layout');
	$bt_logo_1 = $this->params->get('logoFile_2');
	$bgHeader = JUri::root() .$this->params->get('bt_bgheader');
}
if ($this->params->get('btloading') == '1'){
	$bt_loading = true;
}
else
	$bt_loading = false;
if($this->params->get('btdirection'))
	$this->direction = 'rtl';
else
	$this->direction = 'ltr';

if($task == "edit" || $layout == "form" )
{
	$fullWidth = 1;
}
else
{
	$fullWidth = 0;
}

// Add JavaScript Frameworks
//JHtml::_('bootstrap.framework');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/bootstrap.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.easing.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.parallax-1.1.3.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery-countTo.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.appear.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.mixitup.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/wow.min.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.circliful.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/owl.carousel.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.fancybox.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.fancybox-media.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jqSocialSharer.min.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jPushMenu.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/functions.js');

// Add Stylesheets
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/bootstrap.min.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/animate.min.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/font-awesome.min.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/icomoon-fonts.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/jquery.fancybox.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/jquery.fancybox-thumbs.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/settings.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/owl.carousel.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/owl.transitions.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/loader.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/zerogrid.css');
// $doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/loader-colorful.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/onepage.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/one-color.css');

if( $this->params->get('maincolor') ){
	$maincolor = $this->params->get('maincolor');
	$maincolor = substr( $maincolor, 1 );
	$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/color.php?main_color=' .$maincolor);
}
// Adjusting content width
if( isset($bt_logo) && $bt_logo != '' ){
	$logo = '<img class="img-responsive" data-default="' . JUri::root() . $bt_logo . '" data-sticky="' . JUri::root() . $bt_logo_1 . '" src="' . JUri::root() . $bt_logo . '" alt="' . $sitename . '" />';
} elseif ($this->params->get('logoFile')){
	$logo = '<img class="img-responsive" data-default="' . JUri::root() . $this->params->get('logoFile') . '" data-sticky="' . JUri::root() . $bt_logo_1 . '" src="' . JUri::root() . $this->params->get('logoFile') . '" alt="' . $sitename . '" />';
} else {
	$logo = '<img class="img-responsive" data-default="' . JUri::root() .'templates/' . $this->template . '/images/logo.png" data-sticky="' . JUri::root() . $bt_logo_1 . '"  src="' . JUri::root() .'templates/' . $this->template . '/images/logo.png" alt="' . $sitename . '" />';
}


?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="head" />
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	
	<?php if ($this->params->get('favicon')): ?>
		<link rel="shortcut icon" href="<?php echo $this->params->get('favicon'); ?>" type="image/x-icon">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch')): ?>
		<link rel="apple-touch-icon" href="<?php echo $this->params->get('apple-touch'); ?>" />
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-57')): ?>
		<link rel="apple-touch-icon" sizes="57x57" href="<?php echo $this->params->get('apple-touch-57'); ?>">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-72')): ?>
		<link rel="apple-touch-icon" sizes="72x72" href="<?php echo $this->params->get('apple-touch-72'); ?>">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-114')): ?>
		<link rel="apple-touch-icon" sizes="114x114" href="<?php echo $this->params->get('apple-touch-114'); ?>">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-144')): ?>
		<link rel="apple-touch-icon" sizes="144x144" href="<?php echo $this->params->get('apple-touch-144'); ?>">
	<?php endif; ?>

	<link href='https://fonts.googleapis.com/css?family=Raleway:100,200,300,400%7COpen+Sans:400,300' rel='stylesheet' type='text/css'>
	
	<?php if ($this->params->get('googleFont')) : ?>
		<link href='//fonts.googleapis.com/css?family=<?php echo $this->params->get('googleFontName'); ?>' rel='stylesheet' type='text/css' />
		<style type="text/css">
			body,h1,h2,h3,h4,h5,h6,.site-title{
				font-family: '<?php echo str_replace('+', ' ', $this->params->get('googleFontName')); ?>', sans-serif;
			}
		</style>
	<?php endif; ?>

	<?php if ($this->params->get('cssbefore') != '')
		echo '<style type="text/css">' .$this->params->get('cssbefore') .'</style>';
	?>
	<!--[if lt IE 9]>
		<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
      	<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
	<![endif]-->
</head>

<?php
	$body_class = $pageclass;
	$body_class .= ' ' .$bt_layout;
?>
<body id="page-top" class="fixed-header site <?php echo $option
	. ' view-' . $view
	. ($layout ? ' layout-' . $layout : ' no-layout')
	. ($task ? ' task-' . $task : ' no-task')
	. ($itemid ? ' itemid-' . $itemid : '')
	. ' ' .$body_class; ?>" data-spy="scroll" data-target="#fixed-collapse-navbar" data-offset="120">

	<?php if( $bt_loading): ?>
	<div class="loader">
		<div class="spinner">
		  <div class="dot1">&nbsp;</div>
		  <div class="dot2">&nbsp;</div>
		</div>
	</div>
	<?php endif ?>
	<?php if( $bt_layout == 'index14' ): ?>
	<?php
		$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jPushMenu.js'); 
		$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/jPushMenu.css');
		$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/white.css');
	?>
	<header id="main-navigation">
		<div class="container-fluid">
			<div class="row">
				<div class="col-md-12"> 
					<a href="<?php echo JURI::base(); ?>" class="navbar-brand logo-space">
						<?php echo $logo; ?>
					</a>
					<nav class="cbp-spmenu cbp-spmenu-vertical cbp-spmenu-right"> 
						<a class="push_nav_brand" href="<?php echo JURI::base(); ?>">
							<?php echo '<img class="img-responsive" data-default="' . JUri::root() . $bt_logo_1 . '" data-sticky="' . JUri::root() . $bt_logo_1 . '" src="' . JUri::root() . $bt_logo_1 . '" alt="' . $sitename . '" />'; ?>
						</a>
						<?php if ($this->countModules('bizone-navmenu')): ?>
							<jdoc:include type="modules" name="bizone-navmenu" style="none" />
						<?php endif; ?>
					</nav>
				</div>
			</div>
		</div>
	</header>
	<div class="container-fluid">
  		<div class="main-button right">
	    	<button class="toggle-menu menu-right push-body jPushMenuBtn"> <span></span> <span></span> <span></span> </button>
	  	</div>
	</div>
	<?php else: ?>
	<header id="main-navigation" class="<?php echo $bt_layout; ?>">
		<?php if($bt_layout == "index5"): ?>
		<div id="navigation" class="affix">
		<?php else: ?>
		<div id="navigation" data-spy="affix" data-offset-top="20">
		<?php endif; ?>
		    <div class="container">
		      	<div class="row">
		      		<div class="col-md-12">
		      			<?php if ($this->countModules('bizone-topmenu')): ?>
		      				<jdoc:include type="modules" name="bizone-topmenu" style="none" />
						<?php endif; ?>
			        	<nav class="navbar navbar-default nav-mega <?php echo ($this->countModules('bizone-navmenu') ? 'social' : 'no-social'); ?>">
			          		<div class="navbar-header">
			           			<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#fixed-collapse-navbar" aria-expanded="false"> 
			            			<span class="icon-bar top-bar"></span> <span class="icon-bar middle-bar"></span> <span class="icon-bar bottom-bar"></span> 
			           			 </button>
			           			<a class="navbar-brand bizone-logo" href="<?php echo JURI::base(); ?>"><?php echo $logo; ?></a> 
			        		 </div>
			            	<div id="fixed-collapse-navbar" class="navbar-collapse collapse navbar-right">
								<?php if ($this->countModules('bizone-navmenu')): ?>
							    	<jdoc:include type="modules" name="bizone-navmenu" style="none" />
								<?php endif; ?>
			            	</div>
			         	</nav>
		       		</div>
		       	</div>
		    </div>
		</div>
	</header>
	<?php endif; ?>

	<div class="container-wrapper">
		<?php if( $option == 'com_blue_pagebuilder' ): ?>			
			<jdoc:include type="message" />
			<jdoc:include type="component" />
		<?php else:	?>
			<?php
				$bgImg = "background-image: url('" .$bgHeader ."');"
			?>
			<section class="innerpage-banner" style="<?php echo $bgImg; ?>">
				<div class="container">
					<div class="row">
						<div class="col-md-12 text-right">
							<h2><?php echo $doc->getTitle(); ?></h2>
							<p class="tagline">
							<?php if (isset($page_heading) && $page_heading != ''): ?>
								<?php echo $page_heading; ?>
							<?php endif; ?>
							</p>
						</div>
					</div>
				</div>
			</section>
			<section id="area-main" class="padding">
				<div class="container">
					<div class="row">
						<div class="<?php echo ($this->countModules('bizone-right') ? 'col-md-8 col-sm-8' : 'col-md-12 col-sm-12'); ?>">
							<jdoc:include type="message" />
							<jdoc:include type="component" />
						</div>
						<?php if ($this->countModules('bizone-right')): ?>
						<div class="col-md-4 col-md-4">
							<jdoc:include type="modules" name="bizone-right" style="widget" />
						</div>
						<?php endif; ?>
					</div>
				</div>
			</section>
		<?php endif; ?>
	</div>

	<?php if ($this->countModules('bizone-footer')): ?>
	<footer class=" wow fadeInUp" data-wow-duration="500ms" data-wow-delay="300ms"> 
  		<div class="container">
  			<?php if ($this->countModules('bizone-footer')): ?>
			<div class="row">
      			<div class="col-md-12 col-sm-12">
					<jdoc:include type="modules" name="bizone-footer" style="none" />
      			</div>
      		</div>
			<?php endif; ?>
  		</div>
  	</footer>
	<?php endif; ?>
	<a href="#." class="go-top text-center"><i class="fa fa-angle-double-up"></i></a>
	
	<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!��j��	error.phpnu&1i�<?php 

$app = JFactory::getApplication();
$doc = JFactory::getDocument();

$params = $app->getTemplate(true)->params;
$page_404 = $params->get('xml_404_page',0);
$menu = $app->getMenu();
$item = $menu->getItem( $page_404 );
if ($this->error->getCode() == '404' || $this->error->getCode() == '500') {
	$app->redirect(JRoute::_($item->link.'&Itemid='.$page_404));
	exit;
}
?>PK!���}}html/pagination.phpnu&1i�PK!��h��*�html/com_blue_pagebuilder/page/default.phpnu�[���PK!\9�l��*�html/layouts/com_contact/fields/render.phpnu�[���PK!�T+~~ �!html/mod_breadcrumbs/default.phpnu&1i�PK!߄�B  �'html/index.htmlnu&1i�PK!��<V�� (html/mod_k2_tools/categories.phpnu&1i�PK!��W*html/mod_k2_tools/authors.phpnu&1i�PK!�Q�S�1html/mod_k2_tools/calendar.phpnu&1i�PK!�L��}}4html/mod_k2_tools/search.phpnu&1i�PK!��U%��!�<html/mod_k2_tools/breadcrumbs.phpnu&1i�PK!�J;rYYBhtml/mod_k2_tools/tags.phpnu&1i�PK!�'N�Ehtml/mod_k2_tools/archive.phpnu&1i�PK!��� Ihtml/mod_k2_tools/customcode.phpnu&1i�PK!e���::RKhtml/st_template/contact.phpnu&1i�PK!r ���"�]html/st_template/blog_carousel.phpnu�[���PK!|E�$$(	chtml/com_k2/templates/generic_search.phpnu&1i�PK!�r��%�ehtml/com_k2/templates/default/tag.phpnu&1i�PK!�.q��$�$*�xhtml/com_k2/templates/default/category.phpnu&1i�PK!�uL��-ڝhtml/com_k2/templates/default/latest_item.phpnu&1i�PK!���P��4��html/com_k2/templates/default/item_comments_form.phpnu&1i�PK!��<��c�c&��html/com_k2/templates/default/item.phpnu&1i�PK!\X[�((/�$html/com_k2/templates/default/category_item.phpnu&1i�PK!C�b%b%&`Mhtml/com_k2/templates/default/user.phpnu&1i�PK!8XC7}}(shtml/com_k2/templates/default/latest.phpnu&1i�PK!
���~�~�*�html/com_k2/templates/default/itemform.phpnu&1i�PK!%���##"�(html/com_k2/templates/register.phpnu&1i�PK!�&�HH!:Fhtml/com_k2/templates/profile.phpnu&1i�PK!�r]<<!�chtml/com_k2/templates/generic.phpnu&1i�PK!�����&`zhtml/mod_menu/default-agency-aside.phpnu&1i�PK!?F���html/mod_menu/default.phpnu&1i�PK!~N���!�html/mod_menu/default_heading.phpnu&1i�PK!���#D�html/mod_menu/default_component.phpnu&1i�PK![�w���#;�html/mod_menu/default_separator.phpnu&1i�PK!u���zzz�html/mod_menu/default_url.phpnu&1i�PK!WA�A�html/modules.phpnu&1i�PK!n��EE'��html/mod_k2_content/Default/default.phpnu&1i�PK!��D�]�]/�js/owl.carousel.min.jsnu&1i�PK!�Ec�//�js/jquery.parallax-1.1.3.jsnu&1i�PK!޹�ߝ�ojs/jquery.fancybox-thumbs.jsnu&1i�PK!����X js/functions.jsnu&1i�PK!6~�%�%��2js/jquery.fancybox.jsnu&1i�PK!f���%�%��js/jquery.circliful.jsnu&1i�PK!F�+7�js/jquery.fancybox-media.jsnu&1i�PK!�i�
�
��4js/bootstrap.min.jsnu&1i�PK!&��R�n�n��js/jquery.mixitup.min.jsnu&1i�PK!��e��
�3js/wow.min.jsnu&1i�PK!�׿���Fjs/jquery.easing.min.jsnu&1i�PK!�U�(��]js/jPushMenu.jsnu&1i�PK!.=�}
}
ijs/jquery-countTo.jsnu&1i�PK!�Jqww�sjs/jqSocialSharer.min.jsnu&1i�PK!��'�



�yjs/jquery.appear.jsnu&1i�PK!�	���
؆component.phpnu&1i�PK!E�x���ӋtemplateDetails.xmlnu&1i�PK!������css/jquery.fancybox-thumbs.cssnu&1i�PK!���ii �css/icomoon-fonts.cssnu&1i�PK!�j**mcss/settings.cssnu&1i�PK!��
�����.css/onepage_old.cssnu&1i�PK!�+���(�(��css/settings_old.cssnu&1i�PK!	�LUU
�
css/color.phpnu&1i�PK!�77v.
css/jquery.fancybox.cssnu&1i�PK! �z�����B
css/bootstrap.min.cssnu&1i�PK!`��#���css/one-color.cssnu&1i�PK!^$���css/loader-colorful.cssnu&1i�PK!:@>�ǸǸV%css/onepage_old2.cssnu&1i�PK!<�֌��a�css/owl.carousel.cssnu&1i�PK!�>�MMV�css/loader.cssnu&1i�PK!������css/zerogrid.cssnu&1i�PK!k��GNkNk
css/font-awesome.min.cssnu&1i�PK!�r�/�/��r
css/animate.min.cssnu&1i�PK!��ژ
	
	Mcss/jPushMenu.cssnu&1i�PK!���VVcss/owl.transitions.cssnu&1i�PK!����ƸƸ�hcss/onepage.cssnu�[���PK!B�Nr

#�!language/en-GB/en-GB.tpl_bizone.ininu&1i�PK!r]w>��' 2language/en-GB/en-GB.tpl_bizone.sys.ininu&1i�PK!߄�B  \7language/en-GB/index.htmlnu&1i�PK!�VҀ��'�7language/en-GB/en-GB.tpl_bizone.ini_oldnu&1i�PK!߄�B  �Glanguage/index.htmlnu&1i�PK!��`����`Htemplate_thumbnail.pngnu&1i�PK!����Limages/prev.pngnu&1i�PK!��4oq'images/menu-arrow-orange.pngnu&1i�PK!i�'q���2images/fancybox_loading.gifnu&1i�PK!-��44�Limages/blockquote.pngnu&1i�PK!z����8Rimages/prev-green.pngnu&1i�PK!�A�l��iaimages/menu-arrow.pngnu&1i�PK!@
���oeimages/grid.pngnu&1i�PK!t���DD�jimages/next-dark.pngnu&1i�PK!*,�ڶ�
yimages/logo-white.pngnu&1i�PK!\���images/arrow-right.pngnu&1i�PK![מL�images/menu-white-arrow.pngnu&1i�PK!W���RR��images/fancybox_sprite.pngnu&1i�PK!��`��"C�images/construction-prev-arrow.pngnu&1i�PK!�5>؛�r�images/prev-blue.pngnu&1i�PK!_�+�	�	Q�images/loader.gifnu&1i�PK!��}}��images/timer.pngnu&1i�PK!�c��@�images/logoindex2.pngnu&1i�PK!��b�images/arrow-up.pngnu&1i�PK!(������images/arrow-down.pngnu&1i�PK!a��c����images/next.pngnu&1i�PK!Vw�����images/shape.pngnu&1i�PK!�zyy"��images/construction-next-arrow.pngnu&1i�PK!Yl�LLiimages/arrow-left.pngnu&1i�PK!Z�{1�images/menu-blue-arrow.pngnu&1i�PK!
��.��Timages/logo.pngnu&1i�PK!�\���])images/tick.pngnu&1i�PK!�>�S��D0images/prev-dark.pngnu&1i�PK!�u��99?images/next-blue.pngnu&1i�PK!0����Mimages/menu-arrow-green.pngnu&1i�PK!:���Ximages/menu-arrow-pink.pngnu&1i�PK!B�L���Ddimages/next-orange.pngnu&1i�PK!9�ásimages/stars.pngnu&1i�PK!f�O���Uximages/tagline-bottom.pngnu&1i�PK!+�tё�e|images/next-green.pngnu&1i�PK!"����;�images/prev-orange.pngnu&1i�PK!��`����b�template_preview.pngnu&1i�PK!Ic�C��Ljfonts/icomoon.svgnu&1i�PK!�DB�v�v��(fonts/icomoon.eotnu&1i�PK!��}��F�F�q/fonts/fontawesome-webfont.woffnu&1i�PK!Zi��@@x�0fonts/fontawesome-webfont.woff2nu&1i�PK!v��alFlF(�1fonts/glyphicons-halflings-regular.woff2nu&1i�PK!|���¨¨&�2fonts/glyphicons-halflings-regular.svgnu&1i�PK!XDZ��N�N&�3fonts/glyphicons-halflings-regular.eotnu&1i�PK!u9��*�*�3fonts/fontawesome-webfont.ttfnu&1i�PK!���x�x�'6fonts/FontAwesome.otfnu&1i�PK!�{��[�['��7fonts/glyphicons-halflings-regular.woffnu&1i�PK!�<�\�\�&�/8fonts/glyphicons-halflings-regular.ttfnu&1i�PK!��K�vvc�8fonts/icomoon.ttfnu&1i�PK!��"hvhv�W?fonts/icomoon.woffnu&1i�PK!xU��0�0�j�Efonts/fontawesome-webfont.svgnu&1i�PK!u�u����bKfonts/fontawesome-webfont.eotnu&1i�PK!" ��l5l5	�wLindex.phpnu&1i�PK!��j��	p�Lerror.phpnu&1i�PK���-,�L

Youez - 2016 - github.com/yon3zu
LinuXploit